From e81043d1d619dfd3d1e960e880531273f96473a5 Mon Sep 17 00:00:00 2001 From: Cameron Kruse <14115927+cameronkruse@users.noreply.github.com> Date: Tue, 7 Nov 2023 23:08:52 -0800 Subject: [PATCH] adding raster demo and polygon grids --- data/data-cleaning.ipynb | 385 +- data/synced-data/poly-grid.csv | 10236 ++++++++++++++++++++++++++ data/synced-data/poly-grid.geojson | 10241 +++++++++++++++++++++++++++ main.js | 3 +- raster.html | 178 + 5 files changed, 21041 insertions(+), 2 deletions(-) create mode 100644 data/synced-data/poly-grid.csv create mode 100644 data/synced-data/poly-grid.geojson create mode 100644 raster.html diff --git a/data/data-cleaning.ipynb b/data/data-cleaning.ipynb index 460fe8c..00c53cb 100644 --- a/data/data-cleaning.ipynb +++ b/data/data-cleaning.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 44, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -406,6 +406,389 @@ "grid.to_file('./synced-data/empty-grid.geojson', driver='GeoJSON')\n", "grid.to_csv('./synced-data/empty-grid.csv', index=False)" ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# creating polygon grid" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "grid = gpd.read_file('./synced-data/empty-grid.geojson')" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
Make this Notebook Trusted to load map: File -> Trust Notebook
" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def create_square(point):\n", + " x, y = point.x, point.y\n", + " return Polygon([(x+0.25, y+0.25), (x+0.25, y-0.25), (x-0.25, y-0.25), (x-0.25, y+0.25)])\n", + "\n", + "poly_grid = grid.copy()\n", + "\n", + "poly_grid['geometry'] = poly_grid.geometry.apply(create_square)\n", + "poly_grid.explore()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
Make this Notebook Trusted to load map: File -> Trust Notebook
" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "grid.explore()" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "poly_grid.to_file('./synced-data/poly-grid.geojson', driver='GeoJSON')\n", + "poly_grid.to_csv('./synced-data/poly-grid.csv', index=False)" + ] } ], "metadata": { diff --git a/data/synced-data/poly-grid.csv b/data/synced-data/poly-grid.csv new file mode 100644 index 0000000..63eafc5 --- /dev/null +++ b/data/synced-data/poly-grid.csv @@ -0,0 +1,10236 @@ +geometry +"POLYGON ((19.5 -34, 19.5 -34.5, 19 -34.5, 19 -34, 19.5 -34))" +"POLYGON ((20 -34, 20 -34.5, 19.5 -34.5, 19.5 -34, 20 -34))" +"POLYGON ((20.5 -34, 20.5 -34.5, 20 -34.5, 20 -34, 20.5 -34))" +"POLYGON ((21 -34, 21 -34.5, 20.5 -34.5, 20.5 -34, 21 -34))" +"POLYGON ((21.5 -34, 21.5 -34.5, 21 -34.5, 21 -34, 21.5 -34))" +"POLYGON ((22 -34, 22 -34.5, 21.5 -34.5, 21.5 -34, 22 -34))" +"POLYGON ((19 -33.5, 19 -34, 18.5 -34, 18.5 -33.5, 19 -33.5))" +"POLYGON ((19.5 -33.5, 19.5 -34, 19 -34, 19 -33.5, 19.5 -33.5))" +"POLYGON ((20 -33.5, 20 -34, 19.5 -34, 19.5 -33.5, 20 -33.5))" +"POLYGON ((20.5 -33.5, 20.5 -34, 20 -34, 20 -33.5, 20.5 -33.5))" +"POLYGON ((21 -33.5, 21 -34, 20.5 -34, 20.5 -33.5, 21 -33.5))" +"POLYGON ((21.5 -33.5, 21.5 -34, 21 -34, 21 -33.5, 21.5 -33.5))" +"POLYGON ((22 -33.5, 22 -34, 21.5 -34, 21.5 -33.5, 22 -33.5))" +"POLYGON ((22.5 -33.5, 22.5 -34, 22 -34, 22 -33.5, 22.5 -33.5))" +"POLYGON ((23 -33.5, 23 -34, 22.5 -34, 22.5 -33.5, 23 -33.5))" +"POLYGON ((23.5 -33.5, 23.5 -34, 23 -34, 23 -33.5, 23.5 -33.5))" +"POLYGON ((24 -33.5, 24 -34, 23.5 -34, 23.5 -33.5, 24 -33.5))" +"POLYGON ((24.5 -33.5, 24.5 -34, 24 -34, 24 -33.5, 24.5 -33.5))" +"POLYGON ((25 -33.5, 25 -34, 24.5 -34, 24.5 -33.5, 25 -33.5))" +"POLYGON ((25.5 -33.5, 25.5 -34, 25 -34, 25 -33.5, 25.5 -33.5))" +"POLYGON ((26 -33.5, 26 -34, 25.5 -34, 25.5 -33.5, 26 -33.5))" +"POLYGON ((26.5 -33.5, 26.5 -34, 26 -34, 26 -33.5, 26.5 -33.5))" +"POLYGON ((18.5 -33, 18.5 -33.5, 18 -33.5, 18 -33, 18.5 -33))" +"POLYGON ((19 -33, 19 -33.5, 18.5 -33.5, 18.5 -33, 19 -33))" +"POLYGON ((19.5 -33, 19.5 -33.5, 19 -33.5, 19 -33, 19.5 -33))" +"POLYGON ((20 -33, 20 -33.5, 19.5 -33.5, 19.5 -33, 20 -33))" +"POLYGON ((20.5 -33, 20.5 -33.5, 20 -33.5, 20 -33, 20.5 -33))" +"POLYGON ((21 -33, 21 -33.5, 20.5 -33.5, 20.5 -33, 21 -33))" +"POLYGON ((21.5 -33, 21.5 -33.5, 21 -33.5, 21 -33, 21.5 -33))" +"POLYGON ((22 -33, 22 -33.5, 21.5 -33.5, 21.5 -33, 22 -33))" +"POLYGON ((22.5 -33, 22.5 -33.5, 22 -33.5, 22 -33, 22.5 -33))" +"POLYGON ((23 -33, 23 -33.5, 22.5 -33.5, 22.5 -33, 23 -33))" +"POLYGON ((23.5 -33, 23.5 -33.5, 23 -33.5, 23 -33, 23.5 -33))" +"POLYGON ((24 -33, 24 -33.5, 23.5 -33.5, 23.5 -33, 24 -33))" +"POLYGON ((24.5 -33, 24.5 -33.5, 24 -33.5, 24 -33, 24.5 -33))" +"POLYGON ((25 -33, 25 -33.5, 24.5 -33.5, 24.5 -33, 25 -33))" +"POLYGON ((25.5 -33, 25.5 -33.5, 25 -33.5, 25 -33, 25.5 -33))" +"POLYGON ((26 -33, 26 -33.5, 25.5 -33.5, 25.5 -33, 26 -33))" +"POLYGON ((26.5 -33, 26.5 -33.5, 26 -33.5, 26 -33, 26.5 -33))" +"POLYGON ((27 -33, 27 -33.5, 26.5 -33.5, 26.5 -33, 27 -33))" +"POLYGON ((27.5 -33, 27.5 -33.5, 27 -33.5, 27 -33, 27.5 -33))" +"POLYGON ((18.5 -32.5, 18.5 -33, 18 -33, 18 -32.5, 18.5 -32.5))" +"POLYGON ((19 -32.5, 19 -33, 18.5 -33, 18.5 -32.5, 19 -32.5))" +"POLYGON ((19.5 -32.5, 19.5 -33, 19 -33, 19 -32.5, 19.5 -32.5))" +"POLYGON ((20 -32.5, 20 -33, 19.5 -33, 19.5 -32.5, 20 -32.5))" +"POLYGON ((20.5 -32.5, 20.5 -33, 20 -33, 20 -32.5, 20.5 -32.5))" +"POLYGON ((21 -32.5, 21 -33, 20.5 -33, 20.5 -32.5, 21 -32.5))" +"POLYGON ((21.5 -32.5, 21.5 -33, 21 -33, 21 -32.5, 21.5 -32.5))" +"POLYGON ((22 -32.5, 22 -33, 21.5 -33, 21.5 -32.5, 22 -32.5))" +"POLYGON ((22.5 -32.5, 22.5 -33, 22 -33, 22 -32.5, 22.5 -32.5))" +"POLYGON ((23 -32.5, 23 -33, 22.5 -33, 22.5 -32.5, 23 -32.5))" +"POLYGON ((23.5 -32.5, 23.5 -33, 23 -33, 23 -32.5, 23.5 -32.5))" +"POLYGON ((24 -32.5, 24 -33, 23.5 -33, 23.5 -32.5, 24 -32.5))" +"POLYGON ((24.5 -32.5, 24.5 -33, 24 -33, 24 -32.5, 24.5 -32.5))" +"POLYGON ((25 -32.5, 25 -33, 24.5 -33, 24.5 -32.5, 25 -32.5))" +"POLYGON ((25.5 -32.5, 25.5 -33, 25 -33, 25 -32.5, 25.5 -32.5))" +"POLYGON ((26 -32.5, 26 -33, 25.5 -33, 25.5 -32.5, 26 -32.5))" +"POLYGON ((26.5 -32.5, 26.5 -33, 26 -33, 26 -32.5, 26.5 -32.5))" +"POLYGON ((27 -32.5, 27 -33, 26.5 -33, 26.5 -32.5, 27 -32.5))" +"POLYGON ((27.5 -32.5, 27.5 -33, 27 -33, 27 -32.5, 27.5 -32.5))" +"POLYGON ((28 -32.5, 28 -33, 27.5 -33, 27.5 -32.5, 28 -32.5))" +"POLYGON ((28.5 -32.5, 28.5 -33, 28 -33, 28 -32.5, 28.5 -32.5))" +"POLYGON ((19 -32, 19 -32.5, 18.5 -32.5, 18.5 -32, 19 -32))" +"POLYGON ((19.5 -32, 19.5 -32.5, 19 -32.5, 19 -32, 19.5 -32))" +"POLYGON ((20 -32, 20 -32.5, 19.5 -32.5, 19.5 -32, 20 -32))" +"POLYGON ((20.5 -32, 20.5 -32.5, 20 -32.5, 20 -32, 20.5 -32))" +"POLYGON ((21 -32, 21 -32.5, 20.5 -32.5, 20.5 -32, 21 -32))" +"POLYGON ((21.5 -32, 21.5 -32.5, 21 -32.5, 21 -32, 21.5 -32))" +"POLYGON ((22 -32, 22 -32.5, 21.5 -32.5, 21.5 -32, 22 -32))" +"POLYGON ((22.5 -32, 22.5 -32.5, 22 -32.5, 22 -32, 22.5 -32))" +"POLYGON ((23 -32, 23 -32.5, 22.5 -32.5, 22.5 -32, 23 -32))" +"POLYGON ((23.5 -32, 23.5 -32.5, 23 -32.5, 23 -32, 23.5 -32))" +"POLYGON ((24 -32, 24 -32.5, 23.5 -32.5, 23.5 -32, 24 -32))" +"POLYGON ((24.5 -32, 24.5 -32.5, 24 -32.5, 24 -32, 24.5 -32))" +"POLYGON ((25 -32, 25 -32.5, 24.5 -32.5, 24.5 -32, 25 -32))" +"POLYGON ((25.5 -32, 25.5 -32.5, 25 -32.5, 25 -32, 25.5 -32))" +"POLYGON ((26 -32, 26 -32.5, 25.5 -32.5, 25.5 -32, 26 -32))" +"POLYGON ((26.5 -32, 26.5 -32.5, 26 -32.5, 26 -32, 26.5 -32))" +"POLYGON ((27 -32, 27 -32.5, 26.5 -32.5, 26.5 -32, 27 -32))" +"POLYGON ((27.5 -32, 27.5 -32.5, 27 -32.5, 27 -32, 27.5 -32))" +"POLYGON ((28 -32, 28 -32.5, 27.5 -32.5, 27.5 -32, 28 -32))" +"POLYGON ((28.5 -32, 28.5 -32.5, 28 -32.5, 28 -32, 28.5 -32))" +"POLYGON ((29 -32, 29 -32.5, 28.5 -32.5, 28.5 -32, 29 -32))" +"POLYGON ((18.5 -31.5, 18.5 -32, 18 -32, 18 -31.5, 18.5 -31.5))" +"POLYGON ((19 -31.5, 19 -32, 18.5 -32, 18.5 -31.5, 19 -31.5))" +"POLYGON ((19.5 -31.5, 19.5 -32, 19 -32, 19 -31.5, 19.5 -31.5))" +"POLYGON ((20 -31.5, 20 -32, 19.5 -32, 19.5 -31.5, 20 -31.5))" +"POLYGON ((20.5 -31.5, 20.5 -32, 20 -32, 20 -31.5, 20.5 -31.5))" +"POLYGON ((21 -31.5, 21 -32, 20.5 -32, 20.5 -31.5, 21 -31.5))" +"POLYGON ((21.5 -31.5, 21.5 -32, 21 -32, 21 -31.5, 21.5 -31.5))" +"POLYGON ((22 -31.5, 22 -32, 21.5 -32, 21.5 -31.5, 22 -31.5))" +"POLYGON ((22.5 -31.5, 22.5 -32, 22 -32, 22 -31.5, 22.5 -31.5))" +"POLYGON ((23 -31.5, 23 -32, 22.5 -32, 22.5 -31.5, 23 -31.5))" +"POLYGON ((23.5 -31.5, 23.5 -32, 23 -32, 23 -31.5, 23.5 -31.5))" +"POLYGON ((24 -31.5, 24 -32, 23.5 -32, 23.5 -31.5, 24 -31.5))" +"POLYGON ((24.5 -31.5, 24.5 -32, 24 -32, 24 -31.5, 24.5 -31.5))" +"POLYGON ((25 -31.5, 25 -32, 24.5 -32, 24.5 -31.5, 25 -31.5))" +"POLYGON ((25.5 -31.5, 25.5 -32, 25 -32, 25 -31.5, 25.5 -31.5))" +"POLYGON ((26 -31.5, 26 -32, 25.5 -32, 25.5 -31.5, 26 -31.5))" +"POLYGON ((26.5 -31.5, 26.5 -32, 26 -32, 26 -31.5, 26.5 -31.5))" +"POLYGON ((27 -31.5, 27 -32, 26.5 -32, 26.5 -31.5, 27 -31.5))" +"POLYGON ((27.5 -31.5, 27.5 -32, 27 -32, 27 -31.5, 27.5 -31.5))" +"POLYGON ((28 -31.5, 28 -32, 27.5 -32, 27.5 -31.5, 28 -31.5))" +"POLYGON ((28.5 -31.5, 28.5 -32, 28 -32, 28 -31.5, 28.5 -31.5))" +"POLYGON ((29 -31.5, 29 -32, 28.5 -32, 28.5 -31.5, 29 -31.5))" +"POLYGON ((29.5 -31.5, 29.5 -32, 29 -32, 29 -31.5, 29.5 -31.5))" +"POLYGON ((18.5 -31, 18.5 -31.5, 18 -31.5, 18 -31, 18.5 -31))" +"POLYGON ((19 -31, 19 -31.5, 18.5 -31.5, 18.5 -31, 19 -31))" +"POLYGON ((19.5 -31, 19.5 -31.5, 19 -31.5, 19 -31, 19.5 -31))" +"POLYGON ((20 -31, 20 -31.5, 19.5 -31.5, 19.5 -31, 20 -31))" +"POLYGON ((20.5 -31, 20.5 -31.5, 20 -31.5, 20 -31, 20.5 -31))" +"POLYGON ((21 -31, 21 -31.5, 20.5 -31.5, 20.5 -31, 21 -31))" +"POLYGON ((21.5 -31, 21.5 -31.5, 21 -31.5, 21 -31, 21.5 -31))" +"POLYGON ((22 -31, 22 -31.5, 21.5 -31.5, 21.5 -31, 22 -31))" +"POLYGON ((22.5 -31, 22.5 -31.5, 22 -31.5, 22 -31, 22.5 -31))" +"POLYGON ((23 -31, 23 -31.5, 22.5 -31.5, 22.5 -31, 23 -31))" +"POLYGON ((23.5 -31, 23.5 -31.5, 23 -31.5, 23 -31, 23.5 -31))" +"POLYGON ((24 -31, 24 -31.5, 23.5 -31.5, 23.5 -31, 24 -31))" +"POLYGON ((24.5 -31, 24.5 -31.5, 24 -31.5, 24 -31, 24.5 -31))" +"POLYGON ((25 -31, 25 -31.5, 24.5 -31.5, 24.5 -31, 25 -31))" +"POLYGON ((25.5 -31, 25.5 -31.5, 25 -31.5, 25 -31, 25.5 -31))" +"POLYGON ((26 -31, 26 -31.5, 25.5 -31.5, 25.5 -31, 26 -31))" +"POLYGON ((26.5 -31, 26.5 -31.5, 26 -31.5, 26 -31, 26.5 -31))" +"POLYGON ((27 -31, 27 -31.5, 26.5 -31.5, 26.5 -31, 27 -31))" +"POLYGON ((27.5 -31, 27.5 -31.5, 27 -31.5, 27 -31, 27.5 -31))" +"POLYGON ((28 -31, 28 -31.5, 27.5 -31.5, 27.5 -31, 28 -31))" +"POLYGON ((28.5 -31, 28.5 -31.5, 28 -31.5, 28 -31, 28.5 -31))" +"POLYGON ((29 -31, 29 -31.5, 28.5 -31.5, 28.5 -31, 29 -31))" +"POLYGON ((29.5 -31, 29.5 -31.5, 29 -31.5, 29 -31, 29.5 -31))" +"POLYGON ((30 -31, 30 -31.5, 29.5 -31.5, 29.5 -31, 30 -31))" +"POLYGON ((18 -30.5, 18 -31, 17.5 -31, 17.5 -30.5, 18 -30.5))" +"POLYGON ((18.5 -30.5, 18.5 -31, 18 -31, 18 -30.5, 18.5 -30.5))" +"POLYGON ((19 -30.5, 19 -31, 18.5 -31, 18.5 -30.5, 19 -30.5))" +"POLYGON ((19.5 -30.5, 19.5 -31, 19 -31, 19 -30.5, 19.5 -30.5))" +"POLYGON ((20 -30.5, 20 -31, 19.5 -31, 19.5 -30.5, 20 -30.5))" +"POLYGON ((20.5 -30.5, 20.5 -31, 20 -31, 20 -30.5, 20.5 -30.5))" +"POLYGON ((21 -30.5, 21 -31, 20.5 -31, 20.5 -30.5, 21 -30.5))" +"POLYGON ((21.5 -30.5, 21.5 -31, 21 -31, 21 -30.5, 21.5 -30.5))" +"POLYGON ((22 -30.5, 22 -31, 21.5 -31, 21.5 -30.5, 22 -30.5))" +"POLYGON ((22.5 -30.5, 22.5 -31, 22 -31, 22 -30.5, 22.5 -30.5))" +"POLYGON ((23 -30.5, 23 -31, 22.5 -31, 22.5 -30.5, 23 -30.5))" +"POLYGON ((23.5 -30.5, 23.5 -31, 23 -31, 23 -30.5, 23.5 -30.5))" +"POLYGON ((24 -30.5, 24 -31, 23.5 -31, 23.5 -30.5, 24 -30.5))" +"POLYGON ((24.5 -30.5, 24.5 -31, 24 -31, 24 -30.5, 24.5 -30.5))" +"POLYGON ((25 -30.5, 25 -31, 24.5 -31, 24.5 -30.5, 25 -30.5))" +"POLYGON ((25.5 -30.5, 25.5 -31, 25 -31, 25 -30.5, 25.5 -30.5))" +"POLYGON ((26 -30.5, 26 -31, 25.5 -31, 25.5 -30.5, 26 -30.5))" +"POLYGON ((26.5 -30.5, 26.5 -31, 26 -31, 26 -30.5, 26.5 -30.5))" +"POLYGON ((27 -30.5, 27 -31, 26.5 -31, 26.5 -30.5, 27 -30.5))" +"POLYGON ((27.5 -30.5, 27.5 -31, 27 -31, 27 -30.5, 27.5 -30.5))" +"POLYGON ((28 -30.5, 28 -31, 27.5 -31, 27.5 -30.5, 28 -30.5))" +"POLYGON ((28.5 -30.5, 28.5 -31, 28 -31, 28 -30.5, 28.5 -30.5))" +"POLYGON ((29 -30.5, 29 -31, 28.5 -31, 28.5 -30.5, 29 -30.5))" +"POLYGON ((29.5 -30.5, 29.5 -31, 29 -31, 29 -30.5, 29.5 -30.5))" +"POLYGON ((30 -30.5, 30 -31, 29.5 -31, 29.5 -30.5, 30 -30.5))" +"POLYGON ((30.5 -30.5, 30.5 -31, 30 -31, 30 -30.5, 30.5 -30.5))" +"POLYGON ((17.5 -30, 17.5 -30.5, 17 -30.5, 17 -30, 17.5 -30))" +"POLYGON ((18 -30, 18 -30.5, 17.5 -30.5, 17.5 -30, 18 -30))" +"POLYGON ((18.5 -30, 18.5 -30.5, 18 -30.5, 18 -30, 18.5 -30))" +"POLYGON ((19 -30, 19 -30.5, 18.5 -30.5, 18.5 -30, 19 -30))" +"POLYGON ((19.5 -30, 19.5 -30.5, 19 -30.5, 19 -30, 19.5 -30))" +"POLYGON ((20 -30, 20 -30.5, 19.5 -30.5, 19.5 -30, 20 -30))" +"POLYGON ((20.5 -30, 20.5 -30.5, 20 -30.5, 20 -30, 20.5 -30))" +"POLYGON ((21 -30, 21 -30.5, 20.5 -30.5, 20.5 -30, 21 -30))" +"POLYGON ((21.5 -30, 21.5 -30.5, 21 -30.5, 21 -30, 21.5 -30))" +"POLYGON ((22 -30, 22 -30.5, 21.5 -30.5, 21.5 -30, 22 -30))" +"POLYGON ((22.5 -30, 22.5 -30.5, 22 -30.5, 22 -30, 22.5 -30))" +"POLYGON ((23 -30, 23 -30.5, 22.5 -30.5, 22.5 -30, 23 -30))" +"POLYGON ((23.5 -30, 23.5 -30.5, 23 -30.5, 23 -30, 23.5 -30))" +"POLYGON ((24 -30, 24 -30.5, 23.5 -30.5, 23.5 -30, 24 -30))" +"POLYGON ((24.5 -30, 24.5 -30.5, 24 -30.5, 24 -30, 24.5 -30))" +"POLYGON ((25 -30, 25 -30.5, 24.5 -30.5, 24.5 -30, 25 -30))" +"POLYGON ((25.5 -30, 25.5 -30.5, 25 -30.5, 25 -30, 25.5 -30))" +"POLYGON ((26 -30, 26 -30.5, 25.5 -30.5, 25.5 -30, 26 -30))" +"POLYGON ((26.5 -30, 26.5 -30.5, 26 -30.5, 26 -30, 26.5 -30))" +"POLYGON ((27 -30, 27 -30.5, 26.5 -30.5, 26.5 -30, 27 -30))" +"POLYGON ((27.5 -30, 27.5 -30.5, 27 -30.5, 27 -30, 27.5 -30))" +"POLYGON ((28 -30, 28 -30.5, 27.5 -30.5, 27.5 -30, 28 -30))" +"POLYGON ((28.5 -30, 28.5 -30.5, 28 -30.5, 28 -30, 28.5 -30))" +"POLYGON ((29 -30, 29 -30.5, 28.5 -30.5, 28.5 -30, 29 -30))" +"POLYGON ((29.5 -30, 29.5 -30.5, 29 -30.5, 29 -30, 29.5 -30))" +"POLYGON ((30 -30, 30 -30.5, 29.5 -30.5, 29.5 -30, 30 -30))" +"POLYGON ((30.5 -30, 30.5 -30.5, 30 -30.5, 30 -30, 30.5 -30))" +"POLYGON ((17.5 -29.5, 17.5 -30, 17 -30, 17 -29.5, 17.5 -29.5))" +"POLYGON ((18 -29.5, 18 -30, 17.5 -30, 17.5 -29.5, 18 -29.5))" +"POLYGON ((18.5 -29.5, 18.5 -30, 18 -30, 18 -29.5, 18.5 -29.5))" +"POLYGON ((19 -29.5, 19 -30, 18.5 -30, 18.5 -29.5, 19 -29.5))" +"POLYGON ((19.5 -29.5, 19.5 -30, 19 -30, 19 -29.5, 19.5 -29.5))" +"POLYGON ((20 -29.5, 20 -30, 19.5 -30, 19.5 -29.5, 20 -29.5))" +"POLYGON ((20.5 -29.5, 20.5 -30, 20 -30, 20 -29.5, 20.5 -29.5))" +"POLYGON ((21 -29.5, 21 -30, 20.5 -30, 20.5 -29.5, 21 -29.5))" +"POLYGON ((21.5 -29.5, 21.5 -30, 21 -30, 21 -29.5, 21.5 -29.5))" +"POLYGON ((22 -29.5, 22 -30, 21.5 -30, 21.5 -29.5, 22 -29.5))" +"POLYGON ((22.5 -29.5, 22.5 -30, 22 -30, 22 -29.5, 22.5 -29.5))" +"POLYGON ((23 -29.5, 23 -30, 22.5 -30, 22.5 -29.5, 23 -29.5))" +"POLYGON ((23.5 -29.5, 23.5 -30, 23 -30, 23 -29.5, 23.5 -29.5))" +"POLYGON ((24 -29.5, 24 -30, 23.5 -30, 23.5 -29.5, 24 -29.5))" +"POLYGON ((24.5 -29.5, 24.5 -30, 24 -30, 24 -29.5, 24.5 -29.5))" +"POLYGON ((25 -29.5, 25 -30, 24.5 -30, 24.5 -29.5, 25 -29.5))" +"POLYGON ((25.5 -29.5, 25.5 -30, 25 -30, 25 -29.5, 25.5 -29.5))" +"POLYGON ((26 -29.5, 26 -30, 25.5 -30, 25.5 -29.5, 26 -29.5))" +"POLYGON ((26.5 -29.5, 26.5 -30, 26 -30, 26 -29.5, 26.5 -29.5))" +"POLYGON ((27 -29.5, 27 -30, 26.5 -30, 26.5 -29.5, 27 -29.5))" +"POLYGON ((27.5 -29.5, 27.5 -30, 27 -30, 27 -29.5, 27.5 -29.5))" +"POLYGON ((28 -29.5, 28 -30, 27.5 -30, 27.5 -29.5, 28 -29.5))" +"POLYGON ((28.5 -29.5, 28.5 -30, 28 -30, 28 -29.5, 28.5 -29.5))" +"POLYGON ((29 -29.5, 29 -30, 28.5 -30, 28.5 -29.5, 29 -29.5))" +"POLYGON ((29.5 -29.5, 29.5 -30, 29 -30, 29 -29.5, 29.5 -29.5))" +"POLYGON ((30 -29.5, 30 -30, 29.5 -30, 29.5 -29.5, 30 -29.5))" +"POLYGON ((30.5 -29.5, 30.5 -30, 30 -30, 30 -29.5, 30.5 -29.5))" +"POLYGON ((31 -29.5, 31 -30, 30.5 -30, 30.5 -29.5, 31 -29.5))" +"POLYGON ((17.5 -29, 17.5 -29.5, 17 -29.5, 17 -29, 17.5 -29))" +"POLYGON ((18 -29, 18 -29.5, 17.5 -29.5, 17.5 -29, 18 -29))" +"POLYGON ((18.5 -29, 18.5 -29.5, 18 -29.5, 18 -29, 18.5 -29))" +"POLYGON ((19 -29, 19 -29.5, 18.5 -29.5, 18.5 -29, 19 -29))" +"POLYGON ((19.5 -29, 19.5 -29.5, 19 -29.5, 19 -29, 19.5 -29))" +"POLYGON ((20 -29, 20 -29.5, 19.5 -29.5, 19.5 -29, 20 -29))" +"POLYGON ((20.5 -29, 20.5 -29.5, 20 -29.5, 20 -29, 20.5 -29))" +"POLYGON ((21 -29, 21 -29.5, 20.5 -29.5, 20.5 -29, 21 -29))" +"POLYGON ((21.5 -29, 21.5 -29.5, 21 -29.5, 21 -29, 21.5 -29))" +"POLYGON ((22 -29, 22 -29.5, 21.5 -29.5, 21.5 -29, 22 -29))" +"POLYGON ((22.5 -29, 22.5 -29.5, 22 -29.5, 22 -29, 22.5 -29))" +"POLYGON ((23 -29, 23 -29.5, 22.5 -29.5, 22.5 -29, 23 -29))" +"POLYGON ((23.5 -29, 23.5 -29.5, 23 -29.5, 23 -29, 23.5 -29))" +"POLYGON ((24 -29, 24 -29.5, 23.5 -29.5, 23.5 -29, 24 -29))" +"POLYGON ((24.5 -29, 24.5 -29.5, 24 -29.5, 24 -29, 24.5 -29))" +"POLYGON ((25 -29, 25 -29.5, 24.5 -29.5, 24.5 -29, 25 -29))" +"POLYGON ((25.5 -29, 25.5 -29.5, 25 -29.5, 25 -29, 25.5 -29))" +"POLYGON ((26 -29, 26 -29.5, 25.5 -29.5, 25.5 -29, 26 -29))" +"POLYGON ((26.5 -29, 26.5 -29.5, 26 -29.5, 26 -29, 26.5 -29))" +"POLYGON ((27 -29, 27 -29.5, 26.5 -29.5, 26.5 -29, 27 -29))" +"POLYGON ((27.5 -29, 27.5 -29.5, 27 -29.5, 27 -29, 27.5 -29))" +"POLYGON ((28 -29, 28 -29.5, 27.5 -29.5, 27.5 -29, 28 -29))" +"POLYGON ((28.5 -29, 28.5 -29.5, 28 -29.5, 28 -29, 28.5 -29))" +"POLYGON ((29 -29, 29 -29.5, 28.5 -29.5, 28.5 -29, 29 -29))" +"POLYGON ((29.5 -29, 29.5 -29.5, 29 -29.5, 29 -29, 29.5 -29))" +"POLYGON ((30 -29, 30 -29.5, 29.5 -29.5, 29.5 -29, 30 -29))" +"POLYGON ((30.5 -29, 30.5 -29.5, 30 -29.5, 30 -29, 30.5 -29))" +"POLYGON ((31 -29, 31 -29.5, 30.5 -29.5, 30.5 -29, 31 -29))" +"POLYGON ((31.5 -29, 31.5 -29.5, 31 -29.5, 31 -29, 31.5 -29))" +"POLYGON ((17 -28.5, 17 -29, 16.5 -29, 16.5 -28.5, 17 -28.5))" +"POLYGON ((17.5 -28.5, 17.5 -29, 17 -29, 17 -28.5, 17.5 -28.5))" +"POLYGON ((18 -28.5, 18 -29, 17.5 -29, 17.5 -28.5, 18 -28.5))" +"POLYGON ((18.5 -28.5, 18.5 -29, 18 -29, 18 -28.5, 18.5 -28.5))" +"POLYGON ((19 -28.5, 19 -29, 18.5 -29, 18.5 -28.5, 19 -28.5))" +"POLYGON ((19.5 -28.5, 19.5 -29, 19 -29, 19 -28.5, 19.5 -28.5))" +"POLYGON ((20 -28.5, 20 -29, 19.5 -29, 19.5 -28.5, 20 -28.5))" +"POLYGON ((20.5 -28.5, 20.5 -29, 20 -29, 20 -28.5, 20.5 -28.5))" +"POLYGON ((21 -28.5, 21 -29, 20.5 -29, 20.5 -28.5, 21 -28.5))" +"POLYGON ((21.5 -28.5, 21.5 -29, 21 -29, 21 -28.5, 21.5 -28.5))" +"POLYGON ((22 -28.5, 22 -29, 21.5 -29, 21.5 -28.5, 22 -28.5))" +"POLYGON ((22.5 -28.5, 22.5 -29, 22 -29, 22 -28.5, 22.5 -28.5))" +"POLYGON ((23 -28.5, 23 -29, 22.5 -29, 22.5 -28.5, 23 -28.5))" +"POLYGON ((23.5 -28.5, 23.5 -29, 23 -29, 23 -28.5, 23.5 -28.5))" +"POLYGON ((24 -28.5, 24 -29, 23.5 -29, 23.5 -28.5, 24 -28.5))" +"POLYGON ((24.5 -28.5, 24.5 -29, 24 -29, 24 -28.5, 24.5 -28.5))" +"POLYGON ((25 -28.5, 25 -29, 24.5 -29, 24.5 -28.5, 25 -28.5))" +"POLYGON ((25.5 -28.5, 25.5 -29, 25 -29, 25 -28.5, 25.5 -28.5))" +"POLYGON ((26 -28.5, 26 -29, 25.5 -29, 25.5 -28.5, 26 -28.5))" +"POLYGON ((26.5 -28.5, 26.5 -29, 26 -29, 26 -28.5, 26.5 -28.5))" +"POLYGON ((27 -28.5, 27 -29, 26.5 -29, 26.5 -28.5, 27 -28.5))" +"POLYGON ((27.5 -28.5, 27.5 -29, 27 -29, 27 -28.5, 27.5 -28.5))" +"POLYGON ((28 -28.5, 28 -29, 27.5 -29, 27.5 -28.5, 28 -28.5))" +"POLYGON ((28.5 -28.5, 28.5 -29, 28 -29, 28 -28.5, 28.5 -28.5))" +"POLYGON ((29 -28.5, 29 -29, 28.5 -29, 28.5 -28.5, 29 -28.5))" +"POLYGON ((29.5 -28.5, 29.5 -29, 29 -29, 29 -28.5, 29.5 -28.5))" +"POLYGON ((30 -28.5, 30 -29, 29.5 -29, 29.5 -28.5, 30 -28.5))" +"POLYGON ((30.5 -28.5, 30.5 -29, 30 -29, 30 -28.5, 30.5 -28.5))" +"POLYGON ((31 -28.5, 31 -29, 30.5 -29, 30.5 -28.5, 31 -28.5))" +"POLYGON ((31.5 -28.5, 31.5 -29, 31 -29, 31 -28.5, 31.5 -28.5))" +"POLYGON ((32 -28.5, 32 -29, 31.5 -29, 31.5 -28.5, 32 -28.5))" +"POLYGON ((16.5 -28, 16.5 -28.5, 16 -28.5, 16 -28, 16.5 -28))" +"POLYGON ((17 -28, 17 -28.5, 16.5 -28.5, 16.5 -28, 17 -28))" +"POLYGON ((17.5 -28, 17.5 -28.5, 17 -28.5, 17 -28, 17.5 -28))" +"POLYGON ((18 -28, 18 -28.5, 17.5 -28.5, 17.5 -28, 18 -28))" +"POLYGON ((18.5 -28, 18.5 -28.5, 18 -28.5, 18 -28, 18.5 -28))" +"POLYGON ((19 -28, 19 -28.5, 18.5 -28.5, 18.5 -28, 19 -28))" +"POLYGON ((19.5 -28, 19.5 -28.5, 19 -28.5, 19 -28, 19.5 -28))" +"POLYGON ((20 -28, 20 -28.5, 19.5 -28.5, 19.5 -28, 20 -28))" +"POLYGON ((20.5 -28, 20.5 -28.5, 20 -28.5, 20 -28, 20.5 -28))" +"POLYGON ((21 -28, 21 -28.5, 20.5 -28.5, 20.5 -28, 21 -28))" +"POLYGON ((21.5 -28, 21.5 -28.5, 21 -28.5, 21 -28, 21.5 -28))" +"POLYGON ((22 -28, 22 -28.5, 21.5 -28.5, 21.5 -28, 22 -28))" +"POLYGON ((22.5 -28, 22.5 -28.5, 22 -28.5, 22 -28, 22.5 -28))" +"POLYGON ((23 -28, 23 -28.5, 22.5 -28.5, 22.5 -28, 23 -28))" +"POLYGON ((23.5 -28, 23.5 -28.5, 23 -28.5, 23 -28, 23.5 -28))" +"POLYGON ((24 -28, 24 -28.5, 23.5 -28.5, 23.5 -28, 24 -28))" +"POLYGON ((24.5 -28, 24.5 -28.5, 24 -28.5, 24 -28, 24.5 -28))" +"POLYGON ((25 -28, 25 -28.5, 24.5 -28.5, 24.5 -28, 25 -28))" +"POLYGON ((25.5 -28, 25.5 -28.5, 25 -28.5, 25 -28, 25.5 -28))" +"POLYGON ((26 -28, 26 -28.5, 25.5 -28.5, 25.5 -28, 26 -28))" +"POLYGON ((26.5 -28, 26.5 -28.5, 26 -28.5, 26 -28, 26.5 -28))" +"POLYGON ((27 -28, 27 -28.5, 26.5 -28.5, 26.5 -28, 27 -28))" +"POLYGON ((27.5 -28, 27.5 -28.5, 27 -28.5, 27 -28, 27.5 -28))" +"POLYGON ((28 -28, 28 -28.5, 27.5 -28.5, 27.5 -28, 28 -28))" +"POLYGON ((28.5 -28, 28.5 -28.5, 28 -28.5, 28 -28, 28.5 -28))" +"POLYGON ((29 -28, 29 -28.5, 28.5 -28.5, 28.5 -28, 29 -28))" +"POLYGON ((29.5 -28, 29.5 -28.5, 29 -28.5, 29 -28, 29.5 -28))" +"POLYGON ((30 -28, 30 -28.5, 29.5 -28.5, 29.5 -28, 30 -28))" +"POLYGON ((30.5 -28, 30.5 -28.5, 30 -28.5, 30 -28, 30.5 -28))" +"POLYGON ((31 -28, 31 -28.5, 30.5 -28.5, 30.5 -28, 31 -28))" +"POLYGON ((31.5 -28, 31.5 -28.5, 31 -28.5, 31 -28, 31.5 -28))" +"POLYGON ((32 -28, 32 -28.5, 31.5 -28.5, 31.5 -28, 32 -28))" +"POLYGON ((32.5 -28, 32.5 -28.5, 32 -28.5, 32 -28, 32.5 -28))" +"POLYGON ((16 -27.5, 16 -28, 15.5 -28, 15.5 -27.5, 16 -27.5))" +"POLYGON ((16.5 -27.5, 16.5 -28, 16 -28, 16 -27.5, 16.5 -27.5))" +"POLYGON ((17 -27.5, 17 -28, 16.5 -28, 16.5 -27.5, 17 -27.5))" +"POLYGON ((17.5 -27.5, 17.5 -28, 17 -28, 17 -27.5, 17.5 -27.5))" +"POLYGON ((18 -27.5, 18 -28, 17.5 -28, 17.5 -27.5, 18 -27.5))" +"POLYGON ((18.5 -27.5, 18.5 -28, 18 -28, 18 -27.5, 18.5 -27.5))" +"POLYGON ((19 -27.5, 19 -28, 18.5 -28, 18.5 -27.5, 19 -27.5))" +"POLYGON ((19.5 -27.5, 19.5 -28, 19 -28, 19 -27.5, 19.5 -27.5))" +"POLYGON ((20 -27.5, 20 -28, 19.5 -28, 19.5 -27.5, 20 -27.5))" +"POLYGON ((20.5 -27.5, 20.5 -28, 20 -28, 20 -27.5, 20.5 -27.5))" +"POLYGON ((21 -27.5, 21 -28, 20.5 -28, 20.5 -27.5, 21 -27.5))" +"POLYGON ((21.5 -27.5, 21.5 -28, 21 -28, 21 -27.5, 21.5 -27.5))" +"POLYGON ((22 -27.5, 22 -28, 21.5 -28, 21.5 -27.5, 22 -27.5))" +"POLYGON ((22.5 -27.5, 22.5 -28, 22 -28, 22 -27.5, 22.5 -27.5))" +"POLYGON ((23 -27.5, 23 -28, 22.5 -28, 22.5 -27.5, 23 -27.5))" +"POLYGON ((23.5 -27.5, 23.5 -28, 23 -28, 23 -27.5, 23.5 -27.5))" +"POLYGON ((24 -27.5, 24 -28, 23.5 -28, 23.5 -27.5, 24 -27.5))" +"POLYGON ((24.5 -27.5, 24.5 -28, 24 -28, 24 -27.5, 24.5 -27.5))" +"POLYGON ((25 -27.5, 25 -28, 24.5 -28, 24.5 -27.5, 25 -27.5))" +"POLYGON ((25.5 -27.5, 25.5 -28, 25 -28, 25 -27.5, 25.5 -27.5))" +"POLYGON ((26 -27.5, 26 -28, 25.5 -28, 25.5 -27.5, 26 -27.5))" +"POLYGON ((26.5 -27.5, 26.5 -28, 26 -28, 26 -27.5, 26.5 -27.5))" +"POLYGON ((27 -27.5, 27 -28, 26.5 -28, 26.5 -27.5, 27 -27.5))" +"POLYGON ((27.5 -27.5, 27.5 -28, 27 -28, 27 -27.5, 27.5 -27.5))" +"POLYGON ((28 -27.5, 28 -28, 27.5 -28, 27.5 -27.5, 28 -27.5))" +"POLYGON ((28.5 -27.5, 28.5 -28, 28 -28, 28 -27.5, 28.5 -27.5))" +"POLYGON ((29 -27.5, 29 -28, 28.5 -28, 28.5 -27.5, 29 -27.5))" +"POLYGON ((29.5 -27.5, 29.5 -28, 29 -28, 29 -27.5, 29.5 -27.5))" +"POLYGON ((30 -27.5, 30 -28, 29.5 -28, 29.5 -27.5, 30 -27.5))" +"POLYGON ((30.5 -27.5, 30.5 -28, 30 -28, 30 -27.5, 30.5 -27.5))" +"POLYGON ((31 -27.5, 31 -28, 30.5 -28, 30.5 -27.5, 31 -27.5))" +"POLYGON ((31.5 -27.5, 31.5 -28, 31 -28, 31 -27.5, 31.5 -27.5))" +"POLYGON ((32 -27.5, 32 -28, 31.5 -28, 31.5 -27.5, 32 -27.5))" +"POLYGON ((32.5 -27.5, 32.5 -28, 32 -28, 32 -27.5, 32.5 -27.5))" +"POLYGON ((16 -27, 16 -27.5, 15.5 -27.5, 15.5 -27, 16 -27))" +"POLYGON ((16.5 -27, 16.5 -27.5, 16 -27.5, 16 -27, 16.5 -27))" +"POLYGON ((17 -27, 17 -27.5, 16.5 -27.5, 16.5 -27, 17 -27))" +"POLYGON ((17.5 -27, 17.5 -27.5, 17 -27.5, 17 -27, 17.5 -27))" +"POLYGON ((18 -27, 18 -27.5, 17.5 -27.5, 17.5 -27, 18 -27))" +"POLYGON ((18.5 -27, 18.5 -27.5, 18 -27.5, 18 -27, 18.5 -27))" +"POLYGON ((19 -27, 19 -27.5, 18.5 -27.5, 18.5 -27, 19 -27))" +"POLYGON ((19.5 -27, 19.5 -27.5, 19 -27.5, 19 -27, 19.5 -27))" +"POLYGON ((20 -27, 20 -27.5, 19.5 -27.5, 19.5 -27, 20 -27))" +"POLYGON ((20.5 -27, 20.5 -27.5, 20 -27.5, 20 -27, 20.5 -27))" +"POLYGON ((21 -27, 21 -27.5, 20.5 -27.5, 20.5 -27, 21 -27))" +"POLYGON ((21.5 -27, 21.5 -27.5, 21 -27.5, 21 -27, 21.5 -27))" +"POLYGON ((22 -27, 22 -27.5, 21.5 -27.5, 21.5 -27, 22 -27))" +"POLYGON ((22.5 -27, 22.5 -27.5, 22 -27.5, 22 -27, 22.5 -27))" +"POLYGON ((23 -27, 23 -27.5, 22.5 -27.5, 22.5 -27, 23 -27))" +"POLYGON ((23.5 -27, 23.5 -27.5, 23 -27.5, 23 -27, 23.5 -27))" +"POLYGON ((24 -27, 24 -27.5, 23.5 -27.5, 23.5 -27, 24 -27))" +"POLYGON ((24.5 -27, 24.5 -27.5, 24 -27.5, 24 -27, 24.5 -27))" +"POLYGON ((25 -27, 25 -27.5, 24.5 -27.5, 24.5 -27, 25 -27))" +"POLYGON ((25.5 -27, 25.5 -27.5, 25 -27.5, 25 -27, 25.5 -27))" +"POLYGON ((26 -27, 26 -27.5, 25.5 -27.5, 25.5 -27, 26 -27))" +"POLYGON ((26.5 -27, 26.5 -27.5, 26 -27.5, 26 -27, 26.5 -27))" +"POLYGON ((27 -27, 27 -27.5, 26.5 -27.5, 26.5 -27, 27 -27))" +"POLYGON ((27.5 -27, 27.5 -27.5, 27 -27.5, 27 -27, 27.5 -27))" +"POLYGON ((28 -27, 28 -27.5, 27.5 -27.5, 27.5 -27, 28 -27))" +"POLYGON ((28.5 -27, 28.5 -27.5, 28 -27.5, 28 -27, 28.5 -27))" +"POLYGON ((29 -27, 29 -27.5, 28.5 -27.5, 28.5 -27, 29 -27))" +"POLYGON ((29.5 -27, 29.5 -27.5, 29 -27.5, 29 -27, 29.5 -27))" +"POLYGON ((30 -27, 30 -27.5, 29.5 -27.5, 29.5 -27, 30 -27))" +"POLYGON ((30.5 -27, 30.5 -27.5, 30 -27.5, 30 -27, 30.5 -27))" +"POLYGON ((31 -27, 31 -27.5, 30.5 -27.5, 30.5 -27, 31 -27))" +"POLYGON ((31.5 -27, 31.5 -27.5, 31 -27.5, 31 -27, 31.5 -27))" +"POLYGON ((32 -27, 32 -27.5, 31.5 -27.5, 31.5 -27, 32 -27))" +"POLYGON ((32.5 -27, 32.5 -27.5, 32 -27.5, 32 -27, 32.5 -27))" +"POLYGON ((33 -27, 33 -27.5, 32.5 -27.5, 32.5 -27, 33 -27))" +"POLYGON ((15.5 -26.5, 15.5 -27, 15 -27, 15 -26.5, 15.5 -26.5))" +"POLYGON ((16 -26.5, 16 -27, 15.5 -27, 15.5 -26.5, 16 -26.5))" +"POLYGON ((16.5 -26.5, 16.5 -27, 16 -27, 16 -26.5, 16.5 -26.5))" +"POLYGON ((17 -26.5, 17 -27, 16.5 -27, 16.5 -26.5, 17 -26.5))" +"POLYGON ((17.5 -26.5, 17.5 -27, 17 -27, 17 -26.5, 17.5 -26.5))" +"POLYGON ((18 -26.5, 18 -27, 17.5 -27, 17.5 -26.5, 18 -26.5))" +"POLYGON ((18.5 -26.5, 18.5 -27, 18 -27, 18 -26.5, 18.5 -26.5))" +"POLYGON ((19 -26.5, 19 -27, 18.5 -27, 18.5 -26.5, 19 -26.5))" +"POLYGON ((19.5 -26.5, 19.5 -27, 19 -27, 19 -26.5, 19.5 -26.5))" +"POLYGON ((20 -26.5, 20 -27, 19.5 -27, 19.5 -26.5, 20 -26.5))" +"POLYGON ((20.5 -26.5, 20.5 -27, 20 -27, 20 -26.5, 20.5 -26.5))" +"POLYGON ((21 -26.5, 21 -27, 20.5 -27, 20.5 -26.5, 21 -26.5))" +"POLYGON ((21.5 -26.5, 21.5 -27, 21 -27, 21 -26.5, 21.5 -26.5))" +"POLYGON ((22 -26.5, 22 -27, 21.5 -27, 21.5 -26.5, 22 -26.5))" +"POLYGON ((22.5 -26.5, 22.5 -27, 22 -27, 22 -26.5, 22.5 -26.5))" +"POLYGON ((23 -26.5, 23 -27, 22.5 -27, 22.5 -26.5, 23 -26.5))" +"POLYGON ((23.5 -26.5, 23.5 -27, 23 -27, 23 -26.5, 23.5 -26.5))" +"POLYGON ((24 -26.5, 24 -27, 23.5 -27, 23.5 -26.5, 24 -26.5))" +"POLYGON ((24.5 -26.5, 24.5 -27, 24 -27, 24 -26.5, 24.5 -26.5))" +"POLYGON ((25 -26.5, 25 -27, 24.5 -27, 24.5 -26.5, 25 -26.5))" +"POLYGON ((25.5 -26.5, 25.5 -27, 25 -27, 25 -26.5, 25.5 -26.5))" +"POLYGON ((26 -26.5, 26 -27, 25.5 -27, 25.5 -26.5, 26 -26.5))" +"POLYGON ((26.5 -26.5, 26.5 -27, 26 -27, 26 -26.5, 26.5 -26.5))" +"POLYGON ((27 -26.5, 27 -27, 26.5 -27, 26.5 -26.5, 27 -26.5))" +"POLYGON ((27.5 -26.5, 27.5 -27, 27 -27, 27 -26.5, 27.5 -26.5))" +"POLYGON ((28 -26.5, 28 -27, 27.5 -27, 27.5 -26.5, 28 -26.5))" +"POLYGON ((28.5 -26.5, 28.5 -27, 28 -27, 28 -26.5, 28.5 -26.5))" +"POLYGON ((29 -26.5, 29 -27, 28.5 -27, 28.5 -26.5, 29 -26.5))" +"POLYGON ((29.5 -26.5, 29.5 -27, 29 -27, 29 -26.5, 29.5 -26.5))" +"POLYGON ((30 -26.5, 30 -27, 29.5 -27, 29.5 -26.5, 30 -26.5))" +"POLYGON ((30.5 -26.5, 30.5 -27, 30 -27, 30 -26.5, 30.5 -26.5))" +"POLYGON ((31 -26.5, 31 -27, 30.5 -27, 30.5 -26.5, 31 -26.5))" +"POLYGON ((31.5 -26.5, 31.5 -27, 31 -27, 31 -26.5, 31.5 -26.5))" +"POLYGON ((32 -26.5, 32 -27, 31.5 -27, 31.5 -26.5, 32 -26.5))" +"POLYGON ((32.5 -26.5, 32.5 -27, 32 -27, 32 -26.5, 32.5 -26.5))" +"POLYGON ((33 -26.5, 33 -27, 32.5 -27, 32.5 -26.5, 33 -26.5))" +"POLYGON ((15.5 -26, 15.5 -26.5, 15 -26.5, 15 -26, 15.5 -26))" +"POLYGON ((16 -26, 16 -26.5, 15.5 -26.5, 15.5 -26, 16 -26))" +"POLYGON ((16.5 -26, 16.5 -26.5, 16 -26.5, 16 -26, 16.5 -26))" +"POLYGON ((17 -26, 17 -26.5, 16.5 -26.5, 16.5 -26, 17 -26))" +"POLYGON ((17.5 -26, 17.5 -26.5, 17 -26.5, 17 -26, 17.5 -26))" +"POLYGON ((18 -26, 18 -26.5, 17.5 -26.5, 17.5 -26, 18 -26))" +"POLYGON ((18.5 -26, 18.5 -26.5, 18 -26.5, 18 -26, 18.5 -26))" +"POLYGON ((19 -26, 19 -26.5, 18.5 -26.5, 18.5 -26, 19 -26))" +"POLYGON ((19.5 -26, 19.5 -26.5, 19 -26.5, 19 -26, 19.5 -26))" +"POLYGON ((20 -26, 20 -26.5, 19.5 -26.5, 19.5 -26, 20 -26))" +"POLYGON ((20.5 -26, 20.5 -26.5, 20 -26.5, 20 -26, 20.5 -26))" +"POLYGON ((21 -26, 21 -26.5, 20.5 -26.5, 20.5 -26, 21 -26))" +"POLYGON ((21.5 -26, 21.5 -26.5, 21 -26.5, 21 -26, 21.5 -26))" +"POLYGON ((22 -26, 22 -26.5, 21.5 -26.5, 21.5 -26, 22 -26))" +"POLYGON ((22.5 -26, 22.5 -26.5, 22 -26.5, 22 -26, 22.5 -26))" +"POLYGON ((23 -26, 23 -26.5, 22.5 -26.5, 22.5 -26, 23 -26))" +"POLYGON ((23.5 -26, 23.5 -26.5, 23 -26.5, 23 -26, 23.5 -26))" +"POLYGON ((24 -26, 24 -26.5, 23.5 -26.5, 23.5 -26, 24 -26))" +"POLYGON ((24.5 -26, 24.5 -26.5, 24 -26.5, 24 -26, 24.5 -26))" +"POLYGON ((25 -26, 25 -26.5, 24.5 -26.5, 24.5 -26, 25 -26))" +"POLYGON ((25.5 -26, 25.5 -26.5, 25 -26.5, 25 -26, 25.5 -26))" +"POLYGON ((26 -26, 26 -26.5, 25.5 -26.5, 25.5 -26, 26 -26))" +"POLYGON ((26.5 -26, 26.5 -26.5, 26 -26.5, 26 -26, 26.5 -26))" +"POLYGON ((27 -26, 27 -26.5, 26.5 -26.5, 26.5 -26, 27 -26))" +"POLYGON ((27.5 -26, 27.5 -26.5, 27 -26.5, 27 -26, 27.5 -26))" +"POLYGON ((28 -26, 28 -26.5, 27.5 -26.5, 27.5 -26, 28 -26))" +"POLYGON ((28.5 -26, 28.5 -26.5, 28 -26.5, 28 -26, 28.5 -26))" +"POLYGON ((29 -26, 29 -26.5, 28.5 -26.5, 28.5 -26, 29 -26))" +"POLYGON ((29.5 -26, 29.5 -26.5, 29 -26.5, 29 -26, 29.5 -26))" +"POLYGON ((30 -26, 30 -26.5, 29.5 -26.5, 29.5 -26, 30 -26))" +"POLYGON ((30.5 -26, 30.5 -26.5, 30 -26.5, 30 -26, 30.5 -26))" +"POLYGON ((31 -26, 31 -26.5, 30.5 -26.5, 30.5 -26, 31 -26))" +"POLYGON ((31.5 -26, 31.5 -26.5, 31 -26.5, 31 -26, 31.5 -26))" +"POLYGON ((32 -26, 32 -26.5, 31.5 -26.5, 31.5 -26, 32 -26))" +"POLYGON ((32.5 -26, 32.5 -26.5, 32 -26.5, 32 -26, 32.5 -26))" +"POLYGON ((33 -26, 33 -26.5, 32.5 -26.5, 32.5 -26, 33 -26))" +"POLYGON ((15.5 -25.5, 15.5 -26, 15 -26, 15 -25.5, 15.5 -25.5))" +"POLYGON ((16 -25.5, 16 -26, 15.5 -26, 15.5 -25.5, 16 -25.5))" +"POLYGON ((16.5 -25.5, 16.5 -26, 16 -26, 16 -25.5, 16.5 -25.5))" +"POLYGON ((17 -25.5, 17 -26, 16.5 -26, 16.5 -25.5, 17 -25.5))" +"POLYGON ((17.5 -25.5, 17.5 -26, 17 -26, 17 -25.5, 17.5 -25.5))" +"POLYGON ((18 -25.5, 18 -26, 17.5 -26, 17.5 -25.5, 18 -25.5))" +"POLYGON ((18.5 -25.5, 18.5 -26, 18 -26, 18 -25.5, 18.5 -25.5))" +"POLYGON ((19 -25.5, 19 -26, 18.5 -26, 18.5 -25.5, 19 -25.5))" +"POLYGON ((19.5 -25.5, 19.5 -26, 19 -26, 19 -25.5, 19.5 -25.5))" +"POLYGON ((20 -25.5, 20 -26, 19.5 -26, 19.5 -25.5, 20 -25.5))" +"POLYGON ((20.5 -25.5, 20.5 -26, 20 -26, 20 -25.5, 20.5 -25.5))" +"POLYGON ((21 -25.5, 21 -26, 20.5 -26, 20.5 -25.5, 21 -25.5))" +"POLYGON ((21.5 -25.5, 21.5 -26, 21 -26, 21 -25.5, 21.5 -25.5))" +"POLYGON ((22 -25.5, 22 -26, 21.5 -26, 21.5 -25.5, 22 -25.5))" +"POLYGON ((22.5 -25.5, 22.5 -26, 22 -26, 22 -25.5, 22.5 -25.5))" +"POLYGON ((23 -25.5, 23 -26, 22.5 -26, 22.5 -25.5, 23 -25.5))" +"POLYGON ((23.5 -25.5, 23.5 -26, 23 -26, 23 -25.5, 23.5 -25.5))" +"POLYGON ((24 -25.5, 24 -26, 23.5 -26, 23.5 -25.5, 24 -25.5))" +"POLYGON ((24.5 -25.5, 24.5 -26, 24 -26, 24 -25.5, 24.5 -25.5))" +"POLYGON ((25 -25.5, 25 -26, 24.5 -26, 24.5 -25.5, 25 -25.5))" +"POLYGON ((25.5 -25.5, 25.5 -26, 25 -26, 25 -25.5, 25.5 -25.5))" +"POLYGON ((26 -25.5, 26 -26, 25.5 -26, 25.5 -25.5, 26 -25.5))" +"POLYGON ((26.5 -25.5, 26.5 -26, 26 -26, 26 -25.5, 26.5 -25.5))" +"POLYGON ((27 -25.5, 27 -26, 26.5 -26, 26.5 -25.5, 27 -25.5))" +"POLYGON ((27.5 -25.5, 27.5 -26, 27 -26, 27 -25.5, 27.5 -25.5))" +"POLYGON ((28 -25.5, 28 -26, 27.5 -26, 27.5 -25.5, 28 -25.5))" +"POLYGON ((28.5 -25.5, 28.5 -26, 28 -26, 28 -25.5, 28.5 -25.5))" +"POLYGON ((29 -25.5, 29 -26, 28.5 -26, 28.5 -25.5, 29 -25.5))" +"POLYGON ((29.5 -25.5, 29.5 -26, 29 -26, 29 -25.5, 29.5 -25.5))" +"POLYGON ((30 -25.5, 30 -26, 29.5 -26, 29.5 -25.5, 30 -25.5))" +"POLYGON ((30.5 -25.5, 30.5 -26, 30 -26, 30 -25.5, 30.5 -25.5))" +"POLYGON ((31 -25.5, 31 -26, 30.5 -26, 30.5 -25.5, 31 -25.5))" +"POLYGON ((31.5 -25.5, 31.5 -26, 31 -26, 31 -25.5, 31.5 -25.5))" +"POLYGON ((32 -25.5, 32 -26, 31.5 -26, 31.5 -25.5, 32 -25.5))" +"POLYGON ((32.5 -25.5, 32.5 -26, 32 -26, 32 -25.5, 32.5 -25.5))" +"POLYGON ((15.5 -25, 15.5 -25.5, 15 -25.5, 15 -25, 15.5 -25))" +"POLYGON ((16 -25, 16 -25.5, 15.5 -25.5, 15.5 -25, 16 -25))" +"POLYGON ((16.5 -25, 16.5 -25.5, 16 -25.5, 16 -25, 16.5 -25))" +"POLYGON ((17 -25, 17 -25.5, 16.5 -25.5, 16.5 -25, 17 -25))" +"POLYGON ((17.5 -25, 17.5 -25.5, 17 -25.5, 17 -25, 17.5 -25))" +"POLYGON ((18 -25, 18 -25.5, 17.5 -25.5, 17.5 -25, 18 -25))" +"POLYGON ((18.5 -25, 18.5 -25.5, 18 -25.5, 18 -25, 18.5 -25))" +"POLYGON ((19 -25, 19 -25.5, 18.5 -25.5, 18.5 -25, 19 -25))" +"POLYGON ((19.5 -25, 19.5 -25.5, 19 -25.5, 19 -25, 19.5 -25))" +"POLYGON ((20 -25, 20 -25.5, 19.5 -25.5, 19.5 -25, 20 -25))" +"POLYGON ((20.5 -25, 20.5 -25.5, 20 -25.5, 20 -25, 20.5 -25))" +"POLYGON ((21 -25, 21 -25.5, 20.5 -25.5, 20.5 -25, 21 -25))" +"POLYGON ((21.5 -25, 21.5 -25.5, 21 -25.5, 21 -25, 21.5 -25))" +"POLYGON ((22 -25, 22 -25.5, 21.5 -25.5, 21.5 -25, 22 -25))" +"POLYGON ((22.5 -25, 22.5 -25.5, 22 -25.5, 22 -25, 22.5 -25))" +"POLYGON ((23 -25, 23 -25.5, 22.5 -25.5, 22.5 -25, 23 -25))" +"POLYGON ((23.5 -25, 23.5 -25.5, 23 -25.5, 23 -25, 23.5 -25))" +"POLYGON ((24 -25, 24 -25.5, 23.5 -25.5, 23.5 -25, 24 -25))" +"POLYGON ((24.5 -25, 24.5 -25.5, 24 -25.5, 24 -25, 24.5 -25))" +"POLYGON ((25 -25, 25 -25.5, 24.5 -25.5, 24.5 -25, 25 -25))" +"POLYGON ((25.5 -25, 25.5 -25.5, 25 -25.5, 25 -25, 25.5 -25))" +"POLYGON ((26 -25, 26 -25.5, 25.5 -25.5, 25.5 -25, 26 -25))" +"POLYGON ((26.5 -25, 26.5 -25.5, 26 -25.5, 26 -25, 26.5 -25))" +"POLYGON ((27 -25, 27 -25.5, 26.5 -25.5, 26.5 -25, 27 -25))" +"POLYGON ((27.5 -25, 27.5 -25.5, 27 -25.5, 27 -25, 27.5 -25))" +"POLYGON ((28 -25, 28 -25.5, 27.5 -25.5, 27.5 -25, 28 -25))" +"POLYGON ((28.5 -25, 28.5 -25.5, 28 -25.5, 28 -25, 28.5 -25))" +"POLYGON ((29 -25, 29 -25.5, 28.5 -25.5, 28.5 -25, 29 -25))" +"POLYGON ((29.5 -25, 29.5 -25.5, 29 -25.5, 29 -25, 29.5 -25))" +"POLYGON ((30 -25, 30 -25.5, 29.5 -25.5, 29.5 -25, 30 -25))" +"POLYGON ((30.5 -25, 30.5 -25.5, 30 -25.5, 30 -25, 30.5 -25))" +"POLYGON ((31 -25, 31 -25.5, 30.5 -25.5, 30.5 -25, 31 -25))" +"POLYGON ((31.5 -25, 31.5 -25.5, 31 -25.5, 31 -25, 31.5 -25))" +"POLYGON ((32 -25, 32 -25.5, 31.5 -25.5, 31.5 -25, 32 -25))" +"POLYGON ((32.5 -25, 32.5 -25.5, 32 -25.5, 32 -25, 32.5 -25))" +"POLYGON ((33 -25, 33 -25.5, 32.5 -25.5, 32.5 -25, 33 -25))" +"POLYGON ((33.5 -25, 33.5 -25.5, 33 -25.5, 33 -25, 33.5 -25))" +"POLYGON ((45 -25, 45 -25.5, 44.5 -25.5, 44.5 -25, 45 -25))" +"POLYGON ((45.5 -25, 45.5 -25.5, 45 -25.5, 45 -25, 45.5 -25))" +"POLYGON ((46 -25, 46 -25.5, 45.5 -25.5, 45.5 -25, 46 -25))" +"POLYGON ((15 -24.5, 15 -25, 14.5 -25, 14.5 -24.5, 15 -24.5))" +"POLYGON ((15.5 -24.5, 15.5 -25, 15 -25, 15 -24.5, 15.5 -24.5))" +"POLYGON ((16 -24.5, 16 -25, 15.5 -25, 15.5 -24.5, 16 -24.5))" +"POLYGON ((16.5 -24.5, 16.5 -25, 16 -25, 16 -24.5, 16.5 -24.5))" +"POLYGON ((17 -24.5, 17 -25, 16.5 -25, 16.5 -24.5, 17 -24.5))" +"POLYGON ((17.5 -24.5, 17.5 -25, 17 -25, 17 -24.5, 17.5 -24.5))" +"POLYGON ((18 -24.5, 18 -25, 17.5 -25, 17.5 -24.5, 18 -24.5))" +"POLYGON ((18.5 -24.5, 18.5 -25, 18 -25, 18 -24.5, 18.5 -24.5))" +"POLYGON ((19 -24.5, 19 -25, 18.5 -25, 18.5 -24.5, 19 -24.5))" +"POLYGON ((19.5 -24.5, 19.5 -25, 19 -25, 19 -24.5, 19.5 -24.5))" +"POLYGON ((20 -24.5, 20 -25, 19.5 -25, 19.5 -24.5, 20 -24.5))" +"POLYGON ((20.5 -24.5, 20.5 -25, 20 -25, 20 -24.5, 20.5 -24.5))" +"POLYGON ((21 -24.5, 21 -25, 20.5 -25, 20.5 -24.5, 21 -24.5))" +"POLYGON ((21.5 -24.5, 21.5 -25, 21 -25, 21 -24.5, 21.5 -24.5))" +"POLYGON ((22 -24.5, 22 -25, 21.5 -25, 21.5 -24.5, 22 -24.5))" +"POLYGON ((22.5 -24.5, 22.5 -25, 22 -25, 22 -24.5, 22.5 -24.5))" +"POLYGON ((23 -24.5, 23 -25, 22.5 -25, 22.5 -24.5, 23 -24.5))" +"POLYGON ((23.5 -24.5, 23.5 -25, 23 -25, 23 -24.5, 23.5 -24.5))" +"POLYGON ((24 -24.5, 24 -25, 23.5 -25, 23.5 -24.5, 24 -24.5))" +"POLYGON ((24.5 -24.5, 24.5 -25, 24 -25, 24 -24.5, 24.5 -24.5))" +"POLYGON ((25 -24.5, 25 -25, 24.5 -25, 24.5 -24.5, 25 -24.5))" +"POLYGON ((25.5 -24.5, 25.5 -25, 25 -25, 25 -24.5, 25.5 -24.5))" +"POLYGON ((26 -24.5, 26 -25, 25.5 -25, 25.5 -24.5, 26 -24.5))" +"POLYGON ((26.5 -24.5, 26.5 -25, 26 -25, 26 -24.5, 26.5 -24.5))" +"POLYGON ((27 -24.5, 27 -25, 26.5 -25, 26.5 -24.5, 27 -24.5))" +"POLYGON ((27.5 -24.5, 27.5 -25, 27 -25, 27 -24.5, 27.5 -24.5))" +"POLYGON ((28 -24.5, 28 -25, 27.5 -25, 27.5 -24.5, 28 -24.5))" +"POLYGON ((28.5 -24.5, 28.5 -25, 28 -25, 28 -24.5, 28.5 -24.5))" +"POLYGON ((29 -24.5, 29 -25, 28.5 -25, 28.5 -24.5, 29 -24.5))" +"POLYGON ((29.5 -24.5, 29.5 -25, 29 -25, 29 -24.5, 29.5 -24.5))" +"POLYGON ((30 -24.5, 30 -25, 29.5 -25, 29.5 -24.5, 30 -24.5))" +"POLYGON ((30.5 -24.5, 30.5 -25, 30 -25, 30 -24.5, 30.5 -24.5))" +"POLYGON ((31 -24.5, 31 -25, 30.5 -25, 30.5 -24.5, 31 -24.5))" +"POLYGON ((31.5 -24.5, 31.5 -25, 31 -25, 31 -24.5, 31.5 -24.5))" +"POLYGON ((32 -24.5, 32 -25, 31.5 -25, 31.5 -24.5, 32 -24.5))" +"POLYGON ((32.5 -24.5, 32.5 -25, 32 -25, 32 -24.5, 32.5 -24.5))" +"POLYGON ((33 -24.5, 33 -25, 32.5 -25, 32.5 -24.5, 33 -24.5))" +"POLYGON ((33.5 -24.5, 33.5 -25, 33 -25, 33 -24.5, 33.5 -24.5))" +"POLYGON ((34 -24.5, 34 -25, 33.5 -25, 33.5 -24.5, 34 -24.5))" +"POLYGON ((34.5 -24.5, 34.5 -25, 34 -25, 34 -24.5, 34.5 -24.5))" +"POLYGON ((35 -24.5, 35 -25, 34.5 -25, 34.5 -24.5, 35 -24.5))" +"POLYGON ((44.5 -24.5, 44.5 -25, 44 -25, 44 -24.5, 44.5 -24.5))" +"POLYGON ((45 -24.5, 45 -25, 44.5 -25, 44.5 -24.5, 45 -24.5))" +"POLYGON ((45.5 -24.5, 45.5 -25, 45 -25, 45 -24.5, 45.5 -24.5))" +"POLYGON ((46 -24.5, 46 -25, 45.5 -25, 45.5 -24.5, 46 -24.5))" +"POLYGON ((46.5 -24.5, 46.5 -25, 46 -25, 46 -24.5, 46.5 -24.5))" +"POLYGON ((47 -24.5, 47 -25, 46.5 -25, 46.5 -24.5, 47 -24.5))" +"POLYGON ((15 -24, 15 -24.5, 14.5 -24.5, 14.5 -24, 15 -24))" +"POLYGON ((15.5 -24, 15.5 -24.5, 15 -24.5, 15 -24, 15.5 -24))" +"POLYGON ((16 -24, 16 -24.5, 15.5 -24.5, 15.5 -24, 16 -24))" +"POLYGON ((16.5 -24, 16.5 -24.5, 16 -24.5, 16 -24, 16.5 -24))" +"POLYGON ((17 -24, 17 -24.5, 16.5 -24.5, 16.5 -24, 17 -24))" +"POLYGON ((17.5 -24, 17.5 -24.5, 17 -24.5, 17 -24, 17.5 -24))" +"POLYGON ((18 -24, 18 -24.5, 17.5 -24.5, 17.5 -24, 18 -24))" +"POLYGON ((18.5 -24, 18.5 -24.5, 18 -24.5, 18 -24, 18.5 -24))" +"POLYGON ((19 -24, 19 -24.5, 18.5 -24.5, 18.5 -24, 19 -24))" +"POLYGON ((19.5 -24, 19.5 -24.5, 19 -24.5, 19 -24, 19.5 -24))" +"POLYGON ((20 -24, 20 -24.5, 19.5 -24.5, 19.5 -24, 20 -24))" +"POLYGON ((20.5 -24, 20.5 -24.5, 20 -24.5, 20 -24, 20.5 -24))" +"POLYGON ((21 -24, 21 -24.5, 20.5 -24.5, 20.5 -24, 21 -24))" +"POLYGON ((21.5 -24, 21.5 -24.5, 21 -24.5, 21 -24, 21.5 -24))" +"POLYGON ((22 -24, 22 -24.5, 21.5 -24.5, 21.5 -24, 22 -24))" +"POLYGON ((22.5 -24, 22.5 -24.5, 22 -24.5, 22 -24, 22.5 -24))" +"POLYGON ((23 -24, 23 -24.5, 22.5 -24.5, 22.5 -24, 23 -24))" +"POLYGON ((23.5 -24, 23.5 -24.5, 23 -24.5, 23 -24, 23.5 -24))" +"POLYGON ((24 -24, 24 -24.5, 23.5 -24.5, 23.5 -24, 24 -24))" +"POLYGON ((24.5 -24, 24.5 -24.5, 24 -24.5, 24 -24, 24.5 -24))" +"POLYGON ((25 -24, 25 -24.5, 24.5 -24.5, 24.5 -24, 25 -24))" +"POLYGON ((25.5 -24, 25.5 -24.5, 25 -24.5, 25 -24, 25.5 -24))" +"POLYGON ((26 -24, 26 -24.5, 25.5 -24.5, 25.5 -24, 26 -24))" +"POLYGON ((26.5 -24, 26.5 -24.5, 26 -24.5, 26 -24, 26.5 -24))" +"POLYGON ((27 -24, 27 -24.5, 26.5 -24.5, 26.5 -24, 27 -24))" +"POLYGON ((27.5 -24, 27.5 -24.5, 27 -24.5, 27 -24, 27.5 -24))" +"POLYGON ((28 -24, 28 -24.5, 27.5 -24.5, 27.5 -24, 28 -24))" +"POLYGON ((28.5 -24, 28.5 -24.5, 28 -24.5, 28 -24, 28.5 -24))" +"POLYGON ((29 -24, 29 -24.5, 28.5 -24.5, 28.5 -24, 29 -24))" +"POLYGON ((29.5 -24, 29.5 -24.5, 29 -24.5, 29 -24, 29.5 -24))" +"POLYGON ((30 -24, 30 -24.5, 29.5 -24.5, 29.5 -24, 30 -24))" +"POLYGON ((30.5 -24, 30.5 -24.5, 30 -24.5, 30 -24, 30.5 -24))" +"POLYGON ((31 -24, 31 -24.5, 30.5 -24.5, 30.5 -24, 31 -24))" +"POLYGON ((31.5 -24, 31.5 -24.5, 31 -24.5, 31 -24, 31.5 -24))" +"POLYGON ((32 -24, 32 -24.5, 31.5 -24.5, 31.5 -24, 32 -24))" +"POLYGON ((32.5 -24, 32.5 -24.5, 32 -24.5, 32 -24, 32.5 -24))" +"POLYGON ((33 -24, 33 -24.5, 32.5 -24.5, 32.5 -24, 33 -24))" +"POLYGON ((33.5 -24, 33.5 -24.5, 33 -24.5, 33 -24, 33.5 -24))" +"POLYGON ((34 -24, 34 -24.5, 33.5 -24.5, 33.5 -24, 34 -24))" +"POLYGON ((34.5 -24, 34.5 -24.5, 34 -24.5, 34 -24, 34.5 -24))" +"POLYGON ((35 -24, 35 -24.5, 34.5 -24.5, 34.5 -24, 35 -24))" +"POLYGON ((35.5 -24, 35.5 -24.5, 35 -24.5, 35 -24, 35.5 -24))" +"POLYGON ((44 -24, 44 -24.5, 43.5 -24.5, 43.5 -24, 44 -24))" +"POLYGON ((44.5 -24, 44.5 -24.5, 44 -24.5, 44 -24, 44.5 -24))" +"POLYGON ((45 -24, 45 -24.5, 44.5 -24.5, 44.5 -24, 45 -24))" +"POLYGON ((45.5 -24, 45.5 -24.5, 45 -24.5, 45 -24, 45.5 -24))" +"POLYGON ((46 -24, 46 -24.5, 45.5 -24.5, 45.5 -24, 46 -24))" +"POLYGON ((46.5 -24, 46.5 -24.5, 46 -24.5, 46 -24, 46.5 -24))" +"POLYGON ((47 -24, 47 -24.5, 46.5 -24.5, 46.5 -24, 47 -24))" +"POLYGON ((47.5 -24, 47.5 -24.5, 47 -24.5, 47 -24, 47.5 -24))" +"POLYGON ((15 -23.5, 15 -24, 14.5 -24, 14.5 -23.5, 15 -23.5))" +"POLYGON ((15.5 -23.5, 15.5 -24, 15 -24, 15 -23.5, 15.5 -23.5))" +"POLYGON ((16 -23.5, 16 -24, 15.5 -24, 15.5 -23.5, 16 -23.5))" +"POLYGON ((16.5 -23.5, 16.5 -24, 16 -24, 16 -23.5, 16.5 -23.5))" +"POLYGON ((17 -23.5, 17 -24, 16.5 -24, 16.5 -23.5, 17 -23.5))" +"POLYGON ((17.5 -23.5, 17.5 -24, 17 -24, 17 -23.5, 17.5 -23.5))" +"POLYGON ((18 -23.5, 18 -24, 17.5 -24, 17.5 -23.5, 18 -23.5))" +"POLYGON ((18.5 -23.5, 18.5 -24, 18 -24, 18 -23.5, 18.5 -23.5))" +"POLYGON ((19 -23.5, 19 -24, 18.5 -24, 18.5 -23.5, 19 -23.5))" +"POLYGON ((19.5 -23.5, 19.5 -24, 19 -24, 19 -23.5, 19.5 -23.5))" +"POLYGON ((20 -23.5, 20 -24, 19.5 -24, 19.5 -23.5, 20 -23.5))" +"POLYGON ((20.5 -23.5, 20.5 -24, 20 -24, 20 -23.5, 20.5 -23.5))" +"POLYGON ((21 -23.5, 21 -24, 20.5 -24, 20.5 -23.5, 21 -23.5))" +"POLYGON ((21.5 -23.5, 21.5 -24, 21 -24, 21 -23.5, 21.5 -23.5))" +"POLYGON ((22 -23.5, 22 -24, 21.5 -24, 21.5 -23.5, 22 -23.5))" +"POLYGON ((22.5 -23.5, 22.5 -24, 22 -24, 22 -23.5, 22.5 -23.5))" +"POLYGON ((23 -23.5, 23 -24, 22.5 -24, 22.5 -23.5, 23 -23.5))" +"POLYGON ((23.5 -23.5, 23.5 -24, 23 -24, 23 -23.5, 23.5 -23.5))" +"POLYGON ((24 -23.5, 24 -24, 23.5 -24, 23.5 -23.5, 24 -23.5))" +"POLYGON ((24.5 -23.5, 24.5 -24, 24 -24, 24 -23.5, 24.5 -23.5))" +"POLYGON ((25 -23.5, 25 -24, 24.5 -24, 24.5 -23.5, 25 -23.5))" +"POLYGON ((25.5 -23.5, 25.5 -24, 25 -24, 25 -23.5, 25.5 -23.5))" +"POLYGON ((26 -23.5, 26 -24, 25.5 -24, 25.5 -23.5, 26 -23.5))" +"POLYGON ((26.5 -23.5, 26.5 -24, 26 -24, 26 -23.5, 26.5 -23.5))" +"POLYGON ((27 -23.5, 27 -24, 26.5 -24, 26.5 -23.5, 27 -23.5))" +"POLYGON ((27.5 -23.5, 27.5 -24, 27 -24, 27 -23.5, 27.5 -23.5))" +"POLYGON ((28 -23.5, 28 -24, 27.5 -24, 27.5 -23.5, 28 -23.5))" +"POLYGON ((28.5 -23.5, 28.5 -24, 28 -24, 28 -23.5, 28.5 -23.5))" +"POLYGON ((29 -23.5, 29 -24, 28.5 -24, 28.5 -23.5, 29 -23.5))" +"POLYGON ((29.5 -23.5, 29.5 -24, 29 -24, 29 -23.5, 29.5 -23.5))" +"POLYGON ((30 -23.5, 30 -24, 29.5 -24, 29.5 -23.5, 30 -23.5))" +"POLYGON ((30.5 -23.5, 30.5 -24, 30 -24, 30 -23.5, 30.5 -23.5))" +"POLYGON ((31 -23.5, 31 -24, 30.5 -24, 30.5 -23.5, 31 -23.5))" +"POLYGON ((31.5 -23.5, 31.5 -24, 31 -24, 31 -23.5, 31.5 -23.5))" +"POLYGON ((32 -23.5, 32 -24, 31.5 -24, 31.5 -23.5, 32 -23.5))" +"POLYGON ((32.5 -23.5, 32.5 -24, 32 -24, 32 -23.5, 32.5 -23.5))" +"POLYGON ((33 -23.5, 33 -24, 32.5 -24, 32.5 -23.5, 33 -23.5))" +"POLYGON ((33.5 -23.5, 33.5 -24, 33 -24, 33 -23.5, 33.5 -23.5))" +"POLYGON ((34 -23.5, 34 -24, 33.5 -24, 33.5 -23.5, 34 -23.5))" +"POLYGON ((34.5 -23.5, 34.5 -24, 34 -24, 34 -23.5, 34.5 -23.5))" +"POLYGON ((35 -23.5, 35 -24, 34.5 -24, 34.5 -23.5, 35 -23.5))" +"POLYGON ((35.5 -23.5, 35.5 -24, 35 -24, 35 -23.5, 35.5 -23.5))" +"POLYGON ((44 -23.5, 44 -24, 43.5 -24, 43.5 -23.5, 44 -23.5))" +"POLYGON ((44.5 -23.5, 44.5 -24, 44 -24, 44 -23.5, 44.5 -23.5))" +"POLYGON ((45 -23.5, 45 -24, 44.5 -24, 44.5 -23.5, 45 -23.5))" +"POLYGON ((45.5 -23.5, 45.5 -24, 45 -24, 45 -23.5, 45.5 -23.5))" +"POLYGON ((46 -23.5, 46 -24, 45.5 -24, 45.5 -23.5, 46 -23.5))" +"POLYGON ((46.5 -23.5, 46.5 -24, 46 -24, 46 -23.5, 46.5 -23.5))" +"POLYGON ((47 -23.5, 47 -24, 46.5 -24, 46.5 -23.5, 47 -23.5))" +"POLYGON ((47.5 -23.5, 47.5 -24, 47 -24, 47 -23.5, 47.5 -23.5))" +"POLYGON ((15 -23, 15 -23.5, 14.5 -23.5, 14.5 -23, 15 -23))" +"POLYGON ((15.5 -23, 15.5 -23.5, 15 -23.5, 15 -23, 15.5 -23))" +"POLYGON ((16 -23, 16 -23.5, 15.5 -23.5, 15.5 -23, 16 -23))" +"POLYGON ((16.5 -23, 16.5 -23.5, 16 -23.5, 16 -23, 16.5 -23))" +"POLYGON ((17 -23, 17 -23.5, 16.5 -23.5, 16.5 -23, 17 -23))" +"POLYGON ((17.5 -23, 17.5 -23.5, 17 -23.5, 17 -23, 17.5 -23))" +"POLYGON ((18 -23, 18 -23.5, 17.5 -23.5, 17.5 -23, 18 -23))" +"POLYGON ((18.5 -23, 18.5 -23.5, 18 -23.5, 18 -23, 18.5 -23))" +"POLYGON ((19 -23, 19 -23.5, 18.5 -23.5, 18.5 -23, 19 -23))" +"POLYGON ((19.5 -23, 19.5 -23.5, 19 -23.5, 19 -23, 19.5 -23))" +"POLYGON ((20 -23, 20 -23.5, 19.5 -23.5, 19.5 -23, 20 -23))" +"POLYGON ((20.5 -23, 20.5 -23.5, 20 -23.5, 20 -23, 20.5 -23))" +"POLYGON ((21 -23, 21 -23.5, 20.5 -23.5, 20.5 -23, 21 -23))" +"POLYGON ((21.5 -23, 21.5 -23.5, 21 -23.5, 21 -23, 21.5 -23))" +"POLYGON ((22 -23, 22 -23.5, 21.5 -23.5, 21.5 -23, 22 -23))" +"POLYGON ((22.5 -23, 22.5 -23.5, 22 -23.5, 22 -23, 22.5 -23))" +"POLYGON ((23 -23, 23 -23.5, 22.5 -23.5, 22.5 -23, 23 -23))" +"POLYGON ((23.5 -23, 23.5 -23.5, 23 -23.5, 23 -23, 23.5 -23))" +"POLYGON ((24 -23, 24 -23.5, 23.5 -23.5, 23.5 -23, 24 -23))" +"POLYGON ((24.5 -23, 24.5 -23.5, 24 -23.5, 24 -23, 24.5 -23))" +"POLYGON ((25 -23, 25 -23.5, 24.5 -23.5, 24.5 -23, 25 -23))" +"POLYGON ((25.5 -23, 25.5 -23.5, 25 -23.5, 25 -23, 25.5 -23))" +"POLYGON ((26 -23, 26 -23.5, 25.5 -23.5, 25.5 -23, 26 -23))" +"POLYGON ((26.5 -23, 26.5 -23.5, 26 -23.5, 26 -23, 26.5 -23))" +"POLYGON ((27 -23, 27 -23.5, 26.5 -23.5, 26.5 -23, 27 -23))" +"POLYGON ((27.5 -23, 27.5 -23.5, 27 -23.5, 27 -23, 27.5 -23))" +"POLYGON ((28 -23, 28 -23.5, 27.5 -23.5, 27.5 -23, 28 -23))" +"POLYGON ((28.5 -23, 28.5 -23.5, 28 -23.5, 28 -23, 28.5 -23))" +"POLYGON ((29 -23, 29 -23.5, 28.5 -23.5, 28.5 -23, 29 -23))" +"POLYGON ((29.5 -23, 29.5 -23.5, 29 -23.5, 29 -23, 29.5 -23))" +"POLYGON ((30 -23, 30 -23.5, 29.5 -23.5, 29.5 -23, 30 -23))" +"POLYGON ((30.5 -23, 30.5 -23.5, 30 -23.5, 30 -23, 30.5 -23))" +"POLYGON ((31 -23, 31 -23.5, 30.5 -23.5, 30.5 -23, 31 -23))" +"POLYGON ((31.5 -23, 31.5 -23.5, 31 -23.5, 31 -23, 31.5 -23))" +"POLYGON ((32 -23, 32 -23.5, 31.5 -23.5, 31.5 -23, 32 -23))" +"POLYGON ((32.5 -23, 32.5 -23.5, 32 -23.5, 32 -23, 32.5 -23))" +"POLYGON ((33 -23, 33 -23.5, 32.5 -23.5, 32.5 -23, 33 -23))" +"POLYGON ((33.5 -23, 33.5 -23.5, 33 -23.5, 33 -23, 33.5 -23))" +"POLYGON ((34 -23, 34 -23.5, 33.5 -23.5, 33.5 -23, 34 -23))" +"POLYGON ((34.5 -23, 34.5 -23.5, 34 -23.5, 34 -23, 34.5 -23))" +"POLYGON ((35 -23, 35 -23.5, 34.5 -23.5, 34.5 -23, 35 -23))" +"POLYGON ((35.5 -23, 35.5 -23.5, 35 -23.5, 35 -23, 35.5 -23))" +"POLYGON ((44 -23, 44 -23.5, 43.5 -23.5, 43.5 -23, 44 -23))" +"POLYGON ((44.5 -23, 44.5 -23.5, 44 -23.5, 44 -23, 44.5 -23))" +"POLYGON ((45 -23, 45 -23.5, 44.5 -23.5, 44.5 -23, 45 -23))" +"POLYGON ((45.5 -23, 45.5 -23.5, 45 -23.5, 45 -23, 45.5 -23))" +"POLYGON ((46 -23, 46 -23.5, 45.5 -23.5, 45.5 -23, 46 -23))" +"POLYGON ((46.5 -23, 46.5 -23.5, 46 -23.5, 46 -23, 46.5 -23))" +"POLYGON ((47 -23, 47 -23.5, 46.5 -23.5, 46.5 -23, 47 -23))" +"POLYGON ((47.5 -23, 47.5 -23.5, 47 -23.5, 47 -23, 47.5 -23))" +"POLYGON ((15 -22.5, 15 -23, 14.5 -23, 14.5 -22.5, 15 -22.5))" +"POLYGON ((15.5 -22.5, 15.5 -23, 15 -23, 15 -22.5, 15.5 -22.5))" +"POLYGON ((16 -22.5, 16 -23, 15.5 -23, 15.5 -22.5, 16 -22.5))" +"POLYGON ((16.5 -22.5, 16.5 -23, 16 -23, 16 -22.5, 16.5 -22.5))" +"POLYGON ((17 -22.5, 17 -23, 16.5 -23, 16.5 -22.5, 17 -22.5))" +"POLYGON ((17.5 -22.5, 17.5 -23, 17 -23, 17 -22.5, 17.5 -22.5))" +"POLYGON ((18 -22.5, 18 -23, 17.5 -23, 17.5 -22.5, 18 -22.5))" +"POLYGON ((18.5 -22.5, 18.5 -23, 18 -23, 18 -22.5, 18.5 -22.5))" +"POLYGON ((19 -22.5, 19 -23, 18.5 -23, 18.5 -22.5, 19 -22.5))" +"POLYGON ((19.5 -22.5, 19.5 -23, 19 -23, 19 -22.5, 19.5 -22.5))" +"POLYGON ((20 -22.5, 20 -23, 19.5 -23, 19.5 -22.5, 20 -22.5))" +"POLYGON ((20.5 -22.5, 20.5 -23, 20 -23, 20 -22.5, 20.5 -22.5))" +"POLYGON ((21 -22.5, 21 -23, 20.5 -23, 20.5 -22.5, 21 -22.5))" +"POLYGON ((21.5 -22.5, 21.5 -23, 21 -23, 21 -22.5, 21.5 -22.5))" +"POLYGON ((22 -22.5, 22 -23, 21.5 -23, 21.5 -22.5, 22 -22.5))" +"POLYGON ((22.5 -22.5, 22.5 -23, 22 -23, 22 -22.5, 22.5 -22.5))" +"POLYGON ((23 -22.5, 23 -23, 22.5 -23, 22.5 -22.5, 23 -22.5))" +"POLYGON ((23.5 -22.5, 23.5 -23, 23 -23, 23 -22.5, 23.5 -22.5))" +"POLYGON ((24 -22.5, 24 -23, 23.5 -23, 23.5 -22.5, 24 -22.5))" +"POLYGON ((24.5 -22.5, 24.5 -23, 24 -23, 24 -22.5, 24.5 -22.5))" +"POLYGON ((25 -22.5, 25 -23, 24.5 -23, 24.5 -22.5, 25 -22.5))" +"POLYGON ((25.5 -22.5, 25.5 -23, 25 -23, 25 -22.5, 25.5 -22.5))" +"POLYGON ((26 -22.5, 26 -23, 25.5 -23, 25.5 -22.5, 26 -22.5))" +"POLYGON ((26.5 -22.5, 26.5 -23, 26 -23, 26 -22.5, 26.5 -22.5))" +"POLYGON ((27 -22.5, 27 -23, 26.5 -23, 26.5 -22.5, 27 -22.5))" +"POLYGON ((27.5 -22.5, 27.5 -23, 27 -23, 27 -22.5, 27.5 -22.5))" +"POLYGON ((28 -22.5, 28 -23, 27.5 -23, 27.5 -22.5, 28 -22.5))" +"POLYGON ((28.5 -22.5, 28.5 -23, 28 -23, 28 -22.5, 28.5 -22.5))" +"POLYGON ((29 -22.5, 29 -23, 28.5 -23, 28.5 -22.5, 29 -22.5))" +"POLYGON ((29.5 -22.5, 29.5 -23, 29 -23, 29 -22.5, 29.5 -22.5))" +"POLYGON ((30 -22.5, 30 -23, 29.5 -23, 29.5 -22.5, 30 -22.5))" +"POLYGON ((30.5 -22.5, 30.5 -23, 30 -23, 30 -22.5, 30.5 -22.5))" +"POLYGON ((31 -22.5, 31 -23, 30.5 -23, 30.5 -22.5, 31 -22.5))" +"POLYGON ((31.5 -22.5, 31.5 -23, 31 -23, 31 -22.5, 31.5 -22.5))" +"POLYGON ((32 -22.5, 32 -23, 31.5 -23, 31.5 -22.5, 32 -22.5))" +"POLYGON ((32.5 -22.5, 32.5 -23, 32 -23, 32 -22.5, 32.5 -22.5))" +"POLYGON ((33 -22.5, 33 -23, 32.5 -23, 32.5 -22.5, 33 -22.5))" +"POLYGON ((33.5 -22.5, 33.5 -23, 33 -23, 33 -22.5, 33.5 -22.5))" +"POLYGON ((34 -22.5, 34 -23, 33.5 -23, 33.5 -22.5, 34 -22.5))" +"POLYGON ((34.5 -22.5, 34.5 -23, 34 -23, 34 -22.5, 34.5 -22.5))" +"POLYGON ((35 -22.5, 35 -23, 34.5 -23, 34.5 -22.5, 35 -22.5))" +"POLYGON ((35.5 -22.5, 35.5 -23, 35 -23, 35 -22.5, 35.5 -22.5))" +"POLYGON ((44 -22.5, 44 -23, 43.5 -23, 43.5 -22.5, 44 -22.5))" +"POLYGON ((44.5 -22.5, 44.5 -23, 44 -23, 44 -22.5, 44.5 -22.5))" +"POLYGON ((45 -22.5, 45 -23, 44.5 -23, 44.5 -22.5, 45 -22.5))" +"POLYGON ((45.5 -22.5, 45.5 -23, 45 -23, 45 -22.5, 45.5 -22.5))" +"POLYGON ((46 -22.5, 46 -23, 45.5 -23, 45.5 -22.5, 46 -22.5))" +"POLYGON ((46.5 -22.5, 46.5 -23, 46 -23, 46 -22.5, 46.5 -22.5))" +"POLYGON ((47 -22.5, 47 -23, 46.5 -23, 46.5 -22.5, 47 -22.5))" +"POLYGON ((47.5 -22.5, 47.5 -23, 47 -23, 47 -22.5, 47.5 -22.5))" +"POLYGON ((48 -22.5, 48 -23, 47.5 -23, 47.5 -22.5, 48 -22.5))" +"POLYGON ((15 -22, 15 -22.5, 14.5 -22.5, 14.5 -22, 15 -22))" +"POLYGON ((15.5 -22, 15.5 -22.5, 15 -22.5, 15 -22, 15.5 -22))" +"POLYGON ((16 -22, 16 -22.5, 15.5 -22.5, 15.5 -22, 16 -22))" +"POLYGON ((16.5 -22, 16.5 -22.5, 16 -22.5, 16 -22, 16.5 -22))" +"POLYGON ((17 -22, 17 -22.5, 16.5 -22.5, 16.5 -22, 17 -22))" +"POLYGON ((17.5 -22, 17.5 -22.5, 17 -22.5, 17 -22, 17.5 -22))" +"POLYGON ((18 -22, 18 -22.5, 17.5 -22.5, 17.5 -22, 18 -22))" +"POLYGON ((18.5 -22, 18.5 -22.5, 18 -22.5, 18 -22, 18.5 -22))" +"POLYGON ((19 -22, 19 -22.5, 18.5 -22.5, 18.5 -22, 19 -22))" +"POLYGON ((19.5 -22, 19.5 -22.5, 19 -22.5, 19 -22, 19.5 -22))" +"POLYGON ((20 -22, 20 -22.5, 19.5 -22.5, 19.5 -22, 20 -22))" +"POLYGON ((20.5 -22, 20.5 -22.5, 20 -22.5, 20 -22, 20.5 -22))" +"POLYGON ((21 -22, 21 -22.5, 20.5 -22.5, 20.5 -22, 21 -22))" +"POLYGON ((21.5 -22, 21.5 -22.5, 21 -22.5, 21 -22, 21.5 -22))" +"POLYGON ((22 -22, 22 -22.5, 21.5 -22.5, 21.5 -22, 22 -22))" +"POLYGON ((22.5 -22, 22.5 -22.5, 22 -22.5, 22 -22, 22.5 -22))" +"POLYGON ((23 -22, 23 -22.5, 22.5 -22.5, 22.5 -22, 23 -22))" +"POLYGON ((23.5 -22, 23.5 -22.5, 23 -22.5, 23 -22, 23.5 -22))" +"POLYGON ((24 -22, 24 -22.5, 23.5 -22.5, 23.5 -22, 24 -22))" +"POLYGON ((24.5 -22, 24.5 -22.5, 24 -22.5, 24 -22, 24.5 -22))" +"POLYGON ((25 -22, 25 -22.5, 24.5 -22.5, 24.5 -22, 25 -22))" +"POLYGON ((25.5 -22, 25.5 -22.5, 25 -22.5, 25 -22, 25.5 -22))" +"POLYGON ((26 -22, 26 -22.5, 25.5 -22.5, 25.5 -22, 26 -22))" +"POLYGON ((26.5 -22, 26.5 -22.5, 26 -22.5, 26 -22, 26.5 -22))" +"POLYGON ((27 -22, 27 -22.5, 26.5 -22.5, 26.5 -22, 27 -22))" +"POLYGON ((27.5 -22, 27.5 -22.5, 27 -22.5, 27 -22, 27.5 -22))" +"POLYGON ((28 -22, 28 -22.5, 27.5 -22.5, 27.5 -22, 28 -22))" +"POLYGON ((28.5 -22, 28.5 -22.5, 28 -22.5, 28 -22, 28.5 -22))" +"POLYGON ((29 -22, 29 -22.5, 28.5 -22.5, 28.5 -22, 29 -22))" +"POLYGON ((29.5 -22, 29.5 -22.5, 29 -22.5, 29 -22, 29.5 -22))" +"POLYGON ((30 -22, 30 -22.5, 29.5 -22.5, 29.5 -22, 30 -22))" +"POLYGON ((30.5 -22, 30.5 -22.5, 30 -22.5, 30 -22, 30.5 -22))" +"POLYGON ((31 -22, 31 -22.5, 30.5 -22.5, 30.5 -22, 31 -22))" +"POLYGON ((31.5 -22, 31.5 -22.5, 31 -22.5, 31 -22, 31.5 -22))" +"POLYGON ((32 -22, 32 -22.5, 31.5 -22.5, 31.5 -22, 32 -22))" +"POLYGON ((32.5 -22, 32.5 -22.5, 32 -22.5, 32 -22, 32.5 -22))" +"POLYGON ((33 -22, 33 -22.5, 32.5 -22.5, 32.5 -22, 33 -22))" +"POLYGON ((33.5 -22, 33.5 -22.5, 33 -22.5, 33 -22, 33.5 -22))" +"POLYGON ((34 -22, 34 -22.5, 33.5 -22.5, 33.5 -22, 34 -22))" +"POLYGON ((34.5 -22, 34.5 -22.5, 34 -22.5, 34 -22, 34.5 -22))" +"POLYGON ((35 -22, 35 -22.5, 34.5 -22.5, 34.5 -22, 35 -22))" +"POLYGON ((35.5 -22, 35.5 -22.5, 35 -22.5, 35 -22, 35.5 -22))" +"POLYGON ((43.5 -22, 43.5 -22.5, 43 -22.5, 43 -22, 43.5 -22))" +"POLYGON ((44 -22, 44 -22.5, 43.5 -22.5, 43.5 -22, 44 -22))" +"POLYGON ((44.5 -22, 44.5 -22.5, 44 -22.5, 44 -22, 44.5 -22))" +"POLYGON ((45 -22, 45 -22.5, 44.5 -22.5, 44.5 -22, 45 -22))" +"POLYGON ((45.5 -22, 45.5 -22.5, 45 -22.5, 45 -22, 45.5 -22))" +"POLYGON ((46 -22, 46 -22.5, 45.5 -22.5, 45.5 -22, 46 -22))" +"POLYGON ((46.5 -22, 46.5 -22.5, 46 -22.5, 46 -22, 46.5 -22))" +"POLYGON ((47 -22, 47 -22.5, 46.5 -22.5, 46.5 -22, 47 -22))" +"POLYGON ((47.5 -22, 47.5 -22.5, 47 -22.5, 47 -22, 47.5 -22))" +"POLYGON ((48 -22, 48 -22.5, 47.5 -22.5, 47.5 -22, 48 -22))" +"POLYGON ((14.5 -21.5, 14.5 -22, 14 -22, 14 -21.5, 14.5 -21.5))" +"POLYGON ((15 -21.5, 15 -22, 14.5 -22, 14.5 -21.5, 15 -21.5))" +"POLYGON ((15.5 -21.5, 15.5 -22, 15 -22, 15 -21.5, 15.5 -21.5))" +"POLYGON ((16 -21.5, 16 -22, 15.5 -22, 15.5 -21.5, 16 -21.5))" +"POLYGON ((16.5 -21.5, 16.5 -22, 16 -22, 16 -21.5, 16.5 -21.5))" +"POLYGON ((17 -21.5, 17 -22, 16.5 -22, 16.5 -21.5, 17 -21.5))" +"POLYGON ((17.5 -21.5, 17.5 -22, 17 -22, 17 -21.5, 17.5 -21.5))" +"POLYGON ((18 -21.5, 18 -22, 17.5 -22, 17.5 -21.5, 18 -21.5))" +"POLYGON ((18.5 -21.5, 18.5 -22, 18 -22, 18 -21.5, 18.5 -21.5))" +"POLYGON ((19 -21.5, 19 -22, 18.5 -22, 18.5 -21.5, 19 -21.5))" +"POLYGON ((19.5 -21.5, 19.5 -22, 19 -22, 19 -21.5, 19.5 -21.5))" +"POLYGON ((20 -21.5, 20 -22, 19.5 -22, 19.5 -21.5, 20 -21.5))" +"POLYGON ((20.5 -21.5, 20.5 -22, 20 -22, 20 -21.5, 20.5 -21.5))" +"POLYGON ((21 -21.5, 21 -22, 20.5 -22, 20.5 -21.5, 21 -21.5))" +"POLYGON ((21.5 -21.5, 21.5 -22, 21 -22, 21 -21.5, 21.5 -21.5))" +"POLYGON ((22 -21.5, 22 -22, 21.5 -22, 21.5 -21.5, 22 -21.5))" +"POLYGON ((22.5 -21.5, 22.5 -22, 22 -22, 22 -21.5, 22.5 -21.5))" +"POLYGON ((23 -21.5, 23 -22, 22.5 -22, 22.5 -21.5, 23 -21.5))" +"POLYGON ((23.5 -21.5, 23.5 -22, 23 -22, 23 -21.5, 23.5 -21.5))" +"POLYGON ((24 -21.5, 24 -22, 23.5 -22, 23.5 -21.5, 24 -21.5))" +"POLYGON ((24.5 -21.5, 24.5 -22, 24 -22, 24 -21.5, 24.5 -21.5))" +"POLYGON ((25 -21.5, 25 -22, 24.5 -22, 24.5 -21.5, 25 -21.5))" +"POLYGON ((25.5 -21.5, 25.5 -22, 25 -22, 25 -21.5, 25.5 -21.5))" +"POLYGON ((26 -21.5, 26 -22, 25.5 -22, 25.5 -21.5, 26 -21.5))" +"POLYGON ((26.5 -21.5, 26.5 -22, 26 -22, 26 -21.5, 26.5 -21.5))" +"POLYGON ((27 -21.5, 27 -22, 26.5 -22, 26.5 -21.5, 27 -21.5))" +"POLYGON ((27.5 -21.5, 27.5 -22, 27 -22, 27 -21.5, 27.5 -21.5))" +"POLYGON ((28 -21.5, 28 -22, 27.5 -22, 27.5 -21.5, 28 -21.5))" +"POLYGON ((28.5 -21.5, 28.5 -22, 28 -22, 28 -21.5, 28.5 -21.5))" +"POLYGON ((29 -21.5, 29 -22, 28.5 -22, 28.5 -21.5, 29 -21.5))" +"POLYGON ((29.5 -21.5, 29.5 -22, 29 -22, 29 -21.5, 29.5 -21.5))" +"POLYGON ((30 -21.5, 30 -22, 29.5 -22, 29.5 -21.5, 30 -21.5))" +"POLYGON ((30.5 -21.5, 30.5 -22, 30 -22, 30 -21.5, 30.5 -21.5))" +"POLYGON ((31 -21.5, 31 -22, 30.5 -22, 30.5 -21.5, 31 -21.5))" +"POLYGON ((31.5 -21.5, 31.5 -22, 31 -22, 31 -21.5, 31.5 -21.5))" +"POLYGON ((32 -21.5, 32 -22, 31.5 -22, 31.5 -21.5, 32 -21.5))" +"POLYGON ((32.5 -21.5, 32.5 -22, 32 -22, 32 -21.5, 32.5 -21.5))" +"POLYGON ((33 -21.5, 33 -22, 32.5 -22, 32.5 -21.5, 33 -21.5))" +"POLYGON ((33.5 -21.5, 33.5 -22, 33 -22, 33 -21.5, 33.5 -21.5))" +"POLYGON ((34 -21.5, 34 -22, 33.5 -22, 33.5 -21.5, 34 -21.5))" +"POLYGON ((34.5 -21.5, 34.5 -22, 34 -22, 34 -21.5, 34.5 -21.5))" +"POLYGON ((35 -21.5, 35 -22, 34.5 -22, 34.5 -21.5, 35 -21.5))" +"POLYGON ((44 -21.5, 44 -22, 43.5 -22, 43.5 -21.5, 44 -21.5))" +"POLYGON ((44.5 -21.5, 44.5 -22, 44 -22, 44 -21.5, 44.5 -21.5))" +"POLYGON ((45 -21.5, 45 -22, 44.5 -22, 44.5 -21.5, 45 -21.5))" +"POLYGON ((45.5 -21.5, 45.5 -22, 45 -22, 45 -21.5, 45.5 -21.5))" +"POLYGON ((46 -21.5, 46 -22, 45.5 -22, 45.5 -21.5, 46 -21.5))" +"POLYGON ((46.5 -21.5, 46.5 -22, 46 -22, 46 -21.5, 46.5 -21.5))" +"POLYGON ((47 -21.5, 47 -22, 46.5 -22, 46.5 -21.5, 47 -21.5))" +"POLYGON ((47.5 -21.5, 47.5 -22, 47 -22, 47 -21.5, 47.5 -21.5))" +"POLYGON ((48 -21.5, 48 -22, 47.5 -22, 47.5 -21.5, 48 -21.5))" +"POLYGON ((14 -21, 14 -21.5, 13.5 -21.5, 13.5 -21, 14 -21))" +"POLYGON ((14.5 -21, 14.5 -21.5, 14 -21.5, 14 -21, 14.5 -21))" +"POLYGON ((15 -21, 15 -21.5, 14.5 -21.5, 14.5 -21, 15 -21))" +"POLYGON ((15.5 -21, 15.5 -21.5, 15 -21.5, 15 -21, 15.5 -21))" +"POLYGON ((16 -21, 16 -21.5, 15.5 -21.5, 15.5 -21, 16 -21))" +"POLYGON ((16.5 -21, 16.5 -21.5, 16 -21.5, 16 -21, 16.5 -21))" +"POLYGON ((17 -21, 17 -21.5, 16.5 -21.5, 16.5 -21, 17 -21))" +"POLYGON ((17.5 -21, 17.5 -21.5, 17 -21.5, 17 -21, 17.5 -21))" +"POLYGON ((18 -21, 18 -21.5, 17.5 -21.5, 17.5 -21, 18 -21))" +"POLYGON ((18.5 -21, 18.5 -21.5, 18 -21.5, 18 -21, 18.5 -21))" +"POLYGON ((19 -21, 19 -21.5, 18.5 -21.5, 18.5 -21, 19 -21))" +"POLYGON ((19.5 -21, 19.5 -21.5, 19 -21.5, 19 -21, 19.5 -21))" +"POLYGON ((20 -21, 20 -21.5, 19.5 -21.5, 19.5 -21, 20 -21))" +"POLYGON ((20.5 -21, 20.5 -21.5, 20 -21.5, 20 -21, 20.5 -21))" +"POLYGON ((21 -21, 21 -21.5, 20.5 -21.5, 20.5 -21, 21 -21))" +"POLYGON ((21.5 -21, 21.5 -21.5, 21 -21.5, 21 -21, 21.5 -21))" +"POLYGON ((22 -21, 22 -21.5, 21.5 -21.5, 21.5 -21, 22 -21))" +"POLYGON ((22.5 -21, 22.5 -21.5, 22 -21.5, 22 -21, 22.5 -21))" +"POLYGON ((23 -21, 23 -21.5, 22.5 -21.5, 22.5 -21, 23 -21))" +"POLYGON ((23.5 -21, 23.5 -21.5, 23 -21.5, 23 -21, 23.5 -21))" +"POLYGON ((24 -21, 24 -21.5, 23.5 -21.5, 23.5 -21, 24 -21))" +"POLYGON ((24.5 -21, 24.5 -21.5, 24 -21.5, 24 -21, 24.5 -21))" +"POLYGON ((25 -21, 25 -21.5, 24.5 -21.5, 24.5 -21, 25 -21))" +"POLYGON ((25.5 -21, 25.5 -21.5, 25 -21.5, 25 -21, 25.5 -21))" +"POLYGON ((26 -21, 26 -21.5, 25.5 -21.5, 25.5 -21, 26 -21))" +"POLYGON ((26.5 -21, 26.5 -21.5, 26 -21.5, 26 -21, 26.5 -21))" +"POLYGON ((27 -21, 27 -21.5, 26.5 -21.5, 26.5 -21, 27 -21))" +"POLYGON ((27.5 -21, 27.5 -21.5, 27 -21.5, 27 -21, 27.5 -21))" +"POLYGON ((28 -21, 28 -21.5, 27.5 -21.5, 27.5 -21, 28 -21))" +"POLYGON ((28.5 -21, 28.5 -21.5, 28 -21.5, 28 -21, 28.5 -21))" +"POLYGON ((29 -21, 29 -21.5, 28.5 -21.5, 28.5 -21, 29 -21))" +"POLYGON ((29.5 -21, 29.5 -21.5, 29 -21.5, 29 -21, 29.5 -21))" +"POLYGON ((30 -21, 30 -21.5, 29.5 -21.5, 29.5 -21, 30 -21))" +"POLYGON ((30.5 -21, 30.5 -21.5, 30 -21.5, 30 -21, 30.5 -21))" +"POLYGON ((31 -21, 31 -21.5, 30.5 -21.5, 30.5 -21, 31 -21))" +"POLYGON ((31.5 -21, 31.5 -21.5, 31 -21.5, 31 -21, 31.5 -21))" +"POLYGON ((32 -21, 32 -21.5, 31.5 -21.5, 31.5 -21, 32 -21))" +"POLYGON ((32.5 -21, 32.5 -21.5, 32 -21.5, 32 -21, 32.5 -21))" +"POLYGON ((33 -21, 33 -21.5, 32.5 -21.5, 32.5 -21, 33 -21))" +"POLYGON ((33.5 -21, 33.5 -21.5, 33 -21.5, 33 -21, 33.5 -21))" +"POLYGON ((34 -21, 34 -21.5, 33.5 -21.5, 33.5 -21, 34 -21))" +"POLYGON ((34.5 -21, 34.5 -21.5, 34 -21.5, 34 -21, 34.5 -21))" +"POLYGON ((35 -21, 35 -21.5, 34.5 -21.5, 34.5 -21, 35 -21))" +"POLYGON ((44 -21, 44 -21.5, 43.5 -21.5, 43.5 -21, 44 -21))" +"POLYGON ((44.5 -21, 44.5 -21.5, 44 -21.5, 44 -21, 44.5 -21))" +"POLYGON ((45 -21, 45 -21.5, 44.5 -21.5, 44.5 -21, 45 -21))" +"POLYGON ((45.5 -21, 45.5 -21.5, 45 -21.5, 45 -21, 45.5 -21))" +"POLYGON ((46 -21, 46 -21.5, 45.5 -21.5, 45.5 -21, 46 -21))" +"POLYGON ((46.5 -21, 46.5 -21.5, 46 -21.5, 46 -21, 46.5 -21))" +"POLYGON ((47 -21, 47 -21.5, 46.5 -21.5, 46.5 -21, 47 -21))" +"POLYGON ((47.5 -21, 47.5 -21.5, 47 -21.5, 47 -21, 47.5 -21))" +"POLYGON ((48 -21, 48 -21.5, 47.5 -21.5, 47.5 -21, 48 -21))" +"POLYGON ((48.5 -21, 48.5 -21.5, 48 -21.5, 48 -21, 48.5 -21))" +"POLYGON ((56 -21, 56 -21.5, 55.5 -21.5, 55.5 -21, 56 -21))" +"POLYGON ((14 -20.5, 14 -21, 13.5 -21, 13.5 -20.5, 14 -20.5))" +"POLYGON ((14.5 -20.5, 14.5 -21, 14 -21, 14 -20.5, 14.5 -20.5))" +"POLYGON ((15 -20.5, 15 -21, 14.5 -21, 14.5 -20.5, 15 -20.5))" +"POLYGON ((15.5 -20.5, 15.5 -21, 15 -21, 15 -20.5, 15.5 -20.5))" +"POLYGON ((16 -20.5, 16 -21, 15.5 -21, 15.5 -20.5, 16 -20.5))" +"POLYGON ((16.5 -20.5, 16.5 -21, 16 -21, 16 -20.5, 16.5 -20.5))" +"POLYGON ((17 -20.5, 17 -21, 16.5 -21, 16.5 -20.5, 17 -20.5))" +"POLYGON ((17.5 -20.5, 17.5 -21, 17 -21, 17 -20.5, 17.5 -20.5))" +"POLYGON ((18 -20.5, 18 -21, 17.5 -21, 17.5 -20.5, 18 -20.5))" +"POLYGON ((18.5 -20.5, 18.5 -21, 18 -21, 18 -20.5, 18.5 -20.5))" +"POLYGON ((19 -20.5, 19 -21, 18.5 -21, 18.5 -20.5, 19 -20.5))" +"POLYGON ((19.5 -20.5, 19.5 -21, 19 -21, 19 -20.5, 19.5 -20.5))" +"POLYGON ((20 -20.5, 20 -21, 19.5 -21, 19.5 -20.5, 20 -20.5))" +"POLYGON ((20.5 -20.5, 20.5 -21, 20 -21, 20 -20.5, 20.5 -20.5))" +"POLYGON ((21 -20.5, 21 -21, 20.5 -21, 20.5 -20.5, 21 -20.5))" +"POLYGON ((21.5 -20.5, 21.5 -21, 21 -21, 21 -20.5, 21.5 -20.5))" +"POLYGON ((22 -20.5, 22 -21, 21.5 -21, 21.5 -20.5, 22 -20.5))" +"POLYGON ((22.5 -20.5, 22.5 -21, 22 -21, 22 -20.5, 22.5 -20.5))" +"POLYGON ((23 -20.5, 23 -21, 22.5 -21, 22.5 -20.5, 23 -20.5))" +"POLYGON ((23.5 -20.5, 23.5 -21, 23 -21, 23 -20.5, 23.5 -20.5))" +"POLYGON ((24 -20.5, 24 -21, 23.5 -21, 23.5 -20.5, 24 -20.5))" +"POLYGON ((24.5 -20.5, 24.5 -21, 24 -21, 24 -20.5, 24.5 -20.5))" +"POLYGON ((25 -20.5, 25 -21, 24.5 -21, 24.5 -20.5, 25 -20.5))" +"POLYGON ((25.5 -20.5, 25.5 -21, 25 -21, 25 -20.5, 25.5 -20.5))" +"POLYGON ((26 -20.5, 26 -21, 25.5 -21, 25.5 -20.5, 26 -20.5))" +"POLYGON ((26.5 -20.5, 26.5 -21, 26 -21, 26 -20.5, 26.5 -20.5))" +"POLYGON ((27 -20.5, 27 -21, 26.5 -21, 26.5 -20.5, 27 -20.5))" +"POLYGON ((27.5 -20.5, 27.5 -21, 27 -21, 27 -20.5, 27.5 -20.5))" +"POLYGON ((28 -20.5, 28 -21, 27.5 -21, 27.5 -20.5, 28 -20.5))" +"POLYGON ((28.5 -20.5, 28.5 -21, 28 -21, 28 -20.5, 28.5 -20.5))" +"POLYGON ((29 -20.5, 29 -21, 28.5 -21, 28.5 -20.5, 29 -20.5))" +"POLYGON ((29.5 -20.5, 29.5 -21, 29 -21, 29 -20.5, 29.5 -20.5))" +"POLYGON ((30 -20.5, 30 -21, 29.5 -21, 29.5 -20.5, 30 -20.5))" +"POLYGON ((30.5 -20.5, 30.5 -21, 30 -21, 30 -20.5, 30.5 -20.5))" +"POLYGON ((31 -20.5, 31 -21, 30.5 -21, 30.5 -20.5, 31 -20.5))" +"POLYGON ((31.5 -20.5, 31.5 -21, 31 -21, 31 -20.5, 31.5 -20.5))" +"POLYGON ((32 -20.5, 32 -21, 31.5 -21, 31.5 -20.5, 32 -20.5))" +"POLYGON ((32.5 -20.5, 32.5 -21, 32 -21, 32 -20.5, 32.5 -20.5))" +"POLYGON ((33 -20.5, 33 -21, 32.5 -21, 32.5 -20.5, 33 -20.5))" +"POLYGON ((33.5 -20.5, 33.5 -21, 33 -21, 33 -20.5, 33.5 -20.5))" +"POLYGON ((34 -20.5, 34 -21, 33.5 -21, 33.5 -20.5, 34 -20.5))" +"POLYGON ((34.5 -20.5, 34.5 -21, 34 -21, 34 -20.5, 34.5 -20.5))" +"POLYGON ((35 -20.5, 35 -21, 34.5 -21, 34.5 -20.5, 35 -20.5))" +"POLYGON ((44.5 -20.5, 44.5 -21, 44 -21, 44 -20.5, 44.5 -20.5))" +"POLYGON ((45 -20.5, 45 -21, 44.5 -21, 44.5 -20.5, 45 -20.5))" +"POLYGON ((45.5 -20.5, 45.5 -21, 45 -21, 45 -20.5, 45.5 -20.5))" +"POLYGON ((46 -20.5, 46 -21, 45.5 -21, 45.5 -20.5, 46 -20.5))" +"POLYGON ((46.5 -20.5, 46.5 -21, 46 -21, 46 -20.5, 46.5 -20.5))" +"POLYGON ((47 -20.5, 47 -21, 46.5 -21, 46.5 -20.5, 47 -20.5))" +"POLYGON ((47.5 -20.5, 47.5 -21, 47 -21, 47 -20.5, 47.5 -20.5))" +"POLYGON ((48 -20.5, 48 -21, 47.5 -21, 47.5 -20.5, 48 -20.5))" +"POLYGON ((48.5 -20.5, 48.5 -21, 48 -21, 48 -20.5, 48.5 -20.5))" +"POLYGON ((13.5 -20, 13.5 -20.5, 13 -20.5, 13 -20, 13.5 -20))" +"POLYGON ((14 -20, 14 -20.5, 13.5 -20.5, 13.5 -20, 14 -20))" +"POLYGON ((14.5 -20, 14.5 -20.5, 14 -20.5, 14 -20, 14.5 -20))" +"POLYGON ((15 -20, 15 -20.5, 14.5 -20.5, 14.5 -20, 15 -20))" +"POLYGON ((15.5 -20, 15.5 -20.5, 15 -20.5, 15 -20, 15.5 -20))" +"POLYGON ((16 -20, 16 -20.5, 15.5 -20.5, 15.5 -20, 16 -20))" +"POLYGON ((16.5 -20, 16.5 -20.5, 16 -20.5, 16 -20, 16.5 -20))" +"POLYGON ((17 -20, 17 -20.5, 16.5 -20.5, 16.5 -20, 17 -20))" +"POLYGON ((17.5 -20, 17.5 -20.5, 17 -20.5, 17 -20, 17.5 -20))" +"POLYGON ((18 -20, 18 -20.5, 17.5 -20.5, 17.5 -20, 18 -20))" +"POLYGON ((18.5 -20, 18.5 -20.5, 18 -20.5, 18 -20, 18.5 -20))" +"POLYGON ((19 -20, 19 -20.5, 18.5 -20.5, 18.5 -20, 19 -20))" +"POLYGON ((19.5 -20, 19.5 -20.5, 19 -20.5, 19 -20, 19.5 -20))" +"POLYGON ((20 -20, 20 -20.5, 19.5 -20.5, 19.5 -20, 20 -20))" +"POLYGON ((20.5 -20, 20.5 -20.5, 20 -20.5, 20 -20, 20.5 -20))" +"POLYGON ((21 -20, 21 -20.5, 20.5 -20.5, 20.5 -20, 21 -20))" +"POLYGON ((21.5 -20, 21.5 -20.5, 21 -20.5, 21 -20, 21.5 -20))" +"POLYGON ((22 -20, 22 -20.5, 21.5 -20.5, 21.5 -20, 22 -20))" +"POLYGON ((22.5 -20, 22.5 -20.5, 22 -20.5, 22 -20, 22.5 -20))" +"POLYGON ((23 -20, 23 -20.5, 22.5 -20.5, 22.5 -20, 23 -20))" +"POLYGON ((23.5 -20, 23.5 -20.5, 23 -20.5, 23 -20, 23.5 -20))" +"POLYGON ((24 -20, 24 -20.5, 23.5 -20.5, 23.5 -20, 24 -20))" +"POLYGON ((24.5 -20, 24.5 -20.5, 24 -20.5, 24 -20, 24.5 -20))" +"POLYGON ((25 -20, 25 -20.5, 24.5 -20.5, 24.5 -20, 25 -20))" +"POLYGON ((25.5 -20, 25.5 -20.5, 25 -20.5, 25 -20, 25.5 -20))" +"POLYGON ((26 -20, 26 -20.5, 25.5 -20.5, 25.5 -20, 26 -20))" +"POLYGON ((26.5 -20, 26.5 -20.5, 26 -20.5, 26 -20, 26.5 -20))" +"POLYGON ((27 -20, 27 -20.5, 26.5 -20.5, 26.5 -20, 27 -20))" +"POLYGON ((27.5 -20, 27.5 -20.5, 27 -20.5, 27 -20, 27.5 -20))" +"POLYGON ((28 -20, 28 -20.5, 27.5 -20.5, 27.5 -20, 28 -20))" +"POLYGON ((28.5 -20, 28.5 -20.5, 28 -20.5, 28 -20, 28.5 -20))" +"POLYGON ((29 -20, 29 -20.5, 28.5 -20.5, 28.5 -20, 29 -20))" +"POLYGON ((29.5 -20, 29.5 -20.5, 29 -20.5, 29 -20, 29.5 -20))" +"POLYGON ((30 -20, 30 -20.5, 29.5 -20.5, 29.5 -20, 30 -20))" +"POLYGON ((30.5 -20, 30.5 -20.5, 30 -20.5, 30 -20, 30.5 -20))" +"POLYGON ((31 -20, 31 -20.5, 30.5 -20.5, 30.5 -20, 31 -20))" +"POLYGON ((31.5 -20, 31.5 -20.5, 31 -20.5, 31 -20, 31.5 -20))" +"POLYGON ((32 -20, 32 -20.5, 31.5 -20.5, 31.5 -20, 32 -20))" +"POLYGON ((32.5 -20, 32.5 -20.5, 32 -20.5, 32 -20, 32.5 -20))" +"POLYGON ((33 -20, 33 -20.5, 32.5 -20.5, 32.5 -20, 33 -20))" +"POLYGON ((33.5 -20, 33.5 -20.5, 33 -20.5, 33 -20, 33.5 -20))" +"POLYGON ((34 -20, 34 -20.5, 33.5 -20.5, 33.5 -20, 34 -20))" +"POLYGON ((34.5 -20, 34.5 -20.5, 34 -20.5, 34 -20, 34.5 -20))" +"POLYGON ((45 -20, 45 -20.5, 44.5 -20.5, 44.5 -20, 45 -20))" +"POLYGON ((45.5 -20, 45.5 -20.5, 45 -20.5, 45 -20, 45.5 -20))" +"POLYGON ((46 -20, 46 -20.5, 45.5 -20.5, 45.5 -20, 46 -20))" +"POLYGON ((46.5 -20, 46.5 -20.5, 46 -20.5, 46 -20, 46.5 -20))" +"POLYGON ((47 -20, 47 -20.5, 46.5 -20.5, 46.5 -20, 47 -20))" +"POLYGON ((47.5 -20, 47.5 -20.5, 47 -20.5, 47 -20, 47.5 -20))" +"POLYGON ((48 -20, 48 -20.5, 47.5 -20.5, 47.5 -20, 48 -20))" +"POLYGON ((48.5 -20, 48.5 -20.5, 48 -20.5, 48 -20, 48.5 -20))" +"POLYGON ((58 -20, 58 -20.5, 57.5 -20.5, 57.5 -20, 58 -20))" +"POLYGON ((13.5 -19.5, 13.5 -20, 13 -20, 13 -19.5, 13.5 -19.5))" +"POLYGON ((14 -19.5, 14 -20, 13.5 -20, 13.5 -19.5, 14 -19.5))" +"POLYGON ((14.5 -19.5, 14.5 -20, 14 -20, 14 -19.5, 14.5 -19.5))" +"POLYGON ((15 -19.5, 15 -20, 14.5 -20, 14.5 -19.5, 15 -19.5))" +"POLYGON ((15.5 -19.5, 15.5 -20, 15 -20, 15 -19.5, 15.5 -19.5))" +"POLYGON ((16 -19.5, 16 -20, 15.5 -20, 15.5 -19.5, 16 -19.5))" +"POLYGON ((16.5 -19.5, 16.5 -20, 16 -20, 16 -19.5, 16.5 -19.5))" +"POLYGON ((17 -19.5, 17 -20, 16.5 -20, 16.5 -19.5, 17 -19.5))" +"POLYGON ((17.5 -19.5, 17.5 -20, 17 -20, 17 -19.5, 17.5 -19.5))" +"POLYGON ((18 -19.5, 18 -20, 17.5 -20, 17.5 -19.5, 18 -19.5))" +"POLYGON ((18.5 -19.5, 18.5 -20, 18 -20, 18 -19.5, 18.5 -19.5))" +"POLYGON ((19 -19.5, 19 -20, 18.5 -20, 18.5 -19.5, 19 -19.5))" +"POLYGON ((19.5 -19.5, 19.5 -20, 19 -20, 19 -19.5, 19.5 -19.5))" +"POLYGON ((20 -19.5, 20 -20, 19.5 -20, 19.5 -19.5, 20 -19.5))" +"POLYGON ((20.5 -19.5, 20.5 -20, 20 -20, 20 -19.5, 20.5 -19.5))" +"POLYGON ((21 -19.5, 21 -20, 20.5 -20, 20.5 -19.5, 21 -19.5))" +"POLYGON ((21.5 -19.5, 21.5 -20, 21 -20, 21 -19.5, 21.5 -19.5))" +"POLYGON ((22 -19.5, 22 -20, 21.5 -20, 21.5 -19.5, 22 -19.5))" +"POLYGON ((22.5 -19.5, 22.5 -20, 22 -20, 22 -19.5, 22.5 -19.5))" +"POLYGON ((23 -19.5, 23 -20, 22.5 -20, 22.5 -19.5, 23 -19.5))" +"POLYGON ((23.5 -19.5, 23.5 -20, 23 -20, 23 -19.5, 23.5 -19.5))" +"POLYGON ((24 -19.5, 24 -20, 23.5 -20, 23.5 -19.5, 24 -19.5))" +"POLYGON ((24.5 -19.5, 24.5 -20, 24 -20, 24 -19.5, 24.5 -19.5))" +"POLYGON ((25 -19.5, 25 -20, 24.5 -20, 24.5 -19.5, 25 -19.5))" +"POLYGON ((25.5 -19.5, 25.5 -20, 25 -20, 25 -19.5, 25.5 -19.5))" +"POLYGON ((26 -19.5, 26 -20, 25.5 -20, 25.5 -19.5, 26 -19.5))" +"POLYGON ((26.5 -19.5, 26.5 -20, 26 -20, 26 -19.5, 26.5 -19.5))" +"POLYGON ((27 -19.5, 27 -20, 26.5 -20, 26.5 -19.5, 27 -19.5))" +"POLYGON ((27.5 -19.5, 27.5 -20, 27 -20, 27 -19.5, 27.5 -19.5))" +"POLYGON ((28 -19.5, 28 -20, 27.5 -20, 27.5 -19.5, 28 -19.5))" +"POLYGON ((28.5 -19.5, 28.5 -20, 28 -20, 28 -19.5, 28.5 -19.5))" +"POLYGON ((29 -19.5, 29 -20, 28.5 -20, 28.5 -19.5, 29 -19.5))" +"POLYGON ((29.5 -19.5, 29.5 -20, 29 -20, 29 -19.5, 29.5 -19.5))" +"POLYGON ((30 -19.5, 30 -20, 29.5 -20, 29.5 -19.5, 30 -19.5))" +"POLYGON ((30.5 -19.5, 30.5 -20, 30 -20, 30 -19.5, 30.5 -19.5))" +"POLYGON ((31 -19.5, 31 -20, 30.5 -20, 30.5 -19.5, 31 -19.5))" +"POLYGON ((31.5 -19.5, 31.5 -20, 31 -20, 31 -19.5, 31.5 -19.5))" +"POLYGON ((32 -19.5, 32 -20, 31.5 -20, 31.5 -19.5, 32 -19.5))" +"POLYGON ((32.5 -19.5, 32.5 -20, 32 -20, 32 -19.5, 32.5 -19.5))" +"POLYGON ((33 -19.5, 33 -20, 32.5 -20, 32.5 -19.5, 33 -19.5))" +"POLYGON ((33.5 -19.5, 33.5 -20, 33 -20, 33 -19.5, 33.5 -19.5))" +"POLYGON ((34 -19.5, 34 -20, 33.5 -20, 33.5 -19.5, 34 -19.5))" +"POLYGON ((34.5 -19.5, 34.5 -20, 34 -20, 34 -19.5, 34.5 -19.5))" +"POLYGON ((45 -19.5, 45 -20, 44.5 -20, 44.5 -19.5, 45 -19.5))" +"POLYGON ((45.5 -19.5, 45.5 -20, 45 -20, 45 -19.5, 45.5 -19.5))" +"POLYGON ((46 -19.5, 46 -20, 45.5 -20, 45.5 -19.5, 46 -19.5))" +"POLYGON ((46.5 -19.5, 46.5 -20, 46 -20, 46 -19.5, 46.5 -19.5))" +"POLYGON ((47 -19.5, 47 -20, 46.5 -20, 46.5 -19.5, 47 -19.5))" +"POLYGON ((47.5 -19.5, 47.5 -20, 47 -20, 47 -19.5, 47.5 -19.5))" +"POLYGON ((48 -19.5, 48 -20, 47.5 -20, 47.5 -19.5, 48 -19.5))" +"POLYGON ((48.5 -19.5, 48.5 -20, 48 -20, 48 -19.5, 48.5 -19.5))" +"POLYGON ((49 -19.5, 49 -20, 48.5 -20, 48.5 -19.5, 49 -19.5))" +"POLYGON ((13 -19, 13 -19.5, 12.5 -19.5, 12.5 -19, 13 -19))" +"POLYGON ((13.5 -19, 13.5 -19.5, 13 -19.5, 13 -19, 13.5 -19))" +"POLYGON ((14 -19, 14 -19.5, 13.5 -19.5, 13.5 -19, 14 -19))" +"POLYGON ((14.5 -19, 14.5 -19.5, 14 -19.5, 14 -19, 14.5 -19))" +"POLYGON ((15 -19, 15 -19.5, 14.5 -19.5, 14.5 -19, 15 -19))" +"POLYGON ((15.5 -19, 15.5 -19.5, 15 -19.5, 15 -19, 15.5 -19))" +"POLYGON ((16 -19, 16 -19.5, 15.5 -19.5, 15.5 -19, 16 -19))" +"POLYGON ((16.5 -19, 16.5 -19.5, 16 -19.5, 16 -19, 16.5 -19))" +"POLYGON ((17 -19, 17 -19.5, 16.5 -19.5, 16.5 -19, 17 -19))" +"POLYGON ((17.5 -19, 17.5 -19.5, 17 -19.5, 17 -19, 17.5 -19))" +"POLYGON ((18 -19, 18 -19.5, 17.5 -19.5, 17.5 -19, 18 -19))" +"POLYGON ((18.5 -19, 18.5 -19.5, 18 -19.5, 18 -19, 18.5 -19))" +"POLYGON ((19 -19, 19 -19.5, 18.5 -19.5, 18.5 -19, 19 -19))" +"POLYGON ((19.5 -19, 19.5 -19.5, 19 -19.5, 19 -19, 19.5 -19))" +"POLYGON ((20 -19, 20 -19.5, 19.5 -19.5, 19.5 -19, 20 -19))" +"POLYGON ((20.5 -19, 20.5 -19.5, 20 -19.5, 20 -19, 20.5 -19))" +"POLYGON ((21 -19, 21 -19.5, 20.5 -19.5, 20.5 -19, 21 -19))" +"POLYGON ((21.5 -19, 21.5 -19.5, 21 -19.5, 21 -19, 21.5 -19))" +"POLYGON ((22 -19, 22 -19.5, 21.5 -19.5, 21.5 -19, 22 -19))" +"POLYGON ((22.5 -19, 22.5 -19.5, 22 -19.5, 22 -19, 22.5 -19))" +"POLYGON ((23 -19, 23 -19.5, 22.5 -19.5, 22.5 -19, 23 -19))" +"POLYGON ((23.5 -19, 23.5 -19.5, 23 -19.5, 23 -19, 23.5 -19))" +"POLYGON ((24 -19, 24 -19.5, 23.5 -19.5, 23.5 -19, 24 -19))" +"POLYGON ((24.5 -19, 24.5 -19.5, 24 -19.5, 24 -19, 24.5 -19))" +"POLYGON ((25 -19, 25 -19.5, 24.5 -19.5, 24.5 -19, 25 -19))" +"POLYGON ((25.5 -19, 25.5 -19.5, 25 -19.5, 25 -19, 25.5 -19))" +"POLYGON ((26 -19, 26 -19.5, 25.5 -19.5, 25.5 -19, 26 -19))" +"POLYGON ((26.5 -19, 26.5 -19.5, 26 -19.5, 26 -19, 26.5 -19))" +"POLYGON ((27 -19, 27 -19.5, 26.5 -19.5, 26.5 -19, 27 -19))" +"POLYGON ((27.5 -19, 27.5 -19.5, 27 -19.5, 27 -19, 27.5 -19))" +"POLYGON ((28 -19, 28 -19.5, 27.5 -19.5, 27.5 -19, 28 -19))" +"POLYGON ((28.5 -19, 28.5 -19.5, 28 -19.5, 28 -19, 28.5 -19))" +"POLYGON ((29 -19, 29 -19.5, 28.5 -19.5, 28.5 -19, 29 -19))" +"POLYGON ((29.5 -19, 29.5 -19.5, 29 -19.5, 29 -19, 29.5 -19))" +"POLYGON ((30 -19, 30 -19.5, 29.5 -19.5, 29.5 -19, 30 -19))" +"POLYGON ((30.5 -19, 30.5 -19.5, 30 -19.5, 30 -19, 30.5 -19))" +"POLYGON ((31 -19, 31 -19.5, 30.5 -19.5, 30.5 -19, 31 -19))" +"POLYGON ((31.5 -19, 31.5 -19.5, 31 -19.5, 31 -19, 31.5 -19))" +"POLYGON ((32 -19, 32 -19.5, 31.5 -19.5, 31.5 -19, 32 -19))" +"POLYGON ((32.5 -19, 32.5 -19.5, 32 -19.5, 32 -19, 32.5 -19))" +"POLYGON ((33 -19, 33 -19.5, 32.5 -19.5, 32.5 -19, 33 -19))" +"POLYGON ((33.5 -19, 33.5 -19.5, 33 -19.5, 33 -19, 33.5 -19))" +"POLYGON ((34 -19, 34 -19.5, 33.5 -19.5, 33.5 -19, 34 -19))" +"POLYGON ((34.5 -19, 34.5 -19.5, 34 -19.5, 34 -19, 34.5 -19))" +"POLYGON ((35 -19, 35 -19.5, 34.5 -19.5, 34.5 -19, 35 -19))" +"POLYGON ((35.5 -19, 35.5 -19.5, 35 -19.5, 35 -19, 35.5 -19))" +"POLYGON ((45 -19, 45 -19.5, 44.5 -19.5, 44.5 -19, 45 -19))" +"POLYGON ((45.5 -19, 45.5 -19.5, 45 -19.5, 45 -19, 45.5 -19))" +"POLYGON ((46 -19, 46 -19.5, 45.5 -19.5, 45.5 -19, 46 -19))" +"POLYGON ((46.5 -19, 46.5 -19.5, 46 -19.5, 46 -19, 46.5 -19))" +"POLYGON ((47 -19, 47 -19.5, 46.5 -19.5, 46.5 -19, 47 -19))" +"POLYGON ((47.5 -19, 47.5 -19.5, 47 -19.5, 47 -19, 47.5 -19))" +"POLYGON ((48 -19, 48 -19.5, 47.5 -19.5, 47.5 -19, 48 -19))" +"POLYGON ((48.5 -19, 48.5 -19.5, 48 -19.5, 48 -19, 48.5 -19))" +"POLYGON ((49 -19, 49 -19.5, 48.5 -19.5, 48.5 -19, 49 -19))" +"POLYGON ((13 -18.5, 13 -19, 12.5 -19, 12.5 -18.5, 13 -18.5))" +"POLYGON ((13.5 -18.5, 13.5 -19, 13 -19, 13 -18.5, 13.5 -18.5))" +"POLYGON ((14 -18.5, 14 -19, 13.5 -19, 13.5 -18.5, 14 -18.5))" +"POLYGON ((14.5 -18.5, 14.5 -19, 14 -19, 14 -18.5, 14.5 -18.5))" +"POLYGON ((15 -18.5, 15 -19, 14.5 -19, 14.5 -18.5, 15 -18.5))" +"POLYGON ((15.5 -18.5, 15.5 -19, 15 -19, 15 -18.5, 15.5 -18.5))" +"POLYGON ((16 -18.5, 16 -19, 15.5 -19, 15.5 -18.5, 16 -18.5))" +"POLYGON ((16.5 -18.5, 16.5 -19, 16 -19, 16 -18.5, 16.5 -18.5))" +"POLYGON ((17 -18.5, 17 -19, 16.5 -19, 16.5 -18.5, 17 -18.5))" +"POLYGON ((17.5 -18.5, 17.5 -19, 17 -19, 17 -18.5, 17.5 -18.5))" +"POLYGON ((18 -18.5, 18 -19, 17.5 -19, 17.5 -18.5, 18 -18.5))" +"POLYGON ((18.5 -18.5, 18.5 -19, 18 -19, 18 -18.5, 18.5 -18.5))" +"POLYGON ((19 -18.5, 19 -19, 18.5 -19, 18.5 -18.5, 19 -18.5))" +"POLYGON ((19.5 -18.5, 19.5 -19, 19 -19, 19 -18.5, 19.5 -18.5))" +"POLYGON ((20 -18.5, 20 -19, 19.5 -19, 19.5 -18.5, 20 -18.5))" +"POLYGON ((20.5 -18.5, 20.5 -19, 20 -19, 20 -18.5, 20.5 -18.5))" +"POLYGON ((21 -18.5, 21 -19, 20.5 -19, 20.5 -18.5, 21 -18.5))" +"POLYGON ((21.5 -18.5, 21.5 -19, 21 -19, 21 -18.5, 21.5 -18.5))" +"POLYGON ((22 -18.5, 22 -19, 21.5 -19, 21.5 -18.5, 22 -18.5))" +"POLYGON ((22.5 -18.5, 22.5 -19, 22 -19, 22 -18.5, 22.5 -18.5))" +"POLYGON ((23 -18.5, 23 -19, 22.5 -19, 22.5 -18.5, 23 -18.5))" +"POLYGON ((23.5 -18.5, 23.5 -19, 23 -19, 23 -18.5, 23.5 -18.5))" +"POLYGON ((24 -18.5, 24 -19, 23.5 -19, 23.5 -18.5, 24 -18.5))" +"POLYGON ((24.5 -18.5, 24.5 -19, 24 -19, 24 -18.5, 24.5 -18.5))" +"POLYGON ((25 -18.5, 25 -19, 24.5 -19, 24.5 -18.5, 25 -18.5))" +"POLYGON ((25.5 -18.5, 25.5 -19, 25 -19, 25 -18.5, 25.5 -18.5))" +"POLYGON ((26 -18.5, 26 -19, 25.5 -19, 25.5 -18.5, 26 -18.5))" +"POLYGON ((26.5 -18.5, 26.5 -19, 26 -19, 26 -18.5, 26.5 -18.5))" +"POLYGON ((27 -18.5, 27 -19, 26.5 -19, 26.5 -18.5, 27 -18.5))" +"POLYGON ((27.5 -18.5, 27.5 -19, 27 -19, 27 -18.5, 27.5 -18.5))" +"POLYGON ((28 -18.5, 28 -19, 27.5 -19, 27.5 -18.5, 28 -18.5))" +"POLYGON ((28.5 -18.5, 28.5 -19, 28 -19, 28 -18.5, 28.5 -18.5))" +"POLYGON ((29 -18.5, 29 -19, 28.5 -19, 28.5 -18.5, 29 -18.5))" +"POLYGON ((29.5 -18.5, 29.5 -19, 29 -19, 29 -18.5, 29.5 -18.5))" +"POLYGON ((30 -18.5, 30 -19, 29.5 -19, 29.5 -18.5, 30 -18.5))" +"POLYGON ((30.5 -18.5, 30.5 -19, 30 -19, 30 -18.5, 30.5 -18.5))" +"POLYGON ((31 -18.5, 31 -19, 30.5 -19, 30.5 -18.5, 31 -18.5))" +"POLYGON ((31.5 -18.5, 31.5 -19, 31 -19, 31 -18.5, 31.5 -18.5))" +"POLYGON ((32 -18.5, 32 -19, 31.5 -19, 31.5 -18.5, 32 -18.5))" +"POLYGON ((32.5 -18.5, 32.5 -19, 32 -19, 32 -18.5, 32.5 -18.5))" +"POLYGON ((33 -18.5, 33 -19, 32.5 -19, 32.5 -18.5, 33 -18.5))" +"POLYGON ((33.5 -18.5, 33.5 -19, 33 -19, 33 -18.5, 33.5 -18.5))" +"POLYGON ((34 -18.5, 34 -19, 33.5 -19, 33.5 -18.5, 34 -18.5))" +"POLYGON ((34.5 -18.5, 34.5 -19, 34 -19, 34 -18.5, 34.5 -18.5))" +"POLYGON ((35 -18.5, 35 -19, 34.5 -19, 34.5 -18.5, 35 -18.5))" +"POLYGON ((35.5 -18.5, 35.5 -19, 35 -19, 35 -18.5, 35.5 -18.5))" +"POLYGON ((36 -18.5, 36 -19, 35.5 -19, 35.5 -18.5, 36 -18.5))" +"POLYGON ((36.5 -18.5, 36.5 -19, 36 -19, 36 -18.5, 36.5 -18.5))" +"POLYGON ((44.5 -18.5, 44.5 -19, 44 -19, 44 -18.5, 44.5 -18.5))" +"POLYGON ((45 -18.5, 45 -19, 44.5 -19, 44.5 -18.5, 45 -18.5))" +"POLYGON ((45.5 -18.5, 45.5 -19, 45 -19, 45 -18.5, 45.5 -18.5))" +"POLYGON ((46 -18.5, 46 -19, 45.5 -19, 45.5 -18.5, 46 -18.5))" +"POLYGON ((46.5 -18.5, 46.5 -19, 46 -19, 46 -18.5, 46.5 -18.5))" +"POLYGON ((47 -18.5, 47 -19, 46.5 -19, 46.5 -18.5, 47 -18.5))" +"POLYGON ((47.5 -18.5, 47.5 -19, 47 -19, 47 -18.5, 47.5 -18.5))" +"POLYGON ((48 -18.5, 48 -19, 47.5 -19, 47.5 -18.5, 48 -18.5))" +"POLYGON ((48.5 -18.5, 48.5 -19, 48 -19, 48 -18.5, 48.5 -18.5))" +"POLYGON ((49 -18.5, 49 -19, 48.5 -19, 48.5 -18.5, 49 -18.5))" +"POLYGON ((12.5 -18, 12.5 -18.5, 12 -18.5, 12 -18, 12.5 -18))" +"POLYGON ((13 -18, 13 -18.5, 12.5 -18.5, 12.5 -18, 13 -18))" +"POLYGON ((13.5 -18, 13.5 -18.5, 13 -18.5, 13 -18, 13.5 -18))" +"POLYGON ((14 -18, 14 -18.5, 13.5 -18.5, 13.5 -18, 14 -18))" +"POLYGON ((14.5 -18, 14.5 -18.5, 14 -18.5, 14 -18, 14.5 -18))" +"POLYGON ((15 -18, 15 -18.5, 14.5 -18.5, 14.5 -18, 15 -18))" +"POLYGON ((15.5 -18, 15.5 -18.5, 15 -18.5, 15 -18, 15.5 -18))" +"POLYGON ((16 -18, 16 -18.5, 15.5 -18.5, 15.5 -18, 16 -18))" +"POLYGON ((16.5 -18, 16.5 -18.5, 16 -18.5, 16 -18, 16.5 -18))" +"POLYGON ((17 -18, 17 -18.5, 16.5 -18.5, 16.5 -18, 17 -18))" +"POLYGON ((17.5 -18, 17.5 -18.5, 17 -18.5, 17 -18, 17.5 -18))" +"POLYGON ((18 -18, 18 -18.5, 17.5 -18.5, 17.5 -18, 18 -18))" +"POLYGON ((18.5 -18, 18.5 -18.5, 18 -18.5, 18 -18, 18.5 -18))" +"POLYGON ((19 -18, 19 -18.5, 18.5 -18.5, 18.5 -18, 19 -18))" +"POLYGON ((19.5 -18, 19.5 -18.5, 19 -18.5, 19 -18, 19.5 -18))" +"POLYGON ((20 -18, 20 -18.5, 19.5 -18.5, 19.5 -18, 20 -18))" +"POLYGON ((20.5 -18, 20.5 -18.5, 20 -18.5, 20 -18, 20.5 -18))" +"POLYGON ((21 -18, 21 -18.5, 20.5 -18.5, 20.5 -18, 21 -18))" +"POLYGON ((21.5 -18, 21.5 -18.5, 21 -18.5, 21 -18, 21.5 -18))" +"POLYGON ((22 -18, 22 -18.5, 21.5 -18.5, 21.5 -18, 22 -18))" +"POLYGON ((22.5 -18, 22.5 -18.5, 22 -18.5, 22 -18, 22.5 -18))" +"POLYGON ((23 -18, 23 -18.5, 22.5 -18.5, 22.5 -18, 23 -18))" +"POLYGON ((23.5 -18, 23.5 -18.5, 23 -18.5, 23 -18, 23.5 -18))" +"POLYGON ((24 -18, 24 -18.5, 23.5 -18.5, 23.5 -18, 24 -18))" +"POLYGON ((24.5 -18, 24.5 -18.5, 24 -18.5, 24 -18, 24.5 -18))" +"POLYGON ((25 -18, 25 -18.5, 24.5 -18.5, 24.5 -18, 25 -18))" +"POLYGON ((25.5 -18, 25.5 -18.5, 25 -18.5, 25 -18, 25.5 -18))" +"POLYGON ((26 -18, 26 -18.5, 25.5 -18.5, 25.5 -18, 26 -18))" +"POLYGON ((26.5 -18, 26.5 -18.5, 26 -18.5, 26 -18, 26.5 -18))" +"POLYGON ((27 -18, 27 -18.5, 26.5 -18.5, 26.5 -18, 27 -18))" +"POLYGON ((27.5 -18, 27.5 -18.5, 27 -18.5, 27 -18, 27.5 -18))" +"POLYGON ((28 -18, 28 -18.5, 27.5 -18.5, 27.5 -18, 28 -18))" +"POLYGON ((28.5 -18, 28.5 -18.5, 28 -18.5, 28 -18, 28.5 -18))" +"POLYGON ((29 -18, 29 -18.5, 28.5 -18.5, 28.5 -18, 29 -18))" +"POLYGON ((29.5 -18, 29.5 -18.5, 29 -18.5, 29 -18, 29.5 -18))" +"POLYGON ((30 -18, 30 -18.5, 29.5 -18.5, 29.5 -18, 30 -18))" +"POLYGON ((30.5 -18, 30.5 -18.5, 30 -18.5, 30 -18, 30.5 -18))" +"POLYGON ((31 -18, 31 -18.5, 30.5 -18.5, 30.5 -18, 31 -18))" +"POLYGON ((31.5 -18, 31.5 -18.5, 31 -18.5, 31 -18, 31.5 -18))" +"POLYGON ((32 -18, 32 -18.5, 31.5 -18.5, 31.5 -18, 32 -18))" +"POLYGON ((32.5 -18, 32.5 -18.5, 32 -18.5, 32 -18, 32.5 -18))" +"POLYGON ((33 -18, 33 -18.5, 32.5 -18.5, 32.5 -18, 33 -18))" +"POLYGON ((33.5 -18, 33.5 -18.5, 33 -18.5, 33 -18, 33.5 -18))" +"POLYGON ((34 -18, 34 -18.5, 33.5 -18.5, 33.5 -18, 34 -18))" +"POLYGON ((34.5 -18, 34.5 -18.5, 34 -18.5, 34 -18, 34.5 -18))" +"POLYGON ((35 -18, 35 -18.5, 34.5 -18.5, 34.5 -18, 35 -18))" +"POLYGON ((35.5 -18, 35.5 -18.5, 35 -18.5, 35 -18, 35.5 -18))" +"POLYGON ((36 -18, 36 -18.5, 35.5 -18.5, 35.5 -18, 36 -18))" +"POLYGON ((36.5 -18, 36.5 -18.5, 36 -18.5, 36 -18, 36.5 -18))" +"POLYGON ((37 -18, 37 -18.5, 36.5 -18.5, 36.5 -18, 37 -18))" +"POLYGON ((44.5 -18, 44.5 -18.5, 44 -18.5, 44 -18, 44.5 -18))" +"POLYGON ((45 -18, 45 -18.5, 44.5 -18.5, 44.5 -18, 45 -18))" +"POLYGON ((45.5 -18, 45.5 -18.5, 45 -18.5, 45 -18, 45.5 -18))" +"POLYGON ((46 -18, 46 -18.5, 45.5 -18.5, 45.5 -18, 46 -18))" +"POLYGON ((46.5 -18, 46.5 -18.5, 46 -18.5, 46 -18, 46.5 -18))" +"POLYGON ((47 -18, 47 -18.5, 46.5 -18.5, 46.5 -18, 47 -18))" +"POLYGON ((47.5 -18, 47.5 -18.5, 47 -18.5, 47 -18, 47.5 -18))" +"POLYGON ((48 -18, 48 -18.5, 47.5 -18.5, 47.5 -18, 48 -18))" +"POLYGON ((48.5 -18, 48.5 -18.5, 48 -18.5, 48 -18, 48.5 -18))" +"POLYGON ((49 -18, 49 -18.5, 48.5 -18.5, 48.5 -18, 49 -18))" +"POLYGON ((49.5 -18, 49.5 -18.5, 49 -18.5, 49 -18, 49.5 -18))" +"POLYGON ((12.5 -17.5, 12.5 -18, 12 -18, 12 -17.5, 12.5 -17.5))" +"POLYGON ((13 -17.5, 13 -18, 12.5 -18, 12.5 -17.5, 13 -17.5))" +"POLYGON ((13.5 -17.5, 13.5 -18, 13 -18, 13 -17.5, 13.5 -17.5))" +"POLYGON ((14 -17.5, 14 -18, 13.5 -18, 13.5 -17.5, 14 -17.5))" +"POLYGON ((14.5 -17.5, 14.5 -18, 14 -18, 14 -17.5, 14.5 -17.5))" +"POLYGON ((15 -17.5, 15 -18, 14.5 -18, 14.5 -17.5, 15 -17.5))" +"POLYGON ((15.5 -17.5, 15.5 -18, 15 -18, 15 -17.5, 15.5 -17.5))" +"POLYGON ((16 -17.5, 16 -18, 15.5 -18, 15.5 -17.5, 16 -17.5))" +"POLYGON ((16.5 -17.5, 16.5 -18, 16 -18, 16 -17.5, 16.5 -17.5))" +"POLYGON ((17 -17.5, 17 -18, 16.5 -18, 16.5 -17.5, 17 -17.5))" +"POLYGON ((17.5 -17.5, 17.5 -18, 17 -18, 17 -17.5, 17.5 -17.5))" +"POLYGON ((18 -17.5, 18 -18, 17.5 -18, 17.5 -17.5, 18 -17.5))" +"POLYGON ((18.5 -17.5, 18.5 -18, 18 -18, 18 -17.5, 18.5 -17.5))" +"POLYGON ((19 -17.5, 19 -18, 18.5 -18, 18.5 -17.5, 19 -17.5))" +"POLYGON ((19.5 -17.5, 19.5 -18, 19 -18, 19 -17.5, 19.5 -17.5))" +"POLYGON ((20 -17.5, 20 -18, 19.5 -18, 19.5 -17.5, 20 -17.5))" +"POLYGON ((20.5 -17.5, 20.5 -18, 20 -18, 20 -17.5, 20.5 -17.5))" +"POLYGON ((21 -17.5, 21 -18, 20.5 -18, 20.5 -17.5, 21 -17.5))" +"POLYGON ((21.5 -17.5, 21.5 -18, 21 -18, 21 -17.5, 21.5 -17.5))" +"POLYGON ((22 -17.5, 22 -18, 21.5 -18, 21.5 -17.5, 22 -17.5))" +"POLYGON ((22.5 -17.5, 22.5 -18, 22 -18, 22 -17.5, 22.5 -17.5))" +"POLYGON ((23 -17.5, 23 -18, 22.5 -18, 22.5 -17.5, 23 -17.5))" +"POLYGON ((23.5 -17.5, 23.5 -18, 23 -18, 23 -17.5, 23.5 -17.5))" +"POLYGON ((24 -17.5, 24 -18, 23.5 -18, 23.5 -17.5, 24 -17.5))" +"POLYGON ((24.5 -17.5, 24.5 -18, 24 -18, 24 -17.5, 24.5 -17.5))" +"POLYGON ((25 -17.5, 25 -18, 24.5 -18, 24.5 -17.5, 25 -17.5))" +"POLYGON ((25.5 -17.5, 25.5 -18, 25 -18, 25 -17.5, 25.5 -17.5))" +"POLYGON ((26 -17.5, 26 -18, 25.5 -18, 25.5 -17.5, 26 -17.5))" +"POLYGON ((26.5 -17.5, 26.5 -18, 26 -18, 26 -17.5, 26.5 -17.5))" +"POLYGON ((27 -17.5, 27 -18, 26.5 -18, 26.5 -17.5, 27 -17.5))" +"POLYGON ((27.5 -17.5, 27.5 -18, 27 -18, 27 -17.5, 27.5 -17.5))" +"POLYGON ((28 -17.5, 28 -18, 27.5 -18, 27.5 -17.5, 28 -17.5))" +"POLYGON ((28.5 -17.5, 28.5 -18, 28 -18, 28 -17.5, 28.5 -17.5))" +"POLYGON ((29 -17.5, 29 -18, 28.5 -18, 28.5 -17.5, 29 -17.5))" +"POLYGON ((29.5 -17.5, 29.5 -18, 29 -18, 29 -17.5, 29.5 -17.5))" +"POLYGON ((30 -17.5, 30 -18, 29.5 -18, 29.5 -17.5, 30 -17.5))" +"POLYGON ((30.5 -17.5, 30.5 -18, 30 -18, 30 -17.5, 30.5 -17.5))" +"POLYGON ((31 -17.5, 31 -18, 30.5 -18, 30.5 -17.5, 31 -17.5))" +"POLYGON ((31.5 -17.5, 31.5 -18, 31 -18, 31 -17.5, 31.5 -17.5))" +"POLYGON ((32 -17.5, 32 -18, 31.5 -18, 31.5 -17.5, 32 -17.5))" +"POLYGON ((32.5 -17.5, 32.5 -18, 32 -18, 32 -17.5, 32.5 -17.5))" +"POLYGON ((33 -17.5, 33 -18, 32.5 -18, 32.5 -17.5, 33 -17.5))" +"POLYGON ((33.5 -17.5, 33.5 -18, 33 -18, 33 -17.5, 33.5 -17.5))" +"POLYGON ((34 -17.5, 34 -18, 33.5 -18, 33.5 -17.5, 34 -17.5))" +"POLYGON ((34.5 -17.5, 34.5 -18, 34 -18, 34 -17.5, 34.5 -17.5))" +"POLYGON ((35 -17.5, 35 -18, 34.5 -18, 34.5 -17.5, 35 -17.5))" +"POLYGON ((35.5 -17.5, 35.5 -18, 35 -18, 35 -17.5, 35.5 -17.5))" +"POLYGON ((36 -17.5, 36 -18, 35.5 -18, 35.5 -17.5, 36 -17.5))" +"POLYGON ((36.5 -17.5, 36.5 -18, 36 -18, 36 -17.5, 36.5 -17.5))" +"POLYGON ((37 -17.5, 37 -18, 36.5 -18, 36.5 -17.5, 37 -17.5))" +"POLYGON ((37.5 -17.5, 37.5 -18, 37 -18, 37 -17.5, 37.5 -17.5))" +"POLYGON ((44.5 -17.5, 44.5 -18, 44 -18, 44 -17.5, 44.5 -17.5))" +"POLYGON ((45 -17.5, 45 -18, 44.5 -18, 44.5 -17.5, 45 -17.5))" +"POLYGON ((45.5 -17.5, 45.5 -18, 45 -18, 45 -17.5, 45.5 -17.5))" +"POLYGON ((46 -17.5, 46 -18, 45.5 -18, 45.5 -17.5, 46 -17.5))" +"POLYGON ((46.5 -17.5, 46.5 -18, 46 -18, 46 -17.5, 46.5 -17.5))" +"POLYGON ((47 -17.5, 47 -18, 46.5 -18, 46.5 -17.5, 47 -17.5))" +"POLYGON ((47.5 -17.5, 47.5 -18, 47 -18, 47 -17.5, 47.5 -17.5))" +"POLYGON ((48 -17.5, 48 -18, 47.5 -18, 47.5 -17.5, 48 -17.5))" +"POLYGON ((48.5 -17.5, 48.5 -18, 48 -18, 48 -17.5, 48.5 -17.5))" +"POLYGON ((49 -17.5, 49 -18, 48.5 -18, 48.5 -17.5, 49 -17.5))" +"POLYGON ((49.5 -17.5, 49.5 -18, 49 -18, 49 -17.5, 49.5 -17.5))" +"POLYGON ((12.5 -17, 12.5 -17.5, 12 -17.5, 12 -17, 12.5 -17))" +"POLYGON ((13 -17, 13 -17.5, 12.5 -17.5, 12.5 -17, 13 -17))" +"POLYGON ((13.5 -17, 13.5 -17.5, 13 -17.5, 13 -17, 13.5 -17))" +"POLYGON ((14 -17, 14 -17.5, 13.5 -17.5, 13.5 -17, 14 -17))" +"POLYGON ((14.5 -17, 14.5 -17.5, 14 -17.5, 14 -17, 14.5 -17))" +"POLYGON ((15 -17, 15 -17.5, 14.5 -17.5, 14.5 -17, 15 -17))" +"POLYGON ((15.5 -17, 15.5 -17.5, 15 -17.5, 15 -17, 15.5 -17))" +"POLYGON ((16 -17, 16 -17.5, 15.5 -17.5, 15.5 -17, 16 -17))" +"POLYGON ((16.5 -17, 16.5 -17.5, 16 -17.5, 16 -17, 16.5 -17))" +"POLYGON ((17 -17, 17 -17.5, 16.5 -17.5, 16.5 -17, 17 -17))" +"POLYGON ((17.5 -17, 17.5 -17.5, 17 -17.5, 17 -17, 17.5 -17))" +"POLYGON ((18 -17, 18 -17.5, 17.5 -17.5, 17.5 -17, 18 -17))" +"POLYGON ((18.5 -17, 18.5 -17.5, 18 -17.5, 18 -17, 18.5 -17))" +"POLYGON ((19 -17, 19 -17.5, 18.5 -17.5, 18.5 -17, 19 -17))" +"POLYGON ((19.5 -17, 19.5 -17.5, 19 -17.5, 19 -17, 19.5 -17))" +"POLYGON ((20 -17, 20 -17.5, 19.5 -17.5, 19.5 -17, 20 -17))" +"POLYGON ((20.5 -17, 20.5 -17.5, 20 -17.5, 20 -17, 20.5 -17))" +"POLYGON ((21 -17, 21 -17.5, 20.5 -17.5, 20.5 -17, 21 -17))" +"POLYGON ((21.5 -17, 21.5 -17.5, 21 -17.5, 21 -17, 21.5 -17))" +"POLYGON ((22 -17, 22 -17.5, 21.5 -17.5, 21.5 -17, 22 -17))" +"POLYGON ((22.5 -17, 22.5 -17.5, 22 -17.5, 22 -17, 22.5 -17))" +"POLYGON ((23 -17, 23 -17.5, 22.5 -17.5, 22.5 -17, 23 -17))" +"POLYGON ((23.5 -17, 23.5 -17.5, 23 -17.5, 23 -17, 23.5 -17))" +"POLYGON ((24 -17, 24 -17.5, 23.5 -17.5, 23.5 -17, 24 -17))" +"POLYGON ((24.5 -17, 24.5 -17.5, 24 -17.5, 24 -17, 24.5 -17))" +"POLYGON ((25 -17, 25 -17.5, 24.5 -17.5, 24.5 -17, 25 -17))" +"POLYGON ((25.5 -17, 25.5 -17.5, 25 -17.5, 25 -17, 25.5 -17))" +"POLYGON ((26 -17, 26 -17.5, 25.5 -17.5, 25.5 -17, 26 -17))" +"POLYGON ((26.5 -17, 26.5 -17.5, 26 -17.5, 26 -17, 26.5 -17))" +"POLYGON ((27 -17, 27 -17.5, 26.5 -17.5, 26.5 -17, 27 -17))" +"POLYGON ((27.5 -17, 27.5 -17.5, 27 -17.5, 27 -17, 27.5 -17))" +"POLYGON ((28 -17, 28 -17.5, 27.5 -17.5, 27.5 -17, 28 -17))" +"POLYGON ((28.5 -17, 28.5 -17.5, 28 -17.5, 28 -17, 28.5 -17))" +"POLYGON ((29 -17, 29 -17.5, 28.5 -17.5, 28.5 -17, 29 -17))" +"POLYGON ((29.5 -17, 29.5 -17.5, 29 -17.5, 29 -17, 29.5 -17))" +"POLYGON ((30 -17, 30 -17.5, 29.5 -17.5, 29.5 -17, 30 -17))" +"POLYGON ((30.5 -17, 30.5 -17.5, 30 -17.5, 30 -17, 30.5 -17))" +"POLYGON ((31 -17, 31 -17.5, 30.5 -17.5, 30.5 -17, 31 -17))" +"POLYGON ((31.5 -17, 31.5 -17.5, 31 -17.5, 31 -17, 31.5 -17))" +"POLYGON ((32 -17, 32 -17.5, 31.5 -17.5, 31.5 -17, 32 -17))" +"POLYGON ((32.5 -17, 32.5 -17.5, 32 -17.5, 32 -17, 32.5 -17))" +"POLYGON ((33 -17, 33 -17.5, 32.5 -17.5, 32.5 -17, 33 -17))" +"POLYGON ((33.5 -17, 33.5 -17.5, 33 -17.5, 33 -17, 33.5 -17))" +"POLYGON ((34 -17, 34 -17.5, 33.5 -17.5, 33.5 -17, 34 -17))" +"POLYGON ((34.5 -17, 34.5 -17.5, 34 -17.5, 34 -17, 34.5 -17))" +"POLYGON ((35 -17, 35 -17.5, 34.5 -17.5, 34.5 -17, 35 -17))" +"POLYGON ((35.5 -17, 35.5 -17.5, 35 -17.5, 35 -17, 35.5 -17))" +"POLYGON ((36 -17, 36 -17.5, 35.5 -17.5, 35.5 -17, 36 -17))" +"POLYGON ((36.5 -17, 36.5 -17.5, 36 -17.5, 36 -17, 36.5 -17))" +"POLYGON ((37 -17, 37 -17.5, 36.5 -17.5, 36.5 -17, 37 -17))" +"POLYGON ((37.5 -17, 37.5 -17.5, 37 -17.5, 37 -17, 37.5 -17))" +"POLYGON ((38 -17, 38 -17.5, 37.5 -17.5, 37.5 -17, 38 -17))" +"POLYGON ((38.5 -17, 38.5 -17.5, 38 -17.5, 38 -17, 38.5 -17))" +"POLYGON ((44.5 -17, 44.5 -17.5, 44 -17.5, 44 -17, 44.5 -17))" +"POLYGON ((45 -17, 45 -17.5, 44.5 -17.5, 44.5 -17, 45 -17))" +"POLYGON ((45.5 -17, 45.5 -17.5, 45 -17.5, 45 -17, 45.5 -17))" +"POLYGON ((46 -17, 46 -17.5, 45.5 -17.5, 45.5 -17, 46 -17))" +"POLYGON ((46.5 -17, 46.5 -17.5, 46 -17.5, 46 -17, 46.5 -17))" +"POLYGON ((47 -17, 47 -17.5, 46.5 -17.5, 46.5 -17, 47 -17))" +"POLYGON ((47.5 -17, 47.5 -17.5, 47 -17.5, 47 -17, 47.5 -17))" +"POLYGON ((48 -17, 48 -17.5, 47.5 -17.5, 47.5 -17, 48 -17))" +"POLYGON ((48.5 -17, 48.5 -17.5, 48 -17.5, 48 -17, 48.5 -17))" +"POLYGON ((49 -17, 49 -17.5, 48.5 -17.5, 48.5 -17, 49 -17))" +"POLYGON ((49.5 -17, 49.5 -17.5, 49 -17.5, 49 -17, 49.5 -17))" +"POLYGON ((12 -16.5, 12 -17, 11.5 -17, 11.5 -16.5, 12 -16.5))" +"POLYGON ((12.5 -16.5, 12.5 -17, 12 -17, 12 -16.5, 12.5 -16.5))" +"POLYGON ((13 -16.5, 13 -17, 12.5 -17, 12.5 -16.5, 13 -16.5))" +"POLYGON ((13.5 -16.5, 13.5 -17, 13 -17, 13 -16.5, 13.5 -16.5))" +"POLYGON ((14 -16.5, 14 -17, 13.5 -17, 13.5 -16.5, 14 -16.5))" +"POLYGON ((14.5 -16.5, 14.5 -17, 14 -17, 14 -16.5, 14.5 -16.5))" +"POLYGON ((15 -16.5, 15 -17, 14.5 -17, 14.5 -16.5, 15 -16.5))" +"POLYGON ((15.5 -16.5, 15.5 -17, 15 -17, 15 -16.5, 15.5 -16.5))" +"POLYGON ((16 -16.5, 16 -17, 15.5 -17, 15.5 -16.5, 16 -16.5))" +"POLYGON ((16.5 -16.5, 16.5 -17, 16 -17, 16 -16.5, 16.5 -16.5))" +"POLYGON ((17 -16.5, 17 -17, 16.5 -17, 16.5 -16.5, 17 -16.5))" +"POLYGON ((17.5 -16.5, 17.5 -17, 17 -17, 17 -16.5, 17.5 -16.5))" +"POLYGON ((18 -16.5, 18 -17, 17.5 -17, 17.5 -16.5, 18 -16.5))" +"POLYGON ((18.5 -16.5, 18.5 -17, 18 -17, 18 -16.5, 18.5 -16.5))" +"POLYGON ((19 -16.5, 19 -17, 18.5 -17, 18.5 -16.5, 19 -16.5))" +"POLYGON ((19.5 -16.5, 19.5 -17, 19 -17, 19 -16.5, 19.5 -16.5))" +"POLYGON ((20 -16.5, 20 -17, 19.5 -17, 19.5 -16.5, 20 -16.5))" +"POLYGON ((20.5 -16.5, 20.5 -17, 20 -17, 20 -16.5, 20.5 -16.5))" +"POLYGON ((21 -16.5, 21 -17, 20.5 -17, 20.5 -16.5, 21 -16.5))" +"POLYGON ((21.5 -16.5, 21.5 -17, 21 -17, 21 -16.5, 21.5 -16.5))" +"POLYGON ((22 -16.5, 22 -17, 21.5 -17, 21.5 -16.5, 22 -16.5))" +"POLYGON ((22.5 -16.5, 22.5 -17, 22 -17, 22 -16.5, 22.5 -16.5))" +"POLYGON ((23 -16.5, 23 -17, 22.5 -17, 22.5 -16.5, 23 -16.5))" +"POLYGON ((23.5 -16.5, 23.5 -17, 23 -17, 23 -16.5, 23.5 -16.5))" +"POLYGON ((24 -16.5, 24 -17, 23.5 -17, 23.5 -16.5, 24 -16.5))" +"POLYGON ((24.5 -16.5, 24.5 -17, 24 -17, 24 -16.5, 24.5 -16.5))" +"POLYGON ((25 -16.5, 25 -17, 24.5 -17, 24.5 -16.5, 25 -16.5))" +"POLYGON ((25.5 -16.5, 25.5 -17, 25 -17, 25 -16.5, 25.5 -16.5))" +"POLYGON ((26 -16.5, 26 -17, 25.5 -17, 25.5 -16.5, 26 -16.5))" +"POLYGON ((26.5 -16.5, 26.5 -17, 26 -17, 26 -16.5, 26.5 -16.5))" +"POLYGON ((27 -16.5, 27 -17, 26.5 -17, 26.5 -16.5, 27 -16.5))" +"POLYGON ((27.5 -16.5, 27.5 -17, 27 -17, 27 -16.5, 27.5 -16.5))" +"POLYGON ((28 -16.5, 28 -17, 27.5 -17, 27.5 -16.5, 28 -16.5))" +"POLYGON ((28.5 -16.5, 28.5 -17, 28 -17, 28 -16.5, 28.5 -16.5))" +"POLYGON ((29 -16.5, 29 -17, 28.5 -17, 28.5 -16.5, 29 -16.5))" +"POLYGON ((29.5 -16.5, 29.5 -17, 29 -17, 29 -16.5, 29.5 -16.5))" +"POLYGON ((30 -16.5, 30 -17, 29.5 -17, 29.5 -16.5, 30 -16.5))" +"POLYGON ((30.5 -16.5, 30.5 -17, 30 -17, 30 -16.5, 30.5 -16.5))" +"POLYGON ((31 -16.5, 31 -17, 30.5 -17, 30.5 -16.5, 31 -16.5))" +"POLYGON ((31.5 -16.5, 31.5 -17, 31 -17, 31 -16.5, 31.5 -16.5))" +"POLYGON ((32 -16.5, 32 -17, 31.5 -17, 31.5 -16.5, 32 -16.5))" +"POLYGON ((32.5 -16.5, 32.5 -17, 32 -17, 32 -16.5, 32.5 -16.5))" +"POLYGON ((33 -16.5, 33 -17, 32.5 -17, 32.5 -16.5, 33 -16.5))" +"POLYGON ((33.5 -16.5, 33.5 -17, 33 -17, 33 -16.5, 33.5 -16.5))" +"POLYGON ((34 -16.5, 34 -17, 33.5 -17, 33.5 -16.5, 34 -16.5))" +"POLYGON ((34.5 -16.5, 34.5 -17, 34 -17, 34 -16.5, 34.5 -16.5))" +"POLYGON ((35 -16.5, 35 -17, 34.5 -17, 34.5 -16.5, 35 -16.5))" +"POLYGON ((35.5 -16.5, 35.5 -17, 35 -17, 35 -16.5, 35.5 -16.5))" +"POLYGON ((36 -16.5, 36 -17, 35.5 -17, 35.5 -16.5, 36 -16.5))" +"POLYGON ((36.5 -16.5, 36.5 -17, 36 -17, 36 -16.5, 36.5 -16.5))" +"POLYGON ((37 -16.5, 37 -17, 36.5 -17, 36.5 -16.5, 37 -16.5))" +"POLYGON ((37.5 -16.5, 37.5 -17, 37 -17, 37 -16.5, 37.5 -16.5))" +"POLYGON ((38 -16.5, 38 -17, 37.5 -17, 37.5 -16.5, 38 -16.5))" +"POLYGON ((38.5 -16.5, 38.5 -17, 38 -17, 38 -16.5, 38.5 -16.5))" +"POLYGON ((39 -16.5, 39 -17, 38.5 -17, 38.5 -16.5, 39 -16.5))" +"POLYGON ((39.5 -16.5, 39.5 -17, 39 -17, 39 -16.5, 39.5 -16.5))" +"POLYGON ((45 -16.5, 45 -17, 44.5 -17, 44.5 -16.5, 45 -16.5))" +"POLYGON ((45.5 -16.5, 45.5 -17, 45 -17, 45 -16.5, 45.5 -16.5))" +"POLYGON ((46 -16.5, 46 -17, 45.5 -17, 45.5 -16.5, 46 -16.5))" +"POLYGON ((46.5 -16.5, 46.5 -17, 46 -17, 46 -16.5, 46.5 -16.5))" +"POLYGON ((47 -16.5, 47 -17, 46.5 -17, 46.5 -16.5, 47 -16.5))" +"POLYGON ((47.5 -16.5, 47.5 -17, 47 -17, 47 -16.5, 47.5 -16.5))" +"POLYGON ((48 -16.5, 48 -17, 47.5 -17, 47.5 -16.5, 48 -16.5))" +"POLYGON ((48.5 -16.5, 48.5 -17, 48 -17, 48 -16.5, 48.5 -16.5))" +"POLYGON ((49 -16.5, 49 -17, 48.5 -17, 48.5 -16.5, 49 -16.5))" +"POLYGON ((49.5 -16.5, 49.5 -17, 49 -17, 49 -16.5, 49.5 -16.5))" +"POLYGON ((50 -16.5, 50 -17, 49.5 -17, 49.5 -16.5, 50 -16.5))" +"POLYGON ((12 -16, 12 -16.5, 11.5 -16.5, 11.5 -16, 12 -16))" +"POLYGON ((12.5 -16, 12.5 -16.5, 12 -16.5, 12 -16, 12.5 -16))" +"POLYGON ((13 -16, 13 -16.5, 12.5 -16.5, 12.5 -16, 13 -16))" +"POLYGON ((13.5 -16, 13.5 -16.5, 13 -16.5, 13 -16, 13.5 -16))" +"POLYGON ((14 -16, 14 -16.5, 13.5 -16.5, 13.5 -16, 14 -16))" +"POLYGON ((14.5 -16, 14.5 -16.5, 14 -16.5, 14 -16, 14.5 -16))" +"POLYGON ((15 -16, 15 -16.5, 14.5 -16.5, 14.5 -16, 15 -16))" +"POLYGON ((15.5 -16, 15.5 -16.5, 15 -16.5, 15 -16, 15.5 -16))" +"POLYGON ((16 -16, 16 -16.5, 15.5 -16.5, 15.5 -16, 16 -16))" +"POLYGON ((16.5 -16, 16.5 -16.5, 16 -16.5, 16 -16, 16.5 -16))" +"POLYGON ((17 -16, 17 -16.5, 16.5 -16.5, 16.5 -16, 17 -16))" +"POLYGON ((17.5 -16, 17.5 -16.5, 17 -16.5, 17 -16, 17.5 -16))" +"POLYGON ((18 -16, 18 -16.5, 17.5 -16.5, 17.5 -16, 18 -16))" +"POLYGON ((18.5 -16, 18.5 -16.5, 18 -16.5, 18 -16, 18.5 -16))" +"POLYGON ((19 -16, 19 -16.5, 18.5 -16.5, 18.5 -16, 19 -16))" +"POLYGON ((19.5 -16, 19.5 -16.5, 19 -16.5, 19 -16, 19.5 -16))" +"POLYGON ((20 -16, 20 -16.5, 19.5 -16.5, 19.5 -16, 20 -16))" +"POLYGON ((20.5 -16, 20.5 -16.5, 20 -16.5, 20 -16, 20.5 -16))" +"POLYGON ((21 -16, 21 -16.5, 20.5 -16.5, 20.5 -16, 21 -16))" +"POLYGON ((21.5 -16, 21.5 -16.5, 21 -16.5, 21 -16, 21.5 -16))" +"POLYGON ((22 -16, 22 -16.5, 21.5 -16.5, 21.5 -16, 22 -16))" +"POLYGON ((22.5 -16, 22.5 -16.5, 22 -16.5, 22 -16, 22.5 -16))" +"POLYGON ((23 -16, 23 -16.5, 22.5 -16.5, 22.5 -16, 23 -16))" +"POLYGON ((23.5 -16, 23.5 -16.5, 23 -16.5, 23 -16, 23.5 -16))" +"POLYGON ((24 -16, 24 -16.5, 23.5 -16.5, 23.5 -16, 24 -16))" +"POLYGON ((24.5 -16, 24.5 -16.5, 24 -16.5, 24 -16, 24.5 -16))" +"POLYGON ((25 -16, 25 -16.5, 24.5 -16.5, 24.5 -16, 25 -16))" +"POLYGON ((25.5 -16, 25.5 -16.5, 25 -16.5, 25 -16, 25.5 -16))" +"POLYGON ((26 -16, 26 -16.5, 25.5 -16.5, 25.5 -16, 26 -16))" +"POLYGON ((26.5 -16, 26.5 -16.5, 26 -16.5, 26 -16, 26.5 -16))" +"POLYGON ((27 -16, 27 -16.5, 26.5 -16.5, 26.5 -16, 27 -16))" +"POLYGON ((27.5 -16, 27.5 -16.5, 27 -16.5, 27 -16, 27.5 -16))" +"POLYGON ((28 -16, 28 -16.5, 27.5 -16.5, 27.5 -16, 28 -16))" +"POLYGON ((28.5 -16, 28.5 -16.5, 28 -16.5, 28 -16, 28.5 -16))" +"POLYGON ((29 -16, 29 -16.5, 28.5 -16.5, 28.5 -16, 29 -16))" +"POLYGON ((29.5 -16, 29.5 -16.5, 29 -16.5, 29 -16, 29.5 -16))" +"POLYGON ((30 -16, 30 -16.5, 29.5 -16.5, 29.5 -16, 30 -16))" +"POLYGON ((30.5 -16, 30.5 -16.5, 30 -16.5, 30 -16, 30.5 -16))" +"POLYGON ((31 -16, 31 -16.5, 30.5 -16.5, 30.5 -16, 31 -16))" +"POLYGON ((31.5 -16, 31.5 -16.5, 31 -16.5, 31 -16, 31.5 -16))" +"POLYGON ((32 -16, 32 -16.5, 31.5 -16.5, 31.5 -16, 32 -16))" +"POLYGON ((32.5 -16, 32.5 -16.5, 32 -16.5, 32 -16, 32.5 -16))" +"POLYGON ((33 -16, 33 -16.5, 32.5 -16.5, 32.5 -16, 33 -16))" +"POLYGON ((33.5 -16, 33.5 -16.5, 33 -16.5, 33 -16, 33.5 -16))" +"POLYGON ((34 -16, 34 -16.5, 33.5 -16.5, 33.5 -16, 34 -16))" +"POLYGON ((34.5 -16, 34.5 -16.5, 34 -16.5, 34 -16, 34.5 -16))" +"POLYGON ((35 -16, 35 -16.5, 34.5 -16.5, 34.5 -16, 35 -16))" +"POLYGON ((35.5 -16, 35.5 -16.5, 35 -16.5, 35 -16, 35.5 -16))" +"POLYGON ((36 -16, 36 -16.5, 35.5 -16.5, 35.5 -16, 36 -16))" +"POLYGON ((36.5 -16, 36.5 -16.5, 36 -16.5, 36 -16, 36.5 -16))" +"POLYGON ((37 -16, 37 -16.5, 36.5 -16.5, 36.5 -16, 37 -16))" +"POLYGON ((37.5 -16, 37.5 -16.5, 37 -16.5, 37 -16, 37.5 -16))" +"POLYGON ((38 -16, 38 -16.5, 37.5 -16.5, 37.5 -16, 38 -16))" +"POLYGON ((38.5 -16, 38.5 -16.5, 38 -16.5, 38 -16, 38.5 -16))" +"POLYGON ((39 -16, 39 -16.5, 38.5 -16.5, 38.5 -16, 39 -16))" +"POLYGON ((39.5 -16, 39.5 -16.5, 39 -16.5, 39 -16, 39.5 -16))" +"POLYGON ((40 -16, 40 -16.5, 39.5 -16.5, 39.5 -16, 40 -16))" +"POLYGON ((45 -16, 45 -16.5, 44.5 -16.5, 44.5 -16, 45 -16))" +"POLYGON ((45.5 -16, 45.5 -16.5, 45 -16.5, 45 -16, 45.5 -16))" +"POLYGON ((46 -16, 46 -16.5, 45.5 -16.5, 45.5 -16, 46 -16))" +"POLYGON ((46.5 -16, 46.5 -16.5, 46 -16.5, 46 -16, 46.5 -16))" +"POLYGON ((47 -16, 47 -16.5, 46.5 -16.5, 46.5 -16, 47 -16))" +"POLYGON ((47.5 -16, 47.5 -16.5, 47 -16.5, 47 -16, 47.5 -16))" +"POLYGON ((48 -16, 48 -16.5, 47.5 -16.5, 47.5 -16, 48 -16))" +"POLYGON ((48.5 -16, 48.5 -16.5, 48 -16.5, 48 -16, 48.5 -16))" +"POLYGON ((49 -16, 49 -16.5, 48.5 -16.5, 48.5 -16, 49 -16))" +"POLYGON ((49.5 -16, 49.5 -16.5, 49 -16.5, 49 -16, 49.5 -16))" +"POLYGON ((50 -16, 50 -16.5, 49.5 -16.5, 49.5 -16, 50 -16))" +"POLYGON ((12.5 -15.5, 12.5 -16, 12 -16, 12 -15.5, 12.5 -15.5))" +"POLYGON ((13 -15.5, 13 -16, 12.5 -16, 12.5 -15.5, 13 -15.5))" +"POLYGON ((13.5 -15.5, 13.5 -16, 13 -16, 13 -15.5, 13.5 -15.5))" +"POLYGON ((14 -15.5, 14 -16, 13.5 -16, 13.5 -15.5, 14 -15.5))" +"POLYGON ((14.5 -15.5, 14.5 -16, 14 -16, 14 -15.5, 14.5 -15.5))" +"POLYGON ((15 -15.5, 15 -16, 14.5 -16, 14.5 -15.5, 15 -15.5))" +"POLYGON ((15.5 -15.5, 15.5 -16, 15 -16, 15 -15.5, 15.5 -15.5))" +"POLYGON ((16 -15.5, 16 -16, 15.5 -16, 15.5 -15.5, 16 -15.5))" +"POLYGON ((16.5 -15.5, 16.5 -16, 16 -16, 16 -15.5, 16.5 -15.5))" +"POLYGON ((17 -15.5, 17 -16, 16.5 -16, 16.5 -15.5, 17 -15.5))" +"POLYGON ((17.5 -15.5, 17.5 -16, 17 -16, 17 -15.5, 17.5 -15.5))" +"POLYGON ((18 -15.5, 18 -16, 17.5 -16, 17.5 -15.5, 18 -15.5))" +"POLYGON ((18.5 -15.5, 18.5 -16, 18 -16, 18 -15.5, 18.5 -15.5))" +"POLYGON ((19 -15.5, 19 -16, 18.5 -16, 18.5 -15.5, 19 -15.5))" +"POLYGON ((19.5 -15.5, 19.5 -16, 19 -16, 19 -15.5, 19.5 -15.5))" +"POLYGON ((20 -15.5, 20 -16, 19.5 -16, 19.5 -15.5, 20 -15.5))" +"POLYGON ((20.5 -15.5, 20.5 -16, 20 -16, 20 -15.5, 20.5 -15.5))" +"POLYGON ((21 -15.5, 21 -16, 20.5 -16, 20.5 -15.5, 21 -15.5))" +"POLYGON ((21.5 -15.5, 21.5 -16, 21 -16, 21 -15.5, 21.5 -15.5))" +"POLYGON ((22 -15.5, 22 -16, 21.5 -16, 21.5 -15.5, 22 -15.5))" +"POLYGON ((22.5 -15.5, 22.5 -16, 22 -16, 22 -15.5, 22.5 -15.5))" +"POLYGON ((23 -15.5, 23 -16, 22.5 -16, 22.5 -15.5, 23 -15.5))" +"POLYGON ((23.5 -15.5, 23.5 -16, 23 -16, 23 -15.5, 23.5 -15.5))" +"POLYGON ((24 -15.5, 24 -16, 23.5 -16, 23.5 -15.5, 24 -15.5))" +"POLYGON ((24.5 -15.5, 24.5 -16, 24 -16, 24 -15.5, 24.5 -15.5))" +"POLYGON ((25 -15.5, 25 -16, 24.5 -16, 24.5 -15.5, 25 -15.5))" +"POLYGON ((25.5 -15.5, 25.5 -16, 25 -16, 25 -15.5, 25.5 -15.5))" +"POLYGON ((26 -15.5, 26 -16, 25.5 -16, 25.5 -15.5, 26 -15.5))" +"POLYGON ((26.5 -15.5, 26.5 -16, 26 -16, 26 -15.5, 26.5 -15.5))" +"POLYGON ((27 -15.5, 27 -16, 26.5 -16, 26.5 -15.5, 27 -15.5))" +"POLYGON ((27.5 -15.5, 27.5 -16, 27 -16, 27 -15.5, 27.5 -15.5))" +"POLYGON ((28 -15.5, 28 -16, 27.5 -16, 27.5 -15.5, 28 -15.5))" +"POLYGON ((28.5 -15.5, 28.5 -16, 28 -16, 28 -15.5, 28.5 -15.5))" +"POLYGON ((29 -15.5, 29 -16, 28.5 -16, 28.5 -15.5, 29 -15.5))" +"POLYGON ((29.5 -15.5, 29.5 -16, 29 -16, 29 -15.5, 29.5 -15.5))" +"POLYGON ((30 -15.5, 30 -16, 29.5 -16, 29.5 -15.5, 30 -15.5))" +"POLYGON ((30.5 -15.5, 30.5 -16, 30 -16, 30 -15.5, 30.5 -15.5))" +"POLYGON ((31 -15.5, 31 -16, 30.5 -16, 30.5 -15.5, 31 -15.5))" +"POLYGON ((31.5 -15.5, 31.5 -16, 31 -16, 31 -15.5, 31.5 -15.5))" +"POLYGON ((32 -15.5, 32 -16, 31.5 -16, 31.5 -15.5, 32 -15.5))" +"POLYGON ((32.5 -15.5, 32.5 -16, 32 -16, 32 -15.5, 32.5 -15.5))" +"POLYGON ((33 -15.5, 33 -16, 32.5 -16, 32.5 -15.5, 33 -15.5))" +"POLYGON ((33.5 -15.5, 33.5 -16, 33 -16, 33 -15.5, 33.5 -15.5))" +"POLYGON ((34 -15.5, 34 -16, 33.5 -16, 33.5 -15.5, 34 -15.5))" +"POLYGON ((34.5 -15.5, 34.5 -16, 34 -16, 34 -15.5, 34.5 -15.5))" +"POLYGON ((35 -15.5, 35 -16, 34.5 -16, 34.5 -15.5, 35 -15.5))" +"POLYGON ((35.5 -15.5, 35.5 -16, 35 -16, 35 -15.5, 35.5 -15.5))" +"POLYGON ((36 -15.5, 36 -16, 35.5 -16, 35.5 -15.5, 36 -15.5))" +"POLYGON ((36.5 -15.5, 36.5 -16, 36 -16, 36 -15.5, 36.5 -15.5))" +"POLYGON ((37 -15.5, 37 -16, 36.5 -16, 36.5 -15.5, 37 -15.5))" +"POLYGON ((37.5 -15.5, 37.5 -16, 37 -16, 37 -15.5, 37.5 -15.5))" +"POLYGON ((38 -15.5, 38 -16, 37.5 -16, 37.5 -15.5, 38 -15.5))" +"POLYGON ((38.5 -15.5, 38.5 -16, 38 -16, 38 -15.5, 38.5 -15.5))" +"POLYGON ((39 -15.5, 39 -16, 38.5 -16, 38.5 -15.5, 39 -15.5))" +"POLYGON ((39.5 -15.5, 39.5 -16, 39 -16, 39 -15.5, 39.5 -15.5))" +"POLYGON ((40 -15.5, 40 -16, 39.5 -16, 39.5 -15.5, 40 -15.5))" +"POLYGON ((40.5 -15.5, 40.5 -16, 40 -16, 40 -15.5, 40.5 -15.5))" +"POLYGON ((47 -15.5, 47 -16, 46.5 -16, 46.5 -15.5, 47 -15.5))" +"POLYGON ((47.5 -15.5, 47.5 -16, 47 -16, 47 -15.5, 47.5 -15.5))" +"POLYGON ((48 -15.5, 48 -16, 47.5 -16, 47.5 -15.5, 48 -15.5))" +"POLYGON ((48.5 -15.5, 48.5 -16, 48 -16, 48 -15.5, 48.5 -15.5))" +"POLYGON ((49 -15.5, 49 -16, 48.5 -16, 48.5 -15.5, 49 -15.5))" +"POLYGON ((49.5 -15.5, 49.5 -16, 49 -16, 49 -15.5, 49.5 -15.5))" +"POLYGON ((50.5 -15.5, 50.5 -16, 50 -16, 50 -15.5, 50.5 -15.5))" +"POLYGON ((12.5 -15, 12.5 -15.5, 12 -15.5, 12 -15, 12.5 -15))" +"POLYGON ((13 -15, 13 -15.5, 12.5 -15.5, 12.5 -15, 13 -15))" +"POLYGON ((13.5 -15, 13.5 -15.5, 13 -15.5, 13 -15, 13.5 -15))" +"POLYGON ((14 -15, 14 -15.5, 13.5 -15.5, 13.5 -15, 14 -15))" +"POLYGON ((14.5 -15, 14.5 -15.5, 14 -15.5, 14 -15, 14.5 -15))" +"POLYGON ((15 -15, 15 -15.5, 14.5 -15.5, 14.5 -15, 15 -15))" +"POLYGON ((15.5 -15, 15.5 -15.5, 15 -15.5, 15 -15, 15.5 -15))" +"POLYGON ((16 -15, 16 -15.5, 15.5 -15.5, 15.5 -15, 16 -15))" +"POLYGON ((16.5 -15, 16.5 -15.5, 16 -15.5, 16 -15, 16.5 -15))" +"POLYGON ((17 -15, 17 -15.5, 16.5 -15.5, 16.5 -15, 17 -15))" +"POLYGON ((17.5 -15, 17.5 -15.5, 17 -15.5, 17 -15, 17.5 -15))" +"POLYGON ((18 -15, 18 -15.5, 17.5 -15.5, 17.5 -15, 18 -15))" +"POLYGON ((18.5 -15, 18.5 -15.5, 18 -15.5, 18 -15, 18.5 -15))" +"POLYGON ((19 -15, 19 -15.5, 18.5 -15.5, 18.5 -15, 19 -15))" +"POLYGON ((19.5 -15, 19.5 -15.5, 19 -15.5, 19 -15, 19.5 -15))" +"POLYGON ((20 -15, 20 -15.5, 19.5 -15.5, 19.5 -15, 20 -15))" +"POLYGON ((20.5 -15, 20.5 -15.5, 20 -15.5, 20 -15, 20.5 -15))" +"POLYGON ((21 -15, 21 -15.5, 20.5 -15.5, 20.5 -15, 21 -15))" +"POLYGON ((21.5 -15, 21.5 -15.5, 21 -15.5, 21 -15, 21.5 -15))" +"POLYGON ((22 -15, 22 -15.5, 21.5 -15.5, 21.5 -15, 22 -15))" +"POLYGON ((22.5 -15, 22.5 -15.5, 22 -15.5, 22 -15, 22.5 -15))" +"POLYGON ((23 -15, 23 -15.5, 22.5 -15.5, 22.5 -15, 23 -15))" +"POLYGON ((23.5 -15, 23.5 -15.5, 23 -15.5, 23 -15, 23.5 -15))" +"POLYGON ((24 -15, 24 -15.5, 23.5 -15.5, 23.5 -15, 24 -15))" +"POLYGON ((24.5 -15, 24.5 -15.5, 24 -15.5, 24 -15, 24.5 -15))" +"POLYGON ((25 -15, 25 -15.5, 24.5 -15.5, 24.5 -15, 25 -15))" +"POLYGON ((25.5 -15, 25.5 -15.5, 25 -15.5, 25 -15, 25.5 -15))" +"POLYGON ((26 -15, 26 -15.5, 25.5 -15.5, 25.5 -15, 26 -15))" +"POLYGON ((26.5 -15, 26.5 -15.5, 26 -15.5, 26 -15, 26.5 -15))" +"POLYGON ((27 -15, 27 -15.5, 26.5 -15.5, 26.5 -15, 27 -15))" +"POLYGON ((27.5 -15, 27.5 -15.5, 27 -15.5, 27 -15, 27.5 -15))" +"POLYGON ((28 -15, 28 -15.5, 27.5 -15.5, 27.5 -15, 28 -15))" +"POLYGON ((28.5 -15, 28.5 -15.5, 28 -15.5, 28 -15, 28.5 -15))" +"POLYGON ((29 -15, 29 -15.5, 28.5 -15.5, 28.5 -15, 29 -15))" +"POLYGON ((29.5 -15, 29.5 -15.5, 29 -15.5, 29 -15, 29.5 -15))" +"POLYGON ((30 -15, 30 -15.5, 29.5 -15.5, 29.5 -15, 30 -15))" +"POLYGON ((30.5 -15, 30.5 -15.5, 30 -15.5, 30 -15, 30.5 -15))" +"POLYGON ((31 -15, 31 -15.5, 30.5 -15.5, 30.5 -15, 31 -15))" +"POLYGON ((31.5 -15, 31.5 -15.5, 31 -15.5, 31 -15, 31.5 -15))" +"POLYGON ((32 -15, 32 -15.5, 31.5 -15.5, 31.5 -15, 32 -15))" +"POLYGON ((32.5 -15, 32.5 -15.5, 32 -15.5, 32 -15, 32.5 -15))" +"POLYGON ((33 -15, 33 -15.5, 32.5 -15.5, 32.5 -15, 33 -15))" +"POLYGON ((33.5 -15, 33.5 -15.5, 33 -15.5, 33 -15, 33.5 -15))" +"POLYGON ((34 -15, 34 -15.5, 33.5 -15.5, 33.5 -15, 34 -15))" +"POLYGON ((34.5 -15, 34.5 -15.5, 34 -15.5, 34 -15, 34.5 -15))" +"POLYGON ((35 -15, 35 -15.5, 34.5 -15.5, 34.5 -15, 35 -15))" +"POLYGON ((35.5 -15, 35.5 -15.5, 35 -15.5, 35 -15, 35.5 -15))" +"POLYGON ((36 -15, 36 -15.5, 35.5 -15.5, 35.5 -15, 36 -15))" +"POLYGON ((36.5 -15, 36.5 -15.5, 36 -15.5, 36 -15, 36.5 -15))" +"POLYGON ((37 -15, 37 -15.5, 36.5 -15.5, 36.5 -15, 37 -15))" +"POLYGON ((37.5 -15, 37.5 -15.5, 37 -15.5, 37 -15, 37.5 -15))" +"POLYGON ((38 -15, 38 -15.5, 37.5 -15.5, 37.5 -15, 38 -15))" +"POLYGON ((38.5 -15, 38.5 -15.5, 38 -15.5, 38 -15, 38.5 -15))" +"POLYGON ((39 -15, 39 -15.5, 38.5 -15.5, 38.5 -15, 39 -15))" +"POLYGON ((39.5 -15, 39.5 -15.5, 39 -15.5, 39 -15, 39.5 -15))" +"POLYGON ((40 -15, 40 -15.5, 39.5 -15.5, 39.5 -15, 40 -15))" +"POLYGON ((40.5 -15, 40.5 -15.5, 40 -15.5, 40 -15, 40.5 -15))" +"POLYGON ((47.5 -15, 47.5 -15.5, 47 -15.5, 47 -15, 47.5 -15))" +"POLYGON ((48 -15, 48 -15.5, 47.5 -15.5, 47.5 -15, 48 -15))" +"POLYGON ((48.5 -15, 48.5 -15.5, 48 -15.5, 48 -15, 48.5 -15))" +"POLYGON ((49 -15, 49 -15.5, 48.5 -15.5, 48.5 -15, 49 -15))" +"POLYGON ((49.5 -15, 49.5 -15.5, 49 -15.5, 49 -15, 49.5 -15))" +"POLYGON ((50 -15, 50 -15.5, 49.5 -15.5, 49.5 -15, 50 -15))" +"POLYGON ((50.5 -15, 50.5 -15.5, 50 -15.5, 50 -15, 50.5 -15))" +"POLYGON ((12.5 -14.5, 12.5 -15, 12 -15, 12 -14.5, 12.5 -14.5))" +"POLYGON ((13 -14.5, 13 -15, 12.5 -15, 12.5 -14.5, 13 -14.5))" +"POLYGON ((13.5 -14.5, 13.5 -15, 13 -15, 13 -14.5, 13.5 -14.5))" +"POLYGON ((14 -14.5, 14 -15, 13.5 -15, 13.5 -14.5, 14 -14.5))" +"POLYGON ((14.5 -14.5, 14.5 -15, 14 -15, 14 -14.5, 14.5 -14.5))" +"POLYGON ((15 -14.5, 15 -15, 14.5 -15, 14.5 -14.5, 15 -14.5))" +"POLYGON ((15.5 -14.5, 15.5 -15, 15 -15, 15 -14.5, 15.5 -14.5))" +"POLYGON ((16 -14.5, 16 -15, 15.5 -15, 15.5 -14.5, 16 -14.5))" +"POLYGON ((16.5 -14.5, 16.5 -15, 16 -15, 16 -14.5, 16.5 -14.5))" +"POLYGON ((17 -14.5, 17 -15, 16.5 -15, 16.5 -14.5, 17 -14.5))" +"POLYGON ((17.5 -14.5, 17.5 -15, 17 -15, 17 -14.5, 17.5 -14.5))" +"POLYGON ((18 -14.5, 18 -15, 17.5 -15, 17.5 -14.5, 18 -14.5))" +"POLYGON ((18.5 -14.5, 18.5 -15, 18 -15, 18 -14.5, 18.5 -14.5))" +"POLYGON ((19 -14.5, 19 -15, 18.5 -15, 18.5 -14.5, 19 -14.5))" +"POLYGON ((19.5 -14.5, 19.5 -15, 19 -15, 19 -14.5, 19.5 -14.5))" +"POLYGON ((20 -14.5, 20 -15, 19.5 -15, 19.5 -14.5, 20 -14.5))" +"POLYGON ((20.5 -14.5, 20.5 -15, 20 -15, 20 -14.5, 20.5 -14.5))" +"POLYGON ((21 -14.5, 21 -15, 20.5 -15, 20.5 -14.5, 21 -14.5))" +"POLYGON ((21.5 -14.5, 21.5 -15, 21 -15, 21 -14.5, 21.5 -14.5))" +"POLYGON ((22 -14.5, 22 -15, 21.5 -15, 21.5 -14.5, 22 -14.5))" +"POLYGON ((22.5 -14.5, 22.5 -15, 22 -15, 22 -14.5, 22.5 -14.5))" +"POLYGON ((23 -14.5, 23 -15, 22.5 -15, 22.5 -14.5, 23 -14.5))" +"POLYGON ((23.5 -14.5, 23.5 -15, 23 -15, 23 -14.5, 23.5 -14.5))" +"POLYGON ((24 -14.5, 24 -15, 23.5 -15, 23.5 -14.5, 24 -14.5))" +"POLYGON ((24.5 -14.5, 24.5 -15, 24 -15, 24 -14.5, 24.5 -14.5))" +"POLYGON ((25 -14.5, 25 -15, 24.5 -15, 24.5 -14.5, 25 -14.5))" +"POLYGON ((25.5 -14.5, 25.5 -15, 25 -15, 25 -14.5, 25.5 -14.5))" +"POLYGON ((26 -14.5, 26 -15, 25.5 -15, 25.5 -14.5, 26 -14.5))" +"POLYGON ((26.5 -14.5, 26.5 -15, 26 -15, 26 -14.5, 26.5 -14.5))" +"POLYGON ((27 -14.5, 27 -15, 26.5 -15, 26.5 -14.5, 27 -14.5))" +"POLYGON ((27.5 -14.5, 27.5 -15, 27 -15, 27 -14.5, 27.5 -14.5))" +"POLYGON ((28 -14.5, 28 -15, 27.5 -15, 27.5 -14.5, 28 -14.5))" +"POLYGON ((28.5 -14.5, 28.5 -15, 28 -15, 28 -14.5, 28.5 -14.5))" +"POLYGON ((29 -14.5, 29 -15, 28.5 -15, 28.5 -14.5, 29 -14.5))" +"POLYGON ((29.5 -14.5, 29.5 -15, 29 -15, 29 -14.5, 29.5 -14.5))" +"POLYGON ((30 -14.5, 30 -15, 29.5 -15, 29.5 -14.5, 30 -14.5))" +"POLYGON ((30.5 -14.5, 30.5 -15, 30 -15, 30 -14.5, 30.5 -14.5))" +"POLYGON ((31 -14.5, 31 -15, 30.5 -15, 30.5 -14.5, 31 -14.5))" +"POLYGON ((31.5 -14.5, 31.5 -15, 31 -15, 31 -14.5, 31.5 -14.5))" +"POLYGON ((32 -14.5, 32 -15, 31.5 -15, 31.5 -14.5, 32 -14.5))" +"POLYGON ((32.5 -14.5, 32.5 -15, 32 -15, 32 -14.5, 32.5 -14.5))" +"POLYGON ((33 -14.5, 33 -15, 32.5 -15, 32.5 -14.5, 33 -14.5))" +"POLYGON ((33.5 -14.5, 33.5 -15, 33 -15, 33 -14.5, 33.5 -14.5))" +"POLYGON ((34 -14.5, 34 -15, 33.5 -15, 33.5 -14.5, 34 -14.5))" +"POLYGON ((34.5 -14.5, 34.5 -15, 34 -15, 34 -14.5, 34.5 -14.5))" +"POLYGON ((35 -14.5, 35 -15, 34.5 -15, 34.5 -14.5, 35 -14.5))" +"POLYGON ((35.5 -14.5, 35.5 -15, 35 -15, 35 -14.5, 35.5 -14.5))" +"POLYGON ((36 -14.5, 36 -15, 35.5 -15, 35.5 -14.5, 36 -14.5))" +"POLYGON ((36.5 -14.5, 36.5 -15, 36 -15, 36 -14.5, 36.5 -14.5))" +"POLYGON ((37 -14.5, 37 -15, 36.5 -15, 36.5 -14.5, 37 -14.5))" +"POLYGON ((37.5 -14.5, 37.5 -15, 37 -15, 37 -14.5, 37.5 -14.5))" +"POLYGON ((38 -14.5, 38 -15, 37.5 -15, 37.5 -14.5, 38 -14.5))" +"POLYGON ((38.5 -14.5, 38.5 -15, 38 -15, 38 -14.5, 38.5 -14.5))" +"POLYGON ((39 -14.5, 39 -15, 38.5 -15, 38.5 -14.5, 39 -14.5))" +"POLYGON ((39.5 -14.5, 39.5 -15, 39 -15, 39 -14.5, 39.5 -14.5))" +"POLYGON ((40 -14.5, 40 -15, 39.5 -15, 39.5 -14.5, 40 -14.5))" +"POLYGON ((40.5 -14.5, 40.5 -15, 40 -15, 40 -14.5, 40.5 -14.5))" +"POLYGON ((41 -14.5, 41 -15, 40.5 -15, 40.5 -14.5, 41 -14.5))" +"POLYGON ((48 -14.5, 48 -15, 47.5 -15, 47.5 -14.5, 48 -14.5))" +"POLYGON ((48.5 -14.5, 48.5 -15, 48 -15, 48 -14.5, 48.5 -14.5))" +"POLYGON ((49 -14.5, 49 -15, 48.5 -15, 48.5 -14.5, 49 -14.5))" +"POLYGON ((49.5 -14.5, 49.5 -15, 49 -15, 49 -14.5, 49.5 -14.5))" +"POLYGON ((50 -14.5, 50 -15, 49.5 -15, 49.5 -14.5, 50 -14.5))" +"POLYGON ((50.5 -14.5, 50.5 -15, 50 -15, 50 -14.5, 50.5 -14.5))" +"POLYGON ((13 -14, 13 -14.5, 12.5 -14.5, 12.5 -14, 13 -14))" +"POLYGON ((13.5 -14, 13.5 -14.5, 13 -14.5, 13 -14, 13.5 -14))" +"POLYGON ((14 -14, 14 -14.5, 13.5 -14.5, 13.5 -14, 14 -14))" +"POLYGON ((14.5 -14, 14.5 -14.5, 14 -14.5, 14 -14, 14.5 -14))" +"POLYGON ((15 -14, 15 -14.5, 14.5 -14.5, 14.5 -14, 15 -14))" +"POLYGON ((15.5 -14, 15.5 -14.5, 15 -14.5, 15 -14, 15.5 -14))" +"POLYGON ((16 -14, 16 -14.5, 15.5 -14.5, 15.5 -14, 16 -14))" +"POLYGON ((16.5 -14, 16.5 -14.5, 16 -14.5, 16 -14, 16.5 -14))" +"POLYGON ((17 -14, 17 -14.5, 16.5 -14.5, 16.5 -14, 17 -14))" +"POLYGON ((17.5 -14, 17.5 -14.5, 17 -14.5, 17 -14, 17.5 -14))" +"POLYGON ((18 -14, 18 -14.5, 17.5 -14.5, 17.5 -14, 18 -14))" +"POLYGON ((18.5 -14, 18.5 -14.5, 18 -14.5, 18 -14, 18.5 -14))" +"POLYGON ((19 -14, 19 -14.5, 18.5 -14.5, 18.5 -14, 19 -14))" +"POLYGON ((19.5 -14, 19.5 -14.5, 19 -14.5, 19 -14, 19.5 -14))" +"POLYGON ((20 -14, 20 -14.5, 19.5 -14.5, 19.5 -14, 20 -14))" +"POLYGON ((20.5 -14, 20.5 -14.5, 20 -14.5, 20 -14, 20.5 -14))" +"POLYGON ((21 -14, 21 -14.5, 20.5 -14.5, 20.5 -14, 21 -14))" +"POLYGON ((21.5 -14, 21.5 -14.5, 21 -14.5, 21 -14, 21.5 -14))" +"POLYGON ((22 -14, 22 -14.5, 21.5 -14.5, 21.5 -14, 22 -14))" +"POLYGON ((22.5 -14, 22.5 -14.5, 22 -14.5, 22 -14, 22.5 -14))" +"POLYGON ((23 -14, 23 -14.5, 22.5 -14.5, 22.5 -14, 23 -14))" +"POLYGON ((23.5 -14, 23.5 -14.5, 23 -14.5, 23 -14, 23.5 -14))" +"POLYGON ((24 -14, 24 -14.5, 23.5 -14.5, 23.5 -14, 24 -14))" +"POLYGON ((24.5 -14, 24.5 -14.5, 24 -14.5, 24 -14, 24.5 -14))" +"POLYGON ((25 -14, 25 -14.5, 24.5 -14.5, 24.5 -14, 25 -14))" +"POLYGON ((25.5 -14, 25.5 -14.5, 25 -14.5, 25 -14, 25.5 -14))" +"POLYGON ((26 -14, 26 -14.5, 25.5 -14.5, 25.5 -14, 26 -14))" +"POLYGON ((26.5 -14, 26.5 -14.5, 26 -14.5, 26 -14, 26.5 -14))" +"POLYGON ((27 -14, 27 -14.5, 26.5 -14.5, 26.5 -14, 27 -14))" +"POLYGON ((27.5 -14, 27.5 -14.5, 27 -14.5, 27 -14, 27.5 -14))" +"POLYGON ((28 -14, 28 -14.5, 27.5 -14.5, 27.5 -14, 28 -14))" +"POLYGON ((28.5 -14, 28.5 -14.5, 28 -14.5, 28 -14, 28.5 -14))" +"POLYGON ((29 -14, 29 -14.5, 28.5 -14.5, 28.5 -14, 29 -14))" +"POLYGON ((29.5 -14, 29.5 -14.5, 29 -14.5, 29 -14, 29.5 -14))" +"POLYGON ((30 -14, 30 -14.5, 29.5 -14.5, 29.5 -14, 30 -14))" +"POLYGON ((30.5 -14, 30.5 -14.5, 30 -14.5, 30 -14, 30.5 -14))" +"POLYGON ((31 -14, 31 -14.5, 30.5 -14.5, 30.5 -14, 31 -14))" +"POLYGON ((31.5 -14, 31.5 -14.5, 31 -14.5, 31 -14, 31.5 -14))" +"POLYGON ((32 -14, 32 -14.5, 31.5 -14.5, 31.5 -14, 32 -14))" +"POLYGON ((32.5 -14, 32.5 -14.5, 32 -14.5, 32 -14, 32.5 -14))" +"POLYGON ((33 -14, 33 -14.5, 32.5 -14.5, 32.5 -14, 33 -14))" +"POLYGON ((33.5 -14, 33.5 -14.5, 33 -14.5, 33 -14, 33.5 -14))" +"POLYGON ((34 -14, 34 -14.5, 33.5 -14.5, 33.5 -14, 34 -14))" +"POLYGON ((34.5 -14, 34.5 -14.5, 34 -14.5, 34 -14, 34.5 -14))" +"POLYGON ((35 -14, 35 -14.5, 34.5 -14.5, 34.5 -14, 35 -14))" +"POLYGON ((35.5 -14, 35.5 -14.5, 35 -14.5, 35 -14, 35.5 -14))" +"POLYGON ((36 -14, 36 -14.5, 35.5 -14.5, 35.5 -14, 36 -14))" +"POLYGON ((36.5 -14, 36.5 -14.5, 36 -14.5, 36 -14, 36.5 -14))" +"POLYGON ((37 -14, 37 -14.5, 36.5 -14.5, 36.5 -14, 37 -14))" +"POLYGON ((37.5 -14, 37.5 -14.5, 37 -14.5, 37 -14, 37.5 -14))" +"POLYGON ((38 -14, 38 -14.5, 37.5 -14.5, 37.5 -14, 38 -14))" +"POLYGON ((38.5 -14, 38.5 -14.5, 38 -14.5, 38 -14, 38.5 -14))" +"POLYGON ((39 -14, 39 -14.5, 38.5 -14.5, 38.5 -14, 39 -14))" +"POLYGON ((39.5 -14, 39.5 -14.5, 39 -14.5, 39 -14, 39.5 -14))" +"POLYGON ((40 -14, 40 -14.5, 39.5 -14.5, 39.5 -14, 40 -14))" +"POLYGON ((40.5 -14, 40.5 -14.5, 40 -14.5, 40 -14, 40.5 -14))" +"POLYGON ((48.5 -14, 48.5 -14.5, 48 -14.5, 48 -14, 48.5 -14))" +"POLYGON ((49 -14, 49 -14.5, 48.5 -14.5, 48.5 -14, 49 -14))" +"POLYGON ((49.5 -14, 49.5 -14.5, 49 -14.5, 49 -14, 49.5 -14))" +"POLYGON ((50 -14, 50 -14.5, 49.5 -14.5, 49.5 -14, 50 -14))" +"POLYGON ((13 -13.5, 13 -14, 12.5 -14, 12.5 -13.5, 13 -13.5))" +"POLYGON ((13.5 -13.5, 13.5 -14, 13 -14, 13 -13.5, 13.5 -13.5))" +"POLYGON ((14 -13.5, 14 -14, 13.5 -14, 13.5 -13.5, 14 -13.5))" +"POLYGON ((14.5 -13.5, 14.5 -14, 14 -14, 14 -13.5, 14.5 -13.5))" +"POLYGON ((15 -13.5, 15 -14, 14.5 -14, 14.5 -13.5, 15 -13.5))" +"POLYGON ((15.5 -13.5, 15.5 -14, 15 -14, 15 -13.5, 15.5 -13.5))" +"POLYGON ((16 -13.5, 16 -14, 15.5 -14, 15.5 -13.5, 16 -13.5))" +"POLYGON ((16.5 -13.5, 16.5 -14, 16 -14, 16 -13.5, 16.5 -13.5))" +"POLYGON ((17 -13.5, 17 -14, 16.5 -14, 16.5 -13.5, 17 -13.5))" +"POLYGON ((17.5 -13.5, 17.5 -14, 17 -14, 17 -13.5, 17.5 -13.5))" +"POLYGON ((18 -13.5, 18 -14, 17.5 -14, 17.5 -13.5, 18 -13.5))" +"POLYGON ((18.5 -13.5, 18.5 -14, 18 -14, 18 -13.5, 18.5 -13.5))" +"POLYGON ((19 -13.5, 19 -14, 18.5 -14, 18.5 -13.5, 19 -13.5))" +"POLYGON ((19.5 -13.5, 19.5 -14, 19 -14, 19 -13.5, 19.5 -13.5))" +"POLYGON ((20 -13.5, 20 -14, 19.5 -14, 19.5 -13.5, 20 -13.5))" +"POLYGON ((20.5 -13.5, 20.5 -14, 20 -14, 20 -13.5, 20.5 -13.5))" +"POLYGON ((21 -13.5, 21 -14, 20.5 -14, 20.5 -13.5, 21 -13.5))" +"POLYGON ((21.5 -13.5, 21.5 -14, 21 -14, 21 -13.5, 21.5 -13.5))" +"POLYGON ((22 -13.5, 22 -14, 21.5 -14, 21.5 -13.5, 22 -13.5))" +"POLYGON ((22.5 -13.5, 22.5 -14, 22 -14, 22 -13.5, 22.5 -13.5))" +"POLYGON ((23 -13.5, 23 -14, 22.5 -14, 22.5 -13.5, 23 -13.5))" +"POLYGON ((23.5 -13.5, 23.5 -14, 23 -14, 23 -13.5, 23.5 -13.5))" +"POLYGON ((24 -13.5, 24 -14, 23.5 -14, 23.5 -13.5, 24 -13.5))" +"POLYGON ((24.5 -13.5, 24.5 -14, 24 -14, 24 -13.5, 24.5 -13.5))" +"POLYGON ((25 -13.5, 25 -14, 24.5 -14, 24.5 -13.5, 25 -13.5))" +"POLYGON ((25.5 -13.5, 25.5 -14, 25 -14, 25 -13.5, 25.5 -13.5))" +"POLYGON ((26 -13.5, 26 -14, 25.5 -14, 25.5 -13.5, 26 -13.5))" +"POLYGON ((26.5 -13.5, 26.5 -14, 26 -14, 26 -13.5, 26.5 -13.5))" +"POLYGON ((27 -13.5, 27 -14, 26.5 -14, 26.5 -13.5, 27 -13.5))" +"POLYGON ((27.5 -13.5, 27.5 -14, 27 -14, 27 -13.5, 27.5 -13.5))" +"POLYGON ((28 -13.5, 28 -14, 27.5 -14, 27.5 -13.5, 28 -13.5))" +"POLYGON ((28.5 -13.5, 28.5 -14, 28 -14, 28 -13.5, 28.5 -13.5))" +"POLYGON ((29 -13.5, 29 -14, 28.5 -14, 28.5 -13.5, 29 -13.5))" +"POLYGON ((29.5 -13.5, 29.5 -14, 29 -14, 29 -13.5, 29.5 -13.5))" +"POLYGON ((30 -13.5, 30 -14, 29.5 -14, 29.5 -13.5, 30 -13.5))" +"POLYGON ((30.5 -13.5, 30.5 -14, 30 -14, 30 -13.5, 30.5 -13.5))" +"POLYGON ((31 -13.5, 31 -14, 30.5 -14, 30.5 -13.5, 31 -13.5))" +"POLYGON ((31.5 -13.5, 31.5 -14, 31 -14, 31 -13.5, 31.5 -13.5))" +"POLYGON ((32 -13.5, 32 -14, 31.5 -14, 31.5 -13.5, 32 -13.5))" +"POLYGON ((32.5 -13.5, 32.5 -14, 32 -14, 32 -13.5, 32.5 -13.5))" +"POLYGON ((33 -13.5, 33 -14, 32.5 -14, 32.5 -13.5, 33 -13.5))" +"POLYGON ((33.5 -13.5, 33.5 -14, 33 -14, 33 -13.5, 33.5 -13.5))" +"POLYGON ((34 -13.5, 34 -14, 33.5 -14, 33.5 -13.5, 34 -13.5))" +"POLYGON ((34.5 -13.5, 34.5 -14, 34 -14, 34 -13.5, 34.5 -13.5))" +"POLYGON ((35 -13.5, 35 -14, 34.5 -14, 34.5 -13.5, 35 -13.5))" +"POLYGON ((35.5 -13.5, 35.5 -14, 35 -14, 35 -13.5, 35.5 -13.5))" +"POLYGON ((36 -13.5, 36 -14, 35.5 -14, 35.5 -13.5, 36 -13.5))" +"POLYGON ((36.5 -13.5, 36.5 -14, 36 -14, 36 -13.5, 36.5 -13.5))" +"POLYGON ((37 -13.5, 37 -14, 36.5 -14, 36.5 -13.5, 37 -13.5))" +"POLYGON ((37.5 -13.5, 37.5 -14, 37 -14, 37 -13.5, 37.5 -13.5))" +"POLYGON ((38 -13.5, 38 -14, 37.5 -14, 37.5 -13.5, 38 -13.5))" +"POLYGON ((38.5 -13.5, 38.5 -14, 38 -14, 38 -13.5, 38.5 -13.5))" +"POLYGON ((39 -13.5, 39 -14, 38.5 -14, 38.5 -13.5, 39 -13.5))" +"POLYGON ((39.5 -13.5, 39.5 -14, 39 -14, 39 -13.5, 39.5 -13.5))" +"POLYGON ((40 -13.5, 40 -14, 39.5 -14, 39.5 -13.5, 40 -13.5))" +"POLYGON ((40.5 -13.5, 40.5 -14, 40 -14, 40 -13.5, 40.5 -13.5))" +"POLYGON ((49 -13.5, 49 -14, 48.5 -14, 48.5 -13.5, 49 -13.5))" +"POLYGON ((49.5 -13.5, 49.5 -14, 49 -14, 49 -13.5, 49.5 -13.5))" +"POLYGON ((50 -13.5, 50 -14, 49.5 -14, 49.5 -13.5, 50 -13.5))" +"POLYGON ((13 -13, 13 -13.5, 12.5 -13.5, 12.5 -13, 13 -13))" +"POLYGON ((13.5 -13, 13.5 -13.5, 13 -13.5, 13 -13, 13.5 -13))" +"POLYGON ((14 -13, 14 -13.5, 13.5 -13.5, 13.5 -13, 14 -13))" +"POLYGON ((14.5 -13, 14.5 -13.5, 14 -13.5, 14 -13, 14.5 -13))" +"POLYGON ((15 -13, 15 -13.5, 14.5 -13.5, 14.5 -13, 15 -13))" +"POLYGON ((15.5 -13, 15.5 -13.5, 15 -13.5, 15 -13, 15.5 -13))" +"POLYGON ((16 -13, 16 -13.5, 15.5 -13.5, 15.5 -13, 16 -13))" +"POLYGON ((16.5 -13, 16.5 -13.5, 16 -13.5, 16 -13, 16.5 -13))" +"POLYGON ((17 -13, 17 -13.5, 16.5 -13.5, 16.5 -13, 17 -13))" +"POLYGON ((17.5 -13, 17.5 -13.5, 17 -13.5, 17 -13, 17.5 -13))" +"POLYGON ((18 -13, 18 -13.5, 17.5 -13.5, 17.5 -13, 18 -13))" +"POLYGON ((18.5 -13, 18.5 -13.5, 18 -13.5, 18 -13, 18.5 -13))" +"POLYGON ((19 -13, 19 -13.5, 18.5 -13.5, 18.5 -13, 19 -13))" +"POLYGON ((19.5 -13, 19.5 -13.5, 19 -13.5, 19 -13, 19.5 -13))" +"POLYGON ((20 -13, 20 -13.5, 19.5 -13.5, 19.5 -13, 20 -13))" +"POLYGON ((20.5 -13, 20.5 -13.5, 20 -13.5, 20 -13, 20.5 -13))" +"POLYGON ((21 -13, 21 -13.5, 20.5 -13.5, 20.5 -13, 21 -13))" +"POLYGON ((21.5 -13, 21.5 -13.5, 21 -13.5, 21 -13, 21.5 -13))" +"POLYGON ((22 -13, 22 -13.5, 21.5 -13.5, 21.5 -13, 22 -13))" +"POLYGON ((22.5 -13, 22.5 -13.5, 22 -13.5, 22 -13, 22.5 -13))" +"POLYGON ((23 -13, 23 -13.5, 22.5 -13.5, 22.5 -13, 23 -13))" +"POLYGON ((23.5 -13, 23.5 -13.5, 23 -13.5, 23 -13, 23.5 -13))" +"POLYGON ((24 -13, 24 -13.5, 23.5 -13.5, 23.5 -13, 24 -13))" +"POLYGON ((24.5 -13, 24.5 -13.5, 24 -13.5, 24 -13, 24.5 -13))" +"POLYGON ((25 -13, 25 -13.5, 24.5 -13.5, 24.5 -13, 25 -13))" +"POLYGON ((25.5 -13, 25.5 -13.5, 25 -13.5, 25 -13, 25.5 -13))" +"POLYGON ((26 -13, 26 -13.5, 25.5 -13.5, 25.5 -13, 26 -13))" +"POLYGON ((26.5 -13, 26.5 -13.5, 26 -13.5, 26 -13, 26.5 -13))" +"POLYGON ((27 -13, 27 -13.5, 26.5 -13.5, 26.5 -13, 27 -13))" +"POLYGON ((27.5 -13, 27.5 -13.5, 27 -13.5, 27 -13, 27.5 -13))" +"POLYGON ((28 -13, 28 -13.5, 27.5 -13.5, 27.5 -13, 28 -13))" +"POLYGON ((28.5 -13, 28.5 -13.5, 28 -13.5, 28 -13, 28.5 -13))" +"POLYGON ((29 -13, 29 -13.5, 28.5 -13.5, 28.5 -13, 29 -13))" +"POLYGON ((29.5 -13, 29.5 -13.5, 29 -13.5, 29 -13, 29.5 -13))" +"POLYGON ((30 -13, 30 -13.5, 29.5 -13.5, 29.5 -13, 30 -13))" +"POLYGON ((30.5 -13, 30.5 -13.5, 30 -13.5, 30 -13, 30.5 -13))" +"POLYGON ((31 -13, 31 -13.5, 30.5 -13.5, 30.5 -13, 31 -13))" +"POLYGON ((31.5 -13, 31.5 -13.5, 31 -13.5, 31 -13, 31.5 -13))" +"POLYGON ((32 -13, 32 -13.5, 31.5 -13.5, 31.5 -13, 32 -13))" +"POLYGON ((32.5 -13, 32.5 -13.5, 32 -13.5, 32 -13, 32.5 -13))" +"POLYGON ((33 -13, 33 -13.5, 32.5 -13.5, 32.5 -13, 33 -13))" +"POLYGON ((33.5 -13, 33.5 -13.5, 33 -13.5, 33 -13, 33.5 -13))" +"POLYGON ((34 -13, 34 -13.5, 33.5 -13.5, 33.5 -13, 34 -13))" +"POLYGON ((34.5 -13, 34.5 -13.5, 34 -13.5, 34 -13, 34.5 -13))" +"POLYGON ((35 -13, 35 -13.5, 34.5 -13.5, 34.5 -13, 35 -13))" +"POLYGON ((35.5 -13, 35.5 -13.5, 35 -13.5, 35 -13, 35.5 -13))" +"POLYGON ((36 -13, 36 -13.5, 35.5 -13.5, 35.5 -13, 36 -13))" +"POLYGON ((36.5 -13, 36.5 -13.5, 36 -13.5, 36 -13, 36.5 -13))" +"POLYGON ((37 -13, 37 -13.5, 36.5 -13.5, 36.5 -13, 37 -13))" +"POLYGON ((37.5 -13, 37.5 -13.5, 37 -13.5, 37 -13, 37.5 -13))" +"POLYGON ((38 -13, 38 -13.5, 37.5 -13.5, 37.5 -13, 38 -13))" +"POLYGON ((38.5 -13, 38.5 -13.5, 38 -13.5, 38 -13, 38.5 -13))" +"POLYGON ((39 -13, 39 -13.5, 38.5 -13.5, 38.5 -13, 39 -13))" +"POLYGON ((39.5 -13, 39.5 -13.5, 39 -13.5, 39 -13, 39.5 -13))" +"POLYGON ((40 -13, 40 -13.5, 39.5 -13.5, 39.5 -13, 40 -13))" +"POLYGON ((40.5 -13, 40.5 -13.5, 40 -13.5, 40 -13, 40.5 -13))" +"POLYGON ((48.5 -13, 48.5 -13.5, 48 -13.5, 48 -13, 48.5 -13))" +"POLYGON ((49.5 -13, 49.5 -13.5, 49 -13.5, 49 -13, 49.5 -13))" +"POLYGON ((50 -13, 50 -13.5, 49.5 -13.5, 49.5 -13, 50 -13))" +"POLYGON ((13.5 -12.5, 13.5 -13, 13 -13, 13 -12.5, 13.5 -12.5))" +"POLYGON ((14 -12.5, 14 -13, 13.5 -13, 13.5 -12.5, 14 -12.5))" +"POLYGON ((14.5 -12.5, 14.5 -13, 14 -13, 14 -12.5, 14.5 -12.5))" +"POLYGON ((15 -12.5, 15 -13, 14.5 -13, 14.5 -12.5, 15 -12.5))" +"POLYGON ((15.5 -12.5, 15.5 -13, 15 -13, 15 -12.5, 15.5 -12.5))" +"POLYGON ((16 -12.5, 16 -13, 15.5 -13, 15.5 -12.5, 16 -12.5))" +"POLYGON ((16.5 -12.5, 16.5 -13, 16 -13, 16 -12.5, 16.5 -12.5))" +"POLYGON ((17 -12.5, 17 -13, 16.5 -13, 16.5 -12.5, 17 -12.5))" +"POLYGON ((17.5 -12.5, 17.5 -13, 17 -13, 17 -12.5, 17.5 -12.5))" +"POLYGON ((18 -12.5, 18 -13, 17.5 -13, 17.5 -12.5, 18 -12.5))" +"POLYGON ((18.5 -12.5, 18.5 -13, 18 -13, 18 -12.5, 18.5 -12.5))" +"POLYGON ((19 -12.5, 19 -13, 18.5 -13, 18.5 -12.5, 19 -12.5))" +"POLYGON ((19.5 -12.5, 19.5 -13, 19 -13, 19 -12.5, 19.5 -12.5))" +"POLYGON ((20 -12.5, 20 -13, 19.5 -13, 19.5 -12.5, 20 -12.5))" +"POLYGON ((20.5 -12.5, 20.5 -13, 20 -13, 20 -12.5, 20.5 -12.5))" +"POLYGON ((21 -12.5, 21 -13, 20.5 -13, 20.5 -12.5, 21 -12.5))" +"POLYGON ((21.5 -12.5, 21.5 -13, 21 -13, 21 -12.5, 21.5 -12.5))" +"POLYGON ((22 -12.5, 22 -13, 21.5 -13, 21.5 -12.5, 22 -12.5))" +"POLYGON ((22.5 -12.5, 22.5 -13, 22 -13, 22 -12.5, 22.5 -12.5))" +"POLYGON ((23 -12.5, 23 -13, 22.5 -13, 22.5 -12.5, 23 -12.5))" +"POLYGON ((23.5 -12.5, 23.5 -13, 23 -13, 23 -12.5, 23.5 -12.5))" +"POLYGON ((24 -12.5, 24 -13, 23.5 -13, 23.5 -12.5, 24 -12.5))" +"POLYGON ((24.5 -12.5, 24.5 -13, 24 -13, 24 -12.5, 24.5 -12.5))" +"POLYGON ((25 -12.5, 25 -13, 24.5 -13, 24.5 -12.5, 25 -12.5))" +"POLYGON ((25.5 -12.5, 25.5 -13, 25 -13, 25 -12.5, 25.5 -12.5))" +"POLYGON ((26 -12.5, 26 -13, 25.5 -13, 25.5 -12.5, 26 -12.5))" +"POLYGON ((26.5 -12.5, 26.5 -13, 26 -13, 26 -12.5, 26.5 -12.5))" +"POLYGON ((27 -12.5, 27 -13, 26.5 -13, 26.5 -12.5, 27 -12.5))" +"POLYGON ((27.5 -12.5, 27.5 -13, 27 -13, 27 -12.5, 27.5 -12.5))" +"POLYGON ((28 -12.5, 28 -13, 27.5 -13, 27.5 -12.5, 28 -12.5))" +"POLYGON ((28.5 -12.5, 28.5 -13, 28 -13, 28 -12.5, 28.5 -12.5))" +"POLYGON ((29 -12.5, 29 -13, 28.5 -13, 28.5 -12.5, 29 -12.5))" +"POLYGON ((29.5 -12.5, 29.5 -13, 29 -13, 29 -12.5, 29.5 -12.5))" +"POLYGON ((30 -12.5, 30 -13, 29.5 -13, 29.5 -12.5, 30 -12.5))" +"POLYGON ((30.5 -12.5, 30.5 -13, 30 -13, 30 -12.5, 30.5 -12.5))" +"POLYGON ((31 -12.5, 31 -13, 30.5 -13, 30.5 -12.5, 31 -12.5))" +"POLYGON ((31.5 -12.5, 31.5 -13, 31 -13, 31 -12.5, 31.5 -12.5))" +"POLYGON ((32 -12.5, 32 -13, 31.5 -13, 31.5 -12.5, 32 -12.5))" +"POLYGON ((32.5 -12.5, 32.5 -13, 32 -13, 32 -12.5, 32.5 -12.5))" +"POLYGON ((33 -12.5, 33 -13, 32.5 -13, 32.5 -12.5, 33 -12.5))" +"POLYGON ((33.5 -12.5, 33.5 -13, 33 -13, 33 -12.5, 33.5 -12.5))" +"POLYGON ((34 -12.5, 34 -13, 33.5 -13, 33.5 -12.5, 34 -12.5))" +"POLYGON ((34.5 -12.5, 34.5 -13, 34 -13, 34 -12.5, 34.5 -12.5))" +"POLYGON ((35 -12.5, 35 -13, 34.5 -13, 34.5 -12.5, 35 -12.5))" +"POLYGON ((35.5 -12.5, 35.5 -13, 35 -13, 35 -12.5, 35.5 -12.5))" +"POLYGON ((36 -12.5, 36 -13, 35.5 -13, 35.5 -12.5, 36 -12.5))" +"POLYGON ((36.5 -12.5, 36.5 -13, 36 -13, 36 -12.5, 36.5 -12.5))" +"POLYGON ((37 -12.5, 37 -13, 36.5 -13, 36.5 -12.5, 37 -12.5))" +"POLYGON ((37.5 -12.5, 37.5 -13, 37 -13, 37 -12.5, 37.5 -12.5))" +"POLYGON ((38 -12.5, 38 -13, 37.5 -13, 37.5 -12.5, 38 -12.5))" +"POLYGON ((38.5 -12.5, 38.5 -13, 38 -13, 38 -12.5, 38.5 -12.5))" +"POLYGON ((39 -12.5, 39 -13, 38.5 -13, 38.5 -12.5, 39 -12.5))" +"POLYGON ((39.5 -12.5, 39.5 -13, 39 -13, 39 -12.5, 39.5 -12.5))" +"POLYGON ((40 -12.5, 40 -13, 39.5 -13, 39.5 -12.5, 40 -12.5))" +"POLYGON ((40.5 -12.5, 40.5 -13, 40 -13, 40 -12.5, 40.5 -12.5))" +"POLYGON ((49.5 -12.5, 49.5 -13, 49 -13, 49 -12.5, 49.5 -12.5))" +"POLYGON ((14 -12, 14 -12.5, 13.5 -12.5, 13.5 -12, 14 -12))" +"POLYGON ((14.5 -12, 14.5 -12.5, 14 -12.5, 14 -12, 14.5 -12))" +"POLYGON ((15 -12, 15 -12.5, 14.5 -12.5, 14.5 -12, 15 -12))" +"POLYGON ((15.5 -12, 15.5 -12.5, 15 -12.5, 15 -12, 15.5 -12))" +"POLYGON ((16 -12, 16 -12.5, 15.5 -12.5, 15.5 -12, 16 -12))" +"POLYGON ((16.5 -12, 16.5 -12.5, 16 -12.5, 16 -12, 16.5 -12))" +"POLYGON ((17 -12, 17 -12.5, 16.5 -12.5, 16.5 -12, 17 -12))" +"POLYGON ((17.5 -12, 17.5 -12.5, 17 -12.5, 17 -12, 17.5 -12))" +"POLYGON ((18 -12, 18 -12.5, 17.5 -12.5, 17.5 -12, 18 -12))" +"POLYGON ((18.5 -12, 18.5 -12.5, 18 -12.5, 18 -12, 18.5 -12))" +"POLYGON ((19 -12, 19 -12.5, 18.5 -12.5, 18.5 -12, 19 -12))" +"POLYGON ((19.5 -12, 19.5 -12.5, 19 -12.5, 19 -12, 19.5 -12))" +"POLYGON ((20 -12, 20 -12.5, 19.5 -12.5, 19.5 -12, 20 -12))" +"POLYGON ((20.5 -12, 20.5 -12.5, 20 -12.5, 20 -12, 20.5 -12))" +"POLYGON ((21 -12, 21 -12.5, 20.5 -12.5, 20.5 -12, 21 -12))" +"POLYGON ((21.5 -12, 21.5 -12.5, 21 -12.5, 21 -12, 21.5 -12))" +"POLYGON ((22 -12, 22 -12.5, 21.5 -12.5, 21.5 -12, 22 -12))" +"POLYGON ((22.5 -12, 22.5 -12.5, 22 -12.5, 22 -12, 22.5 -12))" +"POLYGON ((23 -12, 23 -12.5, 22.5 -12.5, 22.5 -12, 23 -12))" +"POLYGON ((23.5 -12, 23.5 -12.5, 23 -12.5, 23 -12, 23.5 -12))" +"POLYGON ((24 -12, 24 -12.5, 23.5 -12.5, 23.5 -12, 24 -12))" +"POLYGON ((24.5 -12, 24.5 -12.5, 24 -12.5, 24 -12, 24.5 -12))" +"POLYGON ((25 -12, 25 -12.5, 24.5 -12.5, 24.5 -12, 25 -12))" +"POLYGON ((25.5 -12, 25.5 -12.5, 25 -12.5, 25 -12, 25.5 -12))" +"POLYGON ((26 -12, 26 -12.5, 25.5 -12.5, 25.5 -12, 26 -12))" +"POLYGON ((26.5 -12, 26.5 -12.5, 26 -12.5, 26 -12, 26.5 -12))" +"POLYGON ((27 -12, 27 -12.5, 26.5 -12.5, 26.5 -12, 27 -12))" +"POLYGON ((27.5 -12, 27.5 -12.5, 27 -12.5, 27 -12, 27.5 -12))" +"POLYGON ((28 -12, 28 -12.5, 27.5 -12.5, 27.5 -12, 28 -12))" +"POLYGON ((28.5 -12, 28.5 -12.5, 28 -12.5, 28 -12, 28.5 -12))" +"POLYGON ((29 -12, 29 -12.5, 28.5 -12.5, 28.5 -12, 29 -12))" +"POLYGON ((29.5 -12, 29.5 -12.5, 29 -12.5, 29 -12, 29.5 -12))" +"POLYGON ((30 -12, 30 -12.5, 29.5 -12.5, 29.5 -12, 30 -12))" +"POLYGON ((30.5 -12, 30.5 -12.5, 30 -12.5, 30 -12, 30.5 -12))" +"POLYGON ((31 -12, 31 -12.5, 30.5 -12.5, 30.5 -12, 31 -12))" +"POLYGON ((31.5 -12, 31.5 -12.5, 31 -12.5, 31 -12, 31.5 -12))" +"POLYGON ((32 -12, 32 -12.5, 31.5 -12.5, 31.5 -12, 32 -12))" +"POLYGON ((32.5 -12, 32.5 -12.5, 32 -12.5, 32 -12, 32.5 -12))" +"POLYGON ((33 -12, 33 -12.5, 32.5 -12.5, 32.5 -12, 33 -12))" +"POLYGON ((33.5 -12, 33.5 -12.5, 33 -12.5, 33 -12, 33.5 -12))" +"POLYGON ((34 -12, 34 -12.5, 33.5 -12.5, 33.5 -12, 34 -12))" +"POLYGON ((34.5 -12, 34.5 -12.5, 34 -12.5, 34 -12, 34.5 -12))" +"POLYGON ((35 -12, 35 -12.5, 34.5 -12.5, 34.5 -12, 35 -12))" +"POLYGON ((35.5 -12, 35.5 -12.5, 35 -12.5, 35 -12, 35.5 -12))" +"POLYGON ((36 -12, 36 -12.5, 35.5 -12.5, 35.5 -12, 36 -12))" +"POLYGON ((36.5 -12, 36.5 -12.5, 36 -12.5, 36 -12, 36.5 -12))" +"POLYGON ((37 -12, 37 -12.5, 36.5 -12.5, 36.5 -12, 37 -12))" +"POLYGON ((37.5 -12, 37.5 -12.5, 37 -12.5, 37 -12, 37.5 -12))" +"POLYGON ((38 -12, 38 -12.5, 37.5 -12.5, 37.5 -12, 38 -12))" +"POLYGON ((38.5 -12, 38.5 -12.5, 38 -12.5, 38 -12, 38.5 -12))" +"POLYGON ((39 -12, 39 -12.5, 38.5 -12.5, 38.5 -12, 39 -12))" +"POLYGON ((39.5 -12, 39.5 -12.5, 39 -12.5, 39 -12, 39.5 -12))" +"POLYGON ((40 -12, 40 -12.5, 39.5 -12.5, 39.5 -12, 40 -12))" +"POLYGON ((40.5 -12, 40.5 -12.5, 40 -12.5, 40 -12, 40.5 -12))" +"POLYGON ((49.5 -12, 49.5 -12.5, 49 -12.5, 49 -12, 49.5 -12))" +"POLYGON ((14.5 -11.5, 14.5 -12, 14 -12, 14 -11.5, 14.5 -11.5))" +"POLYGON ((15 -11.5, 15 -12, 14.5 -12, 14.5 -11.5, 15 -11.5))" +"POLYGON ((15.5 -11.5, 15.5 -12, 15 -12, 15 -11.5, 15.5 -11.5))" +"POLYGON ((16 -11.5, 16 -12, 15.5 -12, 15.5 -11.5, 16 -11.5))" +"POLYGON ((16.5 -11.5, 16.5 -12, 16 -12, 16 -11.5, 16.5 -11.5))" +"POLYGON ((17 -11.5, 17 -12, 16.5 -12, 16.5 -11.5, 17 -11.5))" +"POLYGON ((17.5 -11.5, 17.5 -12, 17 -12, 17 -11.5, 17.5 -11.5))" +"POLYGON ((18 -11.5, 18 -12, 17.5 -12, 17.5 -11.5, 18 -11.5))" +"POLYGON ((18.5 -11.5, 18.5 -12, 18 -12, 18 -11.5, 18.5 -11.5))" +"POLYGON ((19 -11.5, 19 -12, 18.5 -12, 18.5 -11.5, 19 -11.5))" +"POLYGON ((19.5 -11.5, 19.5 -12, 19 -12, 19 -11.5, 19.5 -11.5))" +"POLYGON ((20 -11.5, 20 -12, 19.5 -12, 19.5 -11.5, 20 -11.5))" +"POLYGON ((20.5 -11.5, 20.5 -12, 20 -12, 20 -11.5, 20.5 -11.5))" +"POLYGON ((21 -11.5, 21 -12, 20.5 -12, 20.5 -11.5, 21 -11.5))" +"POLYGON ((21.5 -11.5, 21.5 -12, 21 -12, 21 -11.5, 21.5 -11.5))" +"POLYGON ((22 -11.5, 22 -12, 21.5 -12, 21.5 -11.5, 22 -11.5))" +"POLYGON ((22.5 -11.5, 22.5 -12, 22 -12, 22 -11.5, 22.5 -11.5))" +"POLYGON ((23 -11.5, 23 -12, 22.5 -12, 22.5 -11.5, 23 -11.5))" +"POLYGON ((23.5 -11.5, 23.5 -12, 23 -12, 23 -11.5, 23.5 -11.5))" +"POLYGON ((24 -11.5, 24 -12, 23.5 -12, 23.5 -11.5, 24 -11.5))" +"POLYGON ((24.5 -11.5, 24.5 -12, 24 -12, 24 -11.5, 24.5 -11.5))" +"POLYGON ((25 -11.5, 25 -12, 24.5 -12, 24.5 -11.5, 25 -11.5))" +"POLYGON ((25.5 -11.5, 25.5 -12, 25 -12, 25 -11.5, 25.5 -11.5))" +"POLYGON ((26 -11.5, 26 -12, 25.5 -12, 25.5 -11.5, 26 -11.5))" +"POLYGON ((26.5 -11.5, 26.5 -12, 26 -12, 26 -11.5, 26.5 -11.5))" +"POLYGON ((27 -11.5, 27 -12, 26.5 -12, 26.5 -11.5, 27 -11.5))" +"POLYGON ((27.5 -11.5, 27.5 -12, 27 -12, 27 -11.5, 27.5 -11.5))" +"POLYGON ((28 -11.5, 28 -12, 27.5 -12, 27.5 -11.5, 28 -11.5))" +"POLYGON ((28.5 -11.5, 28.5 -12, 28 -12, 28 -11.5, 28.5 -11.5))" +"POLYGON ((29 -11.5, 29 -12, 28.5 -12, 28.5 -11.5, 29 -11.5))" +"POLYGON ((29.5 -11.5, 29.5 -12, 29 -12, 29 -11.5, 29.5 -11.5))" +"POLYGON ((30 -11.5, 30 -12, 29.5 -12, 29.5 -11.5, 30 -11.5))" +"POLYGON ((30.5 -11.5, 30.5 -12, 30 -12, 30 -11.5, 30.5 -11.5))" +"POLYGON ((31 -11.5, 31 -12, 30.5 -12, 30.5 -11.5, 31 -11.5))" +"POLYGON ((31.5 -11.5, 31.5 -12, 31 -12, 31 -11.5, 31.5 -11.5))" +"POLYGON ((32 -11.5, 32 -12, 31.5 -12, 31.5 -11.5, 32 -11.5))" +"POLYGON ((32.5 -11.5, 32.5 -12, 32 -12, 32 -11.5, 32.5 -11.5))" +"POLYGON ((33 -11.5, 33 -12, 32.5 -12, 32.5 -11.5, 33 -11.5))" +"POLYGON ((33.5 -11.5, 33.5 -12, 33 -12, 33 -11.5, 33.5 -11.5))" +"POLYGON ((34 -11.5, 34 -12, 33.5 -12, 33.5 -11.5, 34 -11.5))" +"POLYGON ((34.5 -11.5, 34.5 -12, 34 -12, 34 -11.5, 34.5 -11.5))" +"POLYGON ((35 -11.5, 35 -12, 34.5 -12, 34.5 -11.5, 35 -11.5))" +"POLYGON ((35.5 -11.5, 35.5 -12, 35 -12, 35 -11.5, 35.5 -11.5))" +"POLYGON ((36 -11.5, 36 -12, 35.5 -12, 35.5 -11.5, 36 -11.5))" +"POLYGON ((36.5 -11.5, 36.5 -12, 36 -12, 36 -11.5, 36.5 -11.5))" +"POLYGON ((37 -11.5, 37 -12, 36.5 -12, 36.5 -11.5, 37 -11.5))" +"POLYGON ((37.5 -11.5, 37.5 -12, 37 -12, 37 -11.5, 37.5 -11.5))" +"POLYGON ((38 -11.5, 38 -12, 37.5 -12, 37.5 -11.5, 38 -11.5))" +"POLYGON ((38.5 -11.5, 38.5 -12, 38 -12, 38 -11.5, 38.5 -11.5))" +"POLYGON ((39 -11.5, 39 -12, 38.5 -12, 38.5 -11.5, 39 -11.5))" +"POLYGON ((39.5 -11.5, 39.5 -12, 39 -12, 39 -11.5, 39.5 -11.5))" +"POLYGON ((40 -11.5, 40 -12, 39.5 -12, 39.5 -11.5, 40 -11.5))" +"POLYGON ((40.5 -11.5, 40.5 -12, 40 -12, 40 -11.5, 40.5 -11.5))" +"POLYGON ((43.5 -11.5, 43.5 -12, 43 -12, 43 -11.5, 43.5 -11.5))" +"POLYGON ((14.5 -11, 14.5 -11.5, 14 -11.5, 14 -11, 14.5 -11))" +"POLYGON ((15 -11, 15 -11.5, 14.5 -11.5, 14.5 -11, 15 -11))" +"POLYGON ((15.5 -11, 15.5 -11.5, 15 -11.5, 15 -11, 15.5 -11))" +"POLYGON ((16 -11, 16 -11.5, 15.5 -11.5, 15.5 -11, 16 -11))" +"POLYGON ((16.5 -11, 16.5 -11.5, 16 -11.5, 16 -11, 16.5 -11))" +"POLYGON ((17 -11, 17 -11.5, 16.5 -11.5, 16.5 -11, 17 -11))" +"POLYGON ((17.5 -11, 17.5 -11.5, 17 -11.5, 17 -11, 17.5 -11))" +"POLYGON ((18 -11, 18 -11.5, 17.5 -11.5, 17.5 -11, 18 -11))" +"POLYGON ((18.5 -11, 18.5 -11.5, 18 -11.5, 18 -11, 18.5 -11))" +"POLYGON ((19 -11, 19 -11.5, 18.5 -11.5, 18.5 -11, 19 -11))" +"POLYGON ((19.5 -11, 19.5 -11.5, 19 -11.5, 19 -11, 19.5 -11))" +"POLYGON ((20 -11, 20 -11.5, 19.5 -11.5, 19.5 -11, 20 -11))" +"POLYGON ((20.5 -11, 20.5 -11.5, 20 -11.5, 20 -11, 20.5 -11))" +"POLYGON ((21 -11, 21 -11.5, 20.5 -11.5, 20.5 -11, 21 -11))" +"POLYGON ((21.5 -11, 21.5 -11.5, 21 -11.5, 21 -11, 21.5 -11))" +"POLYGON ((22 -11, 22 -11.5, 21.5 -11.5, 21.5 -11, 22 -11))" +"POLYGON ((22.5 -11, 22.5 -11.5, 22 -11.5, 22 -11, 22.5 -11))" +"POLYGON ((23 -11, 23 -11.5, 22.5 -11.5, 22.5 -11, 23 -11))" +"POLYGON ((23.5 -11, 23.5 -11.5, 23 -11.5, 23 -11, 23.5 -11))" +"POLYGON ((24 -11, 24 -11.5, 23.5 -11.5, 23.5 -11, 24 -11))" +"POLYGON ((24.5 -11, 24.5 -11.5, 24 -11.5, 24 -11, 24.5 -11))" +"POLYGON ((25 -11, 25 -11.5, 24.5 -11.5, 24.5 -11, 25 -11))" +"POLYGON ((25.5 -11, 25.5 -11.5, 25 -11.5, 25 -11, 25.5 -11))" +"POLYGON ((26 -11, 26 -11.5, 25.5 -11.5, 25.5 -11, 26 -11))" +"POLYGON ((26.5 -11, 26.5 -11.5, 26 -11.5, 26 -11, 26.5 -11))" +"POLYGON ((27 -11, 27 -11.5, 26.5 -11.5, 26.5 -11, 27 -11))" +"POLYGON ((27.5 -11, 27.5 -11.5, 27 -11.5, 27 -11, 27.5 -11))" +"POLYGON ((28 -11, 28 -11.5, 27.5 -11.5, 27.5 -11, 28 -11))" +"POLYGON ((28.5 -11, 28.5 -11.5, 28 -11.5, 28 -11, 28.5 -11))" +"POLYGON ((29 -11, 29 -11.5, 28.5 -11.5, 28.5 -11, 29 -11))" +"POLYGON ((29.5 -11, 29.5 -11.5, 29 -11.5, 29 -11, 29.5 -11))" +"POLYGON ((30 -11, 30 -11.5, 29.5 -11.5, 29.5 -11, 30 -11))" +"POLYGON ((30.5 -11, 30.5 -11.5, 30 -11.5, 30 -11, 30.5 -11))" +"POLYGON ((31 -11, 31 -11.5, 30.5 -11.5, 30.5 -11, 31 -11))" +"POLYGON ((31.5 -11, 31.5 -11.5, 31 -11.5, 31 -11, 31.5 -11))" +"POLYGON ((32 -11, 32 -11.5, 31.5 -11.5, 31.5 -11, 32 -11))" +"POLYGON ((32.5 -11, 32.5 -11.5, 32 -11.5, 32 -11, 32.5 -11))" +"POLYGON ((33 -11, 33 -11.5, 32.5 -11.5, 32.5 -11, 33 -11))" +"POLYGON ((33.5 -11, 33.5 -11.5, 33 -11.5, 33 -11, 33.5 -11))" +"POLYGON ((34 -11, 34 -11.5, 33.5 -11.5, 33.5 -11, 34 -11))" +"POLYGON ((34.5 -11, 34.5 -11.5, 34 -11.5, 34 -11, 34.5 -11))" +"POLYGON ((35 -11, 35 -11.5, 34.5 -11.5, 34.5 -11, 35 -11))" +"POLYGON ((35.5 -11, 35.5 -11.5, 35 -11.5, 35 -11, 35.5 -11))" +"POLYGON ((36 -11, 36 -11.5, 35.5 -11.5, 35.5 -11, 36 -11))" +"POLYGON ((36.5 -11, 36.5 -11.5, 36 -11.5, 36 -11, 36.5 -11))" +"POLYGON ((37 -11, 37 -11.5, 36.5 -11.5, 36.5 -11, 37 -11))" +"POLYGON ((37.5 -11, 37.5 -11.5, 37 -11.5, 37 -11, 37.5 -11))" +"POLYGON ((38 -11, 38 -11.5, 37.5 -11.5, 37.5 -11, 38 -11))" +"POLYGON ((38.5 -11, 38.5 -11.5, 38 -11.5, 38 -11, 38.5 -11))" +"POLYGON ((39 -11, 39 -11.5, 38.5 -11.5, 38.5 -11, 39 -11))" +"POLYGON ((39.5 -11, 39.5 -11.5, 39 -11.5, 39 -11, 39.5 -11))" +"POLYGON ((40 -11, 40 -11.5, 39.5 -11.5, 39.5 -11, 40 -11))" +"POLYGON ((40.5 -11, 40.5 -11.5, 40 -11.5, 40 -11, 40.5 -11))" +"POLYGON ((14.5 -10.5, 14.5 -11, 14 -11, 14 -10.5, 14.5 -10.5))" +"POLYGON ((15 -10.5, 15 -11, 14.5 -11, 14.5 -10.5, 15 -10.5))" +"POLYGON ((15.5 -10.5, 15.5 -11, 15 -11, 15 -10.5, 15.5 -10.5))" +"POLYGON ((16 -10.5, 16 -11, 15.5 -11, 15.5 -10.5, 16 -10.5))" +"POLYGON ((16.5 -10.5, 16.5 -11, 16 -11, 16 -10.5, 16.5 -10.5))" +"POLYGON ((17 -10.5, 17 -11, 16.5 -11, 16.5 -10.5, 17 -10.5))" +"POLYGON ((17.5 -10.5, 17.5 -11, 17 -11, 17 -10.5, 17.5 -10.5))" +"POLYGON ((18 -10.5, 18 -11, 17.5 -11, 17.5 -10.5, 18 -10.5))" +"POLYGON ((18.5 -10.5, 18.5 -11, 18 -11, 18 -10.5, 18.5 -10.5))" +"POLYGON ((19 -10.5, 19 -11, 18.5 -11, 18.5 -10.5, 19 -10.5))" +"POLYGON ((19.5 -10.5, 19.5 -11, 19 -11, 19 -10.5, 19.5 -10.5))" +"POLYGON ((20 -10.5, 20 -11, 19.5 -11, 19.5 -10.5, 20 -10.5))" +"POLYGON ((20.5 -10.5, 20.5 -11, 20 -11, 20 -10.5, 20.5 -10.5))" +"POLYGON ((21 -10.5, 21 -11, 20.5 -11, 20.5 -10.5, 21 -10.5))" +"POLYGON ((21.5 -10.5, 21.5 -11, 21 -11, 21 -10.5, 21.5 -10.5))" +"POLYGON ((22 -10.5, 22 -11, 21.5 -11, 21.5 -10.5, 22 -10.5))" +"POLYGON ((22.5 -10.5, 22.5 -11, 22 -11, 22 -10.5, 22.5 -10.5))" +"POLYGON ((23 -10.5, 23 -11, 22.5 -11, 22.5 -10.5, 23 -10.5))" +"POLYGON ((23.5 -10.5, 23.5 -11, 23 -11, 23 -10.5, 23.5 -10.5))" +"POLYGON ((24 -10.5, 24 -11, 23.5 -11, 23.5 -10.5, 24 -10.5))" +"POLYGON ((24.5 -10.5, 24.5 -11, 24 -11, 24 -10.5, 24.5 -10.5))" +"POLYGON ((25 -10.5, 25 -11, 24.5 -11, 24.5 -10.5, 25 -10.5))" +"POLYGON ((25.5 -10.5, 25.5 -11, 25 -11, 25 -10.5, 25.5 -10.5))" +"POLYGON ((26 -10.5, 26 -11, 25.5 -11, 25.5 -10.5, 26 -10.5))" +"POLYGON ((26.5 -10.5, 26.5 -11, 26 -11, 26 -10.5, 26.5 -10.5))" +"POLYGON ((27 -10.5, 27 -11, 26.5 -11, 26.5 -10.5, 27 -10.5))" +"POLYGON ((27.5 -10.5, 27.5 -11, 27 -11, 27 -10.5, 27.5 -10.5))" +"POLYGON ((28 -10.5, 28 -11, 27.5 -11, 27.5 -10.5, 28 -10.5))" +"POLYGON ((28.5 -10.5, 28.5 -11, 28 -11, 28 -10.5, 28.5 -10.5))" +"POLYGON ((29 -10.5, 29 -11, 28.5 -11, 28.5 -10.5, 29 -10.5))" +"POLYGON ((29.5 -10.5, 29.5 -11, 29 -11, 29 -10.5, 29.5 -10.5))" +"POLYGON ((30 -10.5, 30 -11, 29.5 -11, 29.5 -10.5, 30 -10.5))" +"POLYGON ((30.5 -10.5, 30.5 -11, 30 -11, 30 -10.5, 30.5 -10.5))" +"POLYGON ((31 -10.5, 31 -11, 30.5 -11, 30.5 -10.5, 31 -10.5))" +"POLYGON ((31.5 -10.5, 31.5 -11, 31 -11, 31 -10.5, 31.5 -10.5))" +"POLYGON ((32 -10.5, 32 -11, 31.5 -11, 31.5 -10.5, 32 -10.5))" +"POLYGON ((32.5 -10.5, 32.5 -11, 32 -11, 32 -10.5, 32.5 -10.5))" +"POLYGON ((33 -10.5, 33 -11, 32.5 -11, 32.5 -10.5, 33 -10.5))" +"POLYGON ((33.5 -10.5, 33.5 -11, 33 -11, 33 -10.5, 33.5 -10.5))" +"POLYGON ((34 -10.5, 34 -11, 33.5 -11, 33.5 -10.5, 34 -10.5))" +"POLYGON ((34.5 -10.5, 34.5 -11, 34 -11, 34 -10.5, 34.5 -10.5))" +"POLYGON ((35 -10.5, 35 -11, 34.5 -11, 34.5 -10.5, 35 -10.5))" +"POLYGON ((35.5 -10.5, 35.5 -11, 35 -11, 35 -10.5, 35.5 -10.5))" +"POLYGON ((36 -10.5, 36 -11, 35.5 -11, 35.5 -10.5, 36 -10.5))" +"POLYGON ((36.5 -10.5, 36.5 -11, 36 -11, 36 -10.5, 36.5 -10.5))" +"POLYGON ((37 -10.5, 37 -11, 36.5 -11, 36.5 -10.5, 37 -10.5))" +"POLYGON ((37.5 -10.5, 37.5 -11, 37 -11, 37 -10.5, 37.5 -10.5))" +"POLYGON ((38 -10.5, 38 -11, 37.5 -11, 37.5 -10.5, 38 -10.5))" +"POLYGON ((38.5 -10.5, 38.5 -11, 38 -11, 38 -10.5, 38.5 -10.5))" +"POLYGON ((39 -10.5, 39 -11, 38.5 -11, 38.5 -10.5, 39 -10.5))" +"POLYGON ((39.5 -10.5, 39.5 -11, 39 -11, 39 -10.5, 39.5 -10.5))" +"POLYGON ((40 -10.5, 40 -11, 39.5 -11, 39.5 -10.5, 40 -10.5))" +"POLYGON ((40.5 -10.5, 40.5 -11, 40 -11, 40 -10.5, 40.5 -10.5))" +"POLYGON ((14 -10, 14 -10.5, 13.5 -10.5, 13.5 -10, 14 -10))" +"POLYGON ((14.5 -10, 14.5 -10.5, 14 -10.5, 14 -10, 14.5 -10))" +"POLYGON ((15 -10, 15 -10.5, 14.5 -10.5, 14.5 -10, 15 -10))" +"POLYGON ((15.5 -10, 15.5 -10.5, 15 -10.5, 15 -10, 15.5 -10))" +"POLYGON ((16 -10, 16 -10.5, 15.5 -10.5, 15.5 -10, 16 -10))" +"POLYGON ((16.5 -10, 16.5 -10.5, 16 -10.5, 16 -10, 16.5 -10))" +"POLYGON ((17 -10, 17 -10.5, 16.5 -10.5, 16.5 -10, 17 -10))" +"POLYGON ((17.5 -10, 17.5 -10.5, 17 -10.5, 17 -10, 17.5 -10))" +"POLYGON ((18 -10, 18 -10.5, 17.5 -10.5, 17.5 -10, 18 -10))" +"POLYGON ((18.5 -10, 18.5 -10.5, 18 -10.5, 18 -10, 18.5 -10))" +"POLYGON ((19 -10, 19 -10.5, 18.5 -10.5, 18.5 -10, 19 -10))" +"POLYGON ((19.5 -10, 19.5 -10.5, 19 -10.5, 19 -10, 19.5 -10))" +"POLYGON ((20 -10, 20 -10.5, 19.5 -10.5, 19.5 -10, 20 -10))" +"POLYGON ((20.5 -10, 20.5 -10.5, 20 -10.5, 20 -10, 20.5 -10))" +"POLYGON ((21 -10, 21 -10.5, 20.5 -10.5, 20.5 -10, 21 -10))" +"POLYGON ((21.5 -10, 21.5 -10.5, 21 -10.5, 21 -10, 21.5 -10))" +"POLYGON ((22 -10, 22 -10.5, 21.5 -10.5, 21.5 -10, 22 -10))" +"POLYGON ((22.5 -10, 22.5 -10.5, 22 -10.5, 22 -10, 22.5 -10))" +"POLYGON ((23 -10, 23 -10.5, 22.5 -10.5, 22.5 -10, 23 -10))" +"POLYGON ((23.5 -10, 23.5 -10.5, 23 -10.5, 23 -10, 23.5 -10))" +"POLYGON ((24 -10, 24 -10.5, 23.5 -10.5, 23.5 -10, 24 -10))" +"POLYGON ((24.5 -10, 24.5 -10.5, 24 -10.5, 24 -10, 24.5 -10))" +"POLYGON ((25 -10, 25 -10.5, 24.5 -10.5, 24.5 -10, 25 -10))" +"POLYGON ((25.5 -10, 25.5 -10.5, 25 -10.5, 25 -10, 25.5 -10))" +"POLYGON ((26 -10, 26 -10.5, 25.5 -10.5, 25.5 -10, 26 -10))" +"POLYGON ((26.5 -10, 26.5 -10.5, 26 -10.5, 26 -10, 26.5 -10))" +"POLYGON ((27 -10, 27 -10.5, 26.5 -10.5, 26.5 -10, 27 -10))" +"POLYGON ((27.5 -10, 27.5 -10.5, 27 -10.5, 27 -10, 27.5 -10))" +"POLYGON ((28 -10, 28 -10.5, 27.5 -10.5, 27.5 -10, 28 -10))" +"POLYGON ((28.5 -10, 28.5 -10.5, 28 -10.5, 28 -10, 28.5 -10))" +"POLYGON ((29 -10, 29 -10.5, 28.5 -10.5, 28.5 -10, 29 -10))" +"POLYGON ((29.5 -10, 29.5 -10.5, 29 -10.5, 29 -10, 29.5 -10))" +"POLYGON ((30 -10, 30 -10.5, 29.5 -10.5, 29.5 -10, 30 -10))" +"POLYGON ((30.5 -10, 30.5 -10.5, 30 -10.5, 30 -10, 30.5 -10))" +"POLYGON ((31 -10, 31 -10.5, 30.5 -10.5, 30.5 -10, 31 -10))" +"POLYGON ((31.5 -10, 31.5 -10.5, 31 -10.5, 31 -10, 31.5 -10))" +"POLYGON ((32 -10, 32 -10.5, 31.5 -10.5, 31.5 -10, 32 -10))" +"POLYGON ((32.5 -10, 32.5 -10.5, 32 -10.5, 32 -10, 32.5 -10))" +"POLYGON ((33 -10, 33 -10.5, 32.5 -10.5, 32.5 -10, 33 -10))" +"POLYGON ((33.5 -10, 33.5 -10.5, 33 -10.5, 33 -10, 33.5 -10))" +"POLYGON ((34 -10, 34 -10.5, 33.5 -10.5, 33.5 -10, 34 -10))" +"POLYGON ((34.5 -10, 34.5 -10.5, 34 -10.5, 34 -10, 34.5 -10))" +"POLYGON ((35 -10, 35 -10.5, 34.5 -10.5, 34.5 -10, 35 -10))" +"POLYGON ((35.5 -10, 35.5 -10.5, 35 -10.5, 35 -10, 35.5 -10))" +"POLYGON ((36 -10, 36 -10.5, 35.5 -10.5, 35.5 -10, 36 -10))" +"POLYGON ((36.5 -10, 36.5 -10.5, 36 -10.5, 36 -10, 36.5 -10))" +"POLYGON ((37 -10, 37 -10.5, 36.5 -10.5, 36.5 -10, 37 -10))" +"POLYGON ((37.5 -10, 37.5 -10.5, 37 -10.5, 37 -10, 37.5 -10))" +"POLYGON ((38 -10, 38 -10.5, 37.5 -10.5, 37.5 -10, 38 -10))" +"POLYGON ((38.5 -10, 38.5 -10.5, 38 -10.5, 38 -10, 38.5 -10))" +"POLYGON ((39 -10, 39 -10.5, 38.5 -10.5, 38.5 -10, 39 -10))" +"POLYGON ((39.5 -10, 39.5 -10.5, 39 -10.5, 39 -10, 39.5 -10))" +"POLYGON ((40 -10, 40 -10.5, 39.5 -10.5, 39.5 -10, 40 -10))" +"POLYGON ((14 -9.5, 14 -10, 13.5 -10, 13.5 -9.5, 14 -9.5))" +"POLYGON ((14.5 -9.5, 14.5 -10, 14 -10, 14 -9.5, 14.5 -9.5))" +"POLYGON ((15 -9.5, 15 -10, 14.5 -10, 14.5 -9.5, 15 -9.5))" +"POLYGON ((15.5 -9.5, 15.5 -10, 15 -10, 15 -9.5, 15.5 -9.5))" +"POLYGON ((16 -9.5, 16 -10, 15.5 -10, 15.5 -9.5, 16 -9.5))" +"POLYGON ((16.5 -9.5, 16.5 -10, 16 -10, 16 -9.5, 16.5 -9.5))" +"POLYGON ((17 -9.5, 17 -10, 16.5 -10, 16.5 -9.5, 17 -9.5))" +"POLYGON ((17.5 -9.5, 17.5 -10, 17 -10, 17 -9.5, 17.5 -9.5))" +"POLYGON ((18 -9.5, 18 -10, 17.5 -10, 17.5 -9.5, 18 -9.5))" +"POLYGON ((18.5 -9.5, 18.5 -10, 18 -10, 18 -9.5, 18.5 -9.5))" +"POLYGON ((19 -9.5, 19 -10, 18.5 -10, 18.5 -9.5, 19 -9.5))" +"POLYGON ((19.5 -9.5, 19.5 -10, 19 -10, 19 -9.5, 19.5 -9.5))" +"POLYGON ((20 -9.5, 20 -10, 19.5 -10, 19.5 -9.5, 20 -9.5))" +"POLYGON ((20.5 -9.5, 20.5 -10, 20 -10, 20 -9.5, 20.5 -9.5))" +"POLYGON ((21 -9.5, 21 -10, 20.5 -10, 20.5 -9.5, 21 -9.5))" +"POLYGON ((21.5 -9.5, 21.5 -10, 21 -10, 21 -9.5, 21.5 -9.5))" +"POLYGON ((22 -9.5, 22 -10, 21.5 -10, 21.5 -9.5, 22 -9.5))" +"POLYGON ((22.5 -9.5, 22.5 -10, 22 -10, 22 -9.5, 22.5 -9.5))" +"POLYGON ((23 -9.5, 23 -10, 22.5 -10, 22.5 -9.5, 23 -9.5))" +"POLYGON ((23.5 -9.5, 23.5 -10, 23 -10, 23 -9.5, 23.5 -9.5))" +"POLYGON ((24 -9.5, 24 -10, 23.5 -10, 23.5 -9.5, 24 -9.5))" +"POLYGON ((24.5 -9.5, 24.5 -10, 24 -10, 24 -9.5, 24.5 -9.5))" +"POLYGON ((25 -9.5, 25 -10, 24.5 -10, 24.5 -9.5, 25 -9.5))" +"POLYGON ((25.5 -9.5, 25.5 -10, 25 -10, 25 -9.5, 25.5 -9.5))" +"POLYGON ((26 -9.5, 26 -10, 25.5 -10, 25.5 -9.5, 26 -9.5))" +"POLYGON ((26.5 -9.5, 26.5 -10, 26 -10, 26 -9.5, 26.5 -9.5))" +"POLYGON ((27 -9.5, 27 -10, 26.5 -10, 26.5 -9.5, 27 -9.5))" +"POLYGON ((27.5 -9.5, 27.5 -10, 27 -10, 27 -9.5, 27.5 -9.5))" +"POLYGON ((28 -9.5, 28 -10, 27.5 -10, 27.5 -9.5, 28 -9.5))" +"POLYGON ((28.5 -9.5, 28.5 -10, 28 -10, 28 -9.5, 28.5 -9.5))" +"POLYGON ((29 -9.5, 29 -10, 28.5 -10, 28.5 -9.5, 29 -9.5))" +"POLYGON ((29.5 -9.5, 29.5 -10, 29 -10, 29 -9.5, 29.5 -9.5))" +"POLYGON ((30 -9.5, 30 -10, 29.5 -10, 29.5 -9.5, 30 -9.5))" +"POLYGON ((30.5 -9.5, 30.5 -10, 30 -10, 30 -9.5, 30.5 -9.5))" +"POLYGON ((31 -9.5, 31 -10, 30.5 -10, 30.5 -9.5, 31 -9.5))" +"POLYGON ((31.5 -9.5, 31.5 -10, 31 -10, 31 -9.5, 31.5 -9.5))" +"POLYGON ((32 -9.5, 32 -10, 31.5 -10, 31.5 -9.5, 32 -9.5))" +"POLYGON ((32.5 -9.5, 32.5 -10, 32 -10, 32 -9.5, 32.5 -9.5))" +"POLYGON ((33 -9.5, 33 -10, 32.5 -10, 32.5 -9.5, 33 -9.5))" +"POLYGON ((33.5 -9.5, 33.5 -10, 33 -10, 33 -9.5, 33.5 -9.5))" +"POLYGON ((34 -9.5, 34 -10, 33.5 -10, 33.5 -9.5, 34 -9.5))" +"POLYGON ((34.5 -9.5, 34.5 -10, 34 -10, 34 -9.5, 34.5 -9.5))" +"POLYGON ((35 -9.5, 35 -10, 34.5 -10, 34.5 -9.5, 35 -9.5))" +"POLYGON ((35.5 -9.5, 35.5 -10, 35 -10, 35 -9.5, 35.5 -9.5))" +"POLYGON ((36 -9.5, 36 -10, 35.5 -10, 35.5 -9.5, 36 -9.5))" +"POLYGON ((36.5 -9.5, 36.5 -10, 36 -10, 36 -9.5, 36.5 -9.5))" +"POLYGON ((37 -9.5, 37 -10, 36.5 -10, 36.5 -9.5, 37 -9.5))" +"POLYGON ((37.5 -9.5, 37.5 -10, 37 -10, 37 -9.5, 37.5 -9.5))" +"POLYGON ((38 -9.5, 38 -10, 37.5 -10, 37.5 -9.5, 38 -9.5))" +"POLYGON ((38.5 -9.5, 38.5 -10, 38 -10, 38 -9.5, 38.5 -9.5))" +"POLYGON ((39 -9.5, 39 -10, 38.5 -10, 38.5 -9.5, 39 -9.5))" +"POLYGON ((39.5 -9.5, 39.5 -10, 39 -10, 39 -9.5, 39.5 -9.5))" +"POLYGON ((13.5 -9, 13.5 -9.5, 13 -9.5, 13 -9, 13.5 -9))" +"POLYGON ((14 -9, 14 -9.5, 13.5 -9.5, 13.5 -9, 14 -9))" +"POLYGON ((14.5 -9, 14.5 -9.5, 14 -9.5, 14 -9, 14.5 -9))" +"POLYGON ((15 -9, 15 -9.5, 14.5 -9.5, 14.5 -9, 15 -9))" +"POLYGON ((15.5 -9, 15.5 -9.5, 15 -9.5, 15 -9, 15.5 -9))" +"POLYGON ((16 -9, 16 -9.5, 15.5 -9.5, 15.5 -9, 16 -9))" +"POLYGON ((16.5 -9, 16.5 -9.5, 16 -9.5, 16 -9, 16.5 -9))" +"POLYGON ((17 -9, 17 -9.5, 16.5 -9.5, 16.5 -9, 17 -9))" +"POLYGON ((17.5 -9, 17.5 -9.5, 17 -9.5, 17 -9, 17.5 -9))" +"POLYGON ((18 -9, 18 -9.5, 17.5 -9.5, 17.5 -9, 18 -9))" +"POLYGON ((18.5 -9, 18.5 -9.5, 18 -9.5, 18 -9, 18.5 -9))" +"POLYGON ((19 -9, 19 -9.5, 18.5 -9.5, 18.5 -9, 19 -9))" +"POLYGON ((19.5 -9, 19.5 -9.5, 19 -9.5, 19 -9, 19.5 -9))" +"POLYGON ((20 -9, 20 -9.5, 19.5 -9.5, 19.5 -9, 20 -9))" +"POLYGON ((20.5 -9, 20.5 -9.5, 20 -9.5, 20 -9, 20.5 -9))" +"POLYGON ((21 -9, 21 -9.5, 20.5 -9.5, 20.5 -9, 21 -9))" +"POLYGON ((21.5 -9, 21.5 -9.5, 21 -9.5, 21 -9, 21.5 -9))" +"POLYGON ((22 -9, 22 -9.5, 21.5 -9.5, 21.5 -9, 22 -9))" +"POLYGON ((22.5 -9, 22.5 -9.5, 22 -9.5, 22 -9, 22.5 -9))" +"POLYGON ((23 -9, 23 -9.5, 22.5 -9.5, 22.5 -9, 23 -9))" +"POLYGON ((23.5 -9, 23.5 -9.5, 23 -9.5, 23 -9, 23.5 -9))" +"POLYGON ((24 -9, 24 -9.5, 23.5 -9.5, 23.5 -9, 24 -9))" +"POLYGON ((24.5 -9, 24.5 -9.5, 24 -9.5, 24 -9, 24.5 -9))" +"POLYGON ((25 -9, 25 -9.5, 24.5 -9.5, 24.5 -9, 25 -9))" +"POLYGON ((25.5 -9, 25.5 -9.5, 25 -9.5, 25 -9, 25.5 -9))" +"POLYGON ((26 -9, 26 -9.5, 25.5 -9.5, 25.5 -9, 26 -9))" +"POLYGON ((26.5 -9, 26.5 -9.5, 26 -9.5, 26 -9, 26.5 -9))" +"POLYGON ((27 -9, 27 -9.5, 26.5 -9.5, 26.5 -9, 27 -9))" +"POLYGON ((27.5 -9, 27.5 -9.5, 27 -9.5, 27 -9, 27.5 -9))" +"POLYGON ((28 -9, 28 -9.5, 27.5 -9.5, 27.5 -9, 28 -9))" +"POLYGON ((28.5 -9, 28.5 -9.5, 28 -9.5, 28 -9, 28.5 -9))" +"POLYGON ((29 -9, 29 -9.5, 28.5 -9.5, 28.5 -9, 29 -9))" +"POLYGON ((29.5 -9, 29.5 -9.5, 29 -9.5, 29 -9, 29.5 -9))" +"POLYGON ((30 -9, 30 -9.5, 29.5 -9.5, 29.5 -9, 30 -9))" +"POLYGON ((30.5 -9, 30.5 -9.5, 30 -9.5, 30 -9, 30.5 -9))" +"POLYGON ((31 -9, 31 -9.5, 30.5 -9.5, 30.5 -9, 31 -9))" +"POLYGON ((31.5 -9, 31.5 -9.5, 31 -9.5, 31 -9, 31.5 -9))" +"POLYGON ((32 -9, 32 -9.5, 31.5 -9.5, 31.5 -9, 32 -9))" +"POLYGON ((32.5 -9, 32.5 -9.5, 32 -9.5, 32 -9, 32.5 -9))" +"POLYGON ((33 -9, 33 -9.5, 32.5 -9.5, 32.5 -9, 33 -9))" +"POLYGON ((33.5 -9, 33.5 -9.5, 33 -9.5, 33 -9, 33.5 -9))" +"POLYGON ((34 -9, 34 -9.5, 33.5 -9.5, 33.5 -9, 34 -9))" +"POLYGON ((34.5 -9, 34.5 -9.5, 34 -9.5, 34 -9, 34.5 -9))" +"POLYGON ((35 -9, 35 -9.5, 34.5 -9.5, 34.5 -9, 35 -9))" +"POLYGON ((35.5 -9, 35.5 -9.5, 35 -9.5, 35 -9, 35.5 -9))" +"POLYGON ((36 -9, 36 -9.5, 35.5 -9.5, 35.5 -9, 36 -9))" +"POLYGON ((36.5 -9, 36.5 -9.5, 36 -9.5, 36 -9, 36.5 -9))" +"POLYGON ((37 -9, 37 -9.5, 36.5 -9.5, 36.5 -9, 37 -9))" +"POLYGON ((37.5 -9, 37.5 -9.5, 37 -9.5, 37 -9, 37.5 -9))" +"POLYGON ((38 -9, 38 -9.5, 37.5 -9.5, 37.5 -9, 38 -9))" +"POLYGON ((38.5 -9, 38.5 -9.5, 38 -9.5, 38 -9, 38.5 -9))" +"POLYGON ((39 -9, 39 -9.5, 38.5 -9.5, 38.5 -9, 39 -9))" +"POLYGON ((39.5 -9, 39.5 -9.5, 39 -9.5, 39 -9, 39.5 -9))" +"POLYGON ((14 -8.5, 14 -9, 13.5 -9, 13.5 -8.5, 14 -8.5))" +"POLYGON ((14.5 -8.5, 14.5 -9, 14 -9, 14 -8.5, 14.5 -8.5))" +"POLYGON ((15 -8.5, 15 -9, 14.5 -9, 14.5 -8.5, 15 -8.5))" +"POLYGON ((15.5 -8.5, 15.5 -9, 15 -9, 15 -8.5, 15.5 -8.5))" +"POLYGON ((16 -8.5, 16 -9, 15.5 -9, 15.5 -8.5, 16 -8.5))" +"POLYGON ((16.5 -8.5, 16.5 -9, 16 -9, 16 -8.5, 16.5 -8.5))" +"POLYGON ((17 -8.5, 17 -9, 16.5 -9, 16.5 -8.5, 17 -8.5))" +"POLYGON ((17.5 -8.5, 17.5 -9, 17 -9, 17 -8.5, 17.5 -8.5))" +"POLYGON ((18 -8.5, 18 -9, 17.5 -9, 17.5 -8.5, 18 -8.5))" +"POLYGON ((18.5 -8.5, 18.5 -9, 18 -9, 18 -8.5, 18.5 -8.5))" +"POLYGON ((19 -8.5, 19 -9, 18.5 -9, 18.5 -8.5, 19 -8.5))" +"POLYGON ((19.5 -8.5, 19.5 -9, 19 -9, 19 -8.5, 19.5 -8.5))" +"POLYGON ((20 -8.5, 20 -9, 19.5 -9, 19.5 -8.5, 20 -8.5))" +"POLYGON ((20.5 -8.5, 20.5 -9, 20 -9, 20 -8.5, 20.5 -8.5))" +"POLYGON ((21 -8.5, 21 -9, 20.5 -9, 20.5 -8.5, 21 -8.5))" +"POLYGON ((21.5 -8.5, 21.5 -9, 21 -9, 21 -8.5, 21.5 -8.5))" +"POLYGON ((22 -8.5, 22 -9, 21.5 -9, 21.5 -8.5, 22 -8.5))" +"POLYGON ((22.5 -8.5, 22.5 -9, 22 -9, 22 -8.5, 22.5 -8.5))" +"POLYGON ((23 -8.5, 23 -9, 22.5 -9, 22.5 -8.5, 23 -8.5))" +"POLYGON ((23.5 -8.5, 23.5 -9, 23 -9, 23 -8.5, 23.5 -8.5))" +"POLYGON ((24 -8.5, 24 -9, 23.5 -9, 23.5 -8.5, 24 -8.5))" +"POLYGON ((24.5 -8.5, 24.5 -9, 24 -9, 24 -8.5, 24.5 -8.5))" +"POLYGON ((25 -8.5, 25 -9, 24.5 -9, 24.5 -8.5, 25 -8.5))" +"POLYGON ((25.5 -8.5, 25.5 -9, 25 -9, 25 -8.5, 25.5 -8.5))" +"POLYGON ((26 -8.5, 26 -9, 25.5 -9, 25.5 -8.5, 26 -8.5))" +"POLYGON ((26.5 -8.5, 26.5 -9, 26 -9, 26 -8.5, 26.5 -8.5))" +"POLYGON ((27 -8.5, 27 -9, 26.5 -9, 26.5 -8.5, 27 -8.5))" +"POLYGON ((27.5 -8.5, 27.5 -9, 27 -9, 27 -8.5, 27.5 -8.5))" +"POLYGON ((28 -8.5, 28 -9, 27.5 -9, 27.5 -8.5, 28 -8.5))" +"POLYGON ((28.5 -8.5, 28.5 -9, 28 -9, 28 -8.5, 28.5 -8.5))" +"POLYGON ((29 -8.5, 29 -9, 28.5 -9, 28.5 -8.5, 29 -8.5))" +"POLYGON ((29.5 -8.5, 29.5 -9, 29 -9, 29 -8.5, 29.5 -8.5))" +"POLYGON ((30 -8.5, 30 -9, 29.5 -9, 29.5 -8.5, 30 -8.5))" +"POLYGON ((30.5 -8.5, 30.5 -9, 30 -9, 30 -8.5, 30.5 -8.5))" +"POLYGON ((31 -8.5, 31 -9, 30.5 -9, 30.5 -8.5, 31 -8.5))" +"POLYGON ((31.5 -8.5, 31.5 -9, 31 -9, 31 -8.5, 31.5 -8.5))" +"POLYGON ((32 -8.5, 32 -9, 31.5 -9, 31.5 -8.5, 32 -8.5))" +"POLYGON ((32.5 -8.5, 32.5 -9, 32 -9, 32 -8.5, 32.5 -8.5))" +"POLYGON ((33 -8.5, 33 -9, 32.5 -9, 32.5 -8.5, 33 -8.5))" +"POLYGON ((33.5 -8.5, 33.5 -9, 33 -9, 33 -8.5, 33.5 -8.5))" +"POLYGON ((34 -8.5, 34 -9, 33.5 -9, 33.5 -8.5, 34 -8.5))" +"POLYGON ((34.5 -8.5, 34.5 -9, 34 -9, 34 -8.5, 34.5 -8.5))" +"POLYGON ((35 -8.5, 35 -9, 34.5 -9, 34.5 -8.5, 35 -8.5))" +"POLYGON ((35.5 -8.5, 35.5 -9, 35 -9, 35 -8.5, 35.5 -8.5))" +"POLYGON ((36 -8.5, 36 -9, 35.5 -9, 35.5 -8.5, 36 -8.5))" +"POLYGON ((36.5 -8.5, 36.5 -9, 36 -9, 36 -8.5, 36.5 -8.5))" +"POLYGON ((37 -8.5, 37 -9, 36.5 -9, 36.5 -8.5, 37 -8.5))" +"POLYGON ((37.5 -8.5, 37.5 -9, 37 -9, 37 -8.5, 37.5 -8.5))" +"POLYGON ((38 -8.5, 38 -9, 37.5 -9, 37.5 -8.5, 38 -8.5))" +"POLYGON ((38.5 -8.5, 38.5 -9, 38 -9, 38 -8.5, 38.5 -8.5))" +"POLYGON ((39 -8.5, 39 -9, 38.5 -9, 38.5 -8.5, 39 -8.5))" +"POLYGON ((39.5 -8.5, 39.5 -9, 39 -9, 39 -8.5, 39.5 -8.5))" +"POLYGON ((14 -8, 14 -8.5, 13.5 -8.5, 13.5 -8, 14 -8))" +"POLYGON ((14.5 -8, 14.5 -8.5, 14 -8.5, 14 -8, 14.5 -8))" +"POLYGON ((15 -8, 15 -8.5, 14.5 -8.5, 14.5 -8, 15 -8))" +"POLYGON ((15.5 -8, 15.5 -8.5, 15 -8.5, 15 -8, 15.5 -8))" +"POLYGON ((16 -8, 16 -8.5, 15.5 -8.5, 15.5 -8, 16 -8))" +"POLYGON ((16.5 -8, 16.5 -8.5, 16 -8.5, 16 -8, 16.5 -8))" +"POLYGON ((17 -8, 17 -8.5, 16.5 -8.5, 16.5 -8, 17 -8))" +"POLYGON ((17.5 -8, 17.5 -8.5, 17 -8.5, 17 -8, 17.5 -8))" +"POLYGON ((18 -8, 18 -8.5, 17.5 -8.5, 17.5 -8, 18 -8))" +"POLYGON ((18.5 -8, 18.5 -8.5, 18 -8.5, 18 -8, 18.5 -8))" +"POLYGON ((19 -8, 19 -8.5, 18.5 -8.5, 18.5 -8, 19 -8))" +"POLYGON ((19.5 -8, 19.5 -8.5, 19 -8.5, 19 -8, 19.5 -8))" +"POLYGON ((20 -8, 20 -8.5, 19.5 -8.5, 19.5 -8, 20 -8))" +"POLYGON ((20.5 -8, 20.5 -8.5, 20 -8.5, 20 -8, 20.5 -8))" +"POLYGON ((21 -8, 21 -8.5, 20.5 -8.5, 20.5 -8, 21 -8))" +"POLYGON ((21.5 -8, 21.5 -8.5, 21 -8.5, 21 -8, 21.5 -8))" +"POLYGON ((22 -8, 22 -8.5, 21.5 -8.5, 21.5 -8, 22 -8))" +"POLYGON ((22.5 -8, 22.5 -8.5, 22 -8.5, 22 -8, 22.5 -8))" +"POLYGON ((23 -8, 23 -8.5, 22.5 -8.5, 22.5 -8, 23 -8))" +"POLYGON ((23.5 -8, 23.5 -8.5, 23 -8.5, 23 -8, 23.5 -8))" +"POLYGON ((24 -8, 24 -8.5, 23.5 -8.5, 23.5 -8, 24 -8))" +"POLYGON ((24.5 -8, 24.5 -8.5, 24 -8.5, 24 -8, 24.5 -8))" +"POLYGON ((25 -8, 25 -8.5, 24.5 -8.5, 24.5 -8, 25 -8))" +"POLYGON ((25.5 -8, 25.5 -8.5, 25 -8.5, 25 -8, 25.5 -8))" +"POLYGON ((26 -8, 26 -8.5, 25.5 -8.5, 25.5 -8, 26 -8))" +"POLYGON ((26.5 -8, 26.5 -8.5, 26 -8.5, 26 -8, 26.5 -8))" +"POLYGON ((27 -8, 27 -8.5, 26.5 -8.5, 26.5 -8, 27 -8))" +"POLYGON ((27.5 -8, 27.5 -8.5, 27 -8.5, 27 -8, 27.5 -8))" +"POLYGON ((28 -8, 28 -8.5, 27.5 -8.5, 27.5 -8, 28 -8))" +"POLYGON ((28.5 -8, 28.5 -8.5, 28 -8.5, 28 -8, 28.5 -8))" +"POLYGON ((29 -8, 29 -8.5, 28.5 -8.5, 28.5 -8, 29 -8))" +"POLYGON ((29.5 -8, 29.5 -8.5, 29 -8.5, 29 -8, 29.5 -8))" +"POLYGON ((30 -8, 30 -8.5, 29.5 -8.5, 29.5 -8, 30 -8))" +"POLYGON ((30.5 -8, 30.5 -8.5, 30 -8.5, 30 -8, 30.5 -8))" +"POLYGON ((31 -8, 31 -8.5, 30.5 -8.5, 30.5 -8, 31 -8))" +"POLYGON ((31.5 -8, 31.5 -8.5, 31 -8.5, 31 -8, 31.5 -8))" +"POLYGON ((32 -8, 32 -8.5, 31.5 -8.5, 31.5 -8, 32 -8))" +"POLYGON ((32.5 -8, 32.5 -8.5, 32 -8.5, 32 -8, 32.5 -8))" +"POLYGON ((33 -8, 33 -8.5, 32.5 -8.5, 32.5 -8, 33 -8))" +"POLYGON ((33.5 -8, 33.5 -8.5, 33 -8.5, 33 -8, 33.5 -8))" +"POLYGON ((34 -8, 34 -8.5, 33.5 -8.5, 33.5 -8, 34 -8))" +"POLYGON ((34.5 -8, 34.5 -8.5, 34 -8.5, 34 -8, 34.5 -8))" +"POLYGON ((35 -8, 35 -8.5, 34.5 -8.5, 34.5 -8, 35 -8))" +"POLYGON ((35.5 -8, 35.5 -8.5, 35 -8.5, 35 -8, 35.5 -8))" +"POLYGON ((36 -8, 36 -8.5, 35.5 -8.5, 35.5 -8, 36 -8))" +"POLYGON ((36.5 -8, 36.5 -8.5, 36 -8.5, 36 -8, 36.5 -8))" +"POLYGON ((37 -8, 37 -8.5, 36.5 -8.5, 36.5 -8, 37 -8))" +"POLYGON ((37.5 -8, 37.5 -8.5, 37 -8.5, 37 -8, 37.5 -8))" +"POLYGON ((38 -8, 38 -8.5, 37.5 -8.5, 37.5 -8, 38 -8))" +"POLYGON ((38.5 -8, 38.5 -8.5, 38 -8.5, 38 -8, 38.5 -8))" +"POLYGON ((39 -8, 39 -8.5, 38.5 -8.5, 38.5 -8, 39 -8))" +"POLYGON ((39.5 -8, 39.5 -8.5, 39 -8.5, 39 -8, 39.5 -8))" +"POLYGON ((13.5 -7.5, 13.5 -8, 13 -8, 13 -7.5, 13.5 -7.5))" +"POLYGON ((14 -7.5, 14 -8, 13.5 -8, 13.5 -7.5, 14 -7.5))" +"POLYGON ((14.5 -7.5, 14.5 -8, 14 -8, 14 -7.5, 14.5 -7.5))" +"POLYGON ((15 -7.5, 15 -8, 14.5 -8, 14.5 -7.5, 15 -7.5))" +"POLYGON ((15.5 -7.5, 15.5 -8, 15 -8, 15 -7.5, 15.5 -7.5))" +"POLYGON ((16 -7.5, 16 -8, 15.5 -8, 15.5 -7.5, 16 -7.5))" +"POLYGON ((16.5 -7.5, 16.5 -8, 16 -8, 16 -7.5, 16.5 -7.5))" +"POLYGON ((17 -7.5, 17 -8, 16.5 -8, 16.5 -7.5, 17 -7.5))" +"POLYGON ((17.5 -7.5, 17.5 -8, 17 -8, 17 -7.5, 17.5 -7.5))" +"POLYGON ((18 -7.5, 18 -8, 17.5 -8, 17.5 -7.5, 18 -7.5))" +"POLYGON ((18.5 -7.5, 18.5 -8, 18 -8, 18 -7.5, 18.5 -7.5))" +"POLYGON ((19 -7.5, 19 -8, 18.5 -8, 18.5 -7.5, 19 -7.5))" +"POLYGON ((19.5 -7.5, 19.5 -8, 19 -8, 19 -7.5, 19.5 -7.5))" +"POLYGON ((20 -7.5, 20 -8, 19.5 -8, 19.5 -7.5, 20 -7.5))" +"POLYGON ((20.5 -7.5, 20.5 -8, 20 -8, 20 -7.5, 20.5 -7.5))" +"POLYGON ((21 -7.5, 21 -8, 20.5 -8, 20.5 -7.5, 21 -7.5))" +"POLYGON ((21.5 -7.5, 21.5 -8, 21 -8, 21 -7.5, 21.5 -7.5))" +"POLYGON ((22 -7.5, 22 -8, 21.5 -8, 21.5 -7.5, 22 -7.5))" +"POLYGON ((22.5 -7.5, 22.5 -8, 22 -8, 22 -7.5, 22.5 -7.5))" +"POLYGON ((23 -7.5, 23 -8, 22.5 -8, 22.5 -7.5, 23 -7.5))" +"POLYGON ((23.5 -7.5, 23.5 -8, 23 -8, 23 -7.5, 23.5 -7.5))" +"POLYGON ((24 -7.5, 24 -8, 23.5 -8, 23.5 -7.5, 24 -7.5))" +"POLYGON ((24.5 -7.5, 24.5 -8, 24 -8, 24 -7.5, 24.5 -7.5))" +"POLYGON ((25 -7.5, 25 -8, 24.5 -8, 24.5 -7.5, 25 -7.5))" +"POLYGON ((25.5 -7.5, 25.5 -8, 25 -8, 25 -7.5, 25.5 -7.5))" +"POLYGON ((26 -7.5, 26 -8, 25.5 -8, 25.5 -7.5, 26 -7.5))" +"POLYGON ((26.5 -7.5, 26.5 -8, 26 -8, 26 -7.5, 26.5 -7.5))" +"POLYGON ((27 -7.5, 27 -8, 26.5 -8, 26.5 -7.5, 27 -7.5))" +"POLYGON ((27.5 -7.5, 27.5 -8, 27 -8, 27 -7.5, 27.5 -7.5))" +"POLYGON ((28 -7.5, 28 -8, 27.5 -8, 27.5 -7.5, 28 -7.5))" +"POLYGON ((28.5 -7.5, 28.5 -8, 28 -8, 28 -7.5, 28.5 -7.5))" +"POLYGON ((29 -7.5, 29 -8, 28.5 -8, 28.5 -7.5, 29 -7.5))" +"POLYGON ((29.5 -7.5, 29.5 -8, 29 -8, 29 -7.5, 29.5 -7.5))" +"POLYGON ((30 -7.5, 30 -8, 29.5 -8, 29.5 -7.5, 30 -7.5))" +"POLYGON ((30.5 -7.5, 30.5 -8, 30 -8, 30 -7.5, 30.5 -7.5))" +"POLYGON ((31 -7.5, 31 -8, 30.5 -8, 30.5 -7.5, 31 -7.5))" +"POLYGON ((31.5 -7.5, 31.5 -8, 31 -8, 31 -7.5, 31.5 -7.5))" +"POLYGON ((32 -7.5, 32 -8, 31.5 -8, 31.5 -7.5, 32 -7.5))" +"POLYGON ((32.5 -7.5, 32.5 -8, 32 -8, 32 -7.5, 32.5 -7.5))" +"POLYGON ((33 -7.5, 33 -8, 32.5 -8, 32.5 -7.5, 33 -7.5))" +"POLYGON ((33.5 -7.5, 33.5 -8, 33 -8, 33 -7.5, 33.5 -7.5))" +"POLYGON ((34 -7.5, 34 -8, 33.5 -8, 33.5 -7.5, 34 -7.5))" +"POLYGON ((34.5 -7.5, 34.5 -8, 34 -8, 34 -7.5, 34.5 -7.5))" +"POLYGON ((35 -7.5, 35 -8, 34.5 -8, 34.5 -7.5, 35 -7.5))" +"POLYGON ((35.5 -7.5, 35.5 -8, 35 -8, 35 -7.5, 35.5 -7.5))" +"POLYGON ((36 -7.5, 36 -8, 35.5 -8, 35.5 -7.5, 36 -7.5))" +"POLYGON ((36.5 -7.5, 36.5 -8, 36 -8, 36 -7.5, 36.5 -7.5))" +"POLYGON ((37 -7.5, 37 -8, 36.5 -8, 36.5 -7.5, 37 -7.5))" +"POLYGON ((37.5 -7.5, 37.5 -8, 37 -8, 37 -7.5, 37.5 -7.5))" +"POLYGON ((38 -7.5, 38 -8, 37.5 -8, 37.5 -7.5, 38 -7.5))" +"POLYGON ((38.5 -7.5, 38.5 -8, 38 -8, 38 -7.5, 38.5 -7.5))" +"POLYGON ((39 -7.5, 39 -8, 38.5 -8, 38.5 -7.5, 39 -7.5))" +"POLYGON ((39.5 -7.5, 39.5 -8, 39 -8, 39 -7.5, 39.5 -7.5))" +"POLYGON ((13.5 -7, 13.5 -7.5, 13 -7.5, 13 -7, 13.5 -7))" +"POLYGON ((14 -7, 14 -7.5, 13.5 -7.5, 13.5 -7, 14 -7))" +"POLYGON ((14.5 -7, 14.5 -7.5, 14 -7.5, 14 -7, 14.5 -7))" +"POLYGON ((15 -7, 15 -7.5, 14.5 -7.5, 14.5 -7, 15 -7))" +"POLYGON ((15.5 -7, 15.5 -7.5, 15 -7.5, 15 -7, 15.5 -7))" +"POLYGON ((16 -7, 16 -7.5, 15.5 -7.5, 15.5 -7, 16 -7))" +"POLYGON ((16.5 -7, 16.5 -7.5, 16 -7.5, 16 -7, 16.5 -7))" +"POLYGON ((17 -7, 17 -7.5, 16.5 -7.5, 16.5 -7, 17 -7))" +"POLYGON ((17.5 -7, 17.5 -7.5, 17 -7.5, 17 -7, 17.5 -7))" +"POLYGON ((18 -7, 18 -7.5, 17.5 -7.5, 17.5 -7, 18 -7))" +"POLYGON ((18.5 -7, 18.5 -7.5, 18 -7.5, 18 -7, 18.5 -7))" +"POLYGON ((19 -7, 19 -7.5, 18.5 -7.5, 18.5 -7, 19 -7))" +"POLYGON ((19.5 -7, 19.5 -7.5, 19 -7.5, 19 -7, 19.5 -7))" +"POLYGON ((20 -7, 20 -7.5, 19.5 -7.5, 19.5 -7, 20 -7))" +"POLYGON ((20.5 -7, 20.5 -7.5, 20 -7.5, 20 -7, 20.5 -7))" +"POLYGON ((21 -7, 21 -7.5, 20.5 -7.5, 20.5 -7, 21 -7))" +"POLYGON ((21.5 -7, 21.5 -7.5, 21 -7.5, 21 -7, 21.5 -7))" +"POLYGON ((22 -7, 22 -7.5, 21.5 -7.5, 21.5 -7, 22 -7))" +"POLYGON ((22.5 -7, 22.5 -7.5, 22 -7.5, 22 -7, 22.5 -7))" +"POLYGON ((23 -7, 23 -7.5, 22.5 -7.5, 22.5 -7, 23 -7))" +"POLYGON ((23.5 -7, 23.5 -7.5, 23 -7.5, 23 -7, 23.5 -7))" +"POLYGON ((24 -7, 24 -7.5, 23.5 -7.5, 23.5 -7, 24 -7))" +"POLYGON ((24.5 -7, 24.5 -7.5, 24 -7.5, 24 -7, 24.5 -7))" +"POLYGON ((25 -7, 25 -7.5, 24.5 -7.5, 24.5 -7, 25 -7))" +"POLYGON ((25.5 -7, 25.5 -7.5, 25 -7.5, 25 -7, 25.5 -7))" +"POLYGON ((26 -7, 26 -7.5, 25.5 -7.5, 25.5 -7, 26 -7))" +"POLYGON ((26.5 -7, 26.5 -7.5, 26 -7.5, 26 -7, 26.5 -7))" +"POLYGON ((27 -7, 27 -7.5, 26.5 -7.5, 26.5 -7, 27 -7))" +"POLYGON ((27.5 -7, 27.5 -7.5, 27 -7.5, 27 -7, 27.5 -7))" +"POLYGON ((28 -7, 28 -7.5, 27.5 -7.5, 27.5 -7, 28 -7))" +"POLYGON ((28.5 -7, 28.5 -7.5, 28 -7.5, 28 -7, 28.5 -7))" +"POLYGON ((29 -7, 29 -7.5, 28.5 -7.5, 28.5 -7, 29 -7))" +"POLYGON ((29.5 -7, 29.5 -7.5, 29 -7.5, 29 -7, 29.5 -7))" +"POLYGON ((30 -7, 30 -7.5, 29.5 -7.5, 29.5 -7, 30 -7))" +"POLYGON ((30.5 -7, 30.5 -7.5, 30 -7.5, 30 -7, 30.5 -7))" +"POLYGON ((31 -7, 31 -7.5, 30.5 -7.5, 30.5 -7, 31 -7))" +"POLYGON ((31.5 -7, 31.5 -7.5, 31 -7.5, 31 -7, 31.5 -7))" +"POLYGON ((32 -7, 32 -7.5, 31.5 -7.5, 31.5 -7, 32 -7))" +"POLYGON ((32.5 -7, 32.5 -7.5, 32 -7.5, 32 -7, 32.5 -7))" +"POLYGON ((33 -7, 33 -7.5, 32.5 -7.5, 32.5 -7, 33 -7))" +"POLYGON ((33.5 -7, 33.5 -7.5, 33 -7.5, 33 -7, 33.5 -7))" +"POLYGON ((34 -7, 34 -7.5, 33.5 -7.5, 33.5 -7, 34 -7))" +"POLYGON ((34.5 -7, 34.5 -7.5, 34 -7.5, 34 -7, 34.5 -7))" +"POLYGON ((35 -7, 35 -7.5, 34.5 -7.5, 34.5 -7, 35 -7))" +"POLYGON ((35.5 -7, 35.5 -7.5, 35 -7.5, 35 -7, 35.5 -7))" +"POLYGON ((36 -7, 36 -7.5, 35.5 -7.5, 35.5 -7, 36 -7))" +"POLYGON ((36.5 -7, 36.5 -7.5, 36 -7.5, 36 -7, 36.5 -7))" +"POLYGON ((37 -7, 37 -7.5, 36.5 -7.5, 36.5 -7, 37 -7))" +"POLYGON ((37.5 -7, 37.5 -7.5, 37 -7.5, 37 -7, 37.5 -7))" +"POLYGON ((38 -7, 38 -7.5, 37.5 -7.5, 37.5 -7, 38 -7))" +"POLYGON ((38.5 -7, 38.5 -7.5, 38 -7.5, 38 -7, 38.5 -7))" +"POLYGON ((39 -7, 39 -7.5, 38.5 -7.5, 38.5 -7, 39 -7))" +"POLYGON ((39.5 -7, 39.5 -7.5, 39 -7.5, 39 -7, 39.5 -7))" +"POLYGON ((13 -6.5, 13 -7, 12.5 -7, 12.5 -6.5, 13 -6.5))" +"POLYGON ((13.5 -6.5, 13.5 -7, 13 -7, 13 -6.5, 13.5 -6.5))" +"POLYGON ((14 -6.5, 14 -7, 13.5 -7, 13.5 -6.5, 14 -6.5))" +"POLYGON ((14.5 -6.5, 14.5 -7, 14 -7, 14 -6.5, 14.5 -6.5))" +"POLYGON ((15 -6.5, 15 -7, 14.5 -7, 14.5 -6.5, 15 -6.5))" +"POLYGON ((15.5 -6.5, 15.5 -7, 15 -7, 15 -6.5, 15.5 -6.5))" +"POLYGON ((16 -6.5, 16 -7, 15.5 -7, 15.5 -6.5, 16 -6.5))" +"POLYGON ((16.5 -6.5, 16.5 -7, 16 -7, 16 -6.5, 16.5 -6.5))" +"POLYGON ((17 -6.5, 17 -7, 16.5 -7, 16.5 -6.5, 17 -6.5))" +"POLYGON ((17.5 -6.5, 17.5 -7, 17 -7, 17 -6.5, 17.5 -6.5))" +"POLYGON ((18 -6.5, 18 -7, 17.5 -7, 17.5 -6.5, 18 -6.5))" +"POLYGON ((18.5 -6.5, 18.5 -7, 18 -7, 18 -6.5, 18.5 -6.5))" +"POLYGON ((19 -6.5, 19 -7, 18.5 -7, 18.5 -6.5, 19 -6.5))" +"POLYGON ((19.5 -6.5, 19.5 -7, 19 -7, 19 -6.5, 19.5 -6.5))" +"POLYGON ((20 -6.5, 20 -7, 19.5 -7, 19.5 -6.5, 20 -6.5))" +"POLYGON ((20.5 -6.5, 20.5 -7, 20 -7, 20 -6.5, 20.5 -6.5))" +"POLYGON ((21 -6.5, 21 -7, 20.5 -7, 20.5 -6.5, 21 -6.5))" +"POLYGON ((21.5 -6.5, 21.5 -7, 21 -7, 21 -6.5, 21.5 -6.5))" +"POLYGON ((22 -6.5, 22 -7, 21.5 -7, 21.5 -6.5, 22 -6.5))" +"POLYGON ((22.5 -6.5, 22.5 -7, 22 -7, 22 -6.5, 22.5 -6.5))" +"POLYGON ((23 -6.5, 23 -7, 22.5 -7, 22.5 -6.5, 23 -6.5))" +"POLYGON ((23.5 -6.5, 23.5 -7, 23 -7, 23 -6.5, 23.5 -6.5))" +"POLYGON ((24 -6.5, 24 -7, 23.5 -7, 23.5 -6.5, 24 -6.5))" +"POLYGON ((24.5 -6.5, 24.5 -7, 24 -7, 24 -6.5, 24.5 -6.5))" +"POLYGON ((25 -6.5, 25 -7, 24.5 -7, 24.5 -6.5, 25 -6.5))" +"POLYGON ((25.5 -6.5, 25.5 -7, 25 -7, 25 -6.5, 25.5 -6.5))" +"POLYGON ((26 -6.5, 26 -7, 25.5 -7, 25.5 -6.5, 26 -6.5))" +"POLYGON ((26.5 -6.5, 26.5 -7, 26 -7, 26 -6.5, 26.5 -6.5))" +"POLYGON ((27 -6.5, 27 -7, 26.5 -7, 26.5 -6.5, 27 -6.5))" +"POLYGON ((27.5 -6.5, 27.5 -7, 27 -7, 27 -6.5, 27.5 -6.5))" +"POLYGON ((28 -6.5, 28 -7, 27.5 -7, 27.5 -6.5, 28 -6.5))" +"POLYGON ((28.5 -6.5, 28.5 -7, 28 -7, 28 -6.5, 28.5 -6.5))" +"POLYGON ((29 -6.5, 29 -7, 28.5 -7, 28.5 -6.5, 29 -6.5))" +"POLYGON ((29.5 -6.5, 29.5 -7, 29 -7, 29 -6.5, 29.5 -6.5))" +"POLYGON ((30 -6.5, 30 -7, 29.5 -7, 29.5 -6.5, 30 -6.5))" +"POLYGON ((30.5 -6.5, 30.5 -7, 30 -7, 30 -6.5, 30.5 -6.5))" +"POLYGON ((31 -6.5, 31 -7, 30.5 -7, 30.5 -6.5, 31 -6.5))" +"POLYGON ((31.5 -6.5, 31.5 -7, 31 -7, 31 -6.5, 31.5 -6.5))" +"POLYGON ((32 -6.5, 32 -7, 31.5 -7, 31.5 -6.5, 32 -6.5))" +"POLYGON ((32.5 -6.5, 32.5 -7, 32 -7, 32 -6.5, 32.5 -6.5))" +"POLYGON ((33 -6.5, 33 -7, 32.5 -7, 32.5 -6.5, 33 -6.5))" +"POLYGON ((33.5 -6.5, 33.5 -7, 33 -7, 33 -6.5, 33.5 -6.5))" +"POLYGON ((34 -6.5, 34 -7, 33.5 -7, 33.5 -6.5, 34 -6.5))" +"POLYGON ((34.5 -6.5, 34.5 -7, 34 -7, 34 -6.5, 34.5 -6.5))" +"POLYGON ((35 -6.5, 35 -7, 34.5 -7, 34.5 -6.5, 35 -6.5))" +"POLYGON ((35.5 -6.5, 35.5 -7, 35 -7, 35 -6.5, 35.5 -6.5))" +"POLYGON ((36 -6.5, 36 -7, 35.5 -7, 35.5 -6.5, 36 -6.5))" +"POLYGON ((36.5 -6.5, 36.5 -7, 36 -7, 36 -6.5, 36.5 -6.5))" +"POLYGON ((37 -6.5, 37 -7, 36.5 -7, 36.5 -6.5, 37 -6.5))" +"POLYGON ((37.5 -6.5, 37.5 -7, 37 -7, 37 -6.5, 37.5 -6.5))" +"POLYGON ((38 -6.5, 38 -7, 37.5 -7, 37.5 -6.5, 38 -6.5))" +"POLYGON ((38.5 -6.5, 38.5 -7, 38 -7, 38 -6.5, 38.5 -6.5))" +"POLYGON ((39 -6.5, 39 -7, 38.5 -7, 38.5 -6.5, 39 -6.5))" +"POLYGON ((39.5 -6.5, 39.5 -7, 39 -7, 39 -6.5, 39.5 -6.5))" +"POLYGON ((13 -6, 13 -6.5, 12.5 -6.5, 12.5 -6, 13 -6))" +"POLYGON ((13.5 -6, 13.5 -6.5, 13 -6.5, 13 -6, 13.5 -6))" +"POLYGON ((14 -6, 14 -6.5, 13.5 -6.5, 13.5 -6, 14 -6))" +"POLYGON ((14.5 -6, 14.5 -6.5, 14 -6.5, 14 -6, 14.5 -6))" +"POLYGON ((15 -6, 15 -6.5, 14.5 -6.5, 14.5 -6, 15 -6))" +"POLYGON ((15.5 -6, 15.5 -6.5, 15 -6.5, 15 -6, 15.5 -6))" +"POLYGON ((16 -6, 16 -6.5, 15.5 -6.5, 15.5 -6, 16 -6))" +"POLYGON ((16.5 -6, 16.5 -6.5, 16 -6.5, 16 -6, 16.5 -6))" +"POLYGON ((17 -6, 17 -6.5, 16.5 -6.5, 16.5 -6, 17 -6))" +"POLYGON ((17.5 -6, 17.5 -6.5, 17 -6.5, 17 -6, 17.5 -6))" +"POLYGON ((18 -6, 18 -6.5, 17.5 -6.5, 17.5 -6, 18 -6))" +"POLYGON ((18.5 -6, 18.5 -6.5, 18 -6.5, 18 -6, 18.5 -6))" +"POLYGON ((19 -6, 19 -6.5, 18.5 -6.5, 18.5 -6, 19 -6))" +"POLYGON ((19.5 -6, 19.5 -6.5, 19 -6.5, 19 -6, 19.5 -6))" +"POLYGON ((20 -6, 20 -6.5, 19.5 -6.5, 19.5 -6, 20 -6))" +"POLYGON ((20.5 -6, 20.5 -6.5, 20 -6.5, 20 -6, 20.5 -6))" +"POLYGON ((21 -6, 21 -6.5, 20.5 -6.5, 20.5 -6, 21 -6))" +"POLYGON ((21.5 -6, 21.5 -6.5, 21 -6.5, 21 -6, 21.5 -6))" +"POLYGON ((22 -6, 22 -6.5, 21.5 -6.5, 21.5 -6, 22 -6))" +"POLYGON ((22.5 -6, 22.5 -6.5, 22 -6.5, 22 -6, 22.5 -6))" +"POLYGON ((23 -6, 23 -6.5, 22.5 -6.5, 22.5 -6, 23 -6))" +"POLYGON ((23.5 -6, 23.5 -6.5, 23 -6.5, 23 -6, 23.5 -6))" +"POLYGON ((24 -6, 24 -6.5, 23.5 -6.5, 23.5 -6, 24 -6))" +"POLYGON ((24.5 -6, 24.5 -6.5, 24 -6.5, 24 -6, 24.5 -6))" +"POLYGON ((25 -6, 25 -6.5, 24.5 -6.5, 24.5 -6, 25 -6))" +"POLYGON ((25.5 -6, 25.5 -6.5, 25 -6.5, 25 -6, 25.5 -6))" +"POLYGON ((26 -6, 26 -6.5, 25.5 -6.5, 25.5 -6, 26 -6))" +"POLYGON ((26.5 -6, 26.5 -6.5, 26 -6.5, 26 -6, 26.5 -6))" +"POLYGON ((27 -6, 27 -6.5, 26.5 -6.5, 26.5 -6, 27 -6))" +"POLYGON ((27.5 -6, 27.5 -6.5, 27 -6.5, 27 -6, 27.5 -6))" +"POLYGON ((28 -6, 28 -6.5, 27.5 -6.5, 27.5 -6, 28 -6))" +"POLYGON ((28.5 -6, 28.5 -6.5, 28 -6.5, 28 -6, 28.5 -6))" +"POLYGON ((29 -6, 29 -6.5, 28.5 -6.5, 28.5 -6, 29 -6))" +"POLYGON ((29.5 -6, 29.5 -6.5, 29 -6.5, 29 -6, 29.5 -6))" +"POLYGON ((30 -6, 30 -6.5, 29.5 -6.5, 29.5 -6, 30 -6))" +"POLYGON ((30.5 -6, 30.5 -6.5, 30 -6.5, 30 -6, 30.5 -6))" +"POLYGON ((31 -6, 31 -6.5, 30.5 -6.5, 30.5 -6, 31 -6))" +"POLYGON ((31.5 -6, 31.5 -6.5, 31 -6.5, 31 -6, 31.5 -6))" +"POLYGON ((32 -6, 32 -6.5, 31.5 -6.5, 31.5 -6, 32 -6))" +"POLYGON ((32.5 -6, 32.5 -6.5, 32 -6.5, 32 -6, 32.5 -6))" +"POLYGON ((33 -6, 33 -6.5, 32.5 -6.5, 32.5 -6, 33 -6))" +"POLYGON ((33.5 -6, 33.5 -6.5, 33 -6.5, 33 -6, 33.5 -6))" +"POLYGON ((34 -6, 34 -6.5, 33.5 -6.5, 33.5 -6, 34 -6))" +"POLYGON ((34.5 -6, 34.5 -6.5, 34 -6.5, 34 -6, 34.5 -6))" +"POLYGON ((35 -6, 35 -6.5, 34.5 -6.5, 34.5 -6, 35 -6))" +"POLYGON ((35.5 -6, 35.5 -6.5, 35 -6.5, 35 -6, 35.5 -6))" +"POLYGON ((36 -6, 36 -6.5, 35.5 -6.5, 35.5 -6, 36 -6))" +"POLYGON ((36.5 -6, 36.5 -6.5, 36 -6.5, 36 -6, 36.5 -6))" +"POLYGON ((37 -6, 37 -6.5, 36.5 -6.5, 36.5 -6, 37 -6))" +"POLYGON ((37.5 -6, 37.5 -6.5, 37 -6.5, 37 -6, 37.5 -6))" +"POLYGON ((38 -6, 38 -6.5, 37.5 -6.5, 37.5 -6, 38 -6))" +"POLYGON ((38.5 -6, 38.5 -6.5, 38 -6.5, 38 -6, 38.5 -6))" +"POLYGON ((39 -6, 39 -6.5, 38.5 -6.5, 38.5 -6, 39 -6))" +"POLYGON ((12.5 -5.5, 12.5 -6, 12 -6, 12 -5.5, 12.5 -5.5))" +"POLYGON ((13 -5.5, 13 -6, 12.5 -6, 12.5 -5.5, 13 -5.5))" +"POLYGON ((13.5 -5.5, 13.5 -6, 13 -6, 13 -5.5, 13.5 -5.5))" +"POLYGON ((14 -5.5, 14 -6, 13.5 -6, 13.5 -5.5, 14 -5.5))" +"POLYGON ((14.5 -5.5, 14.5 -6, 14 -6, 14 -5.5, 14.5 -5.5))" +"POLYGON ((15 -5.5, 15 -6, 14.5 -6, 14.5 -5.5, 15 -5.5))" +"POLYGON ((15.5 -5.5, 15.5 -6, 15 -6, 15 -5.5, 15.5 -5.5))" +"POLYGON ((16 -5.5, 16 -6, 15.5 -6, 15.5 -5.5, 16 -5.5))" +"POLYGON ((16.5 -5.5, 16.5 -6, 16 -6, 16 -5.5, 16.5 -5.5))" +"POLYGON ((17 -5.5, 17 -6, 16.5 -6, 16.5 -5.5, 17 -5.5))" +"POLYGON ((17.5 -5.5, 17.5 -6, 17 -6, 17 -5.5, 17.5 -5.5))" +"POLYGON ((18 -5.5, 18 -6, 17.5 -6, 17.5 -5.5, 18 -5.5))" +"POLYGON ((18.5 -5.5, 18.5 -6, 18 -6, 18 -5.5, 18.5 -5.5))" +"POLYGON ((19 -5.5, 19 -6, 18.5 -6, 18.5 -5.5, 19 -5.5))" +"POLYGON ((19.5 -5.5, 19.5 -6, 19 -6, 19 -5.5, 19.5 -5.5))" +"POLYGON ((20 -5.5, 20 -6, 19.5 -6, 19.5 -5.5, 20 -5.5))" +"POLYGON ((20.5 -5.5, 20.5 -6, 20 -6, 20 -5.5, 20.5 -5.5))" +"POLYGON ((21 -5.5, 21 -6, 20.5 -6, 20.5 -5.5, 21 -5.5))" +"POLYGON ((21.5 -5.5, 21.5 -6, 21 -6, 21 -5.5, 21.5 -5.5))" +"POLYGON ((22 -5.5, 22 -6, 21.5 -6, 21.5 -5.5, 22 -5.5))" +"POLYGON ((22.5 -5.5, 22.5 -6, 22 -6, 22 -5.5, 22.5 -5.5))" +"POLYGON ((23 -5.5, 23 -6, 22.5 -6, 22.5 -5.5, 23 -5.5))" +"POLYGON ((23.5 -5.5, 23.5 -6, 23 -6, 23 -5.5, 23.5 -5.5))" +"POLYGON ((24 -5.5, 24 -6, 23.5 -6, 23.5 -5.5, 24 -5.5))" +"POLYGON ((24.5 -5.5, 24.5 -6, 24 -6, 24 -5.5, 24.5 -5.5))" +"POLYGON ((25 -5.5, 25 -6, 24.5 -6, 24.5 -5.5, 25 -5.5))" +"POLYGON ((25.5 -5.5, 25.5 -6, 25 -6, 25 -5.5, 25.5 -5.5))" +"POLYGON ((26 -5.5, 26 -6, 25.5 -6, 25.5 -5.5, 26 -5.5))" +"POLYGON ((26.5 -5.5, 26.5 -6, 26 -6, 26 -5.5, 26.5 -5.5))" +"POLYGON ((27 -5.5, 27 -6, 26.5 -6, 26.5 -5.5, 27 -5.5))" +"POLYGON ((27.5 -5.5, 27.5 -6, 27 -6, 27 -5.5, 27.5 -5.5))" +"POLYGON ((28 -5.5, 28 -6, 27.5 -6, 27.5 -5.5, 28 -5.5))" +"POLYGON ((28.5 -5.5, 28.5 -6, 28 -6, 28 -5.5, 28.5 -5.5))" +"POLYGON ((29 -5.5, 29 -6, 28.5 -6, 28.5 -5.5, 29 -5.5))" +"POLYGON ((29.5 -5.5, 29.5 -6, 29 -6, 29 -5.5, 29.5 -5.5))" +"POLYGON ((30 -5.5, 30 -6, 29.5 -6, 29.5 -5.5, 30 -5.5))" +"POLYGON ((30.5 -5.5, 30.5 -6, 30 -6, 30 -5.5, 30.5 -5.5))" +"POLYGON ((31 -5.5, 31 -6, 30.5 -6, 30.5 -5.5, 31 -5.5))" +"POLYGON ((31.5 -5.5, 31.5 -6, 31 -6, 31 -5.5, 31.5 -5.5))" +"POLYGON ((32 -5.5, 32 -6, 31.5 -6, 31.5 -5.5, 32 -5.5))" +"POLYGON ((32.5 -5.5, 32.5 -6, 32 -6, 32 -5.5, 32.5 -5.5))" +"POLYGON ((33 -5.5, 33 -6, 32.5 -6, 32.5 -5.5, 33 -5.5))" +"POLYGON ((33.5 -5.5, 33.5 -6, 33 -6, 33 -5.5, 33.5 -5.5))" +"POLYGON ((34 -5.5, 34 -6, 33.5 -6, 33.5 -5.5, 34 -5.5))" +"POLYGON ((34.5 -5.5, 34.5 -6, 34 -6, 34 -5.5, 34.5 -5.5))" +"POLYGON ((35 -5.5, 35 -6, 34.5 -6, 34.5 -5.5, 35 -5.5))" +"POLYGON ((35.5 -5.5, 35.5 -6, 35 -6, 35 -5.5, 35.5 -5.5))" +"POLYGON ((36 -5.5, 36 -6, 35.5 -6, 35.5 -5.5, 36 -5.5))" +"POLYGON ((36.5 -5.5, 36.5 -6, 36 -6, 36 -5.5, 36.5 -5.5))" +"POLYGON ((37 -5.5, 37 -6, 36.5 -6, 36.5 -5.5, 37 -5.5))" +"POLYGON ((37.5 -5.5, 37.5 -6, 37 -6, 37 -5.5, 37.5 -5.5))" +"POLYGON ((38 -5.5, 38 -6, 37.5 -6, 37.5 -5.5, 38 -5.5))" +"POLYGON ((38.5 -5.5, 38.5 -6, 38 -6, 38 -5.5, 38.5 -5.5))" +"POLYGON ((39 -5.5, 39 -6, 38.5 -6, 38.5 -5.5, 39 -5.5))" +"POLYGON ((12.5 -5, 12.5 -5.5, 12 -5.5, 12 -5, 12.5 -5))" +"POLYGON ((13 -5, 13 -5.5, 12.5 -5.5, 12.5 -5, 13 -5))" +"POLYGON ((13.5 -5, 13.5 -5.5, 13 -5.5, 13 -5, 13.5 -5))" +"POLYGON ((14 -5, 14 -5.5, 13.5 -5.5, 13.5 -5, 14 -5))" +"POLYGON ((14.5 -5, 14.5 -5.5, 14 -5.5, 14 -5, 14.5 -5))" +"POLYGON ((15 -5, 15 -5.5, 14.5 -5.5, 14.5 -5, 15 -5))" +"POLYGON ((15.5 -5, 15.5 -5.5, 15 -5.5, 15 -5, 15.5 -5))" +"POLYGON ((16 -5, 16 -5.5, 15.5 -5.5, 15.5 -5, 16 -5))" +"POLYGON ((16.5 -5, 16.5 -5.5, 16 -5.5, 16 -5, 16.5 -5))" +"POLYGON ((17 -5, 17 -5.5, 16.5 -5.5, 16.5 -5, 17 -5))" +"POLYGON ((17.5 -5, 17.5 -5.5, 17 -5.5, 17 -5, 17.5 -5))" +"POLYGON ((18 -5, 18 -5.5, 17.5 -5.5, 17.5 -5, 18 -5))" +"POLYGON ((18.5 -5, 18.5 -5.5, 18 -5.5, 18 -5, 18.5 -5))" +"POLYGON ((19 -5, 19 -5.5, 18.5 -5.5, 18.5 -5, 19 -5))" +"POLYGON ((19.5 -5, 19.5 -5.5, 19 -5.5, 19 -5, 19.5 -5))" +"POLYGON ((20 -5, 20 -5.5, 19.5 -5.5, 19.5 -5, 20 -5))" +"POLYGON ((20.5 -5, 20.5 -5.5, 20 -5.5, 20 -5, 20.5 -5))" +"POLYGON ((21 -5, 21 -5.5, 20.5 -5.5, 20.5 -5, 21 -5))" +"POLYGON ((21.5 -5, 21.5 -5.5, 21 -5.5, 21 -5, 21.5 -5))" +"POLYGON ((22 -5, 22 -5.5, 21.5 -5.5, 21.5 -5, 22 -5))" +"POLYGON ((22.5 -5, 22.5 -5.5, 22 -5.5, 22 -5, 22.5 -5))" +"POLYGON ((23 -5, 23 -5.5, 22.5 -5.5, 22.5 -5, 23 -5))" +"POLYGON ((23.5 -5, 23.5 -5.5, 23 -5.5, 23 -5, 23.5 -5))" +"POLYGON ((24 -5, 24 -5.5, 23.5 -5.5, 23.5 -5, 24 -5))" +"POLYGON ((24.5 -5, 24.5 -5.5, 24 -5.5, 24 -5, 24.5 -5))" +"POLYGON ((25 -5, 25 -5.5, 24.5 -5.5, 24.5 -5, 25 -5))" +"POLYGON ((25.5 -5, 25.5 -5.5, 25 -5.5, 25 -5, 25.5 -5))" +"POLYGON ((26 -5, 26 -5.5, 25.5 -5.5, 25.5 -5, 26 -5))" +"POLYGON ((26.5 -5, 26.5 -5.5, 26 -5.5, 26 -5, 26.5 -5))" +"POLYGON ((27 -5, 27 -5.5, 26.5 -5.5, 26.5 -5, 27 -5))" +"POLYGON ((27.5 -5, 27.5 -5.5, 27 -5.5, 27 -5, 27.5 -5))" +"POLYGON ((28 -5, 28 -5.5, 27.5 -5.5, 27.5 -5, 28 -5))" +"POLYGON ((28.5 -5, 28.5 -5.5, 28 -5.5, 28 -5, 28.5 -5))" +"POLYGON ((29 -5, 29 -5.5, 28.5 -5.5, 28.5 -5, 29 -5))" +"POLYGON ((29.5 -5, 29.5 -5.5, 29 -5.5, 29 -5, 29.5 -5))" +"POLYGON ((30 -5, 30 -5.5, 29.5 -5.5, 29.5 -5, 30 -5))" +"POLYGON ((30.5 -5, 30.5 -5.5, 30 -5.5, 30 -5, 30.5 -5))" +"POLYGON ((31 -5, 31 -5.5, 30.5 -5.5, 30.5 -5, 31 -5))" +"POLYGON ((31.5 -5, 31.5 -5.5, 31 -5.5, 31 -5, 31.5 -5))" +"POLYGON ((32 -5, 32 -5.5, 31.5 -5.5, 31.5 -5, 32 -5))" +"POLYGON ((32.5 -5, 32.5 -5.5, 32 -5.5, 32 -5, 32.5 -5))" +"POLYGON ((33 -5, 33 -5.5, 32.5 -5.5, 32.5 -5, 33 -5))" +"POLYGON ((33.5 -5, 33.5 -5.5, 33 -5.5, 33 -5, 33.5 -5))" +"POLYGON ((34 -5, 34 -5.5, 33.5 -5.5, 33.5 -5, 34 -5))" +"POLYGON ((34.5 -5, 34.5 -5.5, 34 -5.5, 34 -5, 34.5 -5))" +"POLYGON ((35 -5, 35 -5.5, 34.5 -5.5, 34.5 -5, 35 -5))" +"POLYGON ((35.5 -5, 35.5 -5.5, 35 -5.5, 35 -5, 35.5 -5))" +"POLYGON ((36 -5, 36 -5.5, 35.5 -5.5, 35.5 -5, 36 -5))" +"POLYGON ((36.5 -5, 36.5 -5.5, 36 -5.5, 36 -5, 36.5 -5))" +"POLYGON ((37 -5, 37 -5.5, 36.5 -5.5, 36.5 -5, 37 -5))" +"POLYGON ((37.5 -5, 37.5 -5.5, 37 -5.5, 37 -5, 37.5 -5))" +"POLYGON ((38 -5, 38 -5.5, 37.5 -5.5, 37.5 -5, 38 -5))" +"POLYGON ((38.5 -5, 38.5 -5.5, 38 -5.5, 38 -5, 38.5 -5))" +"POLYGON ((39 -5, 39 -5.5, 38.5 -5.5, 38.5 -5, 39 -5))" +"POLYGON ((40 -5, 40 -5.5, 39.5 -5.5, 39.5 -5, 40 -5))" +"POLYGON ((12.5 -4.5, 12.5 -5, 12 -5, 12 -4.5, 12.5 -4.5))" +"POLYGON ((13 -4.5, 13 -5, 12.5 -5, 12.5 -4.5, 13 -4.5))" +"POLYGON ((13.5 -4.5, 13.5 -5, 13 -5, 13 -4.5, 13.5 -4.5))" +"POLYGON ((14 -4.5, 14 -5, 13.5 -5, 13.5 -4.5, 14 -4.5))" +"POLYGON ((14.5 -4.5, 14.5 -5, 14 -5, 14 -4.5, 14.5 -4.5))" +"POLYGON ((15 -4.5, 15 -5, 14.5 -5, 14.5 -4.5, 15 -4.5))" +"POLYGON ((15.5 -4.5, 15.5 -5, 15 -5, 15 -4.5, 15.5 -4.5))" +"POLYGON ((16 -4.5, 16 -5, 15.5 -5, 15.5 -4.5, 16 -4.5))" +"POLYGON ((16.5 -4.5, 16.5 -5, 16 -5, 16 -4.5, 16.5 -4.5))" +"POLYGON ((17 -4.5, 17 -5, 16.5 -5, 16.5 -4.5, 17 -4.5))" +"POLYGON ((17.5 -4.5, 17.5 -5, 17 -5, 17 -4.5, 17.5 -4.5))" +"POLYGON ((18 -4.5, 18 -5, 17.5 -5, 17.5 -4.5, 18 -4.5))" +"POLYGON ((18.5 -4.5, 18.5 -5, 18 -5, 18 -4.5, 18.5 -4.5))" +"POLYGON ((19 -4.5, 19 -5, 18.5 -5, 18.5 -4.5, 19 -4.5))" +"POLYGON ((19.5 -4.5, 19.5 -5, 19 -5, 19 -4.5, 19.5 -4.5))" +"POLYGON ((20 -4.5, 20 -5, 19.5 -5, 19.5 -4.5, 20 -4.5))" +"POLYGON ((20.5 -4.5, 20.5 -5, 20 -5, 20 -4.5, 20.5 -4.5))" +"POLYGON ((21 -4.5, 21 -5, 20.5 -5, 20.5 -4.5, 21 -4.5))" +"POLYGON ((21.5 -4.5, 21.5 -5, 21 -5, 21 -4.5, 21.5 -4.5))" +"POLYGON ((22 -4.5, 22 -5, 21.5 -5, 21.5 -4.5, 22 -4.5))" +"POLYGON ((22.5 -4.5, 22.5 -5, 22 -5, 22 -4.5, 22.5 -4.5))" +"POLYGON ((23 -4.5, 23 -5, 22.5 -5, 22.5 -4.5, 23 -4.5))" +"POLYGON ((23.5 -4.5, 23.5 -5, 23 -5, 23 -4.5, 23.5 -4.5))" +"POLYGON ((24 -4.5, 24 -5, 23.5 -5, 23.5 -4.5, 24 -4.5))" +"POLYGON ((24.5 -4.5, 24.5 -5, 24 -5, 24 -4.5, 24.5 -4.5))" +"POLYGON ((25 -4.5, 25 -5, 24.5 -5, 24.5 -4.5, 25 -4.5))" +"POLYGON ((25.5 -4.5, 25.5 -5, 25 -5, 25 -4.5, 25.5 -4.5))" +"POLYGON ((26 -4.5, 26 -5, 25.5 -5, 25.5 -4.5, 26 -4.5))" +"POLYGON ((26.5 -4.5, 26.5 -5, 26 -5, 26 -4.5, 26.5 -4.5))" +"POLYGON ((27 -4.5, 27 -5, 26.5 -5, 26.5 -4.5, 27 -4.5))" +"POLYGON ((27.5 -4.5, 27.5 -5, 27 -5, 27 -4.5, 27.5 -4.5))" +"POLYGON ((28 -4.5, 28 -5, 27.5 -5, 27.5 -4.5, 28 -4.5))" +"POLYGON ((28.5 -4.5, 28.5 -5, 28 -5, 28 -4.5, 28.5 -4.5))" +"POLYGON ((29 -4.5, 29 -5, 28.5 -5, 28.5 -4.5, 29 -4.5))" +"POLYGON ((29.5 -4.5, 29.5 -5, 29 -5, 29 -4.5, 29.5 -4.5))" +"POLYGON ((30 -4.5, 30 -5, 29.5 -5, 29.5 -4.5, 30 -4.5))" +"POLYGON ((30.5 -4.5, 30.5 -5, 30 -5, 30 -4.5, 30.5 -4.5))" +"POLYGON ((31 -4.5, 31 -5, 30.5 -5, 30.5 -4.5, 31 -4.5))" +"POLYGON ((31.5 -4.5, 31.5 -5, 31 -5, 31 -4.5, 31.5 -4.5))" +"POLYGON ((32 -4.5, 32 -5, 31.5 -5, 31.5 -4.5, 32 -4.5))" +"POLYGON ((32.5 -4.5, 32.5 -5, 32 -5, 32 -4.5, 32.5 -4.5))" +"POLYGON ((33 -4.5, 33 -5, 32.5 -5, 32.5 -4.5, 33 -4.5))" +"POLYGON ((33.5 -4.5, 33.5 -5, 33 -5, 33 -4.5, 33.5 -4.5))" +"POLYGON ((34 -4.5, 34 -5, 33.5 -5, 33.5 -4.5, 34 -4.5))" +"POLYGON ((34.5 -4.5, 34.5 -5, 34 -5, 34 -4.5, 34.5 -4.5))" +"POLYGON ((35 -4.5, 35 -5, 34.5 -5, 34.5 -4.5, 35 -4.5))" +"POLYGON ((35.5 -4.5, 35.5 -5, 35 -5, 35 -4.5, 35.5 -4.5))" +"POLYGON ((36 -4.5, 36 -5, 35.5 -5, 35.5 -4.5, 36 -4.5))" +"POLYGON ((36.5 -4.5, 36.5 -5, 36 -5, 36 -4.5, 36.5 -4.5))" +"POLYGON ((37 -4.5, 37 -5, 36.5 -5, 36.5 -4.5, 37 -4.5))" +"POLYGON ((37.5 -4.5, 37.5 -5, 37 -5, 37 -4.5, 37.5 -4.5))" +"POLYGON ((38 -4.5, 38 -5, 37.5 -5, 37.5 -4.5, 38 -4.5))" +"POLYGON ((38.5 -4.5, 38.5 -5, 38 -5, 38 -4.5, 38.5 -4.5))" +"POLYGON ((39 -4.5, 39 -5, 38.5 -5, 38.5 -4.5, 39 -4.5))" +"POLYGON ((12 -4, 12 -4.5, 11.5 -4.5, 11.5 -4, 12 -4))" +"POLYGON ((12.5 -4, 12.5 -4.5, 12 -4.5, 12 -4, 12.5 -4))" +"POLYGON ((13 -4, 13 -4.5, 12.5 -4.5, 12.5 -4, 13 -4))" +"POLYGON ((13.5 -4, 13.5 -4.5, 13 -4.5, 13 -4, 13.5 -4))" +"POLYGON ((14 -4, 14 -4.5, 13.5 -4.5, 13.5 -4, 14 -4))" +"POLYGON ((14.5 -4, 14.5 -4.5, 14 -4.5, 14 -4, 14.5 -4))" +"POLYGON ((15 -4, 15 -4.5, 14.5 -4.5, 14.5 -4, 15 -4))" +"POLYGON ((15.5 -4, 15.5 -4.5, 15 -4.5, 15 -4, 15.5 -4))" +"POLYGON ((16 -4, 16 -4.5, 15.5 -4.5, 15.5 -4, 16 -4))" +"POLYGON ((16.5 -4, 16.5 -4.5, 16 -4.5, 16 -4, 16.5 -4))" +"POLYGON ((17 -4, 17 -4.5, 16.5 -4.5, 16.5 -4, 17 -4))" +"POLYGON ((17.5 -4, 17.5 -4.5, 17 -4.5, 17 -4, 17.5 -4))" +"POLYGON ((18 -4, 18 -4.5, 17.5 -4.5, 17.5 -4, 18 -4))" +"POLYGON ((18.5 -4, 18.5 -4.5, 18 -4.5, 18 -4, 18.5 -4))" +"POLYGON ((19 -4, 19 -4.5, 18.5 -4.5, 18.5 -4, 19 -4))" +"POLYGON ((19.5 -4, 19.5 -4.5, 19 -4.5, 19 -4, 19.5 -4))" +"POLYGON ((20 -4, 20 -4.5, 19.5 -4.5, 19.5 -4, 20 -4))" +"POLYGON ((20.5 -4, 20.5 -4.5, 20 -4.5, 20 -4, 20.5 -4))" +"POLYGON ((21 -4, 21 -4.5, 20.5 -4.5, 20.5 -4, 21 -4))" +"POLYGON ((21.5 -4, 21.5 -4.5, 21 -4.5, 21 -4, 21.5 -4))" +"POLYGON ((22 -4, 22 -4.5, 21.5 -4.5, 21.5 -4, 22 -4))" +"POLYGON ((22.5 -4, 22.5 -4.5, 22 -4.5, 22 -4, 22.5 -4))" +"POLYGON ((23 -4, 23 -4.5, 22.5 -4.5, 22.5 -4, 23 -4))" +"POLYGON ((23.5 -4, 23.5 -4.5, 23 -4.5, 23 -4, 23.5 -4))" +"POLYGON ((24 -4, 24 -4.5, 23.5 -4.5, 23.5 -4, 24 -4))" +"POLYGON ((24.5 -4, 24.5 -4.5, 24 -4.5, 24 -4, 24.5 -4))" +"POLYGON ((25 -4, 25 -4.5, 24.5 -4.5, 24.5 -4, 25 -4))" +"POLYGON ((25.5 -4, 25.5 -4.5, 25 -4.5, 25 -4, 25.5 -4))" +"POLYGON ((26 -4, 26 -4.5, 25.5 -4.5, 25.5 -4, 26 -4))" +"POLYGON ((26.5 -4, 26.5 -4.5, 26 -4.5, 26 -4, 26.5 -4))" +"POLYGON ((27 -4, 27 -4.5, 26.5 -4.5, 26.5 -4, 27 -4))" +"POLYGON ((27.5 -4, 27.5 -4.5, 27 -4.5, 27 -4, 27.5 -4))" +"POLYGON ((28 -4, 28 -4.5, 27.5 -4.5, 27.5 -4, 28 -4))" +"POLYGON ((28.5 -4, 28.5 -4.5, 28 -4.5, 28 -4, 28.5 -4))" +"POLYGON ((29 -4, 29 -4.5, 28.5 -4.5, 28.5 -4, 29 -4))" +"POLYGON ((29.5 -4, 29.5 -4.5, 29 -4.5, 29 -4, 29.5 -4))" +"POLYGON ((30 -4, 30 -4.5, 29.5 -4.5, 29.5 -4, 30 -4))" +"POLYGON ((30.5 -4, 30.5 -4.5, 30 -4.5, 30 -4, 30.5 -4))" +"POLYGON ((31 -4, 31 -4.5, 30.5 -4.5, 30.5 -4, 31 -4))" +"POLYGON ((31.5 -4, 31.5 -4.5, 31 -4.5, 31 -4, 31.5 -4))" +"POLYGON ((32 -4, 32 -4.5, 31.5 -4.5, 31.5 -4, 32 -4))" +"POLYGON ((32.5 -4, 32.5 -4.5, 32 -4.5, 32 -4, 32.5 -4))" +"POLYGON ((33 -4, 33 -4.5, 32.5 -4.5, 32.5 -4, 33 -4))" +"POLYGON ((33.5 -4, 33.5 -4.5, 33 -4.5, 33 -4, 33.5 -4))" +"POLYGON ((34 -4, 34 -4.5, 33.5 -4.5, 33.5 -4, 34 -4))" +"POLYGON ((34.5 -4, 34.5 -4.5, 34 -4.5, 34 -4, 34.5 -4))" +"POLYGON ((35 -4, 35 -4.5, 34.5 -4.5, 34.5 -4, 35 -4))" +"POLYGON ((35.5 -4, 35.5 -4.5, 35 -4.5, 35 -4, 35.5 -4))" +"POLYGON ((36 -4, 36 -4.5, 35.5 -4.5, 35.5 -4, 36 -4))" +"POLYGON ((36.5 -4, 36.5 -4.5, 36 -4.5, 36 -4, 36.5 -4))" +"POLYGON ((37 -4, 37 -4.5, 36.5 -4.5, 36.5 -4, 37 -4))" +"POLYGON ((37.5 -4, 37.5 -4.5, 37 -4.5, 37 -4, 37.5 -4))" +"POLYGON ((38 -4, 38 -4.5, 37.5 -4.5, 37.5 -4, 38 -4))" +"POLYGON ((38.5 -4, 38.5 -4.5, 38 -4.5, 38 -4, 38.5 -4))" +"POLYGON ((39 -4, 39 -4.5, 38.5 -4.5, 38.5 -4, 39 -4))" +"POLYGON ((39.5 -4, 39.5 -4.5, 39 -4.5, 39 -4, 39.5 -4))" +"POLYGON ((11.5 -3.5, 11.5 -4, 11 -4, 11 -3.5, 11.5 -3.5))" +"POLYGON ((12 -3.5, 12 -4, 11.5 -4, 11.5 -3.5, 12 -3.5))" +"POLYGON ((12.5 -3.5, 12.5 -4, 12 -4, 12 -3.5, 12.5 -3.5))" +"POLYGON ((13 -3.5, 13 -4, 12.5 -4, 12.5 -3.5, 13 -3.5))" +"POLYGON ((13.5 -3.5, 13.5 -4, 13 -4, 13 -3.5, 13.5 -3.5))" +"POLYGON ((14 -3.5, 14 -4, 13.5 -4, 13.5 -3.5, 14 -3.5))" +"POLYGON ((14.5 -3.5, 14.5 -4, 14 -4, 14 -3.5, 14.5 -3.5))" +"POLYGON ((15 -3.5, 15 -4, 14.5 -4, 14.5 -3.5, 15 -3.5))" +"POLYGON ((15.5 -3.5, 15.5 -4, 15 -4, 15 -3.5, 15.5 -3.5))" +"POLYGON ((16 -3.5, 16 -4, 15.5 -4, 15.5 -3.5, 16 -3.5))" +"POLYGON ((16.5 -3.5, 16.5 -4, 16 -4, 16 -3.5, 16.5 -3.5))" +"POLYGON ((17 -3.5, 17 -4, 16.5 -4, 16.5 -3.5, 17 -3.5))" +"POLYGON ((17.5 -3.5, 17.5 -4, 17 -4, 17 -3.5, 17.5 -3.5))" +"POLYGON ((18 -3.5, 18 -4, 17.5 -4, 17.5 -3.5, 18 -3.5))" +"POLYGON ((18.5 -3.5, 18.5 -4, 18 -4, 18 -3.5, 18.5 -3.5))" +"POLYGON ((19 -3.5, 19 -4, 18.5 -4, 18.5 -3.5, 19 -3.5))" +"POLYGON ((19.5 -3.5, 19.5 -4, 19 -4, 19 -3.5, 19.5 -3.5))" +"POLYGON ((20 -3.5, 20 -4, 19.5 -4, 19.5 -3.5, 20 -3.5))" +"POLYGON ((20.5 -3.5, 20.5 -4, 20 -4, 20 -3.5, 20.5 -3.5))" +"POLYGON ((21 -3.5, 21 -4, 20.5 -4, 20.5 -3.5, 21 -3.5))" +"POLYGON ((21.5 -3.5, 21.5 -4, 21 -4, 21 -3.5, 21.5 -3.5))" +"POLYGON ((22 -3.5, 22 -4, 21.5 -4, 21.5 -3.5, 22 -3.5))" +"POLYGON ((22.5 -3.5, 22.5 -4, 22 -4, 22 -3.5, 22.5 -3.5))" +"POLYGON ((23 -3.5, 23 -4, 22.5 -4, 22.5 -3.5, 23 -3.5))" +"POLYGON ((23.5 -3.5, 23.5 -4, 23 -4, 23 -3.5, 23.5 -3.5))" +"POLYGON ((24 -3.5, 24 -4, 23.5 -4, 23.5 -3.5, 24 -3.5))" +"POLYGON ((24.5 -3.5, 24.5 -4, 24 -4, 24 -3.5, 24.5 -3.5))" +"POLYGON ((25 -3.5, 25 -4, 24.5 -4, 24.5 -3.5, 25 -3.5))" +"POLYGON ((25.5 -3.5, 25.5 -4, 25 -4, 25 -3.5, 25.5 -3.5))" +"POLYGON ((26 -3.5, 26 -4, 25.5 -4, 25.5 -3.5, 26 -3.5))" +"POLYGON ((26.5 -3.5, 26.5 -4, 26 -4, 26 -3.5, 26.5 -3.5))" +"POLYGON ((27 -3.5, 27 -4, 26.5 -4, 26.5 -3.5, 27 -3.5))" +"POLYGON ((27.5 -3.5, 27.5 -4, 27 -4, 27 -3.5, 27.5 -3.5))" +"POLYGON ((28 -3.5, 28 -4, 27.5 -4, 27.5 -3.5, 28 -3.5))" +"POLYGON ((28.5 -3.5, 28.5 -4, 28 -4, 28 -3.5, 28.5 -3.5))" +"POLYGON ((29 -3.5, 29 -4, 28.5 -4, 28.5 -3.5, 29 -3.5))" +"POLYGON ((29.5 -3.5, 29.5 -4, 29 -4, 29 -3.5, 29.5 -3.5))" +"POLYGON ((30 -3.5, 30 -4, 29.5 -4, 29.5 -3.5, 30 -3.5))" +"POLYGON ((30.5 -3.5, 30.5 -4, 30 -4, 30 -3.5, 30.5 -3.5))" +"POLYGON ((31 -3.5, 31 -4, 30.5 -4, 30.5 -3.5, 31 -3.5))" +"POLYGON ((31.5 -3.5, 31.5 -4, 31 -4, 31 -3.5, 31.5 -3.5))" +"POLYGON ((32 -3.5, 32 -4, 31.5 -4, 31.5 -3.5, 32 -3.5))" +"POLYGON ((32.5 -3.5, 32.5 -4, 32 -4, 32 -3.5, 32.5 -3.5))" +"POLYGON ((33 -3.5, 33 -4, 32.5 -4, 32.5 -3.5, 33 -3.5))" +"POLYGON ((33.5 -3.5, 33.5 -4, 33 -4, 33 -3.5, 33.5 -3.5))" +"POLYGON ((34 -3.5, 34 -4, 33.5 -4, 33.5 -3.5, 34 -3.5))" +"POLYGON ((34.5 -3.5, 34.5 -4, 34 -4, 34 -3.5, 34.5 -3.5))" +"POLYGON ((35 -3.5, 35 -4, 34.5 -4, 34.5 -3.5, 35 -3.5))" +"POLYGON ((35.5 -3.5, 35.5 -4, 35 -4, 35 -3.5, 35.5 -3.5))" +"POLYGON ((36 -3.5, 36 -4, 35.5 -4, 35.5 -3.5, 36 -3.5))" +"POLYGON ((36.5 -3.5, 36.5 -4, 36 -4, 36 -3.5, 36.5 -3.5))" +"POLYGON ((37 -3.5, 37 -4, 36.5 -4, 36.5 -3.5, 37 -3.5))" +"POLYGON ((37.5 -3.5, 37.5 -4, 37 -4, 37 -3.5, 37.5 -3.5))" +"POLYGON ((38 -3.5, 38 -4, 37.5 -4, 37.5 -3.5, 38 -3.5))" +"POLYGON ((38.5 -3.5, 38.5 -4, 38 -4, 38 -3.5, 38.5 -3.5))" +"POLYGON ((39 -3.5, 39 -4, 38.5 -4, 38.5 -3.5, 39 -3.5))" +"POLYGON ((39.5 -3.5, 39.5 -4, 39 -4, 39 -3.5, 39.5 -3.5))" +"POLYGON ((40 -3.5, 40 -4, 39.5 -4, 39.5 -3.5, 40 -3.5))" +"POLYGON ((11 -3, 11 -3.5, 10.5 -3.5, 10.5 -3, 11 -3))" +"POLYGON ((11.5 -3, 11.5 -3.5, 11 -3.5, 11 -3, 11.5 -3))" +"POLYGON ((12 -3, 12 -3.5, 11.5 -3.5, 11.5 -3, 12 -3))" +"POLYGON ((12.5 -3, 12.5 -3.5, 12 -3.5, 12 -3, 12.5 -3))" +"POLYGON ((13 -3, 13 -3.5, 12.5 -3.5, 12.5 -3, 13 -3))" +"POLYGON ((13.5 -3, 13.5 -3.5, 13 -3.5, 13 -3, 13.5 -3))" +"POLYGON ((14 -3, 14 -3.5, 13.5 -3.5, 13.5 -3, 14 -3))" +"POLYGON ((14.5 -3, 14.5 -3.5, 14 -3.5, 14 -3, 14.5 -3))" +"POLYGON ((15 -3, 15 -3.5, 14.5 -3.5, 14.5 -3, 15 -3))" +"POLYGON ((15.5 -3, 15.5 -3.5, 15 -3.5, 15 -3, 15.5 -3))" +"POLYGON ((16 -3, 16 -3.5, 15.5 -3.5, 15.5 -3, 16 -3))" +"POLYGON ((16.5 -3, 16.5 -3.5, 16 -3.5, 16 -3, 16.5 -3))" +"POLYGON ((17 -3, 17 -3.5, 16.5 -3.5, 16.5 -3, 17 -3))" +"POLYGON ((17.5 -3, 17.5 -3.5, 17 -3.5, 17 -3, 17.5 -3))" +"POLYGON ((18 -3, 18 -3.5, 17.5 -3.5, 17.5 -3, 18 -3))" +"POLYGON ((18.5 -3, 18.5 -3.5, 18 -3.5, 18 -3, 18.5 -3))" +"POLYGON ((19 -3, 19 -3.5, 18.5 -3.5, 18.5 -3, 19 -3))" +"POLYGON ((19.5 -3, 19.5 -3.5, 19 -3.5, 19 -3, 19.5 -3))" +"POLYGON ((20 -3, 20 -3.5, 19.5 -3.5, 19.5 -3, 20 -3))" +"POLYGON ((20.5 -3, 20.5 -3.5, 20 -3.5, 20 -3, 20.5 -3))" +"POLYGON ((21 -3, 21 -3.5, 20.5 -3.5, 20.5 -3, 21 -3))" +"POLYGON ((21.5 -3, 21.5 -3.5, 21 -3.5, 21 -3, 21.5 -3))" +"POLYGON ((22 -3, 22 -3.5, 21.5 -3.5, 21.5 -3, 22 -3))" +"POLYGON ((22.5 -3, 22.5 -3.5, 22 -3.5, 22 -3, 22.5 -3))" +"POLYGON ((23 -3, 23 -3.5, 22.5 -3.5, 22.5 -3, 23 -3))" +"POLYGON ((23.5 -3, 23.5 -3.5, 23 -3.5, 23 -3, 23.5 -3))" +"POLYGON ((24 -3, 24 -3.5, 23.5 -3.5, 23.5 -3, 24 -3))" +"POLYGON ((24.5 -3, 24.5 -3.5, 24 -3.5, 24 -3, 24.5 -3))" +"POLYGON ((25 -3, 25 -3.5, 24.5 -3.5, 24.5 -3, 25 -3))" +"POLYGON ((25.5 -3, 25.5 -3.5, 25 -3.5, 25 -3, 25.5 -3))" +"POLYGON ((26 -3, 26 -3.5, 25.5 -3.5, 25.5 -3, 26 -3))" +"POLYGON ((26.5 -3, 26.5 -3.5, 26 -3.5, 26 -3, 26.5 -3))" +"POLYGON ((27 -3, 27 -3.5, 26.5 -3.5, 26.5 -3, 27 -3))" +"POLYGON ((27.5 -3, 27.5 -3.5, 27 -3.5, 27 -3, 27.5 -3))" +"POLYGON ((28 -3, 28 -3.5, 27.5 -3.5, 27.5 -3, 28 -3))" +"POLYGON ((28.5 -3, 28.5 -3.5, 28 -3.5, 28 -3, 28.5 -3))" +"POLYGON ((29 -3, 29 -3.5, 28.5 -3.5, 28.5 -3, 29 -3))" +"POLYGON ((29.5 -3, 29.5 -3.5, 29 -3.5, 29 -3, 29.5 -3))" +"POLYGON ((30 -3, 30 -3.5, 29.5 -3.5, 29.5 -3, 30 -3))" +"POLYGON ((30.5 -3, 30.5 -3.5, 30 -3.5, 30 -3, 30.5 -3))" +"POLYGON ((31 -3, 31 -3.5, 30.5 -3.5, 30.5 -3, 31 -3))" +"POLYGON ((31.5 -3, 31.5 -3.5, 31 -3.5, 31 -3, 31.5 -3))" +"POLYGON ((32 -3, 32 -3.5, 31.5 -3.5, 31.5 -3, 32 -3))" +"POLYGON ((32.5 -3, 32.5 -3.5, 32 -3.5, 32 -3, 32.5 -3))" +"POLYGON ((33 -3, 33 -3.5, 32.5 -3.5, 32.5 -3, 33 -3))" +"POLYGON ((33.5 -3, 33.5 -3.5, 33 -3.5, 33 -3, 33.5 -3))" +"POLYGON ((34 -3, 34 -3.5, 33.5 -3.5, 33.5 -3, 34 -3))" +"POLYGON ((34.5 -3, 34.5 -3.5, 34 -3.5, 34 -3, 34.5 -3))" +"POLYGON ((35 -3, 35 -3.5, 34.5 -3.5, 34.5 -3, 35 -3))" +"POLYGON ((35.5 -3, 35.5 -3.5, 35 -3.5, 35 -3, 35.5 -3))" +"POLYGON ((36 -3, 36 -3.5, 35.5 -3.5, 35.5 -3, 36 -3))" +"POLYGON ((36.5 -3, 36.5 -3.5, 36 -3.5, 36 -3, 36.5 -3))" +"POLYGON ((37 -3, 37 -3.5, 36.5 -3.5, 36.5 -3, 37 -3))" +"POLYGON ((37.5 -3, 37.5 -3.5, 37 -3.5, 37 -3, 37.5 -3))" +"POLYGON ((38 -3, 38 -3.5, 37.5 -3.5, 37.5 -3, 38 -3))" +"POLYGON ((38.5 -3, 38.5 -3.5, 38 -3.5, 38 -3, 38.5 -3))" +"POLYGON ((39 -3, 39 -3.5, 38.5 -3.5, 38.5 -3, 39 -3))" +"POLYGON ((39.5 -3, 39.5 -3.5, 39 -3.5, 39 -3, 39.5 -3))" +"POLYGON ((40 -3, 40 -3.5, 39.5 -3.5, 39.5 -3, 40 -3))" +"POLYGON ((10.5 -2.5, 10.5 -3, 10 -3, 10 -2.5, 10.5 -2.5))" +"POLYGON ((11 -2.5, 11 -3, 10.5 -3, 10.5 -2.5, 11 -2.5))" +"POLYGON ((11.5 -2.5, 11.5 -3, 11 -3, 11 -2.5, 11.5 -2.5))" +"POLYGON ((12 -2.5, 12 -3, 11.5 -3, 11.5 -2.5, 12 -2.5))" +"POLYGON ((12.5 -2.5, 12.5 -3, 12 -3, 12 -2.5, 12.5 -2.5))" +"POLYGON ((13 -2.5, 13 -3, 12.5 -3, 12.5 -2.5, 13 -2.5))" +"POLYGON ((13.5 -2.5, 13.5 -3, 13 -3, 13 -2.5, 13.5 -2.5))" +"POLYGON ((14 -2.5, 14 -3, 13.5 -3, 13.5 -2.5, 14 -2.5))" +"POLYGON ((14.5 -2.5, 14.5 -3, 14 -3, 14 -2.5, 14.5 -2.5))" +"POLYGON ((15 -2.5, 15 -3, 14.5 -3, 14.5 -2.5, 15 -2.5))" +"POLYGON ((15.5 -2.5, 15.5 -3, 15 -3, 15 -2.5, 15.5 -2.5))" +"POLYGON ((16 -2.5, 16 -3, 15.5 -3, 15.5 -2.5, 16 -2.5))" +"POLYGON ((16.5 -2.5, 16.5 -3, 16 -3, 16 -2.5, 16.5 -2.5))" +"POLYGON ((17 -2.5, 17 -3, 16.5 -3, 16.5 -2.5, 17 -2.5))" +"POLYGON ((17.5 -2.5, 17.5 -3, 17 -3, 17 -2.5, 17.5 -2.5))" +"POLYGON ((18 -2.5, 18 -3, 17.5 -3, 17.5 -2.5, 18 -2.5))" +"POLYGON ((18.5 -2.5, 18.5 -3, 18 -3, 18 -2.5, 18.5 -2.5))" +"POLYGON ((19 -2.5, 19 -3, 18.5 -3, 18.5 -2.5, 19 -2.5))" +"POLYGON ((19.5 -2.5, 19.5 -3, 19 -3, 19 -2.5, 19.5 -2.5))" +"POLYGON ((20 -2.5, 20 -3, 19.5 -3, 19.5 -2.5, 20 -2.5))" +"POLYGON ((20.5 -2.5, 20.5 -3, 20 -3, 20 -2.5, 20.5 -2.5))" +"POLYGON ((21 -2.5, 21 -3, 20.5 -3, 20.5 -2.5, 21 -2.5))" +"POLYGON ((21.5 -2.5, 21.5 -3, 21 -3, 21 -2.5, 21.5 -2.5))" +"POLYGON ((22 -2.5, 22 -3, 21.5 -3, 21.5 -2.5, 22 -2.5))" +"POLYGON ((22.5 -2.5, 22.5 -3, 22 -3, 22 -2.5, 22.5 -2.5))" +"POLYGON ((23 -2.5, 23 -3, 22.5 -3, 22.5 -2.5, 23 -2.5))" +"POLYGON ((23.5 -2.5, 23.5 -3, 23 -3, 23 -2.5, 23.5 -2.5))" +"POLYGON ((24 -2.5, 24 -3, 23.5 -3, 23.5 -2.5, 24 -2.5))" +"POLYGON ((24.5 -2.5, 24.5 -3, 24 -3, 24 -2.5, 24.5 -2.5))" +"POLYGON ((25 -2.5, 25 -3, 24.5 -3, 24.5 -2.5, 25 -2.5))" +"POLYGON ((25.5 -2.5, 25.5 -3, 25 -3, 25 -2.5, 25.5 -2.5))" +"POLYGON ((26 -2.5, 26 -3, 25.5 -3, 25.5 -2.5, 26 -2.5))" +"POLYGON ((26.5 -2.5, 26.5 -3, 26 -3, 26 -2.5, 26.5 -2.5))" +"POLYGON ((27 -2.5, 27 -3, 26.5 -3, 26.5 -2.5, 27 -2.5))" +"POLYGON ((27.5 -2.5, 27.5 -3, 27 -3, 27 -2.5, 27.5 -2.5))" +"POLYGON ((28 -2.5, 28 -3, 27.5 -3, 27.5 -2.5, 28 -2.5))" +"POLYGON ((28.5 -2.5, 28.5 -3, 28 -3, 28 -2.5, 28.5 -2.5))" +"POLYGON ((29 -2.5, 29 -3, 28.5 -3, 28.5 -2.5, 29 -2.5))" +"POLYGON ((29.5 -2.5, 29.5 -3, 29 -3, 29 -2.5, 29.5 -2.5))" +"POLYGON ((30 -2.5, 30 -3, 29.5 -3, 29.5 -2.5, 30 -2.5))" +"POLYGON ((30.5 -2.5, 30.5 -3, 30 -3, 30 -2.5, 30.5 -2.5))" +"POLYGON ((31 -2.5, 31 -3, 30.5 -3, 30.5 -2.5, 31 -2.5))" +"POLYGON ((31.5 -2.5, 31.5 -3, 31 -3, 31 -2.5, 31.5 -2.5))" +"POLYGON ((32 -2.5, 32 -3, 31.5 -3, 31.5 -2.5, 32 -2.5))" +"POLYGON ((32.5 -2.5, 32.5 -3, 32 -3, 32 -2.5, 32.5 -2.5))" +"POLYGON ((33 -2.5, 33 -3, 32.5 -3, 32.5 -2.5, 33 -2.5))" +"POLYGON ((33.5 -2.5, 33.5 -3, 33 -3, 33 -2.5, 33.5 -2.5))" +"POLYGON ((34 -2.5, 34 -3, 33.5 -3, 33.5 -2.5, 34 -2.5))" +"POLYGON ((34.5 -2.5, 34.5 -3, 34 -3, 34 -2.5, 34.5 -2.5))" +"POLYGON ((35 -2.5, 35 -3, 34.5 -3, 34.5 -2.5, 35 -2.5))" +"POLYGON ((35.5 -2.5, 35.5 -3, 35 -3, 35 -2.5, 35.5 -2.5))" +"POLYGON ((36 -2.5, 36 -3, 35.5 -3, 35.5 -2.5, 36 -2.5))" +"POLYGON ((36.5 -2.5, 36.5 -3, 36 -3, 36 -2.5, 36.5 -2.5))" +"POLYGON ((37 -2.5, 37 -3, 36.5 -3, 36.5 -2.5, 37 -2.5))" +"POLYGON ((37.5 -2.5, 37.5 -3, 37 -3, 37 -2.5, 37.5 -2.5))" +"POLYGON ((38 -2.5, 38 -3, 37.5 -3, 37.5 -2.5, 38 -2.5))" +"POLYGON ((38.5 -2.5, 38.5 -3, 38 -3, 38 -2.5, 38.5 -2.5))" +"POLYGON ((39 -2.5, 39 -3, 38.5 -3, 38.5 -2.5, 39 -2.5))" +"POLYGON ((39.5 -2.5, 39.5 -3, 39 -3, 39 -2.5, 39.5 -2.5))" +"POLYGON ((40 -2.5, 40 -3, 39.5 -3, 39.5 -2.5, 40 -2.5))" +"POLYGON ((10 -2, 10 -2.5, 9.5 -2.5, 9.5 -2, 10 -2))" +"POLYGON ((10.5 -2, 10.5 -2.5, 10 -2.5, 10 -2, 10.5 -2))" +"POLYGON ((11 -2, 11 -2.5, 10.5 -2.5, 10.5 -2, 11 -2))" +"POLYGON ((11.5 -2, 11.5 -2.5, 11 -2.5, 11 -2, 11.5 -2))" +"POLYGON ((12 -2, 12 -2.5, 11.5 -2.5, 11.5 -2, 12 -2))" +"POLYGON ((12.5 -2, 12.5 -2.5, 12 -2.5, 12 -2, 12.5 -2))" +"POLYGON ((13 -2, 13 -2.5, 12.5 -2.5, 12.5 -2, 13 -2))" +"POLYGON ((13.5 -2, 13.5 -2.5, 13 -2.5, 13 -2, 13.5 -2))" +"POLYGON ((14 -2, 14 -2.5, 13.5 -2.5, 13.5 -2, 14 -2))" +"POLYGON ((14.5 -2, 14.5 -2.5, 14 -2.5, 14 -2, 14.5 -2))" +"POLYGON ((15 -2, 15 -2.5, 14.5 -2.5, 14.5 -2, 15 -2))" +"POLYGON ((15.5 -2, 15.5 -2.5, 15 -2.5, 15 -2, 15.5 -2))" +"POLYGON ((16 -2, 16 -2.5, 15.5 -2.5, 15.5 -2, 16 -2))" +"POLYGON ((16.5 -2, 16.5 -2.5, 16 -2.5, 16 -2, 16.5 -2))" +"POLYGON ((17 -2, 17 -2.5, 16.5 -2.5, 16.5 -2, 17 -2))" +"POLYGON ((17.5 -2, 17.5 -2.5, 17 -2.5, 17 -2, 17.5 -2))" +"POLYGON ((18 -2, 18 -2.5, 17.5 -2.5, 17.5 -2, 18 -2))" +"POLYGON ((18.5 -2, 18.5 -2.5, 18 -2.5, 18 -2, 18.5 -2))" +"POLYGON ((19 -2, 19 -2.5, 18.5 -2.5, 18.5 -2, 19 -2))" +"POLYGON ((19.5 -2, 19.5 -2.5, 19 -2.5, 19 -2, 19.5 -2))" +"POLYGON ((20 -2, 20 -2.5, 19.5 -2.5, 19.5 -2, 20 -2))" +"POLYGON ((20.5 -2, 20.5 -2.5, 20 -2.5, 20 -2, 20.5 -2))" +"POLYGON ((21 -2, 21 -2.5, 20.5 -2.5, 20.5 -2, 21 -2))" +"POLYGON ((21.5 -2, 21.5 -2.5, 21 -2.5, 21 -2, 21.5 -2))" +"POLYGON ((22 -2, 22 -2.5, 21.5 -2.5, 21.5 -2, 22 -2))" +"POLYGON ((22.5 -2, 22.5 -2.5, 22 -2.5, 22 -2, 22.5 -2))" +"POLYGON ((23 -2, 23 -2.5, 22.5 -2.5, 22.5 -2, 23 -2))" +"POLYGON ((23.5 -2, 23.5 -2.5, 23 -2.5, 23 -2, 23.5 -2))" +"POLYGON ((24 -2, 24 -2.5, 23.5 -2.5, 23.5 -2, 24 -2))" +"POLYGON ((24.5 -2, 24.5 -2.5, 24 -2.5, 24 -2, 24.5 -2))" +"POLYGON ((25 -2, 25 -2.5, 24.5 -2.5, 24.5 -2, 25 -2))" +"POLYGON ((25.5 -2, 25.5 -2.5, 25 -2.5, 25 -2, 25.5 -2))" +"POLYGON ((26 -2, 26 -2.5, 25.5 -2.5, 25.5 -2, 26 -2))" +"POLYGON ((26.5 -2, 26.5 -2.5, 26 -2.5, 26 -2, 26.5 -2))" +"POLYGON ((27 -2, 27 -2.5, 26.5 -2.5, 26.5 -2, 27 -2))" +"POLYGON ((27.5 -2, 27.5 -2.5, 27 -2.5, 27 -2, 27.5 -2))" +"POLYGON ((28 -2, 28 -2.5, 27.5 -2.5, 27.5 -2, 28 -2))" +"POLYGON ((28.5 -2, 28.5 -2.5, 28 -2.5, 28 -2, 28.5 -2))" +"POLYGON ((29 -2, 29 -2.5, 28.5 -2.5, 28.5 -2, 29 -2))" +"POLYGON ((29.5 -2, 29.5 -2.5, 29 -2.5, 29 -2, 29.5 -2))" +"POLYGON ((30 -2, 30 -2.5, 29.5 -2.5, 29.5 -2, 30 -2))" +"POLYGON ((30.5 -2, 30.5 -2.5, 30 -2.5, 30 -2, 30.5 -2))" +"POLYGON ((31 -2, 31 -2.5, 30.5 -2.5, 30.5 -2, 31 -2))" +"POLYGON ((31.5 -2, 31.5 -2.5, 31 -2.5, 31 -2, 31.5 -2))" +"POLYGON ((32 -2, 32 -2.5, 31.5 -2.5, 31.5 -2, 32 -2))" +"POLYGON ((32.5 -2, 32.5 -2.5, 32 -2.5, 32 -2, 32.5 -2))" +"POLYGON ((33 -2, 33 -2.5, 32.5 -2.5, 32.5 -2, 33 -2))" +"POLYGON ((33.5 -2, 33.5 -2.5, 33 -2.5, 33 -2, 33.5 -2))" +"POLYGON ((34 -2, 34 -2.5, 33.5 -2.5, 33.5 -2, 34 -2))" +"POLYGON ((34.5 -2, 34.5 -2.5, 34 -2.5, 34 -2, 34.5 -2))" +"POLYGON ((35 -2, 35 -2.5, 34.5 -2.5, 34.5 -2, 35 -2))" +"POLYGON ((35.5 -2, 35.5 -2.5, 35 -2.5, 35 -2, 35.5 -2))" +"POLYGON ((36 -2, 36 -2.5, 35.5 -2.5, 35.5 -2, 36 -2))" +"POLYGON ((36.5 -2, 36.5 -2.5, 36 -2.5, 36 -2, 36.5 -2))" +"POLYGON ((37 -2, 37 -2.5, 36.5 -2.5, 36.5 -2, 37 -2))" +"POLYGON ((37.5 -2, 37.5 -2.5, 37 -2.5, 37 -2, 37.5 -2))" +"POLYGON ((38 -2, 38 -2.5, 37.5 -2.5, 37.5 -2, 38 -2))" +"POLYGON ((38.5 -2, 38.5 -2.5, 38 -2.5, 38 -2, 38.5 -2))" +"POLYGON ((39 -2, 39 -2.5, 38.5 -2.5, 38.5 -2, 39 -2))" +"POLYGON ((39.5 -2, 39.5 -2.5, 39 -2.5, 39 -2, 39.5 -2))" +"POLYGON ((40 -2, 40 -2.5, 39.5 -2.5, 39.5 -2, 40 -2))" +"POLYGON ((40.5 -2, 40.5 -2.5, 40 -2.5, 40 -2, 40.5 -2))" +"POLYGON ((41 -2, 41 -2.5, 40.5 -2.5, 40.5 -2, 41 -2))" +"POLYGON ((9.5 -1.5, 9.5 -2, 9 -2, 9 -1.5, 9.5 -1.5))" +"POLYGON ((10 -1.5, 10 -2, 9.5 -2, 9.5 -1.5, 10 -1.5))" +"POLYGON ((10.5 -1.5, 10.5 -2, 10 -2, 10 -1.5, 10.5 -1.5))" +"POLYGON ((11 -1.5, 11 -2, 10.5 -2, 10.5 -1.5, 11 -1.5))" +"POLYGON ((11.5 -1.5, 11.5 -2, 11 -2, 11 -1.5, 11.5 -1.5))" +"POLYGON ((12 -1.5, 12 -2, 11.5 -2, 11.5 -1.5, 12 -1.5))" +"POLYGON ((12.5 -1.5, 12.5 -2, 12 -2, 12 -1.5, 12.5 -1.5))" +"POLYGON ((13 -1.5, 13 -2, 12.5 -2, 12.5 -1.5, 13 -1.5))" +"POLYGON ((13.5 -1.5, 13.5 -2, 13 -2, 13 -1.5, 13.5 -1.5))" +"POLYGON ((14 -1.5, 14 -2, 13.5 -2, 13.5 -1.5, 14 -1.5))" +"POLYGON ((14.5 -1.5, 14.5 -2, 14 -2, 14 -1.5, 14.5 -1.5))" +"POLYGON ((15 -1.5, 15 -2, 14.5 -2, 14.5 -1.5, 15 -1.5))" +"POLYGON ((15.5 -1.5, 15.5 -2, 15 -2, 15 -1.5, 15.5 -1.5))" +"POLYGON ((16 -1.5, 16 -2, 15.5 -2, 15.5 -1.5, 16 -1.5))" +"POLYGON ((16.5 -1.5, 16.5 -2, 16 -2, 16 -1.5, 16.5 -1.5))" +"POLYGON ((17 -1.5, 17 -2, 16.5 -2, 16.5 -1.5, 17 -1.5))" +"POLYGON ((17.5 -1.5, 17.5 -2, 17 -2, 17 -1.5, 17.5 -1.5))" +"POLYGON ((18 -1.5, 18 -2, 17.5 -2, 17.5 -1.5, 18 -1.5))" +"POLYGON ((18.5 -1.5, 18.5 -2, 18 -2, 18 -1.5, 18.5 -1.5))" +"POLYGON ((19 -1.5, 19 -2, 18.5 -2, 18.5 -1.5, 19 -1.5))" +"POLYGON ((19.5 -1.5, 19.5 -2, 19 -2, 19 -1.5, 19.5 -1.5))" +"POLYGON ((20 -1.5, 20 -2, 19.5 -2, 19.5 -1.5, 20 -1.5))" +"POLYGON ((20.5 -1.5, 20.5 -2, 20 -2, 20 -1.5, 20.5 -1.5))" +"POLYGON ((21 -1.5, 21 -2, 20.5 -2, 20.5 -1.5, 21 -1.5))" +"POLYGON ((21.5 -1.5, 21.5 -2, 21 -2, 21 -1.5, 21.5 -1.5))" +"POLYGON ((22 -1.5, 22 -2, 21.5 -2, 21.5 -1.5, 22 -1.5))" +"POLYGON ((22.5 -1.5, 22.5 -2, 22 -2, 22 -1.5, 22.5 -1.5))" +"POLYGON ((23 -1.5, 23 -2, 22.5 -2, 22.5 -1.5, 23 -1.5))" +"POLYGON ((23.5 -1.5, 23.5 -2, 23 -2, 23 -1.5, 23.5 -1.5))" +"POLYGON ((24 -1.5, 24 -2, 23.5 -2, 23.5 -1.5, 24 -1.5))" +"POLYGON ((24.5 -1.5, 24.5 -2, 24 -2, 24 -1.5, 24.5 -1.5))" +"POLYGON ((25 -1.5, 25 -2, 24.5 -2, 24.5 -1.5, 25 -1.5))" +"POLYGON ((25.5 -1.5, 25.5 -2, 25 -2, 25 -1.5, 25.5 -1.5))" +"POLYGON ((26 -1.5, 26 -2, 25.5 -2, 25.5 -1.5, 26 -1.5))" +"POLYGON ((26.5 -1.5, 26.5 -2, 26 -2, 26 -1.5, 26.5 -1.5))" +"POLYGON ((27 -1.5, 27 -2, 26.5 -2, 26.5 -1.5, 27 -1.5))" +"POLYGON ((27.5 -1.5, 27.5 -2, 27 -2, 27 -1.5, 27.5 -1.5))" +"POLYGON ((28 -1.5, 28 -2, 27.5 -2, 27.5 -1.5, 28 -1.5))" +"POLYGON ((28.5 -1.5, 28.5 -2, 28 -2, 28 -1.5, 28.5 -1.5))" +"POLYGON ((29 -1.5, 29 -2, 28.5 -2, 28.5 -1.5, 29 -1.5))" +"POLYGON ((29.5 -1.5, 29.5 -2, 29 -2, 29 -1.5, 29.5 -1.5))" +"POLYGON ((30 -1.5, 30 -2, 29.5 -2, 29.5 -1.5, 30 -1.5))" +"POLYGON ((30.5 -1.5, 30.5 -2, 30 -2, 30 -1.5, 30.5 -1.5))" +"POLYGON ((31 -1.5, 31 -2, 30.5 -2, 30.5 -1.5, 31 -1.5))" +"POLYGON ((31.5 -1.5, 31.5 -2, 31 -2, 31 -1.5, 31.5 -1.5))" +"POLYGON ((32 -1.5, 32 -2, 31.5 -2, 31.5 -1.5, 32 -1.5))" +"POLYGON ((32.5 -1.5, 32.5 -2, 32 -2, 32 -1.5, 32.5 -1.5))" +"POLYGON ((33 -1.5, 33 -2, 32.5 -2, 32.5 -1.5, 33 -1.5))" +"POLYGON ((33.5 -1.5, 33.5 -2, 33 -2, 33 -1.5, 33.5 -1.5))" +"POLYGON ((34 -1.5, 34 -2, 33.5 -2, 33.5 -1.5, 34 -1.5))" +"POLYGON ((34.5 -1.5, 34.5 -2, 34 -2, 34 -1.5, 34.5 -1.5))" +"POLYGON ((35 -1.5, 35 -2, 34.5 -2, 34.5 -1.5, 35 -1.5))" +"POLYGON ((35.5 -1.5, 35.5 -2, 35 -2, 35 -1.5, 35.5 -1.5))" +"POLYGON ((36 -1.5, 36 -2, 35.5 -2, 35.5 -1.5, 36 -1.5))" +"POLYGON ((36.5 -1.5, 36.5 -2, 36 -2, 36 -1.5, 36.5 -1.5))" +"POLYGON ((37 -1.5, 37 -2, 36.5 -2, 36.5 -1.5, 37 -1.5))" +"POLYGON ((37.5 -1.5, 37.5 -2, 37 -2, 37 -1.5, 37.5 -1.5))" +"POLYGON ((38 -1.5, 38 -2, 37.5 -2, 37.5 -1.5, 38 -1.5))" +"POLYGON ((38.5 -1.5, 38.5 -2, 38 -2, 38 -1.5, 38.5 -1.5))" +"POLYGON ((39 -1.5, 39 -2, 38.5 -2, 38.5 -1.5, 39 -1.5))" +"POLYGON ((39.5 -1.5, 39.5 -2, 39 -2, 39 -1.5, 39.5 -1.5))" +"POLYGON ((40 -1.5, 40 -2, 39.5 -2, 39.5 -1.5, 40 -1.5))" +"POLYGON ((40.5 -1.5, 40.5 -2, 40 -2, 40 -1.5, 40.5 -1.5))" +"POLYGON ((41 -1.5, 41 -2, 40.5 -2, 40.5 -1.5, 41 -1.5))" +"POLYGON ((41.5 -1.5, 41.5 -2, 41 -2, 41 -1.5, 41.5 -1.5))" +"POLYGON ((9.5 -1, 9.5 -1.5, 9 -1.5, 9 -1, 9.5 -1))" +"POLYGON ((10 -1, 10 -1.5, 9.5 -1.5, 9.5 -1, 10 -1))" +"POLYGON ((10.5 -1, 10.5 -1.5, 10 -1.5, 10 -1, 10.5 -1))" +"POLYGON ((11 -1, 11 -1.5, 10.5 -1.5, 10.5 -1, 11 -1))" +"POLYGON ((11.5 -1, 11.5 -1.5, 11 -1.5, 11 -1, 11.5 -1))" +"POLYGON ((12 -1, 12 -1.5, 11.5 -1.5, 11.5 -1, 12 -1))" +"POLYGON ((12.5 -1, 12.5 -1.5, 12 -1.5, 12 -1, 12.5 -1))" +"POLYGON ((13 -1, 13 -1.5, 12.5 -1.5, 12.5 -1, 13 -1))" +"POLYGON ((13.5 -1, 13.5 -1.5, 13 -1.5, 13 -1, 13.5 -1))" +"POLYGON ((14 -1, 14 -1.5, 13.5 -1.5, 13.5 -1, 14 -1))" +"POLYGON ((14.5 -1, 14.5 -1.5, 14 -1.5, 14 -1, 14.5 -1))" +"POLYGON ((15 -1, 15 -1.5, 14.5 -1.5, 14.5 -1, 15 -1))" +"POLYGON ((15.5 -1, 15.5 -1.5, 15 -1.5, 15 -1, 15.5 -1))" +"POLYGON ((16 -1, 16 -1.5, 15.5 -1.5, 15.5 -1, 16 -1))" +"POLYGON ((16.5 -1, 16.5 -1.5, 16 -1.5, 16 -1, 16.5 -1))" +"POLYGON ((17 -1, 17 -1.5, 16.5 -1.5, 16.5 -1, 17 -1))" +"POLYGON ((17.5 -1, 17.5 -1.5, 17 -1.5, 17 -1, 17.5 -1))" +"POLYGON ((18 -1, 18 -1.5, 17.5 -1.5, 17.5 -1, 18 -1))" +"POLYGON ((18.5 -1, 18.5 -1.5, 18 -1.5, 18 -1, 18.5 -1))" +"POLYGON ((19 -1, 19 -1.5, 18.5 -1.5, 18.5 -1, 19 -1))" +"POLYGON ((19.5 -1, 19.5 -1.5, 19 -1.5, 19 -1, 19.5 -1))" +"POLYGON ((20 -1, 20 -1.5, 19.5 -1.5, 19.5 -1, 20 -1))" +"POLYGON ((20.5 -1, 20.5 -1.5, 20 -1.5, 20 -1, 20.5 -1))" +"POLYGON ((21 -1, 21 -1.5, 20.5 -1.5, 20.5 -1, 21 -1))" +"POLYGON ((21.5 -1, 21.5 -1.5, 21 -1.5, 21 -1, 21.5 -1))" +"POLYGON ((22 -1, 22 -1.5, 21.5 -1.5, 21.5 -1, 22 -1))" +"POLYGON ((22.5 -1, 22.5 -1.5, 22 -1.5, 22 -1, 22.5 -1))" +"POLYGON ((23 -1, 23 -1.5, 22.5 -1.5, 22.5 -1, 23 -1))" +"POLYGON ((23.5 -1, 23.5 -1.5, 23 -1.5, 23 -1, 23.5 -1))" +"POLYGON ((24 -1, 24 -1.5, 23.5 -1.5, 23.5 -1, 24 -1))" +"POLYGON ((24.5 -1, 24.5 -1.5, 24 -1.5, 24 -1, 24.5 -1))" +"POLYGON ((25 -1, 25 -1.5, 24.5 -1.5, 24.5 -1, 25 -1))" +"POLYGON ((25.5 -1, 25.5 -1.5, 25 -1.5, 25 -1, 25.5 -1))" +"POLYGON ((26 -1, 26 -1.5, 25.5 -1.5, 25.5 -1, 26 -1))" +"POLYGON ((26.5 -1, 26.5 -1.5, 26 -1.5, 26 -1, 26.5 -1))" +"POLYGON ((27 -1, 27 -1.5, 26.5 -1.5, 26.5 -1, 27 -1))" +"POLYGON ((27.5 -1, 27.5 -1.5, 27 -1.5, 27 -1, 27.5 -1))" +"POLYGON ((28 -1, 28 -1.5, 27.5 -1.5, 27.5 -1, 28 -1))" +"POLYGON ((28.5 -1, 28.5 -1.5, 28 -1.5, 28 -1, 28.5 -1))" +"POLYGON ((29 -1, 29 -1.5, 28.5 -1.5, 28.5 -1, 29 -1))" +"POLYGON ((29.5 -1, 29.5 -1.5, 29 -1.5, 29 -1, 29.5 -1))" +"POLYGON ((30 -1, 30 -1.5, 29.5 -1.5, 29.5 -1, 30 -1))" +"POLYGON ((30.5 -1, 30.5 -1.5, 30 -1.5, 30 -1, 30.5 -1))" +"POLYGON ((31 -1, 31 -1.5, 30.5 -1.5, 30.5 -1, 31 -1))" +"POLYGON ((31.5 -1, 31.5 -1.5, 31 -1.5, 31 -1, 31.5 -1))" +"POLYGON ((32 -1, 32 -1.5, 31.5 -1.5, 31.5 -1, 32 -1))" +"POLYGON ((32.5 -1, 32.5 -1.5, 32 -1.5, 32 -1, 32.5 -1))" +"POLYGON ((33 -1, 33 -1.5, 32.5 -1.5, 32.5 -1, 33 -1))" +"POLYGON ((33.5 -1, 33.5 -1.5, 33 -1.5, 33 -1, 33.5 -1))" +"POLYGON ((34 -1, 34 -1.5, 33.5 -1.5, 33.5 -1, 34 -1))" +"POLYGON ((34.5 -1, 34.5 -1.5, 34 -1.5, 34 -1, 34.5 -1))" +"POLYGON ((35 -1, 35 -1.5, 34.5 -1.5, 34.5 -1, 35 -1))" +"POLYGON ((35.5 -1, 35.5 -1.5, 35 -1.5, 35 -1, 35.5 -1))" +"POLYGON ((36 -1, 36 -1.5, 35.5 -1.5, 35.5 -1, 36 -1))" +"POLYGON ((36.5 -1, 36.5 -1.5, 36 -1.5, 36 -1, 36.5 -1))" +"POLYGON ((37 -1, 37 -1.5, 36.5 -1.5, 36.5 -1, 37 -1))" +"POLYGON ((37.5 -1, 37.5 -1.5, 37 -1.5, 37 -1, 37.5 -1))" +"POLYGON ((38 -1, 38 -1.5, 37.5 -1.5, 37.5 -1, 38 -1))" +"POLYGON ((38.5 -1, 38.5 -1.5, 38 -1.5, 38 -1, 38.5 -1))" +"POLYGON ((39 -1, 39 -1.5, 38.5 -1.5, 38.5 -1, 39 -1))" +"POLYGON ((39.5 -1, 39.5 -1.5, 39 -1.5, 39 -1, 39.5 -1))" +"POLYGON ((40 -1, 40 -1.5, 39.5 -1.5, 39.5 -1, 40 -1))" +"POLYGON ((40.5 -1, 40.5 -1.5, 40 -1.5, 40 -1, 40.5 -1))" +"POLYGON ((41 -1, 41 -1.5, 40.5 -1.5, 40.5 -1, 41 -1))" +"POLYGON ((41.5 -1, 41.5 -1.5, 41 -1.5, 41 -1, 41.5 -1))" +"POLYGON ((42 -1, 42 -1.5, 41.5 -1.5, 41.5 -1, 42 -1))" +"POLYGON ((9.5 -0.5, 9.5 -1, 9 -1, 9 -0.5, 9.5 -0.5))" +"POLYGON ((10 -0.5, 10 -1, 9.5 -1, 9.5 -0.5, 10 -0.5))" +"POLYGON ((10.5 -0.5, 10.5 -1, 10 -1, 10 -0.5, 10.5 -0.5))" +"POLYGON ((11 -0.5, 11 -1, 10.5 -1, 10.5 -0.5, 11 -0.5))" +"POLYGON ((11.5 -0.5, 11.5 -1, 11 -1, 11 -0.5, 11.5 -0.5))" +"POLYGON ((12 -0.5, 12 -1, 11.5 -1, 11.5 -0.5, 12 -0.5))" +"POLYGON ((12.5 -0.5, 12.5 -1, 12 -1, 12 -0.5, 12.5 -0.5))" +"POLYGON ((13 -0.5, 13 -1, 12.5 -1, 12.5 -0.5, 13 -0.5))" +"POLYGON ((13.5 -0.5, 13.5 -1, 13 -1, 13 -0.5, 13.5 -0.5))" +"POLYGON ((14 -0.5, 14 -1, 13.5 -1, 13.5 -0.5, 14 -0.5))" +"POLYGON ((14.5 -0.5, 14.5 -1, 14 -1, 14 -0.5, 14.5 -0.5))" +"POLYGON ((15 -0.5, 15 -1, 14.5 -1, 14.5 -0.5, 15 -0.5))" +"POLYGON ((15.5 -0.5, 15.5 -1, 15 -1, 15 -0.5, 15.5 -0.5))" +"POLYGON ((16 -0.5, 16 -1, 15.5 -1, 15.5 -0.5, 16 -0.5))" +"POLYGON ((16.5 -0.5, 16.5 -1, 16 -1, 16 -0.5, 16.5 -0.5))" +"POLYGON ((17 -0.5, 17 -1, 16.5 -1, 16.5 -0.5, 17 -0.5))" +"POLYGON ((17.5 -0.5, 17.5 -1, 17 -1, 17 -0.5, 17.5 -0.5))" +"POLYGON ((18 -0.5, 18 -1, 17.5 -1, 17.5 -0.5, 18 -0.5))" +"POLYGON ((18.5 -0.5, 18.5 -1, 18 -1, 18 -0.5, 18.5 -0.5))" +"POLYGON ((19 -0.5, 19 -1, 18.5 -1, 18.5 -0.5, 19 -0.5))" +"POLYGON ((19.5 -0.5, 19.5 -1, 19 -1, 19 -0.5, 19.5 -0.5))" +"POLYGON ((20 -0.5, 20 -1, 19.5 -1, 19.5 -0.5, 20 -0.5))" +"POLYGON ((20.5 -0.5, 20.5 -1, 20 -1, 20 -0.5, 20.5 -0.5))" +"POLYGON ((21 -0.5, 21 -1, 20.5 -1, 20.5 -0.5, 21 -0.5))" +"POLYGON ((21.5 -0.5, 21.5 -1, 21 -1, 21 -0.5, 21.5 -0.5))" +"POLYGON ((22 -0.5, 22 -1, 21.5 -1, 21.5 -0.5, 22 -0.5))" +"POLYGON ((22.5 -0.5, 22.5 -1, 22 -1, 22 -0.5, 22.5 -0.5))" +"POLYGON ((23 -0.5, 23 -1, 22.5 -1, 22.5 -0.5, 23 -0.5))" +"POLYGON ((23.5 -0.5, 23.5 -1, 23 -1, 23 -0.5, 23.5 -0.5))" +"POLYGON ((24 -0.5, 24 -1, 23.5 -1, 23.5 -0.5, 24 -0.5))" +"POLYGON ((24.5 -0.5, 24.5 -1, 24 -1, 24 -0.5, 24.5 -0.5))" +"POLYGON ((25 -0.5, 25 -1, 24.5 -1, 24.5 -0.5, 25 -0.5))" +"POLYGON ((25.5 -0.5, 25.5 -1, 25 -1, 25 -0.5, 25.5 -0.5))" +"POLYGON ((26 -0.5, 26 -1, 25.5 -1, 25.5 -0.5, 26 -0.5))" +"POLYGON ((26.5 -0.5, 26.5 -1, 26 -1, 26 -0.5, 26.5 -0.5))" +"POLYGON ((27 -0.5, 27 -1, 26.5 -1, 26.5 -0.5, 27 -0.5))" +"POLYGON ((27.5 -0.5, 27.5 -1, 27 -1, 27 -0.5, 27.5 -0.5))" +"POLYGON ((28 -0.5, 28 -1, 27.5 -1, 27.5 -0.5, 28 -0.5))" +"POLYGON ((28.5 -0.5, 28.5 -1, 28 -1, 28 -0.5, 28.5 -0.5))" +"POLYGON ((29 -0.5, 29 -1, 28.5 -1, 28.5 -0.5, 29 -0.5))" +"POLYGON ((29.5 -0.5, 29.5 -1, 29 -1, 29 -0.5, 29.5 -0.5))" +"POLYGON ((30 -0.5, 30 -1, 29.5 -1, 29.5 -0.5, 30 -0.5))" +"POLYGON ((30.5 -0.5, 30.5 -1, 30 -1, 30 -0.5, 30.5 -0.5))" +"POLYGON ((31 -0.5, 31 -1, 30.5 -1, 30.5 -0.5, 31 -0.5))" +"POLYGON ((31.5 -0.5, 31.5 -1, 31 -1, 31 -0.5, 31.5 -0.5))" +"POLYGON ((32 -0.5, 32 -1, 31.5 -1, 31.5 -0.5, 32 -0.5))" +"POLYGON ((32.5 -0.5, 32.5 -1, 32 -1, 32 -0.5, 32.5 -0.5))" +"POLYGON ((33 -0.5, 33 -1, 32.5 -1, 32.5 -0.5, 33 -0.5))" +"POLYGON ((33.5 -0.5, 33.5 -1, 33 -1, 33 -0.5, 33.5 -0.5))" +"POLYGON ((34 -0.5, 34 -1, 33.5 -1, 33.5 -0.5, 34 -0.5))" +"POLYGON ((34.5 -0.5, 34.5 -1, 34 -1, 34 -0.5, 34.5 -0.5))" +"POLYGON ((35 -0.5, 35 -1, 34.5 -1, 34.5 -0.5, 35 -0.5))" +"POLYGON ((35.5 -0.5, 35.5 -1, 35 -1, 35 -0.5, 35.5 -0.5))" +"POLYGON ((36 -0.5, 36 -1, 35.5 -1, 35.5 -0.5, 36 -0.5))" +"POLYGON ((36.5 -0.5, 36.5 -1, 36 -1, 36 -0.5, 36.5 -0.5))" +"POLYGON ((37 -0.5, 37 -1, 36.5 -1, 36.5 -0.5, 37 -0.5))" +"POLYGON ((37.5 -0.5, 37.5 -1, 37 -1, 37 -0.5, 37.5 -0.5))" +"POLYGON ((38 -0.5, 38 -1, 37.5 -1, 37.5 -0.5, 38 -0.5))" +"POLYGON ((38.5 -0.5, 38.5 -1, 38 -1, 38 -0.5, 38.5 -0.5))" +"POLYGON ((39 -0.5, 39 -1, 38.5 -1, 38.5 -0.5, 39 -0.5))" +"POLYGON ((39.5 -0.5, 39.5 -1, 39 -1, 39 -0.5, 39.5 -0.5))" +"POLYGON ((40 -0.5, 40 -1, 39.5 -1, 39.5 -0.5, 40 -0.5))" +"POLYGON ((40.5 -0.5, 40.5 -1, 40 -1, 40 -0.5, 40.5 -0.5))" +"POLYGON ((41 -0.5, 41 -1, 40.5 -1, 40.5 -0.5, 41 -0.5))" +"POLYGON ((41.5 -0.5, 41.5 -1, 41 -1, 41 -0.5, 41.5 -0.5))" +"POLYGON ((42 -0.5, 42 -1, 41.5 -1, 41.5 -0.5, 42 -0.5))" +"POLYGON ((10 0, 10 -0.5, 9.5 -0.5, 9.5 0, 10 0))" +"POLYGON ((10.5 0, 10.5 -0.5, 10 -0.5, 10 0, 10.5 0))" +"POLYGON ((11 0, 11 -0.5, 10.5 -0.5, 10.5 0, 11 0))" +"POLYGON ((11.5 0, 11.5 -0.5, 11 -0.5, 11 0, 11.5 0))" +"POLYGON ((12 0, 12 -0.5, 11.5 -0.5, 11.5 0, 12 0))" +"POLYGON ((12.5 0, 12.5 -0.5, 12 -0.5, 12 0, 12.5 0))" +"POLYGON ((13 0, 13 -0.5, 12.5 -0.5, 12.5 0, 13 0))" +"POLYGON ((13.5 0, 13.5 -0.5, 13 -0.5, 13 0, 13.5 0))" +"POLYGON ((14 0, 14 -0.5, 13.5 -0.5, 13.5 0, 14 0))" +"POLYGON ((14.5 0, 14.5 -0.5, 14 -0.5, 14 0, 14.5 0))" +"POLYGON ((15 0, 15 -0.5, 14.5 -0.5, 14.5 0, 15 0))" +"POLYGON ((15.5 0, 15.5 -0.5, 15 -0.5, 15 0, 15.5 0))" +"POLYGON ((16 0, 16 -0.5, 15.5 -0.5, 15.5 0, 16 0))" +"POLYGON ((16.5 0, 16.5 -0.5, 16 -0.5, 16 0, 16.5 0))" +"POLYGON ((17 0, 17 -0.5, 16.5 -0.5, 16.5 0, 17 0))" +"POLYGON ((17.5 0, 17.5 -0.5, 17 -0.5, 17 0, 17.5 0))" +"POLYGON ((18 0, 18 -0.5, 17.5 -0.5, 17.5 0, 18 0))" +"POLYGON ((18.5 0, 18.5 -0.5, 18 -0.5, 18 0, 18.5 0))" +"POLYGON ((19 0, 19 -0.5, 18.5 -0.5, 18.5 0, 19 0))" +"POLYGON ((19.5 0, 19.5 -0.5, 19 -0.5, 19 0, 19.5 0))" +"POLYGON ((20 0, 20 -0.5, 19.5 -0.5, 19.5 0, 20 0))" +"POLYGON ((20.5 0, 20.5 -0.5, 20 -0.5, 20 0, 20.5 0))" +"POLYGON ((21 0, 21 -0.5, 20.5 -0.5, 20.5 0, 21 0))" +"POLYGON ((21.5 0, 21.5 -0.5, 21 -0.5, 21 0, 21.5 0))" +"POLYGON ((22 0, 22 -0.5, 21.5 -0.5, 21.5 0, 22 0))" +"POLYGON ((22.5 0, 22.5 -0.5, 22 -0.5, 22 0, 22.5 0))" +"POLYGON ((23 0, 23 -0.5, 22.5 -0.5, 22.5 0, 23 0))" +"POLYGON ((23.5 0, 23.5 -0.5, 23 -0.5, 23 0, 23.5 0))" +"POLYGON ((24 0, 24 -0.5, 23.5 -0.5, 23.5 0, 24 0))" +"POLYGON ((24.5 0, 24.5 -0.5, 24 -0.5, 24 0, 24.5 0))" +"POLYGON ((25 0, 25 -0.5, 24.5 -0.5, 24.5 0, 25 0))" +"POLYGON ((25.5 0, 25.5 -0.5, 25 -0.5, 25 0, 25.5 0))" +"POLYGON ((26 0, 26 -0.5, 25.5 -0.5, 25.5 0, 26 0))" +"POLYGON ((26.5 0, 26.5 -0.5, 26 -0.5, 26 0, 26.5 0))" +"POLYGON ((27 0, 27 -0.5, 26.5 -0.5, 26.5 0, 27 0))" +"POLYGON ((27.5 0, 27.5 -0.5, 27 -0.5, 27 0, 27.5 0))" +"POLYGON ((28 0, 28 -0.5, 27.5 -0.5, 27.5 0, 28 0))" +"POLYGON ((28.5 0, 28.5 -0.5, 28 -0.5, 28 0, 28.5 0))" +"POLYGON ((29 0, 29 -0.5, 28.5 -0.5, 28.5 0, 29 0))" +"POLYGON ((29.5 0, 29.5 -0.5, 29 -0.5, 29 0, 29.5 0))" +"POLYGON ((30 0, 30 -0.5, 29.5 -0.5, 29.5 0, 30 0))" +"POLYGON ((30.5 0, 30.5 -0.5, 30 -0.5, 30 0, 30.5 0))" +"POLYGON ((31 0, 31 -0.5, 30.5 -0.5, 30.5 0, 31 0))" +"POLYGON ((31.5 0, 31.5 -0.5, 31 -0.5, 31 0, 31.5 0))" +"POLYGON ((32 0, 32 -0.5, 31.5 -0.5, 31.5 0, 32 0))" +"POLYGON ((32.5 0, 32.5 -0.5, 32 -0.5, 32 0, 32.5 0))" +"POLYGON ((33 0, 33 -0.5, 32.5 -0.5, 32.5 0, 33 0))" +"POLYGON ((33.5 0, 33.5 -0.5, 33 -0.5, 33 0, 33.5 0))" +"POLYGON ((34 0, 34 -0.5, 33.5 -0.5, 33.5 0, 34 0))" +"POLYGON ((34.5 0, 34.5 -0.5, 34 -0.5, 34 0, 34.5 0))" +"POLYGON ((35 0, 35 -0.5, 34.5 -0.5, 34.5 0, 35 0))" +"POLYGON ((35.5 0, 35.5 -0.5, 35 -0.5, 35 0, 35.5 0))" +"POLYGON ((36 0, 36 -0.5, 35.5 -0.5, 35.5 0, 36 0))" +"POLYGON ((36.5 0, 36.5 -0.5, 36 -0.5, 36 0, 36.5 0))" +"POLYGON ((37 0, 37 -0.5, 36.5 -0.5, 36.5 0, 37 0))" +"POLYGON ((37.5 0, 37.5 -0.5, 37 -0.5, 37 0, 37.5 0))" +"POLYGON ((38 0, 38 -0.5, 37.5 -0.5, 37.5 0, 38 0))" +"POLYGON ((38.5 0, 38.5 -0.5, 38 -0.5, 38 0, 38.5 0))" +"POLYGON ((39 0, 39 -0.5, 38.5 -0.5, 38.5 0, 39 0))" +"POLYGON ((39.5 0, 39.5 -0.5, 39 -0.5, 39 0, 39.5 0))" +"POLYGON ((40 0, 40 -0.5, 39.5 -0.5, 39.5 0, 40 0))" +"POLYGON ((40.5 0, 40.5 -0.5, 40 -0.5, 40 0, 40.5 0))" +"POLYGON ((41 0, 41 -0.5, 40.5 -0.5, 40.5 0, 41 0))" +"POLYGON ((41.5 0, 41.5 -0.5, 41 -0.5, 41 0, 41.5 0))" +"POLYGON ((42 0, 42 -0.5, 41.5 -0.5, 41.5 0, 42 0))" +"POLYGON ((42.5 0, 42.5 -0.5, 42 -0.5, 42 0, 42.5 0))" +"POLYGON ((10 0.5, 10 0, 9.5 0, 9.5 0.5, 10 0.5))" +"POLYGON ((10.5 0.5, 10.5 0, 10 0, 10 0.5, 10.5 0.5))" +"POLYGON ((11 0.5, 11 0, 10.5 0, 10.5 0.5, 11 0.5))" +"POLYGON ((11.5 0.5, 11.5 0, 11 0, 11 0.5, 11.5 0.5))" +"POLYGON ((12 0.5, 12 0, 11.5 0, 11.5 0.5, 12 0.5))" +"POLYGON ((12.5 0.5, 12.5 0, 12 0, 12 0.5, 12.5 0.5))" +"POLYGON ((13 0.5, 13 0, 12.5 0, 12.5 0.5, 13 0.5))" +"POLYGON ((13.5 0.5, 13.5 0, 13 0, 13 0.5, 13.5 0.5))" +"POLYGON ((14 0.5, 14 0, 13.5 0, 13.5 0.5, 14 0.5))" +"POLYGON ((14.5 0.5, 14.5 0, 14 0, 14 0.5, 14.5 0.5))" +"POLYGON ((15 0.5, 15 0, 14.5 0, 14.5 0.5, 15 0.5))" +"POLYGON ((15.5 0.5, 15.5 0, 15 0, 15 0.5, 15.5 0.5))" +"POLYGON ((16 0.5, 16 0, 15.5 0, 15.5 0.5, 16 0.5))" +"POLYGON ((16.5 0.5, 16.5 0, 16 0, 16 0.5, 16.5 0.5))" +"POLYGON ((17 0.5, 17 0, 16.5 0, 16.5 0.5, 17 0.5))" +"POLYGON ((17.5 0.5, 17.5 0, 17 0, 17 0.5, 17.5 0.5))" +"POLYGON ((18 0.5, 18 0, 17.5 0, 17.5 0.5, 18 0.5))" +"POLYGON ((18.5 0.5, 18.5 0, 18 0, 18 0.5, 18.5 0.5))" +"POLYGON ((19 0.5, 19 0, 18.5 0, 18.5 0.5, 19 0.5))" +"POLYGON ((19.5 0.5, 19.5 0, 19 0, 19 0.5, 19.5 0.5))" +"POLYGON ((20 0.5, 20 0, 19.5 0, 19.5 0.5, 20 0.5))" +"POLYGON ((20.5 0.5, 20.5 0, 20 0, 20 0.5, 20.5 0.5))" +"POLYGON ((21 0.5, 21 0, 20.5 0, 20.5 0.5, 21 0.5))" +"POLYGON ((21.5 0.5, 21.5 0, 21 0, 21 0.5, 21.5 0.5))" +"POLYGON ((22 0.5, 22 0, 21.5 0, 21.5 0.5, 22 0.5))" +"POLYGON ((22.5 0.5, 22.5 0, 22 0, 22 0.5, 22.5 0.5))" +"POLYGON ((23 0.5, 23 0, 22.5 0, 22.5 0.5, 23 0.5))" +"POLYGON ((23.5 0.5, 23.5 0, 23 0, 23 0.5, 23.5 0.5))" +"POLYGON ((24 0.5, 24 0, 23.5 0, 23.5 0.5, 24 0.5))" +"POLYGON ((24.5 0.5, 24.5 0, 24 0, 24 0.5, 24.5 0.5))" +"POLYGON ((25 0.5, 25 0, 24.5 0, 24.5 0.5, 25 0.5))" +"POLYGON ((25.5 0.5, 25.5 0, 25 0, 25 0.5, 25.5 0.5))" +"POLYGON ((26 0.5, 26 0, 25.5 0, 25.5 0.5, 26 0.5))" +"POLYGON ((26.5 0.5, 26.5 0, 26 0, 26 0.5, 26.5 0.5))" +"POLYGON ((27 0.5, 27 0, 26.5 0, 26.5 0.5, 27 0.5))" +"POLYGON ((27.5 0.5, 27.5 0, 27 0, 27 0.5, 27.5 0.5))" +"POLYGON ((28 0.5, 28 0, 27.5 0, 27.5 0.5, 28 0.5))" +"POLYGON ((28.5 0.5, 28.5 0, 28 0, 28 0.5, 28.5 0.5))" +"POLYGON ((29 0.5, 29 0, 28.5 0, 28.5 0.5, 29 0.5))" +"POLYGON ((29.5 0.5, 29.5 0, 29 0, 29 0.5, 29.5 0.5))" +"POLYGON ((30 0.5, 30 0, 29.5 0, 29.5 0.5, 30 0.5))" +"POLYGON ((30.5 0.5, 30.5 0, 30 0, 30 0.5, 30.5 0.5))" +"POLYGON ((31 0.5, 31 0, 30.5 0, 30.5 0.5, 31 0.5))" +"POLYGON ((31.5 0.5, 31.5 0, 31 0, 31 0.5, 31.5 0.5))" +"POLYGON ((32 0.5, 32 0, 31.5 0, 31.5 0.5, 32 0.5))" +"POLYGON ((32.5 0.5, 32.5 0, 32 0, 32 0.5, 32.5 0.5))" +"POLYGON ((33 0.5, 33 0, 32.5 0, 32.5 0.5, 33 0.5))" +"POLYGON ((33.5 0.5, 33.5 0, 33 0, 33 0.5, 33.5 0.5))" +"POLYGON ((34 0.5, 34 0, 33.5 0, 33.5 0.5, 34 0.5))" +"POLYGON ((34.5 0.5, 34.5 0, 34 0, 34 0.5, 34.5 0.5))" +"POLYGON ((35 0.5, 35 0, 34.5 0, 34.5 0.5, 35 0.5))" +"POLYGON ((35.5 0.5, 35.5 0, 35 0, 35 0.5, 35.5 0.5))" +"POLYGON ((36 0.5, 36 0, 35.5 0, 35.5 0.5, 36 0.5))" +"POLYGON ((36.5 0.5, 36.5 0, 36 0, 36 0.5, 36.5 0.5))" +"POLYGON ((37 0.5, 37 0, 36.5 0, 36.5 0.5, 37 0.5))" +"POLYGON ((37.5 0.5, 37.5 0, 37 0, 37 0.5, 37.5 0.5))" +"POLYGON ((38 0.5, 38 0, 37.5 0, 37.5 0.5, 38 0.5))" +"POLYGON ((38.5 0.5, 38.5 0, 38 0, 38 0.5, 38.5 0.5))" +"POLYGON ((39 0.5, 39 0, 38.5 0, 38.5 0.5, 39 0.5))" +"POLYGON ((39.5 0.5, 39.5 0, 39 0, 39 0.5, 39.5 0.5))" +"POLYGON ((40 0.5, 40 0, 39.5 0, 39.5 0.5, 40 0.5))" +"POLYGON ((40.5 0.5, 40.5 0, 40 0, 40 0.5, 40.5 0.5))" +"POLYGON ((41 0.5, 41 0, 40.5 0, 40.5 0.5, 41 0.5))" +"POLYGON ((41.5 0.5, 41.5 0, 41 0, 41 0.5, 41.5 0.5))" +"POLYGON ((42 0.5, 42 0, 41.5 0, 41.5 0.5, 42 0.5))" +"POLYGON ((42.5 0.5, 42.5 0, 42 0, 42 0.5, 42.5 0.5))" +"POLYGON ((43 0.5, 43 0, 42.5 0, 42.5 0.5, 43 0.5))" +"POLYGON ((10 1, 10 0.5, 9.5 0.5, 9.5 1, 10 1))" +"POLYGON ((10.5 1, 10.5 0.5, 10 0.5, 10 1, 10.5 1))" +"POLYGON ((11 1, 11 0.5, 10.5 0.5, 10.5 1, 11 1))" +"POLYGON ((11.5 1, 11.5 0.5, 11 0.5, 11 1, 11.5 1))" +"POLYGON ((12 1, 12 0.5, 11.5 0.5, 11.5 1, 12 1))" +"POLYGON ((12.5 1, 12.5 0.5, 12 0.5, 12 1, 12.5 1))" +"POLYGON ((13 1, 13 0.5, 12.5 0.5, 12.5 1, 13 1))" +"POLYGON ((13.5 1, 13.5 0.5, 13 0.5, 13 1, 13.5 1))" +"POLYGON ((14 1, 14 0.5, 13.5 0.5, 13.5 1, 14 1))" +"POLYGON ((14.5 1, 14.5 0.5, 14 0.5, 14 1, 14.5 1))" +"POLYGON ((15 1, 15 0.5, 14.5 0.5, 14.5 1, 15 1))" +"POLYGON ((15.5 1, 15.5 0.5, 15 0.5, 15 1, 15.5 1))" +"POLYGON ((16 1, 16 0.5, 15.5 0.5, 15.5 1, 16 1))" +"POLYGON ((16.5 1, 16.5 0.5, 16 0.5, 16 1, 16.5 1))" +"POLYGON ((17 1, 17 0.5, 16.5 0.5, 16.5 1, 17 1))" +"POLYGON ((17.5 1, 17.5 0.5, 17 0.5, 17 1, 17.5 1))" +"POLYGON ((18 1, 18 0.5, 17.5 0.5, 17.5 1, 18 1))" +"POLYGON ((18.5 1, 18.5 0.5, 18 0.5, 18 1, 18.5 1))" +"POLYGON ((19 1, 19 0.5, 18.5 0.5, 18.5 1, 19 1))" +"POLYGON ((19.5 1, 19.5 0.5, 19 0.5, 19 1, 19.5 1))" +"POLYGON ((20 1, 20 0.5, 19.5 0.5, 19.5 1, 20 1))" +"POLYGON ((20.5 1, 20.5 0.5, 20 0.5, 20 1, 20.5 1))" +"POLYGON ((21 1, 21 0.5, 20.5 0.5, 20.5 1, 21 1))" +"POLYGON ((21.5 1, 21.5 0.5, 21 0.5, 21 1, 21.5 1))" +"POLYGON ((22 1, 22 0.5, 21.5 0.5, 21.5 1, 22 1))" +"POLYGON ((22.5 1, 22.5 0.5, 22 0.5, 22 1, 22.5 1))" +"POLYGON ((23 1, 23 0.5, 22.5 0.5, 22.5 1, 23 1))" +"POLYGON ((23.5 1, 23.5 0.5, 23 0.5, 23 1, 23.5 1))" +"POLYGON ((24 1, 24 0.5, 23.5 0.5, 23.5 1, 24 1))" +"POLYGON ((24.5 1, 24.5 0.5, 24 0.5, 24 1, 24.5 1))" +"POLYGON ((25 1, 25 0.5, 24.5 0.5, 24.5 1, 25 1))" +"POLYGON ((25.5 1, 25.5 0.5, 25 0.5, 25 1, 25.5 1))" +"POLYGON ((26 1, 26 0.5, 25.5 0.5, 25.5 1, 26 1))" +"POLYGON ((26.5 1, 26.5 0.5, 26 0.5, 26 1, 26.5 1))" +"POLYGON ((27 1, 27 0.5, 26.5 0.5, 26.5 1, 27 1))" +"POLYGON ((27.5 1, 27.5 0.5, 27 0.5, 27 1, 27.5 1))" +"POLYGON ((28 1, 28 0.5, 27.5 0.5, 27.5 1, 28 1))" +"POLYGON ((28.5 1, 28.5 0.5, 28 0.5, 28 1, 28.5 1))" +"POLYGON ((29 1, 29 0.5, 28.5 0.5, 28.5 1, 29 1))" +"POLYGON ((29.5 1, 29.5 0.5, 29 0.5, 29 1, 29.5 1))" +"POLYGON ((30 1, 30 0.5, 29.5 0.5, 29.5 1, 30 1))" +"POLYGON ((30.5 1, 30.5 0.5, 30 0.5, 30 1, 30.5 1))" +"POLYGON ((31 1, 31 0.5, 30.5 0.5, 30.5 1, 31 1))" +"POLYGON ((31.5 1, 31.5 0.5, 31 0.5, 31 1, 31.5 1))" +"POLYGON ((32 1, 32 0.5, 31.5 0.5, 31.5 1, 32 1))" +"POLYGON ((32.5 1, 32.5 0.5, 32 0.5, 32 1, 32.5 1))" +"POLYGON ((33 1, 33 0.5, 32.5 0.5, 32.5 1, 33 1))" +"POLYGON ((33.5 1, 33.5 0.5, 33 0.5, 33 1, 33.5 1))" +"POLYGON ((34 1, 34 0.5, 33.5 0.5, 33.5 1, 34 1))" +"POLYGON ((34.5 1, 34.5 0.5, 34 0.5, 34 1, 34.5 1))" +"POLYGON ((35 1, 35 0.5, 34.5 0.5, 34.5 1, 35 1))" +"POLYGON ((35.5 1, 35.5 0.5, 35 0.5, 35 1, 35.5 1))" +"POLYGON ((36 1, 36 0.5, 35.5 0.5, 35.5 1, 36 1))" +"POLYGON ((36.5 1, 36.5 0.5, 36 0.5, 36 1, 36.5 1))" +"POLYGON ((37 1, 37 0.5, 36.5 0.5, 36.5 1, 37 1))" +"POLYGON ((37.5 1, 37.5 0.5, 37 0.5, 37 1, 37.5 1))" +"POLYGON ((38 1, 38 0.5, 37.5 0.5, 37.5 1, 38 1))" +"POLYGON ((38.5 1, 38.5 0.5, 38 0.5, 38 1, 38.5 1))" +"POLYGON ((39 1, 39 0.5, 38.5 0.5, 38.5 1, 39 1))" +"POLYGON ((39.5 1, 39.5 0.5, 39 0.5, 39 1, 39.5 1))" +"POLYGON ((40 1, 40 0.5, 39.5 0.5, 39.5 1, 40 1))" +"POLYGON ((40.5 1, 40.5 0.5, 40 0.5, 40 1, 40.5 1))" +"POLYGON ((41 1, 41 0.5, 40.5 0.5, 40.5 1, 41 1))" +"POLYGON ((41.5 1, 41.5 0.5, 41 0.5, 41 1, 41.5 1))" +"POLYGON ((42 1, 42 0.5, 41.5 0.5, 41.5 1, 42 1))" +"POLYGON ((42.5 1, 42.5 0.5, 42 0.5, 42 1, 42.5 1))" +"POLYGON ((43 1, 43 0.5, 42.5 0.5, 42.5 1, 43 1))" +"POLYGON ((43.5 1, 43.5 0.5, 43 0.5, 43 1, 43.5 1))" +"POLYGON ((10 1.5, 10 1, 9.5 1, 9.5 1.5, 10 1.5))" +"POLYGON ((10.5 1.5, 10.5 1, 10 1, 10 1.5, 10.5 1.5))" +"POLYGON ((11 1.5, 11 1, 10.5 1, 10.5 1.5, 11 1.5))" +"POLYGON ((11.5 1.5, 11.5 1, 11 1, 11 1.5, 11.5 1.5))" +"POLYGON ((12 1.5, 12 1, 11.5 1, 11.5 1.5, 12 1.5))" +"POLYGON ((12.5 1.5, 12.5 1, 12 1, 12 1.5, 12.5 1.5))" +"POLYGON ((13 1.5, 13 1, 12.5 1, 12.5 1.5, 13 1.5))" +"POLYGON ((13.5 1.5, 13.5 1, 13 1, 13 1.5, 13.5 1.5))" +"POLYGON ((14 1.5, 14 1, 13.5 1, 13.5 1.5, 14 1.5))" +"POLYGON ((14.5 1.5, 14.5 1, 14 1, 14 1.5, 14.5 1.5))" +"POLYGON ((15 1.5, 15 1, 14.5 1, 14.5 1.5, 15 1.5))" +"POLYGON ((15.5 1.5, 15.5 1, 15 1, 15 1.5, 15.5 1.5))" +"POLYGON ((16 1.5, 16 1, 15.5 1, 15.5 1.5, 16 1.5))" +"POLYGON ((16.5 1.5, 16.5 1, 16 1, 16 1.5, 16.5 1.5))" +"POLYGON ((17 1.5, 17 1, 16.5 1, 16.5 1.5, 17 1.5))" +"POLYGON ((17.5 1.5, 17.5 1, 17 1, 17 1.5, 17.5 1.5))" +"POLYGON ((18 1.5, 18 1, 17.5 1, 17.5 1.5, 18 1.5))" +"POLYGON ((18.5 1.5, 18.5 1, 18 1, 18 1.5, 18.5 1.5))" +"POLYGON ((19 1.5, 19 1, 18.5 1, 18.5 1.5, 19 1.5))" +"POLYGON ((19.5 1.5, 19.5 1, 19 1, 19 1.5, 19.5 1.5))" +"POLYGON ((20 1.5, 20 1, 19.5 1, 19.5 1.5, 20 1.5))" +"POLYGON ((20.5 1.5, 20.5 1, 20 1, 20 1.5, 20.5 1.5))" +"POLYGON ((21 1.5, 21 1, 20.5 1, 20.5 1.5, 21 1.5))" +"POLYGON ((21.5 1.5, 21.5 1, 21 1, 21 1.5, 21.5 1.5))" +"POLYGON ((22 1.5, 22 1, 21.5 1, 21.5 1.5, 22 1.5))" +"POLYGON ((22.5 1.5, 22.5 1, 22 1, 22 1.5, 22.5 1.5))" +"POLYGON ((23 1.5, 23 1, 22.5 1, 22.5 1.5, 23 1.5))" +"POLYGON ((23.5 1.5, 23.5 1, 23 1, 23 1.5, 23.5 1.5))" +"POLYGON ((24 1.5, 24 1, 23.5 1, 23.5 1.5, 24 1.5))" +"POLYGON ((24.5 1.5, 24.5 1, 24 1, 24 1.5, 24.5 1.5))" +"POLYGON ((25 1.5, 25 1, 24.5 1, 24.5 1.5, 25 1.5))" +"POLYGON ((25.5 1.5, 25.5 1, 25 1, 25 1.5, 25.5 1.5))" +"POLYGON ((26 1.5, 26 1, 25.5 1, 25.5 1.5, 26 1.5))" +"POLYGON ((26.5 1.5, 26.5 1, 26 1, 26 1.5, 26.5 1.5))" +"POLYGON ((27 1.5, 27 1, 26.5 1, 26.5 1.5, 27 1.5))" +"POLYGON ((27.5 1.5, 27.5 1, 27 1, 27 1.5, 27.5 1.5))" +"POLYGON ((28 1.5, 28 1, 27.5 1, 27.5 1.5, 28 1.5))" +"POLYGON ((28.5 1.5, 28.5 1, 28 1, 28 1.5, 28.5 1.5))" +"POLYGON ((29 1.5, 29 1, 28.5 1, 28.5 1.5, 29 1.5))" +"POLYGON ((29.5 1.5, 29.5 1, 29 1, 29 1.5, 29.5 1.5))" +"POLYGON ((30 1.5, 30 1, 29.5 1, 29.5 1.5, 30 1.5))" +"POLYGON ((30.5 1.5, 30.5 1, 30 1, 30 1.5, 30.5 1.5))" +"POLYGON ((31 1.5, 31 1, 30.5 1, 30.5 1.5, 31 1.5))" +"POLYGON ((31.5 1.5, 31.5 1, 31 1, 31 1.5, 31.5 1.5))" +"POLYGON ((32 1.5, 32 1, 31.5 1, 31.5 1.5, 32 1.5))" +"POLYGON ((32.5 1.5, 32.5 1, 32 1, 32 1.5, 32.5 1.5))" +"POLYGON ((33 1.5, 33 1, 32.5 1, 32.5 1.5, 33 1.5))" +"POLYGON ((33.5 1.5, 33.5 1, 33 1, 33 1.5, 33.5 1.5))" +"POLYGON ((34 1.5, 34 1, 33.5 1, 33.5 1.5, 34 1.5))" +"POLYGON ((34.5 1.5, 34.5 1, 34 1, 34 1.5, 34.5 1.5))" +"POLYGON ((35 1.5, 35 1, 34.5 1, 34.5 1.5, 35 1.5))" +"POLYGON ((35.5 1.5, 35.5 1, 35 1, 35 1.5, 35.5 1.5))" +"POLYGON ((36 1.5, 36 1, 35.5 1, 35.5 1.5, 36 1.5))" +"POLYGON ((36.5 1.5, 36.5 1, 36 1, 36 1.5, 36.5 1.5))" +"POLYGON ((37 1.5, 37 1, 36.5 1, 36.5 1.5, 37 1.5))" +"POLYGON ((37.5 1.5, 37.5 1, 37 1, 37 1.5, 37.5 1.5))" +"POLYGON ((38 1.5, 38 1, 37.5 1, 37.5 1.5, 38 1.5))" +"POLYGON ((38.5 1.5, 38.5 1, 38 1, 38 1.5, 38.5 1.5))" +"POLYGON ((39 1.5, 39 1, 38.5 1, 38.5 1.5, 39 1.5))" +"POLYGON ((39.5 1.5, 39.5 1, 39 1, 39 1.5, 39.5 1.5))" +"POLYGON ((40 1.5, 40 1, 39.5 1, 39.5 1.5, 40 1.5))" +"POLYGON ((40.5 1.5, 40.5 1, 40 1, 40 1.5, 40.5 1.5))" +"POLYGON ((41 1.5, 41 1, 40.5 1, 40.5 1.5, 41 1.5))" +"POLYGON ((41.5 1.5, 41.5 1, 41 1, 41 1.5, 41.5 1.5))" +"POLYGON ((42 1.5, 42 1, 41.5 1, 41.5 1.5, 42 1.5))" +"POLYGON ((42.5 1.5, 42.5 1, 42 1, 42 1.5, 42.5 1.5))" +"POLYGON ((43 1.5, 43 1, 42.5 1, 42.5 1.5, 43 1.5))" +"POLYGON ((43.5 1.5, 43.5 1, 43 1, 43 1.5, 43.5 1.5))" +"POLYGON ((44 1.5, 44 1, 43.5 1, 43.5 1.5, 44 1.5))" +"POLYGON ((10 2, 10 1.5, 9.5 1.5, 9.5 2, 10 2))" +"POLYGON ((10.5 2, 10.5 1.5, 10 1.5, 10 2, 10.5 2))" +"POLYGON ((11 2, 11 1.5, 10.5 1.5, 10.5 2, 11 2))" +"POLYGON ((11.5 2, 11.5 1.5, 11 1.5, 11 2, 11.5 2))" +"POLYGON ((12 2, 12 1.5, 11.5 1.5, 11.5 2, 12 2))" +"POLYGON ((12.5 2, 12.5 1.5, 12 1.5, 12 2, 12.5 2))" +"POLYGON ((13 2, 13 1.5, 12.5 1.5, 12.5 2, 13 2))" +"POLYGON ((13.5 2, 13.5 1.5, 13 1.5, 13 2, 13.5 2))" +"POLYGON ((14 2, 14 1.5, 13.5 1.5, 13.5 2, 14 2))" +"POLYGON ((14.5 2, 14.5 1.5, 14 1.5, 14 2, 14.5 2))" +"POLYGON ((15 2, 15 1.5, 14.5 1.5, 14.5 2, 15 2))" +"POLYGON ((15.5 2, 15.5 1.5, 15 1.5, 15 2, 15.5 2))" +"POLYGON ((16 2, 16 1.5, 15.5 1.5, 15.5 2, 16 2))" +"POLYGON ((16.5 2, 16.5 1.5, 16 1.5, 16 2, 16.5 2))" +"POLYGON ((17 2, 17 1.5, 16.5 1.5, 16.5 2, 17 2))" +"POLYGON ((17.5 2, 17.5 1.5, 17 1.5, 17 2, 17.5 2))" +"POLYGON ((18 2, 18 1.5, 17.5 1.5, 17.5 2, 18 2))" +"POLYGON ((18.5 2, 18.5 1.5, 18 1.5, 18 2, 18.5 2))" +"POLYGON ((19 2, 19 1.5, 18.5 1.5, 18.5 2, 19 2))" +"POLYGON ((19.5 2, 19.5 1.5, 19 1.5, 19 2, 19.5 2))" +"POLYGON ((20 2, 20 1.5, 19.5 1.5, 19.5 2, 20 2))" +"POLYGON ((20.5 2, 20.5 1.5, 20 1.5, 20 2, 20.5 2))" +"POLYGON ((21 2, 21 1.5, 20.5 1.5, 20.5 2, 21 2))" +"POLYGON ((21.5 2, 21.5 1.5, 21 1.5, 21 2, 21.5 2))" +"POLYGON ((22 2, 22 1.5, 21.5 1.5, 21.5 2, 22 2))" +"POLYGON ((22.5 2, 22.5 1.5, 22 1.5, 22 2, 22.5 2))" +"POLYGON ((23 2, 23 1.5, 22.5 1.5, 22.5 2, 23 2))" +"POLYGON ((23.5 2, 23.5 1.5, 23 1.5, 23 2, 23.5 2))" +"POLYGON ((24 2, 24 1.5, 23.5 1.5, 23.5 2, 24 2))" +"POLYGON ((24.5 2, 24.5 1.5, 24 1.5, 24 2, 24.5 2))" +"POLYGON ((25 2, 25 1.5, 24.5 1.5, 24.5 2, 25 2))" +"POLYGON ((25.5 2, 25.5 1.5, 25 1.5, 25 2, 25.5 2))" +"POLYGON ((26 2, 26 1.5, 25.5 1.5, 25.5 2, 26 2))" +"POLYGON ((26.5 2, 26.5 1.5, 26 1.5, 26 2, 26.5 2))" +"POLYGON ((27 2, 27 1.5, 26.5 1.5, 26.5 2, 27 2))" +"POLYGON ((27.5 2, 27.5 1.5, 27 1.5, 27 2, 27.5 2))" +"POLYGON ((28 2, 28 1.5, 27.5 1.5, 27.5 2, 28 2))" +"POLYGON ((28.5 2, 28.5 1.5, 28 1.5, 28 2, 28.5 2))" +"POLYGON ((29 2, 29 1.5, 28.5 1.5, 28.5 2, 29 2))" +"POLYGON ((29.5 2, 29.5 1.5, 29 1.5, 29 2, 29.5 2))" +"POLYGON ((30 2, 30 1.5, 29.5 1.5, 29.5 2, 30 2))" +"POLYGON ((30.5 2, 30.5 1.5, 30 1.5, 30 2, 30.5 2))" +"POLYGON ((31 2, 31 1.5, 30.5 1.5, 30.5 2, 31 2))" +"POLYGON ((31.5 2, 31.5 1.5, 31 1.5, 31 2, 31.5 2))" +"POLYGON ((32 2, 32 1.5, 31.5 1.5, 31.5 2, 32 2))" +"POLYGON ((32.5 2, 32.5 1.5, 32 1.5, 32 2, 32.5 2))" +"POLYGON ((33 2, 33 1.5, 32.5 1.5, 32.5 2, 33 2))" +"POLYGON ((33.5 2, 33.5 1.5, 33 1.5, 33 2, 33.5 2))" +"POLYGON ((34 2, 34 1.5, 33.5 1.5, 33.5 2, 34 2))" +"POLYGON ((34.5 2, 34.5 1.5, 34 1.5, 34 2, 34.5 2))" +"POLYGON ((35 2, 35 1.5, 34.5 1.5, 34.5 2, 35 2))" +"POLYGON ((35.5 2, 35.5 1.5, 35 1.5, 35 2, 35.5 2))" +"POLYGON ((36 2, 36 1.5, 35.5 1.5, 35.5 2, 36 2))" +"POLYGON ((36.5 2, 36.5 1.5, 36 1.5, 36 2, 36.5 2))" +"POLYGON ((37 2, 37 1.5, 36.5 1.5, 36.5 2, 37 2))" +"POLYGON ((37.5 2, 37.5 1.5, 37 1.5, 37 2, 37.5 2))" +"POLYGON ((38 2, 38 1.5, 37.5 1.5, 37.5 2, 38 2))" +"POLYGON ((38.5 2, 38.5 1.5, 38 1.5, 38 2, 38.5 2))" +"POLYGON ((39 2, 39 1.5, 38.5 1.5, 38.5 2, 39 2))" +"POLYGON ((39.5 2, 39.5 1.5, 39 1.5, 39 2, 39.5 2))" +"POLYGON ((40 2, 40 1.5, 39.5 1.5, 39.5 2, 40 2))" +"POLYGON ((40.5 2, 40.5 1.5, 40 1.5, 40 2, 40.5 2))" +"POLYGON ((41 2, 41 1.5, 40.5 1.5, 40.5 2, 41 2))" +"POLYGON ((41.5 2, 41.5 1.5, 41 1.5, 41 2, 41.5 2))" +"POLYGON ((42 2, 42 1.5, 41.5 1.5, 41.5 2, 42 2))" +"POLYGON ((42.5 2, 42.5 1.5, 42 1.5, 42 2, 42.5 2))" +"POLYGON ((43 2, 43 1.5, 42.5 1.5, 42.5 2, 43 2))" +"POLYGON ((43.5 2, 43.5 1.5, 43 1.5, 43 2, 43.5 2))" +"POLYGON ((44 2, 44 1.5, 43.5 1.5, 43.5 2, 44 2))" +"POLYGON ((44.5 2, 44.5 1.5, 44 1.5, 44 2, 44.5 2))" +"POLYGON ((45 2, 45 1.5, 44.5 1.5, 44.5 2, 45 2))" +"POLYGON ((10.5 2.5, 10.5 2, 10 2, 10 2.5, 10.5 2.5))" +"POLYGON ((11 2.5, 11 2, 10.5 2, 10.5 2.5, 11 2.5))" +"POLYGON ((11.5 2.5, 11.5 2, 11 2, 11 2.5, 11.5 2.5))" +"POLYGON ((12 2.5, 12 2, 11.5 2, 11.5 2.5, 12 2.5))" +"POLYGON ((12.5 2.5, 12.5 2, 12 2, 12 2.5, 12.5 2.5))" +"POLYGON ((13 2.5, 13 2, 12.5 2, 12.5 2.5, 13 2.5))" +"POLYGON ((13.5 2.5, 13.5 2, 13 2, 13 2.5, 13.5 2.5))" +"POLYGON ((14 2.5, 14 2, 13.5 2, 13.5 2.5, 14 2.5))" +"POLYGON ((14.5 2.5, 14.5 2, 14 2, 14 2.5, 14.5 2.5))" +"POLYGON ((15 2.5, 15 2, 14.5 2, 14.5 2.5, 15 2.5))" +"POLYGON ((15.5 2.5, 15.5 2, 15 2, 15 2.5, 15.5 2.5))" +"POLYGON ((16 2.5, 16 2, 15.5 2, 15.5 2.5, 16 2.5))" +"POLYGON ((16.5 2.5, 16.5 2, 16 2, 16 2.5, 16.5 2.5))" +"POLYGON ((17 2.5, 17 2, 16.5 2, 16.5 2.5, 17 2.5))" +"POLYGON ((17.5 2.5, 17.5 2, 17 2, 17 2.5, 17.5 2.5))" +"POLYGON ((18 2.5, 18 2, 17.5 2, 17.5 2.5, 18 2.5))" +"POLYGON ((18.5 2.5, 18.5 2, 18 2, 18 2.5, 18.5 2.5))" +"POLYGON ((19 2.5, 19 2, 18.5 2, 18.5 2.5, 19 2.5))" +"POLYGON ((19.5 2.5, 19.5 2, 19 2, 19 2.5, 19.5 2.5))" +"POLYGON ((20 2.5, 20 2, 19.5 2, 19.5 2.5, 20 2.5))" +"POLYGON ((20.5 2.5, 20.5 2, 20 2, 20 2.5, 20.5 2.5))" +"POLYGON ((21 2.5, 21 2, 20.5 2, 20.5 2.5, 21 2.5))" +"POLYGON ((21.5 2.5, 21.5 2, 21 2, 21 2.5, 21.5 2.5))" +"POLYGON ((22 2.5, 22 2, 21.5 2, 21.5 2.5, 22 2.5))" +"POLYGON ((22.5 2.5, 22.5 2, 22 2, 22 2.5, 22.5 2.5))" +"POLYGON ((23 2.5, 23 2, 22.5 2, 22.5 2.5, 23 2.5))" +"POLYGON ((23.5 2.5, 23.5 2, 23 2, 23 2.5, 23.5 2.5))" +"POLYGON ((24 2.5, 24 2, 23.5 2, 23.5 2.5, 24 2.5))" +"POLYGON ((24.5 2.5, 24.5 2, 24 2, 24 2.5, 24.5 2.5))" +"POLYGON ((25 2.5, 25 2, 24.5 2, 24.5 2.5, 25 2.5))" +"POLYGON ((25.5 2.5, 25.5 2, 25 2, 25 2.5, 25.5 2.5))" +"POLYGON ((26 2.5, 26 2, 25.5 2, 25.5 2.5, 26 2.5))" +"POLYGON ((26.5 2.5, 26.5 2, 26 2, 26 2.5, 26.5 2.5))" +"POLYGON ((27 2.5, 27 2, 26.5 2, 26.5 2.5, 27 2.5))" +"POLYGON ((27.5 2.5, 27.5 2, 27 2, 27 2.5, 27.5 2.5))" +"POLYGON ((28 2.5, 28 2, 27.5 2, 27.5 2.5, 28 2.5))" +"POLYGON ((28.5 2.5, 28.5 2, 28 2, 28 2.5, 28.5 2.5))" +"POLYGON ((29 2.5, 29 2, 28.5 2, 28.5 2.5, 29 2.5))" +"POLYGON ((29.5 2.5, 29.5 2, 29 2, 29 2.5, 29.5 2.5))" +"POLYGON ((30 2.5, 30 2, 29.5 2, 29.5 2.5, 30 2.5))" +"POLYGON ((30.5 2.5, 30.5 2, 30 2, 30 2.5, 30.5 2.5))" +"POLYGON ((31 2.5, 31 2, 30.5 2, 30.5 2.5, 31 2.5))" +"POLYGON ((31.5 2.5, 31.5 2, 31 2, 31 2.5, 31.5 2.5))" +"POLYGON ((32 2.5, 32 2, 31.5 2, 31.5 2.5, 32 2.5))" +"POLYGON ((32.5 2.5, 32.5 2, 32 2, 32 2.5, 32.5 2.5))" +"POLYGON ((33 2.5, 33 2, 32.5 2, 32.5 2.5, 33 2.5))" +"POLYGON ((33.5 2.5, 33.5 2, 33 2, 33 2.5, 33.5 2.5))" +"POLYGON ((34 2.5, 34 2, 33.5 2, 33.5 2.5, 34 2.5))" +"POLYGON ((34.5 2.5, 34.5 2, 34 2, 34 2.5, 34.5 2.5))" +"POLYGON ((35 2.5, 35 2, 34.5 2, 34.5 2.5, 35 2.5))" +"POLYGON ((35.5 2.5, 35.5 2, 35 2, 35 2.5, 35.5 2.5))" +"POLYGON ((36 2.5, 36 2, 35.5 2, 35.5 2.5, 36 2.5))" +"POLYGON ((36.5 2.5, 36.5 2, 36 2, 36 2.5, 36.5 2.5))" +"POLYGON ((37 2.5, 37 2, 36.5 2, 36.5 2.5, 37 2.5))" +"POLYGON ((37.5 2.5, 37.5 2, 37 2, 37 2.5, 37.5 2.5))" +"POLYGON ((38 2.5, 38 2, 37.5 2, 37.5 2.5, 38 2.5))" +"POLYGON ((38.5 2.5, 38.5 2, 38 2, 38 2.5, 38.5 2.5))" +"POLYGON ((39 2.5, 39 2, 38.5 2, 38.5 2.5, 39 2.5))" +"POLYGON ((39.5 2.5, 39.5 2, 39 2, 39 2.5, 39.5 2.5))" +"POLYGON ((40 2.5, 40 2, 39.5 2, 39.5 2.5, 40 2.5))" +"POLYGON ((40.5 2.5, 40.5 2, 40 2, 40 2.5, 40.5 2.5))" +"POLYGON ((41 2.5, 41 2, 40.5 2, 40.5 2.5, 41 2.5))" +"POLYGON ((41.5 2.5, 41.5 2, 41 2, 41 2.5, 41.5 2.5))" +"POLYGON ((42 2.5, 42 2, 41.5 2, 41.5 2.5, 42 2.5))" +"POLYGON ((42.5 2.5, 42.5 2, 42 2, 42 2.5, 42.5 2.5))" +"POLYGON ((43 2.5, 43 2, 42.5 2, 42.5 2.5, 43 2.5))" +"POLYGON ((43.5 2.5, 43.5 2, 43 2, 43 2.5, 43.5 2.5))" +"POLYGON ((44 2.5, 44 2, 43.5 2, 43.5 2.5, 44 2.5))" +"POLYGON ((44.5 2.5, 44.5 2, 44 2, 44 2.5, 44.5 2.5))" +"POLYGON ((45 2.5, 45 2, 44.5 2, 44.5 2.5, 45 2.5))" +"POLYGON ((45.5 2.5, 45.5 2, 45 2, 45 2.5, 45.5 2.5))" +"POLYGON ((10.5 3, 10.5 2.5, 10 2.5, 10 3, 10.5 3))" +"POLYGON ((11 3, 11 2.5, 10.5 2.5, 10.5 3, 11 3))" +"POLYGON ((11.5 3, 11.5 2.5, 11 2.5, 11 3, 11.5 3))" +"POLYGON ((12 3, 12 2.5, 11.5 2.5, 11.5 3, 12 3))" +"POLYGON ((12.5 3, 12.5 2.5, 12 2.5, 12 3, 12.5 3))" +"POLYGON ((13 3, 13 2.5, 12.5 2.5, 12.5 3, 13 3))" +"POLYGON ((13.5 3, 13.5 2.5, 13 2.5, 13 3, 13.5 3))" +"POLYGON ((14 3, 14 2.5, 13.5 2.5, 13.5 3, 14 3))" +"POLYGON ((14.5 3, 14.5 2.5, 14 2.5, 14 3, 14.5 3))" +"POLYGON ((15 3, 15 2.5, 14.5 2.5, 14.5 3, 15 3))" +"POLYGON ((15.5 3, 15.5 2.5, 15 2.5, 15 3, 15.5 3))" +"POLYGON ((16 3, 16 2.5, 15.5 2.5, 15.5 3, 16 3))" +"POLYGON ((16.5 3, 16.5 2.5, 16 2.5, 16 3, 16.5 3))" +"POLYGON ((17 3, 17 2.5, 16.5 2.5, 16.5 3, 17 3))" +"POLYGON ((17.5 3, 17.5 2.5, 17 2.5, 17 3, 17.5 3))" +"POLYGON ((18 3, 18 2.5, 17.5 2.5, 17.5 3, 18 3))" +"POLYGON ((18.5 3, 18.5 2.5, 18 2.5, 18 3, 18.5 3))" +"POLYGON ((19 3, 19 2.5, 18.5 2.5, 18.5 3, 19 3))" +"POLYGON ((19.5 3, 19.5 2.5, 19 2.5, 19 3, 19.5 3))" +"POLYGON ((20 3, 20 2.5, 19.5 2.5, 19.5 3, 20 3))" +"POLYGON ((20.5 3, 20.5 2.5, 20 2.5, 20 3, 20.5 3))" +"POLYGON ((21 3, 21 2.5, 20.5 2.5, 20.5 3, 21 3))" +"POLYGON ((21.5 3, 21.5 2.5, 21 2.5, 21 3, 21.5 3))" +"POLYGON ((22 3, 22 2.5, 21.5 2.5, 21.5 3, 22 3))" +"POLYGON ((22.5 3, 22.5 2.5, 22 2.5, 22 3, 22.5 3))" +"POLYGON ((23 3, 23 2.5, 22.5 2.5, 22.5 3, 23 3))" +"POLYGON ((23.5 3, 23.5 2.5, 23 2.5, 23 3, 23.5 3))" +"POLYGON ((24 3, 24 2.5, 23.5 2.5, 23.5 3, 24 3))" +"POLYGON ((24.5 3, 24.5 2.5, 24 2.5, 24 3, 24.5 3))" +"POLYGON ((25 3, 25 2.5, 24.5 2.5, 24.5 3, 25 3))" +"POLYGON ((25.5 3, 25.5 2.5, 25 2.5, 25 3, 25.5 3))" +"POLYGON ((26 3, 26 2.5, 25.5 2.5, 25.5 3, 26 3))" +"POLYGON ((26.5 3, 26.5 2.5, 26 2.5, 26 3, 26.5 3))" +"POLYGON ((27 3, 27 2.5, 26.5 2.5, 26.5 3, 27 3))" +"POLYGON ((27.5 3, 27.5 2.5, 27 2.5, 27 3, 27.5 3))" +"POLYGON ((28 3, 28 2.5, 27.5 2.5, 27.5 3, 28 3))" +"POLYGON ((28.5 3, 28.5 2.5, 28 2.5, 28 3, 28.5 3))" +"POLYGON ((29 3, 29 2.5, 28.5 2.5, 28.5 3, 29 3))" +"POLYGON ((29.5 3, 29.5 2.5, 29 2.5, 29 3, 29.5 3))" +"POLYGON ((30 3, 30 2.5, 29.5 2.5, 29.5 3, 30 3))" +"POLYGON ((30.5 3, 30.5 2.5, 30 2.5, 30 3, 30.5 3))" +"POLYGON ((31 3, 31 2.5, 30.5 2.5, 30.5 3, 31 3))" +"POLYGON ((31.5 3, 31.5 2.5, 31 2.5, 31 3, 31.5 3))" +"POLYGON ((32 3, 32 2.5, 31.5 2.5, 31.5 3, 32 3))" +"POLYGON ((32.5 3, 32.5 2.5, 32 2.5, 32 3, 32.5 3))" +"POLYGON ((33 3, 33 2.5, 32.5 2.5, 32.5 3, 33 3))" +"POLYGON ((33.5 3, 33.5 2.5, 33 2.5, 33 3, 33.5 3))" +"POLYGON ((34 3, 34 2.5, 33.5 2.5, 33.5 3, 34 3))" +"POLYGON ((34.5 3, 34.5 2.5, 34 2.5, 34 3, 34.5 3))" +"POLYGON ((35 3, 35 2.5, 34.5 2.5, 34.5 3, 35 3))" +"POLYGON ((35.5 3, 35.5 2.5, 35 2.5, 35 3, 35.5 3))" +"POLYGON ((36 3, 36 2.5, 35.5 2.5, 35.5 3, 36 3))" +"POLYGON ((36.5 3, 36.5 2.5, 36 2.5, 36 3, 36.5 3))" +"POLYGON ((37 3, 37 2.5, 36.5 2.5, 36.5 3, 37 3))" +"POLYGON ((37.5 3, 37.5 2.5, 37 2.5, 37 3, 37.5 3))" +"POLYGON ((38 3, 38 2.5, 37.5 2.5, 37.5 3, 38 3))" +"POLYGON ((38.5 3, 38.5 2.5, 38 2.5, 38 3, 38.5 3))" +"POLYGON ((39 3, 39 2.5, 38.5 2.5, 38.5 3, 39 3))" +"POLYGON ((39.5 3, 39.5 2.5, 39 2.5, 39 3, 39.5 3))" +"POLYGON ((40 3, 40 2.5, 39.5 2.5, 39.5 3, 40 3))" +"POLYGON ((40.5 3, 40.5 2.5, 40 2.5, 40 3, 40.5 3))" +"POLYGON ((41 3, 41 2.5, 40.5 2.5, 40.5 3, 41 3))" +"POLYGON ((41.5 3, 41.5 2.5, 41 2.5, 41 3, 41.5 3))" +"POLYGON ((42 3, 42 2.5, 41.5 2.5, 41.5 3, 42 3))" +"POLYGON ((42.5 3, 42.5 2.5, 42 2.5, 42 3, 42.5 3))" +"POLYGON ((43 3, 43 2.5, 42.5 2.5, 42.5 3, 43 3))" +"POLYGON ((43.5 3, 43.5 2.5, 43 2.5, 43 3, 43.5 3))" +"POLYGON ((44 3, 44 2.5, 43.5 2.5, 43.5 3, 44 3))" +"POLYGON ((44.5 3, 44.5 2.5, 44 2.5, 44 3, 44.5 3))" +"POLYGON ((45 3, 45 2.5, 44.5 2.5, 44.5 3, 45 3))" +"POLYGON ((45.5 3, 45.5 2.5, 45 2.5, 45 3, 45.5 3))" +"POLYGON ((46 3, 46 2.5, 45.5 2.5, 45.5 3, 46 3))" +"POLYGON ((46.5 3, 46.5 2.5, 46 2.5, 46 3, 46.5 3))" +"POLYGON ((10.5 3.5, 10.5 3, 10 3, 10 3.5, 10.5 3.5))" +"POLYGON ((11 3.5, 11 3, 10.5 3, 10.5 3.5, 11 3.5))" +"POLYGON ((11.5 3.5, 11.5 3, 11 3, 11 3.5, 11.5 3.5))" +"POLYGON ((12 3.5, 12 3, 11.5 3, 11.5 3.5, 12 3.5))" +"POLYGON ((12.5 3.5, 12.5 3, 12 3, 12 3.5, 12.5 3.5))" +"POLYGON ((13 3.5, 13 3, 12.5 3, 12.5 3.5, 13 3.5))" +"POLYGON ((13.5 3.5, 13.5 3, 13 3, 13 3.5, 13.5 3.5))" +"POLYGON ((14 3.5, 14 3, 13.5 3, 13.5 3.5, 14 3.5))" +"POLYGON ((14.5 3.5, 14.5 3, 14 3, 14 3.5, 14.5 3.5))" +"POLYGON ((15 3.5, 15 3, 14.5 3, 14.5 3.5, 15 3.5))" +"POLYGON ((15.5 3.5, 15.5 3, 15 3, 15 3.5, 15.5 3.5))" +"POLYGON ((16 3.5, 16 3, 15.5 3, 15.5 3.5, 16 3.5))" +"POLYGON ((16.5 3.5, 16.5 3, 16 3, 16 3.5, 16.5 3.5))" +"POLYGON ((17 3.5, 17 3, 16.5 3, 16.5 3.5, 17 3.5))" +"POLYGON ((17.5 3.5, 17.5 3, 17 3, 17 3.5, 17.5 3.5))" +"POLYGON ((18 3.5, 18 3, 17.5 3, 17.5 3.5, 18 3.5))" +"POLYGON ((18.5 3.5, 18.5 3, 18 3, 18 3.5, 18.5 3.5))" +"POLYGON ((19 3.5, 19 3, 18.5 3, 18.5 3.5, 19 3.5))" +"POLYGON ((19.5 3.5, 19.5 3, 19 3, 19 3.5, 19.5 3.5))" +"POLYGON ((20 3.5, 20 3, 19.5 3, 19.5 3.5, 20 3.5))" +"POLYGON ((20.5 3.5, 20.5 3, 20 3, 20 3.5, 20.5 3.5))" +"POLYGON ((21 3.5, 21 3, 20.5 3, 20.5 3.5, 21 3.5))" +"POLYGON ((21.5 3.5, 21.5 3, 21 3, 21 3.5, 21.5 3.5))" +"POLYGON ((22 3.5, 22 3, 21.5 3, 21.5 3.5, 22 3.5))" +"POLYGON ((22.5 3.5, 22.5 3, 22 3, 22 3.5, 22.5 3.5))" +"POLYGON ((23 3.5, 23 3, 22.5 3, 22.5 3.5, 23 3.5))" +"POLYGON ((23.5 3.5, 23.5 3, 23 3, 23 3.5, 23.5 3.5))" +"POLYGON ((24 3.5, 24 3, 23.5 3, 23.5 3.5, 24 3.5))" +"POLYGON ((24.5 3.5, 24.5 3, 24 3, 24 3.5, 24.5 3.5))" +"POLYGON ((25 3.5, 25 3, 24.5 3, 24.5 3.5, 25 3.5))" +"POLYGON ((25.5 3.5, 25.5 3, 25 3, 25 3.5, 25.5 3.5))" +"POLYGON ((26 3.5, 26 3, 25.5 3, 25.5 3.5, 26 3.5))" +"POLYGON ((26.5 3.5, 26.5 3, 26 3, 26 3.5, 26.5 3.5))" +"POLYGON ((27 3.5, 27 3, 26.5 3, 26.5 3.5, 27 3.5))" +"POLYGON ((27.5 3.5, 27.5 3, 27 3, 27 3.5, 27.5 3.5))" +"POLYGON ((28 3.5, 28 3, 27.5 3, 27.5 3.5, 28 3.5))" +"POLYGON ((28.5 3.5, 28.5 3, 28 3, 28 3.5, 28.5 3.5))" +"POLYGON ((29 3.5, 29 3, 28.5 3, 28.5 3.5, 29 3.5))" +"POLYGON ((29.5 3.5, 29.5 3, 29 3, 29 3.5, 29.5 3.5))" +"POLYGON ((30 3.5, 30 3, 29.5 3, 29.5 3.5, 30 3.5))" +"POLYGON ((30.5 3.5, 30.5 3, 30 3, 30 3.5, 30.5 3.5))" +"POLYGON ((31 3.5, 31 3, 30.5 3, 30.5 3.5, 31 3.5))" +"POLYGON ((31.5 3.5, 31.5 3, 31 3, 31 3.5, 31.5 3.5))" +"POLYGON ((32 3.5, 32 3, 31.5 3, 31.5 3.5, 32 3.5))" +"POLYGON ((32.5 3.5, 32.5 3, 32 3, 32 3.5, 32.5 3.5))" +"POLYGON ((33 3.5, 33 3, 32.5 3, 32.5 3.5, 33 3.5))" +"POLYGON ((33.5 3.5, 33.5 3, 33 3, 33 3.5, 33.5 3.5))" +"POLYGON ((34 3.5, 34 3, 33.5 3, 33.5 3.5, 34 3.5))" +"POLYGON ((34.5 3.5, 34.5 3, 34 3, 34 3.5, 34.5 3.5))" +"POLYGON ((35 3.5, 35 3, 34.5 3, 34.5 3.5, 35 3.5))" +"POLYGON ((35.5 3.5, 35.5 3, 35 3, 35 3.5, 35.5 3.5))" +"POLYGON ((36 3.5, 36 3, 35.5 3, 35.5 3.5, 36 3.5))" +"POLYGON ((36.5 3.5, 36.5 3, 36 3, 36 3.5, 36.5 3.5))" +"POLYGON ((37 3.5, 37 3, 36.5 3, 36.5 3.5, 37 3.5))" +"POLYGON ((37.5 3.5, 37.5 3, 37 3, 37 3.5, 37.5 3.5))" +"POLYGON ((38 3.5, 38 3, 37.5 3, 37.5 3.5, 38 3.5))" +"POLYGON ((38.5 3.5, 38.5 3, 38 3, 38 3.5, 38.5 3.5))" +"POLYGON ((39 3.5, 39 3, 38.5 3, 38.5 3.5, 39 3.5))" +"POLYGON ((39.5 3.5, 39.5 3, 39 3, 39 3.5, 39.5 3.5))" +"POLYGON ((40 3.5, 40 3, 39.5 3, 39.5 3.5, 40 3.5))" +"POLYGON ((40.5 3.5, 40.5 3, 40 3, 40 3.5, 40.5 3.5))" +"POLYGON ((41 3.5, 41 3, 40.5 3, 40.5 3.5, 41 3.5))" +"POLYGON ((41.5 3.5, 41.5 3, 41 3, 41 3.5, 41.5 3.5))" +"POLYGON ((42 3.5, 42 3, 41.5 3, 41.5 3.5, 42 3.5))" +"POLYGON ((42.5 3.5, 42.5 3, 42 3, 42 3.5, 42.5 3.5))" +"POLYGON ((43 3.5, 43 3, 42.5 3, 42.5 3.5, 43 3.5))" +"POLYGON ((43.5 3.5, 43.5 3, 43 3, 43 3.5, 43.5 3.5))" +"POLYGON ((44 3.5, 44 3, 43.5 3, 43.5 3.5, 44 3.5))" +"POLYGON ((44.5 3.5, 44.5 3, 44 3, 44 3.5, 44.5 3.5))" +"POLYGON ((45 3.5, 45 3, 44.5 3, 44.5 3.5, 45 3.5))" +"POLYGON ((45.5 3.5, 45.5 3, 45 3, 45 3.5, 45.5 3.5))" +"POLYGON ((46 3.5, 46 3, 45.5 3, 45.5 3.5, 46 3.5))" +"POLYGON ((46.5 3.5, 46.5 3, 46 3, 46 3.5, 46.5 3.5))" +"POLYGON ((47 3.5, 47 3, 46.5 3, 46.5 3.5, 47 3.5))" +"POLYGON ((10 4, 10 3.5, 9.5 3.5, 9.5 4, 10 4))" +"POLYGON ((10.5 4, 10.5 3.5, 10 3.5, 10 4, 10.5 4))" +"POLYGON ((11 4, 11 3.5, 10.5 3.5, 10.5 4, 11 4))" +"POLYGON ((11.5 4, 11.5 3.5, 11 3.5, 11 4, 11.5 4))" +"POLYGON ((12 4, 12 3.5, 11.5 3.5, 11.5 4, 12 4))" +"POLYGON ((12.5 4, 12.5 3.5, 12 3.5, 12 4, 12.5 4))" +"POLYGON ((13 4, 13 3.5, 12.5 3.5, 12.5 4, 13 4))" +"POLYGON ((13.5 4, 13.5 3.5, 13 3.5, 13 4, 13.5 4))" +"POLYGON ((14 4, 14 3.5, 13.5 3.5, 13.5 4, 14 4))" +"POLYGON ((14.5 4, 14.5 3.5, 14 3.5, 14 4, 14.5 4))" +"POLYGON ((15 4, 15 3.5, 14.5 3.5, 14.5 4, 15 4))" +"POLYGON ((15.5 4, 15.5 3.5, 15 3.5, 15 4, 15.5 4))" +"POLYGON ((16 4, 16 3.5, 15.5 3.5, 15.5 4, 16 4))" +"POLYGON ((16.5 4, 16.5 3.5, 16 3.5, 16 4, 16.5 4))" +"POLYGON ((17 4, 17 3.5, 16.5 3.5, 16.5 4, 17 4))" +"POLYGON ((17.5 4, 17.5 3.5, 17 3.5, 17 4, 17.5 4))" +"POLYGON ((18 4, 18 3.5, 17.5 3.5, 17.5 4, 18 4))" +"POLYGON ((18.5 4, 18.5 3.5, 18 3.5, 18 4, 18.5 4))" +"POLYGON ((19 4, 19 3.5, 18.5 3.5, 18.5 4, 19 4))" +"POLYGON ((19.5 4, 19.5 3.5, 19 3.5, 19 4, 19.5 4))" +"POLYGON ((20 4, 20 3.5, 19.5 3.5, 19.5 4, 20 4))" +"POLYGON ((20.5 4, 20.5 3.5, 20 3.5, 20 4, 20.5 4))" +"POLYGON ((21 4, 21 3.5, 20.5 3.5, 20.5 4, 21 4))" +"POLYGON ((21.5 4, 21.5 3.5, 21 3.5, 21 4, 21.5 4))" +"POLYGON ((22 4, 22 3.5, 21.5 3.5, 21.5 4, 22 4))" +"POLYGON ((22.5 4, 22.5 3.5, 22 3.5, 22 4, 22.5 4))" +"POLYGON ((23 4, 23 3.5, 22.5 3.5, 22.5 4, 23 4))" +"POLYGON ((23.5 4, 23.5 3.5, 23 3.5, 23 4, 23.5 4))" +"POLYGON ((24 4, 24 3.5, 23.5 3.5, 23.5 4, 24 4))" +"POLYGON ((24.5 4, 24.5 3.5, 24 3.5, 24 4, 24.5 4))" +"POLYGON ((25 4, 25 3.5, 24.5 3.5, 24.5 4, 25 4))" +"POLYGON ((25.5 4, 25.5 3.5, 25 3.5, 25 4, 25.5 4))" +"POLYGON ((26 4, 26 3.5, 25.5 3.5, 25.5 4, 26 4))" +"POLYGON ((26.5 4, 26.5 3.5, 26 3.5, 26 4, 26.5 4))" +"POLYGON ((27 4, 27 3.5, 26.5 3.5, 26.5 4, 27 4))" +"POLYGON ((27.5 4, 27.5 3.5, 27 3.5, 27 4, 27.5 4))" +"POLYGON ((28 4, 28 3.5, 27.5 3.5, 27.5 4, 28 4))" +"POLYGON ((28.5 4, 28.5 3.5, 28 3.5, 28 4, 28.5 4))" +"POLYGON ((29 4, 29 3.5, 28.5 3.5, 28.5 4, 29 4))" +"POLYGON ((29.5 4, 29.5 3.5, 29 3.5, 29 4, 29.5 4))" +"POLYGON ((30 4, 30 3.5, 29.5 3.5, 29.5 4, 30 4))" +"POLYGON ((30.5 4, 30.5 3.5, 30 3.5, 30 4, 30.5 4))" +"POLYGON ((31 4, 31 3.5, 30.5 3.5, 30.5 4, 31 4))" +"POLYGON ((31.5 4, 31.5 3.5, 31 3.5, 31 4, 31.5 4))" +"POLYGON ((32 4, 32 3.5, 31.5 3.5, 31.5 4, 32 4))" +"POLYGON ((32.5 4, 32.5 3.5, 32 3.5, 32 4, 32.5 4))" +"POLYGON ((33 4, 33 3.5, 32.5 3.5, 32.5 4, 33 4))" +"POLYGON ((33.5 4, 33.5 3.5, 33 3.5, 33 4, 33.5 4))" +"POLYGON ((34 4, 34 3.5, 33.5 3.5, 33.5 4, 34 4))" +"POLYGON ((34.5 4, 34.5 3.5, 34 3.5, 34 4, 34.5 4))" +"POLYGON ((35 4, 35 3.5, 34.5 3.5, 34.5 4, 35 4))" +"POLYGON ((35.5 4, 35.5 3.5, 35 3.5, 35 4, 35.5 4))" +"POLYGON ((36 4, 36 3.5, 35.5 3.5, 35.5 4, 36 4))" +"POLYGON ((36.5 4, 36.5 3.5, 36 3.5, 36 4, 36.5 4))" +"POLYGON ((37 4, 37 3.5, 36.5 3.5, 36.5 4, 37 4))" +"POLYGON ((37.5 4, 37.5 3.5, 37 3.5, 37 4, 37.5 4))" +"POLYGON ((38 4, 38 3.5, 37.5 3.5, 37.5 4, 38 4))" +"POLYGON ((38.5 4, 38.5 3.5, 38 3.5, 38 4, 38.5 4))" +"POLYGON ((39 4, 39 3.5, 38.5 3.5, 38.5 4, 39 4))" +"POLYGON ((39.5 4, 39.5 3.5, 39 3.5, 39 4, 39.5 4))" +"POLYGON ((40 4, 40 3.5, 39.5 3.5, 39.5 4, 40 4))" +"POLYGON ((40.5 4, 40.5 3.5, 40 3.5, 40 4, 40.5 4))" +"POLYGON ((41 4, 41 3.5, 40.5 3.5, 40.5 4, 41 4))" +"POLYGON ((41.5 4, 41.5 3.5, 41 3.5, 41 4, 41.5 4))" +"POLYGON ((42 4, 42 3.5, 41.5 3.5, 41.5 4, 42 4))" +"POLYGON ((42.5 4, 42.5 3.5, 42 3.5, 42 4, 42.5 4))" +"POLYGON ((43 4, 43 3.5, 42.5 3.5, 42.5 4, 43 4))" +"POLYGON ((43.5 4, 43.5 3.5, 43 3.5, 43 4, 43.5 4))" +"POLYGON ((44 4, 44 3.5, 43.5 3.5, 43.5 4, 44 4))" +"POLYGON ((44.5 4, 44.5 3.5, 44 3.5, 44 4, 44.5 4))" +"POLYGON ((45 4, 45 3.5, 44.5 3.5, 44.5 4, 45 4))" +"POLYGON ((45.5 4, 45.5 3.5, 45 3.5, 45 4, 45.5 4))" +"POLYGON ((46 4, 46 3.5, 45.5 3.5, 45.5 4, 46 4))" +"POLYGON ((46.5 4, 46.5 3.5, 46 3.5, 46 4, 46.5 4))" +"POLYGON ((47 4, 47 3.5, 46.5 3.5, 46.5 4, 47 4))" +"POLYGON ((47.5 4, 47.5 3.5, 47 3.5, 47 4, 47.5 4))" +"POLYGON ((9.5 4.5, 9.5 4, 9 4, 9 4.5, 9.5 4.5))" +"POLYGON ((10 4.5, 10 4, 9.5 4, 9.5 4.5, 10 4.5))" +"POLYGON ((10.5 4.5, 10.5 4, 10 4, 10 4.5, 10.5 4.5))" +"POLYGON ((11 4.5, 11 4, 10.5 4, 10.5 4.5, 11 4.5))" +"POLYGON ((11.5 4.5, 11.5 4, 11 4, 11 4.5, 11.5 4.5))" +"POLYGON ((12 4.5, 12 4, 11.5 4, 11.5 4.5, 12 4.5))" +"POLYGON ((12.5 4.5, 12.5 4, 12 4, 12 4.5, 12.5 4.5))" +"POLYGON ((13 4.5, 13 4, 12.5 4, 12.5 4.5, 13 4.5))" +"POLYGON ((13.5 4.5, 13.5 4, 13 4, 13 4.5, 13.5 4.5))" +"POLYGON ((14 4.5, 14 4, 13.5 4, 13.5 4.5, 14 4.5))" +"POLYGON ((14.5 4.5, 14.5 4, 14 4, 14 4.5, 14.5 4.5))" +"POLYGON ((15 4.5, 15 4, 14.5 4, 14.5 4.5, 15 4.5))" +"POLYGON ((15.5 4.5, 15.5 4, 15 4, 15 4.5, 15.5 4.5))" +"POLYGON ((16 4.5, 16 4, 15.5 4, 15.5 4.5, 16 4.5))" +"POLYGON ((16.5 4.5, 16.5 4, 16 4, 16 4.5, 16.5 4.5))" +"POLYGON ((17 4.5, 17 4, 16.5 4, 16.5 4.5, 17 4.5))" +"POLYGON ((17.5 4.5, 17.5 4, 17 4, 17 4.5, 17.5 4.5))" +"POLYGON ((18 4.5, 18 4, 17.5 4, 17.5 4.5, 18 4.5))" +"POLYGON ((18.5 4.5, 18.5 4, 18 4, 18 4.5, 18.5 4.5))" +"POLYGON ((19 4.5, 19 4, 18.5 4, 18.5 4.5, 19 4.5))" +"POLYGON ((19.5 4.5, 19.5 4, 19 4, 19 4.5, 19.5 4.5))" +"POLYGON ((20 4.5, 20 4, 19.5 4, 19.5 4.5, 20 4.5))" +"POLYGON ((20.5 4.5, 20.5 4, 20 4, 20 4.5, 20.5 4.5))" +"POLYGON ((21 4.5, 21 4, 20.5 4, 20.5 4.5, 21 4.5))" +"POLYGON ((21.5 4.5, 21.5 4, 21 4, 21 4.5, 21.5 4.5))" +"POLYGON ((22 4.5, 22 4, 21.5 4, 21.5 4.5, 22 4.5))" +"POLYGON ((22.5 4.5, 22.5 4, 22 4, 22 4.5, 22.5 4.5))" +"POLYGON ((23 4.5, 23 4, 22.5 4, 22.5 4.5, 23 4.5))" +"POLYGON ((23.5 4.5, 23.5 4, 23 4, 23 4.5, 23.5 4.5))" +"POLYGON ((24 4.5, 24 4, 23.5 4, 23.5 4.5, 24 4.5))" +"POLYGON ((24.5 4.5, 24.5 4, 24 4, 24 4.5, 24.5 4.5))" +"POLYGON ((25 4.5, 25 4, 24.5 4, 24.5 4.5, 25 4.5))" +"POLYGON ((25.5 4.5, 25.5 4, 25 4, 25 4.5, 25.5 4.5))" +"POLYGON ((26 4.5, 26 4, 25.5 4, 25.5 4.5, 26 4.5))" +"POLYGON ((26.5 4.5, 26.5 4, 26 4, 26 4.5, 26.5 4.5))" +"POLYGON ((27 4.5, 27 4, 26.5 4, 26.5 4.5, 27 4.5))" +"POLYGON ((27.5 4.5, 27.5 4, 27 4, 27 4.5, 27.5 4.5))" +"POLYGON ((28 4.5, 28 4, 27.5 4, 27.5 4.5, 28 4.5))" +"POLYGON ((28.5 4.5, 28.5 4, 28 4, 28 4.5, 28.5 4.5))" +"POLYGON ((29 4.5, 29 4, 28.5 4, 28.5 4.5, 29 4.5))" +"POLYGON ((29.5 4.5, 29.5 4, 29 4, 29 4.5, 29.5 4.5))" +"POLYGON ((30 4.5, 30 4, 29.5 4, 29.5 4.5, 30 4.5))" +"POLYGON ((30.5 4.5, 30.5 4, 30 4, 30 4.5, 30.5 4.5))" +"POLYGON ((31 4.5, 31 4, 30.5 4, 30.5 4.5, 31 4.5))" +"POLYGON ((31.5 4.5, 31.5 4, 31 4, 31 4.5, 31.5 4.5))" +"POLYGON ((32 4.5, 32 4, 31.5 4, 31.5 4.5, 32 4.5))" +"POLYGON ((32.5 4.5, 32.5 4, 32 4, 32 4.5, 32.5 4.5))" +"POLYGON ((33 4.5, 33 4, 32.5 4, 32.5 4.5, 33 4.5))" +"POLYGON ((33.5 4.5, 33.5 4, 33 4, 33 4.5, 33.5 4.5))" +"POLYGON ((34 4.5, 34 4, 33.5 4, 33.5 4.5, 34 4.5))" +"POLYGON ((34.5 4.5, 34.5 4, 34 4, 34 4.5, 34.5 4.5))" +"POLYGON ((35 4.5, 35 4, 34.5 4, 34.5 4.5, 35 4.5))" +"POLYGON ((35.5 4.5, 35.5 4, 35 4, 35 4.5, 35.5 4.5))" +"POLYGON ((36 4.5, 36 4, 35.5 4, 35.5 4.5, 36 4.5))" +"POLYGON ((36.5 4.5, 36.5 4, 36 4, 36 4.5, 36.5 4.5))" +"POLYGON ((37 4.5, 37 4, 36.5 4, 36.5 4.5, 37 4.5))" +"POLYGON ((37.5 4.5, 37.5 4, 37 4, 37 4.5, 37.5 4.5))" +"POLYGON ((38 4.5, 38 4, 37.5 4, 37.5 4.5, 38 4.5))" +"POLYGON ((38.5 4.5, 38.5 4, 38 4, 38 4.5, 38.5 4.5))" +"POLYGON ((39 4.5, 39 4, 38.5 4, 38.5 4.5, 39 4.5))" +"POLYGON ((39.5 4.5, 39.5 4, 39 4, 39 4.5, 39.5 4.5))" +"POLYGON ((40 4.5, 40 4, 39.5 4, 39.5 4.5, 40 4.5))" +"POLYGON ((40.5 4.5, 40.5 4, 40 4, 40 4.5, 40.5 4.5))" +"POLYGON ((41 4.5, 41 4, 40.5 4, 40.5 4.5, 41 4.5))" +"POLYGON ((41.5 4.5, 41.5 4, 41 4, 41 4.5, 41.5 4.5))" +"POLYGON ((42 4.5, 42 4, 41.5 4, 41.5 4.5, 42 4.5))" +"POLYGON ((42.5 4.5, 42.5 4, 42 4, 42 4.5, 42.5 4.5))" +"POLYGON ((43 4.5, 43 4, 42.5 4, 42.5 4.5, 43 4.5))" +"POLYGON ((43.5 4.5, 43.5 4, 43 4, 43 4.5, 43.5 4.5))" +"POLYGON ((44 4.5, 44 4, 43.5 4, 43.5 4.5, 44 4.5))" +"POLYGON ((44.5 4.5, 44.5 4, 44 4, 44 4.5, 44.5 4.5))" +"POLYGON ((45 4.5, 45 4, 44.5 4, 44.5 4.5, 45 4.5))" +"POLYGON ((45.5 4.5, 45.5 4, 45 4, 45 4.5, 45.5 4.5))" +"POLYGON ((46 4.5, 46 4, 45.5 4, 45.5 4.5, 46 4.5))" +"POLYGON ((46.5 4.5, 46.5 4, 46 4, 46 4.5, 46.5 4.5))" +"POLYGON ((47 4.5, 47 4, 46.5 4, 46.5 4.5, 47 4.5))" +"POLYGON ((47.5 4.5, 47.5 4, 47 4, 47 4.5, 47.5 4.5))" +"POLYGON ((-8 5, -8 4.5, -8.5 4.5, -8.5 5, -8 5))" +"POLYGON ((-7.5 5, -7.5 4.5, -8 4.5, -8 5, -7.5 5))" +"POLYGON ((-7 5, -7 4.5, -7.5 4.5, -7.5 5, -7 5))" +"POLYGON ((-6.5 5, -6.5 4.5, -7 4.5, -7 5, -6.5 5))" +"POLYGON ((6 5, 6 4.5, 5.5 4.5, 5.5 5, 6 5))" +"POLYGON ((6.5 5, 6.5 4.5, 6 4.5, 6 5, 6.5 5))" +"POLYGON ((7 5, 7 4.5, 6.5 4.5, 6.5 5, 7 5))" +"POLYGON ((7.5 5, 7.5 4.5, 7 4.5, 7 5, 7.5 5))" +"POLYGON ((8 5, 8 4.5, 7.5 4.5, 7.5 5, 8 5))" +"POLYGON ((8.5 5, 8.5 4.5, 8 4.5, 8 5, 8.5 5))" +"POLYGON ((9 5, 9 4.5, 8.5 4.5, 8.5 5, 9 5))" +"POLYGON ((9.5 5, 9.5 4.5, 9 4.5, 9 5, 9.5 5))" +"POLYGON ((10 5, 10 4.5, 9.5 4.5, 9.5 5, 10 5))" +"POLYGON ((10.5 5, 10.5 4.5, 10 4.5, 10 5, 10.5 5))" +"POLYGON ((11 5, 11 4.5, 10.5 4.5, 10.5 5, 11 5))" +"POLYGON ((11.5 5, 11.5 4.5, 11 4.5, 11 5, 11.5 5))" +"POLYGON ((12 5, 12 4.5, 11.5 4.5, 11.5 5, 12 5))" +"POLYGON ((12.5 5, 12.5 4.5, 12 4.5, 12 5, 12.5 5))" +"POLYGON ((13 5, 13 4.5, 12.5 4.5, 12.5 5, 13 5))" +"POLYGON ((13.5 5, 13.5 4.5, 13 4.5, 13 5, 13.5 5))" +"POLYGON ((14 5, 14 4.5, 13.5 4.5, 13.5 5, 14 5))" +"POLYGON ((14.5 5, 14.5 4.5, 14 4.5, 14 5, 14.5 5))" +"POLYGON ((15 5, 15 4.5, 14.5 4.5, 14.5 5, 15 5))" +"POLYGON ((15.5 5, 15.5 4.5, 15 4.5, 15 5, 15.5 5))" +"POLYGON ((16 5, 16 4.5, 15.5 4.5, 15.5 5, 16 5))" +"POLYGON ((16.5 5, 16.5 4.5, 16 4.5, 16 5, 16.5 5))" +"POLYGON ((17 5, 17 4.5, 16.5 4.5, 16.5 5, 17 5))" +"POLYGON ((17.5 5, 17.5 4.5, 17 4.5, 17 5, 17.5 5))" +"POLYGON ((18 5, 18 4.5, 17.5 4.5, 17.5 5, 18 5))" +"POLYGON ((18.5 5, 18.5 4.5, 18 4.5, 18 5, 18.5 5))" +"POLYGON ((19 5, 19 4.5, 18.5 4.5, 18.5 5, 19 5))" +"POLYGON ((19.5 5, 19.5 4.5, 19 4.5, 19 5, 19.5 5))" +"POLYGON ((20 5, 20 4.5, 19.5 4.5, 19.5 5, 20 5))" +"POLYGON ((20.5 5, 20.5 4.5, 20 4.5, 20 5, 20.5 5))" +"POLYGON ((21 5, 21 4.5, 20.5 4.5, 20.5 5, 21 5))" +"POLYGON ((21.5 5, 21.5 4.5, 21 4.5, 21 5, 21.5 5))" +"POLYGON ((22 5, 22 4.5, 21.5 4.5, 21.5 5, 22 5))" +"POLYGON ((22.5 5, 22.5 4.5, 22 4.5, 22 5, 22.5 5))" +"POLYGON ((23 5, 23 4.5, 22.5 4.5, 22.5 5, 23 5))" +"POLYGON ((23.5 5, 23.5 4.5, 23 4.5, 23 5, 23.5 5))" +"POLYGON ((24 5, 24 4.5, 23.5 4.5, 23.5 5, 24 5))" +"POLYGON ((24.5 5, 24.5 4.5, 24 4.5, 24 5, 24.5 5))" +"POLYGON ((25 5, 25 4.5, 24.5 4.5, 24.5 5, 25 5))" +"POLYGON ((25.5 5, 25.5 4.5, 25 4.5, 25 5, 25.5 5))" +"POLYGON ((26 5, 26 4.5, 25.5 4.5, 25.5 5, 26 5))" +"POLYGON ((26.5 5, 26.5 4.5, 26 4.5, 26 5, 26.5 5))" +"POLYGON ((27 5, 27 4.5, 26.5 4.5, 26.5 5, 27 5))" +"POLYGON ((27.5 5, 27.5 4.5, 27 4.5, 27 5, 27.5 5))" +"POLYGON ((28 5, 28 4.5, 27.5 4.5, 27.5 5, 28 5))" +"POLYGON ((28.5 5, 28.5 4.5, 28 4.5, 28 5, 28.5 5))" +"POLYGON ((29 5, 29 4.5, 28.5 4.5, 28.5 5, 29 5))" +"POLYGON ((29.5 5, 29.5 4.5, 29 4.5, 29 5, 29.5 5))" +"POLYGON ((30 5, 30 4.5, 29.5 4.5, 29.5 5, 30 5))" +"POLYGON ((30.5 5, 30.5 4.5, 30 4.5, 30 5, 30.5 5))" +"POLYGON ((31 5, 31 4.5, 30.5 4.5, 30.5 5, 31 5))" +"POLYGON ((31.5 5, 31.5 4.5, 31 4.5, 31 5, 31.5 5))" +"POLYGON ((32 5, 32 4.5, 31.5 4.5, 31.5 5, 32 5))" +"POLYGON ((32.5 5, 32.5 4.5, 32 4.5, 32 5, 32.5 5))" +"POLYGON ((33 5, 33 4.5, 32.5 4.5, 32.5 5, 33 5))" +"POLYGON ((33.5 5, 33.5 4.5, 33 4.5, 33 5, 33.5 5))" +"POLYGON ((34 5, 34 4.5, 33.5 4.5, 33.5 5, 34 5))" +"POLYGON ((34.5 5, 34.5 4.5, 34 4.5, 34 5, 34.5 5))" +"POLYGON ((35 5, 35 4.5, 34.5 4.5, 34.5 5, 35 5))" +"POLYGON ((35.5 5, 35.5 4.5, 35 4.5, 35 5, 35.5 5))" +"POLYGON ((36 5, 36 4.5, 35.5 4.5, 35.5 5, 36 5))" +"POLYGON ((36.5 5, 36.5 4.5, 36 4.5, 36 5, 36.5 5))" +"POLYGON ((37 5, 37 4.5, 36.5 4.5, 36.5 5, 37 5))" +"POLYGON ((37.5 5, 37.5 4.5, 37 4.5, 37 5, 37.5 5))" +"POLYGON ((38 5, 38 4.5, 37.5 4.5, 37.5 5, 38 5))" +"POLYGON ((38.5 5, 38.5 4.5, 38 4.5, 38 5, 38.5 5))" +"POLYGON ((39 5, 39 4.5, 38.5 4.5, 38.5 5, 39 5))" +"POLYGON ((39.5 5, 39.5 4.5, 39 4.5, 39 5, 39.5 5))" +"POLYGON ((40 5, 40 4.5, 39.5 4.5, 39.5 5, 40 5))" +"POLYGON ((40.5 5, 40.5 4.5, 40 4.5, 40 5, 40.5 5))" +"POLYGON ((41 5, 41 4.5, 40.5 4.5, 40.5 5, 41 5))" +"POLYGON ((41.5 5, 41.5 4.5, 41 4.5, 41 5, 41.5 5))" +"POLYGON ((42 5, 42 4.5, 41.5 4.5, 41.5 5, 42 5))" +"POLYGON ((42.5 5, 42.5 4.5, 42 4.5, 42 5, 42.5 5))" +"POLYGON ((43 5, 43 4.5, 42.5 4.5, 42.5 5, 43 5))" +"POLYGON ((43.5 5, 43.5 4.5, 43 4.5, 43 5, 43.5 5))" +"POLYGON ((44 5, 44 4.5, 43.5 4.5, 43.5 5, 44 5))" +"POLYGON ((44.5 5, 44.5 4.5, 44 4.5, 44 5, 44.5 5))" +"POLYGON ((45 5, 45 4.5, 44.5 4.5, 44.5 5, 45 5))" +"POLYGON ((45.5 5, 45.5 4.5, 45 4.5, 45 5, 45.5 5))" +"POLYGON ((46 5, 46 4.5, 45.5 4.5, 45.5 5, 46 5))" +"POLYGON ((46.5 5, 46.5 4.5, 46 4.5, 46 5, 46.5 5))" +"POLYGON ((47 5, 47 4.5, 46.5 4.5, 46.5 5, 47 5))" +"POLYGON ((47.5 5, 47.5 4.5, 47 4.5, 47 5, 47.5 5))" +"POLYGON ((48 5, 48 4.5, 47.5 4.5, 47.5 5, 48 5))" +"POLYGON ((-9 5.5, -9 5, -9.5 5, -9.5 5.5, -9 5.5))" +"POLYGON ((-8.5 5.5, -8.5 5, -9 5, -9 5.5, -8.5 5.5))" +"POLYGON ((-8 5.5, -8 5, -8.5 5, -8.5 5.5, -8 5.5))" +"POLYGON ((-7.5 5.5, -7.5 5, -8 5, -8 5.5, -7.5 5.5))" +"POLYGON ((-7 5.5, -7 5, -7.5 5, -7.5 5.5, -7 5.5))" +"POLYGON ((-6.5 5.5, -6.5 5, -7 5, -7 5.5, -6.5 5.5))" +"POLYGON ((-6 5.5, -6 5, -6.5 5, -6.5 5.5, -6 5.5))" +"POLYGON ((-5.5 5.5, -5.5 5, -6 5, -6 5.5, -5.5 5.5))" +"POLYGON ((-5 5.5, -5 5, -5.5 5, -5.5 5.5, -5 5.5))" +"POLYGON ((-4.5 5.5, -4.5 5, -5 5, -5 5.5, -4.5 5.5))" +"POLYGON ((-3.5 5.5, -3.5 5, -4 5, -4 5.5, -3.5 5.5))" +"POLYGON ((-3 5.5, -3 5, -3.5 5, -3.5 5.5, -3 5.5))" +"POLYGON ((-2.5 5.5, -2.5 5, -3 5, -3 5.5, -2.5 5.5))" +"POLYGON ((-2 5.5, -2 5, -2.5 5, -2.5 5.5, -2 5.5))" +"POLYGON ((-1.5 5.5, -1.5 5, -2 5, -2 5.5, -1.5 5.5))" +"POLYGON ((-1 5.5, -1 5, -1.5 5, -1.5 5.5, -1 5.5))" +"POLYGON ((6 5.5, 6 5, 5.5 5, 5.5 5.5, 6 5.5))" +"POLYGON ((6.5 5.5, 6.5 5, 6 5, 6 5.5, 6.5 5.5))" +"POLYGON ((7 5.5, 7 5, 6.5 5, 6.5 5.5, 7 5.5))" +"POLYGON ((7.5 5.5, 7.5 5, 7 5, 7 5.5, 7.5 5.5))" +"POLYGON ((8 5.5, 8 5, 7.5 5, 7.5 5.5, 8 5.5))" +"POLYGON ((8.5 5.5, 8.5 5, 8 5, 8 5.5, 8.5 5.5))" +"POLYGON ((9 5.5, 9 5, 8.5 5, 8.5 5.5, 9 5.5))" +"POLYGON ((9.5 5.5, 9.5 5, 9 5, 9 5.5, 9.5 5.5))" +"POLYGON ((10 5.5, 10 5, 9.5 5, 9.5 5.5, 10 5.5))" +"POLYGON ((10.5 5.5, 10.5 5, 10 5, 10 5.5, 10.5 5.5))" +"POLYGON ((11 5.5, 11 5, 10.5 5, 10.5 5.5, 11 5.5))" +"POLYGON ((11.5 5.5, 11.5 5, 11 5, 11 5.5, 11.5 5.5))" +"POLYGON ((12 5.5, 12 5, 11.5 5, 11.5 5.5, 12 5.5))" +"POLYGON ((12.5 5.5, 12.5 5, 12 5, 12 5.5, 12.5 5.5))" +"POLYGON ((13 5.5, 13 5, 12.5 5, 12.5 5.5, 13 5.5))" +"POLYGON ((13.5 5.5, 13.5 5, 13 5, 13 5.5, 13.5 5.5))" +"POLYGON ((14 5.5, 14 5, 13.5 5, 13.5 5.5, 14 5.5))" +"POLYGON ((14.5 5.5, 14.5 5, 14 5, 14 5.5, 14.5 5.5))" +"POLYGON ((15 5.5, 15 5, 14.5 5, 14.5 5.5, 15 5.5))" +"POLYGON ((15.5 5.5, 15.5 5, 15 5, 15 5.5, 15.5 5.5))" +"POLYGON ((16 5.5, 16 5, 15.5 5, 15.5 5.5, 16 5.5))" +"POLYGON ((16.5 5.5, 16.5 5, 16 5, 16 5.5, 16.5 5.5))" +"POLYGON ((17 5.5, 17 5, 16.5 5, 16.5 5.5, 17 5.5))" +"POLYGON ((17.5 5.5, 17.5 5, 17 5, 17 5.5, 17.5 5.5))" +"POLYGON ((18 5.5, 18 5, 17.5 5, 17.5 5.5, 18 5.5))" +"POLYGON ((18.5 5.5, 18.5 5, 18 5, 18 5.5, 18.5 5.5))" +"POLYGON ((19 5.5, 19 5, 18.5 5, 18.5 5.5, 19 5.5))" +"POLYGON ((19.5 5.5, 19.5 5, 19 5, 19 5.5, 19.5 5.5))" +"POLYGON ((20 5.5, 20 5, 19.5 5, 19.5 5.5, 20 5.5))" +"POLYGON ((20.5 5.5, 20.5 5, 20 5, 20 5.5, 20.5 5.5))" +"POLYGON ((21 5.5, 21 5, 20.5 5, 20.5 5.5, 21 5.5))" +"POLYGON ((21.5 5.5, 21.5 5, 21 5, 21 5.5, 21.5 5.5))" +"POLYGON ((22 5.5, 22 5, 21.5 5, 21.5 5.5, 22 5.5))" +"POLYGON ((22.5 5.5, 22.5 5, 22 5, 22 5.5, 22.5 5.5))" +"POLYGON ((23 5.5, 23 5, 22.5 5, 22.5 5.5, 23 5.5))" +"POLYGON ((23.5 5.5, 23.5 5, 23 5, 23 5.5, 23.5 5.5))" +"POLYGON ((24 5.5, 24 5, 23.5 5, 23.5 5.5, 24 5.5))" +"POLYGON ((24.5 5.5, 24.5 5, 24 5, 24 5.5, 24.5 5.5))" +"POLYGON ((25 5.5, 25 5, 24.5 5, 24.5 5.5, 25 5.5))" +"POLYGON ((25.5 5.5, 25.5 5, 25 5, 25 5.5, 25.5 5.5))" +"POLYGON ((26 5.5, 26 5, 25.5 5, 25.5 5.5, 26 5.5))" +"POLYGON ((26.5 5.5, 26.5 5, 26 5, 26 5.5, 26.5 5.5))" +"POLYGON ((27 5.5, 27 5, 26.5 5, 26.5 5.5, 27 5.5))" +"POLYGON ((27.5 5.5, 27.5 5, 27 5, 27 5.5, 27.5 5.5))" +"POLYGON ((28 5.5, 28 5, 27.5 5, 27.5 5.5, 28 5.5))" +"POLYGON ((28.5 5.5, 28.5 5, 28 5, 28 5.5, 28.5 5.5))" +"POLYGON ((29 5.5, 29 5, 28.5 5, 28.5 5.5, 29 5.5))" +"POLYGON ((29.5 5.5, 29.5 5, 29 5, 29 5.5, 29.5 5.5))" +"POLYGON ((30 5.5, 30 5, 29.5 5, 29.5 5.5, 30 5.5))" +"POLYGON ((30.5 5.5, 30.5 5, 30 5, 30 5.5, 30.5 5.5))" +"POLYGON ((31 5.5, 31 5, 30.5 5, 30.5 5.5, 31 5.5))" +"POLYGON ((31.5 5.5, 31.5 5, 31 5, 31 5.5, 31.5 5.5))" +"POLYGON ((32 5.5, 32 5, 31.5 5, 31.5 5.5, 32 5.5))" +"POLYGON ((32.5 5.5, 32.5 5, 32 5, 32 5.5, 32.5 5.5))" +"POLYGON ((33 5.5, 33 5, 32.5 5, 32.5 5.5, 33 5.5))" +"POLYGON ((33.5 5.5, 33.5 5, 33 5, 33 5.5, 33.5 5.5))" +"POLYGON ((34 5.5, 34 5, 33.5 5, 33.5 5.5, 34 5.5))" +"POLYGON ((34.5 5.5, 34.5 5, 34 5, 34 5.5, 34.5 5.5))" +"POLYGON ((35 5.5, 35 5, 34.5 5, 34.5 5.5, 35 5.5))" +"POLYGON ((35.5 5.5, 35.5 5, 35 5, 35 5.5, 35.5 5.5))" +"POLYGON ((36 5.5, 36 5, 35.5 5, 35.5 5.5, 36 5.5))" +"POLYGON ((36.5 5.5, 36.5 5, 36 5, 36 5.5, 36.5 5.5))" +"POLYGON ((37 5.5, 37 5, 36.5 5, 36.5 5.5, 37 5.5))" +"POLYGON ((37.5 5.5, 37.5 5, 37 5, 37 5.5, 37.5 5.5))" +"POLYGON ((38 5.5, 38 5, 37.5 5, 37.5 5.5, 38 5.5))" +"POLYGON ((38.5 5.5, 38.5 5, 38 5, 38 5.5, 38.5 5.5))" +"POLYGON ((39 5.5, 39 5, 38.5 5, 38.5 5.5, 39 5.5))" +"POLYGON ((39.5 5.5, 39.5 5, 39 5, 39 5.5, 39.5 5.5))" +"POLYGON ((40 5.5, 40 5, 39.5 5, 39.5 5.5, 40 5.5))" +"POLYGON ((40.5 5.5, 40.5 5, 40 5, 40 5.5, 40.5 5.5))" +"POLYGON ((41 5.5, 41 5, 40.5 5, 40.5 5.5, 41 5.5))" +"POLYGON ((41.5 5.5, 41.5 5, 41 5, 41 5.5, 41.5 5.5))" +"POLYGON ((42 5.5, 42 5, 41.5 5, 41.5 5.5, 42 5.5))" +"POLYGON ((42.5 5.5, 42.5 5, 42 5, 42 5.5, 42.5 5.5))" +"POLYGON ((43 5.5, 43 5, 42.5 5, 42.5 5.5, 43 5.5))" +"POLYGON ((43.5 5.5, 43.5 5, 43 5, 43 5.5, 43.5 5.5))" +"POLYGON ((44 5.5, 44 5, 43.5 5, 43.5 5.5, 44 5.5))" +"POLYGON ((44.5 5.5, 44.5 5, 44 5, 44 5.5, 44.5 5.5))" +"POLYGON ((45 5.5, 45 5, 44.5 5, 44.5 5.5, 45 5.5))" +"POLYGON ((45.5 5.5, 45.5 5, 45 5, 45 5.5, 45.5 5.5))" +"POLYGON ((46 5.5, 46 5, 45.5 5, 45.5 5.5, 46 5.5))" +"POLYGON ((46.5 5.5, 46.5 5, 46 5, 46 5.5, 46.5 5.5))" +"POLYGON ((47 5.5, 47 5, 46.5 5, 46.5 5.5, 47 5.5))" +"POLYGON ((47.5 5.5, 47.5 5, 47 5, 47 5.5, 47.5 5.5))" +"POLYGON ((48 5.5, 48 5, 47.5 5, 47.5 5.5, 48 5.5))" +"POLYGON ((48.5 5.5, 48.5 5, 48 5, 48 5.5, 48.5 5.5))" +"POLYGON ((-9.5 6, -9.5 5.5, -10 5.5, -10 6, -9.5 6))" +"POLYGON ((-9 6, -9 5.5, -9.5 5.5, -9.5 6, -9 6))" +"POLYGON ((-8.5 6, -8.5 5.5, -9 5.5, -9 6, -8.5 6))" +"POLYGON ((-8 6, -8 5.5, -8.5 5.5, -8.5 6, -8 6))" +"POLYGON ((-7.5 6, -7.5 5.5, -8 5.5, -8 6, -7.5 6))" +"POLYGON ((-7 6, -7 5.5, -7.5 5.5, -7.5 6, -7 6))" +"POLYGON ((-6.5 6, -6.5 5.5, -7 5.5, -7 6, -6.5 6))" +"POLYGON ((-6 6, -6 5.5, -6.5 5.5, -6.5 6, -6 6))" +"POLYGON ((-5.5 6, -5.5 5.5, -6 5.5, -6 6, -5.5 6))" +"POLYGON ((-5 6, -5 5.5, -5.5 5.5, -5.5 6, -5 6))" +"POLYGON ((-4.5 6, -4.5 5.5, -5 5.5, -5 6, -4.5 6))" +"POLYGON ((-4 6, -4 5.5, -4.5 5.5, -4.5 6, -4 6))" +"POLYGON ((-3.5 6, -3.5 5.5, -4 5.5, -4 6, -3.5 6))" +"POLYGON ((-3 6, -3 5.5, -3.5 5.5, -3.5 6, -3 6))" +"POLYGON ((-2.5 6, -2.5 5.5, -3 5.5, -3 6, -2.5 6))" +"POLYGON ((-2 6, -2 5.5, -2.5 5.5, -2.5 6, -2 6))" +"POLYGON ((-1.5 6, -1.5 5.5, -2 5.5, -2 6, -1.5 6))" +"POLYGON ((-1 6, -1 5.5, -1.5 5.5, -1.5 6, -1 6))" +"POLYGON ((-0.5 6, -0.5 5.5, -1 5.5, -1 6, -0.5 6))" +"POLYGON ((0 6, 0 5.5, -0.5 5.5, -0.5 6, 0 6))" +"POLYGON ((5.5 6, 5.5 5.5, 5 5.5, 5 6, 5.5 6))" +"POLYGON ((6 6, 6 5.5, 5.5 5.5, 5.5 6, 6 6))" +"POLYGON ((6.5 6, 6.5 5.5, 6 5.5, 6 6, 6.5 6))" +"POLYGON ((7 6, 7 5.5, 6.5 5.5, 6.5 6, 7 6))" +"POLYGON ((7.5 6, 7.5 5.5, 7 5.5, 7 6, 7.5 6))" +"POLYGON ((8 6, 8 5.5, 7.5 5.5, 7.5 6, 8 6))" +"POLYGON ((8.5 6, 8.5 5.5, 8 5.5, 8 6, 8.5 6))" +"POLYGON ((9 6, 9 5.5, 8.5 5.5, 8.5 6, 9 6))" +"POLYGON ((9.5 6, 9.5 5.5, 9 5.5, 9 6, 9.5 6))" +"POLYGON ((10 6, 10 5.5, 9.5 5.5, 9.5 6, 10 6))" +"POLYGON ((10.5 6, 10.5 5.5, 10 5.5, 10 6, 10.5 6))" +"POLYGON ((11 6, 11 5.5, 10.5 5.5, 10.5 6, 11 6))" +"POLYGON ((11.5 6, 11.5 5.5, 11 5.5, 11 6, 11.5 6))" +"POLYGON ((12 6, 12 5.5, 11.5 5.5, 11.5 6, 12 6))" +"POLYGON ((12.5 6, 12.5 5.5, 12 5.5, 12 6, 12.5 6))" +"POLYGON ((13 6, 13 5.5, 12.5 5.5, 12.5 6, 13 6))" +"POLYGON ((13.5 6, 13.5 5.5, 13 5.5, 13 6, 13.5 6))" +"POLYGON ((14 6, 14 5.5, 13.5 5.5, 13.5 6, 14 6))" +"POLYGON ((14.5 6, 14.5 5.5, 14 5.5, 14 6, 14.5 6))" +"POLYGON ((15 6, 15 5.5, 14.5 5.5, 14.5 6, 15 6))" +"POLYGON ((15.5 6, 15.5 5.5, 15 5.5, 15 6, 15.5 6))" +"POLYGON ((16 6, 16 5.5, 15.5 5.5, 15.5 6, 16 6))" +"POLYGON ((16.5 6, 16.5 5.5, 16 5.5, 16 6, 16.5 6))" +"POLYGON ((17 6, 17 5.5, 16.5 5.5, 16.5 6, 17 6))" +"POLYGON ((17.5 6, 17.5 5.5, 17 5.5, 17 6, 17.5 6))" +"POLYGON ((18 6, 18 5.5, 17.5 5.5, 17.5 6, 18 6))" +"POLYGON ((18.5 6, 18.5 5.5, 18 5.5, 18 6, 18.5 6))" +"POLYGON ((19 6, 19 5.5, 18.5 5.5, 18.5 6, 19 6))" +"POLYGON ((19.5 6, 19.5 5.5, 19 5.5, 19 6, 19.5 6))" +"POLYGON ((20 6, 20 5.5, 19.5 5.5, 19.5 6, 20 6))" +"POLYGON ((20.5 6, 20.5 5.5, 20 5.5, 20 6, 20.5 6))" +"POLYGON ((21 6, 21 5.5, 20.5 5.5, 20.5 6, 21 6))" +"POLYGON ((21.5 6, 21.5 5.5, 21 5.5, 21 6, 21.5 6))" +"POLYGON ((22 6, 22 5.5, 21.5 5.5, 21.5 6, 22 6))" +"POLYGON ((22.5 6, 22.5 5.5, 22 5.5, 22 6, 22.5 6))" +"POLYGON ((23 6, 23 5.5, 22.5 5.5, 22.5 6, 23 6))" +"POLYGON ((23.5 6, 23.5 5.5, 23 5.5, 23 6, 23.5 6))" +"POLYGON ((24 6, 24 5.5, 23.5 5.5, 23.5 6, 24 6))" +"POLYGON ((24.5 6, 24.5 5.5, 24 5.5, 24 6, 24.5 6))" +"POLYGON ((25 6, 25 5.5, 24.5 5.5, 24.5 6, 25 6))" +"POLYGON ((25.5 6, 25.5 5.5, 25 5.5, 25 6, 25.5 6))" +"POLYGON ((26 6, 26 5.5, 25.5 5.5, 25.5 6, 26 6))" +"POLYGON ((26.5 6, 26.5 5.5, 26 5.5, 26 6, 26.5 6))" +"POLYGON ((27 6, 27 5.5, 26.5 5.5, 26.5 6, 27 6))" +"POLYGON ((27.5 6, 27.5 5.5, 27 5.5, 27 6, 27.5 6))" +"POLYGON ((28 6, 28 5.5, 27.5 5.5, 27.5 6, 28 6))" +"POLYGON ((28.5 6, 28.5 5.5, 28 5.5, 28 6, 28.5 6))" +"POLYGON ((29 6, 29 5.5, 28.5 5.5, 28.5 6, 29 6))" +"POLYGON ((29.5 6, 29.5 5.5, 29 5.5, 29 6, 29.5 6))" +"POLYGON ((30 6, 30 5.5, 29.5 5.5, 29.5 6, 30 6))" +"POLYGON ((30.5 6, 30.5 5.5, 30 5.5, 30 6, 30.5 6))" +"POLYGON ((31 6, 31 5.5, 30.5 5.5, 30.5 6, 31 6))" +"POLYGON ((31.5 6, 31.5 5.5, 31 5.5, 31 6, 31.5 6))" +"POLYGON ((32 6, 32 5.5, 31.5 5.5, 31.5 6, 32 6))" +"POLYGON ((32.5 6, 32.5 5.5, 32 5.5, 32 6, 32.5 6))" +"POLYGON ((33 6, 33 5.5, 32.5 5.5, 32.5 6, 33 6))" +"POLYGON ((33.5 6, 33.5 5.5, 33 5.5, 33 6, 33.5 6))" +"POLYGON ((34 6, 34 5.5, 33.5 5.5, 33.5 6, 34 6))" +"POLYGON ((34.5 6, 34.5 5.5, 34 5.5, 34 6, 34.5 6))" +"POLYGON ((35 6, 35 5.5, 34.5 5.5, 34.5 6, 35 6))" +"POLYGON ((35.5 6, 35.5 5.5, 35 5.5, 35 6, 35.5 6))" +"POLYGON ((36 6, 36 5.5, 35.5 5.5, 35.5 6, 36 6))" +"POLYGON ((36.5 6, 36.5 5.5, 36 5.5, 36 6, 36.5 6))" +"POLYGON ((37 6, 37 5.5, 36.5 5.5, 36.5 6, 37 6))" +"POLYGON ((37.5 6, 37.5 5.5, 37 5.5, 37 6, 37.5 6))" +"POLYGON ((38 6, 38 5.5, 37.5 5.5, 37.5 6, 38 6))" +"POLYGON ((38.5 6, 38.5 5.5, 38 5.5, 38 6, 38.5 6))" +"POLYGON ((39 6, 39 5.5, 38.5 5.5, 38.5 6, 39 6))" +"POLYGON ((39.5 6, 39.5 5.5, 39 5.5, 39 6, 39.5 6))" +"POLYGON ((40 6, 40 5.5, 39.5 5.5, 39.5 6, 40 6))" +"POLYGON ((40.5 6, 40.5 5.5, 40 5.5, 40 6, 40.5 6))" +"POLYGON ((41 6, 41 5.5, 40.5 5.5, 40.5 6, 41 6))" +"POLYGON ((41.5 6, 41.5 5.5, 41 5.5, 41 6, 41.5 6))" +"POLYGON ((42 6, 42 5.5, 41.5 5.5, 41.5 6, 42 6))" +"POLYGON ((42.5 6, 42.5 5.5, 42 5.5, 42 6, 42.5 6))" +"POLYGON ((43 6, 43 5.5, 42.5 5.5, 42.5 6, 43 6))" +"POLYGON ((43.5 6, 43.5 5.5, 43 5.5, 43 6, 43.5 6))" +"POLYGON ((44 6, 44 5.5, 43.5 5.5, 43.5 6, 44 6))" +"POLYGON ((44.5 6, 44.5 5.5, 44 5.5, 44 6, 44.5 6))" +"POLYGON ((45 6, 45 5.5, 44.5 5.5, 44.5 6, 45 6))" +"POLYGON ((45.5 6, 45.5 5.5, 45 5.5, 45 6, 45.5 6))" +"POLYGON ((46 6, 46 5.5, 45.5 5.5, 45.5 6, 46 6))" +"POLYGON ((46.5 6, 46.5 5.5, 46 5.5, 46 6, 46.5 6))" +"POLYGON ((47 6, 47 5.5, 46.5 5.5, 46.5 6, 47 6))" +"POLYGON ((47.5 6, 47.5 5.5, 47 5.5, 47 6, 47.5 6))" +"POLYGON ((48 6, 48 5.5, 47.5 5.5, 47.5 6, 48 6))" +"POLYGON ((48.5 6, 48.5 5.5, 48 5.5, 48 6, 48.5 6))" +"POLYGON ((49 6, 49 5.5, 48.5 5.5, 48.5 6, 49 6))" +"POLYGON ((-10 6.5, -10 6, -10.5 6, -10.5 6.5, -10 6.5))" +"POLYGON ((-9.5 6.5, -9.5 6, -10 6, -10 6.5, -9.5 6.5))" +"POLYGON ((-9 6.5, -9 6, -9.5 6, -9.5 6.5, -9 6.5))" +"POLYGON ((-8.5 6.5, -8.5 6, -9 6, -9 6.5, -8.5 6.5))" +"POLYGON ((-8 6.5, -8 6, -8.5 6, -8.5 6.5, -8 6.5))" +"POLYGON ((-7.5 6.5, -7.5 6, -8 6, -8 6.5, -7.5 6.5))" +"POLYGON ((-7 6.5, -7 6, -7.5 6, -7.5 6.5, -7 6.5))" +"POLYGON ((-6.5 6.5, -6.5 6, -7 6, -7 6.5, -6.5 6.5))" +"POLYGON ((-6 6.5, -6 6, -6.5 6, -6.5 6.5, -6 6.5))" +"POLYGON ((-5.5 6.5, -5.5 6, -6 6, -6 6.5, -5.5 6.5))" +"POLYGON ((-5 6.5, -5 6, -5.5 6, -5.5 6.5, -5 6.5))" +"POLYGON ((-4.5 6.5, -4.5 6, -5 6, -5 6.5, -4.5 6.5))" +"POLYGON ((-4 6.5, -4 6, -4.5 6, -4.5 6.5, -4 6.5))" +"POLYGON ((-3.5 6.5, -3.5 6, -4 6, -4 6.5, -3.5 6.5))" +"POLYGON ((-3 6.5, -3 6, -3.5 6, -3.5 6.5, -3 6.5))" +"POLYGON ((-2.5 6.5, -2.5 6, -3 6, -3 6.5, -2.5 6.5))" +"POLYGON ((-2 6.5, -2 6, -2.5 6, -2.5 6.5, -2 6.5))" +"POLYGON ((-1.5 6.5, -1.5 6, -2 6, -2 6.5, -1.5 6.5))" +"POLYGON ((-1 6.5, -1 6, -1.5 6, -1.5 6.5, -1 6.5))" +"POLYGON ((-0.5 6.5, -0.5 6, -1 6, -1 6.5, -0.5 6.5))" +"POLYGON ((0 6.5, 0 6, -0.5 6, -0.5 6.5, 0 6.5))" +"POLYGON ((0.5 6.5, 0.5 6, 0 6, 0 6.5, 0.5 6.5))" +"POLYGON ((1 6.5, 1 6, 0.5 6, 0.5 6.5, 1 6.5))" +"POLYGON ((1.5 6.5, 1.5 6, 1 6, 1 6.5, 1.5 6.5))" +"POLYGON ((2 6.5, 2 6, 1.5 6, 1.5 6.5, 2 6.5))" +"POLYGON ((5 6.5, 5 6, 4.5 6, 4.5 6.5, 5 6.5))" +"POLYGON ((5.5 6.5, 5.5 6, 5 6, 5 6.5, 5.5 6.5))" +"POLYGON ((6 6.5, 6 6, 5.5 6, 5.5 6.5, 6 6.5))" +"POLYGON ((6.5 6.5, 6.5 6, 6 6, 6 6.5, 6.5 6.5))" +"POLYGON ((7 6.5, 7 6, 6.5 6, 6.5 6.5, 7 6.5))" +"POLYGON ((7.5 6.5, 7.5 6, 7 6, 7 6.5, 7.5 6.5))" +"POLYGON ((8 6.5, 8 6, 7.5 6, 7.5 6.5, 8 6.5))" +"POLYGON ((8.5 6.5, 8.5 6, 8 6, 8 6.5, 8.5 6.5))" +"POLYGON ((9 6.5, 9 6, 8.5 6, 8.5 6.5, 9 6.5))" +"POLYGON ((9.5 6.5, 9.5 6, 9 6, 9 6.5, 9.5 6.5))" +"POLYGON ((10 6.5, 10 6, 9.5 6, 9.5 6.5, 10 6.5))" +"POLYGON ((10.5 6.5, 10.5 6, 10 6, 10 6.5, 10.5 6.5))" +"POLYGON ((11 6.5, 11 6, 10.5 6, 10.5 6.5, 11 6.5))" +"POLYGON ((11.5 6.5, 11.5 6, 11 6, 11 6.5, 11.5 6.5))" +"POLYGON ((12 6.5, 12 6, 11.5 6, 11.5 6.5, 12 6.5))" +"POLYGON ((12.5 6.5, 12.5 6, 12 6, 12 6.5, 12.5 6.5))" +"POLYGON ((13 6.5, 13 6, 12.5 6, 12.5 6.5, 13 6.5))" +"POLYGON ((13.5 6.5, 13.5 6, 13 6, 13 6.5, 13.5 6.5))" +"POLYGON ((14 6.5, 14 6, 13.5 6, 13.5 6.5, 14 6.5))" +"POLYGON ((14.5 6.5, 14.5 6, 14 6, 14 6.5, 14.5 6.5))" +"POLYGON ((15 6.5, 15 6, 14.5 6, 14.5 6.5, 15 6.5))" +"POLYGON ((15.5 6.5, 15.5 6, 15 6, 15 6.5, 15.5 6.5))" +"POLYGON ((16 6.5, 16 6, 15.5 6, 15.5 6.5, 16 6.5))" +"POLYGON ((16.5 6.5, 16.5 6, 16 6, 16 6.5, 16.5 6.5))" +"POLYGON ((17 6.5, 17 6, 16.5 6, 16.5 6.5, 17 6.5))" +"POLYGON ((17.5 6.5, 17.5 6, 17 6, 17 6.5, 17.5 6.5))" +"POLYGON ((18 6.5, 18 6, 17.5 6, 17.5 6.5, 18 6.5))" +"POLYGON ((18.5 6.5, 18.5 6, 18 6, 18 6.5, 18.5 6.5))" +"POLYGON ((19 6.5, 19 6, 18.5 6, 18.5 6.5, 19 6.5))" +"POLYGON ((19.5 6.5, 19.5 6, 19 6, 19 6.5, 19.5 6.5))" +"POLYGON ((20 6.5, 20 6, 19.5 6, 19.5 6.5, 20 6.5))" +"POLYGON ((20.5 6.5, 20.5 6, 20 6, 20 6.5, 20.5 6.5))" +"POLYGON ((21 6.5, 21 6, 20.5 6, 20.5 6.5, 21 6.5))" +"POLYGON ((21.5 6.5, 21.5 6, 21 6, 21 6.5, 21.5 6.5))" +"POLYGON ((22 6.5, 22 6, 21.5 6, 21.5 6.5, 22 6.5))" +"POLYGON ((22.5 6.5, 22.5 6, 22 6, 22 6.5, 22.5 6.5))" +"POLYGON ((23 6.5, 23 6, 22.5 6, 22.5 6.5, 23 6.5))" +"POLYGON ((23.5 6.5, 23.5 6, 23 6, 23 6.5, 23.5 6.5))" +"POLYGON ((24 6.5, 24 6, 23.5 6, 23.5 6.5, 24 6.5))" +"POLYGON ((24.5 6.5, 24.5 6, 24 6, 24 6.5, 24.5 6.5))" +"POLYGON ((25 6.5, 25 6, 24.5 6, 24.5 6.5, 25 6.5))" +"POLYGON ((25.5 6.5, 25.5 6, 25 6, 25 6.5, 25.5 6.5))" +"POLYGON ((26 6.5, 26 6, 25.5 6, 25.5 6.5, 26 6.5))" +"POLYGON ((26.5 6.5, 26.5 6, 26 6, 26 6.5, 26.5 6.5))" +"POLYGON ((27 6.5, 27 6, 26.5 6, 26.5 6.5, 27 6.5))" +"POLYGON ((27.5 6.5, 27.5 6, 27 6, 27 6.5, 27.5 6.5))" +"POLYGON ((28 6.5, 28 6, 27.5 6, 27.5 6.5, 28 6.5))" +"POLYGON ((28.5 6.5, 28.5 6, 28 6, 28 6.5, 28.5 6.5))" +"POLYGON ((29 6.5, 29 6, 28.5 6, 28.5 6.5, 29 6.5))" +"POLYGON ((29.5 6.5, 29.5 6, 29 6, 29 6.5, 29.5 6.5))" +"POLYGON ((30 6.5, 30 6, 29.5 6, 29.5 6.5, 30 6.5))" +"POLYGON ((30.5 6.5, 30.5 6, 30 6, 30 6.5, 30.5 6.5))" +"POLYGON ((31 6.5, 31 6, 30.5 6, 30.5 6.5, 31 6.5))" +"POLYGON ((31.5 6.5, 31.5 6, 31 6, 31 6.5, 31.5 6.5))" +"POLYGON ((32 6.5, 32 6, 31.5 6, 31.5 6.5, 32 6.5))" +"POLYGON ((32.5 6.5, 32.5 6, 32 6, 32 6.5, 32.5 6.5))" +"POLYGON ((33 6.5, 33 6, 32.5 6, 32.5 6.5, 33 6.5))" +"POLYGON ((33.5 6.5, 33.5 6, 33 6, 33 6.5, 33.5 6.5))" +"POLYGON ((34 6.5, 34 6, 33.5 6, 33.5 6.5, 34 6.5))" +"POLYGON ((34.5 6.5, 34.5 6, 34 6, 34 6.5, 34.5 6.5))" +"POLYGON ((35 6.5, 35 6, 34.5 6, 34.5 6.5, 35 6.5))" +"POLYGON ((35.5 6.5, 35.5 6, 35 6, 35 6.5, 35.5 6.5))" +"POLYGON ((36 6.5, 36 6, 35.5 6, 35.5 6.5, 36 6.5))" +"POLYGON ((36.5 6.5, 36.5 6, 36 6, 36 6.5, 36.5 6.5))" +"POLYGON ((37 6.5, 37 6, 36.5 6, 36.5 6.5, 37 6.5))" +"POLYGON ((37.5 6.5, 37.5 6, 37 6, 37 6.5, 37.5 6.5))" +"POLYGON ((38 6.5, 38 6, 37.5 6, 37.5 6.5, 38 6.5))" +"POLYGON ((38.5 6.5, 38.5 6, 38 6, 38 6.5, 38.5 6.5))" +"POLYGON ((39 6.5, 39 6, 38.5 6, 38.5 6.5, 39 6.5))" +"POLYGON ((39.5 6.5, 39.5 6, 39 6, 39 6.5, 39.5 6.5))" +"POLYGON ((40 6.5, 40 6, 39.5 6, 39.5 6.5, 40 6.5))" +"POLYGON ((40.5 6.5, 40.5 6, 40 6, 40 6.5, 40.5 6.5))" +"POLYGON ((41 6.5, 41 6, 40.5 6, 40.5 6.5, 41 6.5))" +"POLYGON ((41.5 6.5, 41.5 6, 41 6, 41 6.5, 41.5 6.5))" +"POLYGON ((42 6.5, 42 6, 41.5 6, 41.5 6.5, 42 6.5))" +"POLYGON ((42.5 6.5, 42.5 6, 42 6, 42 6.5, 42.5 6.5))" +"POLYGON ((43 6.5, 43 6, 42.5 6, 42.5 6.5, 43 6.5))" +"POLYGON ((43.5 6.5, 43.5 6, 43 6, 43 6.5, 43.5 6.5))" +"POLYGON ((44 6.5, 44 6, 43.5 6, 43.5 6.5, 44 6.5))" +"POLYGON ((44.5 6.5, 44.5 6, 44 6, 44 6.5, 44.5 6.5))" +"POLYGON ((45 6.5, 45 6, 44.5 6, 44.5 6.5, 45 6.5))" +"POLYGON ((45.5 6.5, 45.5 6, 45 6, 45 6.5, 45.5 6.5))" +"POLYGON ((46 6.5, 46 6, 45.5 6, 45.5 6.5, 46 6.5))" +"POLYGON ((46.5 6.5, 46.5 6, 46 6, 46 6.5, 46.5 6.5))" +"POLYGON ((47 6.5, 47 6, 46.5 6, 46.5 6.5, 47 6.5))" +"POLYGON ((47.5 6.5, 47.5 6, 47 6, 47 6.5, 47.5 6.5))" +"POLYGON ((48 6.5, 48 6, 47.5 6, 47.5 6.5, 48 6.5))" +"POLYGON ((48.5 6.5, 48.5 6, 48 6, 48 6.5, 48.5 6.5))" +"POLYGON ((49 6.5, 49 6, 48.5 6, 48.5 6.5, 49 6.5))" +"POLYGON ((-11 7, -11 6.5, -11.5 6.5, -11.5 7, -11 7))" +"POLYGON ((-10.5 7, -10.5 6.5, -11 6.5, -11 7, -10.5 7))" +"POLYGON ((-10 7, -10 6.5, -10.5 6.5, -10.5 7, -10 7))" +"POLYGON ((-9.5 7, -9.5 6.5, -10 6.5, -10 7, -9.5 7))" +"POLYGON ((-9 7, -9 6.5, -9.5 6.5, -9.5 7, -9 7))" +"POLYGON ((-8.5 7, -8.5 6.5, -9 6.5, -9 7, -8.5 7))" +"POLYGON ((-8 7, -8 6.5, -8.5 6.5, -8.5 7, -8 7))" +"POLYGON ((-7.5 7, -7.5 6.5, -8 6.5, -8 7, -7.5 7))" +"POLYGON ((-7 7, -7 6.5, -7.5 6.5, -7.5 7, -7 7))" +"POLYGON ((-6.5 7, -6.5 6.5, -7 6.5, -7 7, -6.5 7))" +"POLYGON ((-6 7, -6 6.5, -6.5 6.5, -6.5 7, -6 7))" +"POLYGON ((-5.5 7, -5.5 6.5, -6 6.5, -6 7, -5.5 7))" +"POLYGON ((-5 7, -5 6.5, -5.5 6.5, -5.5 7, -5 7))" +"POLYGON ((-4.5 7, -4.5 6.5, -5 6.5, -5 7, -4.5 7))" +"POLYGON ((-4 7, -4 6.5, -4.5 6.5, -4.5 7, -4 7))" +"POLYGON ((-3.5 7, -3.5 6.5, -4 6.5, -4 7, -3.5 7))" +"POLYGON ((-3 7, -3 6.5, -3.5 6.5, -3.5 7, -3 7))" +"POLYGON ((-2.5 7, -2.5 6.5, -3 6.5, -3 7, -2.5 7))" +"POLYGON ((-2 7, -2 6.5, -2.5 6.5, -2.5 7, -2 7))" +"POLYGON ((-1.5 7, -1.5 6.5, -2 6.5, -2 7, -1.5 7))" +"POLYGON ((-1 7, -1 6.5, -1.5 6.5, -1.5 7, -1 7))" +"POLYGON ((-0.5 7, -0.5 6.5, -1 6.5, -1 7, -0.5 7))" +"POLYGON ((0 7, 0 6.5, -0.5 6.5, -0.5 7, 0 7))" +"POLYGON ((0.5 7, 0.5 6.5, 0 6.5, 0 7, 0.5 7))" +"POLYGON ((1 7, 1 6.5, 0.5 6.5, 0.5 7, 1 7))" +"POLYGON ((1.5 7, 1.5 6.5, 1 6.5, 1 7, 1.5 7))" +"POLYGON ((2 7, 2 6.5, 1.5 6.5, 1.5 7, 2 7))" +"POLYGON ((2.5 7, 2.5 6.5, 2 6.5, 2 7, 2.5 7))" +"POLYGON ((3 7, 3 6.5, 2.5 6.5, 2.5 7, 3 7))" +"POLYGON ((3.5 7, 3.5 6.5, 3 6.5, 3 7, 3.5 7))" +"POLYGON ((4 7, 4 6.5, 3.5 6.5, 3.5 7, 4 7))" +"POLYGON ((4.5 7, 4.5 6.5, 4 6.5, 4 7, 4.5 7))" +"POLYGON ((5 7, 5 6.5, 4.5 6.5, 4.5 7, 5 7))" +"POLYGON ((5.5 7, 5.5 6.5, 5 6.5, 5 7, 5.5 7))" +"POLYGON ((6 7, 6 6.5, 5.5 6.5, 5.5 7, 6 7))" +"POLYGON ((6.5 7, 6.5 6.5, 6 6.5, 6 7, 6.5 7))" +"POLYGON ((7 7, 7 6.5, 6.5 6.5, 6.5 7, 7 7))" +"POLYGON ((7.5 7, 7.5 6.5, 7 6.5, 7 7, 7.5 7))" +"POLYGON ((8 7, 8 6.5, 7.5 6.5, 7.5 7, 8 7))" +"POLYGON ((8.5 7, 8.5 6.5, 8 6.5, 8 7, 8.5 7))" +"POLYGON ((9 7, 9 6.5, 8.5 6.5, 8.5 7, 9 7))" +"POLYGON ((9.5 7, 9.5 6.5, 9 6.5, 9 7, 9.5 7))" +"POLYGON ((10 7, 10 6.5, 9.5 6.5, 9.5 7, 10 7))" +"POLYGON ((10.5 7, 10.5 6.5, 10 6.5, 10 7, 10.5 7))" +"POLYGON ((11 7, 11 6.5, 10.5 6.5, 10.5 7, 11 7))" +"POLYGON ((11.5 7, 11.5 6.5, 11 6.5, 11 7, 11.5 7))" +"POLYGON ((12 7, 12 6.5, 11.5 6.5, 11.5 7, 12 7))" +"POLYGON ((12.5 7, 12.5 6.5, 12 6.5, 12 7, 12.5 7))" +"POLYGON ((13 7, 13 6.5, 12.5 6.5, 12.5 7, 13 7))" +"POLYGON ((13.5 7, 13.5 6.5, 13 6.5, 13 7, 13.5 7))" +"POLYGON ((14 7, 14 6.5, 13.5 6.5, 13.5 7, 14 7))" +"POLYGON ((14.5 7, 14.5 6.5, 14 6.5, 14 7, 14.5 7))" +"POLYGON ((15 7, 15 6.5, 14.5 6.5, 14.5 7, 15 7))" +"POLYGON ((15.5 7, 15.5 6.5, 15 6.5, 15 7, 15.5 7))" +"POLYGON ((16 7, 16 6.5, 15.5 6.5, 15.5 7, 16 7))" +"POLYGON ((16.5 7, 16.5 6.5, 16 6.5, 16 7, 16.5 7))" +"POLYGON ((17 7, 17 6.5, 16.5 6.5, 16.5 7, 17 7))" +"POLYGON ((17.5 7, 17.5 6.5, 17 6.5, 17 7, 17.5 7))" +"POLYGON ((18 7, 18 6.5, 17.5 6.5, 17.5 7, 18 7))" +"POLYGON ((18.5 7, 18.5 6.5, 18 6.5, 18 7, 18.5 7))" +"POLYGON ((19 7, 19 6.5, 18.5 6.5, 18.5 7, 19 7))" +"POLYGON ((19.5 7, 19.5 6.5, 19 6.5, 19 7, 19.5 7))" +"POLYGON ((20 7, 20 6.5, 19.5 6.5, 19.5 7, 20 7))" +"POLYGON ((20.5 7, 20.5 6.5, 20 6.5, 20 7, 20.5 7))" +"POLYGON ((21 7, 21 6.5, 20.5 6.5, 20.5 7, 21 7))" +"POLYGON ((21.5 7, 21.5 6.5, 21 6.5, 21 7, 21.5 7))" +"POLYGON ((22 7, 22 6.5, 21.5 6.5, 21.5 7, 22 7))" +"POLYGON ((22.5 7, 22.5 6.5, 22 6.5, 22 7, 22.5 7))" +"POLYGON ((23 7, 23 6.5, 22.5 6.5, 22.5 7, 23 7))" +"POLYGON ((23.5 7, 23.5 6.5, 23 6.5, 23 7, 23.5 7))" +"POLYGON ((24 7, 24 6.5, 23.5 6.5, 23.5 7, 24 7))" +"POLYGON ((24.5 7, 24.5 6.5, 24 6.5, 24 7, 24.5 7))" +"POLYGON ((25 7, 25 6.5, 24.5 6.5, 24.5 7, 25 7))" +"POLYGON ((25.5 7, 25.5 6.5, 25 6.5, 25 7, 25.5 7))" +"POLYGON ((26 7, 26 6.5, 25.5 6.5, 25.5 7, 26 7))" +"POLYGON ((26.5 7, 26.5 6.5, 26 6.5, 26 7, 26.5 7))" +"POLYGON ((27 7, 27 6.5, 26.5 6.5, 26.5 7, 27 7))" +"POLYGON ((27.5 7, 27.5 6.5, 27 6.5, 27 7, 27.5 7))" +"POLYGON ((28 7, 28 6.5, 27.5 6.5, 27.5 7, 28 7))" +"POLYGON ((28.5 7, 28.5 6.5, 28 6.5, 28 7, 28.5 7))" +"POLYGON ((29 7, 29 6.5, 28.5 6.5, 28.5 7, 29 7))" +"POLYGON ((29.5 7, 29.5 6.5, 29 6.5, 29 7, 29.5 7))" +"POLYGON ((30 7, 30 6.5, 29.5 6.5, 29.5 7, 30 7))" +"POLYGON ((30.5 7, 30.5 6.5, 30 6.5, 30 7, 30.5 7))" +"POLYGON ((31 7, 31 6.5, 30.5 6.5, 30.5 7, 31 7))" +"POLYGON ((31.5 7, 31.5 6.5, 31 6.5, 31 7, 31.5 7))" +"POLYGON ((32 7, 32 6.5, 31.5 6.5, 31.5 7, 32 7))" +"POLYGON ((32.5 7, 32.5 6.5, 32 6.5, 32 7, 32.5 7))" +"POLYGON ((33 7, 33 6.5, 32.5 6.5, 32.5 7, 33 7))" +"POLYGON ((33.5 7, 33.5 6.5, 33 6.5, 33 7, 33.5 7))" +"POLYGON ((34 7, 34 6.5, 33.5 6.5, 33.5 7, 34 7))" +"POLYGON ((34.5 7, 34.5 6.5, 34 6.5, 34 7, 34.5 7))" +"POLYGON ((35 7, 35 6.5, 34.5 6.5, 34.5 7, 35 7))" +"POLYGON ((35.5 7, 35.5 6.5, 35 6.5, 35 7, 35.5 7))" +"POLYGON ((36 7, 36 6.5, 35.5 6.5, 35.5 7, 36 7))" +"POLYGON ((36.5 7, 36.5 6.5, 36 6.5, 36 7, 36.5 7))" +"POLYGON ((37 7, 37 6.5, 36.5 6.5, 36.5 7, 37 7))" +"POLYGON ((37.5 7, 37.5 6.5, 37 6.5, 37 7, 37.5 7))" +"POLYGON ((38 7, 38 6.5, 37.5 6.5, 37.5 7, 38 7))" +"POLYGON ((38.5 7, 38.5 6.5, 38 6.5, 38 7, 38.5 7))" +"POLYGON ((39 7, 39 6.5, 38.5 6.5, 38.5 7, 39 7))" +"POLYGON ((39.5 7, 39.5 6.5, 39 6.5, 39 7, 39.5 7))" +"POLYGON ((40 7, 40 6.5, 39.5 6.5, 39.5 7, 40 7))" +"POLYGON ((40.5 7, 40.5 6.5, 40 6.5, 40 7, 40.5 7))" +"POLYGON ((41 7, 41 6.5, 40.5 6.5, 40.5 7, 41 7))" +"POLYGON ((41.5 7, 41.5 6.5, 41 6.5, 41 7, 41.5 7))" +"POLYGON ((42 7, 42 6.5, 41.5 6.5, 41.5 7, 42 7))" +"POLYGON ((42.5 7, 42.5 6.5, 42 6.5, 42 7, 42.5 7))" +"POLYGON ((43 7, 43 6.5, 42.5 6.5, 42.5 7, 43 7))" +"POLYGON ((43.5 7, 43.5 6.5, 43 6.5, 43 7, 43.5 7))" +"POLYGON ((44 7, 44 6.5, 43.5 6.5, 43.5 7, 44 7))" +"POLYGON ((44.5 7, 44.5 6.5, 44 6.5, 44 7, 44.5 7))" +"POLYGON ((45 7, 45 6.5, 44.5 6.5, 44.5 7, 45 7))" +"POLYGON ((45.5 7, 45.5 6.5, 45 6.5, 45 7, 45.5 7))" +"POLYGON ((46 7, 46 6.5, 45.5 6.5, 45.5 7, 46 7))" +"POLYGON ((46.5 7, 46.5 6.5, 46 6.5, 46 7, 46.5 7))" +"POLYGON ((47 7, 47 6.5, 46.5 6.5, 46.5 7, 47 7))" +"POLYGON ((47.5 7, 47.5 6.5, 47 6.5, 47 7, 47.5 7))" +"POLYGON ((48 7, 48 6.5, 47.5 6.5, 47.5 7, 48 7))" +"POLYGON ((48.5 7, 48.5 6.5, 48 6.5, 48 7, 48.5 7))" +"POLYGON ((49 7, 49 6.5, 48.5 6.5, 48.5 7, 49 7))" +"POLYGON ((49.5 7, 49.5 6.5, 49 6.5, 49 7, 49.5 7))" +"POLYGON ((-11.5 7.5, -11.5 7, -12 7, -12 7.5, -11.5 7.5))" +"POLYGON ((-11 7.5, -11 7, -11.5 7, -11.5 7.5, -11 7.5))" +"POLYGON ((-10.5 7.5, -10.5 7, -11 7, -11 7.5, -10.5 7.5))" +"POLYGON ((-10 7.5, -10 7, -10.5 7, -10.5 7.5, -10 7.5))" +"POLYGON ((-9.5 7.5, -9.5 7, -10 7, -10 7.5, -9.5 7.5))" +"POLYGON ((-9 7.5, -9 7, -9.5 7, -9.5 7.5, -9 7.5))" +"POLYGON ((-8.5 7.5, -8.5 7, -9 7, -9 7.5, -8.5 7.5))" +"POLYGON ((-8 7.5, -8 7, -8.5 7, -8.5 7.5, -8 7.5))" +"POLYGON ((-7.5 7.5, -7.5 7, -8 7, -8 7.5, -7.5 7.5))" +"POLYGON ((-7 7.5, -7 7, -7.5 7, -7.5 7.5, -7 7.5))" +"POLYGON ((-6.5 7.5, -6.5 7, -7 7, -7 7.5, -6.5 7.5))" +"POLYGON ((-6 7.5, -6 7, -6.5 7, -6.5 7.5, -6 7.5))" +"POLYGON ((-5.5 7.5, -5.5 7, -6 7, -6 7.5, -5.5 7.5))" +"POLYGON ((-5 7.5, -5 7, -5.5 7, -5.5 7.5, -5 7.5))" +"POLYGON ((-4.5 7.5, -4.5 7, -5 7, -5 7.5, -4.5 7.5))" +"POLYGON ((-4 7.5, -4 7, -4.5 7, -4.5 7.5, -4 7.5))" +"POLYGON ((-3.5 7.5, -3.5 7, -4 7, -4 7.5, -3.5 7.5))" +"POLYGON ((-3 7.5, -3 7, -3.5 7, -3.5 7.5, -3 7.5))" +"POLYGON ((-2.5 7.5, -2.5 7, -3 7, -3 7.5, -2.5 7.5))" +"POLYGON ((-2 7.5, -2 7, -2.5 7, -2.5 7.5, -2 7.5))" +"POLYGON ((-1.5 7.5, -1.5 7, -2 7, -2 7.5, -1.5 7.5))" +"POLYGON ((-1 7.5, -1 7, -1.5 7, -1.5 7.5, -1 7.5))" +"POLYGON ((-0.5 7.5, -0.5 7, -1 7, -1 7.5, -0.5 7.5))" +"POLYGON ((0 7.5, 0 7, -0.5 7, -0.5 7.5, 0 7.5))" +"POLYGON ((0.5 7.5, 0.5 7, 0 7, 0 7.5, 0.5 7.5))" +"POLYGON ((1 7.5, 1 7, 0.5 7, 0.5 7.5, 1 7.5))" +"POLYGON ((1.5 7.5, 1.5 7, 1 7, 1 7.5, 1.5 7.5))" +"POLYGON ((2 7.5, 2 7, 1.5 7, 1.5 7.5, 2 7.5))" +"POLYGON ((2.5 7.5, 2.5 7, 2 7, 2 7.5, 2.5 7.5))" +"POLYGON ((3 7.5, 3 7, 2.5 7, 2.5 7.5, 3 7.5))" +"POLYGON ((3.5 7.5, 3.5 7, 3 7, 3 7.5, 3.5 7.5))" +"POLYGON ((4 7.5, 4 7, 3.5 7, 3.5 7.5, 4 7.5))" +"POLYGON ((4.5 7.5, 4.5 7, 4 7, 4 7.5, 4.5 7.5))" +"POLYGON ((5 7.5, 5 7, 4.5 7, 4.5 7.5, 5 7.5))" +"POLYGON ((5.5 7.5, 5.5 7, 5 7, 5 7.5, 5.5 7.5))" +"POLYGON ((6 7.5, 6 7, 5.5 7, 5.5 7.5, 6 7.5))" +"POLYGON ((6.5 7.5, 6.5 7, 6 7, 6 7.5, 6.5 7.5))" +"POLYGON ((7 7.5, 7 7, 6.5 7, 6.5 7.5, 7 7.5))" +"POLYGON ((7.5 7.5, 7.5 7, 7 7, 7 7.5, 7.5 7.5))" +"POLYGON ((8 7.5, 8 7, 7.5 7, 7.5 7.5, 8 7.5))" +"POLYGON ((8.5 7.5, 8.5 7, 8 7, 8 7.5, 8.5 7.5))" +"POLYGON ((9 7.5, 9 7, 8.5 7, 8.5 7.5, 9 7.5))" +"POLYGON ((9.5 7.5, 9.5 7, 9 7, 9 7.5, 9.5 7.5))" +"POLYGON ((10 7.5, 10 7, 9.5 7, 9.5 7.5, 10 7.5))" +"POLYGON ((10.5 7.5, 10.5 7, 10 7, 10 7.5, 10.5 7.5))" +"POLYGON ((11 7.5, 11 7, 10.5 7, 10.5 7.5, 11 7.5))" +"POLYGON ((11.5 7.5, 11.5 7, 11 7, 11 7.5, 11.5 7.5))" +"POLYGON ((12 7.5, 12 7, 11.5 7, 11.5 7.5, 12 7.5))" +"POLYGON ((12.5 7.5, 12.5 7, 12 7, 12 7.5, 12.5 7.5))" +"POLYGON ((13 7.5, 13 7, 12.5 7, 12.5 7.5, 13 7.5))" +"POLYGON ((13.5 7.5, 13.5 7, 13 7, 13 7.5, 13.5 7.5))" +"POLYGON ((14 7.5, 14 7, 13.5 7, 13.5 7.5, 14 7.5))" +"POLYGON ((14.5 7.5, 14.5 7, 14 7, 14 7.5, 14.5 7.5))" +"POLYGON ((15 7.5, 15 7, 14.5 7, 14.5 7.5, 15 7.5))" +"POLYGON ((15.5 7.5, 15.5 7, 15 7, 15 7.5, 15.5 7.5))" +"POLYGON ((16 7.5, 16 7, 15.5 7, 15.5 7.5, 16 7.5))" +"POLYGON ((16.5 7.5, 16.5 7, 16 7, 16 7.5, 16.5 7.5))" +"POLYGON ((17 7.5, 17 7, 16.5 7, 16.5 7.5, 17 7.5))" +"POLYGON ((17.5 7.5, 17.5 7, 17 7, 17 7.5, 17.5 7.5))" +"POLYGON ((18 7.5, 18 7, 17.5 7, 17.5 7.5, 18 7.5))" +"POLYGON ((18.5 7.5, 18.5 7, 18 7, 18 7.5, 18.5 7.5))" +"POLYGON ((19 7.5, 19 7, 18.5 7, 18.5 7.5, 19 7.5))" +"POLYGON ((19.5 7.5, 19.5 7, 19 7, 19 7.5, 19.5 7.5))" +"POLYGON ((20 7.5, 20 7, 19.5 7, 19.5 7.5, 20 7.5))" +"POLYGON ((20.5 7.5, 20.5 7, 20 7, 20 7.5, 20.5 7.5))" +"POLYGON ((21 7.5, 21 7, 20.5 7, 20.5 7.5, 21 7.5))" +"POLYGON ((21.5 7.5, 21.5 7, 21 7, 21 7.5, 21.5 7.5))" +"POLYGON ((22 7.5, 22 7, 21.5 7, 21.5 7.5, 22 7.5))" +"POLYGON ((22.5 7.5, 22.5 7, 22 7, 22 7.5, 22.5 7.5))" +"POLYGON ((23 7.5, 23 7, 22.5 7, 22.5 7.5, 23 7.5))" +"POLYGON ((23.5 7.5, 23.5 7, 23 7, 23 7.5, 23.5 7.5))" +"POLYGON ((24 7.5, 24 7, 23.5 7, 23.5 7.5, 24 7.5))" +"POLYGON ((24.5 7.5, 24.5 7, 24 7, 24 7.5, 24.5 7.5))" +"POLYGON ((25 7.5, 25 7, 24.5 7, 24.5 7.5, 25 7.5))" +"POLYGON ((25.5 7.5, 25.5 7, 25 7, 25 7.5, 25.5 7.5))" +"POLYGON ((26 7.5, 26 7, 25.5 7, 25.5 7.5, 26 7.5))" +"POLYGON ((26.5 7.5, 26.5 7, 26 7, 26 7.5, 26.5 7.5))" +"POLYGON ((27 7.5, 27 7, 26.5 7, 26.5 7.5, 27 7.5))" +"POLYGON ((27.5 7.5, 27.5 7, 27 7, 27 7.5, 27.5 7.5))" +"POLYGON ((28 7.5, 28 7, 27.5 7, 27.5 7.5, 28 7.5))" +"POLYGON ((28.5 7.5, 28.5 7, 28 7, 28 7.5, 28.5 7.5))" +"POLYGON ((29 7.5, 29 7, 28.5 7, 28.5 7.5, 29 7.5))" +"POLYGON ((29.5 7.5, 29.5 7, 29 7, 29 7.5, 29.5 7.5))" +"POLYGON ((30 7.5, 30 7, 29.5 7, 29.5 7.5, 30 7.5))" +"POLYGON ((30.5 7.5, 30.5 7, 30 7, 30 7.5, 30.5 7.5))" +"POLYGON ((31 7.5, 31 7, 30.5 7, 30.5 7.5, 31 7.5))" +"POLYGON ((31.5 7.5, 31.5 7, 31 7, 31 7.5, 31.5 7.5))" +"POLYGON ((32 7.5, 32 7, 31.5 7, 31.5 7.5, 32 7.5))" +"POLYGON ((32.5 7.5, 32.5 7, 32 7, 32 7.5, 32.5 7.5))" +"POLYGON ((33 7.5, 33 7, 32.5 7, 32.5 7.5, 33 7.5))" +"POLYGON ((33.5 7.5, 33.5 7, 33 7, 33 7.5, 33.5 7.5))" +"POLYGON ((34 7.5, 34 7, 33.5 7, 33.5 7.5, 34 7.5))" +"POLYGON ((34.5 7.5, 34.5 7, 34 7, 34 7.5, 34.5 7.5))" +"POLYGON ((35 7.5, 35 7, 34.5 7, 34.5 7.5, 35 7.5))" +"POLYGON ((35.5 7.5, 35.5 7, 35 7, 35 7.5, 35.5 7.5))" +"POLYGON ((36 7.5, 36 7, 35.5 7, 35.5 7.5, 36 7.5))" +"POLYGON ((36.5 7.5, 36.5 7, 36 7, 36 7.5, 36.5 7.5))" +"POLYGON ((37 7.5, 37 7, 36.5 7, 36.5 7.5, 37 7.5))" +"POLYGON ((37.5 7.5, 37.5 7, 37 7, 37 7.5, 37.5 7.5))" +"POLYGON ((38 7.5, 38 7, 37.5 7, 37.5 7.5, 38 7.5))" +"POLYGON ((38.5 7.5, 38.5 7, 38 7, 38 7.5, 38.5 7.5))" +"POLYGON ((39 7.5, 39 7, 38.5 7, 38.5 7.5, 39 7.5))" +"POLYGON ((39.5 7.5, 39.5 7, 39 7, 39 7.5, 39.5 7.5))" +"POLYGON ((40 7.5, 40 7, 39.5 7, 39.5 7.5, 40 7.5))" +"POLYGON ((40.5 7.5, 40.5 7, 40 7, 40 7.5, 40.5 7.5))" +"POLYGON ((41 7.5, 41 7, 40.5 7, 40.5 7.5, 41 7.5))" +"POLYGON ((41.5 7.5, 41.5 7, 41 7, 41 7.5, 41.5 7.5))" +"POLYGON ((42 7.5, 42 7, 41.5 7, 41.5 7.5, 42 7.5))" +"POLYGON ((42.5 7.5, 42.5 7, 42 7, 42 7.5, 42.5 7.5))" +"POLYGON ((43 7.5, 43 7, 42.5 7, 42.5 7.5, 43 7.5))" +"POLYGON ((43.5 7.5, 43.5 7, 43 7, 43 7.5, 43.5 7.5))" +"POLYGON ((44 7.5, 44 7, 43.5 7, 43.5 7.5, 44 7.5))" +"POLYGON ((44.5 7.5, 44.5 7, 44 7, 44 7.5, 44.5 7.5))" +"POLYGON ((45 7.5, 45 7, 44.5 7, 44.5 7.5, 45 7.5))" +"POLYGON ((45.5 7.5, 45.5 7, 45 7, 45 7.5, 45.5 7.5))" +"POLYGON ((46 7.5, 46 7, 45.5 7, 45.5 7.5, 46 7.5))" +"POLYGON ((46.5 7.5, 46.5 7, 46 7, 46 7.5, 46.5 7.5))" +"POLYGON ((47 7.5, 47 7, 46.5 7, 46.5 7.5, 47 7.5))" +"POLYGON ((47.5 7.5, 47.5 7, 47 7, 47 7.5, 47.5 7.5))" +"POLYGON ((48 7.5, 48 7, 47.5 7, 47.5 7.5, 48 7.5))" +"POLYGON ((48.5 7.5, 48.5 7, 48 7, 48 7.5, 48.5 7.5))" +"POLYGON ((49 7.5, 49 7, 48.5 7, 48.5 7.5, 49 7.5))" +"POLYGON ((49.5 7.5, 49.5 7, 49 7, 49 7.5, 49.5 7.5))" +"POLYGON ((-12 8, -12 7.5, -12.5 7.5, -12.5 8, -12 8))" +"POLYGON ((-11.5 8, -11.5 7.5, -12 7.5, -12 8, -11.5 8))" +"POLYGON ((-11 8, -11 7.5, -11.5 7.5, -11.5 8, -11 8))" +"POLYGON ((-10.5 8, -10.5 7.5, -11 7.5, -11 8, -10.5 8))" +"POLYGON ((-10 8, -10 7.5, -10.5 7.5, -10.5 8, -10 8))" +"POLYGON ((-9.5 8, -9.5 7.5, -10 7.5, -10 8, -9.5 8))" +"POLYGON ((-9 8, -9 7.5, -9.5 7.5, -9.5 8, -9 8))" +"POLYGON ((-8.5 8, -8.5 7.5, -9 7.5, -9 8, -8.5 8))" +"POLYGON ((-8 8, -8 7.5, -8.5 7.5, -8.5 8, -8 8))" +"POLYGON ((-7.5 8, -7.5 7.5, -8 7.5, -8 8, -7.5 8))" +"POLYGON ((-7 8, -7 7.5, -7.5 7.5, -7.5 8, -7 8))" +"POLYGON ((-6.5 8, -6.5 7.5, -7 7.5, -7 8, -6.5 8))" +"POLYGON ((-6 8, -6 7.5, -6.5 7.5, -6.5 8, -6 8))" +"POLYGON ((-5.5 8, -5.5 7.5, -6 7.5, -6 8, -5.5 8))" +"POLYGON ((-5 8, -5 7.5, -5.5 7.5, -5.5 8, -5 8))" +"POLYGON ((-4.5 8, -4.5 7.5, -5 7.5, -5 8, -4.5 8))" +"POLYGON ((-4 8, -4 7.5, -4.5 7.5, -4.5 8, -4 8))" +"POLYGON ((-3.5 8, -3.5 7.5, -4 7.5, -4 8, -3.5 8))" +"POLYGON ((-3 8, -3 7.5, -3.5 7.5, -3.5 8, -3 8))" +"POLYGON ((-2.5 8, -2.5 7.5, -3 7.5, -3 8, -2.5 8))" +"POLYGON ((-2 8, -2 7.5, -2.5 7.5, -2.5 8, -2 8))" +"POLYGON ((-1.5 8, -1.5 7.5, -2 7.5, -2 8, -1.5 8))" +"POLYGON ((-1 8, -1 7.5, -1.5 7.5, -1.5 8, -1 8))" +"POLYGON ((-0.5 8, -0.5 7.5, -1 7.5, -1 8, -0.5 8))" +"POLYGON ((0 8, 0 7.5, -0.5 7.5, -0.5 8, 0 8))" +"POLYGON ((0.5 8, 0.5 7.5, 0 7.5, 0 8, 0.5 8))" +"POLYGON ((1 8, 1 7.5, 0.5 7.5, 0.5 8, 1 8))" +"POLYGON ((1.5 8, 1.5 7.5, 1 7.5, 1 8, 1.5 8))" +"POLYGON ((2 8, 2 7.5, 1.5 7.5, 1.5 8, 2 8))" +"POLYGON ((2.5 8, 2.5 7.5, 2 7.5, 2 8, 2.5 8))" +"POLYGON ((3 8, 3 7.5, 2.5 7.5, 2.5 8, 3 8))" +"POLYGON ((3.5 8, 3.5 7.5, 3 7.5, 3 8, 3.5 8))" +"POLYGON ((4 8, 4 7.5, 3.5 7.5, 3.5 8, 4 8))" +"POLYGON ((4.5 8, 4.5 7.5, 4 7.5, 4 8, 4.5 8))" +"POLYGON ((5 8, 5 7.5, 4.5 7.5, 4.5 8, 5 8))" +"POLYGON ((5.5 8, 5.5 7.5, 5 7.5, 5 8, 5.5 8))" +"POLYGON ((6 8, 6 7.5, 5.5 7.5, 5.5 8, 6 8))" +"POLYGON ((6.5 8, 6.5 7.5, 6 7.5, 6 8, 6.5 8))" +"POLYGON ((7 8, 7 7.5, 6.5 7.5, 6.5 8, 7 8))" +"POLYGON ((7.5 8, 7.5 7.5, 7 7.5, 7 8, 7.5 8))" +"POLYGON ((8 8, 8 7.5, 7.5 7.5, 7.5 8, 8 8))" +"POLYGON ((8.5 8, 8.5 7.5, 8 7.5, 8 8, 8.5 8))" +"POLYGON ((9 8, 9 7.5, 8.5 7.5, 8.5 8, 9 8))" +"POLYGON ((9.5 8, 9.5 7.5, 9 7.5, 9 8, 9.5 8))" +"POLYGON ((10 8, 10 7.5, 9.5 7.5, 9.5 8, 10 8))" +"POLYGON ((10.5 8, 10.5 7.5, 10 7.5, 10 8, 10.5 8))" +"POLYGON ((11 8, 11 7.5, 10.5 7.5, 10.5 8, 11 8))" +"POLYGON ((11.5 8, 11.5 7.5, 11 7.5, 11 8, 11.5 8))" +"POLYGON ((12 8, 12 7.5, 11.5 7.5, 11.5 8, 12 8))" +"POLYGON ((12.5 8, 12.5 7.5, 12 7.5, 12 8, 12.5 8))" +"POLYGON ((13 8, 13 7.5, 12.5 7.5, 12.5 8, 13 8))" +"POLYGON ((13.5 8, 13.5 7.5, 13 7.5, 13 8, 13.5 8))" +"POLYGON ((14 8, 14 7.5, 13.5 7.5, 13.5 8, 14 8))" +"POLYGON ((14.5 8, 14.5 7.5, 14 7.5, 14 8, 14.5 8))" +"POLYGON ((15 8, 15 7.5, 14.5 7.5, 14.5 8, 15 8))" +"POLYGON ((15.5 8, 15.5 7.5, 15 7.5, 15 8, 15.5 8))" +"POLYGON ((16 8, 16 7.5, 15.5 7.5, 15.5 8, 16 8))" +"POLYGON ((16.5 8, 16.5 7.5, 16 7.5, 16 8, 16.5 8))" +"POLYGON ((17 8, 17 7.5, 16.5 7.5, 16.5 8, 17 8))" +"POLYGON ((17.5 8, 17.5 7.5, 17 7.5, 17 8, 17.5 8))" +"POLYGON ((18 8, 18 7.5, 17.5 7.5, 17.5 8, 18 8))" +"POLYGON ((18.5 8, 18.5 7.5, 18 7.5, 18 8, 18.5 8))" +"POLYGON ((19 8, 19 7.5, 18.5 7.5, 18.5 8, 19 8))" +"POLYGON ((19.5 8, 19.5 7.5, 19 7.5, 19 8, 19.5 8))" +"POLYGON ((20 8, 20 7.5, 19.5 7.5, 19.5 8, 20 8))" +"POLYGON ((20.5 8, 20.5 7.5, 20 7.5, 20 8, 20.5 8))" +"POLYGON ((21 8, 21 7.5, 20.5 7.5, 20.5 8, 21 8))" +"POLYGON ((21.5 8, 21.5 7.5, 21 7.5, 21 8, 21.5 8))" +"POLYGON ((22 8, 22 7.5, 21.5 7.5, 21.5 8, 22 8))" +"POLYGON ((22.5 8, 22.5 7.5, 22 7.5, 22 8, 22.5 8))" +"POLYGON ((23 8, 23 7.5, 22.5 7.5, 22.5 8, 23 8))" +"POLYGON ((23.5 8, 23.5 7.5, 23 7.5, 23 8, 23.5 8))" +"POLYGON ((24 8, 24 7.5, 23.5 7.5, 23.5 8, 24 8))" +"POLYGON ((24.5 8, 24.5 7.5, 24 7.5, 24 8, 24.5 8))" +"POLYGON ((25 8, 25 7.5, 24.5 7.5, 24.5 8, 25 8))" +"POLYGON ((25.5 8, 25.5 7.5, 25 7.5, 25 8, 25.5 8))" +"POLYGON ((26 8, 26 7.5, 25.5 7.5, 25.5 8, 26 8))" +"POLYGON ((26.5 8, 26.5 7.5, 26 7.5, 26 8, 26.5 8))" +"POLYGON ((27 8, 27 7.5, 26.5 7.5, 26.5 8, 27 8))" +"POLYGON ((27.5 8, 27.5 7.5, 27 7.5, 27 8, 27.5 8))" +"POLYGON ((28 8, 28 7.5, 27.5 7.5, 27.5 8, 28 8))" +"POLYGON ((28.5 8, 28.5 7.5, 28 7.5, 28 8, 28.5 8))" +"POLYGON ((29 8, 29 7.5, 28.5 7.5, 28.5 8, 29 8))" +"POLYGON ((29.5 8, 29.5 7.5, 29 7.5, 29 8, 29.5 8))" +"POLYGON ((30 8, 30 7.5, 29.5 7.5, 29.5 8, 30 8))" +"POLYGON ((30.5 8, 30.5 7.5, 30 7.5, 30 8, 30.5 8))" +"POLYGON ((31 8, 31 7.5, 30.5 7.5, 30.5 8, 31 8))" +"POLYGON ((31.5 8, 31.5 7.5, 31 7.5, 31 8, 31.5 8))" +"POLYGON ((32 8, 32 7.5, 31.5 7.5, 31.5 8, 32 8))" +"POLYGON ((32.5 8, 32.5 7.5, 32 7.5, 32 8, 32.5 8))" +"POLYGON ((33 8, 33 7.5, 32.5 7.5, 32.5 8, 33 8))" +"POLYGON ((33.5 8, 33.5 7.5, 33 7.5, 33 8, 33.5 8))" +"POLYGON ((34 8, 34 7.5, 33.5 7.5, 33.5 8, 34 8))" +"POLYGON ((34.5 8, 34.5 7.5, 34 7.5, 34 8, 34.5 8))" +"POLYGON ((35 8, 35 7.5, 34.5 7.5, 34.5 8, 35 8))" +"POLYGON ((35.5 8, 35.5 7.5, 35 7.5, 35 8, 35.5 8))" +"POLYGON ((36 8, 36 7.5, 35.5 7.5, 35.5 8, 36 8))" +"POLYGON ((36.5 8, 36.5 7.5, 36 7.5, 36 8, 36.5 8))" +"POLYGON ((37 8, 37 7.5, 36.5 7.5, 36.5 8, 37 8))" +"POLYGON ((37.5 8, 37.5 7.5, 37 7.5, 37 8, 37.5 8))" +"POLYGON ((38 8, 38 7.5, 37.5 7.5, 37.5 8, 38 8))" +"POLYGON ((38.5 8, 38.5 7.5, 38 7.5, 38 8, 38.5 8))" +"POLYGON ((39 8, 39 7.5, 38.5 7.5, 38.5 8, 39 8))" +"POLYGON ((39.5 8, 39.5 7.5, 39 7.5, 39 8, 39.5 8))" +"POLYGON ((40 8, 40 7.5, 39.5 7.5, 39.5 8, 40 8))" +"POLYGON ((40.5 8, 40.5 7.5, 40 7.5, 40 8, 40.5 8))" +"POLYGON ((41 8, 41 7.5, 40.5 7.5, 40.5 8, 41 8))" +"POLYGON ((41.5 8, 41.5 7.5, 41 7.5, 41 8, 41.5 8))" +"POLYGON ((42 8, 42 7.5, 41.5 7.5, 41.5 8, 42 8))" +"POLYGON ((42.5 8, 42.5 7.5, 42 7.5, 42 8, 42.5 8))" +"POLYGON ((43 8, 43 7.5, 42.5 7.5, 42.5 8, 43 8))" +"POLYGON ((43.5 8, 43.5 7.5, 43 7.5, 43 8, 43.5 8))" +"POLYGON ((44 8, 44 7.5, 43.5 7.5, 43.5 8, 44 8))" +"POLYGON ((44.5 8, 44.5 7.5, 44 7.5, 44 8, 44.5 8))" +"POLYGON ((45 8, 45 7.5, 44.5 7.5, 44.5 8, 45 8))" +"POLYGON ((45.5 8, 45.5 7.5, 45 7.5, 45 8, 45.5 8))" +"POLYGON ((46 8, 46 7.5, 45.5 7.5, 45.5 8, 46 8))" +"POLYGON ((46.5 8, 46.5 7.5, 46 7.5, 46 8, 46.5 8))" +"POLYGON ((47 8, 47 7.5, 46.5 7.5, 46.5 8, 47 8))" +"POLYGON ((47.5 8, 47.5 7.5, 47 7.5, 47 8, 47.5 8))" +"POLYGON ((48 8, 48 7.5, 47.5 7.5, 47.5 8, 48 8))" +"POLYGON ((48.5 8, 48.5 7.5, 48 7.5, 48 8, 48.5 8))" +"POLYGON ((49 8, 49 7.5, 48.5 7.5, 48.5 8, 49 8))" +"POLYGON ((49.5 8, 49.5 7.5, 49 7.5, 49 8, 49.5 8))" +"POLYGON ((-12.5 8.5, -12.5 8, -13 8, -13 8.5, -12.5 8.5))" +"POLYGON ((-12 8.5, -12 8, -12.5 8, -12.5 8.5, -12 8.5))" +"POLYGON ((-11.5 8.5, -11.5 8, -12 8, -12 8.5, -11.5 8.5))" +"POLYGON ((-11 8.5, -11 8, -11.5 8, -11.5 8.5, -11 8.5))" +"POLYGON ((-10.5 8.5, -10.5 8, -11 8, -11 8.5, -10.5 8.5))" +"POLYGON ((-10 8.5, -10 8, -10.5 8, -10.5 8.5, -10 8.5))" +"POLYGON ((-9.5 8.5, -9.5 8, -10 8, -10 8.5, -9.5 8.5))" +"POLYGON ((-9 8.5, -9 8, -9.5 8, -9.5 8.5, -9 8.5))" +"POLYGON ((-8.5 8.5, -8.5 8, -9 8, -9 8.5, -8.5 8.5))" +"POLYGON ((-8 8.5, -8 8, -8.5 8, -8.5 8.5, -8 8.5))" +"POLYGON ((-7.5 8.5, -7.5 8, -8 8, -8 8.5, -7.5 8.5))" +"POLYGON ((-7 8.5, -7 8, -7.5 8, -7.5 8.5, -7 8.5))" +"POLYGON ((-6.5 8.5, -6.5 8, -7 8, -7 8.5, -6.5 8.5))" +"POLYGON ((-6 8.5, -6 8, -6.5 8, -6.5 8.5, -6 8.5))" +"POLYGON ((-5.5 8.5, -5.5 8, -6 8, -6 8.5, -5.5 8.5))" +"POLYGON ((-5 8.5, -5 8, -5.5 8, -5.5 8.5, -5 8.5))" +"POLYGON ((-4.5 8.5, -4.5 8, -5 8, -5 8.5, -4.5 8.5))" +"POLYGON ((-4 8.5, -4 8, -4.5 8, -4.5 8.5, -4 8.5))" +"POLYGON ((-3.5 8.5, -3.5 8, -4 8, -4 8.5, -3.5 8.5))" +"POLYGON ((-3 8.5, -3 8, -3.5 8, -3.5 8.5, -3 8.5))" +"POLYGON ((-2.5 8.5, -2.5 8, -3 8, -3 8.5, -2.5 8.5))" +"POLYGON ((-2 8.5, -2 8, -2.5 8, -2.5 8.5, -2 8.5))" +"POLYGON ((-1.5 8.5, -1.5 8, -2 8, -2 8.5, -1.5 8.5))" +"POLYGON ((-1 8.5, -1 8, -1.5 8, -1.5 8.5, -1 8.5))" +"POLYGON ((-0.5 8.5, -0.5 8, -1 8, -1 8.5, -0.5 8.5))" +"POLYGON ((0 8.5, 0 8, -0.5 8, -0.5 8.5, 0 8.5))" +"POLYGON ((0.5 8.5, 0.5 8, 0 8, 0 8.5, 0.5 8.5))" +"POLYGON ((1 8.5, 1 8, 0.5 8, 0.5 8.5, 1 8.5))" +"POLYGON ((1.5 8.5, 1.5 8, 1 8, 1 8.5, 1.5 8.5))" +"POLYGON ((2 8.5, 2 8, 1.5 8, 1.5 8.5, 2 8.5))" +"POLYGON ((2.5 8.5, 2.5 8, 2 8, 2 8.5, 2.5 8.5))" +"POLYGON ((3 8.5, 3 8, 2.5 8, 2.5 8.5, 3 8.5))" +"POLYGON ((3.5 8.5, 3.5 8, 3 8, 3 8.5, 3.5 8.5))" +"POLYGON ((4 8.5, 4 8, 3.5 8, 3.5 8.5, 4 8.5))" +"POLYGON ((4.5 8.5, 4.5 8, 4 8, 4 8.5, 4.5 8.5))" +"POLYGON ((5 8.5, 5 8, 4.5 8, 4.5 8.5, 5 8.5))" +"POLYGON ((5.5 8.5, 5.5 8, 5 8, 5 8.5, 5.5 8.5))" +"POLYGON ((6 8.5, 6 8, 5.5 8, 5.5 8.5, 6 8.5))" +"POLYGON ((6.5 8.5, 6.5 8, 6 8, 6 8.5, 6.5 8.5))" +"POLYGON ((7 8.5, 7 8, 6.5 8, 6.5 8.5, 7 8.5))" +"POLYGON ((7.5 8.5, 7.5 8, 7 8, 7 8.5, 7.5 8.5))" +"POLYGON ((8 8.5, 8 8, 7.5 8, 7.5 8.5, 8 8.5))" +"POLYGON ((8.5 8.5, 8.5 8, 8 8, 8 8.5, 8.5 8.5))" +"POLYGON ((9 8.5, 9 8, 8.5 8, 8.5 8.5, 9 8.5))" +"POLYGON ((9.5 8.5, 9.5 8, 9 8, 9 8.5, 9.5 8.5))" +"POLYGON ((10 8.5, 10 8, 9.5 8, 9.5 8.5, 10 8.5))" +"POLYGON ((10.5 8.5, 10.5 8, 10 8, 10 8.5, 10.5 8.5))" +"POLYGON ((11 8.5, 11 8, 10.5 8, 10.5 8.5, 11 8.5))" +"POLYGON ((11.5 8.5, 11.5 8, 11 8, 11 8.5, 11.5 8.5))" +"POLYGON ((12 8.5, 12 8, 11.5 8, 11.5 8.5, 12 8.5))" +"POLYGON ((12.5 8.5, 12.5 8, 12 8, 12 8.5, 12.5 8.5))" +"POLYGON ((13 8.5, 13 8, 12.5 8, 12.5 8.5, 13 8.5))" +"POLYGON ((13.5 8.5, 13.5 8, 13 8, 13 8.5, 13.5 8.5))" +"POLYGON ((14 8.5, 14 8, 13.5 8, 13.5 8.5, 14 8.5))" +"POLYGON ((14.5 8.5, 14.5 8, 14 8, 14 8.5, 14.5 8.5))" +"POLYGON ((15 8.5, 15 8, 14.5 8, 14.5 8.5, 15 8.5))" +"POLYGON ((15.5 8.5, 15.5 8, 15 8, 15 8.5, 15.5 8.5))" +"POLYGON ((16 8.5, 16 8, 15.5 8, 15.5 8.5, 16 8.5))" +"POLYGON ((16.5 8.5, 16.5 8, 16 8, 16 8.5, 16.5 8.5))" +"POLYGON ((17 8.5, 17 8, 16.5 8, 16.5 8.5, 17 8.5))" +"POLYGON ((17.5 8.5, 17.5 8, 17 8, 17 8.5, 17.5 8.5))" +"POLYGON ((18 8.5, 18 8, 17.5 8, 17.5 8.5, 18 8.5))" +"POLYGON ((18.5 8.5, 18.5 8, 18 8, 18 8.5, 18.5 8.5))" +"POLYGON ((19 8.5, 19 8, 18.5 8, 18.5 8.5, 19 8.5))" +"POLYGON ((19.5 8.5, 19.5 8, 19 8, 19 8.5, 19.5 8.5))" +"POLYGON ((20 8.5, 20 8, 19.5 8, 19.5 8.5, 20 8.5))" +"POLYGON ((20.5 8.5, 20.5 8, 20 8, 20 8.5, 20.5 8.5))" +"POLYGON ((21 8.5, 21 8, 20.5 8, 20.5 8.5, 21 8.5))" +"POLYGON ((21.5 8.5, 21.5 8, 21 8, 21 8.5, 21.5 8.5))" +"POLYGON ((22 8.5, 22 8, 21.5 8, 21.5 8.5, 22 8.5))" +"POLYGON ((22.5 8.5, 22.5 8, 22 8, 22 8.5, 22.5 8.5))" +"POLYGON ((23 8.5, 23 8, 22.5 8, 22.5 8.5, 23 8.5))" +"POLYGON ((23.5 8.5, 23.5 8, 23 8, 23 8.5, 23.5 8.5))" +"POLYGON ((24 8.5, 24 8, 23.5 8, 23.5 8.5, 24 8.5))" +"POLYGON ((24.5 8.5, 24.5 8, 24 8, 24 8.5, 24.5 8.5))" +"POLYGON ((25 8.5, 25 8, 24.5 8, 24.5 8.5, 25 8.5))" +"POLYGON ((25.5 8.5, 25.5 8, 25 8, 25 8.5, 25.5 8.5))" +"POLYGON ((26 8.5, 26 8, 25.5 8, 25.5 8.5, 26 8.5))" +"POLYGON ((26.5 8.5, 26.5 8, 26 8, 26 8.5, 26.5 8.5))" +"POLYGON ((27 8.5, 27 8, 26.5 8, 26.5 8.5, 27 8.5))" +"POLYGON ((27.5 8.5, 27.5 8, 27 8, 27 8.5, 27.5 8.5))" +"POLYGON ((28 8.5, 28 8, 27.5 8, 27.5 8.5, 28 8.5))" +"POLYGON ((28.5 8.5, 28.5 8, 28 8, 28 8.5, 28.5 8.5))" +"POLYGON ((29 8.5, 29 8, 28.5 8, 28.5 8.5, 29 8.5))" +"POLYGON ((29.5 8.5, 29.5 8, 29 8, 29 8.5, 29.5 8.5))" +"POLYGON ((30 8.5, 30 8, 29.5 8, 29.5 8.5, 30 8.5))" +"POLYGON ((30.5 8.5, 30.5 8, 30 8, 30 8.5, 30.5 8.5))" +"POLYGON ((31 8.5, 31 8, 30.5 8, 30.5 8.5, 31 8.5))" +"POLYGON ((31.5 8.5, 31.5 8, 31 8, 31 8.5, 31.5 8.5))" +"POLYGON ((32 8.5, 32 8, 31.5 8, 31.5 8.5, 32 8.5))" +"POLYGON ((32.5 8.5, 32.5 8, 32 8, 32 8.5, 32.5 8.5))" +"POLYGON ((33 8.5, 33 8, 32.5 8, 32.5 8.5, 33 8.5))" +"POLYGON ((33.5 8.5, 33.5 8, 33 8, 33 8.5, 33.5 8.5))" +"POLYGON ((34 8.5, 34 8, 33.5 8, 33.5 8.5, 34 8.5))" +"POLYGON ((34.5 8.5, 34.5 8, 34 8, 34 8.5, 34.5 8.5))" +"POLYGON ((35 8.5, 35 8, 34.5 8, 34.5 8.5, 35 8.5))" +"POLYGON ((35.5 8.5, 35.5 8, 35 8, 35 8.5, 35.5 8.5))" +"POLYGON ((36 8.5, 36 8, 35.5 8, 35.5 8.5, 36 8.5))" +"POLYGON ((36.5 8.5, 36.5 8, 36 8, 36 8.5, 36.5 8.5))" +"POLYGON ((37 8.5, 37 8, 36.5 8, 36.5 8.5, 37 8.5))" +"POLYGON ((37.5 8.5, 37.5 8, 37 8, 37 8.5, 37.5 8.5))" +"POLYGON ((38 8.5, 38 8, 37.5 8, 37.5 8.5, 38 8.5))" +"POLYGON ((38.5 8.5, 38.5 8, 38 8, 38 8.5, 38.5 8.5))" +"POLYGON ((39 8.5, 39 8, 38.5 8, 38.5 8.5, 39 8.5))" +"POLYGON ((39.5 8.5, 39.5 8, 39 8, 39 8.5, 39.5 8.5))" +"POLYGON ((40 8.5, 40 8, 39.5 8, 39.5 8.5, 40 8.5))" +"POLYGON ((40.5 8.5, 40.5 8, 40 8, 40 8.5, 40.5 8.5))" +"POLYGON ((41 8.5, 41 8, 40.5 8, 40.5 8.5, 41 8.5))" +"POLYGON ((41.5 8.5, 41.5 8, 41 8, 41 8.5, 41.5 8.5))" +"POLYGON ((42 8.5, 42 8, 41.5 8, 41.5 8.5, 42 8.5))" +"POLYGON ((42.5 8.5, 42.5 8, 42 8, 42 8.5, 42.5 8.5))" +"POLYGON ((43 8.5, 43 8, 42.5 8, 42.5 8.5, 43 8.5))" +"POLYGON ((43.5 8.5, 43.5 8, 43 8, 43 8.5, 43.5 8.5))" +"POLYGON ((44 8.5, 44 8, 43.5 8, 43.5 8.5, 44 8.5))" +"POLYGON ((44.5 8.5, 44.5 8, 44 8, 44 8.5, 44.5 8.5))" +"POLYGON ((45 8.5, 45 8, 44.5 8, 44.5 8.5, 45 8.5))" +"POLYGON ((45.5 8.5, 45.5 8, 45 8, 45 8.5, 45.5 8.5))" +"POLYGON ((46 8.5, 46 8, 45.5 8, 45.5 8.5, 46 8.5))" +"POLYGON ((46.5 8.5, 46.5 8, 46 8, 46 8.5, 46.5 8.5))" +"POLYGON ((47 8.5, 47 8, 46.5 8, 46.5 8.5, 47 8.5))" +"POLYGON ((47.5 8.5, 47.5 8, 47 8, 47 8.5, 47.5 8.5))" +"POLYGON ((48 8.5, 48 8, 47.5 8, 47.5 8.5, 48 8.5))" +"POLYGON ((48.5 8.5, 48.5 8, 48 8, 48 8.5, 48.5 8.5))" +"POLYGON ((49 8.5, 49 8, 48.5 8, 48.5 8.5, 49 8.5))" +"POLYGON ((49.5 8.5, 49.5 8, 49 8, 49 8.5, 49.5 8.5))" +"POLYGON ((50 8.5, 50 8, 49.5 8, 49.5 8.5, 50 8.5))" +"POLYGON ((-12.5 9, -12.5 8.5, -13 8.5, -13 9, -12.5 9))" +"POLYGON ((-12 9, -12 8.5, -12.5 8.5, -12.5 9, -12 9))" +"POLYGON ((-11.5 9, -11.5 8.5, -12 8.5, -12 9, -11.5 9))" +"POLYGON ((-11 9, -11 8.5, -11.5 8.5, -11.5 9, -11 9))" +"POLYGON ((-10.5 9, -10.5 8.5, -11 8.5, -11 9, -10.5 9))" +"POLYGON ((-10 9, -10 8.5, -10.5 8.5, -10.5 9, -10 9))" +"POLYGON ((-9.5 9, -9.5 8.5, -10 8.5, -10 9, -9.5 9))" +"POLYGON ((-9 9, -9 8.5, -9.5 8.5, -9.5 9, -9 9))" +"POLYGON ((-8.5 9, -8.5 8.5, -9 8.5, -9 9, -8.5 9))" +"POLYGON ((-8 9, -8 8.5, -8.5 8.5, -8.5 9, -8 9))" +"POLYGON ((-7.5 9, -7.5 8.5, -8 8.5, -8 9, -7.5 9))" +"POLYGON ((-7 9, -7 8.5, -7.5 8.5, -7.5 9, -7 9))" +"POLYGON ((-6.5 9, -6.5 8.5, -7 8.5, -7 9, -6.5 9))" +"POLYGON ((-6 9, -6 8.5, -6.5 8.5, -6.5 9, -6 9))" +"POLYGON ((-5.5 9, -5.5 8.5, -6 8.5, -6 9, -5.5 9))" +"POLYGON ((-5 9, -5 8.5, -5.5 8.5, -5.5 9, -5 9))" +"POLYGON ((-4.5 9, -4.5 8.5, -5 8.5, -5 9, -4.5 9))" +"POLYGON ((-4 9, -4 8.5, -4.5 8.5, -4.5 9, -4 9))" +"POLYGON ((-3.5 9, -3.5 8.5, -4 8.5, -4 9, -3.5 9))" +"POLYGON ((-3 9, -3 8.5, -3.5 8.5, -3.5 9, -3 9))" +"POLYGON ((-2.5 9, -2.5 8.5, -3 8.5, -3 9, -2.5 9))" +"POLYGON ((-2 9, -2 8.5, -2.5 8.5, -2.5 9, -2 9))" +"POLYGON ((-1.5 9, -1.5 8.5, -2 8.5, -2 9, -1.5 9))" +"POLYGON ((-1 9, -1 8.5, -1.5 8.5, -1.5 9, -1 9))" +"POLYGON ((-0.5 9, -0.5 8.5, -1 8.5, -1 9, -0.5 9))" +"POLYGON ((0 9, 0 8.5, -0.5 8.5, -0.5 9, 0 9))" +"POLYGON ((0.5 9, 0.5 8.5, 0 8.5, 0 9, 0.5 9))" +"POLYGON ((1 9, 1 8.5, 0.5 8.5, 0.5 9, 1 9))" +"POLYGON ((1.5 9, 1.5 8.5, 1 8.5, 1 9, 1.5 9))" +"POLYGON ((2 9, 2 8.5, 1.5 8.5, 1.5 9, 2 9))" +"POLYGON ((2.5 9, 2.5 8.5, 2 8.5, 2 9, 2.5 9))" +"POLYGON ((3 9, 3 8.5, 2.5 8.5, 2.5 9, 3 9))" +"POLYGON ((3.5 9, 3.5 8.5, 3 8.5, 3 9, 3.5 9))" +"POLYGON ((4 9, 4 8.5, 3.5 8.5, 3.5 9, 4 9))" +"POLYGON ((4.5 9, 4.5 8.5, 4 8.5, 4 9, 4.5 9))" +"POLYGON ((5 9, 5 8.5, 4.5 8.5, 4.5 9, 5 9))" +"POLYGON ((5.5 9, 5.5 8.5, 5 8.5, 5 9, 5.5 9))" +"POLYGON ((6 9, 6 8.5, 5.5 8.5, 5.5 9, 6 9))" +"POLYGON ((6.5 9, 6.5 8.5, 6 8.5, 6 9, 6.5 9))" +"POLYGON ((7 9, 7 8.5, 6.5 8.5, 6.5 9, 7 9))" +"POLYGON ((7.5 9, 7.5 8.5, 7 8.5, 7 9, 7.5 9))" +"POLYGON ((8 9, 8 8.5, 7.5 8.5, 7.5 9, 8 9))" +"POLYGON ((8.5 9, 8.5 8.5, 8 8.5, 8 9, 8.5 9))" +"POLYGON ((9 9, 9 8.5, 8.5 8.5, 8.5 9, 9 9))" +"POLYGON ((9.5 9, 9.5 8.5, 9 8.5, 9 9, 9.5 9))" +"POLYGON ((10 9, 10 8.5, 9.5 8.5, 9.5 9, 10 9))" +"POLYGON ((10.5 9, 10.5 8.5, 10 8.5, 10 9, 10.5 9))" +"POLYGON ((11 9, 11 8.5, 10.5 8.5, 10.5 9, 11 9))" +"POLYGON ((11.5 9, 11.5 8.5, 11 8.5, 11 9, 11.5 9))" +"POLYGON ((12 9, 12 8.5, 11.5 8.5, 11.5 9, 12 9))" +"POLYGON ((12.5 9, 12.5 8.5, 12 8.5, 12 9, 12.5 9))" +"POLYGON ((13 9, 13 8.5, 12.5 8.5, 12.5 9, 13 9))" +"POLYGON ((13.5 9, 13.5 8.5, 13 8.5, 13 9, 13.5 9))" +"POLYGON ((14 9, 14 8.5, 13.5 8.5, 13.5 9, 14 9))" +"POLYGON ((14.5 9, 14.5 8.5, 14 8.5, 14 9, 14.5 9))" +"POLYGON ((15 9, 15 8.5, 14.5 8.5, 14.5 9, 15 9))" +"POLYGON ((15.5 9, 15.5 8.5, 15 8.5, 15 9, 15.5 9))" +"POLYGON ((16 9, 16 8.5, 15.5 8.5, 15.5 9, 16 9))" +"POLYGON ((16.5 9, 16.5 8.5, 16 8.5, 16 9, 16.5 9))" +"POLYGON ((17 9, 17 8.5, 16.5 8.5, 16.5 9, 17 9))" +"POLYGON ((17.5 9, 17.5 8.5, 17 8.5, 17 9, 17.5 9))" +"POLYGON ((18 9, 18 8.5, 17.5 8.5, 17.5 9, 18 9))" +"POLYGON ((18.5 9, 18.5 8.5, 18 8.5, 18 9, 18.5 9))" +"POLYGON ((19 9, 19 8.5, 18.5 8.5, 18.5 9, 19 9))" +"POLYGON ((19.5 9, 19.5 8.5, 19 8.5, 19 9, 19.5 9))" +"POLYGON ((20 9, 20 8.5, 19.5 8.5, 19.5 9, 20 9))" +"POLYGON ((20.5 9, 20.5 8.5, 20 8.5, 20 9, 20.5 9))" +"POLYGON ((21 9, 21 8.5, 20.5 8.5, 20.5 9, 21 9))" +"POLYGON ((21.5 9, 21.5 8.5, 21 8.5, 21 9, 21.5 9))" +"POLYGON ((22 9, 22 8.5, 21.5 8.5, 21.5 9, 22 9))" +"POLYGON ((22.5 9, 22.5 8.5, 22 8.5, 22 9, 22.5 9))" +"POLYGON ((23 9, 23 8.5, 22.5 8.5, 22.5 9, 23 9))" +"POLYGON ((23.5 9, 23.5 8.5, 23 8.5, 23 9, 23.5 9))" +"POLYGON ((24 9, 24 8.5, 23.5 8.5, 23.5 9, 24 9))" +"POLYGON ((24.5 9, 24.5 8.5, 24 8.5, 24 9, 24.5 9))" +"POLYGON ((25 9, 25 8.5, 24.5 8.5, 24.5 9, 25 9))" +"POLYGON ((25.5 9, 25.5 8.5, 25 8.5, 25 9, 25.5 9))" +"POLYGON ((26 9, 26 8.5, 25.5 8.5, 25.5 9, 26 9))" +"POLYGON ((26.5 9, 26.5 8.5, 26 8.5, 26 9, 26.5 9))" +"POLYGON ((27 9, 27 8.5, 26.5 8.5, 26.5 9, 27 9))" +"POLYGON ((27.5 9, 27.5 8.5, 27 8.5, 27 9, 27.5 9))" +"POLYGON ((28 9, 28 8.5, 27.5 8.5, 27.5 9, 28 9))" +"POLYGON ((28.5 9, 28.5 8.5, 28 8.5, 28 9, 28.5 9))" +"POLYGON ((29 9, 29 8.5, 28.5 8.5, 28.5 9, 29 9))" +"POLYGON ((29.5 9, 29.5 8.5, 29 8.5, 29 9, 29.5 9))" +"POLYGON ((30 9, 30 8.5, 29.5 8.5, 29.5 9, 30 9))" +"POLYGON ((30.5 9, 30.5 8.5, 30 8.5, 30 9, 30.5 9))" +"POLYGON ((31 9, 31 8.5, 30.5 8.5, 30.5 9, 31 9))" +"POLYGON ((31.5 9, 31.5 8.5, 31 8.5, 31 9, 31.5 9))" +"POLYGON ((32 9, 32 8.5, 31.5 8.5, 31.5 9, 32 9))" +"POLYGON ((32.5 9, 32.5 8.5, 32 8.5, 32 9, 32.5 9))" +"POLYGON ((33 9, 33 8.5, 32.5 8.5, 32.5 9, 33 9))" +"POLYGON ((33.5 9, 33.5 8.5, 33 8.5, 33 9, 33.5 9))" +"POLYGON ((34 9, 34 8.5, 33.5 8.5, 33.5 9, 34 9))" +"POLYGON ((34.5 9, 34.5 8.5, 34 8.5, 34 9, 34.5 9))" +"POLYGON ((35 9, 35 8.5, 34.5 8.5, 34.5 9, 35 9))" +"POLYGON ((35.5 9, 35.5 8.5, 35 8.5, 35 9, 35.5 9))" +"POLYGON ((36 9, 36 8.5, 35.5 8.5, 35.5 9, 36 9))" +"POLYGON ((36.5 9, 36.5 8.5, 36 8.5, 36 9, 36.5 9))" +"POLYGON ((37 9, 37 8.5, 36.5 8.5, 36.5 9, 37 9))" +"POLYGON ((37.5 9, 37.5 8.5, 37 8.5, 37 9, 37.5 9))" +"POLYGON ((38 9, 38 8.5, 37.5 8.5, 37.5 9, 38 9))" +"POLYGON ((38.5 9, 38.5 8.5, 38 8.5, 38 9, 38.5 9))" +"POLYGON ((39 9, 39 8.5, 38.5 8.5, 38.5 9, 39 9))" +"POLYGON ((39.5 9, 39.5 8.5, 39 8.5, 39 9, 39.5 9))" +"POLYGON ((40 9, 40 8.5, 39.5 8.5, 39.5 9, 40 9))" +"POLYGON ((40.5 9, 40.5 8.5, 40 8.5, 40 9, 40.5 9))" +"POLYGON ((41 9, 41 8.5, 40.5 8.5, 40.5 9, 41 9))" +"POLYGON ((41.5 9, 41.5 8.5, 41 8.5, 41 9, 41.5 9))" +"POLYGON ((42 9, 42 8.5, 41.5 8.5, 41.5 9, 42 9))" +"POLYGON ((42.5 9, 42.5 8.5, 42 8.5, 42 9, 42.5 9))" +"POLYGON ((43 9, 43 8.5, 42.5 8.5, 42.5 9, 43 9))" +"POLYGON ((43.5 9, 43.5 8.5, 43 8.5, 43 9, 43.5 9))" +"POLYGON ((44 9, 44 8.5, 43.5 8.5, 43.5 9, 44 9))" +"POLYGON ((44.5 9, 44.5 8.5, 44 8.5, 44 9, 44.5 9))" +"POLYGON ((45 9, 45 8.5, 44.5 8.5, 44.5 9, 45 9))" +"POLYGON ((45.5 9, 45.5 8.5, 45 8.5, 45 9, 45.5 9))" +"POLYGON ((46 9, 46 8.5, 45.5 8.5, 45.5 9, 46 9))" +"POLYGON ((46.5 9, 46.5 8.5, 46 8.5, 46 9, 46.5 9))" +"POLYGON ((47 9, 47 8.5, 46.5 8.5, 46.5 9, 47 9))" +"POLYGON ((47.5 9, 47.5 8.5, 47 8.5, 47 9, 47.5 9))" +"POLYGON ((48 9, 48 8.5, 47.5 8.5, 47.5 9, 48 9))" +"POLYGON ((48.5 9, 48.5 8.5, 48 8.5, 48 9, 48.5 9))" +"POLYGON ((49 9, 49 8.5, 48.5 8.5, 48.5 9, 49 9))" +"POLYGON ((49.5 9, 49.5 8.5, 49 8.5, 49 9, 49.5 9))" +"POLYGON ((50 9, 50 8.5, 49.5 8.5, 49.5 9, 50 9))" +"POLYGON ((50.5 9, 50.5 8.5, 50 8.5, 50 9, 50.5 9))" +"POLYGON ((-13 9.5, -13 9, -13.5 9, -13.5 9.5, -13 9.5))" +"POLYGON ((-12.5 9.5, -12.5 9, -13 9, -13 9.5, -12.5 9.5))" +"POLYGON ((-12 9.5, -12 9, -12.5 9, -12.5 9.5, -12 9.5))" +"POLYGON ((-11.5 9.5, -11.5 9, -12 9, -12 9.5, -11.5 9.5))" +"POLYGON ((-11 9.5, -11 9, -11.5 9, -11.5 9.5, -11 9.5))" +"POLYGON ((-10.5 9.5, -10.5 9, -11 9, -11 9.5, -10.5 9.5))" +"POLYGON ((-10 9.5, -10 9, -10.5 9, -10.5 9.5, -10 9.5))" +"POLYGON ((-9.5 9.5, -9.5 9, -10 9, -10 9.5, -9.5 9.5))" +"POLYGON ((-9 9.5, -9 9, -9.5 9, -9.5 9.5, -9 9.5))" +"POLYGON ((-8.5 9.5, -8.5 9, -9 9, -9 9.5, -8.5 9.5))" +"POLYGON ((-8 9.5, -8 9, -8.5 9, -8.5 9.5, -8 9.5))" +"POLYGON ((-7.5 9.5, -7.5 9, -8 9, -8 9.5, -7.5 9.5))" +"POLYGON ((-7 9.5, -7 9, -7.5 9, -7.5 9.5, -7 9.5))" +"POLYGON ((-6.5 9.5, -6.5 9, -7 9, -7 9.5, -6.5 9.5))" +"POLYGON ((-6 9.5, -6 9, -6.5 9, -6.5 9.5, -6 9.5))" +"POLYGON ((-5.5 9.5, -5.5 9, -6 9, -6 9.5, -5.5 9.5))" +"POLYGON ((-5 9.5, -5 9, -5.5 9, -5.5 9.5, -5 9.5))" +"POLYGON ((-4.5 9.5, -4.5 9, -5 9, -5 9.5, -4.5 9.5))" +"POLYGON ((-4 9.5, -4 9, -4.5 9, -4.5 9.5, -4 9.5))" +"POLYGON ((-3.5 9.5, -3.5 9, -4 9, -4 9.5, -3.5 9.5))" +"POLYGON ((-3 9.5, -3 9, -3.5 9, -3.5 9.5, -3 9.5))" +"POLYGON ((-2.5 9.5, -2.5 9, -3 9, -3 9.5, -2.5 9.5))" +"POLYGON ((-2 9.5, -2 9, -2.5 9, -2.5 9.5, -2 9.5))" +"POLYGON ((-1.5 9.5, -1.5 9, -2 9, -2 9.5, -1.5 9.5))" +"POLYGON ((-1 9.5, -1 9, -1.5 9, -1.5 9.5, -1 9.5))" +"POLYGON ((-0.5 9.5, -0.5 9, -1 9, -1 9.5, -0.5 9.5))" +"POLYGON ((0 9.5, 0 9, -0.5 9, -0.5 9.5, 0 9.5))" +"POLYGON ((0.5 9.5, 0.5 9, 0 9, 0 9.5, 0.5 9.5))" +"POLYGON ((1 9.5, 1 9, 0.5 9, 0.5 9.5, 1 9.5))" +"POLYGON ((1.5 9.5, 1.5 9, 1 9, 1 9.5, 1.5 9.5))" +"POLYGON ((2 9.5, 2 9, 1.5 9, 1.5 9.5, 2 9.5))" +"POLYGON ((2.5 9.5, 2.5 9, 2 9, 2 9.5, 2.5 9.5))" +"POLYGON ((3 9.5, 3 9, 2.5 9, 2.5 9.5, 3 9.5))" +"POLYGON ((3.5 9.5, 3.5 9, 3 9, 3 9.5, 3.5 9.5))" +"POLYGON ((4 9.5, 4 9, 3.5 9, 3.5 9.5, 4 9.5))" +"POLYGON ((4.5 9.5, 4.5 9, 4 9, 4 9.5, 4.5 9.5))" +"POLYGON ((5 9.5, 5 9, 4.5 9, 4.5 9.5, 5 9.5))" +"POLYGON ((5.5 9.5, 5.5 9, 5 9, 5 9.5, 5.5 9.5))" +"POLYGON ((6 9.5, 6 9, 5.5 9, 5.5 9.5, 6 9.5))" +"POLYGON ((6.5 9.5, 6.5 9, 6 9, 6 9.5, 6.5 9.5))" +"POLYGON ((7 9.5, 7 9, 6.5 9, 6.5 9.5, 7 9.5))" +"POLYGON ((7.5 9.5, 7.5 9, 7 9, 7 9.5, 7.5 9.5))" +"POLYGON ((8 9.5, 8 9, 7.5 9, 7.5 9.5, 8 9.5))" +"POLYGON ((8.5 9.5, 8.5 9, 8 9, 8 9.5, 8.5 9.5))" +"POLYGON ((9 9.5, 9 9, 8.5 9, 8.5 9.5, 9 9.5))" +"POLYGON ((9.5 9.5, 9.5 9, 9 9, 9 9.5, 9.5 9.5))" +"POLYGON ((10 9.5, 10 9, 9.5 9, 9.5 9.5, 10 9.5))" +"POLYGON ((10.5 9.5, 10.5 9, 10 9, 10 9.5, 10.5 9.5))" +"POLYGON ((11 9.5, 11 9, 10.5 9, 10.5 9.5, 11 9.5))" +"POLYGON ((11.5 9.5, 11.5 9, 11 9, 11 9.5, 11.5 9.5))" +"POLYGON ((12 9.5, 12 9, 11.5 9, 11.5 9.5, 12 9.5))" +"POLYGON ((12.5 9.5, 12.5 9, 12 9, 12 9.5, 12.5 9.5))" +"POLYGON ((13 9.5, 13 9, 12.5 9, 12.5 9.5, 13 9.5))" +"POLYGON ((13.5 9.5, 13.5 9, 13 9, 13 9.5, 13.5 9.5))" +"POLYGON ((14 9.5, 14 9, 13.5 9, 13.5 9.5, 14 9.5))" +"POLYGON ((14.5 9.5, 14.5 9, 14 9, 14 9.5, 14.5 9.5))" +"POLYGON ((15 9.5, 15 9, 14.5 9, 14.5 9.5, 15 9.5))" +"POLYGON ((15.5 9.5, 15.5 9, 15 9, 15 9.5, 15.5 9.5))" +"POLYGON ((16 9.5, 16 9, 15.5 9, 15.5 9.5, 16 9.5))" +"POLYGON ((16.5 9.5, 16.5 9, 16 9, 16 9.5, 16.5 9.5))" +"POLYGON ((17 9.5, 17 9, 16.5 9, 16.5 9.5, 17 9.5))" +"POLYGON ((17.5 9.5, 17.5 9, 17 9, 17 9.5, 17.5 9.5))" +"POLYGON ((18 9.5, 18 9, 17.5 9, 17.5 9.5, 18 9.5))" +"POLYGON ((18.5 9.5, 18.5 9, 18 9, 18 9.5, 18.5 9.5))" +"POLYGON ((19 9.5, 19 9, 18.5 9, 18.5 9.5, 19 9.5))" +"POLYGON ((19.5 9.5, 19.5 9, 19 9, 19 9.5, 19.5 9.5))" +"POLYGON ((20 9.5, 20 9, 19.5 9, 19.5 9.5, 20 9.5))" +"POLYGON ((20.5 9.5, 20.5 9, 20 9, 20 9.5, 20.5 9.5))" +"POLYGON ((21 9.5, 21 9, 20.5 9, 20.5 9.5, 21 9.5))" +"POLYGON ((21.5 9.5, 21.5 9, 21 9, 21 9.5, 21.5 9.5))" +"POLYGON ((22 9.5, 22 9, 21.5 9, 21.5 9.5, 22 9.5))" +"POLYGON ((22.5 9.5, 22.5 9, 22 9, 22 9.5, 22.5 9.5))" +"POLYGON ((23 9.5, 23 9, 22.5 9, 22.5 9.5, 23 9.5))" +"POLYGON ((23.5 9.5, 23.5 9, 23 9, 23 9.5, 23.5 9.5))" +"POLYGON ((24 9.5, 24 9, 23.5 9, 23.5 9.5, 24 9.5))" +"POLYGON ((24.5 9.5, 24.5 9, 24 9, 24 9.5, 24.5 9.5))" +"POLYGON ((25 9.5, 25 9, 24.5 9, 24.5 9.5, 25 9.5))" +"POLYGON ((25.5 9.5, 25.5 9, 25 9, 25 9.5, 25.5 9.5))" +"POLYGON ((26 9.5, 26 9, 25.5 9, 25.5 9.5, 26 9.5))" +"POLYGON ((26.5 9.5, 26.5 9, 26 9, 26 9.5, 26.5 9.5))" +"POLYGON ((27 9.5, 27 9, 26.5 9, 26.5 9.5, 27 9.5))" +"POLYGON ((27.5 9.5, 27.5 9, 27 9, 27 9.5, 27.5 9.5))" +"POLYGON ((28 9.5, 28 9, 27.5 9, 27.5 9.5, 28 9.5))" +"POLYGON ((28.5 9.5, 28.5 9, 28 9, 28 9.5, 28.5 9.5))" +"POLYGON ((29 9.5, 29 9, 28.5 9, 28.5 9.5, 29 9.5))" +"POLYGON ((29.5 9.5, 29.5 9, 29 9, 29 9.5, 29.5 9.5))" +"POLYGON ((30 9.5, 30 9, 29.5 9, 29.5 9.5, 30 9.5))" +"POLYGON ((30.5 9.5, 30.5 9, 30 9, 30 9.5, 30.5 9.5))" +"POLYGON ((31 9.5, 31 9, 30.5 9, 30.5 9.5, 31 9.5))" +"POLYGON ((31.5 9.5, 31.5 9, 31 9, 31 9.5, 31.5 9.5))" +"POLYGON ((32 9.5, 32 9, 31.5 9, 31.5 9.5, 32 9.5))" +"POLYGON ((32.5 9.5, 32.5 9, 32 9, 32 9.5, 32.5 9.5))" +"POLYGON ((33 9.5, 33 9, 32.5 9, 32.5 9.5, 33 9.5))" +"POLYGON ((33.5 9.5, 33.5 9, 33 9, 33 9.5, 33.5 9.5))" +"POLYGON ((34 9.5, 34 9, 33.5 9, 33.5 9.5, 34 9.5))" +"POLYGON ((34.5 9.5, 34.5 9, 34 9, 34 9.5, 34.5 9.5))" +"POLYGON ((35 9.5, 35 9, 34.5 9, 34.5 9.5, 35 9.5))" +"POLYGON ((35.5 9.5, 35.5 9, 35 9, 35 9.5, 35.5 9.5))" +"POLYGON ((36 9.5, 36 9, 35.5 9, 35.5 9.5, 36 9.5))" +"POLYGON ((36.5 9.5, 36.5 9, 36 9, 36 9.5, 36.5 9.5))" +"POLYGON ((37 9.5, 37 9, 36.5 9, 36.5 9.5, 37 9.5))" +"POLYGON ((37.5 9.5, 37.5 9, 37 9, 37 9.5, 37.5 9.5))" +"POLYGON ((38 9.5, 38 9, 37.5 9, 37.5 9.5, 38 9.5))" +"POLYGON ((38.5 9.5, 38.5 9, 38 9, 38 9.5, 38.5 9.5))" +"POLYGON ((39 9.5, 39 9, 38.5 9, 38.5 9.5, 39 9.5))" +"POLYGON ((39.5 9.5, 39.5 9, 39 9, 39 9.5, 39.5 9.5))" +"POLYGON ((40 9.5, 40 9, 39.5 9, 39.5 9.5, 40 9.5))" +"POLYGON ((40.5 9.5, 40.5 9, 40 9, 40 9.5, 40.5 9.5))" +"POLYGON ((41 9.5, 41 9, 40.5 9, 40.5 9.5, 41 9.5))" +"POLYGON ((41.5 9.5, 41.5 9, 41 9, 41 9.5, 41.5 9.5))" +"POLYGON ((42 9.5, 42 9, 41.5 9, 41.5 9.5, 42 9.5))" +"POLYGON ((42.5 9.5, 42.5 9, 42 9, 42 9.5, 42.5 9.5))" +"POLYGON ((43 9.5, 43 9, 42.5 9, 42.5 9.5, 43 9.5))" +"POLYGON ((43.5 9.5, 43.5 9, 43 9, 43 9.5, 43.5 9.5))" +"POLYGON ((44 9.5, 44 9, 43.5 9, 43.5 9.5, 44 9.5))" +"POLYGON ((44.5 9.5, 44.5 9, 44 9, 44 9.5, 44.5 9.5))" +"POLYGON ((45 9.5, 45 9, 44.5 9, 44.5 9.5, 45 9.5))" +"POLYGON ((45.5 9.5, 45.5 9, 45 9, 45 9.5, 45.5 9.5))" +"POLYGON ((46 9.5, 46 9, 45.5 9, 45.5 9.5, 46 9.5))" +"POLYGON ((46.5 9.5, 46.5 9, 46 9, 46 9.5, 46.5 9.5))" +"POLYGON ((47 9.5, 47 9, 46.5 9, 46.5 9.5, 47 9.5))" +"POLYGON ((47.5 9.5, 47.5 9, 47 9, 47 9.5, 47.5 9.5))" +"POLYGON ((48 9.5, 48 9, 47.5 9, 47.5 9.5, 48 9.5))" +"POLYGON ((48.5 9.5, 48.5 9, 48 9, 48 9.5, 48.5 9.5))" +"POLYGON ((49 9.5, 49 9, 48.5 9, 48.5 9.5, 49 9.5))" +"POLYGON ((49.5 9.5, 49.5 9, 49 9, 49 9.5, 49.5 9.5))" +"POLYGON ((50 9.5, 50 9, 49.5 9, 49.5 9.5, 50 9.5))" +"POLYGON ((50.5 9.5, 50.5 9, 50 9, 50 9.5, 50.5 9.5))" +"POLYGON ((-13 10, -13 9.5, -13.5 9.5, -13.5 10, -13 10))" +"POLYGON ((-12.5 10, -12.5 9.5, -13 9.5, -13 10, -12.5 10))" +"POLYGON ((-12 10, -12 9.5, -12.5 9.5, -12.5 10, -12 10))" +"POLYGON ((-11.5 10, -11.5 9.5, -12 9.5, -12 10, -11.5 10))" +"POLYGON ((-11 10, -11 9.5, -11.5 9.5, -11.5 10, -11 10))" +"POLYGON ((-10.5 10, -10.5 9.5, -11 9.5, -11 10, -10.5 10))" +"POLYGON ((-10 10, -10 9.5, -10.5 9.5, -10.5 10, -10 10))" +"POLYGON ((-9.5 10, -9.5 9.5, -10 9.5, -10 10, -9.5 10))" +"POLYGON ((-9 10, -9 9.5, -9.5 9.5, -9.5 10, -9 10))" +"POLYGON ((-8.5 10, -8.5 9.5, -9 9.5, -9 10, -8.5 10))" +"POLYGON ((-8 10, -8 9.5, -8.5 9.5, -8.5 10, -8 10))" +"POLYGON ((-7.5 10, -7.5 9.5, -8 9.5, -8 10, -7.5 10))" +"POLYGON ((-7 10, -7 9.5, -7.5 9.5, -7.5 10, -7 10))" +"POLYGON ((-6.5 10, -6.5 9.5, -7 9.5, -7 10, -6.5 10))" +"POLYGON ((-6 10, -6 9.5, -6.5 9.5, -6.5 10, -6 10))" +"POLYGON ((-5.5 10, -5.5 9.5, -6 9.5, -6 10, -5.5 10))" +"POLYGON ((-5 10, -5 9.5, -5.5 9.5, -5.5 10, -5 10))" +"POLYGON ((-4.5 10, -4.5 9.5, -5 9.5, -5 10, -4.5 10))" +"POLYGON ((-4 10, -4 9.5, -4.5 9.5, -4.5 10, -4 10))" +"POLYGON ((-3.5 10, -3.5 9.5, -4 9.5, -4 10, -3.5 10))" +"POLYGON ((-3 10, -3 9.5, -3.5 9.5, -3.5 10, -3 10))" +"POLYGON ((-2.5 10, -2.5 9.5, -3 9.5, -3 10, -2.5 10))" +"POLYGON ((-2 10, -2 9.5, -2.5 9.5, -2.5 10, -2 10))" +"POLYGON ((-1.5 10, -1.5 9.5, -2 9.5, -2 10, -1.5 10))" +"POLYGON ((-1 10, -1 9.5, -1.5 9.5, -1.5 10, -1 10))" +"POLYGON ((-0.5 10, -0.5 9.5, -1 9.5, -1 10, -0.5 10))" +"POLYGON ((0 10, 0 9.5, -0.5 9.5, -0.5 10, 0 10))" +"POLYGON ((0.5 10, 0.5 9.5, 0 9.5, 0 10, 0.5 10))" +"POLYGON ((1 10, 1 9.5, 0.5 9.5, 0.5 10, 1 10))" +"POLYGON ((1.5 10, 1.5 9.5, 1 9.5, 1 10, 1.5 10))" +"POLYGON ((2 10, 2 9.5, 1.5 9.5, 1.5 10, 2 10))" +"POLYGON ((2.5 10, 2.5 9.5, 2 9.5, 2 10, 2.5 10))" +"POLYGON ((3 10, 3 9.5, 2.5 9.5, 2.5 10, 3 10))" +"POLYGON ((3.5 10, 3.5 9.5, 3 9.5, 3 10, 3.5 10))" +"POLYGON ((4 10, 4 9.5, 3.5 9.5, 3.5 10, 4 10))" +"POLYGON ((4.5 10, 4.5 9.5, 4 9.5, 4 10, 4.5 10))" +"POLYGON ((5 10, 5 9.5, 4.5 9.5, 4.5 10, 5 10))" +"POLYGON ((5.5 10, 5.5 9.5, 5 9.5, 5 10, 5.5 10))" +"POLYGON ((6 10, 6 9.5, 5.5 9.5, 5.5 10, 6 10))" +"POLYGON ((6.5 10, 6.5 9.5, 6 9.5, 6 10, 6.5 10))" +"POLYGON ((7 10, 7 9.5, 6.5 9.5, 6.5 10, 7 10))" +"POLYGON ((7.5 10, 7.5 9.5, 7 9.5, 7 10, 7.5 10))" +"POLYGON ((8 10, 8 9.5, 7.5 9.5, 7.5 10, 8 10))" +"POLYGON ((8.5 10, 8.5 9.5, 8 9.5, 8 10, 8.5 10))" +"POLYGON ((9 10, 9 9.5, 8.5 9.5, 8.5 10, 9 10))" +"POLYGON ((9.5 10, 9.5 9.5, 9 9.5, 9 10, 9.5 10))" +"POLYGON ((10 10, 10 9.5, 9.5 9.5, 9.5 10, 10 10))" +"POLYGON ((10.5 10, 10.5 9.5, 10 9.5, 10 10, 10.5 10))" +"POLYGON ((11 10, 11 9.5, 10.5 9.5, 10.5 10, 11 10))" +"POLYGON ((11.5 10, 11.5 9.5, 11 9.5, 11 10, 11.5 10))" +"POLYGON ((12 10, 12 9.5, 11.5 9.5, 11.5 10, 12 10))" +"POLYGON ((12.5 10, 12.5 9.5, 12 9.5, 12 10, 12.5 10))" +"POLYGON ((13 10, 13 9.5, 12.5 9.5, 12.5 10, 13 10))" +"POLYGON ((13.5 10, 13.5 9.5, 13 9.5, 13 10, 13.5 10))" +"POLYGON ((14 10, 14 9.5, 13.5 9.5, 13.5 10, 14 10))" +"POLYGON ((14.5 10, 14.5 9.5, 14 9.5, 14 10, 14.5 10))" +"POLYGON ((15 10, 15 9.5, 14.5 9.5, 14.5 10, 15 10))" +"POLYGON ((15.5 10, 15.5 9.5, 15 9.5, 15 10, 15.5 10))" +"POLYGON ((16 10, 16 9.5, 15.5 9.5, 15.5 10, 16 10))" +"POLYGON ((16.5 10, 16.5 9.5, 16 9.5, 16 10, 16.5 10))" +"POLYGON ((17 10, 17 9.5, 16.5 9.5, 16.5 10, 17 10))" +"POLYGON ((17.5 10, 17.5 9.5, 17 9.5, 17 10, 17.5 10))" +"POLYGON ((18 10, 18 9.5, 17.5 9.5, 17.5 10, 18 10))" +"POLYGON ((18.5 10, 18.5 9.5, 18 9.5, 18 10, 18.5 10))" +"POLYGON ((19 10, 19 9.5, 18.5 9.5, 18.5 10, 19 10))" +"POLYGON ((19.5 10, 19.5 9.5, 19 9.5, 19 10, 19.5 10))" +"POLYGON ((20 10, 20 9.5, 19.5 9.5, 19.5 10, 20 10))" +"POLYGON ((20.5 10, 20.5 9.5, 20 9.5, 20 10, 20.5 10))" +"POLYGON ((21 10, 21 9.5, 20.5 9.5, 20.5 10, 21 10))" +"POLYGON ((21.5 10, 21.5 9.5, 21 9.5, 21 10, 21.5 10))" +"POLYGON ((22 10, 22 9.5, 21.5 9.5, 21.5 10, 22 10))" +"POLYGON ((22.5 10, 22.5 9.5, 22 9.5, 22 10, 22.5 10))" +"POLYGON ((23 10, 23 9.5, 22.5 9.5, 22.5 10, 23 10))" +"POLYGON ((23.5 10, 23.5 9.5, 23 9.5, 23 10, 23.5 10))" +"POLYGON ((24 10, 24 9.5, 23.5 9.5, 23.5 10, 24 10))" +"POLYGON ((24.5 10, 24.5 9.5, 24 9.5, 24 10, 24.5 10))" +"POLYGON ((25 10, 25 9.5, 24.5 9.5, 24.5 10, 25 10))" +"POLYGON ((25.5 10, 25.5 9.5, 25 9.5, 25 10, 25.5 10))" +"POLYGON ((26 10, 26 9.5, 25.5 9.5, 25.5 10, 26 10))" +"POLYGON ((26.5 10, 26.5 9.5, 26 9.5, 26 10, 26.5 10))" +"POLYGON ((27 10, 27 9.5, 26.5 9.5, 26.5 10, 27 10))" +"POLYGON ((27.5 10, 27.5 9.5, 27 9.5, 27 10, 27.5 10))" +"POLYGON ((28 10, 28 9.5, 27.5 9.5, 27.5 10, 28 10))" +"POLYGON ((28.5 10, 28.5 9.5, 28 9.5, 28 10, 28.5 10))" +"POLYGON ((29 10, 29 9.5, 28.5 9.5, 28.5 10, 29 10))" +"POLYGON ((29.5 10, 29.5 9.5, 29 9.5, 29 10, 29.5 10))" +"POLYGON ((30 10, 30 9.5, 29.5 9.5, 29.5 10, 30 10))" +"POLYGON ((30.5 10, 30.5 9.5, 30 9.5, 30 10, 30.5 10))" +"POLYGON ((31 10, 31 9.5, 30.5 9.5, 30.5 10, 31 10))" +"POLYGON ((31.5 10, 31.5 9.5, 31 9.5, 31 10, 31.5 10))" +"POLYGON ((32 10, 32 9.5, 31.5 9.5, 31.5 10, 32 10))" +"POLYGON ((32.5 10, 32.5 9.5, 32 9.5, 32 10, 32.5 10))" +"POLYGON ((33 10, 33 9.5, 32.5 9.5, 32.5 10, 33 10))" +"POLYGON ((33.5 10, 33.5 9.5, 33 9.5, 33 10, 33.5 10))" +"POLYGON ((34 10, 34 9.5, 33.5 9.5, 33.5 10, 34 10))" +"POLYGON ((34.5 10, 34.5 9.5, 34 9.5, 34 10, 34.5 10))" +"POLYGON ((35 10, 35 9.5, 34.5 9.5, 34.5 10, 35 10))" +"POLYGON ((35.5 10, 35.5 9.5, 35 9.5, 35 10, 35.5 10))" +"POLYGON ((36 10, 36 9.5, 35.5 9.5, 35.5 10, 36 10))" +"POLYGON ((36.5 10, 36.5 9.5, 36 9.5, 36 10, 36.5 10))" +"POLYGON ((37 10, 37 9.5, 36.5 9.5, 36.5 10, 37 10))" +"POLYGON ((37.5 10, 37.5 9.5, 37 9.5, 37 10, 37.5 10))" +"POLYGON ((38 10, 38 9.5, 37.5 9.5, 37.5 10, 38 10))" +"POLYGON ((38.5 10, 38.5 9.5, 38 9.5, 38 10, 38.5 10))" +"POLYGON ((39 10, 39 9.5, 38.5 9.5, 38.5 10, 39 10))" +"POLYGON ((39.5 10, 39.5 9.5, 39 9.5, 39 10, 39.5 10))" +"POLYGON ((40 10, 40 9.5, 39.5 9.5, 39.5 10, 40 10))" +"POLYGON ((40.5 10, 40.5 9.5, 40 9.5, 40 10, 40.5 10))" +"POLYGON ((41 10, 41 9.5, 40.5 9.5, 40.5 10, 41 10))" +"POLYGON ((41.5 10, 41.5 9.5, 41 9.5, 41 10, 41.5 10))" +"POLYGON ((42 10, 42 9.5, 41.5 9.5, 41.5 10, 42 10))" +"POLYGON ((42.5 10, 42.5 9.5, 42 9.5, 42 10, 42.5 10))" +"POLYGON ((43 10, 43 9.5, 42.5 9.5, 42.5 10, 43 10))" +"POLYGON ((43.5 10, 43.5 9.5, 43 9.5, 43 10, 43.5 10))" +"POLYGON ((44 10, 44 9.5, 43.5 9.5, 43.5 10, 44 10))" +"POLYGON ((44.5 10, 44.5 9.5, 44 9.5, 44 10, 44.5 10))" +"POLYGON ((45 10, 45 9.5, 44.5 9.5, 44.5 10, 45 10))" +"POLYGON ((45.5 10, 45.5 9.5, 45 9.5, 45 10, 45.5 10))" +"POLYGON ((46 10, 46 9.5, 45.5 9.5, 45.5 10, 46 10))" +"POLYGON ((46.5 10, 46.5 9.5, 46 9.5, 46 10, 46.5 10))" +"POLYGON ((47 10, 47 9.5, 46.5 9.5, 46.5 10, 47 10))" +"POLYGON ((47.5 10, 47.5 9.5, 47 9.5, 47 10, 47.5 10))" +"POLYGON ((48 10, 48 9.5, 47.5 9.5, 47.5 10, 48 10))" +"POLYGON ((48.5 10, 48.5 9.5, 48 9.5, 48 10, 48.5 10))" +"POLYGON ((49 10, 49 9.5, 48.5 9.5, 48.5 10, 49 10))" +"POLYGON ((49.5 10, 49.5 9.5, 49 9.5, 49 10, 49.5 10))" +"POLYGON ((50 10, 50 9.5, 49.5 9.5, 49.5 10, 50 10))" +"POLYGON ((50.5 10, 50.5 9.5, 50 9.5, 50 10, 50.5 10))" +"POLYGON ((51 10, 51 9.5, 50.5 9.5, 50.5 10, 51 10))" +"POLYGON ((-14 10.5, -14 10, -14.5 10, -14.5 10.5, -14 10.5))" +"POLYGON ((-13.5 10.5, -13.5 10, -14 10, -14 10.5, -13.5 10.5))" +"POLYGON ((-13 10.5, -13 10, -13.5 10, -13.5 10.5, -13 10.5))" +"POLYGON ((-12.5 10.5, -12.5 10, -13 10, -13 10.5, -12.5 10.5))" +"POLYGON ((-12 10.5, -12 10, -12.5 10, -12.5 10.5, -12 10.5))" +"POLYGON ((-11.5 10.5, -11.5 10, -12 10, -12 10.5, -11.5 10.5))" +"POLYGON ((-11 10.5, -11 10, -11.5 10, -11.5 10.5, -11 10.5))" +"POLYGON ((-10.5 10.5, -10.5 10, -11 10, -11 10.5, -10.5 10.5))" +"POLYGON ((-10 10.5, -10 10, -10.5 10, -10.5 10.5, -10 10.5))" +"POLYGON ((-9.5 10.5, -9.5 10, -10 10, -10 10.5, -9.5 10.5))" +"POLYGON ((-9 10.5, -9 10, -9.5 10, -9.5 10.5, -9 10.5))" +"POLYGON ((-8.5 10.5, -8.5 10, -9 10, -9 10.5, -8.5 10.5))" +"POLYGON ((-8 10.5, -8 10, -8.5 10, -8.5 10.5, -8 10.5))" +"POLYGON ((-7.5 10.5, -7.5 10, -8 10, -8 10.5, -7.5 10.5))" +"POLYGON ((-7 10.5, -7 10, -7.5 10, -7.5 10.5, -7 10.5))" +"POLYGON ((-6.5 10.5, -6.5 10, -7 10, -7 10.5, -6.5 10.5))" +"POLYGON ((-6 10.5, -6 10, -6.5 10, -6.5 10.5, -6 10.5))" +"POLYGON ((-5.5 10.5, -5.5 10, -6 10, -6 10.5, -5.5 10.5))" +"POLYGON ((-5 10.5, -5 10, -5.5 10, -5.5 10.5, -5 10.5))" +"POLYGON ((-4.5 10.5, -4.5 10, -5 10, -5 10.5, -4.5 10.5))" +"POLYGON ((-4 10.5, -4 10, -4.5 10, -4.5 10.5, -4 10.5))" +"POLYGON ((-3.5 10.5, -3.5 10, -4 10, -4 10.5, -3.5 10.5))" +"POLYGON ((-3 10.5, -3 10, -3.5 10, -3.5 10.5, -3 10.5))" +"POLYGON ((-2.5 10.5, -2.5 10, -3 10, -3 10.5, -2.5 10.5))" +"POLYGON ((-2 10.5, -2 10, -2.5 10, -2.5 10.5, -2 10.5))" +"POLYGON ((-1.5 10.5, -1.5 10, -2 10, -2 10.5, -1.5 10.5))" +"POLYGON ((-1 10.5, -1 10, -1.5 10, -1.5 10.5, -1 10.5))" +"POLYGON ((-0.5 10.5, -0.5 10, -1 10, -1 10.5, -0.5 10.5))" +"POLYGON ((0 10.5, 0 10, -0.5 10, -0.5 10.5, 0 10.5))" +"POLYGON ((0.5 10.5, 0.5 10, 0 10, 0 10.5, 0.5 10.5))" +"POLYGON ((1 10.5, 1 10, 0.5 10, 0.5 10.5, 1 10.5))" +"POLYGON ((1.5 10.5, 1.5 10, 1 10, 1 10.5, 1.5 10.5))" +"POLYGON ((2 10.5, 2 10, 1.5 10, 1.5 10.5, 2 10.5))" +"POLYGON ((2.5 10.5, 2.5 10, 2 10, 2 10.5, 2.5 10.5))" +"POLYGON ((3 10.5, 3 10, 2.5 10, 2.5 10.5, 3 10.5))" +"POLYGON ((3.5 10.5, 3.5 10, 3 10, 3 10.5, 3.5 10.5))" +"POLYGON ((4 10.5, 4 10, 3.5 10, 3.5 10.5, 4 10.5))" +"POLYGON ((4.5 10.5, 4.5 10, 4 10, 4 10.5, 4.5 10.5))" +"POLYGON ((5 10.5, 5 10, 4.5 10, 4.5 10.5, 5 10.5))" +"POLYGON ((5.5 10.5, 5.5 10, 5 10, 5 10.5, 5.5 10.5))" +"POLYGON ((6 10.5, 6 10, 5.5 10, 5.5 10.5, 6 10.5))" +"POLYGON ((6.5 10.5, 6.5 10, 6 10, 6 10.5, 6.5 10.5))" +"POLYGON ((7 10.5, 7 10, 6.5 10, 6.5 10.5, 7 10.5))" +"POLYGON ((7.5 10.5, 7.5 10, 7 10, 7 10.5, 7.5 10.5))" +"POLYGON ((8 10.5, 8 10, 7.5 10, 7.5 10.5, 8 10.5))" +"POLYGON ((8.5 10.5, 8.5 10, 8 10, 8 10.5, 8.5 10.5))" +"POLYGON ((9 10.5, 9 10, 8.5 10, 8.5 10.5, 9 10.5))" +"POLYGON ((9.5 10.5, 9.5 10, 9 10, 9 10.5, 9.5 10.5))" +"POLYGON ((10 10.5, 10 10, 9.5 10, 9.5 10.5, 10 10.5))" +"POLYGON ((10.5 10.5, 10.5 10, 10 10, 10 10.5, 10.5 10.5))" +"POLYGON ((11 10.5, 11 10, 10.5 10, 10.5 10.5, 11 10.5))" +"POLYGON ((11.5 10.5, 11.5 10, 11 10, 11 10.5, 11.5 10.5))" +"POLYGON ((12 10.5, 12 10, 11.5 10, 11.5 10.5, 12 10.5))" +"POLYGON ((12.5 10.5, 12.5 10, 12 10, 12 10.5, 12.5 10.5))" +"POLYGON ((13 10.5, 13 10, 12.5 10, 12.5 10.5, 13 10.5))" +"POLYGON ((13.5 10.5, 13.5 10, 13 10, 13 10.5, 13.5 10.5))" +"POLYGON ((14 10.5, 14 10, 13.5 10, 13.5 10.5, 14 10.5))" +"POLYGON ((14.5 10.5, 14.5 10, 14 10, 14 10.5, 14.5 10.5))" +"POLYGON ((15 10.5, 15 10, 14.5 10, 14.5 10.5, 15 10.5))" +"POLYGON ((15.5 10.5, 15.5 10, 15 10, 15 10.5, 15.5 10.5))" +"POLYGON ((16 10.5, 16 10, 15.5 10, 15.5 10.5, 16 10.5))" +"POLYGON ((16.5 10.5, 16.5 10, 16 10, 16 10.5, 16.5 10.5))" +"POLYGON ((17 10.5, 17 10, 16.5 10, 16.5 10.5, 17 10.5))" +"POLYGON ((17.5 10.5, 17.5 10, 17 10, 17 10.5, 17.5 10.5))" +"POLYGON ((18 10.5, 18 10, 17.5 10, 17.5 10.5, 18 10.5))" +"POLYGON ((18.5 10.5, 18.5 10, 18 10, 18 10.5, 18.5 10.5))" +"POLYGON ((19 10.5, 19 10, 18.5 10, 18.5 10.5, 19 10.5))" +"POLYGON ((19.5 10.5, 19.5 10, 19 10, 19 10.5, 19.5 10.5))" +"POLYGON ((20 10.5, 20 10, 19.5 10, 19.5 10.5, 20 10.5))" +"POLYGON ((20.5 10.5, 20.5 10, 20 10, 20 10.5, 20.5 10.5))" +"POLYGON ((21 10.5, 21 10, 20.5 10, 20.5 10.5, 21 10.5))" +"POLYGON ((21.5 10.5, 21.5 10, 21 10, 21 10.5, 21.5 10.5))" +"POLYGON ((22 10.5, 22 10, 21.5 10, 21.5 10.5, 22 10.5))" +"POLYGON ((22.5 10.5, 22.5 10, 22 10, 22 10.5, 22.5 10.5))" +"POLYGON ((23 10.5, 23 10, 22.5 10, 22.5 10.5, 23 10.5))" +"POLYGON ((23.5 10.5, 23.5 10, 23 10, 23 10.5, 23.5 10.5))" +"POLYGON ((24 10.5, 24 10, 23.5 10, 23.5 10.5, 24 10.5))" +"POLYGON ((24.5 10.5, 24.5 10, 24 10, 24 10.5, 24.5 10.5))" +"POLYGON ((25 10.5, 25 10, 24.5 10, 24.5 10.5, 25 10.5))" +"POLYGON ((25.5 10.5, 25.5 10, 25 10, 25 10.5, 25.5 10.5))" +"POLYGON ((26 10.5, 26 10, 25.5 10, 25.5 10.5, 26 10.5))" +"POLYGON ((26.5 10.5, 26.5 10, 26 10, 26 10.5, 26.5 10.5))" +"POLYGON ((27 10.5, 27 10, 26.5 10, 26.5 10.5, 27 10.5))" +"POLYGON ((27.5 10.5, 27.5 10, 27 10, 27 10.5, 27.5 10.5))" +"POLYGON ((28 10.5, 28 10, 27.5 10, 27.5 10.5, 28 10.5))" +"POLYGON ((28.5 10.5, 28.5 10, 28 10, 28 10.5, 28.5 10.5))" +"POLYGON ((29 10.5, 29 10, 28.5 10, 28.5 10.5, 29 10.5))" +"POLYGON ((29.5 10.5, 29.5 10, 29 10, 29 10.5, 29.5 10.5))" +"POLYGON ((30 10.5, 30 10, 29.5 10, 29.5 10.5, 30 10.5))" +"POLYGON ((30.5 10.5, 30.5 10, 30 10, 30 10.5, 30.5 10.5))" +"POLYGON ((31 10.5, 31 10, 30.5 10, 30.5 10.5, 31 10.5))" +"POLYGON ((31.5 10.5, 31.5 10, 31 10, 31 10.5, 31.5 10.5))" +"POLYGON ((32 10.5, 32 10, 31.5 10, 31.5 10.5, 32 10.5))" +"POLYGON ((32.5 10.5, 32.5 10, 32 10, 32 10.5, 32.5 10.5))" +"POLYGON ((33 10.5, 33 10, 32.5 10, 32.5 10.5, 33 10.5))" +"POLYGON ((33.5 10.5, 33.5 10, 33 10, 33 10.5, 33.5 10.5))" +"POLYGON ((34 10.5, 34 10, 33.5 10, 33.5 10.5, 34 10.5))" +"POLYGON ((34.5 10.5, 34.5 10, 34 10, 34 10.5, 34.5 10.5))" +"POLYGON ((35 10.5, 35 10, 34.5 10, 34.5 10.5, 35 10.5))" +"POLYGON ((35.5 10.5, 35.5 10, 35 10, 35 10.5, 35.5 10.5))" +"POLYGON ((36 10.5, 36 10, 35.5 10, 35.5 10.5, 36 10.5))" +"POLYGON ((36.5 10.5, 36.5 10, 36 10, 36 10.5, 36.5 10.5))" +"POLYGON ((37 10.5, 37 10, 36.5 10, 36.5 10.5, 37 10.5))" +"POLYGON ((37.5 10.5, 37.5 10, 37 10, 37 10.5, 37.5 10.5))" +"POLYGON ((38 10.5, 38 10, 37.5 10, 37.5 10.5, 38 10.5))" +"POLYGON ((38.5 10.5, 38.5 10, 38 10, 38 10.5, 38.5 10.5))" +"POLYGON ((39 10.5, 39 10, 38.5 10, 38.5 10.5, 39 10.5))" +"POLYGON ((39.5 10.5, 39.5 10, 39 10, 39 10.5, 39.5 10.5))" +"POLYGON ((40 10.5, 40 10, 39.5 10, 39.5 10.5, 40 10.5))" +"POLYGON ((40.5 10.5, 40.5 10, 40 10, 40 10.5, 40.5 10.5))" +"POLYGON ((41 10.5, 41 10, 40.5 10, 40.5 10.5, 41 10.5))" +"POLYGON ((41.5 10.5, 41.5 10, 41 10, 41 10.5, 41.5 10.5))" +"POLYGON ((42 10.5, 42 10, 41.5 10, 41.5 10.5, 42 10.5))" +"POLYGON ((42.5 10.5, 42.5 10, 42 10, 42 10.5, 42.5 10.5))" +"POLYGON ((43 10.5, 43 10, 42.5 10, 42.5 10.5, 43 10.5))" +"POLYGON ((43.5 10.5, 43.5 10, 43 10, 43 10.5, 43.5 10.5))" +"POLYGON ((44 10.5, 44 10, 43.5 10, 43.5 10.5, 44 10.5))" +"POLYGON ((44.5 10.5, 44.5 10, 44 10, 44 10.5, 44.5 10.5))" +"POLYGON ((45 10.5, 45 10, 44.5 10, 44.5 10.5, 45 10.5))" +"POLYGON ((45.5 10.5, 45.5 10, 45 10, 45 10.5, 45.5 10.5))" +"POLYGON ((46 10.5, 46 10, 45.5 10, 45.5 10.5, 46 10.5))" +"POLYGON ((46.5 10.5, 46.5 10, 46 10, 46 10.5, 46.5 10.5))" +"POLYGON ((47 10.5, 47 10, 46.5 10, 46.5 10.5, 47 10.5))" +"POLYGON ((47.5 10.5, 47.5 10, 47 10, 47 10.5, 47.5 10.5))" +"POLYGON ((48 10.5, 48 10, 47.5 10, 47.5 10.5, 48 10.5))" +"POLYGON ((48.5 10.5, 48.5 10, 48 10, 48 10.5, 48.5 10.5))" +"POLYGON ((49 10.5, 49 10, 48.5 10, 48.5 10.5, 49 10.5))" +"POLYGON ((49.5 10.5, 49.5 10, 49 10, 49 10.5, 49.5 10.5))" +"POLYGON ((50 10.5, 50 10, 49.5 10, 49.5 10.5, 50 10.5))" +"POLYGON ((50.5 10.5, 50.5 10, 50 10, 50 10.5, 50.5 10.5))" +"POLYGON ((51 10.5, 51 10, 50.5 10, 50.5 10.5, 51 10.5))" +"POLYGON ((-14 11, -14 10.5, -14.5 10.5, -14.5 11, -14 11))" +"POLYGON ((-13.5 11, -13.5 10.5, -14 10.5, -14 11, -13.5 11))" +"POLYGON ((-13 11, -13 10.5, -13.5 10.5, -13.5 11, -13 11))" +"POLYGON ((-12.5 11, -12.5 10.5, -13 10.5, -13 11, -12.5 11))" +"POLYGON ((-12 11, -12 10.5, -12.5 10.5, -12.5 11, -12 11))" +"POLYGON ((-11.5 11, -11.5 10.5, -12 10.5, -12 11, -11.5 11))" +"POLYGON ((-11 11, -11 10.5, -11.5 10.5, -11.5 11, -11 11))" +"POLYGON ((-10.5 11, -10.5 10.5, -11 10.5, -11 11, -10.5 11))" +"POLYGON ((-10 11, -10 10.5, -10.5 10.5, -10.5 11, -10 11))" +"POLYGON ((-9.5 11, -9.5 10.5, -10 10.5, -10 11, -9.5 11))" +"POLYGON ((-9 11, -9 10.5, -9.5 10.5, -9.5 11, -9 11))" +"POLYGON ((-8.5 11, -8.5 10.5, -9 10.5, -9 11, -8.5 11))" +"POLYGON ((-8 11, -8 10.5, -8.5 10.5, -8.5 11, -8 11))" +"POLYGON ((-7.5 11, -7.5 10.5, -8 10.5, -8 11, -7.5 11))" +"POLYGON ((-7 11, -7 10.5, -7.5 10.5, -7.5 11, -7 11))" +"POLYGON ((-6.5 11, -6.5 10.5, -7 10.5, -7 11, -6.5 11))" +"POLYGON ((-6 11, -6 10.5, -6.5 10.5, -6.5 11, -6 11))" +"POLYGON ((-5.5 11, -5.5 10.5, -6 10.5, -6 11, -5.5 11))" +"POLYGON ((-5 11, -5 10.5, -5.5 10.5, -5.5 11, -5 11))" +"POLYGON ((-4.5 11, -4.5 10.5, -5 10.5, -5 11, -4.5 11))" +"POLYGON ((-4 11, -4 10.5, -4.5 10.5, -4.5 11, -4 11))" +"POLYGON ((-3.5 11, -3.5 10.5, -4 10.5, -4 11, -3.5 11))" +"POLYGON ((-3 11, -3 10.5, -3.5 10.5, -3.5 11, -3 11))" +"POLYGON ((-2.5 11, -2.5 10.5, -3 10.5, -3 11, -2.5 11))" +"POLYGON ((-2 11, -2 10.5, -2.5 10.5, -2.5 11, -2 11))" +"POLYGON ((-1.5 11, -1.5 10.5, -2 10.5, -2 11, -1.5 11))" +"POLYGON ((-1 11, -1 10.5, -1.5 10.5, -1.5 11, -1 11))" +"POLYGON ((-0.5 11, -0.5 10.5, -1 10.5, -1 11, -0.5 11))" +"POLYGON ((0 11, 0 10.5, -0.5 10.5, -0.5 11, 0 11))" +"POLYGON ((0.5 11, 0.5 10.5, 0 10.5, 0 11, 0.5 11))" +"POLYGON ((1 11, 1 10.5, 0.5 10.5, 0.5 11, 1 11))" +"POLYGON ((1.5 11, 1.5 10.5, 1 10.5, 1 11, 1.5 11))" +"POLYGON ((2 11, 2 10.5, 1.5 10.5, 1.5 11, 2 11))" +"POLYGON ((2.5 11, 2.5 10.5, 2 10.5, 2 11, 2.5 11))" +"POLYGON ((3 11, 3 10.5, 2.5 10.5, 2.5 11, 3 11))" +"POLYGON ((3.5 11, 3.5 10.5, 3 10.5, 3 11, 3.5 11))" +"POLYGON ((4 11, 4 10.5, 3.5 10.5, 3.5 11, 4 11))" +"POLYGON ((4.5 11, 4.5 10.5, 4 10.5, 4 11, 4.5 11))" +"POLYGON ((5 11, 5 10.5, 4.5 10.5, 4.5 11, 5 11))" +"POLYGON ((5.5 11, 5.5 10.5, 5 10.5, 5 11, 5.5 11))" +"POLYGON ((6 11, 6 10.5, 5.5 10.5, 5.5 11, 6 11))" +"POLYGON ((6.5 11, 6.5 10.5, 6 10.5, 6 11, 6.5 11))" +"POLYGON ((7 11, 7 10.5, 6.5 10.5, 6.5 11, 7 11))" +"POLYGON ((7.5 11, 7.5 10.5, 7 10.5, 7 11, 7.5 11))" +"POLYGON ((8 11, 8 10.5, 7.5 10.5, 7.5 11, 8 11))" +"POLYGON ((8.5 11, 8.5 10.5, 8 10.5, 8 11, 8.5 11))" +"POLYGON ((9 11, 9 10.5, 8.5 10.5, 8.5 11, 9 11))" +"POLYGON ((9.5 11, 9.5 10.5, 9 10.5, 9 11, 9.5 11))" +"POLYGON ((10 11, 10 10.5, 9.5 10.5, 9.5 11, 10 11))" +"POLYGON ((10.5 11, 10.5 10.5, 10 10.5, 10 11, 10.5 11))" +"POLYGON ((11 11, 11 10.5, 10.5 10.5, 10.5 11, 11 11))" +"POLYGON ((11.5 11, 11.5 10.5, 11 10.5, 11 11, 11.5 11))" +"POLYGON ((12 11, 12 10.5, 11.5 10.5, 11.5 11, 12 11))" +"POLYGON ((12.5 11, 12.5 10.5, 12 10.5, 12 11, 12.5 11))" +"POLYGON ((13 11, 13 10.5, 12.5 10.5, 12.5 11, 13 11))" +"POLYGON ((13.5 11, 13.5 10.5, 13 10.5, 13 11, 13.5 11))" +"POLYGON ((14 11, 14 10.5, 13.5 10.5, 13.5 11, 14 11))" +"POLYGON ((14.5 11, 14.5 10.5, 14 10.5, 14 11, 14.5 11))" +"POLYGON ((15 11, 15 10.5, 14.5 10.5, 14.5 11, 15 11))" +"POLYGON ((15.5 11, 15.5 10.5, 15 10.5, 15 11, 15.5 11))" +"POLYGON ((16 11, 16 10.5, 15.5 10.5, 15.5 11, 16 11))" +"POLYGON ((16.5 11, 16.5 10.5, 16 10.5, 16 11, 16.5 11))" +"POLYGON ((17 11, 17 10.5, 16.5 10.5, 16.5 11, 17 11))" +"POLYGON ((17.5 11, 17.5 10.5, 17 10.5, 17 11, 17.5 11))" +"POLYGON ((18 11, 18 10.5, 17.5 10.5, 17.5 11, 18 11))" +"POLYGON ((18.5 11, 18.5 10.5, 18 10.5, 18 11, 18.5 11))" +"POLYGON ((19 11, 19 10.5, 18.5 10.5, 18.5 11, 19 11))" +"POLYGON ((19.5 11, 19.5 10.5, 19 10.5, 19 11, 19.5 11))" +"POLYGON ((20 11, 20 10.5, 19.5 10.5, 19.5 11, 20 11))" +"POLYGON ((20.5 11, 20.5 10.5, 20 10.5, 20 11, 20.5 11))" +"POLYGON ((21 11, 21 10.5, 20.5 10.5, 20.5 11, 21 11))" +"POLYGON ((21.5 11, 21.5 10.5, 21 10.5, 21 11, 21.5 11))" +"POLYGON ((22 11, 22 10.5, 21.5 10.5, 21.5 11, 22 11))" +"POLYGON ((22.5 11, 22.5 10.5, 22 10.5, 22 11, 22.5 11))" +"POLYGON ((23 11, 23 10.5, 22.5 10.5, 22.5 11, 23 11))" +"POLYGON ((23.5 11, 23.5 10.5, 23 10.5, 23 11, 23.5 11))" +"POLYGON ((24 11, 24 10.5, 23.5 10.5, 23.5 11, 24 11))" +"POLYGON ((24.5 11, 24.5 10.5, 24 10.5, 24 11, 24.5 11))" +"POLYGON ((25 11, 25 10.5, 24.5 10.5, 24.5 11, 25 11))" +"POLYGON ((25.5 11, 25.5 10.5, 25 10.5, 25 11, 25.5 11))" +"POLYGON ((26 11, 26 10.5, 25.5 10.5, 25.5 11, 26 11))" +"POLYGON ((26.5 11, 26.5 10.5, 26 10.5, 26 11, 26.5 11))" +"POLYGON ((27 11, 27 10.5, 26.5 10.5, 26.5 11, 27 11))" +"POLYGON ((27.5 11, 27.5 10.5, 27 10.5, 27 11, 27.5 11))" +"POLYGON ((28 11, 28 10.5, 27.5 10.5, 27.5 11, 28 11))" +"POLYGON ((28.5 11, 28.5 10.5, 28 10.5, 28 11, 28.5 11))" +"POLYGON ((29 11, 29 10.5, 28.5 10.5, 28.5 11, 29 11))" +"POLYGON ((29.5 11, 29.5 10.5, 29 10.5, 29 11, 29.5 11))" +"POLYGON ((30 11, 30 10.5, 29.5 10.5, 29.5 11, 30 11))" +"POLYGON ((30.5 11, 30.5 10.5, 30 10.5, 30 11, 30.5 11))" +"POLYGON ((31 11, 31 10.5, 30.5 10.5, 30.5 11, 31 11))" +"POLYGON ((31.5 11, 31.5 10.5, 31 10.5, 31 11, 31.5 11))" +"POLYGON ((32 11, 32 10.5, 31.5 10.5, 31.5 11, 32 11))" +"POLYGON ((32.5 11, 32.5 10.5, 32 10.5, 32 11, 32.5 11))" +"POLYGON ((33 11, 33 10.5, 32.5 10.5, 32.5 11, 33 11))" +"POLYGON ((33.5 11, 33.5 10.5, 33 10.5, 33 11, 33.5 11))" +"POLYGON ((34 11, 34 10.5, 33.5 10.5, 33.5 11, 34 11))" +"POLYGON ((34.5 11, 34.5 10.5, 34 10.5, 34 11, 34.5 11))" +"POLYGON ((35 11, 35 10.5, 34.5 10.5, 34.5 11, 35 11))" +"POLYGON ((35.5 11, 35.5 10.5, 35 10.5, 35 11, 35.5 11))" +"POLYGON ((36 11, 36 10.5, 35.5 10.5, 35.5 11, 36 11))" +"POLYGON ((36.5 11, 36.5 10.5, 36 10.5, 36 11, 36.5 11))" +"POLYGON ((37 11, 37 10.5, 36.5 10.5, 36.5 11, 37 11))" +"POLYGON ((37.5 11, 37.5 10.5, 37 10.5, 37 11, 37.5 11))" +"POLYGON ((38 11, 38 10.5, 37.5 10.5, 37.5 11, 38 11))" +"POLYGON ((38.5 11, 38.5 10.5, 38 10.5, 38 11, 38.5 11))" +"POLYGON ((39 11, 39 10.5, 38.5 10.5, 38.5 11, 39 11))" +"POLYGON ((39.5 11, 39.5 10.5, 39 10.5, 39 11, 39.5 11))" +"POLYGON ((40 11, 40 10.5, 39.5 10.5, 39.5 11, 40 11))" +"POLYGON ((40.5 11, 40.5 10.5, 40 10.5, 40 11, 40.5 11))" +"POLYGON ((41 11, 41 10.5, 40.5 10.5, 40.5 11, 41 11))" +"POLYGON ((41.5 11, 41.5 10.5, 41 10.5, 41 11, 41.5 11))" +"POLYGON ((42 11, 42 10.5, 41.5 10.5, 41.5 11, 42 11))" +"POLYGON ((42.5 11, 42.5 10.5, 42 10.5, 42 11, 42.5 11))" +"POLYGON ((43 11, 43 10.5, 42.5 10.5, 42.5 11, 43 11))" +"POLYGON ((43.5 11, 43.5 10.5, 43 10.5, 43 11, 43.5 11))" +"POLYGON ((44 11, 44 10.5, 43.5 10.5, 43.5 11, 44 11))" +"POLYGON ((46 11, 46 10.5, 45.5 10.5, 45.5 11, 46 11))" +"POLYGON ((47 11, 47 10.5, 46.5 10.5, 46.5 11, 47 11))" +"POLYGON ((47.5 11, 47.5 10.5, 47 10.5, 47 11, 47.5 11))" +"POLYGON ((48 11, 48 10.5, 47.5 10.5, 47.5 11, 48 11))" +"POLYGON ((48.5 11, 48.5 10.5, 48 10.5, 48 11, 48.5 11))" +"POLYGON ((49 11, 49 10.5, 48.5 10.5, 48.5 11, 49 11))" +"POLYGON ((49.5 11, 49.5 10.5, 49 10.5, 49 11, 49.5 11))" +"POLYGON ((50 11, 50 10.5, 49.5 10.5, 49.5 11, 50 11))" +"POLYGON ((50.5 11, 50.5 10.5, 50 10.5, 50 11, 50.5 11))" +"POLYGON ((51 11, 51 10.5, 50.5 10.5, 50.5 11, 51 11))" +"POLYGON ((-15.5 11.5, -15.5 11, -16 11, -16 11.5, -15.5 11.5))" +"POLYGON ((-15 11.5, -15 11, -15.5 11, -15.5 11.5, -15 11.5))" +"POLYGON ((-14.5 11.5, -14.5 11, -15 11, -15 11.5, -14.5 11.5))" +"POLYGON ((-14 11.5, -14 11, -14.5 11, -14.5 11.5, -14 11.5))" +"POLYGON ((-13.5 11.5, -13.5 11, -14 11, -14 11.5, -13.5 11.5))" +"POLYGON ((-13 11.5, -13 11, -13.5 11, -13.5 11.5, -13 11.5))" +"POLYGON ((-12.5 11.5, -12.5 11, -13 11, -13 11.5, -12.5 11.5))" +"POLYGON ((-12 11.5, -12 11, -12.5 11, -12.5 11.5, -12 11.5))" +"POLYGON ((-11.5 11.5, -11.5 11, -12 11, -12 11.5, -11.5 11.5))" +"POLYGON ((-11 11.5, -11 11, -11.5 11, -11.5 11.5, -11 11.5))" +"POLYGON ((-10.5 11.5, -10.5 11, -11 11, -11 11.5, -10.5 11.5))" +"POLYGON ((-10 11.5, -10 11, -10.5 11, -10.5 11.5, -10 11.5))" +"POLYGON ((-9.5 11.5, -9.5 11, -10 11, -10 11.5, -9.5 11.5))" +"POLYGON ((-9 11.5, -9 11, -9.5 11, -9.5 11.5, -9 11.5))" +"POLYGON ((-8.5 11.5, -8.5 11, -9 11, -9 11.5, -8.5 11.5))" +"POLYGON ((-8 11.5, -8 11, -8.5 11, -8.5 11.5, -8 11.5))" +"POLYGON ((-7.5 11.5, -7.5 11, -8 11, -8 11.5, -7.5 11.5))" +"POLYGON ((-7 11.5, -7 11, -7.5 11, -7.5 11.5, -7 11.5))" +"POLYGON ((-6.5 11.5, -6.5 11, -7 11, -7 11.5, -6.5 11.5))" +"POLYGON ((-6 11.5, -6 11, -6.5 11, -6.5 11.5, -6 11.5))" +"POLYGON ((-5.5 11.5, -5.5 11, -6 11, -6 11.5, -5.5 11.5))" +"POLYGON ((-5 11.5, -5 11, -5.5 11, -5.5 11.5, -5 11.5))" +"POLYGON ((-4.5 11.5, -4.5 11, -5 11, -5 11.5, -4.5 11.5))" +"POLYGON ((-4 11.5, -4 11, -4.5 11, -4.5 11.5, -4 11.5))" +"POLYGON ((-3.5 11.5, -3.5 11, -4 11, -4 11.5, -3.5 11.5))" +"POLYGON ((-3 11.5, -3 11, -3.5 11, -3.5 11.5, -3 11.5))" +"POLYGON ((-2.5 11.5, -2.5 11, -3 11, -3 11.5, -2.5 11.5))" +"POLYGON ((-2 11.5, -2 11, -2.5 11, -2.5 11.5, -2 11.5))" +"POLYGON ((-1.5 11.5, -1.5 11, -2 11, -2 11.5, -1.5 11.5))" +"POLYGON ((-1 11.5, -1 11, -1.5 11, -1.5 11.5, -1 11.5))" +"POLYGON ((-0.5 11.5, -0.5 11, -1 11, -1 11.5, -0.5 11.5))" +"POLYGON ((0 11.5, 0 11, -0.5 11, -0.5 11.5, 0 11.5))" +"POLYGON ((0.5 11.5, 0.5 11, 0 11, 0 11.5, 0.5 11.5))" +"POLYGON ((1 11.5, 1 11, 0.5 11, 0.5 11.5, 1 11.5))" +"POLYGON ((1.5 11.5, 1.5 11, 1 11, 1 11.5, 1.5 11.5))" +"POLYGON ((2 11.5, 2 11, 1.5 11, 1.5 11.5, 2 11.5))" +"POLYGON ((2.5 11.5, 2.5 11, 2 11, 2 11.5, 2.5 11.5))" +"POLYGON ((3 11.5, 3 11, 2.5 11, 2.5 11.5, 3 11.5))" +"POLYGON ((3.5 11.5, 3.5 11, 3 11, 3 11.5, 3.5 11.5))" +"POLYGON ((4 11.5, 4 11, 3.5 11, 3.5 11.5, 4 11.5))" +"POLYGON ((4.5 11.5, 4.5 11, 4 11, 4 11.5, 4.5 11.5))" +"POLYGON ((5 11.5, 5 11, 4.5 11, 4.5 11.5, 5 11.5))" +"POLYGON ((5.5 11.5, 5.5 11, 5 11, 5 11.5, 5.5 11.5))" +"POLYGON ((6 11.5, 6 11, 5.5 11, 5.5 11.5, 6 11.5))" +"POLYGON ((6.5 11.5, 6.5 11, 6 11, 6 11.5, 6.5 11.5))" +"POLYGON ((7 11.5, 7 11, 6.5 11, 6.5 11.5, 7 11.5))" +"POLYGON ((7.5 11.5, 7.5 11, 7 11, 7 11.5, 7.5 11.5))" +"POLYGON ((8 11.5, 8 11, 7.5 11, 7.5 11.5, 8 11.5))" +"POLYGON ((8.5 11.5, 8.5 11, 8 11, 8 11.5, 8.5 11.5))" +"POLYGON ((9 11.5, 9 11, 8.5 11, 8.5 11.5, 9 11.5))" +"POLYGON ((9.5 11.5, 9.5 11, 9 11, 9 11.5, 9.5 11.5))" +"POLYGON ((10 11.5, 10 11, 9.5 11, 9.5 11.5, 10 11.5))" +"POLYGON ((10.5 11.5, 10.5 11, 10 11, 10 11.5, 10.5 11.5))" +"POLYGON ((11 11.5, 11 11, 10.5 11, 10.5 11.5, 11 11.5))" +"POLYGON ((11.5 11.5, 11.5 11, 11 11, 11 11.5, 11.5 11.5))" +"POLYGON ((12 11.5, 12 11, 11.5 11, 11.5 11.5, 12 11.5))" +"POLYGON ((12.5 11.5, 12.5 11, 12 11, 12 11.5, 12.5 11.5))" +"POLYGON ((13 11.5, 13 11, 12.5 11, 12.5 11.5, 13 11.5))" +"POLYGON ((13.5 11.5, 13.5 11, 13 11, 13 11.5, 13.5 11.5))" +"POLYGON ((14 11.5, 14 11, 13.5 11, 13.5 11.5, 14 11.5))" +"POLYGON ((14.5 11.5, 14.5 11, 14 11, 14 11.5, 14.5 11.5))" +"POLYGON ((15 11.5, 15 11, 14.5 11, 14.5 11.5, 15 11.5))" +"POLYGON ((15.5 11.5, 15.5 11, 15 11, 15 11.5, 15.5 11.5))" +"POLYGON ((16 11.5, 16 11, 15.5 11, 15.5 11.5, 16 11.5))" +"POLYGON ((16.5 11.5, 16.5 11, 16 11, 16 11.5, 16.5 11.5))" +"POLYGON ((17 11.5, 17 11, 16.5 11, 16.5 11.5, 17 11.5))" +"POLYGON ((17.5 11.5, 17.5 11, 17 11, 17 11.5, 17.5 11.5))" +"POLYGON ((18 11.5, 18 11, 17.5 11, 17.5 11.5, 18 11.5))" +"POLYGON ((18.5 11.5, 18.5 11, 18 11, 18 11.5, 18.5 11.5))" +"POLYGON ((19 11.5, 19 11, 18.5 11, 18.5 11.5, 19 11.5))" +"POLYGON ((19.5 11.5, 19.5 11, 19 11, 19 11.5, 19.5 11.5))" +"POLYGON ((20 11.5, 20 11, 19.5 11, 19.5 11.5, 20 11.5))" +"POLYGON ((20.5 11.5, 20.5 11, 20 11, 20 11.5, 20.5 11.5))" +"POLYGON ((21 11.5, 21 11, 20.5 11, 20.5 11.5, 21 11.5))" +"POLYGON ((21.5 11.5, 21.5 11, 21 11, 21 11.5, 21.5 11.5))" +"POLYGON ((22 11.5, 22 11, 21.5 11, 21.5 11.5, 22 11.5))" +"POLYGON ((22.5 11.5, 22.5 11, 22 11, 22 11.5, 22.5 11.5))" +"POLYGON ((23 11.5, 23 11, 22.5 11, 22.5 11.5, 23 11.5))" +"POLYGON ((23.5 11.5, 23.5 11, 23 11, 23 11.5, 23.5 11.5))" +"POLYGON ((24 11.5, 24 11, 23.5 11, 23.5 11.5, 24 11.5))" +"POLYGON ((24.5 11.5, 24.5 11, 24 11, 24 11.5, 24.5 11.5))" +"POLYGON ((25 11.5, 25 11, 24.5 11, 24.5 11.5, 25 11.5))" +"POLYGON ((25.5 11.5, 25.5 11, 25 11, 25 11.5, 25.5 11.5))" +"POLYGON ((26 11.5, 26 11, 25.5 11, 25.5 11.5, 26 11.5))" +"POLYGON ((26.5 11.5, 26.5 11, 26 11, 26 11.5, 26.5 11.5))" +"POLYGON ((27 11.5, 27 11, 26.5 11, 26.5 11.5, 27 11.5))" +"POLYGON ((27.5 11.5, 27.5 11, 27 11, 27 11.5, 27.5 11.5))" +"POLYGON ((28 11.5, 28 11, 27.5 11, 27.5 11.5, 28 11.5))" +"POLYGON ((28.5 11.5, 28.5 11, 28 11, 28 11.5, 28.5 11.5))" +"POLYGON ((29 11.5, 29 11, 28.5 11, 28.5 11.5, 29 11.5))" +"POLYGON ((29.5 11.5, 29.5 11, 29 11, 29 11.5, 29.5 11.5))" +"POLYGON ((30 11.5, 30 11, 29.5 11, 29.5 11.5, 30 11.5))" +"POLYGON ((30.5 11.5, 30.5 11, 30 11, 30 11.5, 30.5 11.5))" +"POLYGON ((31 11.5, 31 11, 30.5 11, 30.5 11.5, 31 11.5))" +"POLYGON ((31.5 11.5, 31.5 11, 31 11, 31 11.5, 31.5 11.5))" +"POLYGON ((32 11.5, 32 11, 31.5 11, 31.5 11.5, 32 11.5))" +"POLYGON ((32.5 11.5, 32.5 11, 32 11, 32 11.5, 32.5 11.5))" +"POLYGON ((33 11.5, 33 11, 32.5 11, 32.5 11.5, 33 11.5))" +"POLYGON ((33.5 11.5, 33.5 11, 33 11, 33 11.5, 33.5 11.5))" +"POLYGON ((34 11.5, 34 11, 33.5 11, 33.5 11.5, 34 11.5))" +"POLYGON ((34.5 11.5, 34.5 11, 34 11, 34 11.5, 34.5 11.5))" +"POLYGON ((35 11.5, 35 11, 34.5 11, 34.5 11.5, 35 11.5))" +"POLYGON ((35.5 11.5, 35.5 11, 35 11, 35 11.5, 35.5 11.5))" +"POLYGON ((36 11.5, 36 11, 35.5 11, 35.5 11.5, 36 11.5))" +"POLYGON ((36.5 11.5, 36.5 11, 36 11, 36 11.5, 36.5 11.5))" +"POLYGON ((37 11.5, 37 11, 36.5 11, 36.5 11.5, 37 11.5))" +"POLYGON ((37.5 11.5, 37.5 11, 37 11, 37 11.5, 37.5 11.5))" +"POLYGON ((38 11.5, 38 11, 37.5 11, 37.5 11.5, 38 11.5))" +"POLYGON ((38.5 11.5, 38.5 11, 38 11, 38 11.5, 38.5 11.5))" +"POLYGON ((39 11.5, 39 11, 38.5 11, 38.5 11.5, 39 11.5))" +"POLYGON ((39.5 11.5, 39.5 11, 39 11, 39 11.5, 39.5 11.5))" +"POLYGON ((40 11.5, 40 11, 39.5 11, 39.5 11.5, 40 11.5))" +"POLYGON ((40.5 11.5, 40.5 11, 40 11, 40 11.5, 40.5 11.5))" +"POLYGON ((41 11.5, 41 11, 40.5 11, 40.5 11.5, 41 11.5))" +"POLYGON ((41.5 11.5, 41.5 11, 41 11, 41 11.5, 41.5 11.5))" +"POLYGON ((42 11.5, 42 11, 41.5 11, 41.5 11.5, 42 11.5))" +"POLYGON ((42.5 11.5, 42.5 11, 42 11, 42 11.5, 42.5 11.5))" +"POLYGON ((43 11.5, 43 11, 42.5 11, 42.5 11.5, 43 11.5))" +"POLYGON ((43.5 11.5, 43.5 11, 43 11, 43 11.5, 43.5 11.5))" +"POLYGON ((49 11.5, 49 11, 48.5 11, 48.5 11.5, 49 11.5))" +"POLYGON ((49.5 11.5, 49.5 11, 49 11, 49 11.5, 49.5 11.5))" +"POLYGON ((50 11.5, 50 11, 49.5 11, 49.5 11.5, 50 11.5))" +"POLYGON ((50.5 11.5, 50.5 11, 50 11, 50 11.5, 50.5 11.5))" +"POLYGON ((51 11.5, 51 11, 50.5 11, 50.5 11.5, 51 11.5))" +"POLYGON ((-15 12, -15 11.5, -15.5 11.5, -15.5 12, -15 12))" +"POLYGON ((-14.5 12, -14.5 11.5, -15 11.5, -15 12, -14.5 12))" +"POLYGON ((-14 12, -14 11.5, -14.5 11.5, -14.5 12, -14 12))" +"POLYGON ((-13.5 12, -13.5 11.5, -14 11.5, -14 12, -13.5 12))" +"POLYGON ((-13 12, -13 11.5, -13.5 11.5, -13.5 12, -13 12))" +"POLYGON ((-12.5 12, -12.5 11.5, -13 11.5, -13 12, -12.5 12))" +"POLYGON ((-12 12, -12 11.5, -12.5 11.5, -12.5 12, -12 12))" +"POLYGON ((-11.5 12, -11.5 11.5, -12 11.5, -12 12, -11.5 12))" +"POLYGON ((-11 12, -11 11.5, -11.5 11.5, -11.5 12, -11 12))" +"POLYGON ((-10.5 12, -10.5 11.5, -11 11.5, -11 12, -10.5 12))" +"POLYGON ((-10 12, -10 11.5, -10.5 11.5, -10.5 12, -10 12))" +"POLYGON ((-9.5 12, -9.5 11.5, -10 11.5, -10 12, -9.5 12))" +"POLYGON ((-9 12, -9 11.5, -9.5 11.5, -9.5 12, -9 12))" +"POLYGON ((-8.5 12, -8.5 11.5, -9 11.5, -9 12, -8.5 12))" +"POLYGON ((-8 12, -8 11.5, -8.5 11.5, -8.5 12, -8 12))" +"POLYGON ((-7.5 12, -7.5 11.5, -8 11.5, -8 12, -7.5 12))" +"POLYGON ((-7 12, -7 11.5, -7.5 11.5, -7.5 12, -7 12))" +"POLYGON ((-6.5 12, -6.5 11.5, -7 11.5, -7 12, -6.5 12))" +"POLYGON ((-6 12, -6 11.5, -6.5 11.5, -6.5 12, -6 12))" +"POLYGON ((-5.5 12, -5.5 11.5, -6 11.5, -6 12, -5.5 12))" +"POLYGON ((-5 12, -5 11.5, -5.5 11.5, -5.5 12, -5 12))" +"POLYGON ((-4.5 12, -4.5 11.5, -5 11.5, -5 12, -4.5 12))" +"POLYGON ((-4 12, -4 11.5, -4.5 11.5, -4.5 12, -4 12))" +"POLYGON ((-3.5 12, -3.5 11.5, -4 11.5, -4 12, -3.5 12))" +"POLYGON ((-3 12, -3 11.5, -3.5 11.5, -3.5 12, -3 12))" +"POLYGON ((-2.5 12, -2.5 11.5, -3 11.5, -3 12, -2.5 12))" +"POLYGON ((-2 12, -2 11.5, -2.5 11.5, -2.5 12, -2 12))" +"POLYGON ((-1.5 12, -1.5 11.5, -2 11.5, -2 12, -1.5 12))" +"POLYGON ((-1 12, -1 11.5, -1.5 11.5, -1.5 12, -1 12))" +"POLYGON ((-0.5 12, -0.5 11.5, -1 11.5, -1 12, -0.5 12))" +"POLYGON ((0 12, 0 11.5, -0.5 11.5, -0.5 12, 0 12))" +"POLYGON ((0.5 12, 0.5 11.5, 0 11.5, 0 12, 0.5 12))" +"POLYGON ((1 12, 1 11.5, 0.5 11.5, 0.5 12, 1 12))" +"POLYGON ((1.5 12, 1.5 11.5, 1 11.5, 1 12, 1.5 12))" +"POLYGON ((2 12, 2 11.5, 1.5 11.5, 1.5 12, 2 12))" +"POLYGON ((2.5 12, 2.5 11.5, 2 11.5, 2 12, 2.5 12))" +"POLYGON ((3 12, 3 11.5, 2.5 11.5, 2.5 12, 3 12))" +"POLYGON ((3.5 12, 3.5 11.5, 3 11.5, 3 12, 3.5 12))" +"POLYGON ((4 12, 4 11.5, 3.5 11.5, 3.5 12, 4 12))" +"POLYGON ((4.5 12, 4.5 11.5, 4 11.5, 4 12, 4.5 12))" +"POLYGON ((5 12, 5 11.5, 4.5 11.5, 4.5 12, 5 12))" +"POLYGON ((5.5 12, 5.5 11.5, 5 11.5, 5 12, 5.5 12))" +"POLYGON ((6 12, 6 11.5, 5.5 11.5, 5.5 12, 6 12))" +"POLYGON ((6.5 12, 6.5 11.5, 6 11.5, 6 12, 6.5 12))" +"POLYGON ((7 12, 7 11.5, 6.5 11.5, 6.5 12, 7 12))" +"POLYGON ((7.5 12, 7.5 11.5, 7 11.5, 7 12, 7.5 12))" +"POLYGON ((8 12, 8 11.5, 7.5 11.5, 7.5 12, 8 12))" +"POLYGON ((8.5 12, 8.5 11.5, 8 11.5, 8 12, 8.5 12))" +"POLYGON ((9 12, 9 11.5, 8.5 11.5, 8.5 12, 9 12))" +"POLYGON ((9.5 12, 9.5 11.5, 9 11.5, 9 12, 9.5 12))" +"POLYGON ((10 12, 10 11.5, 9.5 11.5, 9.5 12, 10 12))" +"POLYGON ((10.5 12, 10.5 11.5, 10 11.5, 10 12, 10.5 12))" +"POLYGON ((11 12, 11 11.5, 10.5 11.5, 10.5 12, 11 12))" +"POLYGON ((11.5 12, 11.5 11.5, 11 11.5, 11 12, 11.5 12))" +"POLYGON ((12 12, 12 11.5, 11.5 11.5, 11.5 12, 12 12))" +"POLYGON ((12.5 12, 12.5 11.5, 12 11.5, 12 12, 12.5 12))" +"POLYGON ((13 12, 13 11.5, 12.5 11.5, 12.5 12, 13 12))" +"POLYGON ((13.5 12, 13.5 11.5, 13 11.5, 13 12, 13.5 12))" +"POLYGON ((14 12, 14 11.5, 13.5 11.5, 13.5 12, 14 12))" +"POLYGON ((14.5 12, 14.5 11.5, 14 11.5, 14 12, 14.5 12))" +"POLYGON ((15 12, 15 11.5, 14.5 11.5, 14.5 12, 15 12))" +"POLYGON ((15.5 12, 15.5 11.5, 15 11.5, 15 12, 15.5 12))" +"POLYGON ((16 12, 16 11.5, 15.5 11.5, 15.5 12, 16 12))" +"POLYGON ((16.5 12, 16.5 11.5, 16 11.5, 16 12, 16.5 12))" +"POLYGON ((17 12, 17 11.5, 16.5 11.5, 16.5 12, 17 12))" +"POLYGON ((17.5 12, 17.5 11.5, 17 11.5, 17 12, 17.5 12))" +"POLYGON ((18 12, 18 11.5, 17.5 11.5, 17.5 12, 18 12))" +"POLYGON ((18.5 12, 18.5 11.5, 18 11.5, 18 12, 18.5 12))" +"POLYGON ((19 12, 19 11.5, 18.5 11.5, 18.5 12, 19 12))" +"POLYGON ((19.5 12, 19.5 11.5, 19 11.5, 19 12, 19.5 12))" +"POLYGON ((20 12, 20 11.5, 19.5 11.5, 19.5 12, 20 12))" +"POLYGON ((20.5 12, 20.5 11.5, 20 11.5, 20 12, 20.5 12))" +"POLYGON ((21 12, 21 11.5, 20.5 11.5, 20.5 12, 21 12))" +"POLYGON ((21.5 12, 21.5 11.5, 21 11.5, 21 12, 21.5 12))" +"POLYGON ((22 12, 22 11.5, 21.5 11.5, 21.5 12, 22 12))" +"POLYGON ((22.5 12, 22.5 11.5, 22 11.5, 22 12, 22.5 12))" +"POLYGON ((23 12, 23 11.5, 22.5 11.5, 22.5 12, 23 12))" +"POLYGON ((23.5 12, 23.5 11.5, 23 11.5, 23 12, 23.5 12))" +"POLYGON ((24 12, 24 11.5, 23.5 11.5, 23.5 12, 24 12))" +"POLYGON ((24.5 12, 24.5 11.5, 24 11.5, 24 12, 24.5 12))" +"POLYGON ((25 12, 25 11.5, 24.5 11.5, 24.5 12, 25 12))" +"POLYGON ((25.5 12, 25.5 11.5, 25 11.5, 25 12, 25.5 12))" +"POLYGON ((26 12, 26 11.5, 25.5 11.5, 25.5 12, 26 12))" +"POLYGON ((26.5 12, 26.5 11.5, 26 11.5, 26 12, 26.5 12))" +"POLYGON ((27 12, 27 11.5, 26.5 11.5, 26.5 12, 27 12))" +"POLYGON ((27.5 12, 27.5 11.5, 27 11.5, 27 12, 27.5 12))" +"POLYGON ((28 12, 28 11.5, 27.5 11.5, 27.5 12, 28 12))" +"POLYGON ((28.5 12, 28.5 11.5, 28 11.5, 28 12, 28.5 12))" +"POLYGON ((29 12, 29 11.5, 28.5 11.5, 28.5 12, 29 12))" +"POLYGON ((29.5 12, 29.5 11.5, 29 11.5, 29 12, 29.5 12))" +"POLYGON ((30 12, 30 11.5, 29.5 11.5, 29.5 12, 30 12))" +"POLYGON ((30.5 12, 30.5 11.5, 30 11.5, 30 12, 30.5 12))" +"POLYGON ((31 12, 31 11.5, 30.5 11.5, 30.5 12, 31 12))" +"POLYGON ((31.5 12, 31.5 11.5, 31 11.5, 31 12, 31.5 12))" +"POLYGON ((32 12, 32 11.5, 31.5 11.5, 31.5 12, 32 12))" +"POLYGON ((32.5 12, 32.5 11.5, 32 11.5, 32 12, 32.5 12))" +"POLYGON ((33 12, 33 11.5, 32.5 11.5, 32.5 12, 33 12))" +"POLYGON ((33.5 12, 33.5 11.5, 33 11.5, 33 12, 33.5 12))" +"POLYGON ((34 12, 34 11.5, 33.5 11.5, 33.5 12, 34 12))" +"POLYGON ((34.5 12, 34.5 11.5, 34 11.5, 34 12, 34.5 12))" +"POLYGON ((35 12, 35 11.5, 34.5 11.5, 34.5 12, 35 12))" +"POLYGON ((35.5 12, 35.5 11.5, 35 11.5, 35 12, 35.5 12))" +"POLYGON ((36 12, 36 11.5, 35.5 11.5, 35.5 12, 36 12))" +"POLYGON ((36.5 12, 36.5 11.5, 36 11.5, 36 12, 36.5 12))" +"POLYGON ((37 12, 37 11.5, 36.5 11.5, 36.5 12, 37 12))" +"POLYGON ((37.5 12, 37.5 11.5, 37 11.5, 37 12, 37.5 12))" +"POLYGON ((38 12, 38 11.5, 37.5 11.5, 37.5 12, 38 12))" +"POLYGON ((38.5 12, 38.5 11.5, 38 11.5, 38 12, 38.5 12))" +"POLYGON ((39 12, 39 11.5, 38.5 11.5, 38.5 12, 39 12))" +"POLYGON ((39.5 12, 39.5 11.5, 39 11.5, 39 12, 39.5 12))" +"POLYGON ((40 12, 40 11.5, 39.5 11.5, 39.5 12, 40 12))" +"POLYGON ((40.5 12, 40.5 11.5, 40 11.5, 40 12, 40.5 12))" +"POLYGON ((41 12, 41 11.5, 40.5 11.5, 40.5 12, 41 12))" +"POLYGON ((41.5 12, 41.5 11.5, 41 11.5, 41 12, 41.5 12))" +"POLYGON ((42 12, 42 11.5, 41.5 11.5, 41.5 12, 42 12))" +"POLYGON ((42.5 12, 42.5 11.5, 42 11.5, 42 12, 42.5 12))" +"POLYGON ((43 12, 43 11.5, 42.5 11.5, 42.5 12, 43 12))" +"POLYGON ((51 12, 51 11.5, 50.5 11.5, 50.5 12, 51 12))" +"POLYGON ((51.5 12, 51.5 11.5, 51 11.5, 51 12, 51.5 12))" +"POLYGON ((-15.5 12.5, -15.5 12, -16 12, -16 12.5, -15.5 12.5))" +"POLYGON ((-15 12.5, -15 12, -15.5 12, -15.5 12.5, -15 12.5))" +"POLYGON ((-14.5 12.5, -14.5 12, -15 12, -15 12.5, -14.5 12.5))" +"POLYGON ((-14 12.5, -14 12, -14.5 12, -14.5 12.5, -14 12.5))" +"POLYGON ((-13.5 12.5, -13.5 12, -14 12, -14 12.5, -13.5 12.5))" +"POLYGON ((-13 12.5, -13 12, -13.5 12, -13.5 12.5, -13 12.5))" +"POLYGON ((-12.5 12.5, -12.5 12, -13 12, -13 12.5, -12.5 12.5))" +"POLYGON ((-12 12.5, -12 12, -12.5 12, -12.5 12.5, -12 12.5))" +"POLYGON ((-11.5 12.5, -11.5 12, -12 12, -12 12.5, -11.5 12.5))" +"POLYGON ((-11 12.5, -11 12, -11.5 12, -11.5 12.5, -11 12.5))" +"POLYGON ((-10.5 12.5, -10.5 12, -11 12, -11 12.5, -10.5 12.5))" +"POLYGON ((-10 12.5, -10 12, -10.5 12, -10.5 12.5, -10 12.5))" +"POLYGON ((-9.5 12.5, -9.5 12, -10 12, -10 12.5, -9.5 12.5))" +"POLYGON ((-9 12.5, -9 12, -9.5 12, -9.5 12.5, -9 12.5))" +"POLYGON ((-8.5 12.5, -8.5 12, -9 12, -9 12.5, -8.5 12.5))" +"POLYGON ((-8 12.5, -8 12, -8.5 12, -8.5 12.5, -8 12.5))" +"POLYGON ((-7.5 12.5, -7.5 12, -8 12, -8 12.5, -7.5 12.5))" +"POLYGON ((-7 12.5, -7 12, -7.5 12, -7.5 12.5, -7 12.5))" +"POLYGON ((-6.5 12.5, -6.5 12, -7 12, -7 12.5, -6.5 12.5))" +"POLYGON ((-6 12.5, -6 12, -6.5 12, -6.5 12.5, -6 12.5))" +"POLYGON ((-5.5 12.5, -5.5 12, -6 12, -6 12.5, -5.5 12.5))" +"POLYGON ((-5 12.5, -5 12, -5.5 12, -5.5 12.5, -5 12.5))" +"POLYGON ((-4.5 12.5, -4.5 12, -5 12, -5 12.5, -4.5 12.5))" +"POLYGON ((-4 12.5, -4 12, -4.5 12, -4.5 12.5, -4 12.5))" +"POLYGON ((-3.5 12.5, -3.5 12, -4 12, -4 12.5, -3.5 12.5))" +"POLYGON ((-3 12.5, -3 12, -3.5 12, -3.5 12.5, -3 12.5))" +"POLYGON ((-2.5 12.5, -2.5 12, -3 12, -3 12.5, -2.5 12.5))" +"POLYGON ((-2 12.5, -2 12, -2.5 12, -2.5 12.5, -2 12.5))" +"POLYGON ((-1.5 12.5, -1.5 12, -2 12, -2 12.5, -1.5 12.5))" +"POLYGON ((-1 12.5, -1 12, -1.5 12, -1.5 12.5, -1 12.5))" +"POLYGON ((-0.5 12.5, -0.5 12, -1 12, -1 12.5, -0.5 12.5))" +"POLYGON ((0 12.5, 0 12, -0.5 12, -0.5 12.5, 0 12.5))" +"POLYGON ((0.5 12.5, 0.5 12, 0 12, 0 12.5, 0.5 12.5))" +"POLYGON ((1 12.5, 1 12, 0.5 12, 0.5 12.5, 1 12.5))" +"POLYGON ((1.5 12.5, 1.5 12, 1 12, 1 12.5, 1.5 12.5))" +"POLYGON ((2 12.5, 2 12, 1.5 12, 1.5 12.5, 2 12.5))" +"POLYGON ((2.5 12.5, 2.5 12, 2 12, 2 12.5, 2.5 12.5))" +"POLYGON ((3 12.5, 3 12, 2.5 12, 2.5 12.5, 3 12.5))" +"POLYGON ((3.5 12.5, 3.5 12, 3 12, 3 12.5, 3.5 12.5))" +"POLYGON ((4 12.5, 4 12, 3.5 12, 3.5 12.5, 4 12.5))" +"POLYGON ((4.5 12.5, 4.5 12, 4 12, 4 12.5, 4.5 12.5))" +"POLYGON ((5 12.5, 5 12, 4.5 12, 4.5 12.5, 5 12.5))" +"POLYGON ((5.5 12.5, 5.5 12, 5 12, 5 12.5, 5.5 12.5))" +"POLYGON ((6 12.5, 6 12, 5.5 12, 5.5 12.5, 6 12.5))" +"POLYGON ((6.5 12.5, 6.5 12, 6 12, 6 12.5, 6.5 12.5))" +"POLYGON ((7 12.5, 7 12, 6.5 12, 6.5 12.5, 7 12.5))" +"POLYGON ((7.5 12.5, 7.5 12, 7 12, 7 12.5, 7.5 12.5))" +"POLYGON ((8 12.5, 8 12, 7.5 12, 7.5 12.5, 8 12.5))" +"POLYGON ((8.5 12.5, 8.5 12, 8 12, 8 12.5, 8.5 12.5))" +"POLYGON ((9 12.5, 9 12, 8.5 12, 8.5 12.5, 9 12.5))" +"POLYGON ((9.5 12.5, 9.5 12, 9 12, 9 12.5, 9.5 12.5))" +"POLYGON ((10 12.5, 10 12, 9.5 12, 9.5 12.5, 10 12.5))" +"POLYGON ((10.5 12.5, 10.5 12, 10 12, 10 12.5, 10.5 12.5))" +"POLYGON ((11 12.5, 11 12, 10.5 12, 10.5 12.5, 11 12.5))" +"POLYGON ((11.5 12.5, 11.5 12, 11 12, 11 12.5, 11.5 12.5))" +"POLYGON ((12 12.5, 12 12, 11.5 12, 11.5 12.5, 12 12.5))" +"POLYGON ((12.5 12.5, 12.5 12, 12 12, 12 12.5, 12.5 12.5))" +"POLYGON ((13 12.5, 13 12, 12.5 12, 12.5 12.5, 13 12.5))" +"POLYGON ((13.5 12.5, 13.5 12, 13 12, 13 12.5, 13.5 12.5))" +"POLYGON ((14 12.5, 14 12, 13.5 12, 13.5 12.5, 14 12.5))" +"POLYGON ((14.5 12.5, 14.5 12, 14 12, 14 12.5, 14.5 12.5))" +"POLYGON ((15 12.5, 15 12, 14.5 12, 14.5 12.5, 15 12.5))" +"POLYGON ((15.5 12.5, 15.5 12, 15 12, 15 12.5, 15.5 12.5))" +"POLYGON ((16 12.5, 16 12, 15.5 12, 15.5 12.5, 16 12.5))" +"POLYGON ((16.5 12.5, 16.5 12, 16 12, 16 12.5, 16.5 12.5))" +"POLYGON ((17 12.5, 17 12, 16.5 12, 16.5 12.5, 17 12.5))" +"POLYGON ((17.5 12.5, 17.5 12, 17 12, 17 12.5, 17.5 12.5))" +"POLYGON ((18 12.5, 18 12, 17.5 12, 17.5 12.5, 18 12.5))" +"POLYGON ((18.5 12.5, 18.5 12, 18 12, 18 12.5, 18.5 12.5))" +"POLYGON ((19 12.5, 19 12, 18.5 12, 18.5 12.5, 19 12.5))" +"POLYGON ((19.5 12.5, 19.5 12, 19 12, 19 12.5, 19.5 12.5))" +"POLYGON ((20 12.5, 20 12, 19.5 12, 19.5 12.5, 20 12.5))" +"POLYGON ((20.5 12.5, 20.5 12, 20 12, 20 12.5, 20.5 12.5))" +"POLYGON ((21 12.5, 21 12, 20.5 12, 20.5 12.5, 21 12.5))" +"POLYGON ((21.5 12.5, 21.5 12, 21 12, 21 12.5, 21.5 12.5))" +"POLYGON ((22 12.5, 22 12, 21.5 12, 21.5 12.5, 22 12.5))" +"POLYGON ((22.5 12.5, 22.5 12, 22 12, 22 12.5, 22.5 12.5))" +"POLYGON ((23 12.5, 23 12, 22.5 12, 22.5 12.5, 23 12.5))" +"POLYGON ((23.5 12.5, 23.5 12, 23 12, 23 12.5, 23.5 12.5))" +"POLYGON ((24 12.5, 24 12, 23.5 12, 23.5 12.5, 24 12.5))" +"POLYGON ((24.5 12.5, 24.5 12, 24 12, 24 12.5, 24.5 12.5))" +"POLYGON ((25 12.5, 25 12, 24.5 12, 24.5 12.5, 25 12.5))" +"POLYGON ((25.5 12.5, 25.5 12, 25 12, 25 12.5, 25.5 12.5))" +"POLYGON ((26 12.5, 26 12, 25.5 12, 25.5 12.5, 26 12.5))" +"POLYGON ((26.5 12.5, 26.5 12, 26 12, 26 12.5, 26.5 12.5))" +"POLYGON ((27 12.5, 27 12, 26.5 12, 26.5 12.5, 27 12.5))" +"POLYGON ((27.5 12.5, 27.5 12, 27 12, 27 12.5, 27.5 12.5))" +"POLYGON ((28 12.5, 28 12, 27.5 12, 27.5 12.5, 28 12.5))" +"POLYGON ((28.5 12.5, 28.5 12, 28 12, 28 12.5, 28.5 12.5))" +"POLYGON ((29 12.5, 29 12, 28.5 12, 28.5 12.5, 29 12.5))" +"POLYGON ((29.5 12.5, 29.5 12, 29 12, 29 12.5, 29.5 12.5))" +"POLYGON ((30 12.5, 30 12, 29.5 12, 29.5 12.5, 30 12.5))" +"POLYGON ((30.5 12.5, 30.5 12, 30 12, 30 12.5, 30.5 12.5))" +"POLYGON ((31 12.5, 31 12, 30.5 12, 30.5 12.5, 31 12.5))" +"POLYGON ((31.5 12.5, 31.5 12, 31 12, 31 12.5, 31.5 12.5))" +"POLYGON ((32 12.5, 32 12, 31.5 12, 31.5 12.5, 32 12.5))" +"POLYGON ((32.5 12.5, 32.5 12, 32 12, 32 12.5, 32.5 12.5))" +"POLYGON ((33 12.5, 33 12, 32.5 12, 32.5 12.5, 33 12.5))" +"POLYGON ((33.5 12.5, 33.5 12, 33 12, 33 12.5, 33.5 12.5))" +"POLYGON ((34 12.5, 34 12, 33.5 12, 33.5 12.5, 34 12.5))" +"POLYGON ((34.5 12.5, 34.5 12, 34 12, 34 12.5, 34.5 12.5))" +"POLYGON ((35 12.5, 35 12, 34.5 12, 34.5 12.5, 35 12.5))" +"POLYGON ((35.5 12.5, 35.5 12, 35 12, 35 12.5, 35.5 12.5))" +"POLYGON ((36 12.5, 36 12, 35.5 12, 35.5 12.5, 36 12.5))" +"POLYGON ((36.5 12.5, 36.5 12, 36 12, 36 12.5, 36.5 12.5))" +"POLYGON ((37 12.5, 37 12, 36.5 12, 36.5 12.5, 37 12.5))" +"POLYGON ((37.5 12.5, 37.5 12, 37 12, 37 12.5, 37.5 12.5))" +"POLYGON ((38 12.5, 38 12, 37.5 12, 37.5 12.5, 38 12.5))" +"POLYGON ((38.5 12.5, 38.5 12, 38 12, 38 12.5, 38.5 12.5))" +"POLYGON ((39 12.5, 39 12, 38.5 12, 38.5 12.5, 39 12.5))" +"POLYGON ((39.5 12.5, 39.5 12, 39 12, 39 12.5, 39.5 12.5))" +"POLYGON ((40 12.5, 40 12, 39.5 12, 39.5 12.5, 40 12.5))" +"POLYGON ((40.5 12.5, 40.5 12, 40 12, 40 12.5, 40.5 12.5))" +"POLYGON ((41 12.5, 41 12, 40.5 12, 40.5 12.5, 41 12.5))" +"POLYGON ((41.5 12.5, 41.5 12, 41 12, 41 12.5, 41.5 12.5))" +"POLYGON ((42 12.5, 42 12, 41.5 12, 41.5 12.5, 42 12.5))" +"POLYGON ((42.5 12.5, 42.5 12, 42 12, 42 12.5, 42.5 12.5))" +"POLYGON ((43 12.5, 43 12, 42.5 12, 42.5 12.5, 43 12.5))" +"POLYGON ((43.5 12.5, 43.5 12, 43 12, 43 12.5, 43.5 12.5))" +"POLYGON ((-16.5 13, -16.5 12.5, -17 12.5, -17 13, -16.5 13))" +"POLYGON ((-16 13, -16 12.5, -16.5 12.5, -16.5 13, -16 13))" +"POLYGON ((-15.5 13, -15.5 12.5, -16 12.5, -16 13, -15.5 13))" +"POLYGON ((-15 13, -15 12.5, -15.5 12.5, -15.5 13, -15 13))" +"POLYGON ((-14.5 13, -14.5 12.5, -15 12.5, -15 13, -14.5 13))" +"POLYGON ((-14 13, -14 12.5, -14.5 12.5, -14.5 13, -14 13))" +"POLYGON ((-13.5 13, -13.5 12.5, -14 12.5, -14 13, -13.5 13))" +"POLYGON ((-13 13, -13 12.5, -13.5 12.5, -13.5 13, -13 13))" +"POLYGON ((-12.5 13, -12.5 12.5, -13 12.5, -13 13, -12.5 13))" +"POLYGON ((-12 13, -12 12.5, -12.5 12.5, -12.5 13, -12 13))" +"POLYGON ((-11.5 13, -11.5 12.5, -12 12.5, -12 13, -11.5 13))" +"POLYGON ((-11 13, -11 12.5, -11.5 12.5, -11.5 13, -11 13))" +"POLYGON ((-10.5 13, -10.5 12.5, -11 12.5, -11 13, -10.5 13))" +"POLYGON ((-10 13, -10 12.5, -10.5 12.5, -10.5 13, -10 13))" +"POLYGON ((-9.5 13, -9.5 12.5, -10 12.5, -10 13, -9.5 13))" +"POLYGON ((-9 13, -9 12.5, -9.5 12.5, -9.5 13, -9 13))" +"POLYGON ((-8.5 13, -8.5 12.5, -9 12.5, -9 13, -8.5 13))" +"POLYGON ((-8 13, -8 12.5, -8.5 12.5, -8.5 13, -8 13))" +"POLYGON ((-7.5 13, -7.5 12.5, -8 12.5, -8 13, -7.5 13))" +"POLYGON ((-7 13, -7 12.5, -7.5 12.5, -7.5 13, -7 13))" +"POLYGON ((-6.5 13, -6.5 12.5, -7 12.5, -7 13, -6.5 13))" +"POLYGON ((-6 13, -6 12.5, -6.5 12.5, -6.5 13, -6 13))" +"POLYGON ((-5.5 13, -5.5 12.5, -6 12.5, -6 13, -5.5 13))" +"POLYGON ((-5 13, -5 12.5, -5.5 12.5, -5.5 13, -5 13))" +"POLYGON ((-4.5 13, -4.5 12.5, -5 12.5, -5 13, -4.5 13))" +"POLYGON ((-4 13, -4 12.5, -4.5 12.5, -4.5 13, -4 13))" +"POLYGON ((-3.5 13, -3.5 12.5, -4 12.5, -4 13, -3.5 13))" +"POLYGON ((-3 13, -3 12.5, -3.5 12.5, -3.5 13, -3 13))" +"POLYGON ((-2.5 13, -2.5 12.5, -3 12.5, -3 13, -2.5 13))" +"POLYGON ((-2 13, -2 12.5, -2.5 12.5, -2.5 13, -2 13))" +"POLYGON ((-1.5 13, -1.5 12.5, -2 12.5, -2 13, -1.5 13))" +"POLYGON ((-1 13, -1 12.5, -1.5 12.5, -1.5 13, -1 13))" +"POLYGON ((-0.5 13, -0.5 12.5, -1 12.5, -1 13, -0.5 13))" +"POLYGON ((0 13, 0 12.5, -0.5 12.5, -0.5 13, 0 13))" +"POLYGON ((0.5 13, 0.5 12.5, 0 12.5, 0 13, 0.5 13))" +"POLYGON ((1 13, 1 12.5, 0.5 12.5, 0.5 13, 1 13))" +"POLYGON ((1.5 13, 1.5 12.5, 1 12.5, 1 13, 1.5 13))" +"POLYGON ((2 13, 2 12.5, 1.5 12.5, 1.5 13, 2 13))" +"POLYGON ((2.5 13, 2.5 12.5, 2 12.5, 2 13, 2.5 13))" +"POLYGON ((3 13, 3 12.5, 2.5 12.5, 2.5 13, 3 13))" +"POLYGON ((3.5 13, 3.5 12.5, 3 12.5, 3 13, 3.5 13))" +"POLYGON ((4 13, 4 12.5, 3.5 12.5, 3.5 13, 4 13))" +"POLYGON ((4.5 13, 4.5 12.5, 4 12.5, 4 13, 4.5 13))" +"POLYGON ((5 13, 5 12.5, 4.5 12.5, 4.5 13, 5 13))" +"POLYGON ((5.5 13, 5.5 12.5, 5 12.5, 5 13, 5.5 13))" +"POLYGON ((6 13, 6 12.5, 5.5 12.5, 5.5 13, 6 13))" +"POLYGON ((6.5 13, 6.5 12.5, 6 12.5, 6 13, 6.5 13))" +"POLYGON ((7 13, 7 12.5, 6.5 12.5, 6.5 13, 7 13))" +"POLYGON ((7.5 13, 7.5 12.5, 7 12.5, 7 13, 7.5 13))" +"POLYGON ((8 13, 8 12.5, 7.5 12.5, 7.5 13, 8 13))" +"POLYGON ((8.5 13, 8.5 12.5, 8 12.5, 8 13, 8.5 13))" +"POLYGON ((9 13, 9 12.5, 8.5 12.5, 8.5 13, 9 13))" +"POLYGON ((9.5 13, 9.5 12.5, 9 12.5, 9 13, 9.5 13))" +"POLYGON ((10 13, 10 12.5, 9.5 12.5, 9.5 13, 10 13))" +"POLYGON ((10.5 13, 10.5 12.5, 10 12.5, 10 13, 10.5 13))" +"POLYGON ((11 13, 11 12.5, 10.5 12.5, 10.5 13, 11 13))" +"POLYGON ((11.5 13, 11.5 12.5, 11 12.5, 11 13, 11.5 13))" +"POLYGON ((12 13, 12 12.5, 11.5 12.5, 11.5 13, 12 13))" +"POLYGON ((12.5 13, 12.5 12.5, 12 12.5, 12 13, 12.5 13))" +"POLYGON ((13 13, 13 12.5, 12.5 12.5, 12.5 13, 13 13))" +"POLYGON ((13.5 13, 13.5 12.5, 13 12.5, 13 13, 13.5 13))" +"POLYGON ((14 13, 14 12.5, 13.5 12.5, 13.5 13, 14 13))" +"POLYGON ((14.5 13, 14.5 12.5, 14 12.5, 14 13, 14.5 13))" +"POLYGON ((15 13, 15 12.5, 14.5 12.5, 14.5 13, 15 13))" +"POLYGON ((15.5 13, 15.5 12.5, 15 12.5, 15 13, 15.5 13))" +"POLYGON ((16 13, 16 12.5, 15.5 12.5, 15.5 13, 16 13))" +"POLYGON ((16.5 13, 16.5 12.5, 16 12.5, 16 13, 16.5 13))" +"POLYGON ((17 13, 17 12.5, 16.5 12.5, 16.5 13, 17 13))" +"POLYGON ((17.5 13, 17.5 12.5, 17 12.5, 17 13, 17.5 13))" +"POLYGON ((18 13, 18 12.5, 17.5 12.5, 17.5 13, 18 13))" +"POLYGON ((18.5 13, 18.5 12.5, 18 12.5, 18 13, 18.5 13))" +"POLYGON ((19 13, 19 12.5, 18.5 12.5, 18.5 13, 19 13))" +"POLYGON ((19.5 13, 19.5 12.5, 19 12.5, 19 13, 19.5 13))" +"POLYGON ((20 13, 20 12.5, 19.5 12.5, 19.5 13, 20 13))" +"POLYGON ((20.5 13, 20.5 12.5, 20 12.5, 20 13, 20.5 13))" +"POLYGON ((21 13, 21 12.5, 20.5 12.5, 20.5 13, 21 13))" +"POLYGON ((21.5 13, 21.5 12.5, 21 12.5, 21 13, 21.5 13))" +"POLYGON ((22 13, 22 12.5, 21.5 12.5, 21.5 13, 22 13))" +"POLYGON ((22.5 13, 22.5 12.5, 22 12.5, 22 13, 22.5 13))" +"POLYGON ((23 13, 23 12.5, 22.5 12.5, 22.5 13, 23 13))" +"POLYGON ((23.5 13, 23.5 12.5, 23 12.5, 23 13, 23.5 13))" +"POLYGON ((24 13, 24 12.5, 23.5 12.5, 23.5 13, 24 13))" +"POLYGON ((24.5 13, 24.5 12.5, 24 12.5, 24 13, 24.5 13))" +"POLYGON ((25 13, 25 12.5, 24.5 12.5, 24.5 13, 25 13))" +"POLYGON ((25.5 13, 25.5 12.5, 25 12.5, 25 13, 25.5 13))" +"POLYGON ((26 13, 26 12.5, 25.5 12.5, 25.5 13, 26 13))" +"POLYGON ((26.5 13, 26.5 12.5, 26 12.5, 26 13, 26.5 13))" +"POLYGON ((27 13, 27 12.5, 26.5 12.5, 26.5 13, 27 13))" +"POLYGON ((27.5 13, 27.5 12.5, 27 12.5, 27 13, 27.5 13))" +"POLYGON ((28 13, 28 12.5, 27.5 12.5, 27.5 13, 28 13))" +"POLYGON ((28.5 13, 28.5 12.5, 28 12.5, 28 13, 28.5 13))" +"POLYGON ((29 13, 29 12.5, 28.5 12.5, 28.5 13, 29 13))" +"POLYGON ((29.5 13, 29.5 12.5, 29 12.5, 29 13, 29.5 13))" +"POLYGON ((30 13, 30 12.5, 29.5 12.5, 29.5 13, 30 13))" +"POLYGON ((30.5 13, 30.5 12.5, 30 12.5, 30 13, 30.5 13))" +"POLYGON ((31 13, 31 12.5, 30.5 12.5, 30.5 13, 31 13))" +"POLYGON ((31.5 13, 31.5 12.5, 31 12.5, 31 13, 31.5 13))" +"POLYGON ((32 13, 32 12.5, 31.5 12.5, 31.5 13, 32 13))" +"POLYGON ((32.5 13, 32.5 12.5, 32 12.5, 32 13, 32.5 13))" +"POLYGON ((33 13, 33 12.5, 32.5 12.5, 32.5 13, 33 13))" +"POLYGON ((33.5 13, 33.5 12.5, 33 12.5, 33 13, 33.5 13))" +"POLYGON ((34 13, 34 12.5, 33.5 12.5, 33.5 13, 34 13))" +"POLYGON ((34.5 13, 34.5 12.5, 34 12.5, 34 13, 34.5 13))" +"POLYGON ((35 13, 35 12.5, 34.5 12.5, 34.5 13, 35 13))" +"POLYGON ((35.5 13, 35.5 12.5, 35 12.5, 35 13, 35.5 13))" +"POLYGON ((36 13, 36 12.5, 35.5 12.5, 35.5 13, 36 13))" +"POLYGON ((36.5 13, 36.5 12.5, 36 12.5, 36 13, 36.5 13))" +"POLYGON ((37 13, 37 12.5, 36.5 12.5, 36.5 13, 37 13))" +"POLYGON ((37.5 13, 37.5 12.5, 37 12.5, 37 13, 37.5 13))" +"POLYGON ((38 13, 38 12.5, 37.5 12.5, 37.5 13, 38 13))" +"POLYGON ((38.5 13, 38.5 12.5, 38 12.5, 38 13, 38.5 13))" +"POLYGON ((39 13, 39 12.5, 38.5 12.5, 38.5 13, 39 13))" +"POLYGON ((39.5 13, 39.5 12.5, 39 12.5, 39 13, 39.5 13))" +"POLYGON ((40 13, 40 12.5, 39.5 12.5, 39.5 13, 40 13))" +"POLYGON ((40.5 13, 40.5 12.5, 40 12.5, 40 13, 40.5 13))" +"POLYGON ((41 13, 41 12.5, 40.5 12.5, 40.5 13, 41 13))" +"POLYGON ((41.5 13, 41.5 12.5, 41 12.5, 41 13, 41.5 13))" +"POLYGON ((42 13, 42 12.5, 41.5 12.5, 41.5 13, 42 13))" +"POLYGON ((42.5 13, 42.5 12.5, 42 12.5, 42 13, 42.5 13))" +"POLYGON ((43 13, 43 12.5, 42.5 12.5, 42.5 13, 43 13))" +"POLYGON ((-16.5 13.5, -16.5 13, -17 13, -17 13.5, -16.5 13.5))" +"POLYGON ((-16 13.5, -16 13, -16.5 13, -16.5 13.5, -16 13.5))" +"POLYGON ((-15.5 13.5, -15.5 13, -16 13, -16 13.5, -15.5 13.5))" +"POLYGON ((-15 13.5, -15 13, -15.5 13, -15.5 13.5, -15 13.5))" +"POLYGON ((-14.5 13.5, -14.5 13, -15 13, -15 13.5, -14.5 13.5))" +"POLYGON ((-14 13.5, -14 13, -14.5 13, -14.5 13.5, -14 13.5))" +"POLYGON ((-13.5 13.5, -13.5 13, -14 13, -14 13.5, -13.5 13.5))" +"POLYGON ((-13 13.5, -13 13, -13.5 13, -13.5 13.5, -13 13.5))" +"POLYGON ((-12.5 13.5, -12.5 13, -13 13, -13 13.5, -12.5 13.5))" +"POLYGON ((-12 13.5, -12 13, -12.5 13, -12.5 13.5, -12 13.5))" +"POLYGON ((-11.5 13.5, -11.5 13, -12 13, -12 13.5, -11.5 13.5))" +"POLYGON ((-11 13.5, -11 13, -11.5 13, -11.5 13.5, -11 13.5))" +"POLYGON ((-10.5 13.5, -10.5 13, -11 13, -11 13.5, -10.5 13.5))" +"POLYGON ((-10 13.5, -10 13, -10.5 13, -10.5 13.5, -10 13.5))" +"POLYGON ((-9.5 13.5, -9.5 13, -10 13, -10 13.5, -9.5 13.5))" +"POLYGON ((-9 13.5, -9 13, -9.5 13, -9.5 13.5, -9 13.5))" +"POLYGON ((-8.5 13.5, -8.5 13, -9 13, -9 13.5, -8.5 13.5))" +"POLYGON ((-8 13.5, -8 13, -8.5 13, -8.5 13.5, -8 13.5))" +"POLYGON ((-7.5 13.5, -7.5 13, -8 13, -8 13.5, -7.5 13.5))" +"POLYGON ((-7 13.5, -7 13, -7.5 13, -7.5 13.5, -7 13.5))" +"POLYGON ((-6.5 13.5, -6.5 13, -7 13, -7 13.5, -6.5 13.5))" +"POLYGON ((-6 13.5, -6 13, -6.5 13, -6.5 13.5, -6 13.5))" +"POLYGON ((-5.5 13.5, -5.5 13, -6 13, -6 13.5, -5.5 13.5))" +"POLYGON ((-5 13.5, -5 13, -5.5 13, -5.5 13.5, -5 13.5))" +"POLYGON ((-4.5 13.5, -4.5 13, -5 13, -5 13.5, -4.5 13.5))" +"POLYGON ((-4 13.5, -4 13, -4.5 13, -4.5 13.5, -4 13.5))" +"POLYGON ((-3.5 13.5, -3.5 13, -4 13, -4 13.5, -3.5 13.5))" +"POLYGON ((-3 13.5, -3 13, -3.5 13, -3.5 13.5, -3 13.5))" +"POLYGON ((-2.5 13.5, -2.5 13, -3 13, -3 13.5, -2.5 13.5))" +"POLYGON ((-2 13.5, -2 13, -2.5 13, -2.5 13.5, -2 13.5))" +"POLYGON ((-1.5 13.5, -1.5 13, -2 13, -2 13.5, -1.5 13.5))" +"POLYGON ((-1 13.5, -1 13, -1.5 13, -1.5 13.5, -1 13.5))" +"POLYGON ((-0.5 13.5, -0.5 13, -1 13, -1 13.5, -0.5 13.5))" +"POLYGON ((0 13.5, 0 13, -0.5 13, -0.5 13.5, 0 13.5))" +"POLYGON ((0.5 13.5, 0.5 13, 0 13, 0 13.5, 0.5 13.5))" +"POLYGON ((1 13.5, 1 13, 0.5 13, 0.5 13.5, 1 13.5))" +"POLYGON ((1.5 13.5, 1.5 13, 1 13, 1 13.5, 1.5 13.5))" +"POLYGON ((2 13.5, 2 13, 1.5 13, 1.5 13.5, 2 13.5))" +"POLYGON ((2.5 13.5, 2.5 13, 2 13, 2 13.5, 2.5 13.5))" +"POLYGON ((3 13.5, 3 13, 2.5 13, 2.5 13.5, 3 13.5))" +"POLYGON ((3.5 13.5, 3.5 13, 3 13, 3 13.5, 3.5 13.5))" +"POLYGON ((4 13.5, 4 13, 3.5 13, 3.5 13.5, 4 13.5))" +"POLYGON ((4.5 13.5, 4.5 13, 4 13, 4 13.5, 4.5 13.5))" +"POLYGON ((5 13.5, 5 13, 4.5 13, 4.5 13.5, 5 13.5))" +"POLYGON ((5.5 13.5, 5.5 13, 5 13, 5 13.5, 5.5 13.5))" +"POLYGON ((6 13.5, 6 13, 5.5 13, 5.5 13.5, 6 13.5))" +"POLYGON ((6.5 13.5, 6.5 13, 6 13, 6 13.5, 6.5 13.5))" +"POLYGON ((7 13.5, 7 13, 6.5 13, 6.5 13.5, 7 13.5))" +"POLYGON ((7.5 13.5, 7.5 13, 7 13, 7 13.5, 7.5 13.5))" +"POLYGON ((8 13.5, 8 13, 7.5 13, 7.5 13.5, 8 13.5))" +"POLYGON ((8.5 13.5, 8.5 13, 8 13, 8 13.5, 8.5 13.5))" +"POLYGON ((9 13.5, 9 13, 8.5 13, 8.5 13.5, 9 13.5))" +"POLYGON ((9.5 13.5, 9.5 13, 9 13, 9 13.5, 9.5 13.5))" +"POLYGON ((10 13.5, 10 13, 9.5 13, 9.5 13.5, 10 13.5))" +"POLYGON ((10.5 13.5, 10.5 13, 10 13, 10 13.5, 10.5 13.5))" +"POLYGON ((11 13.5, 11 13, 10.5 13, 10.5 13.5, 11 13.5))" +"POLYGON ((11.5 13.5, 11.5 13, 11 13, 11 13.5, 11.5 13.5))" +"POLYGON ((12 13.5, 12 13, 11.5 13, 11.5 13.5, 12 13.5))" +"POLYGON ((12.5 13.5, 12.5 13, 12 13, 12 13.5, 12.5 13.5))" +"POLYGON ((13 13.5, 13 13, 12.5 13, 12.5 13.5, 13 13.5))" +"POLYGON ((13.5 13.5, 13.5 13, 13 13, 13 13.5, 13.5 13.5))" +"POLYGON ((14 13.5, 14 13, 13.5 13, 13.5 13.5, 14 13.5))" +"POLYGON ((14.5 13.5, 14.5 13, 14 13, 14 13.5, 14.5 13.5))" +"POLYGON ((15 13.5, 15 13, 14.5 13, 14.5 13.5, 15 13.5))" +"POLYGON ((15.5 13.5, 15.5 13, 15 13, 15 13.5, 15.5 13.5))" +"POLYGON ((16 13.5, 16 13, 15.5 13, 15.5 13.5, 16 13.5))" +"POLYGON ((16.5 13.5, 16.5 13, 16 13, 16 13.5, 16.5 13.5))" +"POLYGON ((17 13.5, 17 13, 16.5 13, 16.5 13.5, 17 13.5))" +"POLYGON ((17.5 13.5, 17.5 13, 17 13, 17 13.5, 17.5 13.5))" +"POLYGON ((18 13.5, 18 13, 17.5 13, 17.5 13.5, 18 13.5))" +"POLYGON ((18.5 13.5, 18.5 13, 18 13, 18 13.5, 18.5 13.5))" +"POLYGON ((19 13.5, 19 13, 18.5 13, 18.5 13.5, 19 13.5))" +"POLYGON ((19.5 13.5, 19.5 13, 19 13, 19 13.5, 19.5 13.5))" +"POLYGON ((20 13.5, 20 13, 19.5 13, 19.5 13.5, 20 13.5))" +"POLYGON ((20.5 13.5, 20.5 13, 20 13, 20 13.5, 20.5 13.5))" +"POLYGON ((21 13.5, 21 13, 20.5 13, 20.5 13.5, 21 13.5))" +"POLYGON ((21.5 13.5, 21.5 13, 21 13, 21 13.5, 21.5 13.5))" +"POLYGON ((22 13.5, 22 13, 21.5 13, 21.5 13.5, 22 13.5))" +"POLYGON ((22.5 13.5, 22.5 13, 22 13, 22 13.5, 22.5 13.5))" +"POLYGON ((23 13.5, 23 13, 22.5 13, 22.5 13.5, 23 13.5))" +"POLYGON ((23.5 13.5, 23.5 13, 23 13, 23 13.5, 23.5 13.5))" +"POLYGON ((24 13.5, 24 13, 23.5 13, 23.5 13.5, 24 13.5))" +"POLYGON ((24.5 13.5, 24.5 13, 24 13, 24 13.5, 24.5 13.5))" +"POLYGON ((25 13.5, 25 13, 24.5 13, 24.5 13.5, 25 13.5))" +"POLYGON ((25.5 13.5, 25.5 13, 25 13, 25 13.5, 25.5 13.5))" +"POLYGON ((26 13.5, 26 13, 25.5 13, 25.5 13.5, 26 13.5))" +"POLYGON ((26.5 13.5, 26.5 13, 26 13, 26 13.5, 26.5 13.5))" +"POLYGON ((27 13.5, 27 13, 26.5 13, 26.5 13.5, 27 13.5))" +"POLYGON ((27.5 13.5, 27.5 13, 27 13, 27 13.5, 27.5 13.5))" +"POLYGON ((28 13.5, 28 13, 27.5 13, 27.5 13.5, 28 13.5))" +"POLYGON ((28.5 13.5, 28.5 13, 28 13, 28 13.5, 28.5 13.5))" +"POLYGON ((29 13.5, 29 13, 28.5 13, 28.5 13.5, 29 13.5))" +"POLYGON ((29.5 13.5, 29.5 13, 29 13, 29 13.5, 29.5 13.5))" +"POLYGON ((30 13.5, 30 13, 29.5 13, 29.5 13.5, 30 13.5))" +"POLYGON ((30.5 13.5, 30.5 13, 30 13, 30 13.5, 30.5 13.5))" +"POLYGON ((31 13.5, 31 13, 30.5 13, 30.5 13.5, 31 13.5))" +"POLYGON ((31.5 13.5, 31.5 13, 31 13, 31 13.5, 31.5 13.5))" +"POLYGON ((32 13.5, 32 13, 31.5 13, 31.5 13.5, 32 13.5))" +"POLYGON ((32.5 13.5, 32.5 13, 32 13, 32 13.5, 32.5 13.5))" +"POLYGON ((33 13.5, 33 13, 32.5 13, 32.5 13.5, 33 13.5))" +"POLYGON ((33.5 13.5, 33.5 13, 33 13, 33 13.5, 33.5 13.5))" +"POLYGON ((34 13.5, 34 13, 33.5 13, 33.5 13.5, 34 13.5))" +"POLYGON ((34.5 13.5, 34.5 13, 34 13, 34 13.5, 34.5 13.5))" +"POLYGON ((35 13.5, 35 13, 34.5 13, 34.5 13.5, 35 13.5))" +"POLYGON ((35.5 13.5, 35.5 13, 35 13, 35 13.5, 35.5 13.5))" +"POLYGON ((36 13.5, 36 13, 35.5 13, 35.5 13.5, 36 13.5))" +"POLYGON ((36.5 13.5, 36.5 13, 36 13, 36 13.5, 36.5 13.5))" +"POLYGON ((37 13.5, 37 13, 36.5 13, 36.5 13.5, 37 13.5))" +"POLYGON ((37.5 13.5, 37.5 13, 37 13, 37 13.5, 37.5 13.5))" +"POLYGON ((38 13.5, 38 13, 37.5 13, 37.5 13.5, 38 13.5))" +"POLYGON ((38.5 13.5, 38.5 13, 38 13, 38 13.5, 38.5 13.5))" +"POLYGON ((39 13.5, 39 13, 38.5 13, 38.5 13.5, 39 13.5))" +"POLYGON ((39.5 13.5, 39.5 13, 39 13, 39 13.5, 39.5 13.5))" +"POLYGON ((40 13.5, 40 13, 39.5 13, 39.5 13.5, 40 13.5))" +"POLYGON ((40.5 13.5, 40.5 13, 40 13, 40 13.5, 40.5 13.5))" +"POLYGON ((41 13.5, 41 13, 40.5 13, 40.5 13.5, 41 13.5))" +"POLYGON ((41.5 13.5, 41.5 13, 41 13, 41 13.5, 41.5 13.5))" +"POLYGON ((42 13.5, 42 13, 41.5 13, 41.5 13.5, 42 13.5))" +"POLYGON ((42.5 13.5, 42.5 13, 42 13, 42 13.5, 42.5 13.5))" +"POLYGON ((-16 14, -16 13.5, -16.5 13.5, -16.5 14, -16 14))" +"POLYGON ((-15.5 14, -15.5 13.5, -16 13.5, -16 14, -15.5 14))" +"POLYGON ((-15 14, -15 13.5, -15.5 13.5, -15.5 14, -15 14))" +"POLYGON ((-14.5 14, -14.5 13.5, -15 13.5, -15 14, -14.5 14))" +"POLYGON ((-14 14, -14 13.5, -14.5 13.5, -14.5 14, -14 14))" +"POLYGON ((-13.5 14, -13.5 13.5, -14 13.5, -14 14, -13.5 14))" +"POLYGON ((-13 14, -13 13.5, -13.5 13.5, -13.5 14, -13 14))" +"POLYGON ((-12.5 14, -12.5 13.5, -13 13.5, -13 14, -12.5 14))" +"POLYGON ((-12 14, -12 13.5, -12.5 13.5, -12.5 14, -12 14))" +"POLYGON ((-11.5 14, -11.5 13.5, -12 13.5, -12 14, -11.5 14))" +"POLYGON ((-11 14, -11 13.5, -11.5 13.5, -11.5 14, -11 14))" +"POLYGON ((-10.5 14, -10.5 13.5, -11 13.5, -11 14, -10.5 14))" +"POLYGON ((-10 14, -10 13.5, -10.5 13.5, -10.5 14, -10 14))" +"POLYGON ((-9.5 14, -9.5 13.5, -10 13.5, -10 14, -9.5 14))" +"POLYGON ((-9 14, -9 13.5, -9.5 13.5, -9.5 14, -9 14))" +"POLYGON ((-8.5 14, -8.5 13.5, -9 13.5, -9 14, -8.5 14))" +"POLYGON ((-8 14, -8 13.5, -8.5 13.5, -8.5 14, -8 14))" +"POLYGON ((-7.5 14, -7.5 13.5, -8 13.5, -8 14, -7.5 14))" +"POLYGON ((-7 14, -7 13.5, -7.5 13.5, -7.5 14, -7 14))" +"POLYGON ((-6.5 14, -6.5 13.5, -7 13.5, -7 14, -6.5 14))" +"POLYGON ((-6 14, -6 13.5, -6.5 13.5, -6.5 14, -6 14))" +"POLYGON ((-5.5 14, -5.5 13.5, -6 13.5, -6 14, -5.5 14))" +"POLYGON ((-5 14, -5 13.5, -5.5 13.5, -5.5 14, -5 14))" +"POLYGON ((-4.5 14, -4.5 13.5, -5 13.5, -5 14, -4.5 14))" +"POLYGON ((-4 14, -4 13.5, -4.5 13.5, -4.5 14, -4 14))" +"POLYGON ((-3.5 14, -3.5 13.5, -4 13.5, -4 14, -3.5 14))" +"POLYGON ((-3 14, -3 13.5, -3.5 13.5, -3.5 14, -3 14))" +"POLYGON ((-2.5 14, -2.5 13.5, -3 13.5, -3 14, -2.5 14))" +"POLYGON ((-2 14, -2 13.5, -2.5 13.5, -2.5 14, -2 14))" +"POLYGON ((-1.5 14, -1.5 13.5, -2 13.5, -2 14, -1.5 14))" +"POLYGON ((-1 14, -1 13.5, -1.5 13.5, -1.5 14, -1 14))" +"POLYGON ((-0.5 14, -0.5 13.5, -1 13.5, -1 14, -0.5 14))" +"POLYGON ((0 14, 0 13.5, -0.5 13.5, -0.5 14, 0 14))" +"POLYGON ((0.5 14, 0.5 13.5, 0 13.5, 0 14, 0.5 14))" +"POLYGON ((1 14, 1 13.5, 0.5 13.5, 0.5 14, 1 14))" +"POLYGON ((1.5 14, 1.5 13.5, 1 13.5, 1 14, 1.5 14))" +"POLYGON ((2 14, 2 13.5, 1.5 13.5, 1.5 14, 2 14))" +"POLYGON ((2.5 14, 2.5 13.5, 2 13.5, 2 14, 2.5 14))" +"POLYGON ((3 14, 3 13.5, 2.5 13.5, 2.5 14, 3 14))" +"POLYGON ((3.5 14, 3.5 13.5, 3 13.5, 3 14, 3.5 14))" +"POLYGON ((4 14, 4 13.5, 3.5 13.5, 3.5 14, 4 14))" +"POLYGON ((4.5 14, 4.5 13.5, 4 13.5, 4 14, 4.5 14))" +"POLYGON ((5 14, 5 13.5, 4.5 13.5, 4.5 14, 5 14))" +"POLYGON ((5.5 14, 5.5 13.5, 5 13.5, 5 14, 5.5 14))" +"POLYGON ((6 14, 6 13.5, 5.5 13.5, 5.5 14, 6 14))" +"POLYGON ((6.5 14, 6.5 13.5, 6 13.5, 6 14, 6.5 14))" +"POLYGON ((7 14, 7 13.5, 6.5 13.5, 6.5 14, 7 14))" +"POLYGON ((7.5 14, 7.5 13.5, 7 13.5, 7 14, 7.5 14))" +"POLYGON ((8 14, 8 13.5, 7.5 13.5, 7.5 14, 8 14))" +"POLYGON ((8.5 14, 8.5 13.5, 8 13.5, 8 14, 8.5 14))" +"POLYGON ((9 14, 9 13.5, 8.5 13.5, 8.5 14, 9 14))" +"POLYGON ((9.5 14, 9.5 13.5, 9 13.5, 9 14, 9.5 14))" +"POLYGON ((10 14, 10 13.5, 9.5 13.5, 9.5 14, 10 14))" +"POLYGON ((10.5 14, 10.5 13.5, 10 13.5, 10 14, 10.5 14))" +"POLYGON ((11 14, 11 13.5, 10.5 13.5, 10.5 14, 11 14))" +"POLYGON ((11.5 14, 11.5 13.5, 11 13.5, 11 14, 11.5 14))" +"POLYGON ((12 14, 12 13.5, 11.5 13.5, 11.5 14, 12 14))" +"POLYGON ((12.5 14, 12.5 13.5, 12 13.5, 12 14, 12.5 14))" +"POLYGON ((13 14, 13 13.5, 12.5 13.5, 12.5 14, 13 14))" +"POLYGON ((13.5 14, 13.5 13.5, 13 13.5, 13 14, 13.5 14))" +"POLYGON ((14 14, 14 13.5, 13.5 13.5, 13.5 14, 14 14))" +"POLYGON ((14.5 14, 14.5 13.5, 14 13.5, 14 14, 14.5 14))" +"POLYGON ((15 14, 15 13.5, 14.5 13.5, 14.5 14, 15 14))" +"POLYGON ((15.5 14, 15.5 13.5, 15 13.5, 15 14, 15.5 14))" +"POLYGON ((16 14, 16 13.5, 15.5 13.5, 15.5 14, 16 14))" +"POLYGON ((16.5 14, 16.5 13.5, 16 13.5, 16 14, 16.5 14))" +"POLYGON ((17 14, 17 13.5, 16.5 13.5, 16.5 14, 17 14))" +"POLYGON ((17.5 14, 17.5 13.5, 17 13.5, 17 14, 17.5 14))" +"POLYGON ((18 14, 18 13.5, 17.5 13.5, 17.5 14, 18 14))" +"POLYGON ((18.5 14, 18.5 13.5, 18 13.5, 18 14, 18.5 14))" +"POLYGON ((19 14, 19 13.5, 18.5 13.5, 18.5 14, 19 14))" +"POLYGON ((19.5 14, 19.5 13.5, 19 13.5, 19 14, 19.5 14))" +"POLYGON ((20 14, 20 13.5, 19.5 13.5, 19.5 14, 20 14))" +"POLYGON ((20.5 14, 20.5 13.5, 20 13.5, 20 14, 20.5 14))" +"POLYGON ((21 14, 21 13.5, 20.5 13.5, 20.5 14, 21 14))" +"POLYGON ((21.5 14, 21.5 13.5, 21 13.5, 21 14, 21.5 14))" +"POLYGON ((22 14, 22 13.5, 21.5 13.5, 21.5 14, 22 14))" +"POLYGON ((22.5 14, 22.5 13.5, 22 13.5, 22 14, 22.5 14))" +"POLYGON ((23 14, 23 13.5, 22.5 13.5, 22.5 14, 23 14))" +"POLYGON ((23.5 14, 23.5 13.5, 23 13.5, 23 14, 23.5 14))" +"POLYGON ((24 14, 24 13.5, 23.5 13.5, 23.5 14, 24 14))" +"POLYGON ((24.5 14, 24.5 13.5, 24 13.5, 24 14, 24.5 14))" +"POLYGON ((25 14, 25 13.5, 24.5 13.5, 24.5 14, 25 14))" +"POLYGON ((25.5 14, 25.5 13.5, 25 13.5, 25 14, 25.5 14))" +"POLYGON ((26 14, 26 13.5, 25.5 13.5, 25.5 14, 26 14))" +"POLYGON ((26.5 14, 26.5 13.5, 26 13.5, 26 14, 26.5 14))" +"POLYGON ((27 14, 27 13.5, 26.5 13.5, 26.5 14, 27 14))" +"POLYGON ((27.5 14, 27.5 13.5, 27 13.5, 27 14, 27.5 14))" +"POLYGON ((28 14, 28 13.5, 27.5 13.5, 27.5 14, 28 14))" +"POLYGON ((28.5 14, 28.5 13.5, 28 13.5, 28 14, 28.5 14))" +"POLYGON ((29 14, 29 13.5, 28.5 13.5, 28.5 14, 29 14))" +"POLYGON ((29.5 14, 29.5 13.5, 29 13.5, 29 14, 29.5 14))" +"POLYGON ((30 14, 30 13.5, 29.5 13.5, 29.5 14, 30 14))" +"POLYGON ((30.5 14, 30.5 13.5, 30 13.5, 30 14, 30.5 14))" +"POLYGON ((31 14, 31 13.5, 30.5 13.5, 30.5 14, 31 14))" +"POLYGON ((31.5 14, 31.5 13.5, 31 13.5, 31 14, 31.5 14))" +"POLYGON ((32 14, 32 13.5, 31.5 13.5, 31.5 14, 32 14))" +"POLYGON ((32.5 14, 32.5 13.5, 32 13.5, 32 14, 32.5 14))" +"POLYGON ((33 14, 33 13.5, 32.5 13.5, 32.5 14, 33 14))" +"POLYGON ((33.5 14, 33.5 13.5, 33 13.5, 33 14, 33.5 14))" +"POLYGON ((34 14, 34 13.5, 33.5 13.5, 33.5 14, 34 14))" +"POLYGON ((34.5 14, 34.5 13.5, 34 13.5, 34 14, 34.5 14))" +"POLYGON ((35 14, 35 13.5, 34.5 13.5, 34.5 14, 35 14))" +"POLYGON ((35.5 14, 35.5 13.5, 35 13.5, 35 14, 35.5 14))" +"POLYGON ((36 14, 36 13.5, 35.5 13.5, 35.5 14, 36 14))" +"POLYGON ((36.5 14, 36.5 13.5, 36 13.5, 36 14, 36.5 14))" +"POLYGON ((37 14, 37 13.5, 36.5 13.5, 36.5 14, 37 14))" +"POLYGON ((37.5 14, 37.5 13.5, 37 13.5, 37 14, 37.5 14))" +"POLYGON ((38 14, 38 13.5, 37.5 13.5, 37.5 14, 38 14))" +"POLYGON ((38.5 14, 38.5 13.5, 38 13.5, 38 14, 38.5 14))" +"POLYGON ((39 14, 39 13.5, 38.5 13.5, 38.5 14, 39 14))" +"POLYGON ((39.5 14, 39.5 13.5, 39 13.5, 39 14, 39.5 14))" +"POLYGON ((40 14, 40 13.5, 39.5 13.5, 39.5 14, 40 14))" +"POLYGON ((40.5 14, 40.5 13.5, 40 13.5, 40 14, 40.5 14))" +"POLYGON ((41 14, 41 13.5, 40.5 13.5, 40.5 14, 41 14))" +"POLYGON ((41.5 14, 41.5 13.5, 41 13.5, 41 14, 41.5 14))" +"POLYGON ((42 14, 42 13.5, 41.5 13.5, 41.5 14, 42 14))" +"POLYGON ((-16.5 14.5, -16.5 14, -17 14, -17 14.5, -16.5 14.5))" +"POLYGON ((-16 14.5, -16 14, -16.5 14, -16.5 14.5, -16 14.5))" +"POLYGON ((-15.5 14.5, -15.5 14, -16 14, -16 14.5, -15.5 14.5))" +"POLYGON ((-15 14.5, -15 14, -15.5 14, -15.5 14.5, -15 14.5))" +"POLYGON ((-14.5 14.5, -14.5 14, -15 14, -15 14.5, -14.5 14.5))" +"POLYGON ((-14 14.5, -14 14, -14.5 14, -14.5 14.5, -14 14.5))" +"POLYGON ((-13.5 14.5, -13.5 14, -14 14, -14 14.5, -13.5 14.5))" +"POLYGON ((-13 14.5, -13 14, -13.5 14, -13.5 14.5, -13 14.5))" +"POLYGON ((-12.5 14.5, -12.5 14, -13 14, -13 14.5, -12.5 14.5))" +"POLYGON ((-12 14.5, -12 14, -12.5 14, -12.5 14.5, -12 14.5))" +"POLYGON ((-11.5 14.5, -11.5 14, -12 14, -12 14.5, -11.5 14.5))" +"POLYGON ((-11 14.5, -11 14, -11.5 14, -11.5 14.5, -11 14.5))" +"POLYGON ((-10.5 14.5, -10.5 14, -11 14, -11 14.5, -10.5 14.5))" +"POLYGON ((-10 14.5, -10 14, -10.5 14, -10.5 14.5, -10 14.5))" +"POLYGON ((-9.5 14.5, -9.5 14, -10 14, -10 14.5, -9.5 14.5))" +"POLYGON ((-9 14.5, -9 14, -9.5 14, -9.5 14.5, -9 14.5))" +"POLYGON ((-8.5 14.5, -8.5 14, -9 14, -9 14.5, -8.5 14.5))" +"POLYGON ((-8 14.5, -8 14, -8.5 14, -8.5 14.5, -8 14.5))" +"POLYGON ((-7.5 14.5, -7.5 14, -8 14, -8 14.5, -7.5 14.5))" +"POLYGON ((-7 14.5, -7 14, -7.5 14, -7.5 14.5, -7 14.5))" +"POLYGON ((-6.5 14.5, -6.5 14, -7 14, -7 14.5, -6.5 14.5))" +"POLYGON ((-6 14.5, -6 14, -6.5 14, -6.5 14.5, -6 14.5))" +"POLYGON ((-5.5 14.5, -5.5 14, -6 14, -6 14.5, -5.5 14.5))" +"POLYGON ((-5 14.5, -5 14, -5.5 14, -5.5 14.5, -5 14.5))" +"POLYGON ((-4.5 14.5, -4.5 14, -5 14, -5 14.5, -4.5 14.5))" +"POLYGON ((-4 14.5, -4 14, -4.5 14, -4.5 14.5, -4 14.5))" +"POLYGON ((-3.5 14.5, -3.5 14, -4 14, -4 14.5, -3.5 14.5))" +"POLYGON ((-3 14.5, -3 14, -3.5 14, -3.5 14.5, -3 14.5))" +"POLYGON ((-2.5 14.5, -2.5 14, -3 14, -3 14.5, -2.5 14.5))" +"POLYGON ((-2 14.5, -2 14, -2.5 14, -2.5 14.5, -2 14.5))" +"POLYGON ((-1.5 14.5, -1.5 14, -2 14, -2 14.5, -1.5 14.5))" +"POLYGON ((-1 14.5, -1 14, -1.5 14, -1.5 14.5, -1 14.5))" +"POLYGON ((-0.5 14.5, -0.5 14, -1 14, -1 14.5, -0.5 14.5))" +"POLYGON ((0 14.5, 0 14, -0.5 14, -0.5 14.5, 0 14.5))" +"POLYGON ((0.5 14.5, 0.5 14, 0 14, 0 14.5, 0.5 14.5))" +"POLYGON ((1 14.5, 1 14, 0.5 14, 0.5 14.5, 1 14.5))" +"POLYGON ((1.5 14.5, 1.5 14, 1 14, 1 14.5, 1.5 14.5))" +"POLYGON ((2 14.5, 2 14, 1.5 14, 1.5 14.5, 2 14.5))" +"POLYGON ((2.5 14.5, 2.5 14, 2 14, 2 14.5, 2.5 14.5))" +"POLYGON ((3 14.5, 3 14, 2.5 14, 2.5 14.5, 3 14.5))" +"POLYGON ((3.5 14.5, 3.5 14, 3 14, 3 14.5, 3.5 14.5))" +"POLYGON ((4 14.5, 4 14, 3.5 14, 3.5 14.5, 4 14.5))" +"POLYGON ((4.5 14.5, 4.5 14, 4 14, 4 14.5, 4.5 14.5))" +"POLYGON ((5 14.5, 5 14, 4.5 14, 4.5 14.5, 5 14.5))" +"POLYGON ((5.5 14.5, 5.5 14, 5 14, 5 14.5, 5.5 14.5))" +"POLYGON ((6 14.5, 6 14, 5.5 14, 5.5 14.5, 6 14.5))" +"POLYGON ((6.5 14.5, 6.5 14, 6 14, 6 14.5, 6.5 14.5))" +"POLYGON ((7 14.5, 7 14, 6.5 14, 6.5 14.5, 7 14.5))" +"POLYGON ((7.5 14.5, 7.5 14, 7 14, 7 14.5, 7.5 14.5))" +"POLYGON ((8 14.5, 8 14, 7.5 14, 7.5 14.5, 8 14.5))" +"POLYGON ((8.5 14.5, 8.5 14, 8 14, 8 14.5, 8.5 14.5))" +"POLYGON ((9 14.5, 9 14, 8.5 14, 8.5 14.5, 9 14.5))" +"POLYGON ((9.5 14.5, 9.5 14, 9 14, 9 14.5, 9.5 14.5))" +"POLYGON ((10 14.5, 10 14, 9.5 14, 9.5 14.5, 10 14.5))" +"POLYGON ((10.5 14.5, 10.5 14, 10 14, 10 14.5, 10.5 14.5))" +"POLYGON ((11 14.5, 11 14, 10.5 14, 10.5 14.5, 11 14.5))" +"POLYGON ((11.5 14.5, 11.5 14, 11 14, 11 14.5, 11.5 14.5))" +"POLYGON ((12 14.5, 12 14, 11.5 14, 11.5 14.5, 12 14.5))" +"POLYGON ((12.5 14.5, 12.5 14, 12 14, 12 14.5, 12.5 14.5))" +"POLYGON ((13 14.5, 13 14, 12.5 14, 12.5 14.5, 13 14.5))" +"POLYGON ((13.5 14.5, 13.5 14, 13 14, 13 14.5, 13.5 14.5))" +"POLYGON ((14 14.5, 14 14, 13.5 14, 13.5 14.5, 14 14.5))" +"POLYGON ((14.5 14.5, 14.5 14, 14 14, 14 14.5, 14.5 14.5))" +"POLYGON ((15 14.5, 15 14, 14.5 14, 14.5 14.5, 15 14.5))" +"POLYGON ((15.5 14.5, 15.5 14, 15 14, 15 14.5, 15.5 14.5))" +"POLYGON ((16 14.5, 16 14, 15.5 14, 15.5 14.5, 16 14.5))" +"POLYGON ((16.5 14.5, 16.5 14, 16 14, 16 14.5, 16.5 14.5))" +"POLYGON ((17 14.5, 17 14, 16.5 14, 16.5 14.5, 17 14.5))" +"POLYGON ((17.5 14.5, 17.5 14, 17 14, 17 14.5, 17.5 14.5))" +"POLYGON ((18 14.5, 18 14, 17.5 14, 17.5 14.5, 18 14.5))" +"POLYGON ((18.5 14.5, 18.5 14, 18 14, 18 14.5, 18.5 14.5))" +"POLYGON ((19 14.5, 19 14, 18.5 14, 18.5 14.5, 19 14.5))" +"POLYGON ((19.5 14.5, 19.5 14, 19 14, 19 14.5, 19.5 14.5))" +"POLYGON ((20 14.5, 20 14, 19.5 14, 19.5 14.5, 20 14.5))" +"POLYGON ((20.5 14.5, 20.5 14, 20 14, 20 14.5, 20.5 14.5))" +"POLYGON ((21 14.5, 21 14, 20.5 14, 20.5 14.5, 21 14.5))" +"POLYGON ((21.5 14.5, 21.5 14, 21 14, 21 14.5, 21.5 14.5))" +"POLYGON ((22 14.5, 22 14, 21.5 14, 21.5 14.5, 22 14.5))" +"POLYGON ((22.5 14.5, 22.5 14, 22 14, 22 14.5, 22.5 14.5))" +"POLYGON ((23 14.5, 23 14, 22.5 14, 22.5 14.5, 23 14.5))" +"POLYGON ((23.5 14.5, 23.5 14, 23 14, 23 14.5, 23.5 14.5))" +"POLYGON ((24 14.5, 24 14, 23.5 14, 23.5 14.5, 24 14.5))" +"POLYGON ((24.5 14.5, 24.5 14, 24 14, 24 14.5, 24.5 14.5))" +"POLYGON ((25 14.5, 25 14, 24.5 14, 24.5 14.5, 25 14.5))" +"POLYGON ((25.5 14.5, 25.5 14, 25 14, 25 14.5, 25.5 14.5))" +"POLYGON ((26 14.5, 26 14, 25.5 14, 25.5 14.5, 26 14.5))" +"POLYGON ((26.5 14.5, 26.5 14, 26 14, 26 14.5, 26.5 14.5))" +"POLYGON ((27 14.5, 27 14, 26.5 14, 26.5 14.5, 27 14.5))" +"POLYGON ((27.5 14.5, 27.5 14, 27 14, 27 14.5, 27.5 14.5))" +"POLYGON ((28 14.5, 28 14, 27.5 14, 27.5 14.5, 28 14.5))" +"POLYGON ((28.5 14.5, 28.5 14, 28 14, 28 14.5, 28.5 14.5))" +"POLYGON ((29 14.5, 29 14, 28.5 14, 28.5 14.5, 29 14.5))" +"POLYGON ((29.5 14.5, 29.5 14, 29 14, 29 14.5, 29.5 14.5))" +"POLYGON ((30 14.5, 30 14, 29.5 14, 29.5 14.5, 30 14.5))" +"POLYGON ((30.5 14.5, 30.5 14, 30 14, 30 14.5, 30.5 14.5))" +"POLYGON ((31 14.5, 31 14, 30.5 14, 30.5 14.5, 31 14.5))" +"POLYGON ((31.5 14.5, 31.5 14, 31 14, 31 14.5, 31.5 14.5))" +"POLYGON ((32 14.5, 32 14, 31.5 14, 31.5 14.5, 32 14.5))" +"POLYGON ((32.5 14.5, 32.5 14, 32 14, 32 14.5, 32.5 14.5))" +"POLYGON ((33 14.5, 33 14, 32.5 14, 32.5 14.5, 33 14.5))" +"POLYGON ((33.5 14.5, 33.5 14, 33 14, 33 14.5, 33.5 14.5))" +"POLYGON ((34 14.5, 34 14, 33.5 14, 33.5 14.5, 34 14.5))" +"POLYGON ((34.5 14.5, 34.5 14, 34 14, 34 14.5, 34.5 14.5))" +"POLYGON ((35 14.5, 35 14, 34.5 14, 34.5 14.5, 35 14.5))" +"POLYGON ((35.5 14.5, 35.5 14, 35 14, 35 14.5, 35.5 14.5))" +"POLYGON ((36 14.5, 36 14, 35.5 14, 35.5 14.5, 36 14.5))" +"POLYGON ((36.5 14.5, 36.5 14, 36 14, 36 14.5, 36.5 14.5))" +"POLYGON ((37 14.5, 37 14, 36.5 14, 36.5 14.5, 37 14.5))" +"POLYGON ((37.5 14.5, 37.5 14, 37 14, 37 14.5, 37.5 14.5))" +"POLYGON ((38 14.5, 38 14, 37.5 14, 37.5 14.5, 38 14.5))" +"POLYGON ((38.5 14.5, 38.5 14, 38 14, 38 14.5, 38.5 14.5))" +"POLYGON ((39 14.5, 39 14, 38.5 14, 38.5 14.5, 39 14.5))" +"POLYGON ((39.5 14.5, 39.5 14, 39 14, 39 14.5, 39.5 14.5))" +"POLYGON ((40 14.5, 40 14, 39.5 14, 39.5 14.5, 40 14.5))" +"POLYGON ((40.5 14.5, 40.5 14, 40 14, 40 14.5, 40.5 14.5))" +"POLYGON ((41 14.5, 41 14, 40.5 14, 40.5 14.5, 41 14.5))" +"POLYGON ((41.5 14.5, 41.5 14, 41 14, 41 14.5, 41.5 14.5))" +"POLYGON ((-17 15, -17 14.5, -17.5 14.5, -17.5 15, -17 15))" +"POLYGON ((-16.5 15, -16.5 14.5, -17 14.5, -17 15, -16.5 15))" +"POLYGON ((-16 15, -16 14.5, -16.5 14.5, -16.5 15, -16 15))" +"POLYGON ((-15.5 15, -15.5 14.5, -16 14.5, -16 15, -15.5 15))" +"POLYGON ((-15 15, -15 14.5, -15.5 14.5, -15.5 15, -15 15))" +"POLYGON ((-14.5 15, -14.5 14.5, -15 14.5, -15 15, -14.5 15))" +"POLYGON ((-14 15, -14 14.5, -14.5 14.5, -14.5 15, -14 15))" +"POLYGON ((-13.5 15, -13.5 14.5, -14 14.5, -14 15, -13.5 15))" +"POLYGON ((-13 15, -13 14.5, -13.5 14.5, -13.5 15, -13 15))" +"POLYGON ((-12.5 15, -12.5 14.5, -13 14.5, -13 15, -12.5 15))" +"POLYGON ((-12 15, -12 14.5, -12.5 14.5, -12.5 15, -12 15))" +"POLYGON ((-11.5 15, -11.5 14.5, -12 14.5, -12 15, -11.5 15))" +"POLYGON ((-11 15, -11 14.5, -11.5 14.5, -11.5 15, -11 15))" +"POLYGON ((-10.5 15, -10.5 14.5, -11 14.5, -11 15, -10.5 15))" +"POLYGON ((-10 15, -10 14.5, -10.5 14.5, -10.5 15, -10 15))" +"POLYGON ((-9.5 15, -9.5 14.5, -10 14.5, -10 15, -9.5 15))" +"POLYGON ((-9 15, -9 14.5, -9.5 14.5, -9.5 15, -9 15))" +"POLYGON ((-8.5 15, -8.5 14.5, -9 14.5, -9 15, -8.5 15))" +"POLYGON ((-8 15, -8 14.5, -8.5 14.5, -8.5 15, -8 15))" +"POLYGON ((-7.5 15, -7.5 14.5, -8 14.5, -8 15, -7.5 15))" +"POLYGON ((-7 15, -7 14.5, -7.5 14.5, -7.5 15, -7 15))" +"POLYGON ((-6.5 15, -6.5 14.5, -7 14.5, -7 15, -6.5 15))" +"POLYGON ((-6 15, -6 14.5, -6.5 14.5, -6.5 15, -6 15))" +"POLYGON ((-5.5 15, -5.5 14.5, -6 14.5, -6 15, -5.5 15))" +"POLYGON ((-5 15, -5 14.5, -5.5 14.5, -5.5 15, -5 15))" +"POLYGON ((-4.5 15, -4.5 14.5, -5 14.5, -5 15, -4.5 15))" +"POLYGON ((-4 15, -4 14.5, -4.5 14.5, -4.5 15, -4 15))" +"POLYGON ((-3.5 15, -3.5 14.5, -4 14.5, -4 15, -3.5 15))" +"POLYGON ((-3 15, -3 14.5, -3.5 14.5, -3.5 15, -3 15))" +"POLYGON ((-2.5 15, -2.5 14.5, -3 14.5, -3 15, -2.5 15))" +"POLYGON ((-2 15, -2 14.5, -2.5 14.5, -2.5 15, -2 15))" +"POLYGON ((-1.5 15, -1.5 14.5, -2 14.5, -2 15, -1.5 15))" +"POLYGON ((-1 15, -1 14.5, -1.5 14.5, -1.5 15, -1 15))" +"POLYGON ((-0.5 15, -0.5 14.5, -1 14.5, -1 15, -0.5 15))" +"POLYGON ((0 15, 0 14.5, -0.5 14.5, -0.5 15, 0 15))" +"POLYGON ((0.5 15, 0.5 14.5, 0 14.5, 0 15, 0.5 15))" +"POLYGON ((1 15, 1 14.5, 0.5 14.5, 0.5 15, 1 15))" +"POLYGON ((1.5 15, 1.5 14.5, 1 14.5, 1 15, 1.5 15))" +"POLYGON ((2 15, 2 14.5, 1.5 14.5, 1.5 15, 2 15))" +"POLYGON ((2.5 15, 2.5 14.5, 2 14.5, 2 15, 2.5 15))" +"POLYGON ((3 15, 3 14.5, 2.5 14.5, 2.5 15, 3 15))" +"POLYGON ((3.5 15, 3.5 14.5, 3 14.5, 3 15, 3.5 15))" +"POLYGON ((4 15, 4 14.5, 3.5 14.5, 3.5 15, 4 15))" +"POLYGON ((4.5 15, 4.5 14.5, 4 14.5, 4 15, 4.5 15))" +"POLYGON ((5 15, 5 14.5, 4.5 14.5, 4.5 15, 5 15))" +"POLYGON ((5.5 15, 5.5 14.5, 5 14.5, 5 15, 5.5 15))" +"POLYGON ((6 15, 6 14.5, 5.5 14.5, 5.5 15, 6 15))" +"POLYGON ((6.5 15, 6.5 14.5, 6 14.5, 6 15, 6.5 15))" +"POLYGON ((7 15, 7 14.5, 6.5 14.5, 6.5 15, 7 15))" +"POLYGON ((7.5 15, 7.5 14.5, 7 14.5, 7 15, 7.5 15))" +"POLYGON ((8 15, 8 14.5, 7.5 14.5, 7.5 15, 8 15))" +"POLYGON ((8.5 15, 8.5 14.5, 8 14.5, 8 15, 8.5 15))" +"POLYGON ((9 15, 9 14.5, 8.5 14.5, 8.5 15, 9 15))" +"POLYGON ((9.5 15, 9.5 14.5, 9 14.5, 9 15, 9.5 15))" +"POLYGON ((10 15, 10 14.5, 9.5 14.5, 9.5 15, 10 15))" +"POLYGON ((10.5 15, 10.5 14.5, 10 14.5, 10 15, 10.5 15))" +"POLYGON ((11 15, 11 14.5, 10.5 14.5, 10.5 15, 11 15))" +"POLYGON ((11.5 15, 11.5 14.5, 11 14.5, 11 15, 11.5 15))" +"POLYGON ((12 15, 12 14.5, 11.5 14.5, 11.5 15, 12 15))" +"POLYGON ((12.5 15, 12.5 14.5, 12 14.5, 12 15, 12.5 15))" +"POLYGON ((13 15, 13 14.5, 12.5 14.5, 12.5 15, 13 15))" +"POLYGON ((13.5 15, 13.5 14.5, 13 14.5, 13 15, 13.5 15))" +"POLYGON ((14 15, 14 14.5, 13.5 14.5, 13.5 15, 14 15))" +"POLYGON ((14.5 15, 14.5 14.5, 14 14.5, 14 15, 14.5 15))" +"POLYGON ((15 15, 15 14.5, 14.5 14.5, 14.5 15, 15 15))" +"POLYGON ((15.5 15, 15.5 14.5, 15 14.5, 15 15, 15.5 15))" +"POLYGON ((16 15, 16 14.5, 15.5 14.5, 15.5 15, 16 15))" +"POLYGON ((16.5 15, 16.5 14.5, 16 14.5, 16 15, 16.5 15))" +"POLYGON ((17 15, 17 14.5, 16.5 14.5, 16.5 15, 17 15))" +"POLYGON ((17.5 15, 17.5 14.5, 17 14.5, 17 15, 17.5 15))" +"POLYGON ((18 15, 18 14.5, 17.5 14.5, 17.5 15, 18 15))" +"POLYGON ((18.5 15, 18.5 14.5, 18 14.5, 18 15, 18.5 15))" +"POLYGON ((19 15, 19 14.5, 18.5 14.5, 18.5 15, 19 15))" +"POLYGON ((19.5 15, 19.5 14.5, 19 14.5, 19 15, 19.5 15))" +"POLYGON ((20 15, 20 14.5, 19.5 14.5, 19.5 15, 20 15))" +"POLYGON ((20.5 15, 20.5 14.5, 20 14.5, 20 15, 20.5 15))" +"POLYGON ((21 15, 21 14.5, 20.5 14.5, 20.5 15, 21 15))" +"POLYGON ((21.5 15, 21.5 14.5, 21 14.5, 21 15, 21.5 15))" +"POLYGON ((22 15, 22 14.5, 21.5 14.5, 21.5 15, 22 15))" +"POLYGON ((22.5 15, 22.5 14.5, 22 14.5, 22 15, 22.5 15))" +"POLYGON ((23 15, 23 14.5, 22.5 14.5, 22.5 15, 23 15))" +"POLYGON ((23.5 15, 23.5 14.5, 23 14.5, 23 15, 23.5 15))" +"POLYGON ((24 15, 24 14.5, 23.5 14.5, 23.5 15, 24 15))" +"POLYGON ((24.5 15, 24.5 14.5, 24 14.5, 24 15, 24.5 15))" +"POLYGON ((25 15, 25 14.5, 24.5 14.5, 24.5 15, 25 15))" +"POLYGON ((25.5 15, 25.5 14.5, 25 14.5, 25 15, 25.5 15))" +"POLYGON ((26 15, 26 14.5, 25.5 14.5, 25.5 15, 26 15))" +"POLYGON ((26.5 15, 26.5 14.5, 26 14.5, 26 15, 26.5 15))" +"POLYGON ((27 15, 27 14.5, 26.5 14.5, 26.5 15, 27 15))" +"POLYGON ((27.5 15, 27.5 14.5, 27 14.5, 27 15, 27.5 15))" +"POLYGON ((28 15, 28 14.5, 27.5 14.5, 27.5 15, 28 15))" +"POLYGON ((28.5 15, 28.5 14.5, 28 14.5, 28 15, 28.5 15))" +"POLYGON ((29 15, 29 14.5, 28.5 14.5, 28.5 15, 29 15))" +"POLYGON ((29.5 15, 29.5 14.5, 29 14.5, 29 15, 29.5 15))" +"POLYGON ((30 15, 30 14.5, 29.5 14.5, 29.5 15, 30 15))" +"POLYGON ((30.5 15, 30.5 14.5, 30 14.5, 30 15, 30.5 15))" +"POLYGON ((31 15, 31 14.5, 30.5 14.5, 30.5 15, 31 15))" +"POLYGON ((31.5 15, 31.5 14.5, 31 14.5, 31 15, 31.5 15))" +"POLYGON ((32 15, 32 14.5, 31.5 14.5, 31.5 15, 32 15))" +"POLYGON ((32.5 15, 32.5 14.5, 32 14.5, 32 15, 32.5 15))" +"POLYGON ((33 15, 33 14.5, 32.5 14.5, 32.5 15, 33 15))" +"POLYGON ((33.5 15, 33.5 14.5, 33 14.5, 33 15, 33.5 15))" +"POLYGON ((34 15, 34 14.5, 33.5 14.5, 33.5 15, 34 15))" +"POLYGON ((34.5 15, 34.5 14.5, 34 14.5, 34 15, 34.5 15))" +"POLYGON ((35 15, 35 14.5, 34.5 14.5, 34.5 15, 35 15))" +"POLYGON ((35.5 15, 35.5 14.5, 35 14.5, 35 15, 35.5 15))" +"POLYGON ((36 15, 36 14.5, 35.5 14.5, 35.5 15, 36 15))" +"POLYGON ((36.5 15, 36.5 14.5, 36 14.5, 36 15, 36.5 15))" +"POLYGON ((37 15, 37 14.5, 36.5 14.5, 36.5 15, 37 15))" +"POLYGON ((37.5 15, 37.5 14.5, 37 14.5, 37 15, 37.5 15))" +"POLYGON ((38 15, 38 14.5, 37.5 14.5, 37.5 15, 38 15))" +"POLYGON ((38.5 15, 38.5 14.5, 38 14.5, 38 15, 38.5 15))" +"POLYGON ((39 15, 39 14.5, 38.5 14.5, 38.5 15, 39 15))" +"POLYGON ((39.5 15, 39.5 14.5, 39 14.5, 39 15, 39.5 15))" +"POLYGON ((40 15, 40 14.5, 39.5 14.5, 39.5 15, 40 15))" +"POLYGON ((40.5 15, 40.5 14.5, 40 14.5, 40 15, 40.5 15))" +"POLYGON ((41 15, 41 14.5, 40.5 14.5, 40.5 15, 41 15))" +"POLYGON ((-16.5 15.5, -16.5 15, -17 15, -17 15.5, -16.5 15.5))" +"POLYGON ((-16 15.5, -16 15, -16.5 15, -16.5 15.5, -16 15.5))" +"POLYGON ((-15.5 15.5, -15.5 15, -16 15, -16 15.5, -15.5 15.5))" +"POLYGON ((-15 15.5, -15 15, -15.5 15, -15.5 15.5, -15 15.5))" +"POLYGON ((-14.5 15.5, -14.5 15, -15 15, -15 15.5, -14.5 15.5))" +"POLYGON ((-14 15.5, -14 15, -14.5 15, -14.5 15.5, -14 15.5))" +"POLYGON ((-13.5 15.5, -13.5 15, -14 15, -14 15.5, -13.5 15.5))" +"POLYGON ((-13 15.5, -13 15, -13.5 15, -13.5 15.5, -13 15.5))" +"POLYGON ((-12.5 15.5, -12.5 15, -13 15, -13 15.5, -12.5 15.5))" +"POLYGON ((-12 15.5, -12 15, -12.5 15, -12.5 15.5, -12 15.5))" +"POLYGON ((-11.5 15.5, -11.5 15, -12 15, -12 15.5, -11.5 15.5))" +"POLYGON ((-11 15.5, -11 15, -11.5 15, -11.5 15.5, -11 15.5))" +"POLYGON ((-10.5 15.5, -10.5 15, -11 15, -11 15.5, -10.5 15.5))" +"POLYGON ((-10 15.5, -10 15, -10.5 15, -10.5 15.5, -10 15.5))" +"POLYGON ((-9.5 15.5, -9.5 15, -10 15, -10 15.5, -9.5 15.5))" +"POLYGON ((-9 15.5, -9 15, -9.5 15, -9.5 15.5, -9 15.5))" +"POLYGON ((-8.5 15.5, -8.5 15, -9 15, -9 15.5, -8.5 15.5))" +"POLYGON ((-8 15.5, -8 15, -8.5 15, -8.5 15.5, -8 15.5))" +"POLYGON ((-7.5 15.5, -7.5 15, -8 15, -8 15.5, -7.5 15.5))" +"POLYGON ((-7 15.5, -7 15, -7.5 15, -7.5 15.5, -7 15.5))" +"POLYGON ((-6.5 15.5, -6.5 15, -7 15, -7 15.5, -6.5 15.5))" +"POLYGON ((-6 15.5, -6 15, -6.5 15, -6.5 15.5, -6 15.5))" +"POLYGON ((-5.5 15.5, -5.5 15, -6 15, -6 15.5, -5.5 15.5))" +"POLYGON ((-5 15.5, -5 15, -5.5 15, -5.5 15.5, -5 15.5))" +"POLYGON ((-4.5 15.5, -4.5 15, -5 15, -5 15.5, -4.5 15.5))" +"POLYGON ((-4 15.5, -4 15, -4.5 15, -4.5 15.5, -4 15.5))" +"POLYGON ((-3.5 15.5, -3.5 15, -4 15, -4 15.5, -3.5 15.5))" +"POLYGON ((-3 15.5, -3 15, -3.5 15, -3.5 15.5, -3 15.5))" +"POLYGON ((-2.5 15.5, -2.5 15, -3 15, -3 15.5, -2.5 15.5))" +"POLYGON ((-2 15.5, -2 15, -2.5 15, -2.5 15.5, -2 15.5))" +"POLYGON ((-1.5 15.5, -1.5 15, -2 15, -2 15.5, -1.5 15.5))" +"POLYGON ((-1 15.5, -1 15, -1.5 15, -1.5 15.5, -1 15.5))" +"POLYGON ((-0.5 15.5, -0.5 15, -1 15, -1 15.5, -0.5 15.5))" +"POLYGON ((0 15.5, 0 15, -0.5 15, -0.5 15.5, 0 15.5))" +"POLYGON ((0.5 15.5, 0.5 15, 0 15, 0 15.5, 0.5 15.5))" +"POLYGON ((1 15.5, 1 15, 0.5 15, 0.5 15.5, 1 15.5))" +"POLYGON ((1.5 15.5, 1.5 15, 1 15, 1 15.5, 1.5 15.5))" +"POLYGON ((2 15.5, 2 15, 1.5 15, 1.5 15.5, 2 15.5))" +"POLYGON ((2.5 15.5, 2.5 15, 2 15, 2 15.5, 2.5 15.5))" +"POLYGON ((3 15.5, 3 15, 2.5 15, 2.5 15.5, 3 15.5))" +"POLYGON ((3.5 15.5, 3.5 15, 3 15, 3 15.5, 3.5 15.5))" +"POLYGON ((4 15.5, 4 15, 3.5 15, 3.5 15.5, 4 15.5))" +"POLYGON ((4.5 15.5, 4.5 15, 4 15, 4 15.5, 4.5 15.5))" +"POLYGON ((5 15.5, 5 15, 4.5 15, 4.5 15.5, 5 15.5))" +"POLYGON ((5.5 15.5, 5.5 15, 5 15, 5 15.5, 5.5 15.5))" +"POLYGON ((6 15.5, 6 15, 5.5 15, 5.5 15.5, 6 15.5))" +"POLYGON ((6.5 15.5, 6.5 15, 6 15, 6 15.5, 6.5 15.5))" +"POLYGON ((7 15.5, 7 15, 6.5 15, 6.5 15.5, 7 15.5))" +"POLYGON ((7.5 15.5, 7.5 15, 7 15, 7 15.5, 7.5 15.5))" +"POLYGON ((8 15.5, 8 15, 7.5 15, 7.5 15.5, 8 15.5))" +"POLYGON ((8.5 15.5, 8.5 15, 8 15, 8 15.5, 8.5 15.5))" +"POLYGON ((9 15.5, 9 15, 8.5 15, 8.5 15.5, 9 15.5))" +"POLYGON ((9.5 15.5, 9.5 15, 9 15, 9 15.5, 9.5 15.5))" +"POLYGON ((10 15.5, 10 15, 9.5 15, 9.5 15.5, 10 15.5))" +"POLYGON ((10.5 15.5, 10.5 15, 10 15, 10 15.5, 10.5 15.5))" +"POLYGON ((11 15.5, 11 15, 10.5 15, 10.5 15.5, 11 15.5))" +"POLYGON ((11.5 15.5, 11.5 15, 11 15, 11 15.5, 11.5 15.5))" +"POLYGON ((12 15.5, 12 15, 11.5 15, 11.5 15.5, 12 15.5))" +"POLYGON ((12.5 15.5, 12.5 15, 12 15, 12 15.5, 12.5 15.5))" +"POLYGON ((13 15.5, 13 15, 12.5 15, 12.5 15.5, 13 15.5))" +"POLYGON ((13.5 15.5, 13.5 15, 13 15, 13 15.5, 13.5 15.5))" +"POLYGON ((14 15.5, 14 15, 13.5 15, 13.5 15.5, 14 15.5))" +"POLYGON ((14.5 15.5, 14.5 15, 14 15, 14 15.5, 14.5 15.5))" +"POLYGON ((15 15.5, 15 15, 14.5 15, 14.5 15.5, 15 15.5))" +"POLYGON ((15.5 15.5, 15.5 15, 15 15, 15 15.5, 15.5 15.5))" +"POLYGON ((16 15.5, 16 15, 15.5 15, 15.5 15.5, 16 15.5))" +"POLYGON ((16.5 15.5, 16.5 15, 16 15, 16 15.5, 16.5 15.5))" +"POLYGON ((17 15.5, 17 15, 16.5 15, 16.5 15.5, 17 15.5))" +"POLYGON ((17.5 15.5, 17.5 15, 17 15, 17 15.5, 17.5 15.5))" +"POLYGON ((18 15.5, 18 15, 17.5 15, 17.5 15.5, 18 15.5))" +"POLYGON ((18.5 15.5, 18.5 15, 18 15, 18 15.5, 18.5 15.5))" +"POLYGON ((19 15.5, 19 15, 18.5 15, 18.5 15.5, 19 15.5))" +"POLYGON ((19.5 15.5, 19.5 15, 19 15, 19 15.5, 19.5 15.5))" +"POLYGON ((20 15.5, 20 15, 19.5 15, 19.5 15.5, 20 15.5))" +"POLYGON ((20.5 15.5, 20.5 15, 20 15, 20 15.5, 20.5 15.5))" +"POLYGON ((21 15.5, 21 15, 20.5 15, 20.5 15.5, 21 15.5))" +"POLYGON ((21.5 15.5, 21.5 15, 21 15, 21 15.5, 21.5 15.5))" +"POLYGON ((22 15.5, 22 15, 21.5 15, 21.5 15.5, 22 15.5))" +"POLYGON ((22.5 15.5, 22.5 15, 22 15, 22 15.5, 22.5 15.5))" +"POLYGON ((23 15.5, 23 15, 22.5 15, 22.5 15.5, 23 15.5))" +"POLYGON ((23.5 15.5, 23.5 15, 23 15, 23 15.5, 23.5 15.5))" +"POLYGON ((24 15.5, 24 15, 23.5 15, 23.5 15.5, 24 15.5))" +"POLYGON ((24.5 15.5, 24.5 15, 24 15, 24 15.5, 24.5 15.5))" +"POLYGON ((25 15.5, 25 15, 24.5 15, 24.5 15.5, 25 15.5))" +"POLYGON ((25.5 15.5, 25.5 15, 25 15, 25 15.5, 25.5 15.5))" +"POLYGON ((26 15.5, 26 15, 25.5 15, 25.5 15.5, 26 15.5))" +"POLYGON ((26.5 15.5, 26.5 15, 26 15, 26 15.5, 26.5 15.5))" +"POLYGON ((27 15.5, 27 15, 26.5 15, 26.5 15.5, 27 15.5))" +"POLYGON ((27.5 15.5, 27.5 15, 27 15, 27 15.5, 27.5 15.5))" +"POLYGON ((28 15.5, 28 15, 27.5 15, 27.5 15.5, 28 15.5))" +"POLYGON ((28.5 15.5, 28.5 15, 28 15, 28 15.5, 28.5 15.5))" +"POLYGON ((29 15.5, 29 15, 28.5 15, 28.5 15.5, 29 15.5))" +"POLYGON ((29.5 15.5, 29.5 15, 29 15, 29 15.5, 29.5 15.5))" +"POLYGON ((30 15.5, 30 15, 29.5 15, 29.5 15.5, 30 15.5))" +"POLYGON ((30.5 15.5, 30.5 15, 30 15, 30 15.5, 30.5 15.5))" +"POLYGON ((31 15.5, 31 15, 30.5 15, 30.5 15.5, 31 15.5))" +"POLYGON ((31.5 15.5, 31.5 15, 31 15, 31 15.5, 31.5 15.5))" +"POLYGON ((32 15.5, 32 15, 31.5 15, 31.5 15.5, 32 15.5))" +"POLYGON ((32.5 15.5, 32.5 15, 32 15, 32 15.5, 32.5 15.5))" +"POLYGON ((33 15.5, 33 15, 32.5 15, 32.5 15.5, 33 15.5))" +"POLYGON ((33.5 15.5, 33.5 15, 33 15, 33 15.5, 33.5 15.5))" +"POLYGON ((34 15.5, 34 15, 33.5 15, 33.5 15.5, 34 15.5))" +"POLYGON ((34.5 15.5, 34.5 15, 34 15, 34 15.5, 34.5 15.5))" +"POLYGON ((35 15.5, 35 15, 34.5 15, 34.5 15.5, 35 15.5))" +"POLYGON ((35.5 15.5, 35.5 15, 35 15, 35 15.5, 35.5 15.5))" +"POLYGON ((36 15.5, 36 15, 35.5 15, 35.5 15.5, 36 15.5))" +"POLYGON ((36.5 15.5, 36.5 15, 36 15, 36 15.5, 36.5 15.5))" +"POLYGON ((37 15.5, 37 15, 36.5 15, 36.5 15.5, 37 15.5))" +"POLYGON ((37.5 15.5, 37.5 15, 37 15, 37 15.5, 37.5 15.5))" +"POLYGON ((38 15.5, 38 15, 37.5 15, 37.5 15.5, 38 15.5))" +"POLYGON ((38.5 15.5, 38.5 15, 38 15, 38 15.5, 38.5 15.5))" +"POLYGON ((39 15.5, 39 15, 38.5 15, 38.5 15.5, 39 15.5))" +"POLYGON ((39.5 15.5, 39.5 15, 39 15, 39 15.5, 39.5 15.5))" +"POLYGON ((-16 16, -16 15.5, -16.5 15.5, -16.5 16, -16 16))" +"POLYGON ((-15.5 16, -15.5 15.5, -16 15.5, -16 16, -15.5 16))" +"POLYGON ((-15 16, -15 15.5, -15.5 15.5, -15.5 16, -15 16))" +"POLYGON ((-14.5 16, -14.5 15.5, -15 15.5, -15 16, -14.5 16))" +"POLYGON ((-14 16, -14 15.5, -14.5 15.5, -14.5 16, -14 16))" +"POLYGON ((-13.5 16, -13.5 15.5, -14 15.5, -14 16, -13.5 16))" +"POLYGON ((-13 16, -13 15.5, -13.5 15.5, -13.5 16, -13 16))" +"POLYGON ((-12.5 16, -12.5 15.5, -13 15.5, -13 16, -12.5 16))" +"POLYGON ((-12 16, -12 15.5, -12.5 15.5, -12.5 16, -12 16))" +"POLYGON ((-11.5 16, -11.5 15.5, -12 15.5, -12 16, -11.5 16))" +"POLYGON ((-11 16, -11 15.5, -11.5 15.5, -11.5 16, -11 16))" +"POLYGON ((-10.5 16, -10.5 15.5, -11 15.5, -11 16, -10.5 16))" +"POLYGON ((-10 16, -10 15.5, -10.5 15.5, -10.5 16, -10 16))" +"POLYGON ((-9.5 16, -9.5 15.5, -10 15.5, -10 16, -9.5 16))" +"POLYGON ((-9 16, -9 15.5, -9.5 15.5, -9.5 16, -9 16))" +"POLYGON ((-8.5 16, -8.5 15.5, -9 15.5, -9 16, -8.5 16))" +"POLYGON ((-8 16, -8 15.5, -8.5 15.5, -8.5 16, -8 16))" +"POLYGON ((-7.5 16, -7.5 15.5, -8 15.5, -8 16, -7.5 16))" +"POLYGON ((-7 16, -7 15.5, -7.5 15.5, -7.5 16, -7 16))" +"POLYGON ((-6.5 16, -6.5 15.5, -7 15.5, -7 16, -6.5 16))" +"POLYGON ((-6 16, -6 15.5, -6.5 15.5, -6.5 16, -6 16))" +"POLYGON ((-5.5 16, -5.5 15.5, -6 15.5, -6 16, -5.5 16))" +"POLYGON ((-5 16, -5 15.5, -5.5 15.5, -5.5 16, -5 16))" +"POLYGON ((-4.5 16, -4.5 15.5, -5 15.5, -5 16, -4.5 16))" +"POLYGON ((-4 16, -4 15.5, -4.5 15.5, -4.5 16, -4 16))" +"POLYGON ((-3.5 16, -3.5 15.5, -4 15.5, -4 16, -3.5 16))" +"POLYGON ((-3 16, -3 15.5, -3.5 15.5, -3.5 16, -3 16))" +"POLYGON ((-2.5 16, -2.5 15.5, -3 15.5, -3 16, -2.5 16))" +"POLYGON ((-2 16, -2 15.5, -2.5 15.5, -2.5 16, -2 16))" +"POLYGON ((-1.5 16, -1.5 15.5, -2 15.5, -2 16, -1.5 16))" +"POLYGON ((-1 16, -1 15.5, -1.5 15.5, -1.5 16, -1 16))" +"POLYGON ((-0.5 16, -0.5 15.5, -1 15.5, -1 16, -0.5 16))" +"POLYGON ((0 16, 0 15.5, -0.5 15.5, -0.5 16, 0 16))" +"POLYGON ((0.5 16, 0.5 15.5, 0 15.5, 0 16, 0.5 16))" +"POLYGON ((1 16, 1 15.5, 0.5 15.5, 0.5 16, 1 16))" +"POLYGON ((1.5 16, 1.5 15.5, 1 15.5, 1 16, 1.5 16))" +"POLYGON ((2 16, 2 15.5, 1.5 15.5, 1.5 16, 2 16))" +"POLYGON ((2.5 16, 2.5 15.5, 2 15.5, 2 16, 2.5 16))" +"POLYGON ((3 16, 3 15.5, 2.5 15.5, 2.5 16, 3 16))" +"POLYGON ((3.5 16, 3.5 15.5, 3 15.5, 3 16, 3.5 16))" +"POLYGON ((4 16, 4 15.5, 3.5 15.5, 3.5 16, 4 16))" +"POLYGON ((4.5 16, 4.5 15.5, 4 15.5, 4 16, 4.5 16))" +"POLYGON ((5 16, 5 15.5, 4.5 15.5, 4.5 16, 5 16))" +"POLYGON ((5.5 16, 5.5 15.5, 5 15.5, 5 16, 5.5 16))" +"POLYGON ((6 16, 6 15.5, 5.5 15.5, 5.5 16, 6 16))" +"POLYGON ((6.5 16, 6.5 15.5, 6 15.5, 6 16, 6.5 16))" +"POLYGON ((7 16, 7 15.5, 6.5 15.5, 6.5 16, 7 16))" +"POLYGON ((7.5 16, 7.5 15.5, 7 15.5, 7 16, 7.5 16))" +"POLYGON ((8 16, 8 15.5, 7.5 15.5, 7.5 16, 8 16))" +"POLYGON ((8.5 16, 8.5 15.5, 8 15.5, 8 16, 8.5 16))" +"POLYGON ((9 16, 9 15.5, 8.5 15.5, 8.5 16, 9 16))" +"POLYGON ((9.5 16, 9.5 15.5, 9 15.5, 9 16, 9.5 16))" +"POLYGON ((10 16, 10 15.5, 9.5 15.5, 9.5 16, 10 16))" +"POLYGON ((10.5 16, 10.5 15.5, 10 15.5, 10 16, 10.5 16))" +"POLYGON ((11 16, 11 15.5, 10.5 15.5, 10.5 16, 11 16))" +"POLYGON ((11.5 16, 11.5 15.5, 11 15.5, 11 16, 11.5 16))" +"POLYGON ((12 16, 12 15.5, 11.5 15.5, 11.5 16, 12 16))" +"POLYGON ((12.5 16, 12.5 15.5, 12 15.5, 12 16, 12.5 16))" +"POLYGON ((13 16, 13 15.5, 12.5 15.5, 12.5 16, 13 16))" +"POLYGON ((13.5 16, 13.5 15.5, 13 15.5, 13 16, 13.5 16))" +"POLYGON ((14 16, 14 15.5, 13.5 15.5, 13.5 16, 14 16))" +"POLYGON ((14.5 16, 14.5 15.5, 14 15.5, 14 16, 14.5 16))" +"POLYGON ((15 16, 15 15.5, 14.5 15.5, 14.5 16, 15 16))" +"POLYGON ((15.5 16, 15.5 15.5, 15 15.5, 15 16, 15.5 16))" +"POLYGON ((16 16, 16 15.5, 15.5 15.5, 15.5 16, 16 16))" +"POLYGON ((16.5 16, 16.5 15.5, 16 15.5, 16 16, 16.5 16))" +"POLYGON ((17 16, 17 15.5, 16.5 15.5, 16.5 16, 17 16))" +"POLYGON ((17.5 16, 17.5 15.5, 17 15.5, 17 16, 17.5 16))" +"POLYGON ((18 16, 18 15.5, 17.5 15.5, 17.5 16, 18 16))" +"POLYGON ((18.5 16, 18.5 15.5, 18 15.5, 18 16, 18.5 16))" +"POLYGON ((19 16, 19 15.5, 18.5 15.5, 18.5 16, 19 16))" +"POLYGON ((19.5 16, 19.5 15.5, 19 15.5, 19 16, 19.5 16))" +"POLYGON ((20 16, 20 15.5, 19.5 15.5, 19.5 16, 20 16))" +"POLYGON ((20.5 16, 20.5 15.5, 20 15.5, 20 16, 20.5 16))" +"POLYGON ((21 16, 21 15.5, 20.5 15.5, 20.5 16, 21 16))" +"POLYGON ((21.5 16, 21.5 15.5, 21 15.5, 21 16, 21.5 16))" +"POLYGON ((22 16, 22 15.5, 21.5 15.5, 21.5 16, 22 16))" +"POLYGON ((22.5 16, 22.5 15.5, 22 15.5, 22 16, 22.5 16))" +"POLYGON ((23 16, 23 15.5, 22.5 15.5, 22.5 16, 23 16))" +"POLYGON ((23.5 16, 23.5 15.5, 23 15.5, 23 16, 23.5 16))" +"POLYGON ((24 16, 24 15.5, 23.5 15.5, 23.5 16, 24 16))" +"POLYGON ((24.5 16, 24.5 15.5, 24 15.5, 24 16, 24.5 16))" +"POLYGON ((25 16, 25 15.5, 24.5 15.5, 24.5 16, 25 16))" +"POLYGON ((25.5 16, 25.5 15.5, 25 15.5, 25 16, 25.5 16))" +"POLYGON ((26 16, 26 15.5, 25.5 15.5, 25.5 16, 26 16))" +"POLYGON ((26.5 16, 26.5 15.5, 26 15.5, 26 16, 26.5 16))" +"POLYGON ((27 16, 27 15.5, 26.5 15.5, 26.5 16, 27 16))" +"POLYGON ((27.5 16, 27.5 15.5, 27 15.5, 27 16, 27.5 16))" +"POLYGON ((28 16, 28 15.5, 27.5 15.5, 27.5 16, 28 16))" +"POLYGON ((28.5 16, 28.5 15.5, 28 15.5, 28 16, 28.5 16))" +"POLYGON ((29 16, 29 15.5, 28.5 15.5, 28.5 16, 29 16))" +"POLYGON ((29.5 16, 29.5 15.5, 29 15.5, 29 16, 29.5 16))" +"POLYGON ((30 16, 30 15.5, 29.5 15.5, 29.5 16, 30 16))" +"POLYGON ((30.5 16, 30.5 15.5, 30 15.5, 30 16, 30.5 16))" +"POLYGON ((31 16, 31 15.5, 30.5 15.5, 30.5 16, 31 16))" +"POLYGON ((31.5 16, 31.5 15.5, 31 15.5, 31 16, 31.5 16))" +"POLYGON ((32 16, 32 15.5, 31.5 15.5, 31.5 16, 32 16))" +"POLYGON ((32.5 16, 32.5 15.5, 32 15.5, 32 16, 32.5 16))" +"POLYGON ((33 16, 33 15.5, 32.5 15.5, 32.5 16, 33 16))" +"POLYGON ((33.5 16, 33.5 15.5, 33 15.5, 33 16, 33.5 16))" +"POLYGON ((34 16, 34 15.5, 33.5 15.5, 33.5 16, 34 16))" +"POLYGON ((34.5 16, 34.5 15.5, 34 15.5, 34 16, 34.5 16))" +"POLYGON ((35 16, 35 15.5, 34.5 15.5, 34.5 16, 35 16))" +"POLYGON ((35.5 16, 35.5 15.5, 35 15.5, 35 16, 35.5 16))" +"POLYGON ((36 16, 36 15.5, 35.5 15.5, 35.5 16, 36 16))" +"POLYGON ((36.5 16, 36.5 15.5, 36 15.5, 36 16, 36.5 16))" +"POLYGON ((37 16, 37 15.5, 36.5 15.5, 36.5 16, 37 16))" +"POLYGON ((37.5 16, 37.5 15.5, 37 15.5, 37 16, 37.5 16))" +"POLYGON ((38 16, 38 15.5, 37.5 15.5, 37.5 16, 38 16))" +"POLYGON ((38.5 16, 38.5 15.5, 38 15.5, 38 16, 38.5 16))" +"POLYGON ((39 16, 39 15.5, 38.5 15.5, 38.5 16, 39 16))" +"POLYGON ((39.5 16, 39.5 15.5, 39 15.5, 39 16, 39.5 16))" +"POLYGON ((-16 16.5, -16 16, -16.5 16, -16.5 16.5, -16 16.5))" +"POLYGON ((-15.5 16.5, -15.5 16, -16 16, -16 16.5, -15.5 16.5))" +"POLYGON ((-15 16.5, -15 16, -15.5 16, -15.5 16.5, -15 16.5))" +"POLYGON ((-14.5 16.5, -14.5 16, -15 16, -15 16.5, -14.5 16.5))" +"POLYGON ((-14 16.5, -14 16, -14.5 16, -14.5 16.5, -14 16.5))" +"POLYGON ((-13.5 16.5, -13.5 16, -14 16, -14 16.5, -13.5 16.5))" +"POLYGON ((-13 16.5, -13 16, -13.5 16, -13.5 16.5, -13 16.5))" +"POLYGON ((-12.5 16.5, -12.5 16, -13 16, -13 16.5, -12.5 16.5))" +"POLYGON ((-12 16.5, -12 16, -12.5 16, -12.5 16.5, -12 16.5))" +"POLYGON ((-11.5 16.5, -11.5 16, -12 16, -12 16.5, -11.5 16.5))" +"POLYGON ((-11 16.5, -11 16, -11.5 16, -11.5 16.5, -11 16.5))" +"POLYGON ((-10.5 16.5, -10.5 16, -11 16, -11 16.5, -10.5 16.5))" +"POLYGON ((-10 16.5, -10 16, -10.5 16, -10.5 16.5, -10 16.5))" +"POLYGON ((-9.5 16.5, -9.5 16, -10 16, -10 16.5, -9.5 16.5))" +"POLYGON ((-9 16.5, -9 16, -9.5 16, -9.5 16.5, -9 16.5))" +"POLYGON ((-8.5 16.5, -8.5 16, -9 16, -9 16.5, -8.5 16.5))" +"POLYGON ((-8 16.5, -8 16, -8.5 16, -8.5 16.5, -8 16.5))" +"POLYGON ((-7.5 16.5, -7.5 16, -8 16, -8 16.5, -7.5 16.5))" +"POLYGON ((-7 16.5, -7 16, -7.5 16, -7.5 16.5, -7 16.5))" +"POLYGON ((-6.5 16.5, -6.5 16, -7 16, -7 16.5, -6.5 16.5))" +"POLYGON ((-6 16.5, -6 16, -6.5 16, -6.5 16.5, -6 16.5))" +"POLYGON ((-5.5 16.5, -5.5 16, -6 16, -6 16.5, -5.5 16.5))" +"POLYGON ((-5 16.5, -5 16, -5.5 16, -5.5 16.5, -5 16.5))" +"POLYGON ((-4.5 16.5, -4.5 16, -5 16, -5 16.5, -4.5 16.5))" +"POLYGON ((-4 16.5, -4 16, -4.5 16, -4.5 16.5, -4 16.5))" +"POLYGON ((-3.5 16.5, -3.5 16, -4 16, -4 16.5, -3.5 16.5))" +"POLYGON ((-3 16.5, -3 16, -3.5 16, -3.5 16.5, -3 16.5))" +"POLYGON ((-2.5 16.5, -2.5 16, -3 16, -3 16.5, -2.5 16.5))" +"POLYGON ((-2 16.5, -2 16, -2.5 16, -2.5 16.5, -2 16.5))" +"POLYGON ((-1.5 16.5, -1.5 16, -2 16, -2 16.5, -1.5 16.5))" +"POLYGON ((-1 16.5, -1 16, -1.5 16, -1.5 16.5, -1 16.5))" +"POLYGON ((-0.5 16.5, -0.5 16, -1 16, -1 16.5, -0.5 16.5))" +"POLYGON ((0 16.5, 0 16, -0.5 16, -0.5 16.5, 0 16.5))" +"POLYGON ((0.5 16.5, 0.5 16, 0 16, 0 16.5, 0.5 16.5))" +"POLYGON ((1 16.5, 1 16, 0.5 16, 0.5 16.5, 1 16.5))" +"POLYGON ((1.5 16.5, 1.5 16, 1 16, 1 16.5, 1.5 16.5))" +"POLYGON ((2 16.5, 2 16, 1.5 16, 1.5 16.5, 2 16.5))" +"POLYGON ((2.5 16.5, 2.5 16, 2 16, 2 16.5, 2.5 16.5))" +"POLYGON ((3 16.5, 3 16, 2.5 16, 2.5 16.5, 3 16.5))" +"POLYGON ((3.5 16.5, 3.5 16, 3 16, 3 16.5, 3.5 16.5))" +"POLYGON ((4 16.5, 4 16, 3.5 16, 3.5 16.5, 4 16.5))" +"POLYGON ((4.5 16.5, 4.5 16, 4 16, 4 16.5, 4.5 16.5))" +"POLYGON ((5 16.5, 5 16, 4.5 16, 4.5 16.5, 5 16.5))" +"POLYGON ((5.5 16.5, 5.5 16, 5 16, 5 16.5, 5.5 16.5))" +"POLYGON ((6 16.5, 6 16, 5.5 16, 5.5 16.5, 6 16.5))" +"POLYGON ((6.5 16.5, 6.5 16, 6 16, 6 16.5, 6.5 16.5))" +"POLYGON ((7 16.5, 7 16, 6.5 16, 6.5 16.5, 7 16.5))" +"POLYGON ((7.5 16.5, 7.5 16, 7 16, 7 16.5, 7.5 16.5))" +"POLYGON ((8 16.5, 8 16, 7.5 16, 7.5 16.5, 8 16.5))" +"POLYGON ((8.5 16.5, 8.5 16, 8 16, 8 16.5, 8.5 16.5))" +"POLYGON ((9 16.5, 9 16, 8.5 16, 8.5 16.5, 9 16.5))" +"POLYGON ((9.5 16.5, 9.5 16, 9 16, 9 16.5, 9.5 16.5))" +"POLYGON ((10 16.5, 10 16, 9.5 16, 9.5 16.5, 10 16.5))" +"POLYGON ((10.5 16.5, 10.5 16, 10 16, 10 16.5, 10.5 16.5))" +"POLYGON ((11 16.5, 11 16, 10.5 16, 10.5 16.5, 11 16.5))" +"POLYGON ((11.5 16.5, 11.5 16, 11 16, 11 16.5, 11.5 16.5))" +"POLYGON ((12 16.5, 12 16, 11.5 16, 11.5 16.5, 12 16.5))" +"POLYGON ((12.5 16.5, 12.5 16, 12 16, 12 16.5, 12.5 16.5))" +"POLYGON ((13 16.5, 13 16, 12.5 16, 12.5 16.5, 13 16.5))" +"POLYGON ((13.5 16.5, 13.5 16, 13 16, 13 16.5, 13.5 16.5))" +"POLYGON ((14 16.5, 14 16, 13.5 16, 13.5 16.5, 14 16.5))" +"POLYGON ((14.5 16.5, 14.5 16, 14 16, 14 16.5, 14.5 16.5))" +"POLYGON ((15 16.5, 15 16, 14.5 16, 14.5 16.5, 15 16.5))" +"POLYGON ((15.5 16.5, 15.5 16, 15 16, 15 16.5, 15.5 16.5))" +"POLYGON ((16 16.5, 16 16, 15.5 16, 15.5 16.5, 16 16.5))" +"POLYGON ((16.5 16.5, 16.5 16, 16 16, 16 16.5, 16.5 16.5))" +"POLYGON ((17 16.5, 17 16, 16.5 16, 16.5 16.5, 17 16.5))" +"POLYGON ((17.5 16.5, 17.5 16, 17 16, 17 16.5, 17.5 16.5))" +"POLYGON ((18 16.5, 18 16, 17.5 16, 17.5 16.5, 18 16.5))" +"POLYGON ((18.5 16.5, 18.5 16, 18 16, 18 16.5, 18.5 16.5))" +"POLYGON ((19 16.5, 19 16, 18.5 16, 18.5 16.5, 19 16.5))" +"POLYGON ((19.5 16.5, 19.5 16, 19 16, 19 16.5, 19.5 16.5))" +"POLYGON ((20 16.5, 20 16, 19.5 16, 19.5 16.5, 20 16.5))" +"POLYGON ((20.5 16.5, 20.5 16, 20 16, 20 16.5, 20.5 16.5))" +"POLYGON ((21 16.5, 21 16, 20.5 16, 20.5 16.5, 21 16.5))" +"POLYGON ((21.5 16.5, 21.5 16, 21 16, 21 16.5, 21.5 16.5))" +"POLYGON ((22 16.5, 22 16, 21.5 16, 21.5 16.5, 22 16.5))" +"POLYGON ((22.5 16.5, 22.5 16, 22 16, 22 16.5, 22.5 16.5))" +"POLYGON ((23 16.5, 23 16, 22.5 16, 22.5 16.5, 23 16.5))" +"POLYGON ((23.5 16.5, 23.5 16, 23 16, 23 16.5, 23.5 16.5))" +"POLYGON ((24 16.5, 24 16, 23.5 16, 23.5 16.5, 24 16.5))" +"POLYGON ((24.5 16.5, 24.5 16, 24 16, 24 16.5, 24.5 16.5))" +"POLYGON ((25 16.5, 25 16, 24.5 16, 24.5 16.5, 25 16.5))" +"POLYGON ((25.5 16.5, 25.5 16, 25 16, 25 16.5, 25.5 16.5))" +"POLYGON ((26 16.5, 26 16, 25.5 16, 25.5 16.5, 26 16.5))" +"POLYGON ((26.5 16.5, 26.5 16, 26 16, 26 16.5, 26.5 16.5))" +"POLYGON ((27 16.5, 27 16, 26.5 16, 26.5 16.5, 27 16.5))" +"POLYGON ((27.5 16.5, 27.5 16, 27 16, 27 16.5, 27.5 16.5))" +"POLYGON ((28 16.5, 28 16, 27.5 16, 27.5 16.5, 28 16.5))" +"POLYGON ((28.5 16.5, 28.5 16, 28 16, 28 16.5, 28.5 16.5))" +"POLYGON ((29 16.5, 29 16, 28.5 16, 28.5 16.5, 29 16.5))" +"POLYGON ((29.5 16.5, 29.5 16, 29 16, 29 16.5, 29.5 16.5))" +"POLYGON ((30 16.5, 30 16, 29.5 16, 29.5 16.5, 30 16.5))" +"POLYGON ((30.5 16.5, 30.5 16, 30 16, 30 16.5, 30.5 16.5))" +"POLYGON ((31 16.5, 31 16, 30.5 16, 30.5 16.5, 31 16.5))" +"POLYGON ((31.5 16.5, 31.5 16, 31 16, 31 16.5, 31.5 16.5))" +"POLYGON ((32 16.5, 32 16, 31.5 16, 31.5 16.5, 32 16.5))" +"POLYGON ((32.5 16.5, 32.5 16, 32 16, 32 16.5, 32.5 16.5))" +"POLYGON ((33 16.5, 33 16, 32.5 16, 32.5 16.5, 33 16.5))" +"POLYGON ((33.5 16.5, 33.5 16, 33 16, 33 16.5, 33.5 16.5))" +"POLYGON ((34 16.5, 34 16, 33.5 16, 33.5 16.5, 34 16.5))" +"POLYGON ((34.5 16.5, 34.5 16, 34 16, 34 16.5, 34.5 16.5))" +"POLYGON ((35 16.5, 35 16, 34.5 16, 34.5 16.5, 35 16.5))" +"POLYGON ((35.5 16.5, 35.5 16, 35 16, 35 16.5, 35.5 16.5))" +"POLYGON ((36 16.5, 36 16, 35.5 16, 35.5 16.5, 36 16.5))" +"POLYGON ((36.5 16.5, 36.5 16, 36 16, 36 16.5, 36.5 16.5))" +"POLYGON ((37 16.5, 37 16, 36.5 16, 36.5 16.5, 37 16.5))" +"POLYGON ((37.5 16.5, 37.5 16, 37 16, 37 16.5, 37.5 16.5))" +"POLYGON ((38 16.5, 38 16, 37.5 16, 37.5 16.5, 38 16.5))" +"POLYGON ((38.5 16.5, 38.5 16, 38 16, 38 16.5, 38.5 16.5))" +"POLYGON ((39 16.5, 39 16, 38.5 16, 38.5 16.5, 39 16.5))" +"POLYGON ((-16 17, -16 16.5, -16.5 16.5, -16.5 17, -16 17))" +"POLYGON ((-15.5 17, -15.5 16.5, -16 16.5, -16 17, -15.5 17))" +"POLYGON ((-15 17, -15 16.5, -15.5 16.5, -15.5 17, -15 17))" +"POLYGON ((-14.5 17, -14.5 16.5, -15 16.5, -15 17, -14.5 17))" +"POLYGON ((-14 17, -14 16.5, -14.5 16.5, -14.5 17, -14 17))" +"POLYGON ((-13.5 17, -13.5 16.5, -14 16.5, -14 17, -13.5 17))" +"POLYGON ((-13 17, -13 16.5, -13.5 16.5, -13.5 17, -13 17))" +"POLYGON ((-12.5 17, -12.5 16.5, -13 16.5, -13 17, -12.5 17))" +"POLYGON ((-12 17, -12 16.5, -12.5 16.5, -12.5 17, -12 17))" +"POLYGON ((-11.5 17, -11.5 16.5, -12 16.5, -12 17, -11.5 17))" +"POLYGON ((-11 17, -11 16.5, -11.5 16.5, -11.5 17, -11 17))" +"POLYGON ((-10.5 17, -10.5 16.5, -11 16.5, -11 17, -10.5 17))" +"POLYGON ((-10 17, -10 16.5, -10.5 16.5, -10.5 17, -10 17))" +"POLYGON ((-9.5 17, -9.5 16.5, -10 16.5, -10 17, -9.5 17))" +"POLYGON ((-9 17, -9 16.5, -9.5 16.5, -9.5 17, -9 17))" +"POLYGON ((-8.5 17, -8.5 16.5, -9 16.5, -9 17, -8.5 17))" +"POLYGON ((-8 17, -8 16.5, -8.5 16.5, -8.5 17, -8 17))" +"POLYGON ((-7.5 17, -7.5 16.5, -8 16.5, -8 17, -7.5 17))" +"POLYGON ((-7 17, -7 16.5, -7.5 16.5, -7.5 17, -7 17))" +"POLYGON ((-6.5 17, -6.5 16.5, -7 16.5, -7 17, -6.5 17))" +"POLYGON ((-6 17, -6 16.5, -6.5 16.5, -6.5 17, -6 17))" +"POLYGON ((-5.5 17, -5.5 16.5, -6 16.5, -6 17, -5.5 17))" +"POLYGON ((-5 17, -5 16.5, -5.5 16.5, -5.5 17, -5 17))" +"POLYGON ((-4.5 17, -4.5 16.5, -5 16.5, -5 17, -4.5 17))" +"POLYGON ((-4 17, -4 16.5, -4.5 16.5, -4.5 17, -4 17))" +"POLYGON ((-3.5 17, -3.5 16.5, -4 16.5, -4 17, -3.5 17))" +"POLYGON ((-3 17, -3 16.5, -3.5 16.5, -3.5 17, -3 17))" +"POLYGON ((-2.5 17, -2.5 16.5, -3 16.5, -3 17, -2.5 17))" +"POLYGON ((-2 17, -2 16.5, -2.5 16.5, -2.5 17, -2 17))" +"POLYGON ((-1.5 17, -1.5 16.5, -2 16.5, -2 17, -1.5 17))" +"POLYGON ((-1 17, -1 16.5, -1.5 16.5, -1.5 17, -1 17))" +"POLYGON ((-0.5 17, -0.5 16.5, -1 16.5, -1 17, -0.5 17))" +"POLYGON ((0 17, 0 16.5, -0.5 16.5, -0.5 17, 0 17))" +"POLYGON ((0.5 17, 0.5 16.5, 0 16.5, 0 17, 0.5 17))" +"POLYGON ((1 17, 1 16.5, 0.5 16.5, 0.5 17, 1 17))" +"POLYGON ((1.5 17, 1.5 16.5, 1 16.5, 1 17, 1.5 17))" +"POLYGON ((2 17, 2 16.5, 1.5 16.5, 1.5 17, 2 17))" +"POLYGON ((2.5 17, 2.5 16.5, 2 16.5, 2 17, 2.5 17))" +"POLYGON ((3 17, 3 16.5, 2.5 16.5, 2.5 17, 3 17))" +"POLYGON ((3.5 17, 3.5 16.5, 3 16.5, 3 17, 3.5 17))" +"POLYGON ((4 17, 4 16.5, 3.5 16.5, 3.5 17, 4 17))" +"POLYGON ((4.5 17, 4.5 16.5, 4 16.5, 4 17, 4.5 17))" +"POLYGON ((5 17, 5 16.5, 4.5 16.5, 4.5 17, 5 17))" +"POLYGON ((5.5 17, 5.5 16.5, 5 16.5, 5 17, 5.5 17))" +"POLYGON ((6 17, 6 16.5, 5.5 16.5, 5.5 17, 6 17))" +"POLYGON ((6.5 17, 6.5 16.5, 6 16.5, 6 17, 6.5 17))" +"POLYGON ((7 17, 7 16.5, 6.5 16.5, 6.5 17, 7 17))" +"POLYGON ((7.5 17, 7.5 16.5, 7 16.5, 7 17, 7.5 17))" +"POLYGON ((8 17, 8 16.5, 7.5 16.5, 7.5 17, 8 17))" +"POLYGON ((8.5 17, 8.5 16.5, 8 16.5, 8 17, 8.5 17))" +"POLYGON ((9 17, 9 16.5, 8.5 16.5, 8.5 17, 9 17))" +"POLYGON ((9.5 17, 9.5 16.5, 9 16.5, 9 17, 9.5 17))" +"POLYGON ((10 17, 10 16.5, 9.5 16.5, 9.5 17, 10 17))" +"POLYGON ((10.5 17, 10.5 16.5, 10 16.5, 10 17, 10.5 17))" +"POLYGON ((11 17, 11 16.5, 10.5 16.5, 10.5 17, 11 17))" +"POLYGON ((11.5 17, 11.5 16.5, 11 16.5, 11 17, 11.5 17))" +"POLYGON ((12 17, 12 16.5, 11.5 16.5, 11.5 17, 12 17))" +"POLYGON ((12.5 17, 12.5 16.5, 12 16.5, 12 17, 12.5 17))" +"POLYGON ((13 17, 13 16.5, 12.5 16.5, 12.5 17, 13 17))" +"POLYGON ((13.5 17, 13.5 16.5, 13 16.5, 13 17, 13.5 17))" +"POLYGON ((14 17, 14 16.5, 13.5 16.5, 13.5 17, 14 17))" +"POLYGON ((14.5 17, 14.5 16.5, 14 16.5, 14 17, 14.5 17))" +"POLYGON ((15 17, 15 16.5, 14.5 16.5, 14.5 17, 15 17))" +"POLYGON ((15.5 17, 15.5 16.5, 15 16.5, 15 17, 15.5 17))" +"POLYGON ((16 17, 16 16.5, 15.5 16.5, 15.5 17, 16 17))" +"POLYGON ((16.5 17, 16.5 16.5, 16 16.5, 16 17, 16.5 17))" +"POLYGON ((17 17, 17 16.5, 16.5 16.5, 16.5 17, 17 17))" +"POLYGON ((17.5 17, 17.5 16.5, 17 16.5, 17 17, 17.5 17))" +"POLYGON ((18 17, 18 16.5, 17.5 16.5, 17.5 17, 18 17))" +"POLYGON ((18.5 17, 18.5 16.5, 18 16.5, 18 17, 18.5 17))" +"POLYGON ((19 17, 19 16.5, 18.5 16.5, 18.5 17, 19 17))" +"POLYGON ((19.5 17, 19.5 16.5, 19 16.5, 19 17, 19.5 17))" +"POLYGON ((20 17, 20 16.5, 19.5 16.5, 19.5 17, 20 17))" +"POLYGON ((20.5 17, 20.5 16.5, 20 16.5, 20 17, 20.5 17))" +"POLYGON ((21 17, 21 16.5, 20.5 16.5, 20.5 17, 21 17))" +"POLYGON ((21.5 17, 21.5 16.5, 21 16.5, 21 17, 21.5 17))" +"POLYGON ((22 17, 22 16.5, 21.5 16.5, 21.5 17, 22 17))" +"POLYGON ((22.5 17, 22.5 16.5, 22 16.5, 22 17, 22.5 17))" +"POLYGON ((23 17, 23 16.5, 22.5 16.5, 22.5 17, 23 17))" +"POLYGON ((23.5 17, 23.5 16.5, 23 16.5, 23 17, 23.5 17))" +"POLYGON ((24 17, 24 16.5, 23.5 16.5, 23.5 17, 24 17))" +"POLYGON ((24.5 17, 24.5 16.5, 24 16.5, 24 17, 24.5 17))" +"POLYGON ((25 17, 25 16.5, 24.5 16.5, 24.5 17, 25 17))" +"POLYGON ((25.5 17, 25.5 16.5, 25 16.5, 25 17, 25.5 17))" +"POLYGON ((26 17, 26 16.5, 25.5 16.5, 25.5 17, 26 17))" +"POLYGON ((26.5 17, 26.5 16.5, 26 16.5, 26 17, 26.5 17))" +"POLYGON ((27 17, 27 16.5, 26.5 16.5, 26.5 17, 27 17))" +"POLYGON ((27.5 17, 27.5 16.5, 27 16.5, 27 17, 27.5 17))" +"POLYGON ((28 17, 28 16.5, 27.5 16.5, 27.5 17, 28 17))" +"POLYGON ((28.5 17, 28.5 16.5, 28 16.5, 28 17, 28.5 17))" +"POLYGON ((29 17, 29 16.5, 28.5 16.5, 28.5 17, 29 17))" +"POLYGON ((29.5 17, 29.5 16.5, 29 16.5, 29 17, 29.5 17))" +"POLYGON ((30 17, 30 16.5, 29.5 16.5, 29.5 17, 30 17))" +"POLYGON ((30.5 17, 30.5 16.5, 30 16.5, 30 17, 30.5 17))" +"POLYGON ((31 17, 31 16.5, 30.5 16.5, 30.5 17, 31 17))" +"POLYGON ((31.5 17, 31.5 16.5, 31 16.5, 31 17, 31.5 17))" +"POLYGON ((32 17, 32 16.5, 31.5 16.5, 31.5 17, 32 17))" +"POLYGON ((32.5 17, 32.5 16.5, 32 16.5, 32 17, 32.5 17))" +"POLYGON ((33 17, 33 16.5, 32.5 16.5, 32.5 17, 33 17))" +"POLYGON ((33.5 17, 33.5 16.5, 33 16.5, 33 17, 33.5 17))" +"POLYGON ((34 17, 34 16.5, 33.5 16.5, 33.5 17, 34 17))" +"POLYGON ((34.5 17, 34.5 16.5, 34 16.5, 34 17, 34.5 17))" +"POLYGON ((35 17, 35 16.5, 34.5 16.5, 34.5 17, 35 17))" +"POLYGON ((35.5 17, 35.5 16.5, 35 16.5, 35 17, 35.5 17))" +"POLYGON ((36 17, 36 16.5, 35.5 16.5, 35.5 17, 36 17))" +"POLYGON ((36.5 17, 36.5 16.5, 36 16.5, 36 17, 36.5 17))" +"POLYGON ((37 17, 37 16.5, 36.5 16.5, 36.5 17, 37 17))" +"POLYGON ((37.5 17, 37.5 16.5, 37 16.5, 37 17, 37.5 17))" +"POLYGON ((38 17, 38 16.5, 37.5 16.5, 37.5 17, 38 17))" +"POLYGON ((38.5 17, 38.5 16.5, 38 16.5, 38 17, 38.5 17))" +"POLYGON ((39 17, 39 16.5, 38.5 16.5, 38.5 17, 39 17))" +"POLYGON ((-15.5 17.5, -15.5 17, -16 17, -16 17.5, -15.5 17.5))" +"POLYGON ((-15 17.5, -15 17, -15.5 17, -15.5 17.5, -15 17.5))" +"POLYGON ((-14.5 17.5, -14.5 17, -15 17, -15 17.5, -14.5 17.5))" +"POLYGON ((-14 17.5, -14 17, -14.5 17, -14.5 17.5, -14 17.5))" +"POLYGON ((-13.5 17.5, -13.5 17, -14 17, -14 17.5, -13.5 17.5))" +"POLYGON ((-13 17.5, -13 17, -13.5 17, -13.5 17.5, -13 17.5))" +"POLYGON ((-12.5 17.5, -12.5 17, -13 17, -13 17.5, -12.5 17.5))" +"POLYGON ((-12 17.5, -12 17, -12.5 17, -12.5 17.5, -12 17.5))" +"POLYGON ((-11.5 17.5, -11.5 17, -12 17, -12 17.5, -11.5 17.5))" +"POLYGON ((-11 17.5, -11 17, -11.5 17, -11.5 17.5, -11 17.5))" +"POLYGON ((-10.5 17.5, -10.5 17, -11 17, -11 17.5, -10.5 17.5))" +"POLYGON ((-10 17.5, -10 17, -10.5 17, -10.5 17.5, -10 17.5))" +"POLYGON ((-9.5 17.5, -9.5 17, -10 17, -10 17.5, -9.5 17.5))" +"POLYGON ((-9 17.5, -9 17, -9.5 17, -9.5 17.5, -9 17.5))" +"POLYGON ((-8.5 17.5, -8.5 17, -9 17, -9 17.5, -8.5 17.5))" +"POLYGON ((-8 17.5, -8 17, -8.5 17, -8.5 17.5, -8 17.5))" +"POLYGON ((-7.5 17.5, -7.5 17, -8 17, -8 17.5, -7.5 17.5))" +"POLYGON ((-7 17.5, -7 17, -7.5 17, -7.5 17.5, -7 17.5))" +"POLYGON ((-6.5 17.5, -6.5 17, -7 17, -7 17.5, -6.5 17.5))" +"POLYGON ((-6 17.5, -6 17, -6.5 17, -6.5 17.5, -6 17.5))" +"POLYGON ((-5.5 17.5, -5.5 17, -6 17, -6 17.5, -5.5 17.5))" +"POLYGON ((-5 17.5, -5 17, -5.5 17, -5.5 17.5, -5 17.5))" +"POLYGON ((-4.5 17.5, -4.5 17, -5 17, -5 17.5, -4.5 17.5))" +"POLYGON ((-4 17.5, -4 17, -4.5 17, -4.5 17.5, -4 17.5))" +"POLYGON ((-3.5 17.5, -3.5 17, -4 17, -4 17.5, -3.5 17.5))" +"POLYGON ((-3 17.5, -3 17, -3.5 17, -3.5 17.5, -3 17.5))" +"POLYGON ((-2.5 17.5, -2.5 17, -3 17, -3 17.5, -2.5 17.5))" +"POLYGON ((-2 17.5, -2 17, -2.5 17, -2.5 17.5, -2 17.5))" +"POLYGON ((-1.5 17.5, -1.5 17, -2 17, -2 17.5, -1.5 17.5))" +"POLYGON ((-1 17.5, -1 17, -1.5 17, -1.5 17.5, -1 17.5))" +"POLYGON ((-0.5 17.5, -0.5 17, -1 17, -1 17.5, -0.5 17.5))" +"POLYGON ((0 17.5, 0 17, -0.5 17, -0.5 17.5, 0 17.5))" +"POLYGON ((0.5 17.5, 0.5 17, 0 17, 0 17.5, 0.5 17.5))" +"POLYGON ((1 17.5, 1 17, 0.5 17, 0.5 17.5, 1 17.5))" +"POLYGON ((1.5 17.5, 1.5 17, 1 17, 1 17.5, 1.5 17.5))" +"POLYGON ((2 17.5, 2 17, 1.5 17, 1.5 17.5, 2 17.5))" +"POLYGON ((2.5 17.5, 2.5 17, 2 17, 2 17.5, 2.5 17.5))" +"POLYGON ((3 17.5, 3 17, 2.5 17, 2.5 17.5, 3 17.5))" +"POLYGON ((3.5 17.5, 3.5 17, 3 17, 3 17.5, 3.5 17.5))" +"POLYGON ((4 17.5, 4 17, 3.5 17, 3.5 17.5, 4 17.5))" +"POLYGON ((4.5 17.5, 4.5 17, 4 17, 4 17.5, 4.5 17.5))" +"POLYGON ((5 17.5, 5 17, 4.5 17, 4.5 17.5, 5 17.5))" +"POLYGON ((5.5 17.5, 5.5 17, 5 17, 5 17.5, 5.5 17.5))" +"POLYGON ((6 17.5, 6 17, 5.5 17, 5.5 17.5, 6 17.5))" +"POLYGON ((6.5 17.5, 6.5 17, 6 17, 6 17.5, 6.5 17.5))" +"POLYGON ((7 17.5, 7 17, 6.5 17, 6.5 17.5, 7 17.5))" +"POLYGON ((7.5 17.5, 7.5 17, 7 17, 7 17.5, 7.5 17.5))" +"POLYGON ((8 17.5, 8 17, 7.5 17, 7.5 17.5, 8 17.5))" +"POLYGON ((8.5 17.5, 8.5 17, 8 17, 8 17.5, 8.5 17.5))" +"POLYGON ((9 17.5, 9 17, 8.5 17, 8.5 17.5, 9 17.5))" +"POLYGON ((9.5 17.5, 9.5 17, 9 17, 9 17.5, 9.5 17.5))" +"POLYGON ((10 17.5, 10 17, 9.5 17, 9.5 17.5, 10 17.5))" +"POLYGON ((10.5 17.5, 10.5 17, 10 17, 10 17.5, 10.5 17.5))" +"POLYGON ((11 17.5, 11 17, 10.5 17, 10.5 17.5, 11 17.5))" +"POLYGON ((11.5 17.5, 11.5 17, 11 17, 11 17.5, 11.5 17.5))" +"POLYGON ((12 17.5, 12 17, 11.5 17, 11.5 17.5, 12 17.5))" +"POLYGON ((12.5 17.5, 12.5 17, 12 17, 12 17.5, 12.5 17.5))" +"POLYGON ((13 17.5, 13 17, 12.5 17, 12.5 17.5, 13 17.5))" +"POLYGON ((13.5 17.5, 13.5 17, 13 17, 13 17.5, 13.5 17.5))" +"POLYGON ((14 17.5, 14 17, 13.5 17, 13.5 17.5, 14 17.5))" +"POLYGON ((14.5 17.5, 14.5 17, 14 17, 14 17.5, 14.5 17.5))" +"POLYGON ((15 17.5, 15 17, 14.5 17, 14.5 17.5, 15 17.5))" +"POLYGON ((15.5 17.5, 15.5 17, 15 17, 15 17.5, 15.5 17.5))" +"POLYGON ((16 17.5, 16 17, 15.5 17, 15.5 17.5, 16 17.5))" +"POLYGON ((16.5 17.5, 16.5 17, 16 17, 16 17.5, 16.5 17.5))" +"POLYGON ((17 17.5, 17 17, 16.5 17, 16.5 17.5, 17 17.5))" +"POLYGON ((17.5 17.5, 17.5 17, 17 17, 17 17.5, 17.5 17.5))" +"POLYGON ((18 17.5, 18 17, 17.5 17, 17.5 17.5, 18 17.5))" +"POLYGON ((18.5 17.5, 18.5 17, 18 17, 18 17.5, 18.5 17.5))" +"POLYGON ((19 17.5, 19 17, 18.5 17, 18.5 17.5, 19 17.5))" +"POLYGON ((19.5 17.5, 19.5 17, 19 17, 19 17.5, 19.5 17.5))" +"POLYGON ((20 17.5, 20 17, 19.5 17, 19.5 17.5, 20 17.5))" +"POLYGON ((20.5 17.5, 20.5 17, 20 17, 20 17.5, 20.5 17.5))" +"POLYGON ((21 17.5, 21 17, 20.5 17, 20.5 17.5, 21 17.5))" +"POLYGON ((21.5 17.5, 21.5 17, 21 17, 21 17.5, 21.5 17.5))" +"POLYGON ((22 17.5, 22 17, 21.5 17, 21.5 17.5, 22 17.5))" +"POLYGON ((22.5 17.5, 22.5 17, 22 17, 22 17.5, 22.5 17.5))" +"POLYGON ((23 17.5, 23 17, 22.5 17, 22.5 17.5, 23 17.5))" +"POLYGON ((23.5 17.5, 23.5 17, 23 17, 23 17.5, 23.5 17.5))" +"POLYGON ((24 17.5, 24 17, 23.5 17, 23.5 17.5, 24 17.5))" +"POLYGON ((24.5 17.5, 24.5 17, 24 17, 24 17.5, 24.5 17.5))" +"POLYGON ((25 17.5, 25 17, 24.5 17, 24.5 17.5, 25 17.5))" +"POLYGON ((25.5 17.5, 25.5 17, 25 17, 25 17.5, 25.5 17.5))" +"POLYGON ((26 17.5, 26 17, 25.5 17, 25.5 17.5, 26 17.5))" +"POLYGON ((26.5 17.5, 26.5 17, 26 17, 26 17.5, 26.5 17.5))" +"POLYGON ((27 17.5, 27 17, 26.5 17, 26.5 17.5, 27 17.5))" +"POLYGON ((27.5 17.5, 27.5 17, 27 17, 27 17.5, 27.5 17.5))" +"POLYGON ((28 17.5, 28 17, 27.5 17, 27.5 17.5, 28 17.5))" +"POLYGON ((28.5 17.5, 28.5 17, 28 17, 28 17.5, 28.5 17.5))" +"POLYGON ((29 17.5, 29 17, 28.5 17, 28.5 17.5, 29 17.5))" +"POLYGON ((29.5 17.5, 29.5 17, 29 17, 29 17.5, 29.5 17.5))" +"POLYGON ((30 17.5, 30 17, 29.5 17, 29.5 17.5, 30 17.5))" +"POLYGON ((30.5 17.5, 30.5 17, 30 17, 30 17.5, 30.5 17.5))" +"POLYGON ((31 17.5, 31 17, 30.5 17, 30.5 17.5, 31 17.5))" +"POLYGON ((31.5 17.5, 31.5 17, 31 17, 31 17.5, 31.5 17.5))" +"POLYGON ((32 17.5, 32 17, 31.5 17, 31.5 17.5, 32 17.5))" +"POLYGON ((32.5 17.5, 32.5 17, 32 17, 32 17.5, 32.5 17.5))" +"POLYGON ((33 17.5, 33 17, 32.5 17, 32.5 17.5, 33 17.5))" +"POLYGON ((33.5 17.5, 33.5 17, 33 17, 33 17.5, 33.5 17.5))" +"POLYGON ((34 17.5, 34 17, 33.5 17, 33.5 17.5, 34 17.5))" +"POLYGON ((34.5 17.5, 34.5 17, 34 17, 34 17.5, 34.5 17.5))" +"POLYGON ((35 17.5, 35 17, 34.5 17, 34.5 17.5, 35 17.5))" +"POLYGON ((35.5 17.5, 35.5 17, 35 17, 35 17.5, 35.5 17.5))" +"POLYGON ((36 17.5, 36 17, 35.5 17, 35.5 17.5, 36 17.5))" +"POLYGON ((36.5 17.5, 36.5 17, 36 17, 36 17.5, 36.5 17.5))" +"POLYGON ((37 17.5, 37 17, 36.5 17, 36.5 17.5, 37 17.5))" +"POLYGON ((37.5 17.5, 37.5 17, 37 17, 37 17.5, 37.5 17.5))" +"POLYGON ((38 17.5, 38 17, 37.5 17, 37.5 17.5, 38 17.5))" +"POLYGON ((38.5 17.5, 38.5 17, 38 17, 38 17.5, 38.5 17.5))" +"POLYGON ((39 17.5, 39 17, 38.5 17, 38.5 17.5, 39 17.5))" +"POLYGON ((-15.5 18, -15.5 17.5, -16 17.5, -16 18, -15.5 18))" +"POLYGON ((-15 18, -15 17.5, -15.5 17.5, -15.5 18, -15 18))" +"POLYGON ((-14.5 18, -14.5 17.5, -15 17.5, -15 18, -14.5 18))" +"POLYGON ((-14 18, -14 17.5, -14.5 17.5, -14.5 18, -14 18))" +"POLYGON ((-13.5 18, -13.5 17.5, -14 17.5, -14 18, -13.5 18))" +"POLYGON ((-13 18, -13 17.5, -13.5 17.5, -13.5 18, -13 18))" +"POLYGON ((-12.5 18, -12.5 17.5, -13 17.5, -13 18, -12.5 18))" +"POLYGON ((-12 18, -12 17.5, -12.5 17.5, -12.5 18, -12 18))" +"POLYGON ((-11.5 18, -11.5 17.5, -12 17.5, -12 18, -11.5 18))" +"POLYGON ((-11 18, -11 17.5, -11.5 17.5, -11.5 18, -11 18))" +"POLYGON ((-10.5 18, -10.5 17.5, -11 17.5, -11 18, -10.5 18))" +"POLYGON ((-10 18, -10 17.5, -10.5 17.5, -10.5 18, -10 18))" +"POLYGON ((-9.5 18, -9.5 17.5, -10 17.5, -10 18, -9.5 18))" +"POLYGON ((-9 18, -9 17.5, -9.5 17.5, -9.5 18, -9 18))" +"POLYGON ((-8.5 18, -8.5 17.5, -9 17.5, -9 18, -8.5 18))" +"POLYGON ((-8 18, -8 17.5, -8.5 17.5, -8.5 18, -8 18))" +"POLYGON ((-7.5 18, -7.5 17.5, -8 17.5, -8 18, -7.5 18))" +"POLYGON ((-7 18, -7 17.5, -7.5 17.5, -7.5 18, -7 18))" +"POLYGON ((-6.5 18, -6.5 17.5, -7 17.5, -7 18, -6.5 18))" +"POLYGON ((-6 18, -6 17.5, -6.5 17.5, -6.5 18, -6 18))" +"POLYGON ((-5.5 18, -5.5 17.5, -6 17.5, -6 18, -5.5 18))" +"POLYGON ((-5 18, -5 17.5, -5.5 17.5, -5.5 18, -5 18))" +"POLYGON ((-4.5 18, -4.5 17.5, -5 17.5, -5 18, -4.5 18))" +"POLYGON ((-4 18, -4 17.5, -4.5 17.5, -4.5 18, -4 18))" +"POLYGON ((-3.5 18, -3.5 17.5, -4 17.5, -4 18, -3.5 18))" +"POLYGON ((-3 18, -3 17.5, -3.5 17.5, -3.5 18, -3 18))" +"POLYGON ((-2.5 18, -2.5 17.5, -3 17.5, -3 18, -2.5 18))" +"POLYGON ((-2 18, -2 17.5, -2.5 17.5, -2.5 18, -2 18))" +"POLYGON ((-1.5 18, -1.5 17.5, -2 17.5, -2 18, -1.5 18))" +"POLYGON ((-1 18, -1 17.5, -1.5 17.5, -1.5 18, -1 18))" +"POLYGON ((-0.5 18, -0.5 17.5, -1 17.5, -1 18, -0.5 18))" +"POLYGON ((0 18, 0 17.5, -0.5 17.5, -0.5 18, 0 18))" +"POLYGON ((0.5 18, 0.5 17.5, 0 17.5, 0 18, 0.5 18))" +"POLYGON ((1 18, 1 17.5, 0.5 17.5, 0.5 18, 1 18))" +"POLYGON ((1.5 18, 1.5 17.5, 1 17.5, 1 18, 1.5 18))" +"POLYGON ((2 18, 2 17.5, 1.5 17.5, 1.5 18, 2 18))" +"POLYGON ((2.5 18, 2.5 17.5, 2 17.5, 2 18, 2.5 18))" +"POLYGON ((3 18, 3 17.5, 2.5 17.5, 2.5 18, 3 18))" +"POLYGON ((3.5 18, 3.5 17.5, 3 17.5, 3 18, 3.5 18))" +"POLYGON ((4 18, 4 17.5, 3.5 17.5, 3.5 18, 4 18))" +"POLYGON ((4.5 18, 4.5 17.5, 4 17.5, 4 18, 4.5 18))" +"POLYGON ((5 18, 5 17.5, 4.5 17.5, 4.5 18, 5 18))" +"POLYGON ((5.5 18, 5.5 17.5, 5 17.5, 5 18, 5.5 18))" +"POLYGON ((6 18, 6 17.5, 5.5 17.5, 5.5 18, 6 18))" +"POLYGON ((6.5 18, 6.5 17.5, 6 17.5, 6 18, 6.5 18))" +"POLYGON ((7 18, 7 17.5, 6.5 17.5, 6.5 18, 7 18))" +"POLYGON ((7.5 18, 7.5 17.5, 7 17.5, 7 18, 7.5 18))" +"POLYGON ((8 18, 8 17.5, 7.5 17.5, 7.5 18, 8 18))" +"POLYGON ((8.5 18, 8.5 17.5, 8 17.5, 8 18, 8.5 18))" +"POLYGON ((9 18, 9 17.5, 8.5 17.5, 8.5 18, 9 18))" +"POLYGON ((9.5 18, 9.5 17.5, 9 17.5, 9 18, 9.5 18))" +"POLYGON ((10 18, 10 17.5, 9.5 17.5, 9.5 18, 10 18))" +"POLYGON ((10.5 18, 10.5 17.5, 10 17.5, 10 18, 10.5 18))" +"POLYGON ((11 18, 11 17.5, 10.5 17.5, 10.5 18, 11 18))" +"POLYGON ((11.5 18, 11.5 17.5, 11 17.5, 11 18, 11.5 18))" +"POLYGON ((12 18, 12 17.5, 11.5 17.5, 11.5 18, 12 18))" +"POLYGON ((12.5 18, 12.5 17.5, 12 17.5, 12 18, 12.5 18))" +"POLYGON ((13 18, 13 17.5, 12.5 17.5, 12.5 18, 13 18))" +"POLYGON ((13.5 18, 13.5 17.5, 13 17.5, 13 18, 13.5 18))" +"POLYGON ((14 18, 14 17.5, 13.5 17.5, 13.5 18, 14 18))" +"POLYGON ((14.5 18, 14.5 17.5, 14 17.5, 14 18, 14.5 18))" +"POLYGON ((15 18, 15 17.5, 14.5 17.5, 14.5 18, 15 18))" +"POLYGON ((15.5 18, 15.5 17.5, 15 17.5, 15 18, 15.5 18))" +"POLYGON ((16 18, 16 17.5, 15.5 17.5, 15.5 18, 16 18))" +"POLYGON ((16.5 18, 16.5 17.5, 16 17.5, 16 18, 16.5 18))" +"POLYGON ((17 18, 17 17.5, 16.5 17.5, 16.5 18, 17 18))" +"POLYGON ((17.5 18, 17.5 17.5, 17 17.5, 17 18, 17.5 18))" +"POLYGON ((18 18, 18 17.5, 17.5 17.5, 17.5 18, 18 18))" +"POLYGON ((18.5 18, 18.5 17.5, 18 17.5, 18 18, 18.5 18))" +"POLYGON ((19 18, 19 17.5, 18.5 17.5, 18.5 18, 19 18))" +"POLYGON ((19.5 18, 19.5 17.5, 19 17.5, 19 18, 19.5 18))" +"POLYGON ((20 18, 20 17.5, 19.5 17.5, 19.5 18, 20 18))" +"POLYGON ((20.5 18, 20.5 17.5, 20 17.5, 20 18, 20.5 18))" +"POLYGON ((21 18, 21 17.5, 20.5 17.5, 20.5 18, 21 18))" +"POLYGON ((21.5 18, 21.5 17.5, 21 17.5, 21 18, 21.5 18))" +"POLYGON ((22 18, 22 17.5, 21.5 17.5, 21.5 18, 22 18))" +"POLYGON ((22.5 18, 22.5 17.5, 22 17.5, 22 18, 22.5 18))" +"POLYGON ((23 18, 23 17.5, 22.5 17.5, 22.5 18, 23 18))" +"POLYGON ((23.5 18, 23.5 17.5, 23 17.5, 23 18, 23.5 18))" +"POLYGON ((24 18, 24 17.5, 23.5 17.5, 23.5 18, 24 18))" +"POLYGON ((24.5 18, 24.5 17.5, 24 17.5, 24 18, 24.5 18))" +"POLYGON ((25 18, 25 17.5, 24.5 17.5, 24.5 18, 25 18))" +"POLYGON ((25.5 18, 25.5 17.5, 25 17.5, 25 18, 25.5 18))" +"POLYGON ((26 18, 26 17.5, 25.5 17.5, 25.5 18, 26 18))" +"POLYGON ((26.5 18, 26.5 17.5, 26 17.5, 26 18, 26.5 18))" +"POLYGON ((27 18, 27 17.5, 26.5 17.5, 26.5 18, 27 18))" +"POLYGON ((27.5 18, 27.5 17.5, 27 17.5, 27 18, 27.5 18))" +"POLYGON ((28 18, 28 17.5, 27.5 17.5, 27.5 18, 28 18))" +"POLYGON ((28.5 18, 28.5 17.5, 28 17.5, 28 18, 28.5 18))" +"POLYGON ((29 18, 29 17.5, 28.5 17.5, 28.5 18, 29 18))" +"POLYGON ((29.5 18, 29.5 17.5, 29 17.5, 29 18, 29.5 18))" +"POLYGON ((30 18, 30 17.5, 29.5 17.5, 29.5 18, 30 18))" +"POLYGON ((30.5 18, 30.5 17.5, 30 17.5, 30 18, 30.5 18))" +"POLYGON ((31 18, 31 17.5, 30.5 17.5, 30.5 18, 31 18))" +"POLYGON ((31.5 18, 31.5 17.5, 31 17.5, 31 18, 31.5 18))" +"POLYGON ((32 18, 32 17.5, 31.5 17.5, 31.5 18, 32 18))" +"POLYGON ((32.5 18, 32.5 17.5, 32 17.5, 32 18, 32.5 18))" +"POLYGON ((33 18, 33 17.5, 32.5 17.5, 32.5 18, 33 18))" +"POLYGON ((33.5 18, 33.5 17.5, 33 17.5, 33 18, 33.5 18))" +"POLYGON ((34 18, 34 17.5, 33.5 17.5, 33.5 18, 34 18))" +"POLYGON ((34.5 18, 34.5 17.5, 34 17.5, 34 18, 34.5 18))" +"POLYGON ((35 18, 35 17.5, 34.5 17.5, 34.5 18, 35 18))" +"POLYGON ((35.5 18, 35.5 17.5, 35 17.5, 35 18, 35.5 18))" +"POLYGON ((36 18, 36 17.5, 35.5 17.5, 35.5 18, 36 18))" +"POLYGON ((36.5 18, 36.5 17.5, 36 17.5, 36 18, 36.5 18))" +"POLYGON ((37 18, 37 17.5, 36.5 17.5, 36.5 18, 37 18))" +"POLYGON ((37.5 18, 37.5 17.5, 37 17.5, 37 18, 37.5 18))" +"POLYGON ((38 18, 38 17.5, 37.5 17.5, 37.5 18, 38 18))" +"POLYGON ((38.5 18, 38.5 17.5, 38 17.5, 38 18, 38.5 18))" +"POLYGON ((-15.5 18.5, -15.5 18, -16 18, -16 18.5, -15.5 18.5))" +"POLYGON ((-15 18.5, -15 18, -15.5 18, -15.5 18.5, -15 18.5))" +"POLYGON ((-14.5 18.5, -14.5 18, -15 18, -15 18.5, -14.5 18.5))" +"POLYGON ((-14 18.5, -14 18, -14.5 18, -14.5 18.5, -14 18.5))" +"POLYGON ((-13.5 18.5, -13.5 18, -14 18, -14 18.5, -13.5 18.5))" +"POLYGON ((-13 18.5, -13 18, -13.5 18, -13.5 18.5, -13 18.5))" +"POLYGON ((-12.5 18.5, -12.5 18, -13 18, -13 18.5, -12.5 18.5))" +"POLYGON ((-12 18.5, -12 18, -12.5 18, -12.5 18.5, -12 18.5))" +"POLYGON ((-11.5 18.5, -11.5 18, -12 18, -12 18.5, -11.5 18.5))" +"POLYGON ((-11 18.5, -11 18, -11.5 18, -11.5 18.5, -11 18.5))" +"POLYGON ((-10.5 18.5, -10.5 18, -11 18, -11 18.5, -10.5 18.5))" +"POLYGON ((-10 18.5, -10 18, -10.5 18, -10.5 18.5, -10 18.5))" +"POLYGON ((-9.5 18.5, -9.5 18, -10 18, -10 18.5, -9.5 18.5))" +"POLYGON ((-9 18.5, -9 18, -9.5 18, -9.5 18.5, -9 18.5))" +"POLYGON ((-8.5 18.5, -8.5 18, -9 18, -9 18.5, -8.5 18.5))" +"POLYGON ((-8 18.5, -8 18, -8.5 18, -8.5 18.5, -8 18.5))" +"POLYGON ((-7.5 18.5, -7.5 18, -8 18, -8 18.5, -7.5 18.5))" +"POLYGON ((-7 18.5, -7 18, -7.5 18, -7.5 18.5, -7 18.5))" +"POLYGON ((-6.5 18.5, -6.5 18, -7 18, -7 18.5, -6.5 18.5))" +"POLYGON ((-6 18.5, -6 18, -6.5 18, -6.5 18.5, -6 18.5))" +"POLYGON ((-5.5 18.5, -5.5 18, -6 18, -6 18.5, -5.5 18.5))" +"POLYGON ((-5 18.5, -5 18, -5.5 18, -5.5 18.5, -5 18.5))" +"POLYGON ((-4.5 18.5, -4.5 18, -5 18, -5 18.5, -4.5 18.5))" +"POLYGON ((-4 18.5, -4 18, -4.5 18, -4.5 18.5, -4 18.5))" +"POLYGON ((-3.5 18.5, -3.5 18, -4 18, -4 18.5, -3.5 18.5))" +"POLYGON ((-3 18.5, -3 18, -3.5 18, -3.5 18.5, -3 18.5))" +"POLYGON ((-2.5 18.5, -2.5 18, -3 18, -3 18.5, -2.5 18.5))" +"POLYGON ((-2 18.5, -2 18, -2.5 18, -2.5 18.5, -2 18.5))" +"POLYGON ((-1.5 18.5, -1.5 18, -2 18, -2 18.5, -1.5 18.5))" +"POLYGON ((-1 18.5, -1 18, -1.5 18, -1.5 18.5, -1 18.5))" +"POLYGON ((-0.5 18.5, -0.5 18, -1 18, -1 18.5, -0.5 18.5))" +"POLYGON ((0 18.5, 0 18, -0.5 18, -0.5 18.5, 0 18.5))" +"POLYGON ((0.5 18.5, 0.5 18, 0 18, 0 18.5, 0.5 18.5))" +"POLYGON ((1 18.5, 1 18, 0.5 18, 0.5 18.5, 1 18.5))" +"POLYGON ((1.5 18.5, 1.5 18, 1 18, 1 18.5, 1.5 18.5))" +"POLYGON ((2 18.5, 2 18, 1.5 18, 1.5 18.5, 2 18.5))" +"POLYGON ((2.5 18.5, 2.5 18, 2 18, 2 18.5, 2.5 18.5))" +"POLYGON ((3 18.5, 3 18, 2.5 18, 2.5 18.5, 3 18.5))" +"POLYGON ((3.5 18.5, 3.5 18, 3 18, 3 18.5, 3.5 18.5))" +"POLYGON ((4 18.5, 4 18, 3.5 18, 3.5 18.5, 4 18.5))" +"POLYGON ((4.5 18.5, 4.5 18, 4 18, 4 18.5, 4.5 18.5))" +"POLYGON ((5 18.5, 5 18, 4.5 18, 4.5 18.5, 5 18.5))" +"POLYGON ((5.5 18.5, 5.5 18, 5 18, 5 18.5, 5.5 18.5))" +"POLYGON ((6 18.5, 6 18, 5.5 18, 5.5 18.5, 6 18.5))" +"POLYGON ((6.5 18.5, 6.5 18, 6 18, 6 18.5, 6.5 18.5))" +"POLYGON ((7 18.5, 7 18, 6.5 18, 6.5 18.5, 7 18.5))" +"POLYGON ((7.5 18.5, 7.5 18, 7 18, 7 18.5, 7.5 18.5))" +"POLYGON ((8 18.5, 8 18, 7.5 18, 7.5 18.5, 8 18.5))" +"POLYGON ((8.5 18.5, 8.5 18, 8 18, 8 18.5, 8.5 18.5))" +"POLYGON ((9 18.5, 9 18, 8.5 18, 8.5 18.5, 9 18.5))" +"POLYGON ((9.5 18.5, 9.5 18, 9 18, 9 18.5, 9.5 18.5))" +"POLYGON ((10 18.5, 10 18, 9.5 18, 9.5 18.5, 10 18.5))" +"POLYGON ((10.5 18.5, 10.5 18, 10 18, 10 18.5, 10.5 18.5))" +"POLYGON ((11 18.5, 11 18, 10.5 18, 10.5 18.5, 11 18.5))" +"POLYGON ((11.5 18.5, 11.5 18, 11 18, 11 18.5, 11.5 18.5))" +"POLYGON ((12 18.5, 12 18, 11.5 18, 11.5 18.5, 12 18.5))" +"POLYGON ((12.5 18.5, 12.5 18, 12 18, 12 18.5, 12.5 18.5))" +"POLYGON ((13 18.5, 13 18, 12.5 18, 12.5 18.5, 13 18.5))" +"POLYGON ((13.5 18.5, 13.5 18, 13 18, 13 18.5, 13.5 18.5))" +"POLYGON ((14 18.5, 14 18, 13.5 18, 13.5 18.5, 14 18.5))" +"POLYGON ((14.5 18.5, 14.5 18, 14 18, 14 18.5, 14.5 18.5))" +"POLYGON ((15 18.5, 15 18, 14.5 18, 14.5 18.5, 15 18.5))" +"POLYGON ((15.5 18.5, 15.5 18, 15 18, 15 18.5, 15.5 18.5))" +"POLYGON ((16 18.5, 16 18, 15.5 18, 15.5 18.5, 16 18.5))" +"POLYGON ((16.5 18.5, 16.5 18, 16 18, 16 18.5, 16.5 18.5))" +"POLYGON ((17 18.5, 17 18, 16.5 18, 16.5 18.5, 17 18.5))" +"POLYGON ((17.5 18.5, 17.5 18, 17 18, 17 18.5, 17.5 18.5))" +"POLYGON ((18 18.5, 18 18, 17.5 18, 17.5 18.5, 18 18.5))" +"POLYGON ((18.5 18.5, 18.5 18, 18 18, 18 18.5, 18.5 18.5))" +"POLYGON ((19 18.5, 19 18, 18.5 18, 18.5 18.5, 19 18.5))" +"POLYGON ((19.5 18.5, 19.5 18, 19 18, 19 18.5, 19.5 18.5))" +"POLYGON ((20 18.5, 20 18, 19.5 18, 19.5 18.5, 20 18.5))" +"POLYGON ((20.5 18.5, 20.5 18, 20 18, 20 18.5, 20.5 18.5))" +"POLYGON ((21 18.5, 21 18, 20.5 18, 20.5 18.5, 21 18.5))" +"POLYGON ((21.5 18.5, 21.5 18, 21 18, 21 18.5, 21.5 18.5))" +"POLYGON ((22 18.5, 22 18, 21.5 18, 21.5 18.5, 22 18.5))" +"POLYGON ((22.5 18.5, 22.5 18, 22 18, 22 18.5, 22.5 18.5))" +"POLYGON ((23 18.5, 23 18, 22.5 18, 22.5 18.5, 23 18.5))" +"POLYGON ((23.5 18.5, 23.5 18, 23 18, 23 18.5, 23.5 18.5))" +"POLYGON ((24 18.5, 24 18, 23.5 18, 23.5 18.5, 24 18.5))" +"POLYGON ((24.5 18.5, 24.5 18, 24 18, 24 18.5, 24.5 18.5))" +"POLYGON ((25 18.5, 25 18, 24.5 18, 24.5 18.5, 25 18.5))" +"POLYGON ((25.5 18.5, 25.5 18, 25 18, 25 18.5, 25.5 18.5))" +"POLYGON ((26 18.5, 26 18, 25.5 18, 25.5 18.5, 26 18.5))" +"POLYGON ((26.5 18.5, 26.5 18, 26 18, 26 18.5, 26.5 18.5))" +"POLYGON ((27 18.5, 27 18, 26.5 18, 26.5 18.5, 27 18.5))" +"POLYGON ((27.5 18.5, 27.5 18, 27 18, 27 18.5, 27.5 18.5))" +"POLYGON ((28 18.5, 28 18, 27.5 18, 27.5 18.5, 28 18.5))" +"POLYGON ((28.5 18.5, 28.5 18, 28 18, 28 18.5, 28.5 18.5))" +"POLYGON ((29 18.5, 29 18, 28.5 18, 28.5 18.5, 29 18.5))" +"POLYGON ((29.5 18.5, 29.5 18, 29 18, 29 18.5, 29.5 18.5))" +"POLYGON ((30 18.5, 30 18, 29.5 18, 29.5 18.5, 30 18.5))" +"POLYGON ((30.5 18.5, 30.5 18, 30 18, 30 18.5, 30.5 18.5))" +"POLYGON ((31 18.5, 31 18, 30.5 18, 30.5 18.5, 31 18.5))" +"POLYGON ((31.5 18.5, 31.5 18, 31 18, 31 18.5, 31.5 18.5))" +"POLYGON ((32 18.5, 32 18, 31.5 18, 31.5 18.5, 32 18.5))" +"POLYGON ((32.5 18.5, 32.5 18, 32 18, 32 18.5, 32.5 18.5))" +"POLYGON ((33 18.5, 33 18, 32.5 18, 32.5 18.5, 33 18.5))" +"POLYGON ((33.5 18.5, 33.5 18, 33 18, 33 18.5, 33.5 18.5))" +"POLYGON ((34 18.5, 34 18, 33.5 18, 33.5 18.5, 34 18.5))" +"POLYGON ((34.5 18.5, 34.5 18, 34 18, 34 18.5, 34.5 18.5))" +"POLYGON ((35 18.5, 35 18, 34.5 18, 34.5 18.5, 35 18.5))" +"POLYGON ((35.5 18.5, 35.5 18, 35 18, 35 18.5, 35.5 18.5))" +"POLYGON ((36 18.5, 36 18, 35.5 18, 35.5 18.5, 36 18.5))" +"POLYGON ((36.5 18.5, 36.5 18, 36 18, 36 18.5, 36.5 18.5))" +"POLYGON ((37 18.5, 37 18, 36.5 18, 36.5 18.5, 37 18.5))" +"POLYGON ((37.5 18.5, 37.5 18, 37 18, 37 18.5, 37.5 18.5))" +"POLYGON ((38 18.5, 38 18, 37.5 18, 37.5 18.5, 38 18.5))" +"POLYGON ((38.5 18.5, 38.5 18, 38 18, 38 18.5, 38.5 18.5))" +"POLYGON ((-15.5 19, -15.5 18.5, -16 18.5, -16 19, -15.5 19))" +"POLYGON ((-15 19, -15 18.5, -15.5 18.5, -15.5 19, -15 19))" +"POLYGON ((-14.5 19, -14.5 18.5, -15 18.5, -15 19, -14.5 19))" +"POLYGON ((-14 19, -14 18.5, -14.5 18.5, -14.5 19, -14 19))" +"POLYGON ((-13.5 19, -13.5 18.5, -14 18.5, -14 19, -13.5 19))" +"POLYGON ((-13 19, -13 18.5, -13.5 18.5, -13.5 19, -13 19))" +"POLYGON ((-12.5 19, -12.5 18.5, -13 18.5, -13 19, -12.5 19))" +"POLYGON ((-12 19, -12 18.5, -12.5 18.5, -12.5 19, -12 19))" +"POLYGON ((-11.5 19, -11.5 18.5, -12 18.5, -12 19, -11.5 19))" +"POLYGON ((-11 19, -11 18.5, -11.5 18.5, -11.5 19, -11 19))" +"POLYGON ((-10.5 19, -10.5 18.5, -11 18.5, -11 19, -10.5 19))" +"POLYGON ((-10 19, -10 18.5, -10.5 18.5, -10.5 19, -10 19))" +"POLYGON ((-9.5 19, -9.5 18.5, -10 18.5, -10 19, -9.5 19))" +"POLYGON ((-9 19, -9 18.5, -9.5 18.5, -9.5 19, -9 19))" +"POLYGON ((-8.5 19, -8.5 18.5, -9 18.5, -9 19, -8.5 19))" +"POLYGON ((-8 19, -8 18.5, -8.5 18.5, -8.5 19, -8 19))" +"POLYGON ((-7.5 19, -7.5 18.5, -8 18.5, -8 19, -7.5 19))" +"POLYGON ((-7 19, -7 18.5, -7.5 18.5, -7.5 19, -7 19))" +"POLYGON ((-6.5 19, -6.5 18.5, -7 18.5, -7 19, -6.5 19))" +"POLYGON ((-6 19, -6 18.5, -6.5 18.5, -6.5 19, -6 19))" +"POLYGON ((-5.5 19, -5.5 18.5, -6 18.5, -6 19, -5.5 19))" +"POLYGON ((-5 19, -5 18.5, -5.5 18.5, -5.5 19, -5 19))" +"POLYGON ((-4.5 19, -4.5 18.5, -5 18.5, -5 19, -4.5 19))" +"POLYGON ((-4 19, -4 18.5, -4.5 18.5, -4.5 19, -4 19))" +"POLYGON ((-3.5 19, -3.5 18.5, -4 18.5, -4 19, -3.5 19))" +"POLYGON ((-3 19, -3 18.5, -3.5 18.5, -3.5 19, -3 19))" +"POLYGON ((-2.5 19, -2.5 18.5, -3 18.5, -3 19, -2.5 19))" +"POLYGON ((-2 19, -2 18.5, -2.5 18.5, -2.5 19, -2 19))" +"POLYGON ((-1.5 19, -1.5 18.5, -2 18.5, -2 19, -1.5 19))" +"POLYGON ((-1 19, -1 18.5, -1.5 18.5, -1.5 19, -1 19))" +"POLYGON ((-0.5 19, -0.5 18.5, -1 18.5, -1 19, -0.5 19))" +"POLYGON ((0 19, 0 18.5, -0.5 18.5, -0.5 19, 0 19))" +"POLYGON ((0.5 19, 0.5 18.5, 0 18.5, 0 19, 0.5 19))" +"POLYGON ((1 19, 1 18.5, 0.5 18.5, 0.5 19, 1 19))" +"POLYGON ((1.5 19, 1.5 18.5, 1 18.5, 1 19, 1.5 19))" +"POLYGON ((2 19, 2 18.5, 1.5 18.5, 1.5 19, 2 19))" +"POLYGON ((2.5 19, 2.5 18.5, 2 18.5, 2 19, 2.5 19))" +"POLYGON ((3 19, 3 18.5, 2.5 18.5, 2.5 19, 3 19))" +"POLYGON ((3.5 19, 3.5 18.5, 3 18.5, 3 19, 3.5 19))" +"POLYGON ((4 19, 4 18.5, 3.5 18.5, 3.5 19, 4 19))" +"POLYGON ((4.5 19, 4.5 18.5, 4 18.5, 4 19, 4.5 19))" +"POLYGON ((5 19, 5 18.5, 4.5 18.5, 4.5 19, 5 19))" +"POLYGON ((5.5 19, 5.5 18.5, 5 18.5, 5 19, 5.5 19))" +"POLYGON ((6 19, 6 18.5, 5.5 18.5, 5.5 19, 6 19))" +"POLYGON ((6.5 19, 6.5 18.5, 6 18.5, 6 19, 6.5 19))" +"POLYGON ((7 19, 7 18.5, 6.5 18.5, 6.5 19, 7 19))" +"POLYGON ((7.5 19, 7.5 18.5, 7 18.5, 7 19, 7.5 19))" +"POLYGON ((8 19, 8 18.5, 7.5 18.5, 7.5 19, 8 19))" +"POLYGON ((8.5 19, 8.5 18.5, 8 18.5, 8 19, 8.5 19))" +"POLYGON ((9 19, 9 18.5, 8.5 18.5, 8.5 19, 9 19))" +"POLYGON ((9.5 19, 9.5 18.5, 9 18.5, 9 19, 9.5 19))" +"POLYGON ((10 19, 10 18.5, 9.5 18.5, 9.5 19, 10 19))" +"POLYGON ((10.5 19, 10.5 18.5, 10 18.5, 10 19, 10.5 19))" +"POLYGON ((11 19, 11 18.5, 10.5 18.5, 10.5 19, 11 19))" +"POLYGON ((11.5 19, 11.5 18.5, 11 18.5, 11 19, 11.5 19))" +"POLYGON ((12 19, 12 18.5, 11.5 18.5, 11.5 19, 12 19))" +"POLYGON ((12.5 19, 12.5 18.5, 12 18.5, 12 19, 12.5 19))" +"POLYGON ((13 19, 13 18.5, 12.5 18.5, 12.5 19, 13 19))" +"POLYGON ((13.5 19, 13.5 18.5, 13 18.5, 13 19, 13.5 19))" +"POLYGON ((14 19, 14 18.5, 13.5 18.5, 13.5 19, 14 19))" +"POLYGON ((14.5 19, 14.5 18.5, 14 18.5, 14 19, 14.5 19))" +"POLYGON ((15 19, 15 18.5, 14.5 18.5, 14.5 19, 15 19))" +"POLYGON ((15.5 19, 15.5 18.5, 15 18.5, 15 19, 15.5 19))" +"POLYGON ((16 19, 16 18.5, 15.5 18.5, 15.5 19, 16 19))" +"POLYGON ((16.5 19, 16.5 18.5, 16 18.5, 16 19, 16.5 19))" +"POLYGON ((17 19, 17 18.5, 16.5 18.5, 16.5 19, 17 19))" +"POLYGON ((17.5 19, 17.5 18.5, 17 18.5, 17 19, 17.5 19))" +"POLYGON ((18 19, 18 18.5, 17.5 18.5, 17.5 19, 18 19))" +"POLYGON ((18.5 19, 18.5 18.5, 18 18.5, 18 19, 18.5 19))" +"POLYGON ((19 19, 19 18.5, 18.5 18.5, 18.5 19, 19 19))" +"POLYGON ((19.5 19, 19.5 18.5, 19 18.5, 19 19, 19.5 19))" +"POLYGON ((20 19, 20 18.5, 19.5 18.5, 19.5 19, 20 19))" +"POLYGON ((20.5 19, 20.5 18.5, 20 18.5, 20 19, 20.5 19))" +"POLYGON ((21 19, 21 18.5, 20.5 18.5, 20.5 19, 21 19))" +"POLYGON ((21.5 19, 21.5 18.5, 21 18.5, 21 19, 21.5 19))" +"POLYGON ((22 19, 22 18.5, 21.5 18.5, 21.5 19, 22 19))" +"POLYGON ((22.5 19, 22.5 18.5, 22 18.5, 22 19, 22.5 19))" +"POLYGON ((23 19, 23 18.5, 22.5 18.5, 22.5 19, 23 19))" +"POLYGON ((23.5 19, 23.5 18.5, 23 18.5, 23 19, 23.5 19))" +"POLYGON ((24 19, 24 18.5, 23.5 18.5, 23.5 19, 24 19))" +"POLYGON ((24.5 19, 24.5 18.5, 24 18.5, 24 19, 24.5 19))" +"POLYGON ((25 19, 25 18.5, 24.5 18.5, 24.5 19, 25 19))" +"POLYGON ((25.5 19, 25.5 18.5, 25 18.5, 25 19, 25.5 19))" +"POLYGON ((26 19, 26 18.5, 25.5 18.5, 25.5 19, 26 19))" +"POLYGON ((26.5 19, 26.5 18.5, 26 18.5, 26 19, 26.5 19))" +"POLYGON ((27 19, 27 18.5, 26.5 18.5, 26.5 19, 27 19))" +"POLYGON ((27.5 19, 27.5 18.5, 27 18.5, 27 19, 27.5 19))" +"POLYGON ((28 19, 28 18.5, 27.5 18.5, 27.5 19, 28 19))" +"POLYGON ((28.5 19, 28.5 18.5, 28 18.5, 28 19, 28.5 19))" +"POLYGON ((29 19, 29 18.5, 28.5 18.5, 28.5 19, 29 19))" +"POLYGON ((29.5 19, 29.5 18.5, 29 18.5, 29 19, 29.5 19))" +"POLYGON ((30 19, 30 18.5, 29.5 18.5, 29.5 19, 30 19))" +"POLYGON ((30.5 19, 30.5 18.5, 30 18.5, 30 19, 30.5 19))" +"POLYGON ((31 19, 31 18.5, 30.5 18.5, 30.5 19, 31 19))" +"POLYGON ((31.5 19, 31.5 18.5, 31 18.5, 31 19, 31.5 19))" +"POLYGON ((32 19, 32 18.5, 31.5 18.5, 31.5 19, 32 19))" +"POLYGON ((32.5 19, 32.5 18.5, 32 18.5, 32 19, 32.5 19))" +"POLYGON ((33 19, 33 18.5, 32.5 18.5, 32.5 19, 33 19))" +"POLYGON ((33.5 19, 33.5 18.5, 33 18.5, 33 19, 33.5 19))" +"POLYGON ((34 19, 34 18.5, 33.5 18.5, 33.5 19, 34 19))" +"POLYGON ((34.5 19, 34.5 18.5, 34 18.5, 34 19, 34.5 19))" +"POLYGON ((35 19, 35 18.5, 34.5 18.5, 34.5 19, 35 19))" +"POLYGON ((35.5 19, 35.5 18.5, 35 18.5, 35 19, 35.5 19))" +"POLYGON ((36 19, 36 18.5, 35.5 18.5, 35.5 19, 36 19))" +"POLYGON ((36.5 19, 36.5 18.5, 36 18.5, 36 19, 36.5 19))" +"POLYGON ((37 19, 37 18.5, 36.5 18.5, 36.5 19, 37 19))" +"POLYGON ((37.5 19, 37.5 18.5, 37 18.5, 37 19, 37.5 19))" +"POLYGON ((-16 19.5, -16 19, -16.5 19, -16.5 19.5, -16 19.5))" +"POLYGON ((-15.5 19.5, -15.5 19, -16 19, -16 19.5, -15.5 19.5))" +"POLYGON ((-15 19.5, -15 19, -15.5 19, -15.5 19.5, -15 19.5))" +"POLYGON ((-14.5 19.5, -14.5 19, -15 19, -15 19.5, -14.5 19.5))" +"POLYGON ((-14 19.5, -14 19, -14.5 19, -14.5 19.5, -14 19.5))" +"POLYGON ((-13.5 19.5, -13.5 19, -14 19, -14 19.5, -13.5 19.5))" +"POLYGON ((-13 19.5, -13 19, -13.5 19, -13.5 19.5, -13 19.5))" +"POLYGON ((-12.5 19.5, -12.5 19, -13 19, -13 19.5, -12.5 19.5))" +"POLYGON ((-12 19.5, -12 19, -12.5 19, -12.5 19.5, -12 19.5))" +"POLYGON ((-11.5 19.5, -11.5 19, -12 19, -12 19.5, -11.5 19.5))" +"POLYGON ((-11 19.5, -11 19, -11.5 19, -11.5 19.5, -11 19.5))" +"POLYGON ((-10.5 19.5, -10.5 19, -11 19, -11 19.5, -10.5 19.5))" +"POLYGON ((-10 19.5, -10 19, -10.5 19, -10.5 19.5, -10 19.5))" +"POLYGON ((-9.5 19.5, -9.5 19, -10 19, -10 19.5, -9.5 19.5))" +"POLYGON ((-9 19.5, -9 19, -9.5 19, -9.5 19.5, -9 19.5))" +"POLYGON ((-8.5 19.5, -8.5 19, -9 19, -9 19.5, -8.5 19.5))" +"POLYGON ((-8 19.5, -8 19, -8.5 19, -8.5 19.5, -8 19.5))" +"POLYGON ((-7.5 19.5, -7.5 19, -8 19, -8 19.5, -7.5 19.5))" +"POLYGON ((-7 19.5, -7 19, -7.5 19, -7.5 19.5, -7 19.5))" +"POLYGON ((-6.5 19.5, -6.5 19, -7 19, -7 19.5, -6.5 19.5))" +"POLYGON ((-6 19.5, -6 19, -6.5 19, -6.5 19.5, -6 19.5))" +"POLYGON ((-5.5 19.5, -5.5 19, -6 19, -6 19.5, -5.5 19.5))" +"POLYGON ((-5 19.5, -5 19, -5.5 19, -5.5 19.5, -5 19.5))" +"POLYGON ((-4.5 19.5, -4.5 19, -5 19, -5 19.5, -4.5 19.5))" +"POLYGON ((-4 19.5, -4 19, -4.5 19, -4.5 19.5, -4 19.5))" +"POLYGON ((-3.5 19.5, -3.5 19, -4 19, -4 19.5, -3.5 19.5))" +"POLYGON ((-3 19.5, -3 19, -3.5 19, -3.5 19.5, -3 19.5))" +"POLYGON ((-2.5 19.5, -2.5 19, -3 19, -3 19.5, -2.5 19.5))" +"POLYGON ((-2 19.5, -2 19, -2.5 19, -2.5 19.5, -2 19.5))" +"POLYGON ((-1.5 19.5, -1.5 19, -2 19, -2 19.5, -1.5 19.5))" +"POLYGON ((-1 19.5, -1 19, -1.5 19, -1.5 19.5, -1 19.5))" +"POLYGON ((-0.5 19.5, -0.5 19, -1 19, -1 19.5, -0.5 19.5))" +"POLYGON ((0 19.5, 0 19, -0.5 19, -0.5 19.5, 0 19.5))" +"POLYGON ((0.5 19.5, 0.5 19, 0 19, 0 19.5, 0.5 19.5))" +"POLYGON ((1 19.5, 1 19, 0.5 19, 0.5 19.5, 1 19.5))" +"POLYGON ((1.5 19.5, 1.5 19, 1 19, 1 19.5, 1.5 19.5))" +"POLYGON ((2 19.5, 2 19, 1.5 19, 1.5 19.5, 2 19.5))" +"POLYGON ((2.5 19.5, 2.5 19, 2 19, 2 19.5, 2.5 19.5))" +"POLYGON ((3 19.5, 3 19, 2.5 19, 2.5 19.5, 3 19.5))" +"POLYGON ((3.5 19.5, 3.5 19, 3 19, 3 19.5, 3.5 19.5))" +"POLYGON ((4 19.5, 4 19, 3.5 19, 3.5 19.5, 4 19.5))" +"POLYGON ((4.5 19.5, 4.5 19, 4 19, 4 19.5, 4.5 19.5))" +"POLYGON ((5 19.5, 5 19, 4.5 19, 4.5 19.5, 5 19.5))" +"POLYGON ((5.5 19.5, 5.5 19, 5 19, 5 19.5, 5.5 19.5))" +"POLYGON ((6 19.5, 6 19, 5.5 19, 5.5 19.5, 6 19.5))" +"POLYGON ((6.5 19.5, 6.5 19, 6 19, 6 19.5, 6.5 19.5))" +"POLYGON ((7 19.5, 7 19, 6.5 19, 6.5 19.5, 7 19.5))" +"POLYGON ((7.5 19.5, 7.5 19, 7 19, 7 19.5, 7.5 19.5))" +"POLYGON ((8 19.5, 8 19, 7.5 19, 7.5 19.5, 8 19.5))" +"POLYGON ((8.5 19.5, 8.5 19, 8 19, 8 19.5, 8.5 19.5))" +"POLYGON ((9 19.5, 9 19, 8.5 19, 8.5 19.5, 9 19.5))" +"POLYGON ((9.5 19.5, 9.5 19, 9 19, 9 19.5, 9.5 19.5))" +"POLYGON ((10 19.5, 10 19, 9.5 19, 9.5 19.5, 10 19.5))" +"POLYGON ((10.5 19.5, 10.5 19, 10 19, 10 19.5, 10.5 19.5))" +"POLYGON ((11 19.5, 11 19, 10.5 19, 10.5 19.5, 11 19.5))" +"POLYGON ((11.5 19.5, 11.5 19, 11 19, 11 19.5, 11.5 19.5))" +"POLYGON ((12 19.5, 12 19, 11.5 19, 11.5 19.5, 12 19.5))" +"POLYGON ((12.5 19.5, 12.5 19, 12 19, 12 19.5, 12.5 19.5))" +"POLYGON ((13 19.5, 13 19, 12.5 19, 12.5 19.5, 13 19.5))" +"POLYGON ((13.5 19.5, 13.5 19, 13 19, 13 19.5, 13.5 19.5))" +"POLYGON ((14 19.5, 14 19, 13.5 19, 13.5 19.5, 14 19.5))" +"POLYGON ((14.5 19.5, 14.5 19, 14 19, 14 19.5, 14.5 19.5))" +"POLYGON ((15 19.5, 15 19, 14.5 19, 14.5 19.5, 15 19.5))" +"POLYGON ((15.5 19.5, 15.5 19, 15 19, 15 19.5, 15.5 19.5))" +"POLYGON ((16 19.5, 16 19, 15.5 19, 15.5 19.5, 16 19.5))" +"POLYGON ((16.5 19.5, 16.5 19, 16 19, 16 19.5, 16.5 19.5))" +"POLYGON ((17 19.5, 17 19, 16.5 19, 16.5 19.5, 17 19.5))" +"POLYGON ((17.5 19.5, 17.5 19, 17 19, 17 19.5, 17.5 19.5))" +"POLYGON ((18 19.5, 18 19, 17.5 19, 17.5 19.5, 18 19.5))" +"POLYGON ((18.5 19.5, 18.5 19, 18 19, 18 19.5, 18.5 19.5))" +"POLYGON ((19 19.5, 19 19, 18.5 19, 18.5 19.5, 19 19.5))" +"POLYGON ((19.5 19.5, 19.5 19, 19 19, 19 19.5, 19.5 19.5))" +"POLYGON ((20 19.5, 20 19, 19.5 19, 19.5 19.5, 20 19.5))" +"POLYGON ((20.5 19.5, 20.5 19, 20 19, 20 19.5, 20.5 19.5))" +"POLYGON ((21 19.5, 21 19, 20.5 19, 20.5 19.5, 21 19.5))" +"POLYGON ((21.5 19.5, 21.5 19, 21 19, 21 19.5, 21.5 19.5))" +"POLYGON ((22 19.5, 22 19, 21.5 19, 21.5 19.5, 22 19.5))" +"POLYGON ((22.5 19.5, 22.5 19, 22 19, 22 19.5, 22.5 19.5))" +"POLYGON ((23 19.5, 23 19, 22.5 19, 22.5 19.5, 23 19.5))" +"POLYGON ((23.5 19.5, 23.5 19, 23 19, 23 19.5, 23.5 19.5))" +"POLYGON ((24 19.5, 24 19, 23.5 19, 23.5 19.5, 24 19.5))" +"POLYGON ((24.5 19.5, 24.5 19, 24 19, 24 19.5, 24.5 19.5))" +"POLYGON ((25 19.5, 25 19, 24.5 19, 24.5 19.5, 25 19.5))" +"POLYGON ((25.5 19.5, 25.5 19, 25 19, 25 19.5, 25.5 19.5))" +"POLYGON ((26 19.5, 26 19, 25.5 19, 25.5 19.5, 26 19.5))" +"POLYGON ((26.5 19.5, 26.5 19, 26 19, 26 19.5, 26.5 19.5))" +"POLYGON ((27 19.5, 27 19, 26.5 19, 26.5 19.5, 27 19.5))" +"POLYGON ((27.5 19.5, 27.5 19, 27 19, 27 19.5, 27.5 19.5))" +"POLYGON ((28 19.5, 28 19, 27.5 19, 27.5 19.5, 28 19.5))" +"POLYGON ((28.5 19.5, 28.5 19, 28 19, 28 19.5, 28.5 19.5))" +"POLYGON ((29 19.5, 29 19, 28.5 19, 28.5 19.5, 29 19.5))" +"POLYGON ((29.5 19.5, 29.5 19, 29 19, 29 19.5, 29.5 19.5))" +"POLYGON ((30 19.5, 30 19, 29.5 19, 29.5 19.5, 30 19.5))" +"POLYGON ((30.5 19.5, 30.5 19, 30 19, 30 19.5, 30.5 19.5))" +"POLYGON ((31 19.5, 31 19, 30.5 19, 30.5 19.5, 31 19.5))" +"POLYGON ((31.5 19.5, 31.5 19, 31 19, 31 19.5, 31.5 19.5))" +"POLYGON ((32 19.5, 32 19, 31.5 19, 31.5 19.5, 32 19.5))" +"POLYGON ((32.5 19.5, 32.5 19, 32 19, 32 19.5, 32.5 19.5))" +"POLYGON ((33 19.5, 33 19, 32.5 19, 32.5 19.5, 33 19.5))" +"POLYGON ((33.5 19.5, 33.5 19, 33 19, 33 19.5, 33.5 19.5))" +"POLYGON ((34 19.5, 34 19, 33.5 19, 33.5 19.5, 34 19.5))" +"POLYGON ((34.5 19.5, 34.5 19, 34 19, 34 19.5, 34.5 19.5))" +"POLYGON ((35 19.5, 35 19, 34.5 19, 34.5 19.5, 35 19.5))" +"POLYGON ((35.5 19.5, 35.5 19, 35 19, 35 19.5, 35.5 19.5))" +"POLYGON ((36 19.5, 36 19, 35.5 19, 35.5 19.5, 36 19.5))" +"POLYGON ((36.5 19.5, 36.5 19, 36 19, 36 19.5, 36.5 19.5))" +"POLYGON ((37 19.5, 37 19, 36.5 19, 36.5 19.5, 37 19.5))" +"POLYGON ((37.5 19.5, 37.5 19, 37 19, 37 19.5, 37.5 19.5))" +"POLYGON ((-16 20, -16 19.5, -16.5 19.5, -16.5 20, -16 20))" +"POLYGON ((-15.5 20, -15.5 19.5, -16 19.5, -16 20, -15.5 20))" +"POLYGON ((-15 20, -15 19.5, -15.5 19.5, -15.5 20, -15 20))" +"POLYGON ((-14.5 20, -14.5 19.5, -15 19.5, -15 20, -14.5 20))" +"POLYGON ((-14 20, -14 19.5, -14.5 19.5, -14.5 20, -14 20))" +"POLYGON ((-13.5 20, -13.5 19.5, -14 19.5, -14 20, -13.5 20))" +"POLYGON ((-13 20, -13 19.5, -13.5 19.5, -13.5 20, -13 20))" +"POLYGON ((-12.5 20, -12.5 19.5, -13 19.5, -13 20, -12.5 20))" +"POLYGON ((-12 20, -12 19.5, -12.5 19.5, -12.5 20, -12 20))" +"POLYGON ((-11.5 20, -11.5 19.5, -12 19.5, -12 20, -11.5 20))" +"POLYGON ((-11 20, -11 19.5, -11.5 19.5, -11.5 20, -11 20))" +"POLYGON ((-10.5 20, -10.5 19.5, -11 19.5, -11 20, -10.5 20))" +"POLYGON ((-10 20, -10 19.5, -10.5 19.5, -10.5 20, -10 20))" +"POLYGON ((-9.5 20, -9.5 19.5, -10 19.5, -10 20, -9.5 20))" +"POLYGON ((-9 20, -9 19.5, -9.5 19.5, -9.5 20, -9 20))" +"POLYGON ((-8.5 20, -8.5 19.5, -9 19.5, -9 20, -8.5 20))" +"POLYGON ((-8 20, -8 19.5, -8.5 19.5, -8.5 20, -8 20))" +"POLYGON ((-7.5 20, -7.5 19.5, -8 19.5, -8 20, -7.5 20))" +"POLYGON ((-7 20, -7 19.5, -7.5 19.5, -7.5 20, -7 20))" +"POLYGON ((-6.5 20, -6.5 19.5, -7 19.5, -7 20, -6.5 20))" +"POLYGON ((-6 20, -6 19.5, -6.5 19.5, -6.5 20, -6 20))" +"POLYGON ((-5.5 20, -5.5 19.5, -6 19.5, -6 20, -5.5 20))" +"POLYGON ((-5 20, -5 19.5, -5.5 19.5, -5.5 20, -5 20))" +"POLYGON ((-4.5 20, -4.5 19.5, -5 19.5, -5 20, -4.5 20))" +"POLYGON ((-4 20, -4 19.5, -4.5 19.5, -4.5 20, -4 20))" +"POLYGON ((-3.5 20, -3.5 19.5, -4 19.5, -4 20, -3.5 20))" +"POLYGON ((-3 20, -3 19.5, -3.5 19.5, -3.5 20, -3 20))" +"POLYGON ((-2.5 20, -2.5 19.5, -3 19.5, -3 20, -2.5 20))" +"POLYGON ((-2 20, -2 19.5, -2.5 19.5, -2.5 20, -2 20))" +"POLYGON ((-1.5 20, -1.5 19.5, -2 19.5, -2 20, -1.5 20))" +"POLYGON ((-1 20, -1 19.5, -1.5 19.5, -1.5 20, -1 20))" +"POLYGON ((-0.5 20, -0.5 19.5, -1 19.5, -1 20, -0.5 20))" +"POLYGON ((0 20, 0 19.5, -0.5 19.5, -0.5 20, 0 20))" +"POLYGON ((0.5 20, 0.5 19.5, 0 19.5, 0 20, 0.5 20))" +"POLYGON ((1 20, 1 19.5, 0.5 19.5, 0.5 20, 1 20))" +"POLYGON ((1.5 20, 1.5 19.5, 1 19.5, 1 20, 1.5 20))" +"POLYGON ((2 20, 2 19.5, 1.5 19.5, 1.5 20, 2 20))" +"POLYGON ((2.5 20, 2.5 19.5, 2 19.5, 2 20, 2.5 20))" +"POLYGON ((3 20, 3 19.5, 2.5 19.5, 2.5 20, 3 20))" +"POLYGON ((3.5 20, 3.5 19.5, 3 19.5, 3 20, 3.5 20))" +"POLYGON ((4 20, 4 19.5, 3.5 19.5, 3.5 20, 4 20))" +"POLYGON ((4.5 20, 4.5 19.5, 4 19.5, 4 20, 4.5 20))" +"POLYGON ((5 20, 5 19.5, 4.5 19.5, 4.5 20, 5 20))" +"POLYGON ((5.5 20, 5.5 19.5, 5 19.5, 5 20, 5.5 20))" +"POLYGON ((6 20, 6 19.5, 5.5 19.5, 5.5 20, 6 20))" +"POLYGON ((6.5 20, 6.5 19.5, 6 19.5, 6 20, 6.5 20))" +"POLYGON ((7 20, 7 19.5, 6.5 19.5, 6.5 20, 7 20))" +"POLYGON ((7.5 20, 7.5 19.5, 7 19.5, 7 20, 7.5 20))" +"POLYGON ((8 20, 8 19.5, 7.5 19.5, 7.5 20, 8 20))" +"POLYGON ((8.5 20, 8.5 19.5, 8 19.5, 8 20, 8.5 20))" +"POLYGON ((9 20, 9 19.5, 8.5 19.5, 8.5 20, 9 20))" +"POLYGON ((9.5 20, 9.5 19.5, 9 19.5, 9 20, 9.5 20))" +"POLYGON ((10 20, 10 19.5, 9.5 19.5, 9.5 20, 10 20))" +"POLYGON ((10.5 20, 10.5 19.5, 10 19.5, 10 20, 10.5 20))" +"POLYGON ((11 20, 11 19.5, 10.5 19.5, 10.5 20, 11 20))" +"POLYGON ((11.5 20, 11.5 19.5, 11 19.5, 11 20, 11.5 20))" +"POLYGON ((12 20, 12 19.5, 11.5 19.5, 11.5 20, 12 20))" +"POLYGON ((12.5 20, 12.5 19.5, 12 19.5, 12 20, 12.5 20))" +"POLYGON ((13 20, 13 19.5, 12.5 19.5, 12.5 20, 13 20))" +"POLYGON ((13.5 20, 13.5 19.5, 13 19.5, 13 20, 13.5 20))" +"POLYGON ((14 20, 14 19.5, 13.5 19.5, 13.5 20, 14 20))" +"POLYGON ((14.5 20, 14.5 19.5, 14 19.5, 14 20, 14.5 20))" +"POLYGON ((15 20, 15 19.5, 14.5 19.5, 14.5 20, 15 20))" +"POLYGON ((15.5 20, 15.5 19.5, 15 19.5, 15 20, 15.5 20))" +"POLYGON ((16 20, 16 19.5, 15.5 19.5, 15.5 20, 16 20))" +"POLYGON ((16.5 20, 16.5 19.5, 16 19.5, 16 20, 16.5 20))" +"POLYGON ((17 20, 17 19.5, 16.5 19.5, 16.5 20, 17 20))" +"POLYGON ((17.5 20, 17.5 19.5, 17 19.5, 17 20, 17.5 20))" +"POLYGON ((18 20, 18 19.5, 17.5 19.5, 17.5 20, 18 20))" +"POLYGON ((18.5 20, 18.5 19.5, 18 19.5, 18 20, 18.5 20))" +"POLYGON ((19 20, 19 19.5, 18.5 19.5, 18.5 20, 19 20))" +"POLYGON ((19.5 20, 19.5 19.5, 19 19.5, 19 20, 19.5 20))" +"POLYGON ((20 20, 20 19.5, 19.5 19.5, 19.5 20, 20 20))" +"POLYGON ((20.5 20, 20.5 19.5, 20 19.5, 20 20, 20.5 20))" +"POLYGON ((21 20, 21 19.5, 20.5 19.5, 20.5 20, 21 20))" +"POLYGON ((21.5 20, 21.5 19.5, 21 19.5, 21 20, 21.5 20))" +"POLYGON ((22 20, 22 19.5, 21.5 19.5, 21.5 20, 22 20))" +"POLYGON ((22.5 20, 22.5 19.5, 22 19.5, 22 20, 22.5 20))" +"POLYGON ((23 20, 23 19.5, 22.5 19.5, 22.5 20, 23 20))" +"POLYGON ((23.5 20, 23.5 19.5, 23 19.5, 23 20, 23.5 20))" +"POLYGON ((24 20, 24 19.5, 23.5 19.5, 23.5 20, 24 20))" +"POLYGON ((24.5 20, 24.5 19.5, 24 19.5, 24 20, 24.5 20))" +"POLYGON ((25 20, 25 19.5, 24.5 19.5, 24.5 20, 25 20))" +"POLYGON ((25.5 20, 25.5 19.5, 25 19.5, 25 20, 25.5 20))" +"POLYGON ((26 20, 26 19.5, 25.5 19.5, 25.5 20, 26 20))" +"POLYGON ((26.5 20, 26.5 19.5, 26 19.5, 26 20, 26.5 20))" +"POLYGON ((27 20, 27 19.5, 26.5 19.5, 26.5 20, 27 20))" +"POLYGON ((27.5 20, 27.5 19.5, 27 19.5, 27 20, 27.5 20))" +"POLYGON ((28 20, 28 19.5, 27.5 19.5, 27.5 20, 28 20))" +"POLYGON ((28.5 20, 28.5 19.5, 28 19.5, 28 20, 28.5 20))" +"POLYGON ((29 20, 29 19.5, 28.5 19.5, 28.5 20, 29 20))" +"POLYGON ((29.5 20, 29.5 19.5, 29 19.5, 29 20, 29.5 20))" +"POLYGON ((30 20, 30 19.5, 29.5 19.5, 29.5 20, 30 20))" +"POLYGON ((30.5 20, 30.5 19.5, 30 19.5, 30 20, 30.5 20))" +"POLYGON ((31 20, 31 19.5, 30.5 19.5, 30.5 20, 31 20))" +"POLYGON ((31.5 20, 31.5 19.5, 31 19.5, 31 20, 31.5 20))" +"POLYGON ((32 20, 32 19.5, 31.5 19.5, 31.5 20, 32 20))" +"POLYGON ((32.5 20, 32.5 19.5, 32 19.5, 32 20, 32.5 20))" +"POLYGON ((33 20, 33 19.5, 32.5 19.5, 32.5 20, 33 20))" +"POLYGON ((33.5 20, 33.5 19.5, 33 19.5, 33 20, 33.5 20))" +"POLYGON ((34 20, 34 19.5, 33.5 19.5, 33.5 20, 34 20))" +"POLYGON ((34.5 20, 34.5 19.5, 34 19.5, 34 20, 34.5 20))" +"POLYGON ((35 20, 35 19.5, 34.5 19.5, 34.5 20, 35 20))" +"POLYGON ((35.5 20, 35.5 19.5, 35 19.5, 35 20, 35.5 20))" +"POLYGON ((36 20, 36 19.5, 35.5 19.5, 35.5 20, 36 20))" +"POLYGON ((36.5 20, 36.5 19.5, 36 19.5, 36 20, 36.5 20))" +"POLYGON ((37 20, 37 19.5, 36.5 19.5, 36.5 20, 37 20))" +"POLYGON ((37.5 20, 37.5 19.5, 37 19.5, 37 20, 37.5 20))" +"POLYGON ((-15.5 20.5, -15.5 20, -16 20, -16 20.5, -15.5 20.5))" +"POLYGON ((-15 20.5, -15 20, -15.5 20, -15.5 20.5, -15 20.5))" +"POLYGON ((-14.5 20.5, -14.5 20, -15 20, -15 20.5, -14.5 20.5))" +"POLYGON ((-14 20.5, -14 20, -14.5 20, -14.5 20.5, -14 20.5))" +"POLYGON ((-13.5 20.5, -13.5 20, -14 20, -14 20.5, -13.5 20.5))" +"POLYGON ((-13 20.5, -13 20, -13.5 20, -13.5 20.5, -13 20.5))" +"POLYGON ((-12.5 20.5, -12.5 20, -13 20, -13 20.5, -12.5 20.5))" +"POLYGON ((-12 20.5, -12 20, -12.5 20, -12.5 20.5, -12 20.5))" +"POLYGON ((-11.5 20.5, -11.5 20, -12 20, -12 20.5, -11.5 20.5))" +"POLYGON ((-11 20.5, -11 20, -11.5 20, -11.5 20.5, -11 20.5))" +"POLYGON ((-10.5 20.5, -10.5 20, -11 20, -11 20.5, -10.5 20.5))" +"POLYGON ((-10 20.5, -10 20, -10.5 20, -10.5 20.5, -10 20.5))" +"POLYGON ((-9.5 20.5, -9.5 20, -10 20, -10 20.5, -9.5 20.5))" +"POLYGON ((-9 20.5, -9 20, -9.5 20, -9.5 20.5, -9 20.5))" +"POLYGON ((-8.5 20.5, -8.5 20, -9 20, -9 20.5, -8.5 20.5))" +"POLYGON ((-8 20.5, -8 20, -8.5 20, -8.5 20.5, -8 20.5))" +"POLYGON ((-7.5 20.5, -7.5 20, -8 20, -8 20.5, -7.5 20.5))" +"POLYGON ((-7 20.5, -7 20, -7.5 20, -7.5 20.5, -7 20.5))" +"POLYGON ((-6.5 20.5, -6.5 20, -7 20, -7 20.5, -6.5 20.5))" +"POLYGON ((-6 20.5, -6 20, -6.5 20, -6.5 20.5, -6 20.5))" +"POLYGON ((-5.5 20.5, -5.5 20, -6 20, -6 20.5, -5.5 20.5))" +"POLYGON ((-5 20.5, -5 20, -5.5 20, -5.5 20.5, -5 20.5))" +"POLYGON ((-4.5 20.5, -4.5 20, -5 20, -5 20.5, -4.5 20.5))" +"POLYGON ((-4 20.5, -4 20, -4.5 20, -4.5 20.5, -4 20.5))" +"POLYGON ((-3.5 20.5, -3.5 20, -4 20, -4 20.5, -3.5 20.5))" +"POLYGON ((-3 20.5, -3 20, -3.5 20, -3.5 20.5, -3 20.5))" +"POLYGON ((-2.5 20.5, -2.5 20, -3 20, -3 20.5, -2.5 20.5))" +"POLYGON ((-2 20.5, -2 20, -2.5 20, -2.5 20.5, -2 20.5))" +"POLYGON ((-1.5 20.5, -1.5 20, -2 20, -2 20.5, -1.5 20.5))" +"POLYGON ((-1 20.5, -1 20, -1.5 20, -1.5 20.5, -1 20.5))" +"POLYGON ((-0.5 20.5, -0.5 20, -1 20, -1 20.5, -0.5 20.5))" +"POLYGON ((0 20.5, 0 20, -0.5 20, -0.5 20.5, 0 20.5))" +"POLYGON ((0.5 20.5, 0.5 20, 0 20, 0 20.5, 0.5 20.5))" +"POLYGON ((1 20.5, 1 20, 0.5 20, 0.5 20.5, 1 20.5))" +"POLYGON ((1.5 20.5, 1.5 20, 1 20, 1 20.5, 1.5 20.5))" +"POLYGON ((2 20.5, 2 20, 1.5 20, 1.5 20.5, 2 20.5))" +"POLYGON ((2.5 20.5, 2.5 20, 2 20, 2 20.5, 2.5 20.5))" +"POLYGON ((3 20.5, 3 20, 2.5 20, 2.5 20.5, 3 20.5))" +"POLYGON ((3.5 20.5, 3.5 20, 3 20, 3 20.5, 3.5 20.5))" +"POLYGON ((4 20.5, 4 20, 3.5 20, 3.5 20.5, 4 20.5))" +"POLYGON ((4.5 20.5, 4.5 20, 4 20, 4 20.5, 4.5 20.5))" +"POLYGON ((5 20.5, 5 20, 4.5 20, 4.5 20.5, 5 20.5))" +"POLYGON ((5.5 20.5, 5.5 20, 5 20, 5 20.5, 5.5 20.5))" +"POLYGON ((6 20.5, 6 20, 5.5 20, 5.5 20.5, 6 20.5))" +"POLYGON ((6.5 20.5, 6.5 20, 6 20, 6 20.5, 6.5 20.5))" +"POLYGON ((7 20.5, 7 20, 6.5 20, 6.5 20.5, 7 20.5))" +"POLYGON ((7.5 20.5, 7.5 20, 7 20, 7 20.5, 7.5 20.5))" +"POLYGON ((8 20.5, 8 20, 7.5 20, 7.5 20.5, 8 20.5))" +"POLYGON ((8.5 20.5, 8.5 20, 8 20, 8 20.5, 8.5 20.5))" +"POLYGON ((9 20.5, 9 20, 8.5 20, 8.5 20.5, 9 20.5))" +"POLYGON ((9.5 20.5, 9.5 20, 9 20, 9 20.5, 9.5 20.5))" +"POLYGON ((10 20.5, 10 20, 9.5 20, 9.5 20.5, 10 20.5))" +"POLYGON ((10.5 20.5, 10.5 20, 10 20, 10 20.5, 10.5 20.5))" +"POLYGON ((11 20.5, 11 20, 10.5 20, 10.5 20.5, 11 20.5))" +"POLYGON ((11.5 20.5, 11.5 20, 11 20, 11 20.5, 11.5 20.5))" +"POLYGON ((12 20.5, 12 20, 11.5 20, 11.5 20.5, 12 20.5))" +"POLYGON ((12.5 20.5, 12.5 20, 12 20, 12 20.5, 12.5 20.5))" +"POLYGON ((13 20.5, 13 20, 12.5 20, 12.5 20.5, 13 20.5))" +"POLYGON ((13.5 20.5, 13.5 20, 13 20, 13 20.5, 13.5 20.5))" +"POLYGON ((14 20.5, 14 20, 13.5 20, 13.5 20.5, 14 20.5))" +"POLYGON ((14.5 20.5, 14.5 20, 14 20, 14 20.5, 14.5 20.5))" +"POLYGON ((15 20.5, 15 20, 14.5 20, 14.5 20.5, 15 20.5))" +"POLYGON ((15.5 20.5, 15.5 20, 15 20, 15 20.5, 15.5 20.5))" +"POLYGON ((16 20.5, 16 20, 15.5 20, 15.5 20.5, 16 20.5))" +"POLYGON ((16.5 20.5, 16.5 20, 16 20, 16 20.5, 16.5 20.5))" +"POLYGON ((17 20.5, 17 20, 16.5 20, 16.5 20.5, 17 20.5))" +"POLYGON ((17.5 20.5, 17.5 20, 17 20, 17 20.5, 17.5 20.5))" +"POLYGON ((18 20.5, 18 20, 17.5 20, 17.5 20.5, 18 20.5))" +"POLYGON ((18.5 20.5, 18.5 20, 18 20, 18 20.5, 18.5 20.5))" +"POLYGON ((19 20.5, 19 20, 18.5 20, 18.5 20.5, 19 20.5))" +"POLYGON ((19.5 20.5, 19.5 20, 19 20, 19 20.5, 19.5 20.5))" +"POLYGON ((20 20.5, 20 20, 19.5 20, 19.5 20.5, 20 20.5))" +"POLYGON ((20.5 20.5, 20.5 20, 20 20, 20 20.5, 20.5 20.5))" +"POLYGON ((21 20.5, 21 20, 20.5 20, 20.5 20.5, 21 20.5))" +"POLYGON ((21.5 20.5, 21.5 20, 21 20, 21 20.5, 21.5 20.5))" +"POLYGON ((22 20.5, 22 20, 21.5 20, 21.5 20.5, 22 20.5))" +"POLYGON ((22.5 20.5, 22.5 20, 22 20, 22 20.5, 22.5 20.5))" +"POLYGON ((23 20.5, 23 20, 22.5 20, 22.5 20.5, 23 20.5))" +"POLYGON ((23.5 20.5, 23.5 20, 23 20, 23 20.5, 23.5 20.5))" +"POLYGON ((24 20.5, 24 20, 23.5 20, 23.5 20.5, 24 20.5))" +"POLYGON ((24.5 20.5, 24.5 20, 24 20, 24 20.5, 24.5 20.5))" +"POLYGON ((25 20.5, 25 20, 24.5 20, 24.5 20.5, 25 20.5))" +"POLYGON ((25.5 20.5, 25.5 20, 25 20, 25 20.5, 25.5 20.5))" +"POLYGON ((26 20.5, 26 20, 25.5 20, 25.5 20.5, 26 20.5))" +"POLYGON ((26.5 20.5, 26.5 20, 26 20, 26 20.5, 26.5 20.5))" +"POLYGON ((27 20.5, 27 20, 26.5 20, 26.5 20.5, 27 20.5))" +"POLYGON ((27.5 20.5, 27.5 20, 27 20, 27 20.5, 27.5 20.5))" +"POLYGON ((28 20.5, 28 20, 27.5 20, 27.5 20.5, 28 20.5))" +"POLYGON ((28.5 20.5, 28.5 20, 28 20, 28 20.5, 28.5 20.5))" +"POLYGON ((29 20.5, 29 20, 28.5 20, 28.5 20.5, 29 20.5))" +"POLYGON ((29.5 20.5, 29.5 20, 29 20, 29 20.5, 29.5 20.5))" +"POLYGON ((30 20.5, 30 20, 29.5 20, 29.5 20.5, 30 20.5))" +"POLYGON ((30.5 20.5, 30.5 20, 30 20, 30 20.5, 30.5 20.5))" +"POLYGON ((31 20.5, 31 20, 30.5 20, 30.5 20.5, 31 20.5))" +"POLYGON ((31.5 20.5, 31.5 20, 31 20, 31 20.5, 31.5 20.5))" +"POLYGON ((32 20.5, 32 20, 31.5 20, 31.5 20.5, 32 20.5))" +"POLYGON ((32.5 20.5, 32.5 20, 32 20, 32 20.5, 32.5 20.5))" +"POLYGON ((33 20.5, 33 20, 32.5 20, 32.5 20.5, 33 20.5))" +"POLYGON ((33.5 20.5, 33.5 20, 33 20, 33 20.5, 33.5 20.5))" +"POLYGON ((34 20.5, 34 20, 33.5 20, 33.5 20.5, 34 20.5))" +"POLYGON ((34.5 20.5, 34.5 20, 34 20, 34 20.5, 34.5 20.5))" +"POLYGON ((35 20.5, 35 20, 34.5 20, 34.5 20.5, 35 20.5))" +"POLYGON ((35.5 20.5, 35.5 20, 35 20, 35 20.5, 35.5 20.5))" +"POLYGON ((36 20.5, 36 20, 35.5 20, 35.5 20.5, 36 20.5))" +"POLYGON ((36.5 20.5, 36.5 20, 36 20, 36 20.5, 36.5 20.5))" +"POLYGON ((37 20.5, 37 20, 36.5 20, 36.5 20.5, 37 20.5))" +"POLYGON ((-16 21, -16 20.5, -16.5 20.5, -16.5 21, -16 21))" +"POLYGON ((-15.5 21, -15.5 20.5, -16 20.5, -16 21, -15.5 21))" +"POLYGON ((-15 21, -15 20.5, -15.5 20.5, -15.5 21, -15 21))" +"POLYGON ((-14.5 21, -14.5 20.5, -15 20.5, -15 21, -14.5 21))" +"POLYGON ((-14 21, -14 20.5, -14.5 20.5, -14.5 21, -14 21))" +"POLYGON ((-13.5 21, -13.5 20.5, -14 20.5, -14 21, -13.5 21))" +"POLYGON ((-13 21, -13 20.5, -13.5 20.5, -13.5 21, -13 21))" +"POLYGON ((-12.5 21, -12.5 20.5, -13 20.5, -13 21, -12.5 21))" +"POLYGON ((-12 21, -12 20.5, -12.5 20.5, -12.5 21, -12 21))" +"POLYGON ((-11.5 21, -11.5 20.5, -12 20.5, -12 21, -11.5 21))" +"POLYGON ((-11 21, -11 20.5, -11.5 20.5, -11.5 21, -11 21))" +"POLYGON ((-10.5 21, -10.5 20.5, -11 20.5, -11 21, -10.5 21))" +"POLYGON ((-10 21, -10 20.5, -10.5 20.5, -10.5 21, -10 21))" +"POLYGON ((-9.5 21, -9.5 20.5, -10 20.5, -10 21, -9.5 21))" +"POLYGON ((-9 21, -9 20.5, -9.5 20.5, -9.5 21, -9 21))" +"POLYGON ((-8.5 21, -8.5 20.5, -9 20.5, -9 21, -8.5 21))" +"POLYGON ((-8 21, -8 20.5, -8.5 20.5, -8.5 21, -8 21))" +"POLYGON ((-7.5 21, -7.5 20.5, -8 20.5, -8 21, -7.5 21))" +"POLYGON ((-7 21, -7 20.5, -7.5 20.5, -7.5 21, -7 21))" +"POLYGON ((-6.5 21, -6.5 20.5, -7 20.5, -7 21, -6.5 21))" +"POLYGON ((-6 21, -6 20.5, -6.5 20.5, -6.5 21, -6 21))" +"POLYGON ((-5.5 21, -5.5 20.5, -6 20.5, -6 21, -5.5 21))" +"POLYGON ((-5 21, -5 20.5, -5.5 20.5, -5.5 21, -5 21))" +"POLYGON ((-4.5 21, -4.5 20.5, -5 20.5, -5 21, -4.5 21))" +"POLYGON ((-4 21, -4 20.5, -4.5 20.5, -4.5 21, -4 21))" +"POLYGON ((-3.5 21, -3.5 20.5, -4 20.5, -4 21, -3.5 21))" +"POLYGON ((-3 21, -3 20.5, -3.5 20.5, -3.5 21, -3 21))" +"POLYGON ((-2.5 21, -2.5 20.5, -3 20.5, -3 21, -2.5 21))" +"POLYGON ((-2 21, -2 20.5, -2.5 20.5, -2.5 21, -2 21))" +"POLYGON ((-1.5 21, -1.5 20.5, -2 20.5, -2 21, -1.5 21))" +"POLYGON ((-1 21, -1 20.5, -1.5 20.5, -1.5 21, -1 21))" +"POLYGON ((-0.5 21, -0.5 20.5, -1 20.5, -1 21, -0.5 21))" +"POLYGON ((0 21, 0 20.5, -0.5 20.5, -0.5 21, 0 21))" +"POLYGON ((0.5 21, 0.5 20.5, 0 20.5, 0 21, 0.5 21))" +"POLYGON ((1 21, 1 20.5, 0.5 20.5, 0.5 21, 1 21))" +"POLYGON ((1.5 21, 1.5 20.5, 1 20.5, 1 21, 1.5 21))" +"POLYGON ((2 21, 2 20.5, 1.5 20.5, 1.5 21, 2 21))" +"POLYGON ((2.5 21, 2.5 20.5, 2 20.5, 2 21, 2.5 21))" +"POLYGON ((3 21, 3 20.5, 2.5 20.5, 2.5 21, 3 21))" +"POLYGON ((3.5 21, 3.5 20.5, 3 20.5, 3 21, 3.5 21))" +"POLYGON ((4 21, 4 20.5, 3.5 20.5, 3.5 21, 4 21))" +"POLYGON ((4.5 21, 4.5 20.5, 4 20.5, 4 21, 4.5 21))" +"POLYGON ((5 21, 5 20.5, 4.5 20.5, 4.5 21, 5 21))" +"POLYGON ((5.5 21, 5.5 20.5, 5 20.5, 5 21, 5.5 21))" +"POLYGON ((6 21, 6 20.5, 5.5 20.5, 5.5 21, 6 21))" +"POLYGON ((6.5 21, 6.5 20.5, 6 20.5, 6 21, 6.5 21))" +"POLYGON ((7 21, 7 20.5, 6.5 20.5, 6.5 21, 7 21))" +"POLYGON ((7.5 21, 7.5 20.5, 7 20.5, 7 21, 7.5 21))" +"POLYGON ((8 21, 8 20.5, 7.5 20.5, 7.5 21, 8 21))" +"POLYGON ((8.5 21, 8.5 20.5, 8 20.5, 8 21, 8.5 21))" +"POLYGON ((9 21, 9 20.5, 8.5 20.5, 8.5 21, 9 21))" +"POLYGON ((9.5 21, 9.5 20.5, 9 20.5, 9 21, 9.5 21))" +"POLYGON ((10 21, 10 20.5, 9.5 20.5, 9.5 21, 10 21))" +"POLYGON ((10.5 21, 10.5 20.5, 10 20.5, 10 21, 10.5 21))" +"POLYGON ((11 21, 11 20.5, 10.5 20.5, 10.5 21, 11 21))" +"POLYGON ((11.5 21, 11.5 20.5, 11 20.5, 11 21, 11.5 21))" +"POLYGON ((12 21, 12 20.5, 11.5 20.5, 11.5 21, 12 21))" +"POLYGON ((12.5 21, 12.5 20.5, 12 20.5, 12 21, 12.5 21))" +"POLYGON ((13 21, 13 20.5, 12.5 20.5, 12.5 21, 13 21))" +"POLYGON ((13.5 21, 13.5 20.5, 13 20.5, 13 21, 13.5 21))" +"POLYGON ((14 21, 14 20.5, 13.5 20.5, 13.5 21, 14 21))" +"POLYGON ((14.5 21, 14.5 20.5, 14 20.5, 14 21, 14.5 21))" +"POLYGON ((15 21, 15 20.5, 14.5 20.5, 14.5 21, 15 21))" +"POLYGON ((15.5 21, 15.5 20.5, 15 20.5, 15 21, 15.5 21))" +"POLYGON ((16 21, 16 20.5, 15.5 20.5, 15.5 21, 16 21))" +"POLYGON ((16.5 21, 16.5 20.5, 16 20.5, 16 21, 16.5 21))" +"POLYGON ((17 21, 17 20.5, 16.5 20.5, 16.5 21, 17 21))" +"POLYGON ((17.5 21, 17.5 20.5, 17 20.5, 17 21, 17.5 21))" +"POLYGON ((18 21, 18 20.5, 17.5 20.5, 17.5 21, 18 21))" +"POLYGON ((18.5 21, 18.5 20.5, 18 20.5, 18 21, 18.5 21))" +"POLYGON ((19 21, 19 20.5, 18.5 20.5, 18.5 21, 19 21))" +"POLYGON ((19.5 21, 19.5 20.5, 19 20.5, 19 21, 19.5 21))" +"POLYGON ((20 21, 20 20.5, 19.5 20.5, 19.5 21, 20 21))" +"POLYGON ((20.5 21, 20.5 20.5, 20 20.5, 20 21, 20.5 21))" +"POLYGON ((21 21, 21 20.5, 20.5 20.5, 20.5 21, 21 21))" +"POLYGON ((21.5 21, 21.5 20.5, 21 20.5, 21 21, 21.5 21))" +"POLYGON ((22 21, 22 20.5, 21.5 20.5, 21.5 21, 22 21))" +"POLYGON ((22.5 21, 22.5 20.5, 22 20.5, 22 21, 22.5 21))" +"POLYGON ((23 21, 23 20.5, 22.5 20.5, 22.5 21, 23 21))" +"POLYGON ((23.5 21, 23.5 20.5, 23 20.5, 23 21, 23.5 21))" +"POLYGON ((24 21, 24 20.5, 23.5 20.5, 23.5 21, 24 21))" +"POLYGON ((24.5 21, 24.5 20.5, 24 20.5, 24 21, 24.5 21))" +"POLYGON ((25 21, 25 20.5, 24.5 20.5, 24.5 21, 25 21))" +"POLYGON ((25.5 21, 25.5 20.5, 25 20.5, 25 21, 25.5 21))" +"POLYGON ((26 21, 26 20.5, 25.5 20.5, 25.5 21, 26 21))" +"POLYGON ((26.5 21, 26.5 20.5, 26 20.5, 26 21, 26.5 21))" +"POLYGON ((27 21, 27 20.5, 26.5 20.5, 26.5 21, 27 21))" +"POLYGON ((27.5 21, 27.5 20.5, 27 20.5, 27 21, 27.5 21))" +"POLYGON ((28 21, 28 20.5, 27.5 20.5, 27.5 21, 28 21))" +"POLYGON ((28.5 21, 28.5 20.5, 28 20.5, 28 21, 28.5 21))" +"POLYGON ((29 21, 29 20.5, 28.5 20.5, 28.5 21, 29 21))" +"POLYGON ((29.5 21, 29.5 20.5, 29 20.5, 29 21, 29.5 21))" +"POLYGON ((30 21, 30 20.5, 29.5 20.5, 29.5 21, 30 21))" +"POLYGON ((30.5 21, 30.5 20.5, 30 20.5, 30 21, 30.5 21))" +"POLYGON ((31 21, 31 20.5, 30.5 20.5, 30.5 21, 31 21))" +"POLYGON ((31.5 21, 31.5 20.5, 31 20.5, 31 21, 31.5 21))" +"POLYGON ((32 21, 32 20.5, 31.5 20.5, 31.5 21, 32 21))" +"POLYGON ((32.5 21, 32.5 20.5, 32 20.5, 32 21, 32.5 21))" +"POLYGON ((33 21, 33 20.5, 32.5 20.5, 32.5 21, 33 21))" +"POLYGON ((33.5 21, 33.5 20.5, 33 20.5, 33 21, 33.5 21))" +"POLYGON ((34 21, 34 20.5, 33.5 20.5, 33.5 21, 34 21))" +"POLYGON ((34.5 21, 34.5 20.5, 34 20.5, 34 21, 34.5 21))" +"POLYGON ((35 21, 35 20.5, 34.5 20.5, 34.5 21, 35 21))" +"POLYGON ((35.5 21, 35.5 20.5, 35 20.5, 35 21, 35.5 21))" +"POLYGON ((36 21, 36 20.5, 35.5 20.5, 35.5 21, 36 21))" +"POLYGON ((36.5 21, 36.5 20.5, 36 20.5, 36 21, 36.5 21))" +"POLYGON ((37 21, 37 20.5, 36.5 20.5, 36.5 21, 37 21))" +"POLYGON ((-16.5 21.5, -16.5 21, -17 21, -17 21.5, -16.5 21.5))" +"POLYGON ((-16 21.5, -16 21, -16.5 21, -16.5 21.5, -16 21.5))" +"POLYGON ((-15.5 21.5, -15.5 21, -16 21, -16 21.5, -15.5 21.5))" +"POLYGON ((-15 21.5, -15 21, -15.5 21, -15.5 21.5, -15 21.5))" +"POLYGON ((-14.5 21.5, -14.5 21, -15 21, -15 21.5, -14.5 21.5))" +"POLYGON ((-14 21.5, -14 21, -14.5 21, -14.5 21.5, -14 21.5))" +"POLYGON ((-13.5 21.5, -13.5 21, -14 21, -14 21.5, -13.5 21.5))" +"POLYGON ((-13 21.5, -13 21, -13.5 21, -13.5 21.5, -13 21.5))" +"POLYGON ((-12.5 21.5, -12.5 21, -13 21, -13 21.5, -12.5 21.5))" +"POLYGON ((-12 21.5, -12 21, -12.5 21, -12.5 21.5, -12 21.5))" +"POLYGON ((-11.5 21.5, -11.5 21, -12 21, -12 21.5, -11.5 21.5))" +"POLYGON ((-11 21.5, -11 21, -11.5 21, -11.5 21.5, -11 21.5))" +"POLYGON ((-10.5 21.5, -10.5 21, -11 21, -11 21.5, -10.5 21.5))" +"POLYGON ((-10 21.5, -10 21, -10.5 21, -10.5 21.5, -10 21.5))" +"POLYGON ((-9.5 21.5, -9.5 21, -10 21, -10 21.5, -9.5 21.5))" +"POLYGON ((-9 21.5, -9 21, -9.5 21, -9.5 21.5, -9 21.5))" +"POLYGON ((-8.5 21.5, -8.5 21, -9 21, -9 21.5, -8.5 21.5))" +"POLYGON ((-8 21.5, -8 21, -8.5 21, -8.5 21.5, -8 21.5))" +"POLYGON ((-7.5 21.5, -7.5 21, -8 21, -8 21.5, -7.5 21.5))" +"POLYGON ((-7 21.5, -7 21, -7.5 21, -7.5 21.5, -7 21.5))" +"POLYGON ((-6.5 21.5, -6.5 21, -7 21, -7 21.5, -6.5 21.5))" +"POLYGON ((-6 21.5, -6 21, -6.5 21, -6.5 21.5, -6 21.5))" +"POLYGON ((-5.5 21.5, -5.5 21, -6 21, -6 21.5, -5.5 21.5))" +"POLYGON ((-5 21.5, -5 21, -5.5 21, -5.5 21.5, -5 21.5))" +"POLYGON ((-4.5 21.5, -4.5 21, -5 21, -5 21.5, -4.5 21.5))" +"POLYGON ((-4 21.5, -4 21, -4.5 21, -4.5 21.5, -4 21.5))" +"POLYGON ((-3.5 21.5, -3.5 21, -4 21, -4 21.5, -3.5 21.5))" +"POLYGON ((-3 21.5, -3 21, -3.5 21, -3.5 21.5, -3 21.5))" +"POLYGON ((-2.5 21.5, -2.5 21, -3 21, -3 21.5, -2.5 21.5))" +"POLYGON ((-2 21.5, -2 21, -2.5 21, -2.5 21.5, -2 21.5))" +"POLYGON ((-1.5 21.5, -1.5 21, -2 21, -2 21.5, -1.5 21.5))" +"POLYGON ((-1 21.5, -1 21, -1.5 21, -1.5 21.5, -1 21.5))" +"POLYGON ((-0.5 21.5, -0.5 21, -1 21, -1 21.5, -0.5 21.5))" +"POLYGON ((0 21.5, 0 21, -0.5 21, -0.5 21.5, 0 21.5))" +"POLYGON ((0.5 21.5, 0.5 21, 0 21, 0 21.5, 0.5 21.5))" +"POLYGON ((1 21.5, 1 21, 0.5 21, 0.5 21.5, 1 21.5))" +"POLYGON ((1.5 21.5, 1.5 21, 1 21, 1 21.5, 1.5 21.5))" +"POLYGON ((2 21.5, 2 21, 1.5 21, 1.5 21.5, 2 21.5))" +"POLYGON ((2.5 21.5, 2.5 21, 2 21, 2 21.5, 2.5 21.5))" +"POLYGON ((3 21.5, 3 21, 2.5 21, 2.5 21.5, 3 21.5))" +"POLYGON ((3.5 21.5, 3.5 21, 3 21, 3 21.5, 3.5 21.5))" +"POLYGON ((4 21.5, 4 21, 3.5 21, 3.5 21.5, 4 21.5))" +"POLYGON ((4.5 21.5, 4.5 21, 4 21, 4 21.5, 4.5 21.5))" +"POLYGON ((5 21.5, 5 21, 4.5 21, 4.5 21.5, 5 21.5))" +"POLYGON ((5.5 21.5, 5.5 21, 5 21, 5 21.5, 5.5 21.5))" +"POLYGON ((6 21.5, 6 21, 5.5 21, 5.5 21.5, 6 21.5))" +"POLYGON ((6.5 21.5, 6.5 21, 6 21, 6 21.5, 6.5 21.5))" +"POLYGON ((7 21.5, 7 21, 6.5 21, 6.5 21.5, 7 21.5))" +"POLYGON ((7.5 21.5, 7.5 21, 7 21, 7 21.5, 7.5 21.5))" +"POLYGON ((8 21.5, 8 21, 7.5 21, 7.5 21.5, 8 21.5))" +"POLYGON ((8.5 21.5, 8.5 21, 8 21, 8 21.5, 8.5 21.5))" +"POLYGON ((9 21.5, 9 21, 8.5 21, 8.5 21.5, 9 21.5))" +"POLYGON ((9.5 21.5, 9.5 21, 9 21, 9 21.5, 9.5 21.5))" +"POLYGON ((10 21.5, 10 21, 9.5 21, 9.5 21.5, 10 21.5))" +"POLYGON ((10.5 21.5, 10.5 21, 10 21, 10 21.5, 10.5 21.5))" +"POLYGON ((11 21.5, 11 21, 10.5 21, 10.5 21.5, 11 21.5))" +"POLYGON ((11.5 21.5, 11.5 21, 11 21, 11 21.5, 11.5 21.5))" +"POLYGON ((12 21.5, 12 21, 11.5 21, 11.5 21.5, 12 21.5))" +"POLYGON ((12.5 21.5, 12.5 21, 12 21, 12 21.5, 12.5 21.5))" +"POLYGON ((13 21.5, 13 21, 12.5 21, 12.5 21.5, 13 21.5))" +"POLYGON ((13.5 21.5, 13.5 21, 13 21, 13 21.5, 13.5 21.5))" +"POLYGON ((14 21.5, 14 21, 13.5 21, 13.5 21.5, 14 21.5))" +"POLYGON ((14.5 21.5, 14.5 21, 14 21, 14 21.5, 14.5 21.5))" +"POLYGON ((15 21.5, 15 21, 14.5 21, 14.5 21.5, 15 21.5))" +"POLYGON ((15.5 21.5, 15.5 21, 15 21, 15 21.5, 15.5 21.5))" +"POLYGON ((16 21.5, 16 21, 15.5 21, 15.5 21.5, 16 21.5))" +"POLYGON ((16.5 21.5, 16.5 21, 16 21, 16 21.5, 16.5 21.5))" +"POLYGON ((17 21.5, 17 21, 16.5 21, 16.5 21.5, 17 21.5))" +"POLYGON ((17.5 21.5, 17.5 21, 17 21, 17 21.5, 17.5 21.5))" +"POLYGON ((18 21.5, 18 21, 17.5 21, 17.5 21.5, 18 21.5))" +"POLYGON ((18.5 21.5, 18.5 21, 18 21, 18 21.5, 18.5 21.5))" +"POLYGON ((19 21.5, 19 21, 18.5 21, 18.5 21.5, 19 21.5))" +"POLYGON ((19.5 21.5, 19.5 21, 19 21, 19 21.5, 19.5 21.5))" +"POLYGON ((20 21.5, 20 21, 19.5 21, 19.5 21.5, 20 21.5))" +"POLYGON ((20.5 21.5, 20.5 21, 20 21, 20 21.5, 20.5 21.5))" +"POLYGON ((21 21.5, 21 21, 20.5 21, 20.5 21.5, 21 21.5))" +"POLYGON ((21.5 21.5, 21.5 21, 21 21, 21 21.5, 21.5 21.5))" +"POLYGON ((22 21.5, 22 21, 21.5 21, 21.5 21.5, 22 21.5))" +"POLYGON ((22.5 21.5, 22.5 21, 22 21, 22 21.5, 22.5 21.5))" +"POLYGON ((23 21.5, 23 21, 22.5 21, 22.5 21.5, 23 21.5))" +"POLYGON ((23.5 21.5, 23.5 21, 23 21, 23 21.5, 23.5 21.5))" +"POLYGON ((24 21.5, 24 21, 23.5 21, 23.5 21.5, 24 21.5))" +"POLYGON ((24.5 21.5, 24.5 21, 24 21, 24 21.5, 24.5 21.5))" +"POLYGON ((25 21.5, 25 21, 24.5 21, 24.5 21.5, 25 21.5))" +"POLYGON ((25.5 21.5, 25.5 21, 25 21, 25 21.5, 25.5 21.5))" +"POLYGON ((26 21.5, 26 21, 25.5 21, 25.5 21.5, 26 21.5))" +"POLYGON ((26.5 21.5, 26.5 21, 26 21, 26 21.5, 26.5 21.5))" +"POLYGON ((27 21.5, 27 21, 26.5 21, 26.5 21.5, 27 21.5))" +"POLYGON ((27.5 21.5, 27.5 21, 27 21, 27 21.5, 27.5 21.5))" +"POLYGON ((28 21.5, 28 21, 27.5 21, 27.5 21.5, 28 21.5))" +"POLYGON ((28.5 21.5, 28.5 21, 28 21, 28 21.5, 28.5 21.5))" +"POLYGON ((29 21.5, 29 21, 28.5 21, 28.5 21.5, 29 21.5))" +"POLYGON ((29.5 21.5, 29.5 21, 29 21, 29 21.5, 29.5 21.5))" +"POLYGON ((30 21.5, 30 21, 29.5 21, 29.5 21.5, 30 21.5))" +"POLYGON ((30.5 21.5, 30.5 21, 30 21, 30 21.5, 30.5 21.5))" +"POLYGON ((31 21.5, 31 21, 30.5 21, 30.5 21.5, 31 21.5))" +"POLYGON ((31.5 21.5, 31.5 21, 31 21, 31 21.5, 31.5 21.5))" +"POLYGON ((32 21.5, 32 21, 31.5 21, 31.5 21.5, 32 21.5))" +"POLYGON ((32.5 21.5, 32.5 21, 32 21, 32 21.5, 32.5 21.5))" +"POLYGON ((33 21.5, 33 21, 32.5 21, 32.5 21.5, 33 21.5))" +"POLYGON ((33.5 21.5, 33.5 21, 33 21, 33 21.5, 33.5 21.5))" +"POLYGON ((34 21.5, 34 21, 33.5 21, 33.5 21.5, 34 21.5))" +"POLYGON ((34.5 21.5, 34.5 21, 34 21, 34 21.5, 34.5 21.5))" +"POLYGON ((35 21.5, 35 21, 34.5 21, 34.5 21.5, 35 21.5))" +"POLYGON ((35.5 21.5, 35.5 21, 35 21, 35 21.5, 35.5 21.5))" +"POLYGON ((36 21.5, 36 21, 35.5 21, 35.5 21.5, 36 21.5))" +"POLYGON ((36.5 21.5, 36.5 21, 36 21, 36 21.5, 36.5 21.5))" +"POLYGON ((37 21.5, 37 21, 36.5 21, 36.5 21.5, 37 21.5))" +"POLYGON ((-16.5 22, -16.5 21.5, -17 21.5, -17 22, -16.5 22))" +"POLYGON ((-16 22, -16 21.5, -16.5 21.5, -16.5 22, -16 22))" +"POLYGON ((-15.5 22, -15.5 21.5, -16 21.5, -16 22, -15.5 22))" +"POLYGON ((-15 22, -15 21.5, -15.5 21.5, -15.5 22, -15 22))" +"POLYGON ((-14.5 22, -14.5 21.5, -15 21.5, -15 22, -14.5 22))" +"POLYGON ((-14 22, -14 21.5, -14.5 21.5, -14.5 22, -14 22))" +"POLYGON ((-13.5 22, -13.5 21.5, -14 21.5, -14 22, -13.5 22))" +"POLYGON ((-13 22, -13 21.5, -13.5 21.5, -13.5 22, -13 22))" +"POLYGON ((-12.5 22, -12.5 21.5, -13 21.5, -13 22, -12.5 22))" +"POLYGON ((-12 22, -12 21.5, -12.5 21.5, -12.5 22, -12 22))" +"POLYGON ((-11.5 22, -11.5 21.5, -12 21.5, -12 22, -11.5 22))" +"POLYGON ((-11 22, -11 21.5, -11.5 21.5, -11.5 22, -11 22))" +"POLYGON ((-10.5 22, -10.5 21.5, -11 21.5, -11 22, -10.5 22))" +"POLYGON ((-10 22, -10 21.5, -10.5 21.5, -10.5 22, -10 22))" +"POLYGON ((-9.5 22, -9.5 21.5, -10 21.5, -10 22, -9.5 22))" +"POLYGON ((-9 22, -9 21.5, -9.5 21.5, -9.5 22, -9 22))" +"POLYGON ((-8.5 22, -8.5 21.5, -9 21.5, -9 22, -8.5 22))" +"POLYGON ((-8 22, -8 21.5, -8.5 21.5, -8.5 22, -8 22))" +"POLYGON ((-7.5 22, -7.5 21.5, -8 21.5, -8 22, -7.5 22))" +"POLYGON ((-7 22, -7 21.5, -7.5 21.5, -7.5 22, -7 22))" +"POLYGON ((-6.5 22, -6.5 21.5, -7 21.5, -7 22, -6.5 22))" +"POLYGON ((-6 22, -6 21.5, -6.5 21.5, -6.5 22, -6 22))" +"POLYGON ((-5.5 22, -5.5 21.5, -6 21.5, -6 22, -5.5 22))" +"POLYGON ((-5 22, -5 21.5, -5.5 21.5, -5.5 22, -5 22))" +"POLYGON ((-4.5 22, -4.5 21.5, -5 21.5, -5 22, -4.5 22))" +"POLYGON ((-4 22, -4 21.5, -4.5 21.5, -4.5 22, -4 22))" +"POLYGON ((-3.5 22, -3.5 21.5, -4 21.5, -4 22, -3.5 22))" +"POLYGON ((-3 22, -3 21.5, -3.5 21.5, -3.5 22, -3 22))" +"POLYGON ((-2.5 22, -2.5 21.5, -3 21.5, -3 22, -2.5 22))" +"POLYGON ((-2 22, -2 21.5, -2.5 21.5, -2.5 22, -2 22))" +"POLYGON ((-1.5 22, -1.5 21.5, -2 21.5, -2 22, -1.5 22))" +"POLYGON ((-1 22, -1 21.5, -1.5 21.5, -1.5 22, -1 22))" +"POLYGON ((-0.5 22, -0.5 21.5, -1 21.5, -1 22, -0.5 22))" +"POLYGON ((0 22, 0 21.5, -0.5 21.5, -0.5 22, 0 22))" +"POLYGON ((0.5 22, 0.5 21.5, 0 21.5, 0 22, 0.5 22))" +"POLYGON ((1 22, 1 21.5, 0.5 21.5, 0.5 22, 1 22))" +"POLYGON ((1.5 22, 1.5 21.5, 1 21.5, 1 22, 1.5 22))" +"POLYGON ((2 22, 2 21.5, 1.5 21.5, 1.5 22, 2 22))" +"POLYGON ((2.5 22, 2.5 21.5, 2 21.5, 2 22, 2.5 22))" +"POLYGON ((3 22, 3 21.5, 2.5 21.5, 2.5 22, 3 22))" +"POLYGON ((3.5 22, 3.5 21.5, 3 21.5, 3 22, 3.5 22))" +"POLYGON ((4 22, 4 21.5, 3.5 21.5, 3.5 22, 4 22))" +"POLYGON ((4.5 22, 4.5 21.5, 4 21.5, 4 22, 4.5 22))" +"POLYGON ((5 22, 5 21.5, 4.5 21.5, 4.5 22, 5 22))" +"POLYGON ((5.5 22, 5.5 21.5, 5 21.5, 5 22, 5.5 22))" +"POLYGON ((6 22, 6 21.5, 5.5 21.5, 5.5 22, 6 22))" +"POLYGON ((6.5 22, 6.5 21.5, 6 21.5, 6 22, 6.5 22))" +"POLYGON ((7 22, 7 21.5, 6.5 21.5, 6.5 22, 7 22))" +"POLYGON ((7.5 22, 7.5 21.5, 7 21.5, 7 22, 7.5 22))" +"POLYGON ((8 22, 8 21.5, 7.5 21.5, 7.5 22, 8 22))" +"POLYGON ((8.5 22, 8.5 21.5, 8 21.5, 8 22, 8.5 22))" +"POLYGON ((9 22, 9 21.5, 8.5 21.5, 8.5 22, 9 22))" +"POLYGON ((9.5 22, 9.5 21.5, 9 21.5, 9 22, 9.5 22))" +"POLYGON ((10 22, 10 21.5, 9.5 21.5, 9.5 22, 10 22))" +"POLYGON ((10.5 22, 10.5 21.5, 10 21.5, 10 22, 10.5 22))" +"POLYGON ((11 22, 11 21.5, 10.5 21.5, 10.5 22, 11 22))" +"POLYGON ((11.5 22, 11.5 21.5, 11 21.5, 11 22, 11.5 22))" +"POLYGON ((12 22, 12 21.5, 11.5 21.5, 11.5 22, 12 22))" +"POLYGON ((12.5 22, 12.5 21.5, 12 21.5, 12 22, 12.5 22))" +"POLYGON ((13 22, 13 21.5, 12.5 21.5, 12.5 22, 13 22))" +"POLYGON ((13.5 22, 13.5 21.5, 13 21.5, 13 22, 13.5 22))" +"POLYGON ((14 22, 14 21.5, 13.5 21.5, 13.5 22, 14 22))" +"POLYGON ((14.5 22, 14.5 21.5, 14 21.5, 14 22, 14.5 22))" +"POLYGON ((15 22, 15 21.5, 14.5 21.5, 14.5 22, 15 22))" +"POLYGON ((15.5 22, 15.5 21.5, 15 21.5, 15 22, 15.5 22))" +"POLYGON ((16 22, 16 21.5, 15.5 21.5, 15.5 22, 16 22))" +"POLYGON ((16.5 22, 16.5 21.5, 16 21.5, 16 22, 16.5 22))" +"POLYGON ((17 22, 17 21.5, 16.5 21.5, 16.5 22, 17 22))" +"POLYGON ((17.5 22, 17.5 21.5, 17 21.5, 17 22, 17.5 22))" +"POLYGON ((18 22, 18 21.5, 17.5 21.5, 17.5 22, 18 22))" +"POLYGON ((18.5 22, 18.5 21.5, 18 21.5, 18 22, 18.5 22))" +"POLYGON ((19 22, 19 21.5, 18.5 21.5, 18.5 22, 19 22))" +"POLYGON ((19.5 22, 19.5 21.5, 19 21.5, 19 22, 19.5 22))" +"POLYGON ((20 22, 20 21.5, 19.5 21.5, 19.5 22, 20 22))" +"POLYGON ((20.5 22, 20.5 21.5, 20 21.5, 20 22, 20.5 22))" +"POLYGON ((21 22, 21 21.5, 20.5 21.5, 20.5 22, 21 22))" +"POLYGON ((21.5 22, 21.5 21.5, 21 21.5, 21 22, 21.5 22))" +"POLYGON ((22 22, 22 21.5, 21.5 21.5, 21.5 22, 22 22))" +"POLYGON ((22.5 22, 22.5 21.5, 22 21.5, 22 22, 22.5 22))" +"POLYGON ((23 22, 23 21.5, 22.5 21.5, 22.5 22, 23 22))" +"POLYGON ((23.5 22, 23.5 21.5, 23 21.5, 23 22, 23.5 22))" +"POLYGON ((24 22, 24 21.5, 23.5 21.5, 23.5 22, 24 22))" +"POLYGON ((24.5 22, 24.5 21.5, 24 21.5, 24 22, 24.5 22))" +"POLYGON ((25 22, 25 21.5, 24.5 21.5, 24.5 22, 25 22))" +"POLYGON ((25.5 22, 25.5 21.5, 25 21.5, 25 22, 25.5 22))" +"POLYGON ((26 22, 26 21.5, 25.5 21.5, 25.5 22, 26 22))" +"POLYGON ((26.5 22, 26.5 21.5, 26 21.5, 26 22, 26.5 22))" +"POLYGON ((27 22, 27 21.5, 26.5 21.5, 26.5 22, 27 22))" +"POLYGON ((27.5 22, 27.5 21.5, 27 21.5, 27 22, 27.5 22))" +"POLYGON ((28 22, 28 21.5, 27.5 21.5, 27.5 22, 28 22))" +"POLYGON ((28.5 22, 28.5 21.5, 28 21.5, 28 22, 28.5 22))" +"POLYGON ((29 22, 29 21.5, 28.5 21.5, 28.5 22, 29 22))" +"POLYGON ((29.5 22, 29.5 21.5, 29 21.5, 29 22, 29.5 22))" +"POLYGON ((30 22, 30 21.5, 29.5 21.5, 29.5 22, 30 22))" +"POLYGON ((30.5 22, 30.5 21.5, 30 21.5, 30 22, 30.5 22))" +"POLYGON ((31 22, 31 21.5, 30.5 21.5, 30.5 22, 31 22))" +"POLYGON ((31.5 22, 31.5 21.5, 31 21.5, 31 22, 31.5 22))" +"POLYGON ((32 22, 32 21.5, 31.5 21.5, 31.5 22, 32 22))" +"POLYGON ((32.5 22, 32.5 21.5, 32 21.5, 32 22, 32.5 22))" +"POLYGON ((33 22, 33 21.5, 32.5 21.5, 32.5 22, 33 22))" +"POLYGON ((33.5 22, 33.5 21.5, 33 21.5, 33 22, 33.5 22))" +"POLYGON ((34 22, 34 21.5, 33.5 21.5, 33.5 22, 34 22))" +"POLYGON ((34.5 22, 34.5 21.5, 34 21.5, 34 22, 34.5 22))" +"POLYGON ((35 22, 35 21.5, 34.5 21.5, 34.5 22, 35 22))" +"POLYGON ((35.5 22, 35.5 21.5, 35 21.5, 35 22, 35.5 22))" +"POLYGON ((36 22, 36 21.5, 35.5 21.5, 35.5 22, 36 22))" +"POLYGON ((36.5 22, 36.5 21.5, 36 21.5, 36 22, 36.5 22))" +"POLYGON ((37 22, 37 21.5, 36.5 21.5, 36.5 22, 37 22))" +"POLYGON ((-16 22.5, -16 22, -16.5 22, -16.5 22.5, -16 22.5))" +"POLYGON ((-15.5 22.5, -15.5 22, -16 22, -16 22.5, -15.5 22.5))" +"POLYGON ((-15 22.5, -15 22, -15.5 22, -15.5 22.5, -15 22.5))" +"POLYGON ((-14.5 22.5, -14.5 22, -15 22, -15 22.5, -14.5 22.5))" +"POLYGON ((-14 22.5, -14 22, -14.5 22, -14.5 22.5, -14 22.5))" +"POLYGON ((-13.5 22.5, -13.5 22, -14 22, -14 22.5, -13.5 22.5))" +"POLYGON ((-13 22.5, -13 22, -13.5 22, -13.5 22.5, -13 22.5))" +"POLYGON ((-12.5 22.5, -12.5 22, -13 22, -13 22.5, -12.5 22.5))" +"POLYGON ((-12 22.5, -12 22, -12.5 22, -12.5 22.5, -12 22.5))" +"POLYGON ((-11.5 22.5, -11.5 22, -12 22, -12 22.5, -11.5 22.5))" +"POLYGON ((-11 22.5, -11 22, -11.5 22, -11.5 22.5, -11 22.5))" +"POLYGON ((-10.5 22.5, -10.5 22, -11 22, -11 22.5, -10.5 22.5))" +"POLYGON ((-10 22.5, -10 22, -10.5 22, -10.5 22.5, -10 22.5))" +"POLYGON ((-9.5 22.5, -9.5 22, -10 22, -10 22.5, -9.5 22.5))" +"POLYGON ((-9 22.5, -9 22, -9.5 22, -9.5 22.5, -9 22.5))" +"POLYGON ((-8.5 22.5, -8.5 22, -9 22, -9 22.5, -8.5 22.5))" +"POLYGON ((-8 22.5, -8 22, -8.5 22, -8.5 22.5, -8 22.5))" +"POLYGON ((-7.5 22.5, -7.5 22, -8 22, -8 22.5, -7.5 22.5))" +"POLYGON ((-7 22.5, -7 22, -7.5 22, -7.5 22.5, -7 22.5))" +"POLYGON ((-6.5 22.5, -6.5 22, -7 22, -7 22.5, -6.5 22.5))" +"POLYGON ((-6 22.5, -6 22, -6.5 22, -6.5 22.5, -6 22.5))" +"POLYGON ((-5.5 22.5, -5.5 22, -6 22, -6 22.5, -5.5 22.5))" +"POLYGON ((-5 22.5, -5 22, -5.5 22, -5.5 22.5, -5 22.5))" +"POLYGON ((-4.5 22.5, -4.5 22, -5 22, -5 22.5, -4.5 22.5))" +"POLYGON ((-4 22.5, -4 22, -4.5 22, -4.5 22.5, -4 22.5))" +"POLYGON ((-3.5 22.5, -3.5 22, -4 22, -4 22.5, -3.5 22.5))" +"POLYGON ((-3 22.5, -3 22, -3.5 22, -3.5 22.5, -3 22.5))" +"POLYGON ((-2.5 22.5, -2.5 22, -3 22, -3 22.5, -2.5 22.5))" +"POLYGON ((-2 22.5, -2 22, -2.5 22, -2.5 22.5, -2 22.5))" +"POLYGON ((-1.5 22.5, -1.5 22, -2 22, -2 22.5, -1.5 22.5))" +"POLYGON ((-1 22.5, -1 22, -1.5 22, -1.5 22.5, -1 22.5))" +"POLYGON ((-0.5 22.5, -0.5 22, -1 22, -1 22.5, -0.5 22.5))" +"POLYGON ((0 22.5, 0 22, -0.5 22, -0.5 22.5, 0 22.5))" +"POLYGON ((0.5 22.5, 0.5 22, 0 22, 0 22.5, 0.5 22.5))" +"POLYGON ((1 22.5, 1 22, 0.5 22, 0.5 22.5, 1 22.5))" +"POLYGON ((1.5 22.5, 1.5 22, 1 22, 1 22.5, 1.5 22.5))" +"POLYGON ((2 22.5, 2 22, 1.5 22, 1.5 22.5, 2 22.5))" +"POLYGON ((2.5 22.5, 2.5 22, 2 22, 2 22.5, 2.5 22.5))" +"POLYGON ((3 22.5, 3 22, 2.5 22, 2.5 22.5, 3 22.5))" +"POLYGON ((3.5 22.5, 3.5 22, 3 22, 3 22.5, 3.5 22.5))" +"POLYGON ((4 22.5, 4 22, 3.5 22, 3.5 22.5, 4 22.5))" +"POLYGON ((4.5 22.5, 4.5 22, 4 22, 4 22.5, 4.5 22.5))" +"POLYGON ((5 22.5, 5 22, 4.5 22, 4.5 22.5, 5 22.5))" +"POLYGON ((5.5 22.5, 5.5 22, 5 22, 5 22.5, 5.5 22.5))" +"POLYGON ((6 22.5, 6 22, 5.5 22, 5.5 22.5, 6 22.5))" +"POLYGON ((6.5 22.5, 6.5 22, 6 22, 6 22.5, 6.5 22.5))" +"POLYGON ((7 22.5, 7 22, 6.5 22, 6.5 22.5, 7 22.5))" +"POLYGON ((7.5 22.5, 7.5 22, 7 22, 7 22.5, 7.5 22.5))" +"POLYGON ((8 22.5, 8 22, 7.5 22, 7.5 22.5, 8 22.5))" +"POLYGON ((8.5 22.5, 8.5 22, 8 22, 8 22.5, 8.5 22.5))" +"POLYGON ((9 22.5, 9 22, 8.5 22, 8.5 22.5, 9 22.5))" +"POLYGON ((9.5 22.5, 9.5 22, 9 22, 9 22.5, 9.5 22.5))" +"POLYGON ((10 22.5, 10 22, 9.5 22, 9.5 22.5, 10 22.5))" +"POLYGON ((10.5 22.5, 10.5 22, 10 22, 10 22.5, 10.5 22.5))" +"POLYGON ((11 22.5, 11 22, 10.5 22, 10.5 22.5, 11 22.5))" +"POLYGON ((11.5 22.5, 11.5 22, 11 22, 11 22.5, 11.5 22.5))" +"POLYGON ((12 22.5, 12 22, 11.5 22, 11.5 22.5, 12 22.5))" +"POLYGON ((12.5 22.5, 12.5 22, 12 22, 12 22.5, 12.5 22.5))" +"POLYGON ((13 22.5, 13 22, 12.5 22, 12.5 22.5, 13 22.5))" +"POLYGON ((13.5 22.5, 13.5 22, 13 22, 13 22.5, 13.5 22.5))" +"POLYGON ((14 22.5, 14 22, 13.5 22, 13.5 22.5, 14 22.5))" +"POLYGON ((14.5 22.5, 14.5 22, 14 22, 14 22.5, 14.5 22.5))" +"POLYGON ((15 22.5, 15 22, 14.5 22, 14.5 22.5, 15 22.5))" +"POLYGON ((15.5 22.5, 15.5 22, 15 22, 15 22.5, 15.5 22.5))" +"POLYGON ((16 22.5, 16 22, 15.5 22, 15.5 22.5, 16 22.5))" +"POLYGON ((16.5 22.5, 16.5 22, 16 22, 16 22.5, 16.5 22.5))" +"POLYGON ((17 22.5, 17 22, 16.5 22, 16.5 22.5, 17 22.5))" +"POLYGON ((17.5 22.5, 17.5 22, 17 22, 17 22.5, 17.5 22.5))" +"POLYGON ((18 22.5, 18 22, 17.5 22, 17.5 22.5, 18 22.5))" +"POLYGON ((18.5 22.5, 18.5 22, 18 22, 18 22.5, 18.5 22.5))" +"POLYGON ((19 22.5, 19 22, 18.5 22, 18.5 22.5, 19 22.5))" +"POLYGON ((19.5 22.5, 19.5 22, 19 22, 19 22.5, 19.5 22.5))" +"POLYGON ((20 22.5, 20 22, 19.5 22, 19.5 22.5, 20 22.5))" +"POLYGON ((20.5 22.5, 20.5 22, 20 22, 20 22.5, 20.5 22.5))" +"POLYGON ((21 22.5, 21 22, 20.5 22, 20.5 22.5, 21 22.5))" +"POLYGON ((21.5 22.5, 21.5 22, 21 22, 21 22.5, 21.5 22.5))" +"POLYGON ((22 22.5, 22 22, 21.5 22, 21.5 22.5, 22 22.5))" +"POLYGON ((22.5 22.5, 22.5 22, 22 22, 22 22.5, 22.5 22.5))" +"POLYGON ((23 22.5, 23 22, 22.5 22, 22.5 22.5, 23 22.5))" +"POLYGON ((23.5 22.5, 23.5 22, 23 22, 23 22.5, 23.5 22.5))" +"POLYGON ((24 22.5, 24 22, 23.5 22, 23.5 22.5, 24 22.5))" +"POLYGON ((24.5 22.5, 24.5 22, 24 22, 24 22.5, 24.5 22.5))" +"POLYGON ((25 22.5, 25 22, 24.5 22, 24.5 22.5, 25 22.5))" +"POLYGON ((25.5 22.5, 25.5 22, 25 22, 25 22.5, 25.5 22.5))" +"POLYGON ((26 22.5, 26 22, 25.5 22, 25.5 22.5, 26 22.5))" +"POLYGON ((26.5 22.5, 26.5 22, 26 22, 26 22.5, 26.5 22.5))" +"POLYGON ((27 22.5, 27 22, 26.5 22, 26.5 22.5, 27 22.5))" +"POLYGON ((27.5 22.5, 27.5 22, 27 22, 27 22.5, 27.5 22.5))" +"POLYGON ((28 22.5, 28 22, 27.5 22, 27.5 22.5, 28 22.5))" +"POLYGON ((28.5 22.5, 28.5 22, 28 22, 28 22.5, 28.5 22.5))" +"POLYGON ((29 22.5, 29 22, 28.5 22, 28.5 22.5, 29 22.5))" +"POLYGON ((29.5 22.5, 29.5 22, 29 22, 29 22.5, 29.5 22.5))" +"POLYGON ((30 22.5, 30 22, 29.5 22, 29.5 22.5, 30 22.5))" +"POLYGON ((30.5 22.5, 30.5 22, 30 22, 30 22.5, 30.5 22.5))" +"POLYGON ((31 22.5, 31 22, 30.5 22, 30.5 22.5, 31 22.5))" +"POLYGON ((31.5 22.5, 31.5 22, 31 22, 31 22.5, 31.5 22.5))" +"POLYGON ((32 22.5, 32 22, 31.5 22, 31.5 22.5, 32 22.5))" +"POLYGON ((32.5 22.5, 32.5 22, 32 22, 32 22.5, 32.5 22.5))" +"POLYGON ((33 22.5, 33 22, 32.5 22, 32.5 22.5, 33 22.5))" +"POLYGON ((33.5 22.5, 33.5 22, 33 22, 33 22.5, 33.5 22.5))" +"POLYGON ((34 22.5, 34 22, 33.5 22, 33.5 22.5, 34 22.5))" +"POLYGON ((34.5 22.5, 34.5 22, 34 22, 34 22.5, 34.5 22.5))" +"POLYGON ((35 22.5, 35 22, 34.5 22, 34.5 22.5, 35 22.5))" +"POLYGON ((35.5 22.5, 35.5 22, 35 22, 35 22.5, 35.5 22.5))" +"POLYGON ((36 22.5, 36 22, 35.5 22, 35.5 22.5, 36 22.5))" +"POLYGON ((36.5 22.5, 36.5 22, 36 22, 36 22.5, 36.5 22.5))" +"POLYGON ((-16 23, -16 22.5, -16.5 22.5, -16.5 23, -16 23))" +"POLYGON ((-15.5 23, -15.5 22.5, -16 22.5, -16 23, -15.5 23))" +"POLYGON ((-15 23, -15 22.5, -15.5 22.5, -15.5 23, -15 23))" +"POLYGON ((-14.5 23, -14.5 22.5, -15 22.5, -15 23, -14.5 23))" +"POLYGON ((-14 23, -14 22.5, -14.5 22.5, -14.5 23, -14 23))" +"POLYGON ((-13.5 23, -13.5 22.5, -14 22.5, -14 23, -13.5 23))" +"POLYGON ((-13 23, -13 22.5, -13.5 22.5, -13.5 23, -13 23))" +"POLYGON ((-12.5 23, -12.5 22.5, -13 22.5, -13 23, -12.5 23))" +"POLYGON ((-12 23, -12 22.5, -12.5 22.5, -12.5 23, -12 23))" +"POLYGON ((-11.5 23, -11.5 22.5, -12 22.5, -12 23, -11.5 23))" +"POLYGON ((-11 23, -11 22.5, -11.5 22.5, -11.5 23, -11 23))" +"POLYGON ((-10.5 23, -10.5 22.5, -11 22.5, -11 23, -10.5 23))" +"POLYGON ((-10 23, -10 22.5, -10.5 22.5, -10.5 23, -10 23))" +"POLYGON ((-9.5 23, -9.5 22.5, -10 22.5, -10 23, -9.5 23))" +"POLYGON ((-9 23, -9 22.5, -9.5 22.5, -9.5 23, -9 23))" +"POLYGON ((-8.5 23, -8.5 22.5, -9 22.5, -9 23, -8.5 23))" +"POLYGON ((-8 23, -8 22.5, -8.5 22.5, -8.5 23, -8 23))" +"POLYGON ((-7.5 23, -7.5 22.5, -8 22.5, -8 23, -7.5 23))" +"POLYGON ((-7 23, -7 22.5, -7.5 22.5, -7.5 23, -7 23))" +"POLYGON ((-6.5 23, -6.5 22.5, -7 22.5, -7 23, -6.5 23))" +"POLYGON ((-6 23, -6 22.5, -6.5 22.5, -6.5 23, -6 23))" +"POLYGON ((-5.5 23, -5.5 22.5, -6 22.5, -6 23, -5.5 23))" +"POLYGON ((-5 23, -5 22.5, -5.5 22.5, -5.5 23, -5 23))" +"POLYGON ((-4.5 23, -4.5 22.5, -5 22.5, -5 23, -4.5 23))" +"POLYGON ((-4 23, -4 22.5, -4.5 22.5, -4.5 23, -4 23))" +"POLYGON ((-3.5 23, -3.5 22.5, -4 22.5, -4 23, -3.5 23))" +"POLYGON ((-3 23, -3 22.5, -3.5 22.5, -3.5 23, -3 23))" +"POLYGON ((-2.5 23, -2.5 22.5, -3 22.5, -3 23, -2.5 23))" +"POLYGON ((-2 23, -2 22.5, -2.5 22.5, -2.5 23, -2 23))" +"POLYGON ((-1.5 23, -1.5 22.5, -2 22.5, -2 23, -1.5 23))" +"POLYGON ((-1 23, -1 22.5, -1.5 22.5, -1.5 23, -1 23))" +"POLYGON ((-0.5 23, -0.5 22.5, -1 22.5, -1 23, -0.5 23))" +"POLYGON ((0 23, 0 22.5, -0.5 22.5, -0.5 23, 0 23))" +"POLYGON ((0.5 23, 0.5 22.5, 0 22.5, 0 23, 0.5 23))" +"POLYGON ((1 23, 1 22.5, 0.5 22.5, 0.5 23, 1 23))" +"POLYGON ((1.5 23, 1.5 22.5, 1 22.5, 1 23, 1.5 23))" +"POLYGON ((2 23, 2 22.5, 1.5 22.5, 1.5 23, 2 23))" +"POLYGON ((2.5 23, 2.5 22.5, 2 22.5, 2 23, 2.5 23))" +"POLYGON ((3 23, 3 22.5, 2.5 22.5, 2.5 23, 3 23))" +"POLYGON ((3.5 23, 3.5 22.5, 3 22.5, 3 23, 3.5 23))" +"POLYGON ((4 23, 4 22.5, 3.5 22.5, 3.5 23, 4 23))" +"POLYGON ((4.5 23, 4.5 22.5, 4 22.5, 4 23, 4.5 23))" +"POLYGON ((5 23, 5 22.5, 4.5 22.5, 4.5 23, 5 23))" +"POLYGON ((5.5 23, 5.5 22.5, 5 22.5, 5 23, 5.5 23))" +"POLYGON ((6 23, 6 22.5, 5.5 22.5, 5.5 23, 6 23))" +"POLYGON ((6.5 23, 6.5 22.5, 6 22.5, 6 23, 6.5 23))" +"POLYGON ((7 23, 7 22.5, 6.5 22.5, 6.5 23, 7 23))" +"POLYGON ((7.5 23, 7.5 22.5, 7 22.5, 7 23, 7.5 23))" +"POLYGON ((8 23, 8 22.5, 7.5 22.5, 7.5 23, 8 23))" +"POLYGON ((8.5 23, 8.5 22.5, 8 22.5, 8 23, 8.5 23))" +"POLYGON ((9 23, 9 22.5, 8.5 22.5, 8.5 23, 9 23))" +"POLYGON ((9.5 23, 9.5 22.5, 9 22.5, 9 23, 9.5 23))" +"POLYGON ((10 23, 10 22.5, 9.5 22.5, 9.5 23, 10 23))" +"POLYGON ((10.5 23, 10.5 22.5, 10 22.5, 10 23, 10.5 23))" +"POLYGON ((11 23, 11 22.5, 10.5 22.5, 10.5 23, 11 23))" +"POLYGON ((11.5 23, 11.5 22.5, 11 22.5, 11 23, 11.5 23))" +"POLYGON ((12 23, 12 22.5, 11.5 22.5, 11.5 23, 12 23))" +"POLYGON ((12.5 23, 12.5 22.5, 12 22.5, 12 23, 12.5 23))" +"POLYGON ((13 23, 13 22.5, 12.5 22.5, 12.5 23, 13 23))" +"POLYGON ((13.5 23, 13.5 22.5, 13 22.5, 13 23, 13.5 23))" +"POLYGON ((14 23, 14 22.5, 13.5 22.5, 13.5 23, 14 23))" +"POLYGON ((14.5 23, 14.5 22.5, 14 22.5, 14 23, 14.5 23))" +"POLYGON ((15 23, 15 22.5, 14.5 22.5, 14.5 23, 15 23))" +"POLYGON ((15.5 23, 15.5 22.5, 15 22.5, 15 23, 15.5 23))" +"POLYGON ((16 23, 16 22.5, 15.5 22.5, 15.5 23, 16 23))" +"POLYGON ((16.5 23, 16.5 22.5, 16 22.5, 16 23, 16.5 23))" +"POLYGON ((17 23, 17 22.5, 16.5 22.5, 16.5 23, 17 23))" +"POLYGON ((17.5 23, 17.5 22.5, 17 22.5, 17 23, 17.5 23))" +"POLYGON ((18 23, 18 22.5, 17.5 22.5, 17.5 23, 18 23))" +"POLYGON ((18.5 23, 18.5 22.5, 18 22.5, 18 23, 18.5 23))" +"POLYGON ((19 23, 19 22.5, 18.5 22.5, 18.5 23, 19 23))" +"POLYGON ((19.5 23, 19.5 22.5, 19 22.5, 19 23, 19.5 23))" +"POLYGON ((20 23, 20 22.5, 19.5 22.5, 19.5 23, 20 23))" +"POLYGON ((20.5 23, 20.5 22.5, 20 22.5, 20 23, 20.5 23))" +"POLYGON ((21 23, 21 22.5, 20.5 22.5, 20.5 23, 21 23))" +"POLYGON ((21.5 23, 21.5 22.5, 21 22.5, 21 23, 21.5 23))" +"POLYGON ((22 23, 22 22.5, 21.5 22.5, 21.5 23, 22 23))" +"POLYGON ((22.5 23, 22.5 22.5, 22 22.5, 22 23, 22.5 23))" +"POLYGON ((23 23, 23 22.5, 22.5 22.5, 22.5 23, 23 23))" +"POLYGON ((23.5 23, 23.5 22.5, 23 22.5, 23 23, 23.5 23))" +"POLYGON ((24 23, 24 22.5, 23.5 22.5, 23.5 23, 24 23))" +"POLYGON ((24.5 23, 24.5 22.5, 24 22.5, 24 23, 24.5 23))" +"POLYGON ((25 23, 25 22.5, 24.5 22.5, 24.5 23, 25 23))" +"POLYGON ((25.5 23, 25.5 22.5, 25 22.5, 25 23, 25.5 23))" +"POLYGON ((26 23, 26 22.5, 25.5 22.5, 25.5 23, 26 23))" +"POLYGON ((26.5 23, 26.5 22.5, 26 22.5, 26 23, 26.5 23))" +"POLYGON ((27 23, 27 22.5, 26.5 22.5, 26.5 23, 27 23))" +"POLYGON ((27.5 23, 27.5 22.5, 27 22.5, 27 23, 27.5 23))" +"POLYGON ((28 23, 28 22.5, 27.5 22.5, 27.5 23, 28 23))" +"POLYGON ((28.5 23, 28.5 22.5, 28 22.5, 28 23, 28.5 23))" +"POLYGON ((29 23, 29 22.5, 28.5 22.5, 28.5 23, 29 23))" +"POLYGON ((29.5 23, 29.5 22.5, 29 22.5, 29 23, 29.5 23))" +"POLYGON ((30 23, 30 22.5, 29.5 22.5, 29.5 23, 30 23))" +"POLYGON ((30.5 23, 30.5 22.5, 30 22.5, 30 23, 30.5 23))" +"POLYGON ((31 23, 31 22.5, 30.5 22.5, 30.5 23, 31 23))" +"POLYGON ((31.5 23, 31.5 22.5, 31 22.5, 31 23, 31.5 23))" +"POLYGON ((32 23, 32 22.5, 31.5 22.5, 31.5 23, 32 23))" +"POLYGON ((32.5 23, 32.5 22.5, 32 22.5, 32 23, 32.5 23))" +"POLYGON ((33 23, 33 22.5, 32.5 22.5, 32.5 23, 33 23))" +"POLYGON ((33.5 23, 33.5 22.5, 33 22.5, 33 23, 33.5 23))" +"POLYGON ((34 23, 34 22.5, 33.5 22.5, 33.5 23, 34 23))" +"POLYGON ((34.5 23, 34.5 22.5, 34 22.5, 34 23, 34.5 23))" +"POLYGON ((35 23, 35 22.5, 34.5 22.5, 34.5 23, 35 23))" +"POLYGON ((35.5 23, 35.5 22.5, 35 22.5, 35 23, 35.5 23))" +"POLYGON ((36 23, 36 22.5, 35.5 22.5, 35.5 23, 36 23))" +"POLYGON ((-15.5 23.5, -15.5 23, -16 23, -16 23.5, -15.5 23.5))" +"POLYGON ((-15 23.5, -15 23, -15.5 23, -15.5 23.5, -15 23.5))" +"POLYGON ((-14.5 23.5, -14.5 23, -15 23, -15 23.5, -14.5 23.5))" +"POLYGON ((-14 23.5, -14 23, -14.5 23, -14.5 23.5, -14 23.5))" +"POLYGON ((-13.5 23.5, -13.5 23, -14 23, -14 23.5, -13.5 23.5))" +"POLYGON ((-13 23.5, -13 23, -13.5 23, -13.5 23.5, -13 23.5))" +"POLYGON ((-12.5 23.5, -12.5 23, -13 23, -13 23.5, -12.5 23.5))" +"POLYGON ((-12 23.5, -12 23, -12.5 23, -12.5 23.5, -12 23.5))" +"POLYGON ((-11.5 23.5, -11.5 23, -12 23, -12 23.5, -11.5 23.5))" +"POLYGON ((-11 23.5, -11 23, -11.5 23, -11.5 23.5, -11 23.5))" +"POLYGON ((-10.5 23.5, -10.5 23, -11 23, -11 23.5, -10.5 23.5))" +"POLYGON ((-10 23.5, -10 23, -10.5 23, -10.5 23.5, -10 23.5))" +"POLYGON ((-9.5 23.5, -9.5 23, -10 23, -10 23.5, -9.5 23.5))" +"POLYGON ((-9 23.5, -9 23, -9.5 23, -9.5 23.5, -9 23.5))" +"POLYGON ((-8.5 23.5, -8.5 23, -9 23, -9 23.5, -8.5 23.5))" +"POLYGON ((-8 23.5, -8 23, -8.5 23, -8.5 23.5, -8 23.5))" +"POLYGON ((-7.5 23.5, -7.5 23, -8 23, -8 23.5, -7.5 23.5))" +"POLYGON ((-7 23.5, -7 23, -7.5 23, -7.5 23.5, -7 23.5))" +"POLYGON ((-6.5 23.5, -6.5 23, -7 23, -7 23.5, -6.5 23.5))" +"POLYGON ((-6 23.5, -6 23, -6.5 23, -6.5 23.5, -6 23.5))" +"POLYGON ((-5.5 23.5, -5.5 23, -6 23, -6 23.5, -5.5 23.5))" +"POLYGON ((-5 23.5, -5 23, -5.5 23, -5.5 23.5, -5 23.5))" +"POLYGON ((-4.5 23.5, -4.5 23, -5 23, -5 23.5, -4.5 23.5))" +"POLYGON ((-4 23.5, -4 23, -4.5 23, -4.5 23.5, -4 23.5))" +"POLYGON ((-3.5 23.5, -3.5 23, -4 23, -4 23.5, -3.5 23.5))" +"POLYGON ((-3 23.5, -3 23, -3.5 23, -3.5 23.5, -3 23.5))" +"POLYGON ((-2.5 23.5, -2.5 23, -3 23, -3 23.5, -2.5 23.5))" +"POLYGON ((-2 23.5, -2 23, -2.5 23, -2.5 23.5, -2 23.5))" +"POLYGON ((-1.5 23.5, -1.5 23, -2 23, -2 23.5, -1.5 23.5))" +"POLYGON ((-1 23.5, -1 23, -1.5 23, -1.5 23.5, -1 23.5))" +"POLYGON ((-0.5 23.5, -0.5 23, -1 23, -1 23.5, -0.5 23.5))" +"POLYGON ((0 23.5, 0 23, -0.5 23, -0.5 23.5, 0 23.5))" +"POLYGON ((0.5 23.5, 0.5 23, 0 23, 0 23.5, 0.5 23.5))" +"POLYGON ((1 23.5, 1 23, 0.5 23, 0.5 23.5, 1 23.5))" +"POLYGON ((1.5 23.5, 1.5 23, 1 23, 1 23.5, 1.5 23.5))" +"POLYGON ((2 23.5, 2 23, 1.5 23, 1.5 23.5, 2 23.5))" +"POLYGON ((2.5 23.5, 2.5 23, 2 23, 2 23.5, 2.5 23.5))" +"POLYGON ((3 23.5, 3 23, 2.5 23, 2.5 23.5, 3 23.5))" +"POLYGON ((3.5 23.5, 3.5 23, 3 23, 3 23.5, 3.5 23.5))" +"POLYGON ((4 23.5, 4 23, 3.5 23, 3.5 23.5, 4 23.5))" +"POLYGON ((4.5 23.5, 4.5 23, 4 23, 4 23.5, 4.5 23.5))" +"POLYGON ((5 23.5, 5 23, 4.5 23, 4.5 23.5, 5 23.5))" +"POLYGON ((5.5 23.5, 5.5 23, 5 23, 5 23.5, 5.5 23.5))" +"POLYGON ((6 23.5, 6 23, 5.5 23, 5.5 23.5, 6 23.5))" +"POLYGON ((6.5 23.5, 6.5 23, 6 23, 6 23.5, 6.5 23.5))" +"POLYGON ((7 23.5, 7 23, 6.5 23, 6.5 23.5, 7 23.5))" +"POLYGON ((7.5 23.5, 7.5 23, 7 23, 7 23.5, 7.5 23.5))" +"POLYGON ((8 23.5, 8 23, 7.5 23, 7.5 23.5, 8 23.5))" +"POLYGON ((8.5 23.5, 8.5 23, 8 23, 8 23.5, 8.5 23.5))" +"POLYGON ((9 23.5, 9 23, 8.5 23, 8.5 23.5, 9 23.5))" +"POLYGON ((9.5 23.5, 9.5 23, 9 23, 9 23.5, 9.5 23.5))" +"POLYGON ((10 23.5, 10 23, 9.5 23, 9.5 23.5, 10 23.5))" +"POLYGON ((10.5 23.5, 10.5 23, 10 23, 10 23.5, 10.5 23.5))" +"POLYGON ((11 23.5, 11 23, 10.5 23, 10.5 23.5, 11 23.5))" +"POLYGON ((11.5 23.5, 11.5 23, 11 23, 11 23.5, 11.5 23.5))" +"POLYGON ((12 23.5, 12 23, 11.5 23, 11.5 23.5, 12 23.5))" +"POLYGON ((12.5 23.5, 12.5 23, 12 23, 12 23.5, 12.5 23.5))" +"POLYGON ((13 23.5, 13 23, 12.5 23, 12.5 23.5, 13 23.5))" +"POLYGON ((13.5 23.5, 13.5 23, 13 23, 13 23.5, 13.5 23.5))" +"POLYGON ((14 23.5, 14 23, 13.5 23, 13.5 23.5, 14 23.5))" +"POLYGON ((14.5 23.5, 14.5 23, 14 23, 14 23.5, 14.5 23.5))" +"POLYGON ((15 23.5, 15 23, 14.5 23, 14.5 23.5, 15 23.5))" +"POLYGON ((15.5 23.5, 15.5 23, 15 23, 15 23.5, 15.5 23.5))" +"POLYGON ((16 23.5, 16 23, 15.5 23, 15.5 23.5, 16 23.5))" +"POLYGON ((16.5 23.5, 16.5 23, 16 23, 16 23.5, 16.5 23.5))" +"POLYGON ((17 23.5, 17 23, 16.5 23, 16.5 23.5, 17 23.5))" +"POLYGON ((17.5 23.5, 17.5 23, 17 23, 17 23.5, 17.5 23.5))" +"POLYGON ((18 23.5, 18 23, 17.5 23, 17.5 23.5, 18 23.5))" +"POLYGON ((18.5 23.5, 18.5 23, 18 23, 18 23.5, 18.5 23.5))" +"POLYGON ((19 23.5, 19 23, 18.5 23, 18.5 23.5, 19 23.5))" +"POLYGON ((19.5 23.5, 19.5 23, 19 23, 19 23.5, 19.5 23.5))" +"POLYGON ((20 23.5, 20 23, 19.5 23, 19.5 23.5, 20 23.5))" +"POLYGON ((20.5 23.5, 20.5 23, 20 23, 20 23.5, 20.5 23.5))" +"POLYGON ((21 23.5, 21 23, 20.5 23, 20.5 23.5, 21 23.5))" +"POLYGON ((21.5 23.5, 21.5 23, 21 23, 21 23.5, 21.5 23.5))" +"POLYGON ((22 23.5, 22 23, 21.5 23, 21.5 23.5, 22 23.5))" +"POLYGON ((22.5 23.5, 22.5 23, 22 23, 22 23.5, 22.5 23.5))" +"POLYGON ((23 23.5, 23 23, 22.5 23, 22.5 23.5, 23 23.5))" +"POLYGON ((23.5 23.5, 23.5 23, 23 23, 23 23.5, 23.5 23.5))" +"POLYGON ((24 23.5, 24 23, 23.5 23, 23.5 23.5, 24 23.5))" +"POLYGON ((24.5 23.5, 24.5 23, 24 23, 24 23.5, 24.5 23.5))" +"POLYGON ((25 23.5, 25 23, 24.5 23, 24.5 23.5, 25 23.5))" +"POLYGON ((25.5 23.5, 25.5 23, 25 23, 25 23.5, 25.5 23.5))" +"POLYGON ((26 23.5, 26 23, 25.5 23, 25.5 23.5, 26 23.5))" +"POLYGON ((26.5 23.5, 26.5 23, 26 23, 26 23.5, 26.5 23.5))" +"POLYGON ((27 23.5, 27 23, 26.5 23, 26.5 23.5, 27 23.5))" +"POLYGON ((27.5 23.5, 27.5 23, 27 23, 27 23.5, 27.5 23.5))" +"POLYGON ((28 23.5, 28 23, 27.5 23, 27.5 23.5, 28 23.5))" +"POLYGON ((28.5 23.5, 28.5 23, 28 23, 28 23.5, 28.5 23.5))" +"POLYGON ((29 23.5, 29 23, 28.5 23, 28.5 23.5, 29 23.5))" +"POLYGON ((29.5 23.5, 29.5 23, 29 23, 29 23.5, 29.5 23.5))" +"POLYGON ((30 23.5, 30 23, 29.5 23, 29.5 23.5, 30 23.5))" +"POLYGON ((30.5 23.5, 30.5 23, 30 23, 30 23.5, 30.5 23.5))" +"POLYGON ((31 23.5, 31 23, 30.5 23, 30.5 23.5, 31 23.5))" +"POLYGON ((31.5 23.5, 31.5 23, 31 23, 31 23.5, 31.5 23.5))" +"POLYGON ((32 23.5, 32 23, 31.5 23, 31.5 23.5, 32 23.5))" +"POLYGON ((32.5 23.5, 32.5 23, 32 23, 32 23.5, 32.5 23.5))" +"POLYGON ((33 23.5, 33 23, 32.5 23, 32.5 23.5, 33 23.5))" +"POLYGON ((33.5 23.5, 33.5 23, 33 23, 33 23.5, 33.5 23.5))" +"POLYGON ((34 23.5, 34 23, 33.5 23, 33.5 23.5, 34 23.5))" +"POLYGON ((34.5 23.5, 34.5 23, 34 23, 34 23.5, 34.5 23.5))" +"POLYGON ((35 23.5, 35 23, 34.5 23, 34.5 23.5, 35 23.5))" +"POLYGON ((35.5 23.5, 35.5 23, 35 23, 35 23.5, 35.5 23.5))" +"POLYGON ((-15.5 24, -15.5 23.5, -16 23.5, -16 24, -15.5 24))" +"POLYGON ((-15 24, -15 23.5, -15.5 23.5, -15.5 24, -15 24))" +"POLYGON ((-14.5 24, -14.5 23.5, -15 23.5, -15 24, -14.5 24))" +"POLYGON ((-14 24, -14 23.5, -14.5 23.5, -14.5 24, -14 24))" +"POLYGON ((-13.5 24, -13.5 23.5, -14 23.5, -14 24, -13.5 24))" +"POLYGON ((-13 24, -13 23.5, -13.5 23.5, -13.5 24, -13 24))" +"POLYGON ((-12.5 24, -12.5 23.5, -13 23.5, -13 24, -12.5 24))" +"POLYGON ((-12 24, -12 23.5, -12.5 23.5, -12.5 24, -12 24))" +"POLYGON ((-11.5 24, -11.5 23.5, -12 23.5, -12 24, -11.5 24))" +"POLYGON ((-11 24, -11 23.5, -11.5 23.5, -11.5 24, -11 24))" +"POLYGON ((-10.5 24, -10.5 23.5, -11 23.5, -11 24, -10.5 24))" +"POLYGON ((-10 24, -10 23.5, -10.5 23.5, -10.5 24, -10 24))" +"POLYGON ((-9.5 24, -9.5 23.5, -10 23.5, -10 24, -9.5 24))" +"POLYGON ((-9 24, -9 23.5, -9.5 23.5, -9.5 24, -9 24))" +"POLYGON ((-8.5 24, -8.5 23.5, -9 23.5, -9 24, -8.5 24))" +"POLYGON ((-8 24, -8 23.5, -8.5 23.5, -8.5 24, -8 24))" +"POLYGON ((-7.5 24, -7.5 23.5, -8 23.5, -8 24, -7.5 24))" +"POLYGON ((-7 24, -7 23.5, -7.5 23.5, -7.5 24, -7 24))" +"POLYGON ((-6.5 24, -6.5 23.5, -7 23.5, -7 24, -6.5 24))" +"POLYGON ((-6 24, -6 23.5, -6.5 23.5, -6.5 24, -6 24))" +"POLYGON ((-5.5 24, -5.5 23.5, -6 23.5, -6 24, -5.5 24))" +"POLYGON ((-5 24, -5 23.5, -5.5 23.5, -5.5 24, -5 24))" +"POLYGON ((-4.5 24, -4.5 23.5, -5 23.5, -5 24, -4.5 24))" +"POLYGON ((-4 24, -4 23.5, -4.5 23.5, -4.5 24, -4 24))" +"POLYGON ((-3.5 24, -3.5 23.5, -4 23.5, -4 24, -3.5 24))" +"POLYGON ((-3 24, -3 23.5, -3.5 23.5, -3.5 24, -3 24))" +"POLYGON ((-2.5 24, -2.5 23.5, -3 23.5, -3 24, -2.5 24))" +"POLYGON ((-2 24, -2 23.5, -2.5 23.5, -2.5 24, -2 24))" +"POLYGON ((-1.5 24, -1.5 23.5, -2 23.5, -2 24, -1.5 24))" +"POLYGON ((-1 24, -1 23.5, -1.5 23.5, -1.5 24, -1 24))" +"POLYGON ((-0.5 24, -0.5 23.5, -1 23.5, -1 24, -0.5 24))" +"POLYGON ((0 24, 0 23.5, -0.5 23.5, -0.5 24, 0 24))" +"POLYGON ((0.5 24, 0.5 23.5, 0 23.5, 0 24, 0.5 24))" +"POLYGON ((1 24, 1 23.5, 0.5 23.5, 0.5 24, 1 24))" +"POLYGON ((1.5 24, 1.5 23.5, 1 23.5, 1 24, 1.5 24))" +"POLYGON ((2 24, 2 23.5, 1.5 23.5, 1.5 24, 2 24))" +"POLYGON ((2.5 24, 2.5 23.5, 2 23.5, 2 24, 2.5 24))" +"POLYGON ((3 24, 3 23.5, 2.5 23.5, 2.5 24, 3 24))" +"POLYGON ((3.5 24, 3.5 23.5, 3 23.5, 3 24, 3.5 24))" +"POLYGON ((4 24, 4 23.5, 3.5 23.5, 3.5 24, 4 24))" +"POLYGON ((4.5 24, 4.5 23.5, 4 23.5, 4 24, 4.5 24))" +"POLYGON ((5 24, 5 23.5, 4.5 23.5, 4.5 24, 5 24))" +"POLYGON ((5.5 24, 5.5 23.5, 5 23.5, 5 24, 5.5 24))" +"POLYGON ((6 24, 6 23.5, 5.5 23.5, 5.5 24, 6 24))" +"POLYGON ((6.5 24, 6.5 23.5, 6 23.5, 6 24, 6.5 24))" +"POLYGON ((7 24, 7 23.5, 6.5 23.5, 6.5 24, 7 24))" +"POLYGON ((7.5 24, 7.5 23.5, 7 23.5, 7 24, 7.5 24))" +"POLYGON ((8 24, 8 23.5, 7.5 23.5, 7.5 24, 8 24))" +"POLYGON ((8.5 24, 8.5 23.5, 8 23.5, 8 24, 8.5 24))" +"POLYGON ((9 24, 9 23.5, 8.5 23.5, 8.5 24, 9 24))" +"POLYGON ((9.5 24, 9.5 23.5, 9 23.5, 9 24, 9.5 24))" +"POLYGON ((10 24, 10 23.5, 9.5 23.5, 9.5 24, 10 24))" +"POLYGON ((10.5 24, 10.5 23.5, 10 23.5, 10 24, 10.5 24))" +"POLYGON ((11 24, 11 23.5, 10.5 23.5, 10.5 24, 11 24))" +"POLYGON ((11.5 24, 11.5 23.5, 11 23.5, 11 24, 11.5 24))" +"POLYGON ((12 24, 12 23.5, 11.5 23.5, 11.5 24, 12 24))" +"POLYGON ((12.5 24, 12.5 23.5, 12 23.5, 12 24, 12.5 24))" +"POLYGON ((13 24, 13 23.5, 12.5 23.5, 12.5 24, 13 24))" +"POLYGON ((13.5 24, 13.5 23.5, 13 23.5, 13 24, 13.5 24))" +"POLYGON ((14 24, 14 23.5, 13.5 23.5, 13.5 24, 14 24))" +"POLYGON ((14.5 24, 14.5 23.5, 14 23.5, 14 24, 14.5 24))" +"POLYGON ((15 24, 15 23.5, 14.5 23.5, 14.5 24, 15 24))" +"POLYGON ((15.5 24, 15.5 23.5, 15 23.5, 15 24, 15.5 24))" +"POLYGON ((16 24, 16 23.5, 15.5 23.5, 15.5 24, 16 24))" +"POLYGON ((16.5 24, 16.5 23.5, 16 23.5, 16 24, 16.5 24))" +"POLYGON ((17 24, 17 23.5, 16.5 23.5, 16.5 24, 17 24))" +"POLYGON ((17.5 24, 17.5 23.5, 17 23.5, 17 24, 17.5 24))" +"POLYGON ((18 24, 18 23.5, 17.5 23.5, 17.5 24, 18 24))" +"POLYGON ((18.5 24, 18.5 23.5, 18 23.5, 18 24, 18.5 24))" +"POLYGON ((19 24, 19 23.5, 18.5 23.5, 18.5 24, 19 24))" +"POLYGON ((19.5 24, 19.5 23.5, 19 23.5, 19 24, 19.5 24))" +"POLYGON ((20 24, 20 23.5, 19.5 23.5, 19.5 24, 20 24))" +"POLYGON ((20.5 24, 20.5 23.5, 20 23.5, 20 24, 20.5 24))" +"POLYGON ((21 24, 21 23.5, 20.5 23.5, 20.5 24, 21 24))" +"POLYGON ((21.5 24, 21.5 23.5, 21 23.5, 21 24, 21.5 24))" +"POLYGON ((22 24, 22 23.5, 21.5 23.5, 21.5 24, 22 24))" +"POLYGON ((22.5 24, 22.5 23.5, 22 23.5, 22 24, 22.5 24))" +"POLYGON ((23 24, 23 23.5, 22.5 23.5, 22.5 24, 23 24))" +"POLYGON ((23.5 24, 23.5 23.5, 23 23.5, 23 24, 23.5 24))" +"POLYGON ((24 24, 24 23.5, 23.5 23.5, 23.5 24, 24 24))" +"POLYGON ((24.5 24, 24.5 23.5, 24 23.5, 24 24, 24.5 24))" +"POLYGON ((25 24, 25 23.5, 24.5 23.5, 24.5 24, 25 24))" +"POLYGON ((25.5 24, 25.5 23.5, 25 23.5, 25 24, 25.5 24))" +"POLYGON ((26 24, 26 23.5, 25.5 23.5, 25.5 24, 26 24))" +"POLYGON ((26.5 24, 26.5 23.5, 26 23.5, 26 24, 26.5 24))" +"POLYGON ((27 24, 27 23.5, 26.5 23.5, 26.5 24, 27 24))" +"POLYGON ((27.5 24, 27.5 23.5, 27 23.5, 27 24, 27.5 24))" +"POLYGON ((28 24, 28 23.5, 27.5 23.5, 27.5 24, 28 24))" +"POLYGON ((28.5 24, 28.5 23.5, 28 23.5, 28 24, 28.5 24))" +"POLYGON ((29 24, 29 23.5, 28.5 23.5, 28.5 24, 29 24))" +"POLYGON ((29.5 24, 29.5 23.5, 29 23.5, 29 24, 29.5 24))" +"POLYGON ((30 24, 30 23.5, 29.5 23.5, 29.5 24, 30 24))" +"POLYGON ((30.5 24, 30.5 23.5, 30 23.5, 30 24, 30.5 24))" +"POLYGON ((31 24, 31 23.5, 30.5 23.5, 30.5 24, 31 24))" +"POLYGON ((31.5 24, 31.5 23.5, 31 23.5, 31 24, 31.5 24))" +"POLYGON ((32 24, 32 23.5, 31.5 23.5, 31.5 24, 32 24))" +"POLYGON ((32.5 24, 32.5 23.5, 32 23.5, 32 24, 32.5 24))" +"POLYGON ((33 24, 33 23.5, 32.5 23.5, 32.5 24, 33 24))" +"POLYGON ((33.5 24, 33.5 23.5, 33 23.5, 33 24, 33.5 24))" +"POLYGON ((34 24, 34 23.5, 33.5 23.5, 33.5 24, 34 24))" +"POLYGON ((34.5 24, 34.5 23.5, 34 23.5, 34 24, 34.5 24))" +"POLYGON ((35 24, 35 23.5, 34.5 23.5, 34.5 24, 35 24))" +"POLYGON ((35.5 24, 35.5 23.5, 35 23.5, 35 24, 35.5 24))" +"POLYGON ((-15 24.5, -15 24, -15.5 24, -15.5 24.5, -15 24.5))" +"POLYGON ((-14.5 24.5, -14.5 24, -15 24, -15 24.5, -14.5 24.5))" +"POLYGON ((-14 24.5, -14 24, -14.5 24, -14.5 24.5, -14 24.5))" +"POLYGON ((-13.5 24.5, -13.5 24, -14 24, -14 24.5, -13.5 24.5))" +"POLYGON ((-13 24.5, -13 24, -13.5 24, -13.5 24.5, -13 24.5))" +"POLYGON ((-12.5 24.5, -12.5 24, -13 24, -13 24.5, -12.5 24.5))" +"POLYGON ((-12 24.5, -12 24, -12.5 24, -12.5 24.5, -12 24.5))" +"POLYGON ((-11.5 24.5, -11.5 24, -12 24, -12 24.5, -11.5 24.5))" +"POLYGON ((-11 24.5, -11 24, -11.5 24, -11.5 24.5, -11 24.5))" +"POLYGON ((-10.5 24.5, -10.5 24, -11 24, -11 24.5, -10.5 24.5))" +"POLYGON ((-10 24.5, -10 24, -10.5 24, -10.5 24.5, -10 24.5))" +"POLYGON ((-9.5 24.5, -9.5 24, -10 24, -10 24.5, -9.5 24.5))" +"POLYGON ((-9 24.5, -9 24, -9.5 24, -9.5 24.5, -9 24.5))" +"POLYGON ((-8.5 24.5, -8.5 24, -9 24, -9 24.5, -8.5 24.5))" +"POLYGON ((-8 24.5, -8 24, -8.5 24, -8.5 24.5, -8 24.5))" +"POLYGON ((-7.5 24.5, -7.5 24, -8 24, -8 24.5, -7.5 24.5))" +"POLYGON ((-7 24.5, -7 24, -7.5 24, -7.5 24.5, -7 24.5))" +"POLYGON ((-6.5 24.5, -6.5 24, -7 24, -7 24.5, -6.5 24.5))" +"POLYGON ((-6 24.5, -6 24, -6.5 24, -6.5 24.5, -6 24.5))" +"POLYGON ((-5.5 24.5, -5.5 24, -6 24, -6 24.5, -5.5 24.5))" +"POLYGON ((-5 24.5, -5 24, -5.5 24, -5.5 24.5, -5 24.5))" +"POLYGON ((-4.5 24.5, -4.5 24, -5 24, -5 24.5, -4.5 24.5))" +"POLYGON ((-4 24.5, -4 24, -4.5 24, -4.5 24.5, -4 24.5))" +"POLYGON ((-3.5 24.5, -3.5 24, -4 24, -4 24.5, -3.5 24.5))" +"POLYGON ((-3 24.5, -3 24, -3.5 24, -3.5 24.5, -3 24.5))" +"POLYGON ((-2.5 24.5, -2.5 24, -3 24, -3 24.5, -2.5 24.5))" +"POLYGON ((-2 24.5, -2 24, -2.5 24, -2.5 24.5, -2 24.5))" +"POLYGON ((-1.5 24.5, -1.5 24, -2 24, -2 24.5, -1.5 24.5))" +"POLYGON ((-1 24.5, -1 24, -1.5 24, -1.5 24.5, -1 24.5))" +"POLYGON ((-0.5 24.5, -0.5 24, -1 24, -1 24.5, -0.5 24.5))" +"POLYGON ((0 24.5, 0 24, -0.5 24, -0.5 24.5, 0 24.5))" +"POLYGON ((0.5 24.5, 0.5 24, 0 24, 0 24.5, 0.5 24.5))" +"POLYGON ((1 24.5, 1 24, 0.5 24, 0.5 24.5, 1 24.5))" +"POLYGON ((1.5 24.5, 1.5 24, 1 24, 1 24.5, 1.5 24.5))" +"POLYGON ((2 24.5, 2 24, 1.5 24, 1.5 24.5, 2 24.5))" +"POLYGON ((2.5 24.5, 2.5 24, 2 24, 2 24.5, 2.5 24.5))" +"POLYGON ((3 24.5, 3 24, 2.5 24, 2.5 24.5, 3 24.5))" +"POLYGON ((3.5 24.5, 3.5 24, 3 24, 3 24.5, 3.5 24.5))" +"POLYGON ((4 24.5, 4 24, 3.5 24, 3.5 24.5, 4 24.5))" +"POLYGON ((4.5 24.5, 4.5 24, 4 24, 4 24.5, 4.5 24.5))" +"POLYGON ((5 24.5, 5 24, 4.5 24, 4.5 24.5, 5 24.5))" +"POLYGON ((5.5 24.5, 5.5 24, 5 24, 5 24.5, 5.5 24.5))" +"POLYGON ((6 24.5, 6 24, 5.5 24, 5.5 24.5, 6 24.5))" +"POLYGON ((6.5 24.5, 6.5 24, 6 24, 6 24.5, 6.5 24.5))" +"POLYGON ((7 24.5, 7 24, 6.5 24, 6.5 24.5, 7 24.5))" +"POLYGON ((7.5 24.5, 7.5 24, 7 24, 7 24.5, 7.5 24.5))" +"POLYGON ((8 24.5, 8 24, 7.5 24, 7.5 24.5, 8 24.5))" +"POLYGON ((8.5 24.5, 8.5 24, 8 24, 8 24.5, 8.5 24.5))" +"POLYGON ((9 24.5, 9 24, 8.5 24, 8.5 24.5, 9 24.5))" +"POLYGON ((9.5 24.5, 9.5 24, 9 24, 9 24.5, 9.5 24.5))" +"POLYGON ((10 24.5, 10 24, 9.5 24, 9.5 24.5, 10 24.5))" +"POLYGON ((10.5 24.5, 10.5 24, 10 24, 10 24.5, 10.5 24.5))" +"POLYGON ((11 24.5, 11 24, 10.5 24, 10.5 24.5, 11 24.5))" +"POLYGON ((11.5 24.5, 11.5 24, 11 24, 11 24.5, 11.5 24.5))" +"POLYGON ((12 24.5, 12 24, 11.5 24, 11.5 24.5, 12 24.5))" +"POLYGON ((12.5 24.5, 12.5 24, 12 24, 12 24.5, 12.5 24.5))" +"POLYGON ((13 24.5, 13 24, 12.5 24, 12.5 24.5, 13 24.5))" +"POLYGON ((13.5 24.5, 13.5 24, 13 24, 13 24.5, 13.5 24.5))" +"POLYGON ((14 24.5, 14 24, 13.5 24, 13.5 24.5, 14 24.5))" +"POLYGON ((14.5 24.5, 14.5 24, 14 24, 14 24.5, 14.5 24.5))" +"POLYGON ((15 24.5, 15 24, 14.5 24, 14.5 24.5, 15 24.5))" +"POLYGON ((15.5 24.5, 15.5 24, 15 24, 15 24.5, 15.5 24.5))" +"POLYGON ((16 24.5, 16 24, 15.5 24, 15.5 24.5, 16 24.5))" +"POLYGON ((16.5 24.5, 16.5 24, 16 24, 16 24.5, 16.5 24.5))" +"POLYGON ((17 24.5, 17 24, 16.5 24, 16.5 24.5, 17 24.5))" +"POLYGON ((17.5 24.5, 17.5 24, 17 24, 17 24.5, 17.5 24.5))" +"POLYGON ((18 24.5, 18 24, 17.5 24, 17.5 24.5, 18 24.5))" +"POLYGON ((18.5 24.5, 18.5 24, 18 24, 18 24.5, 18.5 24.5))" +"POLYGON ((19 24.5, 19 24, 18.5 24, 18.5 24.5, 19 24.5))" +"POLYGON ((19.5 24.5, 19.5 24, 19 24, 19 24.5, 19.5 24.5))" +"POLYGON ((20 24.5, 20 24, 19.5 24, 19.5 24.5, 20 24.5))" +"POLYGON ((20.5 24.5, 20.5 24, 20 24, 20 24.5, 20.5 24.5))" +"POLYGON ((21 24.5, 21 24, 20.5 24, 20.5 24.5, 21 24.5))" +"POLYGON ((21.5 24.5, 21.5 24, 21 24, 21 24.5, 21.5 24.5))" +"POLYGON ((22 24.5, 22 24, 21.5 24, 21.5 24.5, 22 24.5))" +"POLYGON ((22.5 24.5, 22.5 24, 22 24, 22 24.5, 22.5 24.5))" +"POLYGON ((23 24.5, 23 24, 22.5 24, 22.5 24.5, 23 24.5))" +"POLYGON ((23.5 24.5, 23.5 24, 23 24, 23 24.5, 23.5 24.5))" +"POLYGON ((24 24.5, 24 24, 23.5 24, 23.5 24.5, 24 24.5))" +"POLYGON ((24.5 24.5, 24.5 24, 24 24, 24 24.5, 24.5 24.5))" +"POLYGON ((25 24.5, 25 24, 24.5 24, 24.5 24.5, 25 24.5))" +"POLYGON ((25.5 24.5, 25.5 24, 25 24, 25 24.5, 25.5 24.5))" +"POLYGON ((26 24.5, 26 24, 25.5 24, 25.5 24.5, 26 24.5))" +"POLYGON ((26.5 24.5, 26.5 24, 26 24, 26 24.5, 26.5 24.5))" +"POLYGON ((27 24.5, 27 24, 26.5 24, 26.5 24.5, 27 24.5))" +"POLYGON ((27.5 24.5, 27.5 24, 27 24, 27 24.5, 27.5 24.5))" +"POLYGON ((28 24.5, 28 24, 27.5 24, 27.5 24.5, 28 24.5))" +"POLYGON ((28.5 24.5, 28.5 24, 28 24, 28 24.5, 28.5 24.5))" +"POLYGON ((29 24.5, 29 24, 28.5 24, 28.5 24.5, 29 24.5))" +"POLYGON ((29.5 24.5, 29.5 24, 29 24, 29 24.5, 29.5 24.5))" +"POLYGON ((30 24.5, 30 24, 29.5 24, 29.5 24.5, 30 24.5))" +"POLYGON ((30.5 24.5, 30.5 24, 30 24, 30 24.5, 30.5 24.5))" +"POLYGON ((31 24.5, 31 24, 30.5 24, 30.5 24.5, 31 24.5))" +"POLYGON ((31.5 24.5, 31.5 24, 31 24, 31 24.5, 31.5 24.5))" +"POLYGON ((32 24.5, 32 24, 31.5 24, 31.5 24.5, 32 24.5))" +"POLYGON ((32.5 24.5, 32.5 24, 32 24, 32 24.5, 32.5 24.5))" +"POLYGON ((33 24.5, 33 24, 32.5 24, 32.5 24.5, 33 24.5))" +"POLYGON ((33.5 24.5, 33.5 24, 33 24, 33 24.5, 33.5 24.5))" +"POLYGON ((34 24.5, 34 24, 33.5 24, 33.5 24.5, 34 24.5))" +"POLYGON ((34.5 24.5, 34.5 24, 34 24, 34 24.5, 34.5 24.5))" +"POLYGON ((35 24.5, 35 24, 34.5 24, 34.5 24.5, 35 24.5))" +"POLYGON ((35.5 24.5, 35.5 24, 35 24, 35 24.5, 35.5 24.5))" +"POLYGON ((-14.5 25, -14.5 24.5, -15 24.5, -15 25, -14.5 25))" +"POLYGON ((-14 25, -14 24.5, -14.5 24.5, -14.5 25, -14 25))" +"POLYGON ((-13.5 25, -13.5 24.5, -14 24.5, -14 25, -13.5 25))" +"POLYGON ((-13 25, -13 24.5, -13.5 24.5, -13.5 25, -13 25))" +"POLYGON ((-12.5 25, -12.5 24.5, -13 24.5, -13 25, -12.5 25))" +"POLYGON ((-12 25, -12 24.5, -12.5 24.5, -12.5 25, -12 25))" +"POLYGON ((-11.5 25, -11.5 24.5, -12 24.5, -12 25, -11.5 25))" +"POLYGON ((-11 25, -11 24.5, -11.5 24.5, -11.5 25, -11 25))" +"POLYGON ((-10.5 25, -10.5 24.5, -11 24.5, -11 25, -10.5 25))" +"POLYGON ((-10 25, -10 24.5, -10.5 24.5, -10.5 25, -10 25))" +"POLYGON ((-9.5 25, -9.5 24.5, -10 24.5, -10 25, -9.5 25))" +"POLYGON ((-9 25, -9 24.5, -9.5 24.5, -9.5 25, -9 25))" +"POLYGON ((-8.5 25, -8.5 24.5, -9 24.5, -9 25, -8.5 25))" +"POLYGON ((-8 25, -8 24.5, -8.5 24.5, -8.5 25, -8 25))" +"POLYGON ((-7.5 25, -7.5 24.5, -8 24.5, -8 25, -7.5 25))" +"POLYGON ((-7 25, -7 24.5, -7.5 24.5, -7.5 25, -7 25))" +"POLYGON ((-6.5 25, -6.5 24.5, -7 24.5, -7 25, -6.5 25))" +"POLYGON ((-6 25, -6 24.5, -6.5 24.5, -6.5 25, -6 25))" +"POLYGON ((-5.5 25, -5.5 24.5, -6 24.5, -6 25, -5.5 25))" +"POLYGON ((-5 25, -5 24.5, -5.5 24.5, -5.5 25, -5 25))" +"POLYGON ((-4.5 25, -4.5 24.5, -5 24.5, -5 25, -4.5 25))" +"POLYGON ((-4 25, -4 24.5, -4.5 24.5, -4.5 25, -4 25))" +"POLYGON ((-3.5 25, -3.5 24.5, -4 24.5, -4 25, -3.5 25))" +"POLYGON ((-3 25, -3 24.5, -3.5 24.5, -3.5 25, -3 25))" +"POLYGON ((-2.5 25, -2.5 24.5, -3 24.5, -3 25, -2.5 25))" +"POLYGON ((-2 25, -2 24.5, -2.5 24.5, -2.5 25, -2 25))" +"POLYGON ((-1.5 25, -1.5 24.5, -2 24.5, -2 25, -1.5 25))" +"POLYGON ((-1 25, -1 24.5, -1.5 24.5, -1.5 25, -1 25))" +"POLYGON ((-0.5 25, -0.5 24.5, -1 24.5, -1 25, -0.5 25))" +"POLYGON ((0 25, 0 24.5, -0.5 24.5, -0.5 25, 0 25))" +"POLYGON ((0.5 25, 0.5 24.5, 0 24.5, 0 25, 0.5 25))" +"POLYGON ((1 25, 1 24.5, 0.5 24.5, 0.5 25, 1 25))" +"POLYGON ((1.5 25, 1.5 24.5, 1 24.5, 1 25, 1.5 25))" +"POLYGON ((2 25, 2 24.5, 1.5 24.5, 1.5 25, 2 25))" +"POLYGON ((2.5 25, 2.5 24.5, 2 24.5, 2 25, 2.5 25))" +"POLYGON ((3 25, 3 24.5, 2.5 24.5, 2.5 25, 3 25))" +"POLYGON ((3.5 25, 3.5 24.5, 3 24.5, 3 25, 3.5 25))" +"POLYGON ((4 25, 4 24.5, 3.5 24.5, 3.5 25, 4 25))" +"POLYGON ((4.5 25, 4.5 24.5, 4 24.5, 4 25, 4.5 25))" +"POLYGON ((5 25, 5 24.5, 4.5 24.5, 4.5 25, 5 25))" +"POLYGON ((5.5 25, 5.5 24.5, 5 24.5, 5 25, 5.5 25))" +"POLYGON ((6 25, 6 24.5, 5.5 24.5, 5.5 25, 6 25))" +"POLYGON ((6.5 25, 6.5 24.5, 6 24.5, 6 25, 6.5 25))" +"POLYGON ((7 25, 7 24.5, 6.5 24.5, 6.5 25, 7 25))" +"POLYGON ((7.5 25, 7.5 24.5, 7 24.5, 7 25, 7.5 25))" +"POLYGON ((8 25, 8 24.5, 7.5 24.5, 7.5 25, 8 25))" +"POLYGON ((8.5 25, 8.5 24.5, 8 24.5, 8 25, 8.5 25))" +"POLYGON ((9 25, 9 24.5, 8.5 24.5, 8.5 25, 9 25))" +"POLYGON ((9.5 25, 9.5 24.5, 9 24.5, 9 25, 9.5 25))" +"POLYGON ((10 25, 10 24.5, 9.5 24.5, 9.5 25, 10 25))" +"POLYGON ((10.5 25, 10.5 24.5, 10 24.5, 10 25, 10.5 25))" +"POLYGON ((11 25, 11 24.5, 10.5 24.5, 10.5 25, 11 25))" +"POLYGON ((11.5 25, 11.5 24.5, 11 24.5, 11 25, 11.5 25))" +"POLYGON ((12 25, 12 24.5, 11.5 24.5, 11.5 25, 12 25))" +"POLYGON ((12.5 25, 12.5 24.5, 12 24.5, 12 25, 12.5 25))" +"POLYGON ((13 25, 13 24.5, 12.5 24.5, 12.5 25, 13 25))" +"POLYGON ((13.5 25, 13.5 24.5, 13 24.5, 13 25, 13.5 25))" +"POLYGON ((14 25, 14 24.5, 13.5 24.5, 13.5 25, 14 25))" +"POLYGON ((14.5 25, 14.5 24.5, 14 24.5, 14 25, 14.5 25))" +"POLYGON ((15 25, 15 24.5, 14.5 24.5, 14.5 25, 15 25))" +"POLYGON ((15.5 25, 15.5 24.5, 15 24.5, 15 25, 15.5 25))" +"POLYGON ((16 25, 16 24.5, 15.5 24.5, 15.5 25, 16 25))" +"POLYGON ((16.5 25, 16.5 24.5, 16 24.5, 16 25, 16.5 25))" +"POLYGON ((17 25, 17 24.5, 16.5 24.5, 16.5 25, 17 25))" +"POLYGON ((17.5 25, 17.5 24.5, 17 24.5, 17 25, 17.5 25))" +"POLYGON ((18 25, 18 24.5, 17.5 24.5, 17.5 25, 18 25))" +"POLYGON ((18.5 25, 18.5 24.5, 18 24.5, 18 25, 18.5 25))" +"POLYGON ((19 25, 19 24.5, 18.5 24.5, 18.5 25, 19 25))" +"POLYGON ((19.5 25, 19.5 24.5, 19 24.5, 19 25, 19.5 25))" +"POLYGON ((20 25, 20 24.5, 19.5 24.5, 19.5 25, 20 25))" +"POLYGON ((20.5 25, 20.5 24.5, 20 24.5, 20 25, 20.5 25))" +"POLYGON ((21 25, 21 24.5, 20.5 24.5, 20.5 25, 21 25))" +"POLYGON ((21.5 25, 21.5 24.5, 21 24.5, 21 25, 21.5 25))" +"POLYGON ((22 25, 22 24.5, 21.5 24.5, 21.5 25, 22 25))" +"POLYGON ((22.5 25, 22.5 24.5, 22 24.5, 22 25, 22.5 25))" +"POLYGON ((23 25, 23 24.5, 22.5 24.5, 22.5 25, 23 25))" +"POLYGON ((23.5 25, 23.5 24.5, 23 24.5, 23 25, 23.5 25))" +"POLYGON ((24 25, 24 24.5, 23.5 24.5, 23.5 25, 24 25))" +"POLYGON ((24.5 25, 24.5 24.5, 24 24.5, 24 25, 24.5 25))" +"POLYGON ((25 25, 25 24.5, 24.5 24.5, 24.5 25, 25 25))" +"POLYGON ((25.5 25, 25.5 24.5, 25 24.5, 25 25, 25.5 25))" +"POLYGON ((26 25, 26 24.5, 25.5 24.5, 25.5 25, 26 25))" +"POLYGON ((26.5 25, 26.5 24.5, 26 24.5, 26 25, 26.5 25))" +"POLYGON ((27 25, 27 24.5, 26.5 24.5, 26.5 25, 27 25))" +"POLYGON ((27.5 25, 27.5 24.5, 27 24.5, 27 25, 27.5 25))" +"POLYGON ((28 25, 28 24.5, 27.5 24.5, 27.5 25, 28 25))" +"POLYGON ((28.5 25, 28.5 24.5, 28 24.5, 28 25, 28.5 25))" +"POLYGON ((29 25, 29 24.5, 28.5 24.5, 28.5 25, 29 25))" +"POLYGON ((29.5 25, 29.5 24.5, 29 24.5, 29 25, 29.5 25))" +"POLYGON ((30 25, 30 24.5, 29.5 24.5, 29.5 25, 30 25))" +"POLYGON ((30.5 25, 30.5 24.5, 30 24.5, 30 25, 30.5 25))" +"POLYGON ((31 25, 31 24.5, 30.5 24.5, 30.5 25, 31 25))" +"POLYGON ((31.5 25, 31.5 24.5, 31 24.5, 31 25, 31.5 25))" +"POLYGON ((32 25, 32 24.5, 31.5 24.5, 31.5 25, 32 25))" +"POLYGON ((32.5 25, 32.5 24.5, 32 24.5, 32 25, 32.5 25))" +"POLYGON ((33 25, 33 24.5, 32.5 24.5, 32.5 25, 33 25))" +"POLYGON ((33.5 25, 33.5 24.5, 33 24.5, 33 25, 33.5 25))" +"POLYGON ((34 25, 34 24.5, 33.5 24.5, 33.5 25, 34 25))" +"POLYGON ((34.5 25, 34.5 24.5, 34 24.5, 34 25, 34.5 25))" +"POLYGON ((35 25, 35 24.5, 34.5 24.5, 34.5 25, 35 25))" +"POLYGON ((-14 25.5, -14 25, -14.5 25, -14.5 25.5, -14 25.5))" +"POLYGON ((-13.5 25.5, -13.5 25, -14 25, -14 25.5, -13.5 25.5))" +"POLYGON ((-13 25.5, -13 25, -13.5 25, -13.5 25.5, -13 25.5))" +"POLYGON ((-12.5 25.5, -12.5 25, -13 25, -13 25.5, -12.5 25.5))" +"POLYGON ((-12 25.5, -12 25, -12.5 25, -12.5 25.5, -12 25.5))" +"POLYGON ((-11.5 25.5, -11.5 25, -12 25, -12 25.5, -11.5 25.5))" +"POLYGON ((-11 25.5, -11 25, -11.5 25, -11.5 25.5, -11 25.5))" +"POLYGON ((-10.5 25.5, -10.5 25, -11 25, -11 25.5, -10.5 25.5))" +"POLYGON ((-10 25.5, -10 25, -10.5 25, -10.5 25.5, -10 25.5))" +"POLYGON ((-9.5 25.5, -9.5 25, -10 25, -10 25.5, -9.5 25.5))" +"POLYGON ((-9 25.5, -9 25, -9.5 25, -9.5 25.5, -9 25.5))" +"POLYGON ((-8.5 25.5, -8.5 25, -9 25, -9 25.5, -8.5 25.5))" +"POLYGON ((-8 25.5, -8 25, -8.5 25, -8.5 25.5, -8 25.5))" +"POLYGON ((-7.5 25.5, -7.5 25, -8 25, -8 25.5, -7.5 25.5))" +"POLYGON ((-7 25.5, -7 25, -7.5 25, -7.5 25.5, -7 25.5))" +"POLYGON ((-6.5 25.5, -6.5 25, -7 25, -7 25.5, -6.5 25.5))" +"POLYGON ((-6 25.5, -6 25, -6.5 25, -6.5 25.5, -6 25.5))" +"POLYGON ((-5.5 25.5, -5.5 25, -6 25, -6 25.5, -5.5 25.5))" +"POLYGON ((-5 25.5, -5 25, -5.5 25, -5.5 25.5, -5 25.5))" +"POLYGON ((-4.5 25.5, -4.5 25, -5 25, -5 25.5, -4.5 25.5))" +"POLYGON ((-4 25.5, -4 25, -4.5 25, -4.5 25.5, -4 25.5))" +"POLYGON ((-3.5 25.5, -3.5 25, -4 25, -4 25.5, -3.5 25.5))" +"POLYGON ((-3 25.5, -3 25, -3.5 25, -3.5 25.5, -3 25.5))" +"POLYGON ((-2.5 25.5, -2.5 25, -3 25, -3 25.5, -2.5 25.5))" +"POLYGON ((-2 25.5, -2 25, -2.5 25, -2.5 25.5, -2 25.5))" +"POLYGON ((-1.5 25.5, -1.5 25, -2 25, -2 25.5, -1.5 25.5))" +"POLYGON ((-1 25.5, -1 25, -1.5 25, -1.5 25.5, -1 25.5))" +"POLYGON ((-0.5 25.5, -0.5 25, -1 25, -1 25.5, -0.5 25.5))" +"POLYGON ((0 25.5, 0 25, -0.5 25, -0.5 25.5, 0 25.5))" +"POLYGON ((0.5 25.5, 0.5 25, 0 25, 0 25.5, 0.5 25.5))" +"POLYGON ((1 25.5, 1 25, 0.5 25, 0.5 25.5, 1 25.5))" +"POLYGON ((1.5 25.5, 1.5 25, 1 25, 1 25.5, 1.5 25.5))" +"POLYGON ((2 25.5, 2 25, 1.5 25, 1.5 25.5, 2 25.5))" +"POLYGON ((2.5 25.5, 2.5 25, 2 25, 2 25.5, 2.5 25.5))" +"POLYGON ((3 25.5, 3 25, 2.5 25, 2.5 25.5, 3 25.5))" +"POLYGON ((3.5 25.5, 3.5 25, 3 25, 3 25.5, 3.5 25.5))" +"POLYGON ((4 25.5, 4 25, 3.5 25, 3.5 25.5, 4 25.5))" +"POLYGON ((4.5 25.5, 4.5 25, 4 25, 4 25.5, 4.5 25.5))" +"POLYGON ((5 25.5, 5 25, 4.5 25, 4.5 25.5, 5 25.5))" +"POLYGON ((5.5 25.5, 5.5 25, 5 25, 5 25.5, 5.5 25.5))" +"POLYGON ((6 25.5, 6 25, 5.5 25, 5.5 25.5, 6 25.5))" +"POLYGON ((6.5 25.5, 6.5 25, 6 25, 6 25.5, 6.5 25.5))" +"POLYGON ((7 25.5, 7 25, 6.5 25, 6.5 25.5, 7 25.5))" +"POLYGON ((7.5 25.5, 7.5 25, 7 25, 7 25.5, 7.5 25.5))" +"POLYGON ((8 25.5, 8 25, 7.5 25, 7.5 25.5, 8 25.5))" +"POLYGON ((8.5 25.5, 8.5 25, 8 25, 8 25.5, 8.5 25.5))" +"POLYGON ((9 25.5, 9 25, 8.5 25, 8.5 25.5, 9 25.5))" +"POLYGON ((9.5 25.5, 9.5 25, 9 25, 9 25.5, 9.5 25.5))" +"POLYGON ((10 25.5, 10 25, 9.5 25, 9.5 25.5, 10 25.5))" +"POLYGON ((10.5 25.5, 10.5 25, 10 25, 10 25.5, 10.5 25.5))" +"POLYGON ((11 25.5, 11 25, 10.5 25, 10.5 25.5, 11 25.5))" +"POLYGON ((11.5 25.5, 11.5 25, 11 25, 11 25.5, 11.5 25.5))" +"POLYGON ((12 25.5, 12 25, 11.5 25, 11.5 25.5, 12 25.5))" +"POLYGON ((12.5 25.5, 12.5 25, 12 25, 12 25.5, 12.5 25.5))" +"POLYGON ((13 25.5, 13 25, 12.5 25, 12.5 25.5, 13 25.5))" +"POLYGON ((13.5 25.5, 13.5 25, 13 25, 13 25.5, 13.5 25.5))" +"POLYGON ((14 25.5, 14 25, 13.5 25, 13.5 25.5, 14 25.5))" +"POLYGON ((14.5 25.5, 14.5 25, 14 25, 14 25.5, 14.5 25.5))" +"POLYGON ((15 25.5, 15 25, 14.5 25, 14.5 25.5, 15 25.5))" +"POLYGON ((15.5 25.5, 15.5 25, 15 25, 15 25.5, 15.5 25.5))" +"POLYGON ((16 25.5, 16 25, 15.5 25, 15.5 25.5, 16 25.5))" +"POLYGON ((16.5 25.5, 16.5 25, 16 25, 16 25.5, 16.5 25.5))" +"POLYGON ((17 25.5, 17 25, 16.5 25, 16.5 25.5, 17 25.5))" +"POLYGON ((17.5 25.5, 17.5 25, 17 25, 17 25.5, 17.5 25.5))" +"POLYGON ((18 25.5, 18 25, 17.5 25, 17.5 25.5, 18 25.5))" +"POLYGON ((18.5 25.5, 18.5 25, 18 25, 18 25.5, 18.5 25.5))" +"POLYGON ((19 25.5, 19 25, 18.5 25, 18.5 25.5, 19 25.5))" +"POLYGON ((19.5 25.5, 19.5 25, 19 25, 19 25.5, 19.5 25.5))" +"POLYGON ((20 25.5, 20 25, 19.5 25, 19.5 25.5, 20 25.5))" +"POLYGON ((20.5 25.5, 20.5 25, 20 25, 20 25.5, 20.5 25.5))" +"POLYGON ((21 25.5, 21 25, 20.5 25, 20.5 25.5, 21 25.5))" +"POLYGON ((21.5 25.5, 21.5 25, 21 25, 21 25.5, 21.5 25.5))" +"POLYGON ((22 25.5, 22 25, 21.5 25, 21.5 25.5, 22 25.5))" +"POLYGON ((22.5 25.5, 22.5 25, 22 25, 22 25.5, 22.5 25.5))" +"POLYGON ((23 25.5, 23 25, 22.5 25, 22.5 25.5, 23 25.5))" +"POLYGON ((23.5 25.5, 23.5 25, 23 25, 23 25.5, 23.5 25.5))" +"POLYGON ((24 25.5, 24 25, 23.5 25, 23.5 25.5, 24 25.5))" +"POLYGON ((24.5 25.5, 24.5 25, 24 25, 24 25.5, 24.5 25.5))" +"POLYGON ((25 25.5, 25 25, 24.5 25, 24.5 25.5, 25 25.5))" +"POLYGON ((25.5 25.5, 25.5 25, 25 25, 25 25.5, 25.5 25.5))" +"POLYGON ((26 25.5, 26 25, 25.5 25, 25.5 25.5, 26 25.5))" +"POLYGON ((26.5 25.5, 26.5 25, 26 25, 26 25.5, 26.5 25.5))" +"POLYGON ((27 25.5, 27 25, 26.5 25, 26.5 25.5, 27 25.5))" +"POLYGON ((27.5 25.5, 27.5 25, 27 25, 27 25.5, 27.5 25.5))" +"POLYGON ((28 25.5, 28 25, 27.5 25, 27.5 25.5, 28 25.5))" +"POLYGON ((28.5 25.5, 28.5 25, 28 25, 28 25.5, 28.5 25.5))" +"POLYGON ((29 25.5, 29 25, 28.5 25, 28.5 25.5, 29 25.5))" +"POLYGON ((29.5 25.5, 29.5 25, 29 25, 29 25.5, 29.5 25.5))" +"POLYGON ((30 25.5, 30 25, 29.5 25, 29.5 25.5, 30 25.5))" +"POLYGON ((30.5 25.5, 30.5 25, 30 25, 30 25.5, 30.5 25.5))" +"POLYGON ((31 25.5, 31 25, 30.5 25, 30.5 25.5, 31 25.5))" +"POLYGON ((31.5 25.5, 31.5 25, 31 25, 31 25.5, 31.5 25.5))" +"POLYGON ((32 25.5, 32 25, 31.5 25, 31.5 25.5, 32 25.5))" +"POLYGON ((32.5 25.5, 32.5 25, 32 25, 32 25.5, 32.5 25.5))" +"POLYGON ((33 25.5, 33 25, 32.5 25, 32.5 25.5, 33 25.5))" +"POLYGON ((33.5 25.5, 33.5 25, 33 25, 33 25.5, 33.5 25.5))" +"POLYGON ((34 25.5, 34 25, 33.5 25, 33.5 25.5, 34 25.5))" +"POLYGON ((34.5 25.5, 34.5 25, 34 25, 34 25.5, 34.5 25.5))" +"POLYGON ((-14 26, -14 25.5, -14.5 25.5, -14.5 26, -14 26))" +"POLYGON ((-13.5 26, -13.5 25.5, -14 25.5, -14 26, -13.5 26))" +"POLYGON ((-13 26, -13 25.5, -13.5 25.5, -13.5 26, -13 26))" +"POLYGON ((-12.5 26, -12.5 25.5, -13 25.5, -13 26, -12.5 26))" +"POLYGON ((-12 26, -12 25.5, -12.5 25.5, -12.5 26, -12 26))" +"POLYGON ((-11.5 26, -11.5 25.5, -12 25.5, -12 26, -11.5 26))" +"POLYGON ((-11 26, -11 25.5, -11.5 25.5, -11.5 26, -11 26))" +"POLYGON ((-10.5 26, -10.5 25.5, -11 25.5, -11 26, -10.5 26))" +"POLYGON ((-10 26, -10 25.5, -10.5 25.5, -10.5 26, -10 26))" +"POLYGON ((-9.5 26, -9.5 25.5, -10 25.5, -10 26, -9.5 26))" +"POLYGON ((-9 26, -9 25.5, -9.5 25.5, -9.5 26, -9 26))" +"POLYGON ((-8.5 26, -8.5 25.5, -9 25.5, -9 26, -8.5 26))" +"POLYGON ((-8 26, -8 25.5, -8.5 25.5, -8.5 26, -8 26))" +"POLYGON ((-7.5 26, -7.5 25.5, -8 25.5, -8 26, -7.5 26))" +"POLYGON ((-7 26, -7 25.5, -7.5 25.5, -7.5 26, -7 26))" +"POLYGON ((-6.5 26, -6.5 25.5, -7 25.5, -7 26, -6.5 26))" +"POLYGON ((-6 26, -6 25.5, -6.5 25.5, -6.5 26, -6 26))" +"POLYGON ((-5.5 26, -5.5 25.5, -6 25.5, -6 26, -5.5 26))" +"POLYGON ((-5 26, -5 25.5, -5.5 25.5, -5.5 26, -5 26))" +"POLYGON ((-4.5 26, -4.5 25.5, -5 25.5, -5 26, -4.5 26))" +"POLYGON ((-4 26, -4 25.5, -4.5 25.5, -4.5 26, -4 26))" +"POLYGON ((-3.5 26, -3.5 25.5, -4 25.5, -4 26, -3.5 26))" +"POLYGON ((-3 26, -3 25.5, -3.5 25.5, -3.5 26, -3 26))" +"POLYGON ((-2.5 26, -2.5 25.5, -3 25.5, -3 26, -2.5 26))" +"POLYGON ((-2 26, -2 25.5, -2.5 25.5, -2.5 26, -2 26))" +"POLYGON ((-1.5 26, -1.5 25.5, -2 25.5, -2 26, -1.5 26))" +"POLYGON ((-1 26, -1 25.5, -1.5 25.5, -1.5 26, -1 26))" +"POLYGON ((-0.5 26, -0.5 25.5, -1 25.5, -1 26, -0.5 26))" +"POLYGON ((0 26, 0 25.5, -0.5 25.5, -0.5 26, 0 26))" +"POLYGON ((0.5 26, 0.5 25.5, 0 25.5, 0 26, 0.5 26))" +"POLYGON ((1 26, 1 25.5, 0.5 25.5, 0.5 26, 1 26))" +"POLYGON ((1.5 26, 1.5 25.5, 1 25.5, 1 26, 1.5 26))" +"POLYGON ((2 26, 2 25.5, 1.5 25.5, 1.5 26, 2 26))" +"POLYGON ((2.5 26, 2.5 25.5, 2 25.5, 2 26, 2.5 26))" +"POLYGON ((3 26, 3 25.5, 2.5 25.5, 2.5 26, 3 26))" +"POLYGON ((3.5 26, 3.5 25.5, 3 25.5, 3 26, 3.5 26))" +"POLYGON ((4 26, 4 25.5, 3.5 25.5, 3.5 26, 4 26))" +"POLYGON ((4.5 26, 4.5 25.5, 4 25.5, 4 26, 4.5 26))" +"POLYGON ((5 26, 5 25.5, 4.5 25.5, 4.5 26, 5 26))" +"POLYGON ((5.5 26, 5.5 25.5, 5 25.5, 5 26, 5.5 26))" +"POLYGON ((6 26, 6 25.5, 5.5 25.5, 5.5 26, 6 26))" +"POLYGON ((6.5 26, 6.5 25.5, 6 25.5, 6 26, 6.5 26))" +"POLYGON ((7 26, 7 25.5, 6.5 25.5, 6.5 26, 7 26))" +"POLYGON ((7.5 26, 7.5 25.5, 7 25.5, 7 26, 7.5 26))" +"POLYGON ((8 26, 8 25.5, 7.5 25.5, 7.5 26, 8 26))" +"POLYGON ((8.5 26, 8.5 25.5, 8 25.5, 8 26, 8.5 26))" +"POLYGON ((9 26, 9 25.5, 8.5 25.5, 8.5 26, 9 26))" +"POLYGON ((9.5 26, 9.5 25.5, 9 25.5, 9 26, 9.5 26))" +"POLYGON ((10 26, 10 25.5, 9.5 25.5, 9.5 26, 10 26))" +"POLYGON ((10.5 26, 10.5 25.5, 10 25.5, 10 26, 10.5 26))" +"POLYGON ((11 26, 11 25.5, 10.5 25.5, 10.5 26, 11 26))" +"POLYGON ((11.5 26, 11.5 25.5, 11 25.5, 11 26, 11.5 26))" +"POLYGON ((12 26, 12 25.5, 11.5 25.5, 11.5 26, 12 26))" +"POLYGON ((12.5 26, 12.5 25.5, 12 25.5, 12 26, 12.5 26))" +"POLYGON ((13 26, 13 25.5, 12.5 25.5, 12.5 26, 13 26))" +"POLYGON ((13.5 26, 13.5 25.5, 13 25.5, 13 26, 13.5 26))" +"POLYGON ((14 26, 14 25.5, 13.5 25.5, 13.5 26, 14 26))" +"POLYGON ((14.5 26, 14.5 25.5, 14 25.5, 14 26, 14.5 26))" +"POLYGON ((15 26, 15 25.5, 14.5 25.5, 14.5 26, 15 26))" +"POLYGON ((15.5 26, 15.5 25.5, 15 25.5, 15 26, 15.5 26))" +"POLYGON ((16 26, 16 25.5, 15.5 25.5, 15.5 26, 16 26))" +"POLYGON ((16.5 26, 16.5 25.5, 16 25.5, 16 26, 16.5 26))" +"POLYGON ((17 26, 17 25.5, 16.5 25.5, 16.5 26, 17 26))" +"POLYGON ((17.5 26, 17.5 25.5, 17 25.5, 17 26, 17.5 26))" +"POLYGON ((18 26, 18 25.5, 17.5 25.5, 17.5 26, 18 26))" +"POLYGON ((18.5 26, 18.5 25.5, 18 25.5, 18 26, 18.5 26))" +"POLYGON ((19 26, 19 25.5, 18.5 25.5, 18.5 26, 19 26))" +"POLYGON ((19.5 26, 19.5 25.5, 19 25.5, 19 26, 19.5 26))" +"POLYGON ((20 26, 20 25.5, 19.5 25.5, 19.5 26, 20 26))" +"POLYGON ((20.5 26, 20.5 25.5, 20 25.5, 20 26, 20.5 26))" +"POLYGON ((21 26, 21 25.5, 20.5 25.5, 20.5 26, 21 26))" +"POLYGON ((21.5 26, 21.5 25.5, 21 25.5, 21 26, 21.5 26))" +"POLYGON ((22 26, 22 25.5, 21.5 25.5, 21.5 26, 22 26))" +"POLYGON ((22.5 26, 22.5 25.5, 22 25.5, 22 26, 22.5 26))" +"POLYGON ((23 26, 23 25.5, 22.5 25.5, 22.5 26, 23 26))" +"POLYGON ((23.5 26, 23.5 25.5, 23 25.5, 23 26, 23.5 26))" +"POLYGON ((24 26, 24 25.5, 23.5 25.5, 23.5 26, 24 26))" +"POLYGON ((24.5 26, 24.5 25.5, 24 25.5, 24 26, 24.5 26))" +"POLYGON ((25 26, 25 25.5, 24.5 25.5, 24.5 26, 25 26))" +"POLYGON ((25.5 26, 25.5 25.5, 25 25.5, 25 26, 25.5 26))" +"POLYGON ((26 26, 26 25.5, 25.5 25.5, 25.5 26, 26 26))" +"POLYGON ((26.5 26, 26.5 25.5, 26 25.5, 26 26, 26.5 26))" +"POLYGON ((27 26, 27 25.5, 26.5 25.5, 26.5 26, 27 26))" +"POLYGON ((27.5 26, 27.5 25.5, 27 25.5, 27 26, 27.5 26))" +"POLYGON ((28 26, 28 25.5, 27.5 25.5, 27.5 26, 28 26))" +"POLYGON ((28.5 26, 28.5 25.5, 28 25.5, 28 26, 28.5 26))" +"POLYGON ((29 26, 29 25.5, 28.5 25.5, 28.5 26, 29 26))" +"POLYGON ((29.5 26, 29.5 25.5, 29 25.5, 29 26, 29.5 26))" +"POLYGON ((30 26, 30 25.5, 29.5 25.5, 29.5 26, 30 26))" +"POLYGON ((30.5 26, 30.5 25.5, 30 25.5, 30 26, 30.5 26))" +"POLYGON ((31 26, 31 25.5, 30.5 25.5, 30.5 26, 31 26))" +"POLYGON ((31.5 26, 31.5 25.5, 31 25.5, 31 26, 31.5 26))" +"POLYGON ((32 26, 32 25.5, 31.5 25.5, 31.5 26, 32 26))" +"POLYGON ((32.5 26, 32.5 25.5, 32 25.5, 32 26, 32.5 26))" +"POLYGON ((33 26, 33 25.5, 32.5 25.5, 32.5 26, 33 26))" +"POLYGON ((33.5 26, 33.5 25.5, 33 25.5, 33 26, 33.5 26))" +"POLYGON ((34 26, 34 25.5, 33.5 25.5, 33.5 26, 34 26))" +"POLYGON ((34.5 26, 34.5 25.5, 34 25.5, 34 26, 34.5 26))" +"POLYGON ((-14 26.5, -14 26, -14.5 26, -14.5 26.5, -14 26.5))" +"POLYGON ((-13.5 26.5, -13.5 26, -14 26, -14 26.5, -13.5 26.5))" +"POLYGON ((-13 26.5, -13 26, -13.5 26, -13.5 26.5, -13 26.5))" +"POLYGON ((-12.5 26.5, -12.5 26, -13 26, -13 26.5, -12.5 26.5))" +"POLYGON ((-12 26.5, -12 26, -12.5 26, -12.5 26.5, -12 26.5))" +"POLYGON ((-11.5 26.5, -11.5 26, -12 26, -12 26.5, -11.5 26.5))" +"POLYGON ((-11 26.5, -11 26, -11.5 26, -11.5 26.5, -11 26.5))" +"POLYGON ((-10.5 26.5, -10.5 26, -11 26, -11 26.5, -10.5 26.5))" +"POLYGON ((-10 26.5, -10 26, -10.5 26, -10.5 26.5, -10 26.5))" +"POLYGON ((-9.5 26.5, -9.5 26, -10 26, -10 26.5, -9.5 26.5))" +"POLYGON ((-9 26.5, -9 26, -9.5 26, -9.5 26.5, -9 26.5))" +"POLYGON ((-8.5 26.5, -8.5 26, -9 26, -9 26.5, -8.5 26.5))" +"POLYGON ((-8 26.5, -8 26, -8.5 26, -8.5 26.5, -8 26.5))" +"POLYGON ((-7.5 26.5, -7.5 26, -8 26, -8 26.5, -7.5 26.5))" +"POLYGON ((-7 26.5, -7 26, -7.5 26, -7.5 26.5, -7 26.5))" +"POLYGON ((-6.5 26.5, -6.5 26, -7 26, -7 26.5, -6.5 26.5))" +"POLYGON ((-6 26.5, -6 26, -6.5 26, -6.5 26.5, -6 26.5))" +"POLYGON ((-5.5 26.5, -5.5 26, -6 26, -6 26.5, -5.5 26.5))" +"POLYGON ((-5 26.5, -5 26, -5.5 26, -5.5 26.5, -5 26.5))" +"POLYGON ((-4.5 26.5, -4.5 26, -5 26, -5 26.5, -4.5 26.5))" +"POLYGON ((-4 26.5, -4 26, -4.5 26, -4.5 26.5, -4 26.5))" +"POLYGON ((-3.5 26.5, -3.5 26, -4 26, -4 26.5, -3.5 26.5))" +"POLYGON ((-3 26.5, -3 26, -3.5 26, -3.5 26.5, -3 26.5))" +"POLYGON ((-2.5 26.5, -2.5 26, -3 26, -3 26.5, -2.5 26.5))" +"POLYGON ((-2 26.5, -2 26, -2.5 26, -2.5 26.5, -2 26.5))" +"POLYGON ((-1.5 26.5, -1.5 26, -2 26, -2 26.5, -1.5 26.5))" +"POLYGON ((-1 26.5, -1 26, -1.5 26, -1.5 26.5, -1 26.5))" +"POLYGON ((-0.5 26.5, -0.5 26, -1 26, -1 26.5, -0.5 26.5))" +"POLYGON ((0 26.5, 0 26, -0.5 26, -0.5 26.5, 0 26.5))" +"POLYGON ((0.5 26.5, 0.5 26, 0 26, 0 26.5, 0.5 26.5))" +"POLYGON ((1 26.5, 1 26, 0.5 26, 0.5 26.5, 1 26.5))" +"POLYGON ((1.5 26.5, 1.5 26, 1 26, 1 26.5, 1.5 26.5))" +"POLYGON ((2 26.5, 2 26, 1.5 26, 1.5 26.5, 2 26.5))" +"POLYGON ((2.5 26.5, 2.5 26, 2 26, 2 26.5, 2.5 26.5))" +"POLYGON ((3 26.5, 3 26, 2.5 26, 2.5 26.5, 3 26.5))" +"POLYGON ((3.5 26.5, 3.5 26, 3 26, 3 26.5, 3.5 26.5))" +"POLYGON ((4 26.5, 4 26, 3.5 26, 3.5 26.5, 4 26.5))" +"POLYGON ((4.5 26.5, 4.5 26, 4 26, 4 26.5, 4.5 26.5))" +"POLYGON ((5 26.5, 5 26, 4.5 26, 4.5 26.5, 5 26.5))" +"POLYGON ((5.5 26.5, 5.5 26, 5 26, 5 26.5, 5.5 26.5))" +"POLYGON ((6 26.5, 6 26, 5.5 26, 5.5 26.5, 6 26.5))" +"POLYGON ((6.5 26.5, 6.5 26, 6 26, 6 26.5, 6.5 26.5))" +"POLYGON ((7 26.5, 7 26, 6.5 26, 6.5 26.5, 7 26.5))" +"POLYGON ((7.5 26.5, 7.5 26, 7 26, 7 26.5, 7.5 26.5))" +"POLYGON ((8 26.5, 8 26, 7.5 26, 7.5 26.5, 8 26.5))" +"POLYGON ((8.5 26.5, 8.5 26, 8 26, 8 26.5, 8.5 26.5))" +"POLYGON ((9 26.5, 9 26, 8.5 26, 8.5 26.5, 9 26.5))" +"POLYGON ((9.5 26.5, 9.5 26, 9 26, 9 26.5, 9.5 26.5))" +"POLYGON ((10 26.5, 10 26, 9.5 26, 9.5 26.5, 10 26.5))" +"POLYGON ((10.5 26.5, 10.5 26, 10 26, 10 26.5, 10.5 26.5))" +"POLYGON ((11 26.5, 11 26, 10.5 26, 10.5 26.5, 11 26.5))" +"POLYGON ((11.5 26.5, 11.5 26, 11 26, 11 26.5, 11.5 26.5))" +"POLYGON ((12 26.5, 12 26, 11.5 26, 11.5 26.5, 12 26.5))" +"POLYGON ((12.5 26.5, 12.5 26, 12 26, 12 26.5, 12.5 26.5))" +"POLYGON ((13 26.5, 13 26, 12.5 26, 12.5 26.5, 13 26.5))" +"POLYGON ((13.5 26.5, 13.5 26, 13 26, 13 26.5, 13.5 26.5))" +"POLYGON ((14 26.5, 14 26, 13.5 26, 13.5 26.5, 14 26.5))" +"POLYGON ((14.5 26.5, 14.5 26, 14 26, 14 26.5, 14.5 26.5))" +"POLYGON ((15 26.5, 15 26, 14.5 26, 14.5 26.5, 15 26.5))" +"POLYGON ((15.5 26.5, 15.5 26, 15 26, 15 26.5, 15.5 26.5))" +"POLYGON ((16 26.5, 16 26, 15.5 26, 15.5 26.5, 16 26.5))" +"POLYGON ((16.5 26.5, 16.5 26, 16 26, 16 26.5, 16.5 26.5))" +"POLYGON ((17 26.5, 17 26, 16.5 26, 16.5 26.5, 17 26.5))" +"POLYGON ((17.5 26.5, 17.5 26, 17 26, 17 26.5, 17.5 26.5))" +"POLYGON ((18 26.5, 18 26, 17.5 26, 17.5 26.5, 18 26.5))" +"POLYGON ((18.5 26.5, 18.5 26, 18 26, 18 26.5, 18.5 26.5))" +"POLYGON ((19 26.5, 19 26, 18.5 26, 18.5 26.5, 19 26.5))" +"POLYGON ((19.5 26.5, 19.5 26, 19 26, 19 26.5, 19.5 26.5))" +"POLYGON ((20 26.5, 20 26, 19.5 26, 19.5 26.5, 20 26.5))" +"POLYGON ((20.5 26.5, 20.5 26, 20 26, 20 26.5, 20.5 26.5))" +"POLYGON ((21 26.5, 21 26, 20.5 26, 20.5 26.5, 21 26.5))" +"POLYGON ((21.5 26.5, 21.5 26, 21 26, 21 26.5, 21.5 26.5))" +"POLYGON ((22 26.5, 22 26, 21.5 26, 21.5 26.5, 22 26.5))" +"POLYGON ((22.5 26.5, 22.5 26, 22 26, 22 26.5, 22.5 26.5))" +"POLYGON ((23 26.5, 23 26, 22.5 26, 22.5 26.5, 23 26.5))" +"POLYGON ((23.5 26.5, 23.5 26, 23 26, 23 26.5, 23.5 26.5))" +"POLYGON ((24 26.5, 24 26, 23.5 26, 23.5 26.5, 24 26.5))" +"POLYGON ((24.5 26.5, 24.5 26, 24 26, 24 26.5, 24.5 26.5))" +"POLYGON ((25 26.5, 25 26, 24.5 26, 24.5 26.5, 25 26.5))" +"POLYGON ((25.5 26.5, 25.5 26, 25 26, 25 26.5, 25.5 26.5))" +"POLYGON ((26 26.5, 26 26, 25.5 26, 25.5 26.5, 26 26.5))" +"POLYGON ((26.5 26.5, 26.5 26, 26 26, 26 26.5, 26.5 26.5))" +"POLYGON ((27 26.5, 27 26, 26.5 26, 26.5 26.5, 27 26.5))" +"POLYGON ((27.5 26.5, 27.5 26, 27 26, 27 26.5, 27.5 26.5))" +"POLYGON ((28 26.5, 28 26, 27.5 26, 27.5 26.5, 28 26.5))" +"POLYGON ((28.5 26.5, 28.5 26, 28 26, 28 26.5, 28.5 26.5))" +"POLYGON ((29 26.5, 29 26, 28.5 26, 28.5 26.5, 29 26.5))" +"POLYGON ((29.5 26.5, 29.5 26, 29 26, 29 26.5, 29.5 26.5))" +"POLYGON ((30 26.5, 30 26, 29.5 26, 29.5 26.5, 30 26.5))" +"POLYGON ((30.5 26.5, 30.5 26, 30 26, 30 26.5, 30.5 26.5))" +"POLYGON ((31 26.5, 31 26, 30.5 26, 30.5 26.5, 31 26.5))" +"POLYGON ((31.5 26.5, 31.5 26, 31 26, 31 26.5, 31.5 26.5))" +"POLYGON ((32 26.5, 32 26, 31.5 26, 31.5 26.5, 32 26.5))" +"POLYGON ((32.5 26.5, 32.5 26, 32 26, 32 26.5, 32.5 26.5))" +"POLYGON ((33 26.5, 33 26, 32.5 26, 32.5 26.5, 33 26.5))" +"POLYGON ((33.5 26.5, 33.5 26, 33 26, 33 26.5, 33.5 26.5))" +"POLYGON ((34 26.5, 34 26, 33.5 26, 33.5 26.5, 34 26.5))" +"POLYGON ((-13 27, -13 26.5, -13.5 26.5, -13.5 27, -13 27))" +"POLYGON ((-12.5 27, -12.5 26.5, -13 26.5, -13 27, -12.5 27))" +"POLYGON ((-12 27, -12 26.5, -12.5 26.5, -12.5 27, -12 27))" +"POLYGON ((-11.5 27, -11.5 26.5, -12 26.5, -12 27, -11.5 27))" +"POLYGON ((-11 27, -11 26.5, -11.5 26.5, -11.5 27, -11 27))" +"POLYGON ((-10.5 27, -10.5 26.5, -11 26.5, -11 27, -10.5 27))" +"POLYGON ((-10 27, -10 26.5, -10.5 26.5, -10.5 27, -10 27))" +"POLYGON ((-9.5 27, -9.5 26.5, -10 26.5, -10 27, -9.5 27))" +"POLYGON ((-9 27, -9 26.5, -9.5 26.5, -9.5 27, -9 27))" +"POLYGON ((-8.5 27, -8.5 26.5, -9 26.5, -9 27, -8.5 27))" +"POLYGON ((-8 27, -8 26.5, -8.5 26.5, -8.5 27, -8 27))" +"POLYGON ((-7.5 27, -7.5 26.5, -8 26.5, -8 27, -7.5 27))" +"POLYGON ((-7 27, -7 26.5, -7.5 26.5, -7.5 27, -7 27))" +"POLYGON ((-6.5 27, -6.5 26.5, -7 26.5, -7 27, -6.5 27))" +"POLYGON ((-6 27, -6 26.5, -6.5 26.5, -6.5 27, -6 27))" +"POLYGON ((-5.5 27, -5.5 26.5, -6 26.5, -6 27, -5.5 27))" +"POLYGON ((-5 27, -5 26.5, -5.5 26.5, -5.5 27, -5 27))" +"POLYGON ((-4.5 27, -4.5 26.5, -5 26.5, -5 27, -4.5 27))" +"POLYGON ((-4 27, -4 26.5, -4.5 26.5, -4.5 27, -4 27))" +"POLYGON ((-3.5 27, -3.5 26.5, -4 26.5, -4 27, -3.5 27))" +"POLYGON ((-3 27, -3 26.5, -3.5 26.5, -3.5 27, -3 27))" +"POLYGON ((-2.5 27, -2.5 26.5, -3 26.5, -3 27, -2.5 27))" +"POLYGON ((-2 27, -2 26.5, -2.5 26.5, -2.5 27, -2 27))" +"POLYGON ((-1.5 27, -1.5 26.5, -2 26.5, -2 27, -1.5 27))" +"POLYGON ((-1 27, -1 26.5, -1.5 26.5, -1.5 27, -1 27))" +"POLYGON ((-0.5 27, -0.5 26.5, -1 26.5, -1 27, -0.5 27))" +"POLYGON ((0 27, 0 26.5, -0.5 26.5, -0.5 27, 0 27))" +"POLYGON ((0.5 27, 0.5 26.5, 0 26.5, 0 27, 0.5 27))" +"POLYGON ((1 27, 1 26.5, 0.5 26.5, 0.5 27, 1 27))" +"POLYGON ((1.5 27, 1.5 26.5, 1 26.5, 1 27, 1.5 27))" +"POLYGON ((2 27, 2 26.5, 1.5 26.5, 1.5 27, 2 27))" +"POLYGON ((2.5 27, 2.5 26.5, 2 26.5, 2 27, 2.5 27))" +"POLYGON ((3 27, 3 26.5, 2.5 26.5, 2.5 27, 3 27))" +"POLYGON ((3.5 27, 3.5 26.5, 3 26.5, 3 27, 3.5 27))" +"POLYGON ((4 27, 4 26.5, 3.5 26.5, 3.5 27, 4 27))" +"POLYGON ((4.5 27, 4.5 26.5, 4 26.5, 4 27, 4.5 27))" +"POLYGON ((5 27, 5 26.5, 4.5 26.5, 4.5 27, 5 27))" +"POLYGON ((5.5 27, 5.5 26.5, 5 26.5, 5 27, 5.5 27))" +"POLYGON ((6 27, 6 26.5, 5.5 26.5, 5.5 27, 6 27))" +"POLYGON ((6.5 27, 6.5 26.5, 6 26.5, 6 27, 6.5 27))" +"POLYGON ((7 27, 7 26.5, 6.5 26.5, 6.5 27, 7 27))" +"POLYGON ((7.5 27, 7.5 26.5, 7 26.5, 7 27, 7.5 27))" +"POLYGON ((8 27, 8 26.5, 7.5 26.5, 7.5 27, 8 27))" +"POLYGON ((8.5 27, 8.5 26.5, 8 26.5, 8 27, 8.5 27))" +"POLYGON ((9 27, 9 26.5, 8.5 26.5, 8.5 27, 9 27))" +"POLYGON ((9.5 27, 9.5 26.5, 9 26.5, 9 27, 9.5 27))" +"POLYGON ((10 27, 10 26.5, 9.5 26.5, 9.5 27, 10 27))" +"POLYGON ((10.5 27, 10.5 26.5, 10 26.5, 10 27, 10.5 27))" +"POLYGON ((11 27, 11 26.5, 10.5 26.5, 10.5 27, 11 27))" +"POLYGON ((11.5 27, 11.5 26.5, 11 26.5, 11 27, 11.5 27))" +"POLYGON ((12 27, 12 26.5, 11.5 26.5, 11.5 27, 12 27))" +"POLYGON ((12.5 27, 12.5 26.5, 12 26.5, 12 27, 12.5 27))" +"POLYGON ((13 27, 13 26.5, 12.5 26.5, 12.5 27, 13 27))" +"POLYGON ((13.5 27, 13.5 26.5, 13 26.5, 13 27, 13.5 27))" +"POLYGON ((14 27, 14 26.5, 13.5 26.5, 13.5 27, 14 27))" +"POLYGON ((14.5 27, 14.5 26.5, 14 26.5, 14 27, 14.5 27))" +"POLYGON ((15 27, 15 26.5, 14.5 26.5, 14.5 27, 15 27))" +"POLYGON ((15.5 27, 15.5 26.5, 15 26.5, 15 27, 15.5 27))" +"POLYGON ((16 27, 16 26.5, 15.5 26.5, 15.5 27, 16 27))" +"POLYGON ((16.5 27, 16.5 26.5, 16 26.5, 16 27, 16.5 27))" +"POLYGON ((17 27, 17 26.5, 16.5 26.5, 16.5 27, 17 27))" +"POLYGON ((17.5 27, 17.5 26.5, 17 26.5, 17 27, 17.5 27))" +"POLYGON ((18 27, 18 26.5, 17.5 26.5, 17.5 27, 18 27))" +"POLYGON ((18.5 27, 18.5 26.5, 18 26.5, 18 27, 18.5 27))" +"POLYGON ((19 27, 19 26.5, 18.5 26.5, 18.5 27, 19 27))" +"POLYGON ((19.5 27, 19.5 26.5, 19 26.5, 19 27, 19.5 27))" +"POLYGON ((20 27, 20 26.5, 19.5 26.5, 19.5 27, 20 27))" +"POLYGON ((20.5 27, 20.5 26.5, 20 26.5, 20 27, 20.5 27))" +"POLYGON ((21 27, 21 26.5, 20.5 26.5, 20.5 27, 21 27))" +"POLYGON ((21.5 27, 21.5 26.5, 21 26.5, 21 27, 21.5 27))" +"POLYGON ((22 27, 22 26.5, 21.5 26.5, 21.5 27, 22 27))" +"POLYGON ((22.5 27, 22.5 26.5, 22 26.5, 22 27, 22.5 27))" +"POLYGON ((23 27, 23 26.5, 22.5 26.5, 22.5 27, 23 27))" +"POLYGON ((23.5 27, 23.5 26.5, 23 26.5, 23 27, 23.5 27))" +"POLYGON ((24 27, 24 26.5, 23.5 26.5, 23.5 27, 24 27))" +"POLYGON ((24.5 27, 24.5 26.5, 24 26.5, 24 27, 24.5 27))" +"POLYGON ((25 27, 25 26.5, 24.5 26.5, 24.5 27, 25 27))" +"POLYGON ((25.5 27, 25.5 26.5, 25 26.5, 25 27, 25.5 27))" +"POLYGON ((26 27, 26 26.5, 25.5 26.5, 25.5 27, 26 27))" +"POLYGON ((26.5 27, 26.5 26.5, 26 26.5, 26 27, 26.5 27))" +"POLYGON ((27 27, 27 26.5, 26.5 26.5, 26.5 27, 27 27))" +"POLYGON ((27.5 27, 27.5 26.5, 27 26.5, 27 27, 27.5 27))" +"POLYGON ((28 27, 28 26.5, 27.5 26.5, 27.5 27, 28 27))" +"POLYGON ((28.5 27, 28.5 26.5, 28 26.5, 28 27, 28.5 27))" +"POLYGON ((29 27, 29 26.5, 28.5 26.5, 28.5 27, 29 27))" +"POLYGON ((29.5 27, 29.5 26.5, 29 26.5, 29 27, 29.5 27))" +"POLYGON ((30 27, 30 26.5, 29.5 26.5, 29.5 27, 30 27))" +"POLYGON ((30.5 27, 30.5 26.5, 30 26.5, 30 27, 30.5 27))" +"POLYGON ((31 27, 31 26.5, 30.5 26.5, 30.5 27, 31 27))" +"POLYGON ((31.5 27, 31.5 26.5, 31 26.5, 31 27, 31.5 27))" +"POLYGON ((32 27, 32 26.5, 31.5 26.5, 31.5 27, 32 27))" +"POLYGON ((32.5 27, 32.5 26.5, 32 26.5, 32 27, 32.5 27))" +"POLYGON ((33 27, 33 26.5, 32.5 26.5, 32.5 27, 33 27))" +"POLYGON ((33.5 27, 33.5 26.5, 33 26.5, 33 27, 33.5 27))" +"POLYGON ((34 27, 34 26.5, 33.5 26.5, 33.5 27, 34 27))" +"POLYGON ((-13 27.5, -13 27, -13.5 27, -13.5 27.5, -13 27.5))" +"POLYGON ((-12.5 27.5, -12.5 27, -13 27, -13 27.5, -12.5 27.5))" +"POLYGON ((-12 27.5, -12 27, -12.5 27, -12.5 27.5, -12 27.5))" +"POLYGON ((-11.5 27.5, -11.5 27, -12 27, -12 27.5, -11.5 27.5))" +"POLYGON ((-11 27.5, -11 27, -11.5 27, -11.5 27.5, -11 27.5))" +"POLYGON ((-10.5 27.5, -10.5 27, -11 27, -11 27.5, -10.5 27.5))" +"POLYGON ((-10 27.5, -10 27, -10.5 27, -10.5 27.5, -10 27.5))" +"POLYGON ((-9.5 27.5, -9.5 27, -10 27, -10 27.5, -9.5 27.5))" +"POLYGON ((-9 27.5, -9 27, -9.5 27, -9.5 27.5, -9 27.5))" +"POLYGON ((-8.5 27.5, -8.5 27, -9 27, -9 27.5, -8.5 27.5))" +"POLYGON ((-8 27.5, -8 27, -8.5 27, -8.5 27.5, -8 27.5))" +"POLYGON ((-7.5 27.5, -7.5 27, -8 27, -8 27.5, -7.5 27.5))" +"POLYGON ((-7 27.5, -7 27, -7.5 27, -7.5 27.5, -7 27.5))" +"POLYGON ((-6.5 27.5, -6.5 27, -7 27, -7 27.5, -6.5 27.5))" +"POLYGON ((-6 27.5, -6 27, -6.5 27, -6.5 27.5, -6 27.5))" +"POLYGON ((-5.5 27.5, -5.5 27, -6 27, -6 27.5, -5.5 27.5))" +"POLYGON ((-5 27.5, -5 27, -5.5 27, -5.5 27.5, -5 27.5))" +"POLYGON ((-4.5 27.5, -4.5 27, -5 27, -5 27.5, -4.5 27.5))" +"POLYGON ((-4 27.5, -4 27, -4.5 27, -4.5 27.5, -4 27.5))" +"POLYGON ((-3.5 27.5, -3.5 27, -4 27, -4 27.5, -3.5 27.5))" +"POLYGON ((-3 27.5, -3 27, -3.5 27, -3.5 27.5, -3 27.5))" +"POLYGON ((-2.5 27.5, -2.5 27, -3 27, -3 27.5, -2.5 27.5))" +"POLYGON ((-2 27.5, -2 27, -2.5 27, -2.5 27.5, -2 27.5))" +"POLYGON ((-1.5 27.5, -1.5 27, -2 27, -2 27.5, -1.5 27.5))" +"POLYGON ((-1 27.5, -1 27, -1.5 27, -1.5 27.5, -1 27.5))" +"POLYGON ((-0.5 27.5, -0.5 27, -1 27, -1 27.5, -0.5 27.5))" +"POLYGON ((0 27.5, 0 27, -0.5 27, -0.5 27.5, 0 27.5))" +"POLYGON ((0.5 27.5, 0.5 27, 0 27, 0 27.5, 0.5 27.5))" +"POLYGON ((1 27.5, 1 27, 0.5 27, 0.5 27.5, 1 27.5))" +"POLYGON ((1.5 27.5, 1.5 27, 1 27, 1 27.5, 1.5 27.5))" +"POLYGON ((2 27.5, 2 27, 1.5 27, 1.5 27.5, 2 27.5))" +"POLYGON ((2.5 27.5, 2.5 27, 2 27, 2 27.5, 2.5 27.5))" +"POLYGON ((3 27.5, 3 27, 2.5 27, 2.5 27.5, 3 27.5))" +"POLYGON ((3.5 27.5, 3.5 27, 3 27, 3 27.5, 3.5 27.5))" +"POLYGON ((4 27.5, 4 27, 3.5 27, 3.5 27.5, 4 27.5))" +"POLYGON ((4.5 27.5, 4.5 27, 4 27, 4 27.5, 4.5 27.5))" +"POLYGON ((5 27.5, 5 27, 4.5 27, 4.5 27.5, 5 27.5))" +"POLYGON ((5.5 27.5, 5.5 27, 5 27, 5 27.5, 5.5 27.5))" +"POLYGON ((6 27.5, 6 27, 5.5 27, 5.5 27.5, 6 27.5))" +"POLYGON ((6.5 27.5, 6.5 27, 6 27, 6 27.5, 6.5 27.5))" +"POLYGON ((7 27.5, 7 27, 6.5 27, 6.5 27.5, 7 27.5))" +"POLYGON ((7.5 27.5, 7.5 27, 7 27, 7 27.5, 7.5 27.5))" +"POLYGON ((8 27.5, 8 27, 7.5 27, 7.5 27.5, 8 27.5))" +"POLYGON ((8.5 27.5, 8.5 27, 8 27, 8 27.5, 8.5 27.5))" +"POLYGON ((9 27.5, 9 27, 8.5 27, 8.5 27.5, 9 27.5))" +"POLYGON ((9.5 27.5, 9.5 27, 9 27, 9 27.5, 9.5 27.5))" +"POLYGON ((10 27.5, 10 27, 9.5 27, 9.5 27.5, 10 27.5))" +"POLYGON ((10.5 27.5, 10.5 27, 10 27, 10 27.5, 10.5 27.5))" +"POLYGON ((11 27.5, 11 27, 10.5 27, 10.5 27.5, 11 27.5))" +"POLYGON ((11.5 27.5, 11.5 27, 11 27, 11 27.5, 11.5 27.5))" +"POLYGON ((12 27.5, 12 27, 11.5 27, 11.5 27.5, 12 27.5))" +"POLYGON ((12.5 27.5, 12.5 27, 12 27, 12 27.5, 12.5 27.5))" +"POLYGON ((13 27.5, 13 27, 12.5 27, 12.5 27.5, 13 27.5))" +"POLYGON ((13.5 27.5, 13.5 27, 13 27, 13 27.5, 13.5 27.5))" +"POLYGON ((14 27.5, 14 27, 13.5 27, 13.5 27.5, 14 27.5))" +"POLYGON ((14.5 27.5, 14.5 27, 14 27, 14 27.5, 14.5 27.5))" +"POLYGON ((15 27.5, 15 27, 14.5 27, 14.5 27.5, 15 27.5))" +"POLYGON ((15.5 27.5, 15.5 27, 15 27, 15 27.5, 15.5 27.5))" +"POLYGON ((16 27.5, 16 27, 15.5 27, 15.5 27.5, 16 27.5))" +"POLYGON ((16.5 27.5, 16.5 27, 16 27, 16 27.5, 16.5 27.5))" +"POLYGON ((17 27.5, 17 27, 16.5 27, 16.5 27.5, 17 27.5))" +"POLYGON ((17.5 27.5, 17.5 27, 17 27, 17 27.5, 17.5 27.5))" +"POLYGON ((18 27.5, 18 27, 17.5 27, 17.5 27.5, 18 27.5))" +"POLYGON ((18.5 27.5, 18.5 27, 18 27, 18 27.5, 18.5 27.5))" +"POLYGON ((19 27.5, 19 27, 18.5 27, 18.5 27.5, 19 27.5))" +"POLYGON ((19.5 27.5, 19.5 27, 19 27, 19 27.5, 19.5 27.5))" +"POLYGON ((20 27.5, 20 27, 19.5 27, 19.5 27.5, 20 27.5))" +"POLYGON ((20.5 27.5, 20.5 27, 20 27, 20 27.5, 20.5 27.5))" +"POLYGON ((21 27.5, 21 27, 20.5 27, 20.5 27.5, 21 27.5))" +"POLYGON ((21.5 27.5, 21.5 27, 21 27, 21 27.5, 21.5 27.5))" +"POLYGON ((22 27.5, 22 27, 21.5 27, 21.5 27.5, 22 27.5))" +"POLYGON ((22.5 27.5, 22.5 27, 22 27, 22 27.5, 22.5 27.5))" +"POLYGON ((23 27.5, 23 27, 22.5 27, 22.5 27.5, 23 27.5))" +"POLYGON ((23.5 27.5, 23.5 27, 23 27, 23 27.5, 23.5 27.5))" +"POLYGON ((24 27.5, 24 27, 23.5 27, 23.5 27.5, 24 27.5))" +"POLYGON ((24.5 27.5, 24.5 27, 24 27, 24 27.5, 24.5 27.5))" +"POLYGON ((25 27.5, 25 27, 24.5 27, 24.5 27.5, 25 27.5))" +"POLYGON ((25.5 27.5, 25.5 27, 25 27, 25 27.5, 25.5 27.5))" +"POLYGON ((26 27.5, 26 27, 25.5 27, 25.5 27.5, 26 27.5))" +"POLYGON ((26.5 27.5, 26.5 27, 26 27, 26 27.5, 26.5 27.5))" +"POLYGON ((27 27.5, 27 27, 26.5 27, 26.5 27.5, 27 27.5))" +"POLYGON ((27.5 27.5, 27.5 27, 27 27, 27 27.5, 27.5 27.5))" +"POLYGON ((28 27.5, 28 27, 27.5 27, 27.5 27.5, 28 27.5))" +"POLYGON ((28.5 27.5, 28.5 27, 28 27, 28 27.5, 28.5 27.5))" +"POLYGON ((29 27.5, 29 27, 28.5 27, 28.5 27.5, 29 27.5))" +"POLYGON ((29.5 27.5, 29.5 27, 29 27, 29 27.5, 29.5 27.5))" +"POLYGON ((30 27.5, 30 27, 29.5 27, 29.5 27.5, 30 27.5))" +"POLYGON ((30.5 27.5, 30.5 27, 30 27, 30 27.5, 30.5 27.5))" +"POLYGON ((31 27.5, 31 27, 30.5 27, 30.5 27.5, 31 27.5))" +"POLYGON ((31.5 27.5, 31.5 27, 31 27, 31 27.5, 31.5 27.5))" +"POLYGON ((32 27.5, 32 27, 31.5 27, 31.5 27.5, 32 27.5))" +"POLYGON ((32.5 27.5, 32.5 27, 32 27, 32 27.5, 32.5 27.5))" +"POLYGON ((33 27.5, 33 27, 32.5 27, 32.5 27.5, 33 27.5))" +"POLYGON ((33.5 27.5, 33.5 27, 33 27, 33 27.5, 33.5 27.5))" +"POLYGON ((34 27.5, 34 27, 33.5 27, 33.5 27.5, 34 27.5))" +"POLYGON ((-12.5 28, -12.5 27.5, -13 27.5, -13 28, -12.5 28))" +"POLYGON ((-12 28, -12 27.5, -12.5 27.5, -12.5 28, -12 28))" +"POLYGON ((-11.5 28, -11.5 27.5, -12 27.5, -12 28, -11.5 28))" +"POLYGON ((-11 28, -11 27.5, -11.5 27.5, -11.5 28, -11 28))" +"POLYGON ((-10.5 28, -10.5 27.5, -11 27.5, -11 28, -10.5 28))" +"POLYGON ((-10 28, -10 27.5, -10.5 27.5, -10.5 28, -10 28))" +"POLYGON ((-9.5 28, -9.5 27.5, -10 27.5, -10 28, -9.5 28))" +"POLYGON ((-9 28, -9 27.5, -9.5 27.5, -9.5 28, -9 28))" +"POLYGON ((-8.5 28, -8.5 27.5, -9 27.5, -9 28, -8.5 28))" +"POLYGON ((-8 28, -8 27.5, -8.5 27.5, -8.5 28, -8 28))" +"POLYGON ((-7.5 28, -7.5 27.5, -8 27.5, -8 28, -7.5 28))" +"POLYGON ((-7 28, -7 27.5, -7.5 27.5, -7.5 28, -7 28))" +"POLYGON ((-6.5 28, -6.5 27.5, -7 27.5, -7 28, -6.5 28))" +"POLYGON ((-6 28, -6 27.5, -6.5 27.5, -6.5 28, -6 28))" +"POLYGON ((-5.5 28, -5.5 27.5, -6 27.5, -6 28, -5.5 28))" +"POLYGON ((-5 28, -5 27.5, -5.5 27.5, -5.5 28, -5 28))" +"POLYGON ((-4.5 28, -4.5 27.5, -5 27.5, -5 28, -4.5 28))" +"POLYGON ((-4 28, -4 27.5, -4.5 27.5, -4.5 28, -4 28))" +"POLYGON ((-3.5 28, -3.5 27.5, -4 27.5, -4 28, -3.5 28))" +"POLYGON ((-3 28, -3 27.5, -3.5 27.5, -3.5 28, -3 28))" +"POLYGON ((-2.5 28, -2.5 27.5, -3 27.5, -3 28, -2.5 28))" +"POLYGON ((-2 28, -2 27.5, -2.5 27.5, -2.5 28, -2 28))" +"POLYGON ((-1.5 28, -1.5 27.5, -2 27.5, -2 28, -1.5 28))" +"POLYGON ((-1 28, -1 27.5, -1.5 27.5, -1.5 28, -1 28))" +"POLYGON ((-0.5 28, -0.5 27.5, -1 27.5, -1 28, -0.5 28))" +"POLYGON ((0 28, 0 27.5, -0.5 27.5, -0.5 28, 0 28))" +"POLYGON ((0.5 28, 0.5 27.5, 0 27.5, 0 28, 0.5 28))" +"POLYGON ((1 28, 1 27.5, 0.5 27.5, 0.5 28, 1 28))" +"POLYGON ((1.5 28, 1.5 27.5, 1 27.5, 1 28, 1.5 28))" +"POLYGON ((2 28, 2 27.5, 1.5 27.5, 1.5 28, 2 28))" +"POLYGON ((2.5 28, 2.5 27.5, 2 27.5, 2 28, 2.5 28))" +"POLYGON ((3 28, 3 27.5, 2.5 27.5, 2.5 28, 3 28))" +"POLYGON ((3.5 28, 3.5 27.5, 3 27.5, 3 28, 3.5 28))" +"POLYGON ((4 28, 4 27.5, 3.5 27.5, 3.5 28, 4 28))" +"POLYGON ((4.5 28, 4.5 27.5, 4 27.5, 4 28, 4.5 28))" +"POLYGON ((5 28, 5 27.5, 4.5 27.5, 4.5 28, 5 28))" +"POLYGON ((5.5 28, 5.5 27.5, 5 27.5, 5 28, 5.5 28))" +"POLYGON ((6 28, 6 27.5, 5.5 27.5, 5.5 28, 6 28))" +"POLYGON ((6.5 28, 6.5 27.5, 6 27.5, 6 28, 6.5 28))" +"POLYGON ((7 28, 7 27.5, 6.5 27.5, 6.5 28, 7 28))" +"POLYGON ((7.5 28, 7.5 27.5, 7 27.5, 7 28, 7.5 28))" +"POLYGON ((8 28, 8 27.5, 7.5 27.5, 7.5 28, 8 28))" +"POLYGON ((8.5 28, 8.5 27.5, 8 27.5, 8 28, 8.5 28))" +"POLYGON ((9 28, 9 27.5, 8.5 27.5, 8.5 28, 9 28))" +"POLYGON ((9.5 28, 9.5 27.5, 9 27.5, 9 28, 9.5 28))" +"POLYGON ((10 28, 10 27.5, 9.5 27.5, 9.5 28, 10 28))" +"POLYGON ((10.5 28, 10.5 27.5, 10 27.5, 10 28, 10.5 28))" +"POLYGON ((11 28, 11 27.5, 10.5 27.5, 10.5 28, 11 28))" +"POLYGON ((11.5 28, 11.5 27.5, 11 27.5, 11 28, 11.5 28))" +"POLYGON ((12 28, 12 27.5, 11.5 27.5, 11.5 28, 12 28))" +"POLYGON ((12.5 28, 12.5 27.5, 12 27.5, 12 28, 12.5 28))" +"POLYGON ((13 28, 13 27.5, 12.5 27.5, 12.5 28, 13 28))" +"POLYGON ((13.5 28, 13.5 27.5, 13 27.5, 13 28, 13.5 28))" +"POLYGON ((14 28, 14 27.5, 13.5 27.5, 13.5 28, 14 28))" +"POLYGON ((14.5 28, 14.5 27.5, 14 27.5, 14 28, 14.5 28))" +"POLYGON ((15 28, 15 27.5, 14.5 27.5, 14.5 28, 15 28))" +"POLYGON ((15.5 28, 15.5 27.5, 15 27.5, 15 28, 15.5 28))" +"POLYGON ((16 28, 16 27.5, 15.5 27.5, 15.5 28, 16 28))" +"POLYGON ((16.5 28, 16.5 27.5, 16 27.5, 16 28, 16.5 28))" +"POLYGON ((17 28, 17 27.5, 16.5 27.5, 16.5 28, 17 28))" +"POLYGON ((17.5 28, 17.5 27.5, 17 27.5, 17 28, 17.5 28))" +"POLYGON ((18 28, 18 27.5, 17.5 27.5, 17.5 28, 18 28))" +"POLYGON ((18.5 28, 18.5 27.5, 18 27.5, 18 28, 18.5 28))" +"POLYGON ((19 28, 19 27.5, 18.5 27.5, 18.5 28, 19 28))" +"POLYGON ((19.5 28, 19.5 27.5, 19 27.5, 19 28, 19.5 28))" +"POLYGON ((20 28, 20 27.5, 19.5 27.5, 19.5 28, 20 28))" +"POLYGON ((20.5 28, 20.5 27.5, 20 27.5, 20 28, 20.5 28))" +"POLYGON ((21 28, 21 27.5, 20.5 27.5, 20.5 28, 21 28))" +"POLYGON ((21.5 28, 21.5 27.5, 21 27.5, 21 28, 21.5 28))" +"POLYGON ((22 28, 22 27.5, 21.5 27.5, 21.5 28, 22 28))" +"POLYGON ((22.5 28, 22.5 27.5, 22 27.5, 22 28, 22.5 28))" +"POLYGON ((23 28, 23 27.5, 22.5 27.5, 22.5 28, 23 28))" +"POLYGON ((23.5 28, 23.5 27.5, 23 27.5, 23 28, 23.5 28))" +"POLYGON ((24 28, 24 27.5, 23.5 27.5, 23.5 28, 24 28))" +"POLYGON ((24.5 28, 24.5 27.5, 24 27.5, 24 28, 24.5 28))" +"POLYGON ((25 28, 25 27.5, 24.5 27.5, 24.5 28, 25 28))" +"POLYGON ((25.5 28, 25.5 27.5, 25 27.5, 25 28, 25.5 28))" +"POLYGON ((26 28, 26 27.5, 25.5 27.5, 25.5 28, 26 28))" +"POLYGON ((26.5 28, 26.5 27.5, 26 27.5, 26 28, 26.5 28))" +"POLYGON ((27 28, 27 27.5, 26.5 27.5, 26.5 28, 27 28))" +"POLYGON ((27.5 28, 27.5 27.5, 27 27.5, 27 28, 27.5 28))" +"POLYGON ((28 28, 28 27.5, 27.5 27.5, 27.5 28, 28 28))" +"POLYGON ((28.5 28, 28.5 27.5, 28 27.5, 28 28, 28.5 28))" +"POLYGON ((29 28, 29 27.5, 28.5 27.5, 28.5 28, 29 28))" +"POLYGON ((29.5 28, 29.5 27.5, 29 27.5, 29 28, 29.5 28))" +"POLYGON ((30 28, 30 27.5, 29.5 27.5, 29.5 28, 30 28))" +"POLYGON ((30.5 28, 30.5 27.5, 30 27.5, 30 28, 30.5 28))" +"POLYGON ((31 28, 31 27.5, 30.5 27.5, 30.5 28, 31 28))" +"POLYGON ((31.5 28, 31.5 27.5, 31 27.5, 31 28, 31.5 28))" +"POLYGON ((32 28, 32 27.5, 31.5 27.5, 31.5 28, 32 28))" +"POLYGON ((32.5 28, 32.5 27.5, 32 27.5, 32 28, 32.5 28))" +"POLYGON ((33 28, 33 27.5, 32.5 27.5, 32.5 28, 33 28))" +"POLYGON ((33.5 28, 33.5 27.5, 33 27.5, 33 28, 33.5 28))" +"POLYGON ((34.5 28, 34.5 27.5, 34 27.5, 34 28, 34.5 28))" +"POLYGON ((-16.5 28.5, -16.5 28, -17 28, -17 28.5, -16.5 28.5))" +"POLYGON ((-14 28.5, -14 28, -14.5 28, -14.5 28.5, -14 28.5))" +"POLYGON ((-11 28.5, -11 28, -11.5 28, -11.5 28.5, -11 28.5))" +"POLYGON ((-10.5 28.5, -10.5 28, -11 28, -11 28.5, -10.5 28.5))" +"POLYGON ((-10 28.5, -10 28, -10.5 28, -10.5 28.5, -10 28.5))" +"POLYGON ((-9.5 28.5, -9.5 28, -10 28, -10 28.5, -9.5 28.5))" +"POLYGON ((-9 28.5, -9 28, -9.5 28, -9.5 28.5, -9 28.5))" +"POLYGON ((-8.5 28.5, -8.5 28, -9 28, -9 28.5, -8.5 28.5))" +"POLYGON ((-8 28.5, -8 28, -8.5 28, -8.5 28.5, -8 28.5))" +"POLYGON ((-7.5 28.5, -7.5 28, -8 28, -8 28.5, -7.5 28.5))" +"POLYGON ((-7 28.5, -7 28, -7.5 28, -7.5 28.5, -7 28.5))" +"POLYGON ((-6.5 28.5, -6.5 28, -7 28, -7 28.5, -6.5 28.5))" +"POLYGON ((-6 28.5, -6 28, -6.5 28, -6.5 28.5, -6 28.5))" +"POLYGON ((-5.5 28.5, -5.5 28, -6 28, -6 28.5, -5.5 28.5))" +"POLYGON ((-5 28.5, -5 28, -5.5 28, -5.5 28.5, -5 28.5))" +"POLYGON ((-4.5 28.5, -4.5 28, -5 28, -5 28.5, -4.5 28.5))" +"POLYGON ((-4 28.5, -4 28, -4.5 28, -4.5 28.5, -4 28.5))" +"POLYGON ((-3.5 28.5, -3.5 28, -4 28, -4 28.5, -3.5 28.5))" +"POLYGON ((-3 28.5, -3 28, -3.5 28, -3.5 28.5, -3 28.5))" +"POLYGON ((-2.5 28.5, -2.5 28, -3 28, -3 28.5, -2.5 28.5))" +"POLYGON ((-2 28.5, -2 28, -2.5 28, -2.5 28.5, -2 28.5))" +"POLYGON ((-1.5 28.5, -1.5 28, -2 28, -2 28.5, -1.5 28.5))" +"POLYGON ((-1 28.5, -1 28, -1.5 28, -1.5 28.5, -1 28.5))" +"POLYGON ((-0.5 28.5, -0.5 28, -1 28, -1 28.5, -0.5 28.5))" +"POLYGON ((0 28.5, 0 28, -0.5 28, -0.5 28.5, 0 28.5))" +"POLYGON ((0.5 28.5, 0.5 28, 0 28, 0 28.5, 0.5 28.5))" +"POLYGON ((1 28.5, 1 28, 0.5 28, 0.5 28.5, 1 28.5))" +"POLYGON ((1.5 28.5, 1.5 28, 1 28, 1 28.5, 1.5 28.5))" +"POLYGON ((2 28.5, 2 28, 1.5 28, 1.5 28.5, 2 28.5))" +"POLYGON ((2.5 28.5, 2.5 28, 2 28, 2 28.5, 2.5 28.5))" +"POLYGON ((3 28.5, 3 28, 2.5 28, 2.5 28.5, 3 28.5))" +"POLYGON ((3.5 28.5, 3.5 28, 3 28, 3 28.5, 3.5 28.5))" +"POLYGON ((4 28.5, 4 28, 3.5 28, 3.5 28.5, 4 28.5))" +"POLYGON ((4.5 28.5, 4.5 28, 4 28, 4 28.5, 4.5 28.5))" +"POLYGON ((5 28.5, 5 28, 4.5 28, 4.5 28.5, 5 28.5))" +"POLYGON ((5.5 28.5, 5.5 28, 5 28, 5 28.5, 5.5 28.5))" +"POLYGON ((6 28.5, 6 28, 5.5 28, 5.5 28.5, 6 28.5))" +"POLYGON ((6.5 28.5, 6.5 28, 6 28, 6 28.5, 6.5 28.5))" +"POLYGON ((7 28.5, 7 28, 6.5 28, 6.5 28.5, 7 28.5))" +"POLYGON ((7.5 28.5, 7.5 28, 7 28, 7 28.5, 7.5 28.5))" +"POLYGON ((8 28.5, 8 28, 7.5 28, 7.5 28.5, 8 28.5))" +"POLYGON ((8.5 28.5, 8.5 28, 8 28, 8 28.5, 8.5 28.5))" +"POLYGON ((9 28.5, 9 28, 8.5 28, 8.5 28.5, 9 28.5))" +"POLYGON ((9.5 28.5, 9.5 28, 9 28, 9 28.5, 9.5 28.5))" +"POLYGON ((10 28.5, 10 28, 9.5 28, 9.5 28.5, 10 28.5))" +"POLYGON ((10.5 28.5, 10.5 28, 10 28, 10 28.5, 10.5 28.5))" +"POLYGON ((11 28.5, 11 28, 10.5 28, 10.5 28.5, 11 28.5))" +"POLYGON ((11.5 28.5, 11.5 28, 11 28, 11 28.5, 11.5 28.5))" +"POLYGON ((12 28.5, 12 28, 11.5 28, 11.5 28.5, 12 28.5))" +"POLYGON ((12.5 28.5, 12.5 28, 12 28, 12 28.5, 12.5 28.5))" +"POLYGON ((13 28.5, 13 28, 12.5 28, 12.5 28.5, 13 28.5))" +"POLYGON ((13.5 28.5, 13.5 28, 13 28, 13 28.5, 13.5 28.5))" +"POLYGON ((14 28.5, 14 28, 13.5 28, 13.5 28.5, 14 28.5))" +"POLYGON ((14.5 28.5, 14.5 28, 14 28, 14 28.5, 14.5 28.5))" +"POLYGON ((15 28.5, 15 28, 14.5 28, 14.5 28.5, 15 28.5))" +"POLYGON ((15.5 28.5, 15.5 28, 15 28, 15 28.5, 15.5 28.5))" +"POLYGON ((16 28.5, 16 28, 15.5 28, 15.5 28.5, 16 28.5))" +"POLYGON ((16.5 28.5, 16.5 28, 16 28, 16 28.5, 16.5 28.5))" +"POLYGON ((17 28.5, 17 28, 16.5 28, 16.5 28.5, 17 28.5))" +"POLYGON ((17.5 28.5, 17.5 28, 17 28, 17 28.5, 17.5 28.5))" +"POLYGON ((18 28.5, 18 28, 17.5 28, 17.5 28.5, 18 28.5))" +"POLYGON ((18.5 28.5, 18.5 28, 18 28, 18 28.5, 18.5 28.5))" +"POLYGON ((19 28.5, 19 28, 18.5 28, 18.5 28.5, 19 28.5))" +"POLYGON ((19.5 28.5, 19.5 28, 19 28, 19 28.5, 19.5 28.5))" +"POLYGON ((20 28.5, 20 28, 19.5 28, 19.5 28.5, 20 28.5))" +"POLYGON ((20.5 28.5, 20.5 28, 20 28, 20 28.5, 20.5 28.5))" +"POLYGON ((21 28.5, 21 28, 20.5 28, 20.5 28.5, 21 28.5))" +"POLYGON ((21.5 28.5, 21.5 28, 21 28, 21 28.5, 21.5 28.5))" +"POLYGON ((22 28.5, 22 28, 21.5 28, 21.5 28.5, 22 28.5))" +"POLYGON ((22.5 28.5, 22.5 28, 22 28, 22 28.5, 22.5 28.5))" +"POLYGON ((23 28.5, 23 28, 22.5 28, 22.5 28.5, 23 28.5))" +"POLYGON ((23.5 28.5, 23.5 28, 23 28, 23 28.5, 23.5 28.5))" +"POLYGON ((24 28.5, 24 28, 23.5 28, 23.5 28.5, 24 28.5))" +"POLYGON ((24.5 28.5, 24.5 28, 24 28, 24 28.5, 24.5 28.5))" +"POLYGON ((25 28.5, 25 28, 24.5 28, 24.5 28.5, 25 28.5))" +"POLYGON ((25.5 28.5, 25.5 28, 25 28, 25 28.5, 25.5 28.5))" +"POLYGON ((26 28.5, 26 28, 25.5 28, 25.5 28.5, 26 28.5))" +"POLYGON ((26.5 28.5, 26.5 28, 26 28, 26 28.5, 26.5 28.5))" +"POLYGON ((27 28.5, 27 28, 26.5 28, 26.5 28.5, 27 28.5))" +"POLYGON ((27.5 28.5, 27.5 28, 27 28, 27 28.5, 27.5 28.5))" +"POLYGON ((28 28.5, 28 28, 27.5 28, 27.5 28.5, 28 28.5))" +"POLYGON ((28.5 28.5, 28.5 28, 28 28, 28 28.5, 28.5 28.5))" +"POLYGON ((29 28.5, 29 28, 28.5 28, 28.5 28.5, 29 28.5))" +"POLYGON ((29.5 28.5, 29.5 28, 29 28, 29 28.5, 29.5 28.5))" +"POLYGON ((30 28.5, 30 28, 29.5 28, 29.5 28.5, 30 28.5))" +"POLYGON ((30.5 28.5, 30.5 28, 30 28, 30 28.5, 30.5 28.5))" +"POLYGON ((31 28.5, 31 28, 30.5 28, 30.5 28.5, 31 28.5))" +"POLYGON ((31.5 28.5, 31.5 28, 31 28, 31 28.5, 31.5 28.5))" +"POLYGON ((32 28.5, 32 28, 31.5 28, 31.5 28.5, 32 28.5))" +"POLYGON ((32.5 28.5, 32.5 28, 32 28, 32 28.5, 32.5 28.5))" +"POLYGON ((33 28.5, 33 28, 32.5 28, 32.5 28.5, 33 28.5))" +"POLYGON ((34 28.5, 34 28, 33.5 28, 33.5 28.5, 34 28.5))" +"POLYGON ((34.5 28.5, 34.5 28, 34 28, 34 28.5, 34.5 28.5))" +"POLYGON ((-17.5 29, -17.5 28.5, -18 28.5, -18 29, -17.5 29))" +"POLYGON ((-10.5 29, -10.5 28.5, -11 28.5, -11 29, -10.5 29))" +"POLYGON ((-10 29, -10 28.5, -10.5 28.5, -10.5 29, -10 29))" +"POLYGON ((-9.5 29, -9.5 28.5, -10 28.5, -10 29, -9.5 29))" +"POLYGON ((-9 29, -9 28.5, -9.5 28.5, -9.5 29, -9 29))" +"POLYGON ((-8.5 29, -8.5 28.5, -9 28.5, -9 29, -8.5 29))" +"POLYGON ((-8 29, -8 28.5, -8.5 28.5, -8.5 29, -8 29))" +"POLYGON ((-7.5 29, -7.5 28.5, -8 28.5, -8 29, -7.5 29))" +"POLYGON ((-7 29, -7 28.5, -7.5 28.5, -7.5 29, -7 29))" +"POLYGON ((-6.5 29, -6.5 28.5, -7 28.5, -7 29, -6.5 29))" +"POLYGON ((-6 29, -6 28.5, -6.5 28.5, -6.5 29, -6 29))" +"POLYGON ((-5.5 29, -5.5 28.5, -6 28.5, -6 29, -5.5 29))" +"POLYGON ((-5 29, -5 28.5, -5.5 28.5, -5.5 29, -5 29))" +"POLYGON ((-4.5 29, -4.5 28.5, -5 28.5, -5 29, -4.5 29))" +"POLYGON ((-4 29, -4 28.5, -4.5 28.5, -4.5 29, -4 29))" +"POLYGON ((-3.5 29, -3.5 28.5, -4 28.5, -4 29, -3.5 29))" +"POLYGON ((-3 29, -3 28.5, -3.5 28.5, -3.5 29, -3 29))" +"POLYGON ((-2.5 29, -2.5 28.5, -3 28.5, -3 29, -2.5 29))" +"POLYGON ((-2 29, -2 28.5, -2.5 28.5, -2.5 29, -2 29))" +"POLYGON ((-1.5 29, -1.5 28.5, -2 28.5, -2 29, -1.5 29))" +"POLYGON ((-1 29, -1 28.5, -1.5 28.5, -1.5 29, -1 29))" +"POLYGON ((-0.5 29, -0.5 28.5, -1 28.5, -1 29, -0.5 29))" +"POLYGON ((0 29, 0 28.5, -0.5 28.5, -0.5 29, 0 29))" +"POLYGON ((0.5 29, 0.5 28.5, 0 28.5, 0 29, 0.5 29))" +"POLYGON ((1 29, 1 28.5, 0.5 28.5, 0.5 29, 1 29))" +"POLYGON ((1.5 29, 1.5 28.5, 1 28.5, 1 29, 1.5 29))" +"POLYGON ((2 29, 2 28.5, 1.5 28.5, 1.5 29, 2 29))" +"POLYGON ((2.5 29, 2.5 28.5, 2 28.5, 2 29, 2.5 29))" +"POLYGON ((3 29, 3 28.5, 2.5 28.5, 2.5 29, 3 29))" +"POLYGON ((3.5 29, 3.5 28.5, 3 28.5, 3 29, 3.5 29))" +"POLYGON ((4 29, 4 28.5, 3.5 28.5, 3.5 29, 4 29))" +"POLYGON ((4.5 29, 4.5 28.5, 4 28.5, 4 29, 4.5 29))" +"POLYGON ((5 29, 5 28.5, 4.5 28.5, 4.5 29, 5 29))" +"POLYGON ((5.5 29, 5.5 28.5, 5 28.5, 5 29, 5.5 29))" +"POLYGON ((6 29, 6 28.5, 5.5 28.5, 5.5 29, 6 29))" +"POLYGON ((6.5 29, 6.5 28.5, 6 28.5, 6 29, 6.5 29))" +"POLYGON ((7 29, 7 28.5, 6.5 28.5, 6.5 29, 7 29))" +"POLYGON ((7.5 29, 7.5 28.5, 7 28.5, 7 29, 7.5 29))" +"POLYGON ((8 29, 8 28.5, 7.5 28.5, 7.5 29, 8 29))" +"POLYGON ((8.5 29, 8.5 28.5, 8 28.5, 8 29, 8.5 29))" +"POLYGON ((9 29, 9 28.5, 8.5 28.5, 8.5 29, 9 29))" +"POLYGON ((9.5 29, 9.5 28.5, 9 28.5, 9 29, 9.5 29))" +"POLYGON ((10 29, 10 28.5, 9.5 28.5, 9.5 29, 10 29))" +"POLYGON ((10.5 29, 10.5 28.5, 10 28.5, 10 29, 10.5 29))" +"POLYGON ((11 29, 11 28.5, 10.5 28.5, 10.5 29, 11 29))" +"POLYGON ((11.5 29, 11.5 28.5, 11 28.5, 11 29, 11.5 29))" +"POLYGON ((12 29, 12 28.5, 11.5 28.5, 11.5 29, 12 29))" +"POLYGON ((12.5 29, 12.5 28.5, 12 28.5, 12 29, 12.5 29))" +"POLYGON ((13 29, 13 28.5, 12.5 28.5, 12.5 29, 13 29))" +"POLYGON ((13.5 29, 13.5 28.5, 13 28.5, 13 29, 13.5 29))" +"POLYGON ((14 29, 14 28.5, 13.5 28.5, 13.5 29, 14 29))" +"POLYGON ((14.5 29, 14.5 28.5, 14 28.5, 14 29, 14.5 29))" +"POLYGON ((15 29, 15 28.5, 14.5 28.5, 14.5 29, 15 29))" +"POLYGON ((15.5 29, 15.5 28.5, 15 28.5, 15 29, 15.5 29))" +"POLYGON ((16 29, 16 28.5, 15.5 28.5, 15.5 29, 16 29))" +"POLYGON ((16.5 29, 16.5 28.5, 16 28.5, 16 29, 16.5 29))" +"POLYGON ((17 29, 17 28.5, 16.5 28.5, 16.5 29, 17 29))" +"POLYGON ((17.5 29, 17.5 28.5, 17 28.5, 17 29, 17.5 29))" +"POLYGON ((18 29, 18 28.5, 17.5 28.5, 17.5 29, 18 29))" +"POLYGON ((18.5 29, 18.5 28.5, 18 28.5, 18 29, 18.5 29))" +"POLYGON ((19 29, 19 28.5, 18.5 28.5, 18.5 29, 19 29))" +"POLYGON ((19.5 29, 19.5 28.5, 19 28.5, 19 29, 19.5 29))" +"POLYGON ((20 29, 20 28.5, 19.5 28.5, 19.5 29, 20 29))" +"POLYGON ((20.5 29, 20.5 28.5, 20 28.5, 20 29, 20.5 29))" +"POLYGON ((21 29, 21 28.5, 20.5 28.5, 20.5 29, 21 29))" +"POLYGON ((21.5 29, 21.5 28.5, 21 28.5, 21 29, 21.5 29))" +"POLYGON ((22 29, 22 28.5, 21.5 28.5, 21.5 29, 22 29))" +"POLYGON ((22.5 29, 22.5 28.5, 22 28.5, 22 29, 22.5 29))" +"POLYGON ((23 29, 23 28.5, 22.5 28.5, 22.5 29, 23 29))" +"POLYGON ((23.5 29, 23.5 28.5, 23 28.5, 23 29, 23.5 29))" +"POLYGON ((24 29, 24 28.5, 23.5 28.5, 23.5 29, 24 29))" +"POLYGON ((24.5 29, 24.5 28.5, 24 28.5, 24 29, 24.5 29))" +"POLYGON ((25 29, 25 28.5, 24.5 28.5, 24.5 29, 25 29))" +"POLYGON ((25.5 29, 25.5 28.5, 25 28.5, 25 29, 25.5 29))" +"POLYGON ((26 29, 26 28.5, 25.5 28.5, 25.5 29, 26 29))" +"POLYGON ((26.5 29, 26.5 28.5, 26 28.5, 26 29, 26.5 29))" +"POLYGON ((27 29, 27 28.5, 26.5 28.5, 26.5 29, 27 29))" +"POLYGON ((27.5 29, 27.5 28.5, 27 28.5, 27 29, 27.5 29))" +"POLYGON ((28 29, 28 28.5, 27.5 28.5, 27.5 29, 28 29))" +"POLYGON ((28.5 29, 28.5 28.5, 28 28.5, 28 29, 28.5 29))" +"POLYGON ((29 29, 29 28.5, 28.5 28.5, 28.5 29, 29 29))" +"POLYGON ((29.5 29, 29.5 28.5, 29 28.5, 29 29, 29.5 29))" +"POLYGON ((30 29, 30 28.5, 29.5 28.5, 29.5 29, 30 29))" +"POLYGON ((30.5 29, 30.5 28.5, 30 28.5, 30 29, 30.5 29))" +"POLYGON ((31 29, 31 28.5, 30.5 28.5, 30.5 29, 31 29))" +"POLYGON ((31.5 29, 31.5 28.5, 31 28.5, 31 29, 31.5 29))" +"POLYGON ((32 29, 32 28.5, 31.5 28.5, 31.5 29, 32 29))" +"POLYGON ((32.5 29, 32.5 28.5, 32 28.5, 32 29, 32.5 29))" +"POLYGON ((33 29, 33 28.5, 32.5 28.5, 32.5 29, 33 29))" +"POLYGON ((33.5 29, 33.5 28.5, 33 28.5, 33 29, 33.5 29))" +"POLYGON ((34 29, 34 28.5, 33.5 28.5, 33.5 29, 34 29))" +"POLYGON ((34.5 29, 34.5 28.5, 34 28.5, 34 29, 34.5 29))" +"POLYGON ((-10 29.5, -10 29, -10.5 29, -10.5 29.5, -10 29.5))" +"POLYGON ((-9.5 29.5, -9.5 29, -10 29, -10 29.5, -9.5 29.5))" +"POLYGON ((-9 29.5, -9 29, -9.5 29, -9.5 29.5, -9 29.5))" +"POLYGON ((-8.5 29.5, -8.5 29, -9 29, -9 29.5, -8.5 29.5))" +"POLYGON ((-8 29.5, -8 29, -8.5 29, -8.5 29.5, -8 29.5))" +"POLYGON ((-7.5 29.5, -7.5 29, -8 29, -8 29.5, -7.5 29.5))" +"POLYGON ((-7 29.5, -7 29, -7.5 29, -7.5 29.5, -7 29.5))" +"POLYGON ((-6.5 29.5, -6.5 29, -7 29, -7 29.5, -6.5 29.5))" +"POLYGON ((-6 29.5, -6 29, -6.5 29, -6.5 29.5, -6 29.5))" +"POLYGON ((-5.5 29.5, -5.5 29, -6 29, -6 29.5, -5.5 29.5))" +"POLYGON ((-5 29.5, -5 29, -5.5 29, -5.5 29.5, -5 29.5))" +"POLYGON ((-4.5 29.5, -4.5 29, -5 29, -5 29.5, -4.5 29.5))" +"POLYGON ((-4 29.5, -4 29, -4.5 29, -4.5 29.5, -4 29.5))" +"POLYGON ((-3.5 29.5, -3.5 29, -4 29, -4 29.5, -3.5 29.5))" +"POLYGON ((-3 29.5, -3 29, -3.5 29, -3.5 29.5, -3 29.5))" +"POLYGON ((-2.5 29.5, -2.5 29, -3 29, -3 29.5, -2.5 29.5))" +"POLYGON ((-2 29.5, -2 29, -2.5 29, -2.5 29.5, -2 29.5))" +"POLYGON ((-1.5 29.5, -1.5 29, -2 29, -2 29.5, -1.5 29.5))" +"POLYGON ((-1 29.5, -1 29, -1.5 29, -1.5 29.5, -1 29.5))" +"POLYGON ((-0.5 29.5, -0.5 29, -1 29, -1 29.5, -0.5 29.5))" +"POLYGON ((0 29.5, 0 29, -0.5 29, -0.5 29.5, 0 29.5))" +"POLYGON ((0.5 29.5, 0.5 29, 0 29, 0 29.5, 0.5 29.5))" +"POLYGON ((1 29.5, 1 29, 0.5 29, 0.5 29.5, 1 29.5))" +"POLYGON ((1.5 29.5, 1.5 29, 1 29, 1 29.5, 1.5 29.5))" +"POLYGON ((2 29.5, 2 29, 1.5 29, 1.5 29.5, 2 29.5))" +"POLYGON ((2.5 29.5, 2.5 29, 2 29, 2 29.5, 2.5 29.5))" +"POLYGON ((3 29.5, 3 29, 2.5 29, 2.5 29.5, 3 29.5))" +"POLYGON ((3.5 29.5, 3.5 29, 3 29, 3 29.5, 3.5 29.5))" +"POLYGON ((4 29.5, 4 29, 3.5 29, 3.5 29.5, 4 29.5))" +"POLYGON ((4.5 29.5, 4.5 29, 4 29, 4 29.5, 4.5 29.5))" +"POLYGON ((5 29.5, 5 29, 4.5 29, 4.5 29.5, 5 29.5))" +"POLYGON ((5.5 29.5, 5.5 29, 5 29, 5 29.5, 5.5 29.5))" +"POLYGON ((6 29.5, 6 29, 5.5 29, 5.5 29.5, 6 29.5))" +"POLYGON ((6.5 29.5, 6.5 29, 6 29, 6 29.5, 6.5 29.5))" +"POLYGON ((7 29.5, 7 29, 6.5 29, 6.5 29.5, 7 29.5))" +"POLYGON ((7.5 29.5, 7.5 29, 7 29, 7 29.5, 7.5 29.5))" +"POLYGON ((8 29.5, 8 29, 7.5 29, 7.5 29.5, 8 29.5))" +"POLYGON ((8.5 29.5, 8.5 29, 8 29, 8 29.5, 8.5 29.5))" +"POLYGON ((9 29.5, 9 29, 8.5 29, 8.5 29.5, 9 29.5))" +"POLYGON ((9.5 29.5, 9.5 29, 9 29, 9 29.5, 9.5 29.5))" +"POLYGON ((10 29.5, 10 29, 9.5 29, 9.5 29.5, 10 29.5))" +"POLYGON ((10.5 29.5, 10.5 29, 10 29, 10 29.5, 10.5 29.5))" +"POLYGON ((11 29.5, 11 29, 10.5 29, 10.5 29.5, 11 29.5))" +"POLYGON ((11.5 29.5, 11.5 29, 11 29, 11 29.5, 11.5 29.5))" +"POLYGON ((12 29.5, 12 29, 11.5 29, 11.5 29.5, 12 29.5))" +"POLYGON ((12.5 29.5, 12.5 29, 12 29, 12 29.5, 12.5 29.5))" +"POLYGON ((13 29.5, 13 29, 12.5 29, 12.5 29.5, 13 29.5))" +"POLYGON ((13.5 29.5, 13.5 29, 13 29, 13 29.5, 13.5 29.5))" +"POLYGON ((14 29.5, 14 29, 13.5 29, 13.5 29.5, 14 29.5))" +"POLYGON ((14.5 29.5, 14.5 29, 14 29, 14 29.5, 14.5 29.5))" +"POLYGON ((15 29.5, 15 29, 14.5 29, 14.5 29.5, 15 29.5))" +"POLYGON ((15.5 29.5, 15.5 29, 15 29, 15 29.5, 15.5 29.5))" +"POLYGON ((16 29.5, 16 29, 15.5 29, 15.5 29.5, 16 29.5))" +"POLYGON ((16.5 29.5, 16.5 29, 16 29, 16 29.5, 16.5 29.5))" +"POLYGON ((17 29.5, 17 29, 16.5 29, 16.5 29.5, 17 29.5))" +"POLYGON ((17.5 29.5, 17.5 29, 17 29, 17 29.5, 17.5 29.5))" +"POLYGON ((18 29.5, 18 29, 17.5 29, 17.5 29.5, 18 29.5))" +"POLYGON ((18.5 29.5, 18.5 29, 18 29, 18 29.5, 18.5 29.5))" +"POLYGON ((19 29.5, 19 29, 18.5 29, 18.5 29.5, 19 29.5))" +"POLYGON ((19.5 29.5, 19.5 29, 19 29, 19 29.5, 19.5 29.5))" +"POLYGON ((20 29.5, 20 29, 19.5 29, 19.5 29.5, 20 29.5))" +"POLYGON ((20.5 29.5, 20.5 29, 20 29, 20 29.5, 20.5 29.5))" +"POLYGON ((21 29.5, 21 29, 20.5 29, 20.5 29.5, 21 29.5))" +"POLYGON ((21.5 29.5, 21.5 29, 21 29, 21 29.5, 21.5 29.5))" +"POLYGON ((22 29.5, 22 29, 21.5 29, 21.5 29.5, 22 29.5))" +"POLYGON ((22.5 29.5, 22.5 29, 22 29, 22 29.5, 22.5 29.5))" +"POLYGON ((23 29.5, 23 29, 22.5 29, 22.5 29.5, 23 29.5))" +"POLYGON ((23.5 29.5, 23.5 29, 23 29, 23 29.5, 23.5 29.5))" +"POLYGON ((24 29.5, 24 29, 23.5 29, 23.5 29.5, 24 29.5))" +"POLYGON ((24.5 29.5, 24.5 29, 24 29, 24 29.5, 24.5 29.5))" +"POLYGON ((25 29.5, 25 29, 24.5 29, 24.5 29.5, 25 29.5))" +"POLYGON ((25.5 29.5, 25.5 29, 25 29, 25 29.5, 25.5 29.5))" +"POLYGON ((26 29.5, 26 29, 25.5 29, 25.5 29.5, 26 29.5))" +"POLYGON ((26.5 29.5, 26.5 29, 26 29, 26 29.5, 26.5 29.5))" +"POLYGON ((27 29.5, 27 29, 26.5 29, 26.5 29.5, 27 29.5))" +"POLYGON ((27.5 29.5, 27.5 29, 27 29, 27 29.5, 27.5 29.5))" +"POLYGON ((28 29.5, 28 29, 27.5 29, 27.5 29.5, 28 29.5))" +"POLYGON ((28.5 29.5, 28.5 29, 28 29, 28 29.5, 28.5 29.5))" +"POLYGON ((29 29.5, 29 29, 28.5 29, 28.5 29.5, 29 29.5))" +"POLYGON ((29.5 29.5, 29.5 29, 29 29, 29 29.5, 29.5 29.5))" +"POLYGON ((30 29.5, 30 29, 29.5 29, 29.5 29.5, 30 29.5))" +"POLYGON ((30.5 29.5, 30.5 29, 30 29, 30 29.5, 30.5 29.5))" +"POLYGON ((31 29.5, 31 29, 30.5 29, 30.5 29.5, 31 29.5))" +"POLYGON ((31.5 29.5, 31.5 29, 31 29, 31 29.5, 31.5 29.5))" +"POLYGON ((32 29.5, 32 29, 31.5 29, 31.5 29.5, 32 29.5))" +"POLYGON ((32.5 29.5, 32.5 29, 32 29, 32 29.5, 32.5 29.5))" +"POLYGON ((33.5 29.5, 33.5 29, 33 29, 33 29.5, 33.5 29.5))" +"POLYGON ((34 29.5, 34 29, 33.5 29, 33.5 29.5, 34 29.5))" +"POLYGON ((34.5 29.5, 34.5 29, 34 29, 34 29.5, 34.5 29.5))" +"POLYGON ((35 29.5, 35 29, 34.5 29, 34.5 29.5, 35 29.5))" +"POLYGON ((-9.5 30, -9.5 29.5, -10 29.5, -10 30, -9.5 30))" +"POLYGON ((-9 30, -9 29.5, -9.5 29.5, -9.5 30, -9 30))" +"POLYGON ((-8.5 30, -8.5 29.5, -9 29.5, -9 30, -8.5 30))" +"POLYGON ((-8 30, -8 29.5, -8.5 29.5, -8.5 30, -8 30))" +"POLYGON ((-7.5 30, -7.5 29.5, -8 29.5, -8 30, -7.5 30))" +"POLYGON ((-7 30, -7 29.5, -7.5 29.5, -7.5 30, -7 30))" +"POLYGON ((-6.5 30, -6.5 29.5, -7 29.5, -7 30, -6.5 30))" +"POLYGON ((-6 30, -6 29.5, -6.5 29.5, -6.5 30, -6 30))" +"POLYGON ((-5.5 30, -5.5 29.5, -6 29.5, -6 30, -5.5 30))" +"POLYGON ((-5 30, -5 29.5, -5.5 29.5, -5.5 30, -5 30))" +"POLYGON ((-4.5 30, -4.5 29.5, -5 29.5, -5 30, -4.5 30))" +"POLYGON ((-4 30, -4 29.5, -4.5 29.5, -4.5 30, -4 30))" +"POLYGON ((-3.5 30, -3.5 29.5, -4 29.5, -4 30, -3.5 30))" +"POLYGON ((-3 30, -3 29.5, -3.5 29.5, -3.5 30, -3 30))" +"POLYGON ((-2.5 30, -2.5 29.5, -3 29.5, -3 30, -2.5 30))" +"POLYGON ((-2 30, -2 29.5, -2.5 29.5, -2.5 30, -2 30))" +"POLYGON ((-1.5 30, -1.5 29.5, -2 29.5, -2 30, -1.5 30))" +"POLYGON ((-1 30, -1 29.5, -1.5 29.5, -1.5 30, -1 30))" +"POLYGON ((-0.5 30, -0.5 29.5, -1 29.5, -1 30, -0.5 30))" +"POLYGON ((0 30, 0 29.5, -0.5 29.5, -0.5 30, 0 30))" +"POLYGON ((0.5 30, 0.5 29.5, 0 29.5, 0 30, 0.5 30))" +"POLYGON ((1 30, 1 29.5, 0.5 29.5, 0.5 30, 1 30))" +"POLYGON ((1.5 30, 1.5 29.5, 1 29.5, 1 30, 1.5 30))" +"POLYGON ((2 30, 2 29.5, 1.5 29.5, 1.5 30, 2 30))" +"POLYGON ((2.5 30, 2.5 29.5, 2 29.5, 2 30, 2.5 30))" +"POLYGON ((3 30, 3 29.5, 2.5 29.5, 2.5 30, 3 30))" +"POLYGON ((3.5 30, 3.5 29.5, 3 29.5, 3 30, 3.5 30))" +"POLYGON ((4 30, 4 29.5, 3.5 29.5, 3.5 30, 4 30))" +"POLYGON ((4.5 30, 4.5 29.5, 4 29.5, 4 30, 4.5 30))" +"POLYGON ((5 30, 5 29.5, 4.5 29.5, 4.5 30, 5 30))" +"POLYGON ((5.5 30, 5.5 29.5, 5 29.5, 5 30, 5.5 30))" +"POLYGON ((6 30, 6 29.5, 5.5 29.5, 5.5 30, 6 30))" +"POLYGON ((6.5 30, 6.5 29.5, 6 29.5, 6 30, 6.5 30))" +"POLYGON ((7 30, 7 29.5, 6.5 29.5, 6.5 30, 7 30))" +"POLYGON ((7.5 30, 7.5 29.5, 7 29.5, 7 30, 7.5 30))" +"POLYGON ((8 30, 8 29.5, 7.5 29.5, 7.5 30, 8 30))" +"POLYGON ((8.5 30, 8.5 29.5, 8 29.5, 8 30, 8.5 30))" +"POLYGON ((9 30, 9 29.5, 8.5 29.5, 8.5 30, 9 30))" +"POLYGON ((9.5 30, 9.5 29.5, 9 29.5, 9 30, 9.5 30))" +"POLYGON ((10 30, 10 29.5, 9.5 29.5, 9.5 30, 10 30))" +"POLYGON ((10.5 30, 10.5 29.5, 10 29.5, 10 30, 10.5 30))" +"POLYGON ((11 30, 11 29.5, 10.5 29.5, 10.5 30, 11 30))" +"POLYGON ((11.5 30, 11.5 29.5, 11 29.5, 11 30, 11.5 30))" +"POLYGON ((12 30, 12 29.5, 11.5 29.5, 11.5 30, 12 30))" +"POLYGON ((12.5 30, 12.5 29.5, 12 29.5, 12 30, 12.5 30))" +"POLYGON ((13 30, 13 29.5, 12.5 29.5, 12.5 30, 13 30))" +"POLYGON ((13.5 30, 13.5 29.5, 13 29.5, 13 30, 13.5 30))" +"POLYGON ((14 30, 14 29.5, 13.5 29.5, 13.5 30, 14 30))" +"POLYGON ((14.5 30, 14.5 29.5, 14 29.5, 14 30, 14.5 30))" +"POLYGON ((15 30, 15 29.5, 14.5 29.5, 14.5 30, 15 30))" +"POLYGON ((15.5 30, 15.5 29.5, 15 29.5, 15 30, 15.5 30))" +"POLYGON ((16 30, 16 29.5, 15.5 29.5, 15.5 30, 16 30))" +"POLYGON ((16.5 30, 16.5 29.5, 16 29.5, 16 30, 16.5 30))" +"POLYGON ((17 30, 17 29.5, 16.5 29.5, 16.5 30, 17 30))" +"POLYGON ((17.5 30, 17.5 29.5, 17 29.5, 17 30, 17.5 30))" +"POLYGON ((18 30, 18 29.5, 17.5 29.5, 17.5 30, 18 30))" +"POLYGON ((18.5 30, 18.5 29.5, 18 29.5, 18 30, 18.5 30))" +"POLYGON ((19 30, 19 29.5, 18.5 29.5, 18.5 30, 19 30))" +"POLYGON ((19.5 30, 19.5 29.5, 19 29.5, 19 30, 19.5 30))" +"POLYGON ((20 30, 20 29.5, 19.5 29.5, 19.5 30, 20 30))" +"POLYGON ((20.5 30, 20.5 29.5, 20 29.5, 20 30, 20.5 30))" +"POLYGON ((21 30, 21 29.5, 20.5 29.5, 20.5 30, 21 30))" +"POLYGON ((21.5 30, 21.5 29.5, 21 29.5, 21 30, 21.5 30))" +"POLYGON ((22 30, 22 29.5, 21.5 29.5, 21.5 30, 22 30))" +"POLYGON ((22.5 30, 22.5 29.5, 22 29.5, 22 30, 22.5 30))" +"POLYGON ((23 30, 23 29.5, 22.5 29.5, 22.5 30, 23 30))" +"POLYGON ((23.5 30, 23.5 29.5, 23 29.5, 23 30, 23.5 30))" +"POLYGON ((24 30, 24 29.5, 23.5 29.5, 23.5 30, 24 30))" +"POLYGON ((24.5 30, 24.5 29.5, 24 29.5, 24 30, 24.5 30))" +"POLYGON ((25 30, 25 29.5, 24.5 29.5, 24.5 30, 25 30))" +"POLYGON ((25.5 30, 25.5 29.5, 25 29.5, 25 30, 25.5 30))" +"POLYGON ((26 30, 26 29.5, 25.5 29.5, 25.5 30, 26 30))" +"POLYGON ((26.5 30, 26.5 29.5, 26 29.5, 26 30, 26.5 30))" +"POLYGON ((27 30, 27 29.5, 26.5 29.5, 26.5 30, 27 30))" +"POLYGON ((27.5 30, 27.5 29.5, 27 29.5, 27 30, 27.5 30))" +"POLYGON ((28 30, 28 29.5, 27.5 29.5, 27.5 30, 28 30))" +"POLYGON ((28.5 30, 28.5 29.5, 28 29.5, 28 30, 28.5 30))" +"POLYGON ((29 30, 29 29.5, 28.5 29.5, 28.5 30, 29 30))" +"POLYGON ((29.5 30, 29.5 29.5, 29 29.5, 29 30, 29.5 30))" +"POLYGON ((30 30, 30 29.5, 29.5 29.5, 29.5 30, 30 30))" +"POLYGON ((30.5 30, 30.5 29.5, 30 29.5, 30 30, 30.5 30))" +"POLYGON ((31 30, 31 29.5, 30.5 29.5, 30.5 30, 31 30))" +"POLYGON ((31.5 30, 31.5 29.5, 31 29.5, 31 30, 31.5 30))" +"POLYGON ((32 30, 32 29.5, 31.5 29.5, 31.5 30, 32 30))" +"POLYGON ((32.5 30, 32.5 29.5, 32 29.5, 32 30, 32.5 30))" +"POLYGON ((33 30, 33 29.5, 32.5 29.5, 32.5 30, 33 30))" +"POLYGON ((33.5 30, 33.5 29.5, 33 29.5, 33 30, 33.5 30))" +"POLYGON ((34 30, 34 29.5, 33.5 29.5, 33.5 30, 34 30))" +"POLYGON ((34.5 30, 34.5 29.5, 34 29.5, 34 30, 34.5 30))" +"POLYGON ((35 30, 35 29.5, 34.5 29.5, 34.5 30, 35 30))" +"POLYGON ((-9 30.5, -9 30, -9.5 30, -9.5 30.5, -9 30.5))" +"POLYGON ((-8.5 30.5, -8.5 30, -9 30, -9 30.5, -8.5 30.5))" +"POLYGON ((-8 30.5, -8 30, -8.5 30, -8.5 30.5, -8 30.5))" +"POLYGON ((-7.5 30.5, -7.5 30, -8 30, -8 30.5, -7.5 30.5))" +"POLYGON ((-7 30.5, -7 30, -7.5 30, -7.5 30.5, -7 30.5))" +"POLYGON ((-6.5 30.5, -6.5 30, -7 30, -7 30.5, -6.5 30.5))" +"POLYGON ((-6 30.5, -6 30, -6.5 30, -6.5 30.5, -6 30.5))" +"POLYGON ((-5.5 30.5, -5.5 30, -6 30, -6 30.5, -5.5 30.5))" +"POLYGON ((-5 30.5, -5 30, -5.5 30, -5.5 30.5, -5 30.5))" +"POLYGON ((-4.5 30.5, -4.5 30, -5 30, -5 30.5, -4.5 30.5))" +"POLYGON ((-4 30.5, -4 30, -4.5 30, -4.5 30.5, -4 30.5))" +"POLYGON ((-3.5 30.5, -3.5 30, -4 30, -4 30.5, -3.5 30.5))" +"POLYGON ((-3 30.5, -3 30, -3.5 30, -3.5 30.5, -3 30.5))" +"POLYGON ((-2.5 30.5, -2.5 30, -3 30, -3 30.5, -2.5 30.5))" +"POLYGON ((-2 30.5, -2 30, -2.5 30, -2.5 30.5, -2 30.5))" +"POLYGON ((-1.5 30.5, -1.5 30, -2 30, -2 30.5, -1.5 30.5))" +"POLYGON ((-1 30.5, -1 30, -1.5 30, -1.5 30.5, -1 30.5))" +"POLYGON ((-0.5 30.5, -0.5 30, -1 30, -1 30.5, -0.5 30.5))" +"POLYGON ((0 30.5, 0 30, -0.5 30, -0.5 30.5, 0 30.5))" +"POLYGON ((0.5 30.5, 0.5 30, 0 30, 0 30.5, 0.5 30.5))" +"POLYGON ((1 30.5, 1 30, 0.5 30, 0.5 30.5, 1 30.5))" +"POLYGON ((1.5 30.5, 1.5 30, 1 30, 1 30.5, 1.5 30.5))" +"POLYGON ((2 30.5, 2 30, 1.5 30, 1.5 30.5, 2 30.5))" +"POLYGON ((2.5 30.5, 2.5 30, 2 30, 2 30.5, 2.5 30.5))" +"POLYGON ((3 30.5, 3 30, 2.5 30, 2.5 30.5, 3 30.5))" +"POLYGON ((3.5 30.5, 3.5 30, 3 30, 3 30.5, 3.5 30.5))" +"POLYGON ((4 30.5, 4 30, 3.5 30, 3.5 30.5, 4 30.5))" +"POLYGON ((4.5 30.5, 4.5 30, 4 30, 4 30.5, 4.5 30.5))" +"POLYGON ((5 30.5, 5 30, 4.5 30, 4.5 30.5, 5 30.5))" +"POLYGON ((5.5 30.5, 5.5 30, 5 30, 5 30.5, 5.5 30.5))" +"POLYGON ((6 30.5, 6 30, 5.5 30, 5.5 30.5, 6 30.5))" +"POLYGON ((6.5 30.5, 6.5 30, 6 30, 6 30.5, 6.5 30.5))" +"POLYGON ((7 30.5, 7 30, 6.5 30, 6.5 30.5, 7 30.5))" +"POLYGON ((7.5 30.5, 7.5 30, 7 30, 7 30.5, 7.5 30.5))" +"POLYGON ((8 30.5, 8 30, 7.5 30, 7.5 30.5, 8 30.5))" +"POLYGON ((8.5 30.5, 8.5 30, 8 30, 8 30.5, 8.5 30.5))" +"POLYGON ((9 30.5, 9 30, 8.5 30, 8.5 30.5, 9 30.5))" +"POLYGON ((9.5 30.5, 9.5 30, 9 30, 9 30.5, 9.5 30.5))" +"POLYGON ((10 30.5, 10 30, 9.5 30, 9.5 30.5, 10 30.5))" +"POLYGON ((10.5 30.5, 10.5 30, 10 30, 10 30.5, 10.5 30.5))" +"POLYGON ((11 30.5, 11 30, 10.5 30, 10.5 30.5, 11 30.5))" +"POLYGON ((11.5 30.5, 11.5 30, 11 30, 11 30.5, 11.5 30.5))" +"POLYGON ((12 30.5, 12 30, 11.5 30, 11.5 30.5, 12 30.5))" +"POLYGON ((12.5 30.5, 12.5 30, 12 30, 12 30.5, 12.5 30.5))" +"POLYGON ((13 30.5, 13 30, 12.5 30, 12.5 30.5, 13 30.5))" +"POLYGON ((13.5 30.5, 13.5 30, 13 30, 13 30.5, 13.5 30.5))" +"POLYGON ((14 30.5, 14 30, 13.5 30, 13.5 30.5, 14 30.5))" +"POLYGON ((14.5 30.5, 14.5 30, 14 30, 14 30.5, 14.5 30.5))" +"POLYGON ((15 30.5, 15 30, 14.5 30, 14.5 30.5, 15 30.5))" +"POLYGON ((15.5 30.5, 15.5 30, 15 30, 15 30.5, 15.5 30.5))" +"POLYGON ((16 30.5, 16 30, 15.5 30, 15.5 30.5, 16 30.5))" +"POLYGON ((16.5 30.5, 16.5 30, 16 30, 16 30.5, 16.5 30.5))" +"POLYGON ((17 30.5, 17 30, 16.5 30, 16.5 30.5, 17 30.5))" +"POLYGON ((17.5 30.5, 17.5 30, 17 30, 17 30.5, 17.5 30.5))" +"POLYGON ((18 30.5, 18 30, 17.5 30, 17.5 30.5, 18 30.5))" +"POLYGON ((18.5 30.5, 18.5 30, 18 30, 18 30.5, 18.5 30.5))" +"POLYGON ((19 30.5, 19 30, 18.5 30, 18.5 30.5, 19 30.5))" +"POLYGON ((19.5 30.5, 19.5 30, 19 30, 19 30.5, 19.5 30.5))" +"POLYGON ((20 30.5, 20 30, 19.5 30, 19.5 30.5, 20 30.5))" +"POLYGON ((20.5 30.5, 20.5 30, 20 30, 20 30.5, 20.5 30.5))" +"POLYGON ((21 30.5, 21 30, 20.5 30, 20.5 30.5, 21 30.5))" +"POLYGON ((21.5 30.5, 21.5 30, 21 30, 21 30.5, 21.5 30.5))" +"POLYGON ((22 30.5, 22 30, 21.5 30, 21.5 30.5, 22 30.5))" +"POLYGON ((22.5 30.5, 22.5 30, 22 30, 22 30.5, 22.5 30.5))" +"POLYGON ((23 30.5, 23 30, 22.5 30, 22.5 30.5, 23 30.5))" +"POLYGON ((23.5 30.5, 23.5 30, 23 30, 23 30.5, 23.5 30.5))" +"POLYGON ((24 30.5, 24 30, 23.5 30, 23.5 30.5, 24 30.5))" +"POLYGON ((24.5 30.5, 24.5 30, 24 30, 24 30.5, 24.5 30.5))" +"POLYGON ((25 30.5, 25 30, 24.5 30, 24.5 30.5, 25 30.5))" +"POLYGON ((25.5 30.5, 25.5 30, 25 30, 25 30.5, 25.5 30.5))" +"POLYGON ((26 30.5, 26 30, 25.5 30, 25.5 30.5, 26 30.5))" +"POLYGON ((26.5 30.5, 26.5 30, 26 30, 26 30.5, 26.5 30.5))" +"POLYGON ((27 30.5, 27 30, 26.5 30, 26.5 30.5, 27 30.5))" +"POLYGON ((27.5 30.5, 27.5 30, 27 30, 27 30.5, 27.5 30.5))" +"POLYGON ((28 30.5, 28 30, 27.5 30, 27.5 30.5, 28 30.5))" +"POLYGON ((28.5 30.5, 28.5 30, 28 30, 28 30.5, 28.5 30.5))" +"POLYGON ((29 30.5, 29 30, 28.5 30, 28.5 30.5, 29 30.5))" +"POLYGON ((29.5 30.5, 29.5 30, 29 30, 29 30.5, 29.5 30.5))" +"POLYGON ((30 30.5, 30 30, 29.5 30, 29.5 30.5, 30 30.5))" +"POLYGON ((30.5 30.5, 30.5 30, 30 30, 30 30.5, 30.5 30.5))" +"POLYGON ((31 30.5, 31 30, 30.5 30, 30.5 30.5, 31 30.5))" +"POLYGON ((31.5 30.5, 31.5 30, 31 30, 31 30.5, 31.5 30.5))" +"POLYGON ((32 30.5, 32 30, 31.5 30, 31.5 30.5, 32 30.5))" +"POLYGON ((32.5 30.5, 32.5 30, 32 30, 32 30.5, 32.5 30.5))" +"POLYGON ((33 30.5, 33 30, 32.5 30, 32.5 30.5, 33 30.5))" +"POLYGON ((33.5 30.5, 33.5 30, 33 30, 33 30.5, 33.5 30.5))" +"POLYGON ((34 30.5, 34 30, 33.5 30, 33.5 30.5, 34 30.5))" +"POLYGON ((34.5 30.5, 34.5 30, 34 30, 34 30.5, 34.5 30.5))" +"POLYGON ((-9.5 31, -9.5 30.5, -10 30.5, -10 31, -9.5 31))" +"POLYGON ((-9 31, -9 30.5, -9.5 30.5, -9.5 31, -9 31))" +"POLYGON ((-8.5 31, -8.5 30.5, -9 30.5, -9 31, -8.5 31))" +"POLYGON ((-8 31, -8 30.5, -8.5 30.5, -8.5 31, -8 31))" +"POLYGON ((-7.5 31, -7.5 30.5, -8 30.5, -8 31, -7.5 31))" +"POLYGON ((-7 31, -7 30.5, -7.5 30.5, -7.5 31, -7 31))" +"POLYGON ((-6.5 31, -6.5 30.5, -7 30.5, -7 31, -6.5 31))" +"POLYGON ((-6 31, -6 30.5, -6.5 30.5, -6.5 31, -6 31))" +"POLYGON ((-5.5 31, -5.5 30.5, -6 30.5, -6 31, -5.5 31))" +"POLYGON ((-5 31, -5 30.5, -5.5 30.5, -5.5 31, -5 31))" +"POLYGON ((-4.5 31, -4.5 30.5, -5 30.5, -5 31, -4.5 31))" +"POLYGON ((-4 31, -4 30.5, -4.5 30.5, -4.5 31, -4 31))" +"POLYGON ((-3.5 31, -3.5 30.5, -4 30.5, -4 31, -3.5 31))" +"POLYGON ((-3 31, -3 30.5, -3.5 30.5, -3.5 31, -3 31))" +"POLYGON ((-2.5 31, -2.5 30.5, -3 30.5, -3 31, -2.5 31))" +"POLYGON ((-2 31, -2 30.5, -2.5 30.5, -2.5 31, -2 31))" +"POLYGON ((-1.5 31, -1.5 30.5, -2 30.5, -2 31, -1.5 31))" +"POLYGON ((-1 31, -1 30.5, -1.5 30.5, -1.5 31, -1 31))" +"POLYGON ((-0.5 31, -0.5 30.5, -1 30.5, -1 31, -0.5 31))" +"POLYGON ((0 31, 0 30.5, -0.5 30.5, -0.5 31, 0 31))" +"POLYGON ((0.5 31, 0.5 30.5, 0 30.5, 0 31, 0.5 31))" +"POLYGON ((1 31, 1 30.5, 0.5 30.5, 0.5 31, 1 31))" +"POLYGON ((1.5 31, 1.5 30.5, 1 30.5, 1 31, 1.5 31))" +"POLYGON ((2 31, 2 30.5, 1.5 30.5, 1.5 31, 2 31))" +"POLYGON ((2.5 31, 2.5 30.5, 2 30.5, 2 31, 2.5 31))" +"POLYGON ((3 31, 3 30.5, 2.5 30.5, 2.5 31, 3 31))" +"POLYGON ((3.5 31, 3.5 30.5, 3 30.5, 3 31, 3.5 31))" +"POLYGON ((4 31, 4 30.5, 3.5 30.5, 3.5 31, 4 31))" +"POLYGON ((4.5 31, 4.5 30.5, 4 30.5, 4 31, 4.5 31))" +"POLYGON ((5 31, 5 30.5, 4.5 30.5, 4.5 31, 5 31))" +"POLYGON ((5.5 31, 5.5 30.5, 5 30.5, 5 31, 5.5 31))" +"POLYGON ((6 31, 6 30.5, 5.5 30.5, 5.5 31, 6 31))" +"POLYGON ((6.5 31, 6.5 30.5, 6 30.5, 6 31, 6.5 31))" +"POLYGON ((7 31, 7 30.5, 6.5 30.5, 6.5 31, 7 31))" +"POLYGON ((7.5 31, 7.5 30.5, 7 30.5, 7 31, 7.5 31))" +"POLYGON ((8 31, 8 30.5, 7.5 30.5, 7.5 31, 8 31))" +"POLYGON ((8.5 31, 8.5 30.5, 8 30.5, 8 31, 8.5 31))" +"POLYGON ((9 31, 9 30.5, 8.5 30.5, 8.5 31, 9 31))" +"POLYGON ((9.5 31, 9.5 30.5, 9 30.5, 9 31, 9.5 31))" +"POLYGON ((10 31, 10 30.5, 9.5 30.5, 9.5 31, 10 31))" +"POLYGON ((10.5 31, 10.5 30.5, 10 30.5, 10 31, 10.5 31))" +"POLYGON ((11 31, 11 30.5, 10.5 30.5, 10.5 31, 11 31))" +"POLYGON ((11.5 31, 11.5 30.5, 11 30.5, 11 31, 11.5 31))" +"POLYGON ((12 31, 12 30.5, 11.5 30.5, 11.5 31, 12 31))" +"POLYGON ((12.5 31, 12.5 30.5, 12 30.5, 12 31, 12.5 31))" +"POLYGON ((13 31, 13 30.5, 12.5 30.5, 12.5 31, 13 31))" +"POLYGON ((13.5 31, 13.5 30.5, 13 30.5, 13 31, 13.5 31))" +"POLYGON ((14 31, 14 30.5, 13.5 30.5, 13.5 31, 14 31))" +"POLYGON ((14.5 31, 14.5 30.5, 14 30.5, 14 31, 14.5 31))" +"POLYGON ((15 31, 15 30.5, 14.5 30.5, 14.5 31, 15 31))" +"POLYGON ((15.5 31, 15.5 30.5, 15 30.5, 15 31, 15.5 31))" +"POLYGON ((16 31, 16 30.5, 15.5 30.5, 15.5 31, 16 31))" +"POLYGON ((16.5 31, 16.5 30.5, 16 30.5, 16 31, 16.5 31))" +"POLYGON ((17 31, 17 30.5, 16.5 30.5, 16.5 31, 17 31))" +"POLYGON ((17.5 31, 17.5 30.5, 17 30.5, 17 31, 17.5 31))" +"POLYGON ((18 31, 18 30.5, 17.5 30.5, 17.5 31, 18 31))" +"POLYGON ((20.5 31, 20.5 30.5, 20 30.5, 20 31, 20.5 31))" +"POLYGON ((21 31, 21 30.5, 20.5 30.5, 20.5 31, 21 31))" +"POLYGON ((21.5 31, 21.5 30.5, 21 30.5, 21 31, 21.5 31))" +"POLYGON ((22 31, 22 30.5, 21.5 30.5, 21.5 31, 22 31))" +"POLYGON ((22.5 31, 22.5 30.5, 22 30.5, 22 31, 22.5 31))" +"POLYGON ((23 31, 23 30.5, 22.5 30.5, 22.5 31, 23 31))" +"POLYGON ((23.5 31, 23.5 30.5, 23 30.5, 23 31, 23.5 31))" +"POLYGON ((24 31, 24 30.5, 23.5 30.5, 23.5 31, 24 31))" +"POLYGON ((24.5 31, 24.5 30.5, 24 30.5, 24 31, 24.5 31))" +"POLYGON ((25 31, 25 30.5, 24.5 30.5, 24.5 31, 25 31))" +"POLYGON ((25.5 31, 25.5 30.5, 25 30.5, 25 31, 25.5 31))" +"POLYGON ((26 31, 26 30.5, 25.5 30.5, 25.5 31, 26 31))" +"POLYGON ((26.5 31, 26.5 30.5, 26 30.5, 26 31, 26.5 31))" +"POLYGON ((27 31, 27 30.5, 26.5 30.5, 26.5 31, 27 31))" +"POLYGON ((27.5 31, 27.5 30.5, 27 30.5, 27 31, 27.5 31))" +"POLYGON ((28 31, 28 30.5, 27.5 30.5, 27.5 31, 28 31))" +"POLYGON ((28.5 31, 28.5 30.5, 28 30.5, 28 31, 28.5 31))" +"POLYGON ((29 31, 29 30.5, 28.5 30.5, 28.5 31, 29 31))" +"POLYGON ((29.5 31, 29.5 30.5, 29 30.5, 29 31, 29.5 31))" +"POLYGON ((30 31, 30 30.5, 29.5 30.5, 29.5 31, 30 31))" +"POLYGON ((30.5 31, 30.5 30.5, 30 30.5, 30 31, 30.5 31))" +"POLYGON ((31 31, 31 30.5, 30.5 30.5, 30.5 31, 31 31))" +"POLYGON ((31.5 31, 31.5 30.5, 31 30.5, 31 31, 31.5 31))" +"POLYGON ((32 31, 32 30.5, 31.5 30.5, 31.5 31, 32 31))" +"POLYGON ((32.5 31, 32.5 30.5, 32 30.5, 32 31, 32.5 31))" +"POLYGON ((33 31, 33 30.5, 32.5 30.5, 32.5 31, 33 31))" +"POLYGON ((33.5 31, 33.5 30.5, 33 30.5, 33 31, 33.5 31))" +"POLYGON ((34 31, 34 30.5, 33.5 30.5, 33.5 31, 34 31))" +"POLYGON ((34.5 31, 34.5 30.5, 34 30.5, 34 31, 34.5 31))" +"POLYGON ((-9.5 31.5, -9.5 31, -10 31, -10 31.5, -9.5 31.5))" +"POLYGON ((-9 31.5, -9 31, -9.5 31, -9.5 31.5, -9 31.5))" +"POLYGON ((-8.5 31.5, -8.5 31, -9 31, -9 31.5, -8.5 31.5))" +"POLYGON ((-8 31.5, -8 31, -8.5 31, -8.5 31.5, -8 31.5))" +"POLYGON ((-7.5 31.5, -7.5 31, -8 31, -8 31.5, -7.5 31.5))" +"POLYGON ((-7 31.5, -7 31, -7.5 31, -7.5 31.5, -7 31.5))" +"POLYGON ((-6.5 31.5, -6.5 31, -7 31, -7 31.5, -6.5 31.5))" +"POLYGON ((-6 31.5, -6 31, -6.5 31, -6.5 31.5, -6 31.5))" +"POLYGON ((-5.5 31.5, -5.5 31, -6 31, -6 31.5, -5.5 31.5))" +"POLYGON ((-5 31.5, -5 31, -5.5 31, -5.5 31.5, -5 31.5))" +"POLYGON ((-4.5 31.5, -4.5 31, -5 31, -5 31.5, -4.5 31.5))" +"POLYGON ((-4 31.5, -4 31, -4.5 31, -4.5 31.5, -4 31.5))" +"POLYGON ((-3.5 31.5, -3.5 31, -4 31, -4 31.5, -3.5 31.5))" +"POLYGON ((-3 31.5, -3 31, -3.5 31, -3.5 31.5, -3 31.5))" +"POLYGON ((-2.5 31.5, -2.5 31, -3 31, -3 31.5, -2.5 31.5))" +"POLYGON ((-2 31.5, -2 31, -2.5 31, -2.5 31.5, -2 31.5))" +"POLYGON ((-1.5 31.5, -1.5 31, -2 31, -2 31.5, -1.5 31.5))" +"POLYGON ((-1 31.5, -1 31, -1.5 31, -1.5 31.5, -1 31.5))" +"POLYGON ((-0.5 31.5, -0.5 31, -1 31, -1 31.5, -0.5 31.5))" +"POLYGON ((0 31.5, 0 31, -0.5 31, -0.5 31.5, 0 31.5))" +"POLYGON ((0.5 31.5, 0.5 31, 0 31, 0 31.5, 0.5 31.5))" +"POLYGON ((1 31.5, 1 31, 0.5 31, 0.5 31.5, 1 31.5))" +"POLYGON ((1.5 31.5, 1.5 31, 1 31, 1 31.5, 1.5 31.5))" +"POLYGON ((2 31.5, 2 31, 1.5 31, 1.5 31.5, 2 31.5))" +"POLYGON ((2.5 31.5, 2.5 31, 2 31, 2 31.5, 2.5 31.5))" +"POLYGON ((3 31.5, 3 31, 2.5 31, 2.5 31.5, 3 31.5))" +"POLYGON ((3.5 31.5, 3.5 31, 3 31, 3 31.5, 3.5 31.5))" +"POLYGON ((4 31.5, 4 31, 3.5 31, 3.5 31.5, 4 31.5))" +"POLYGON ((4.5 31.5, 4.5 31, 4 31, 4 31.5, 4.5 31.5))" +"POLYGON ((5 31.5, 5 31, 4.5 31, 4.5 31.5, 5 31.5))" +"POLYGON ((5.5 31.5, 5.5 31, 5 31, 5 31.5, 5.5 31.5))" +"POLYGON ((6 31.5, 6 31, 5.5 31, 5.5 31.5, 6 31.5))" +"POLYGON ((6.5 31.5, 6.5 31, 6 31, 6 31.5, 6.5 31.5))" +"POLYGON ((7 31.5, 7 31, 6.5 31, 6.5 31.5, 7 31.5))" +"POLYGON ((7.5 31.5, 7.5 31, 7 31, 7 31.5, 7.5 31.5))" +"POLYGON ((8 31.5, 8 31, 7.5 31, 7.5 31.5, 8 31.5))" +"POLYGON ((8.5 31.5, 8.5 31, 8 31, 8 31.5, 8.5 31.5))" +"POLYGON ((9 31.5, 9 31, 8.5 31, 8.5 31.5, 9 31.5))" +"POLYGON ((9.5 31.5, 9.5 31, 9 31, 9 31.5, 9.5 31.5))" +"POLYGON ((10 31.5, 10 31, 9.5 31, 9.5 31.5, 10 31.5))" +"POLYGON ((10.5 31.5, 10.5 31, 10 31, 10 31.5, 10.5 31.5))" +"POLYGON ((11 31.5, 11 31, 10.5 31, 10.5 31.5, 11 31.5))" +"POLYGON ((11.5 31.5, 11.5 31, 11 31, 11 31.5, 11.5 31.5))" +"POLYGON ((12 31.5, 12 31, 11.5 31, 11.5 31.5, 12 31.5))" +"POLYGON ((12.5 31.5, 12.5 31, 12 31, 12 31.5, 12.5 31.5))" +"POLYGON ((13 31.5, 13 31, 12.5 31, 12.5 31.5, 13 31.5))" +"POLYGON ((13.5 31.5, 13.5 31, 13 31, 13 31.5, 13.5 31.5))" +"POLYGON ((14 31.5, 14 31, 13.5 31, 13.5 31.5, 14 31.5))" +"POLYGON ((14.5 31.5, 14.5 31, 14 31, 14 31.5, 14.5 31.5))" +"POLYGON ((15 31.5, 15 31, 14.5 31, 14.5 31.5, 15 31.5))" +"POLYGON ((15.5 31.5, 15.5 31, 15 31, 15 31.5, 15.5 31.5))" +"POLYGON ((16 31.5, 16 31, 15.5 31, 15.5 31.5, 16 31.5))" +"POLYGON ((16.5 31.5, 16.5 31, 16 31, 16 31.5, 16.5 31.5))" +"POLYGON ((20.5 31.5, 20.5 31, 20 31, 20 31.5, 20.5 31.5))" +"POLYGON ((21 31.5, 21 31, 20.5 31, 20.5 31.5, 21 31.5))" +"POLYGON ((21.5 31.5, 21.5 31, 21 31, 21 31.5, 21.5 31.5))" +"POLYGON ((22 31.5, 22 31, 21.5 31, 21.5 31.5, 22 31.5))" +"POLYGON ((22.5 31.5, 22.5 31, 22 31, 22 31.5, 22.5 31.5))" +"POLYGON ((23 31.5, 23 31, 22.5 31, 22.5 31.5, 23 31.5))" +"POLYGON ((23.5 31.5, 23.5 31, 23 31, 23 31.5, 23.5 31.5))" +"POLYGON ((24 31.5, 24 31, 23.5 31, 23.5 31.5, 24 31.5))" +"POLYGON ((24.5 31.5, 24.5 31, 24 31, 24 31.5, 24.5 31.5))" +"POLYGON ((25 31.5, 25 31, 24.5 31, 24.5 31.5, 25 31.5))" +"POLYGON ((25.5 31.5, 25.5 31, 25 31, 25 31.5, 25.5 31.5))" +"POLYGON ((26 31.5, 26 31, 25.5 31, 25.5 31.5, 26 31.5))" +"POLYGON ((26.5 31.5, 26.5 31, 26 31, 26 31.5, 26.5 31.5))" +"POLYGON ((27 31.5, 27 31, 26.5 31, 26.5 31.5, 27 31.5))" +"POLYGON ((27.5 31.5, 27.5 31, 27 31, 27 31.5, 27.5 31.5))" +"POLYGON ((30.5 31.5, 30.5 31, 30 31, 30 31.5, 30.5 31.5))" +"POLYGON ((31 31.5, 31 31, 30.5 31, 30.5 31.5, 31 31.5))" +"POLYGON ((31.5 31.5, 31.5 31, 31 31, 31 31.5, 31.5 31.5))" +"POLYGON ((32 31.5, 32 31, 31.5 31, 31.5 31.5, 32 31.5))" +"POLYGON ((32.5 31.5, 32.5 31, 32 31, 32 31.5, 32.5 31.5))" +"POLYGON ((-9 32, -9 31.5, -9.5 31.5, -9.5 32, -9 32))" +"POLYGON ((-8.5 32, -8.5 31.5, -9 31.5, -9 32, -8.5 32))" +"POLYGON ((-8 32, -8 31.5, -8.5 31.5, -8.5 32, -8 32))" +"POLYGON ((-7.5 32, -7.5 31.5, -8 31.5, -8 32, -7.5 32))" +"POLYGON ((-7 32, -7 31.5, -7.5 31.5, -7.5 32, -7 32))" +"POLYGON ((-6.5 32, -6.5 31.5, -7 31.5, -7 32, -6.5 32))" +"POLYGON ((-6 32, -6 31.5, -6.5 31.5, -6.5 32, -6 32))" +"POLYGON ((-5.5 32, -5.5 31.5, -6 31.5, -6 32, -5.5 32))" +"POLYGON ((-5 32, -5 31.5, -5.5 31.5, -5.5 32, -5 32))" +"POLYGON ((-4.5 32, -4.5 31.5, -5 31.5, -5 32, -4.5 32))" +"POLYGON ((-4 32, -4 31.5, -4.5 31.5, -4.5 32, -4 32))" +"POLYGON ((-3.5 32, -3.5 31.5, -4 31.5, -4 32, -3.5 32))" +"POLYGON ((-3 32, -3 31.5, -3.5 31.5, -3.5 32, -3 32))" +"POLYGON ((-2.5 32, -2.5 31.5, -3 31.5, -3 32, -2.5 32))" +"POLYGON ((-2 32, -2 31.5, -2.5 31.5, -2.5 32, -2 32))" +"POLYGON ((-1.5 32, -1.5 31.5, -2 31.5, -2 32, -1.5 32))" +"POLYGON ((-1 32, -1 31.5, -1.5 31.5, -1.5 32, -1 32))" +"POLYGON ((-0.5 32, -0.5 31.5, -1 31.5, -1 32, -0.5 32))" +"POLYGON ((0 32, 0 31.5, -0.5 31.5, -0.5 32, 0 32))" +"POLYGON ((0.5 32, 0.5 31.5, 0 31.5, 0 32, 0.5 32))" +"POLYGON ((1 32, 1 31.5, 0.5 31.5, 0.5 32, 1 32))" +"POLYGON ((1.5 32, 1.5 31.5, 1 31.5, 1 32, 1.5 32))" +"POLYGON ((2 32, 2 31.5, 1.5 31.5, 1.5 32, 2 32))" +"POLYGON ((2.5 32, 2.5 31.5, 2 31.5, 2 32, 2.5 32))" +"POLYGON ((3 32, 3 31.5, 2.5 31.5, 2.5 32, 3 32))" +"POLYGON ((3.5 32, 3.5 31.5, 3 31.5, 3 32, 3.5 32))" +"POLYGON ((4 32, 4 31.5, 3.5 31.5, 3.5 32, 4 32))" +"POLYGON ((4.5 32, 4.5 31.5, 4 31.5, 4 32, 4.5 32))" +"POLYGON ((5 32, 5 31.5, 4.5 31.5, 4.5 32, 5 32))" +"POLYGON ((5.5 32, 5.5 31.5, 5 31.5, 5 32, 5.5 32))" +"POLYGON ((6 32, 6 31.5, 5.5 31.5, 5.5 32, 6 32))" +"POLYGON ((6.5 32, 6.5 31.5, 6 31.5, 6 32, 6.5 32))" +"POLYGON ((7 32, 7 31.5, 6.5 31.5, 6.5 32, 7 32))" +"POLYGON ((7.5 32, 7.5 31.5, 7 31.5, 7 32, 7.5 32))" +"POLYGON ((8 32, 8 31.5, 7.5 31.5, 7.5 32, 8 32))" +"POLYGON ((8.5 32, 8.5 31.5, 8 31.5, 8 32, 8.5 32))" +"POLYGON ((9 32, 9 31.5, 8.5 31.5, 8.5 32, 9 32))" +"POLYGON ((9.5 32, 9.5 31.5, 9 31.5, 9 32, 9.5 32))" +"POLYGON ((10 32, 10 31.5, 9.5 31.5, 9.5 32, 10 32))" +"POLYGON ((10.5 32, 10.5 31.5, 10 31.5, 10 32, 10.5 32))" +"POLYGON ((11 32, 11 31.5, 10.5 31.5, 10.5 32, 11 32))" +"POLYGON ((11.5 32, 11.5 31.5, 11 31.5, 11 32, 11.5 32))" +"POLYGON ((12 32, 12 31.5, 11.5 31.5, 11.5 32, 12 32))" +"POLYGON ((12.5 32, 12.5 31.5, 12 31.5, 12 32, 12.5 32))" +"POLYGON ((13 32, 13 31.5, 12.5 31.5, 12.5 32, 13 32))" +"POLYGON ((13.5 32, 13.5 31.5, 13 31.5, 13 32, 13.5 32))" +"POLYGON ((14 32, 14 31.5, 13.5 31.5, 13.5 32, 14 32))" +"POLYGON ((14.5 32, 14.5 31.5, 14 31.5, 14 32, 14.5 32))" +"POLYGON ((15 32, 15 31.5, 14.5 31.5, 14.5 32, 15 32))" +"POLYGON ((15.5 32, 15.5 31.5, 15 31.5, 15 32, 15.5 32))" +"POLYGON ((20.5 32, 20.5 31.5, 20 31.5, 20 32, 20.5 32))" +"POLYGON ((21 32, 21 31.5, 20.5 31.5, 20.5 32, 21 32))" +"POLYGON ((21.5 32, 21.5 31.5, 21 31.5, 21 32, 21.5 32))" +"POLYGON ((22 32, 22 31.5, 21.5 31.5, 21.5 32, 22 32))" +"POLYGON ((22.5 32, 22.5 31.5, 22 31.5, 22 32, 22.5 32))" +"POLYGON ((23 32, 23 31.5, 22.5 31.5, 22.5 32, 23 32))" +"POLYGON ((23.5 32, 23.5 31.5, 23 31.5, 23 32, 23.5 32))" +"POLYGON ((24 32, 24 31.5, 23.5 31.5, 23.5 32, 24 32))" +"POLYGON ((24.5 32, 24.5 31.5, 24 31.5, 24 32, 24.5 32))" +"POLYGON ((25 32, 25 31.5, 24.5 31.5, 24.5 32, 25 32))" +"POLYGON ((-9 32.5, -9 32, -9.5 32, -9.5 32.5, -9 32.5))" +"POLYGON ((-8.5 32.5, -8.5 32, -9 32, -9 32.5, -8.5 32.5))" +"POLYGON ((-8 32.5, -8 32, -8.5 32, -8.5 32.5, -8 32.5))" +"POLYGON ((-7.5 32.5, -7.5 32, -8 32, -8 32.5, -7.5 32.5))" +"POLYGON ((-7 32.5, -7 32, -7.5 32, -7.5 32.5, -7 32.5))" +"POLYGON ((-6.5 32.5, -6.5 32, -7 32, -7 32.5, -6.5 32.5))" +"POLYGON ((-6 32.5, -6 32, -6.5 32, -6.5 32.5, -6 32.5))" +"POLYGON ((-5.5 32.5, -5.5 32, -6 32, -6 32.5, -5.5 32.5))" +"POLYGON ((-5 32.5, -5 32, -5.5 32, -5.5 32.5, -5 32.5))" +"POLYGON ((-4.5 32.5, -4.5 32, -5 32, -5 32.5, -4.5 32.5))" +"POLYGON ((-4 32.5, -4 32, -4.5 32, -4.5 32.5, -4 32.5))" +"POLYGON ((-3.5 32.5, -3.5 32, -4 32, -4 32.5, -3.5 32.5))" +"POLYGON ((-3 32.5, -3 32, -3.5 32, -3.5 32.5, -3 32.5))" +"POLYGON ((-2.5 32.5, -2.5 32, -3 32, -3 32.5, -2.5 32.5))" +"POLYGON ((-2 32.5, -2 32, -2.5 32, -2.5 32.5, -2 32.5))" +"POLYGON ((-1.5 32.5, -1.5 32, -2 32, -2 32.5, -1.5 32.5))" +"POLYGON ((-1 32.5, -1 32, -1.5 32, -1.5 32.5, -1 32.5))" +"POLYGON ((-0.5 32.5, -0.5 32, -1 32, -1 32.5, -0.5 32.5))" +"POLYGON ((0 32.5, 0 32, -0.5 32, -0.5 32.5, 0 32.5))" +"POLYGON ((0.5 32.5, 0.5 32, 0 32, 0 32.5, 0.5 32.5))" +"POLYGON ((1 32.5, 1 32, 0.5 32, 0.5 32.5, 1 32.5))" +"POLYGON ((1.5 32.5, 1.5 32, 1 32, 1 32.5, 1.5 32.5))" +"POLYGON ((2 32.5, 2 32, 1.5 32, 1.5 32.5, 2 32.5))" +"POLYGON ((2.5 32.5, 2.5 32, 2 32, 2 32.5, 2.5 32.5))" +"POLYGON ((3 32.5, 3 32, 2.5 32, 2.5 32.5, 3 32.5))" +"POLYGON ((3.5 32.5, 3.5 32, 3 32, 3 32.5, 3.5 32.5))" +"POLYGON ((4 32.5, 4 32, 3.5 32, 3.5 32.5, 4 32.5))" +"POLYGON ((4.5 32.5, 4.5 32, 4 32, 4 32.5, 4.5 32.5))" +"POLYGON ((5 32.5, 5 32, 4.5 32, 4.5 32.5, 5 32.5))" +"POLYGON ((5.5 32.5, 5.5 32, 5 32, 5 32.5, 5.5 32.5))" +"POLYGON ((6 32.5, 6 32, 5.5 32, 5.5 32.5, 6 32.5))" +"POLYGON ((6.5 32.5, 6.5 32, 6 32, 6 32.5, 6.5 32.5))" +"POLYGON ((7 32.5, 7 32, 6.5 32, 6.5 32.5, 7 32.5))" +"POLYGON ((7.5 32.5, 7.5 32, 7 32, 7 32.5, 7.5 32.5))" +"POLYGON ((8 32.5, 8 32, 7.5 32, 7.5 32.5, 8 32.5))" +"POLYGON ((8.5 32.5, 8.5 32, 8 32, 8 32.5, 8.5 32.5))" +"POLYGON ((9 32.5, 9 32, 8.5 32, 8.5 32.5, 9 32.5))" +"POLYGON ((9.5 32.5, 9.5 32, 9 32, 9 32.5, 9.5 32.5))" +"POLYGON ((10 32.5, 10 32, 9.5 32, 9.5 32.5, 10 32.5))" +"POLYGON ((10.5 32.5, 10.5 32, 10 32, 10 32.5, 10.5 32.5))" +"POLYGON ((11 32.5, 11 32, 10.5 32, 10.5 32.5, 11 32.5))" +"POLYGON ((11.5 32.5, 11.5 32, 11 32, 11 32.5, 11.5 32.5))" +"POLYGON ((12 32.5, 12 32, 11.5 32, 11.5 32.5, 12 32.5))" +"POLYGON ((12.5 32.5, 12.5 32, 12 32, 12 32.5, 12.5 32.5))" +"POLYGON ((13 32.5, 13 32, 12.5 32, 12.5 32.5, 13 32.5))" +"POLYGON ((13.5 32.5, 13.5 32, 13 32, 13 32.5, 13.5 32.5))" +"POLYGON ((14 32.5, 14 32, 13.5 32, 13.5 32.5, 14 32.5))" +"POLYGON ((14.5 32.5, 14.5 32, 14 32, 14 32.5, 14.5 32.5))" +"POLYGON ((15 32.5, 15 32, 14.5 32, 14.5 32.5, 15 32.5))" +"POLYGON ((15.5 32.5, 15.5 32, 15 32, 15 32.5, 15.5 32.5))" +"POLYGON ((20.5 32.5, 20.5 32, 20 32, 20 32.5, 20.5 32.5))" +"POLYGON ((21 32.5, 21 32, 20.5 32, 20.5 32.5, 21 32.5))" +"POLYGON ((21.5 32.5, 21.5 32, 21 32, 21 32.5, 21.5 32.5))" +"POLYGON ((22 32.5, 22 32, 21.5 32, 21.5 32.5, 22 32.5))" +"POLYGON ((22.5 32.5, 22.5 32, 22 32, 22 32.5, 22.5 32.5))" +"POLYGON ((23 32.5, 23 32, 22.5 32, 22.5 32.5, 23 32.5))" +"POLYGON ((-16.5 33, -16.5 32.5, -17 32.5, -17 33, -16.5 33))" +"POLYGON ((-8.5 33, -8.5 32.5, -9 32.5, -9 33, -8.5 33))" +"POLYGON ((-8 33, -8 32.5, -8.5 32.5, -8.5 33, -8 33))" +"POLYGON ((-7.5 33, -7.5 32.5, -8 32.5, -8 33, -7.5 33))" +"POLYGON ((-7 33, -7 32.5, -7.5 32.5, -7.5 33, -7 33))" +"POLYGON ((-6.5 33, -6.5 32.5, -7 32.5, -7 33, -6.5 33))" +"POLYGON ((-6 33, -6 32.5, -6.5 32.5, -6.5 33, -6 33))" +"POLYGON ((-5.5 33, -5.5 32.5, -6 32.5, -6 33, -5.5 33))" +"POLYGON ((-5 33, -5 32.5, -5.5 32.5, -5.5 33, -5 33))" +"POLYGON ((-4.5 33, -4.5 32.5, -5 32.5, -5 33, -4.5 33))" +"POLYGON ((-4 33, -4 32.5, -4.5 32.5, -4.5 33, -4 33))" +"POLYGON ((-3.5 33, -3.5 32.5, -4 32.5, -4 33, -3.5 33))" +"POLYGON ((-3 33, -3 32.5, -3.5 32.5, -3.5 33, -3 33))" +"POLYGON ((-2.5 33, -2.5 32.5, -3 32.5, -3 33, -2.5 33))" +"POLYGON ((-2 33, -2 32.5, -2.5 32.5, -2.5 33, -2 33))" +"POLYGON ((-1.5 33, -1.5 32.5, -2 32.5, -2 33, -1.5 33))" +"POLYGON ((-1 33, -1 32.5, -1.5 32.5, -1.5 33, -1 33))" +"POLYGON ((-0.5 33, -0.5 32.5, -1 32.5, -1 33, -0.5 33))" +"POLYGON ((0 33, 0 32.5, -0.5 32.5, -0.5 33, 0 33))" +"POLYGON ((0.5 33, 0.5 32.5, 0 32.5, 0 33, 0.5 33))" +"POLYGON ((1 33, 1 32.5, 0.5 32.5, 0.5 33, 1 33))" +"POLYGON ((1.5 33, 1.5 32.5, 1 32.5, 1 33, 1.5 33))" +"POLYGON ((2 33, 2 32.5, 1.5 32.5, 1.5 33, 2 33))" +"POLYGON ((2.5 33, 2.5 32.5, 2 32.5, 2 33, 2.5 33))" +"POLYGON ((3 33, 3 32.5, 2.5 32.5, 2.5 33, 3 33))" +"POLYGON ((3.5 33, 3.5 32.5, 3 32.5, 3 33, 3.5 33))" +"POLYGON ((4 33, 4 32.5, 3.5 32.5, 3.5 33, 4 33))" +"POLYGON ((4.5 33, 4.5 32.5, 4 32.5, 4 33, 4.5 33))" +"POLYGON ((5 33, 5 32.5, 4.5 32.5, 4.5 33, 5 33))" +"POLYGON ((5.5 33, 5.5 32.5, 5 32.5, 5 33, 5.5 33))" +"POLYGON ((6 33, 6 32.5, 5.5 32.5, 5.5 33, 6 33))" +"POLYGON ((6.5 33, 6.5 32.5, 6 32.5, 6 33, 6.5 33))" +"POLYGON ((7 33, 7 32.5, 6.5 32.5, 6.5 33, 7 33))" +"POLYGON ((7.5 33, 7.5 32.5, 7 32.5, 7 33, 7.5 33))" +"POLYGON ((8 33, 8 32.5, 7.5 32.5, 7.5 33, 8 33))" +"POLYGON ((8.5 33, 8.5 32.5, 8 32.5, 8 33, 8.5 33))" +"POLYGON ((9 33, 9 32.5, 8.5 32.5, 8.5 33, 9 33))" +"POLYGON ((9.5 33, 9.5 32.5, 9 32.5, 9 33, 9.5 33))" +"POLYGON ((10 33, 10 32.5, 9.5 32.5, 9.5 33, 10 33))" +"POLYGON ((10.5 33, 10.5 32.5, 10 32.5, 10 33, 10.5 33))" +"POLYGON ((11 33, 11 32.5, 10.5 32.5, 10.5 33, 11 33))" +"POLYGON ((11.5 33, 11.5 32.5, 11 32.5, 11 33, 11.5 33))" +"POLYGON ((12 33, 12 32.5, 11.5 32.5, 11.5 33, 12 33))" +"POLYGON ((12.5 33, 12.5 32.5, 12 32.5, 12 33, 12.5 33))" +"POLYGON ((13 33, 13 32.5, 12.5 32.5, 12.5 33, 13 33))" +"POLYGON ((13.5 33, 13.5 32.5, 13 32.5, 13 33, 13.5 33))" +"POLYGON ((14 33, 14 32.5, 13.5 32.5, 13.5 33, 14 33))" +"POLYGON ((21.5 33, 21.5 32.5, 21 32.5, 21 33, 21.5 33))" +"POLYGON ((22 33, 22 32.5, 21.5 32.5, 21.5 33, 22 33))" +"POLYGON ((22.5 33, 22.5 32.5, 22 32.5, 22 33, 22.5 33))" +"POLYGON ((-8 33.5, -8 33, -8.5 33, -8.5 33.5, -8 33.5))" +"POLYGON ((-7.5 33.5, -7.5 33, -8 33, -8 33.5, -7.5 33.5))" +"POLYGON ((-7 33.5, -7 33, -7.5 33, -7.5 33.5, -7 33.5))" +"POLYGON ((-6.5 33.5, -6.5 33, -7 33, -7 33.5, -6.5 33.5))" +"POLYGON ((-6 33.5, -6 33, -6.5 33, -6.5 33.5, -6 33.5))" +"POLYGON ((-5.5 33.5, -5.5 33, -6 33, -6 33.5, -5.5 33.5))" +"POLYGON ((-5 33.5, -5 33, -5.5 33, -5.5 33.5, -5 33.5))" +"POLYGON ((-4.5 33.5, -4.5 33, -5 33, -5 33.5, -4.5 33.5))" +"POLYGON ((-4 33.5, -4 33, -4.5 33, -4.5 33.5, -4 33.5))" +"POLYGON ((-3.5 33.5, -3.5 33, -4 33, -4 33.5, -3.5 33.5))" +"POLYGON ((-3 33.5, -3 33, -3.5 33, -3.5 33.5, -3 33.5))" +"POLYGON ((-2.5 33.5, -2.5 33, -3 33, -3 33.5, -2.5 33.5))" +"POLYGON ((-2 33.5, -2 33, -2.5 33, -2.5 33.5, -2 33.5))" +"POLYGON ((-1.5 33.5, -1.5 33, -2 33, -2 33.5, -1.5 33.5))" +"POLYGON ((-1 33.5, -1 33, -1.5 33, -1.5 33.5, -1 33.5))" +"POLYGON ((-0.5 33.5, -0.5 33, -1 33, -1 33.5, -0.5 33.5))" +"POLYGON ((0 33.5, 0 33, -0.5 33, -0.5 33.5, 0 33.5))" +"POLYGON ((0.5 33.5, 0.5 33, 0 33, 0 33.5, 0.5 33.5))" +"POLYGON ((1 33.5, 1 33, 0.5 33, 0.5 33.5, 1 33.5))" +"POLYGON ((1.5 33.5, 1.5 33, 1 33, 1 33.5, 1.5 33.5))" +"POLYGON ((2 33.5, 2 33, 1.5 33, 1.5 33.5, 2 33.5))" +"POLYGON ((2.5 33.5, 2.5 33, 2 33, 2 33.5, 2.5 33.5))" +"POLYGON ((3 33.5, 3 33, 2.5 33, 2.5 33.5, 3 33.5))" +"POLYGON ((3.5 33.5, 3.5 33, 3 33, 3 33.5, 3.5 33.5))" +"POLYGON ((4 33.5, 4 33, 3.5 33, 3.5 33.5, 4 33.5))" +"POLYGON ((4.5 33.5, 4.5 33, 4 33, 4 33.5, 4.5 33.5))" +"POLYGON ((5 33.5, 5 33, 4.5 33, 4.5 33.5, 5 33.5))" +"POLYGON ((5.5 33.5, 5.5 33, 5 33, 5 33.5, 5.5 33.5))" +"POLYGON ((6 33.5, 6 33, 5.5 33, 5.5 33.5, 6 33.5))" +"POLYGON ((6.5 33.5, 6.5 33, 6 33, 6 33.5, 6.5 33.5))" +"POLYGON ((7 33.5, 7 33, 6.5 33, 6.5 33.5, 7 33.5))" +"POLYGON ((7.5 33.5, 7.5 33, 7 33, 7 33.5, 7.5 33.5))" +"POLYGON ((8 33.5, 8 33, 7.5 33, 7.5 33.5, 8 33.5))" +"POLYGON ((8.5 33.5, 8.5 33, 8 33, 8 33.5, 8.5 33.5))" +"POLYGON ((9 33.5, 9 33, 8.5 33, 8.5 33.5, 9 33.5))" +"POLYGON ((9.5 33.5, 9.5 33, 9 33, 9 33.5, 9.5 33.5))" +"POLYGON ((10 33.5, 10 33, 9.5 33, 9.5 33.5, 10 33.5))" +"POLYGON ((10.5 33.5, 10.5 33, 10 33, 10 33.5, 10.5 33.5))" +"POLYGON ((11 33.5, 11 33, 10.5 33, 10.5 33.5, 11 33.5))" +"POLYGON ((-7 34, -7 33.5, -7.5 33.5, -7.5 34, -7 34))" +"POLYGON ((-6.5 34, -6.5 33.5, -7 33.5, -7 34, -6.5 34))" +"POLYGON ((-6 34, -6 33.5, -6.5 33.5, -6.5 34, -6 34))" +"POLYGON ((-5.5 34, -5.5 33.5, -6 33.5, -6 34, -5.5 34))" +"POLYGON ((-5 34, -5 33.5, -5.5 33.5, -5.5 34, -5 34))" +"POLYGON ((-4.5 34, -4.5 33.5, -5 33.5, -5 34, -4.5 34))" +"POLYGON ((-4 34, -4 33.5, -4.5 33.5, -4.5 34, -4 34))" +"POLYGON ((-3.5 34, -3.5 33.5, -4 33.5, -4 34, -3.5 34))" +"POLYGON ((-3 34, -3 33.5, -3.5 33.5, -3.5 34, -3 34))" +"POLYGON ((-2.5 34, -2.5 33.5, -3 33.5, -3 34, -2.5 34))" +"POLYGON ((-2 34, -2 33.5, -2.5 33.5, -2.5 34, -2 34))" +"POLYGON ((-1.5 34, -1.5 33.5, -2 33.5, -2 34, -1.5 34))" +"POLYGON ((-1 34, -1 33.5, -1.5 33.5, -1.5 34, -1 34))" +"POLYGON ((-0.5 34, -0.5 33.5, -1 33.5, -1 34, -0.5 34))" +"POLYGON ((0 34, 0 33.5, -0.5 33.5, -0.5 34, 0 34))" +"POLYGON ((0.5 34, 0.5 33.5, 0 33.5, 0 34, 0.5 34))" +"POLYGON ((1 34, 1 33.5, 0.5 33.5, 0.5 34, 1 34))" +"POLYGON ((1.5 34, 1.5 33.5, 1 33.5, 1 34, 1.5 34))" +"POLYGON ((2 34, 2 33.5, 1.5 33.5, 1.5 34, 2 34))" +"POLYGON ((2.5 34, 2.5 33.5, 2 33.5, 2 34, 2.5 34))" +"POLYGON ((3 34, 3 33.5, 2.5 33.5, 2.5 34, 3 34))" +"POLYGON ((3.5 34, 3.5 33.5, 3 33.5, 3 34, 3.5 34))" +"POLYGON ((4 34, 4 33.5, 3.5 33.5, 3.5 34, 4 34))" +"POLYGON ((4.5 34, 4.5 33.5, 4 33.5, 4 34, 4.5 34))" +"POLYGON ((5 34, 5 33.5, 4.5 33.5, 4.5 34, 5 34))" +"POLYGON ((5.5 34, 5.5 33.5, 5 33.5, 5 34, 5.5 34))" +"POLYGON ((6 34, 6 33.5, 5.5 33.5, 5.5 34, 6 34))" +"POLYGON ((6.5 34, 6.5 33.5, 6 33.5, 6 34, 6.5 34))" +"POLYGON ((7 34, 7 33.5, 6.5 33.5, 6.5 34, 7 34))" +"POLYGON ((7.5 34, 7.5 33.5, 7 33.5, 7 34, 7.5 34))" +"POLYGON ((8 34, 8 33.5, 7.5 33.5, 7.5 34, 8 34))" +"POLYGON ((8.5 34, 8.5 33.5, 8 33.5, 8 34, 8.5 34))" +"POLYGON ((9 34, 9 33.5, 8.5 33.5, 8.5 34, 9 34))" +"POLYGON ((9.5 34, 9.5 33.5, 9 33.5, 9 34, 9.5 34))" +"POLYGON ((10 34, 10 33.5, 9.5 33.5, 9.5 34, 10 34))" +"POLYGON ((10.5 34, 10.5 33.5, 10 33.5, 10 34, 10.5 34))" +"POLYGON ((11 34, 11 33.5, 10.5 33.5, 10.5 34, 11 34))" +"POLYGON ((-6 34.5, -6 34, -6.5 34, -6.5 34.5, -6 34.5))" +"POLYGON ((-5.5 34.5, -5.5 34, -6 34, -6 34.5, -5.5 34.5))" +"POLYGON ((-5 34.5, -5 34, -5.5 34, -5.5 34.5, -5 34.5))" +"POLYGON ((-4.5 34.5, -4.5 34, -5 34, -5 34.5, -4.5 34.5))" +"POLYGON ((-4 34.5, -4 34, -4.5 34, -4.5 34.5, -4 34.5))" +"POLYGON ((-3.5 34.5, -3.5 34, -4 34, -4 34.5, -3.5 34.5))" +"POLYGON ((-3 34.5, -3 34, -3.5 34, -3.5 34.5, -3 34.5))" +"POLYGON ((-2.5 34.5, -2.5 34, -3 34, -3 34.5, -2.5 34.5))" +"POLYGON ((-2 34.5, -2 34, -2.5 34, -2.5 34.5, -2 34.5))" +"POLYGON ((-1.5 34.5, -1.5 34, -2 34, -2 34.5, -1.5 34.5))" +"POLYGON ((-1 34.5, -1 34, -1.5 34, -1.5 34.5, -1 34.5))" +"POLYGON ((-0.5 34.5, -0.5 34, -1 34, -1 34.5, -0.5 34.5))" +"POLYGON ((0 34.5, 0 34, -0.5 34, -0.5 34.5, 0 34.5))" +"POLYGON ((0.5 34.5, 0.5 34, 0 34, 0 34.5, 0.5 34.5))" +"POLYGON ((1 34.5, 1 34, 0.5 34, 0.5 34.5, 1 34.5))" +"POLYGON ((1.5 34.5, 1.5 34, 1 34, 1 34.5, 1.5 34.5))" +"POLYGON ((2 34.5, 2 34, 1.5 34, 1.5 34.5, 2 34.5))" +"POLYGON ((2.5 34.5, 2.5 34, 2 34, 2 34.5, 2.5 34.5))" +"POLYGON ((3 34.5, 3 34, 2.5 34, 2.5 34.5, 3 34.5))" +"POLYGON ((3.5 34.5, 3.5 34, 3 34, 3 34.5, 3.5 34.5))" +"POLYGON ((4 34.5, 4 34, 3.5 34, 3.5 34.5, 4 34.5))" +"POLYGON ((4.5 34.5, 4.5 34, 4 34, 4 34.5, 4.5 34.5))" +"POLYGON ((5 34.5, 5 34, 4.5 34, 4.5 34.5, 5 34.5))" +"POLYGON ((5.5 34.5, 5.5 34, 5 34, 5 34.5, 5.5 34.5))" +"POLYGON ((6 34.5, 6 34, 5.5 34, 5.5 34.5, 6 34.5))" +"POLYGON ((6.5 34.5, 6.5 34, 6 34, 6 34.5, 6.5 34.5))" +"POLYGON ((7 34.5, 7 34, 6.5 34, 6.5 34.5, 7 34.5))" +"POLYGON ((7.5 34.5, 7.5 34, 7 34, 7 34.5, 7.5 34.5))" +"POLYGON ((8 34.5, 8 34, 7.5 34, 7.5 34.5, 8 34.5))" +"POLYGON ((8.5 34.5, 8.5 34, 8 34, 8 34.5, 8.5 34.5))" +"POLYGON ((9 34.5, 9 34, 8.5 34, 8.5 34.5, 9 34.5))" +"POLYGON ((9.5 34.5, 9.5 34, 9 34, 9 34.5, 9.5 34.5))" +"POLYGON ((10 34.5, 10 34, 9.5 34, 9.5 34.5, 10 34.5))" +"POLYGON ((-6 35, -6 34.5, -6.5 34.5, -6.5 35, -6 35))" +"POLYGON ((-5.5 35, -5.5 34.5, -6 34.5, -6 35, -5.5 35))" +"POLYGON ((-5 35, -5 34.5, -5.5 34.5, -5.5 35, -5 35))" +"POLYGON ((-4.5 35, -4.5 34.5, -5 34.5, -5 35, -4.5 35))" +"POLYGON ((-4 35, -4 34.5, -4.5 34.5, -4.5 35, -4 35))" +"POLYGON ((-3.5 35, -3.5 34.5, -4 34.5, -4 35, -3.5 35))" +"POLYGON ((-3 35, -3 34.5, -3.5 34.5, -3.5 35, -3 35))" +"POLYGON ((-2.5 35, -2.5 34.5, -3 34.5, -3 35, -2.5 35))" +"POLYGON ((-2 35, -2 34.5, -2.5 34.5, -2.5 35, -2 35))" +"POLYGON ((-1.5 35, -1.5 34.5, -2 34.5, -2 35, -1.5 35))" +"POLYGON ((-1 35, -1 34.5, -1.5 34.5, -1.5 35, -1 35))" +"POLYGON ((-0.5 35, -0.5 34.5, -1 34.5, -1 35, -0.5 35))" +"POLYGON ((0 35, 0 34.5, -0.5 34.5, -0.5 35, 0 35))" +"POLYGON ((0.5 35, 0.5 34.5, 0 34.5, 0 35, 0.5 35))" +"POLYGON ((1 35, 1 34.5, 0.5 34.5, 0.5 35, 1 35))" +"POLYGON ((1.5 35, 1.5 34.5, 1 34.5, 1 35, 1.5 35))" +"POLYGON ((2 35, 2 34.5, 1.5 34.5, 1.5 35, 2 35))" +"POLYGON ((2.5 35, 2.5 34.5, 2 34.5, 2 35, 2.5 35))" +"POLYGON ((3 35, 3 34.5, 2.5 34.5, 2.5 35, 3 35))" +"POLYGON ((3.5 35, 3.5 34.5, 3 34.5, 3 35, 3.5 35))" +"POLYGON ((4 35, 4 34.5, 3.5 34.5, 3.5 35, 4 35))" +"POLYGON ((4.5 35, 4.5 34.5, 4 34.5, 4 35, 4.5 35))" +"POLYGON ((5 35, 5 34.5, 4.5 34.5, 4.5 35, 5 35))" +"POLYGON ((5.5 35, 5.5 34.5, 5 34.5, 5 35, 5.5 35))" +"POLYGON ((6 35, 6 34.5, 5.5 34.5, 5.5 35, 6 35))" +"POLYGON ((6.5 35, 6.5 34.5, 6 34.5, 6 35, 6.5 35))" +"POLYGON ((7 35, 7 34.5, 6.5 34.5, 6.5 35, 7 35))" +"POLYGON ((7.5 35, 7.5 34.5, 7 34.5, 7 35, 7.5 35))" +"POLYGON ((8 35, 8 34.5, 7.5 34.5, 7.5 35, 8 35))" +"POLYGON ((8.5 35, 8.5 34.5, 8 34.5, 8 35, 8.5 35))" +"POLYGON ((9 35, 9 34.5, 8.5 34.5, 8.5 35, 9 35))" +"POLYGON ((9.5 35, 9.5 34.5, 9 34.5, 9 35, 9.5 35))" +"POLYGON ((10 35, 10 34.5, 9.5 34.5, 9.5 35, 10 35))" +"POLYGON ((10.5 35, 10.5 34.5, 10 34.5, 10 35, 10.5 35))" +"POLYGON ((11 35, 11 34.5, 10.5 34.5, 10.5 35, 11 35))" +"POLYGON ((11.5 35, 11.5 34.5, 11 34.5, 11 35, 11.5 35))" +"POLYGON ((-5.5 35.5, -5.5 35, -6 35, -6 35.5, -5.5 35.5))" +"POLYGON ((-5 35.5, -5 35, -5.5 35, -5.5 35.5, -5 35.5))" +"POLYGON ((-1 35.5, -1 35, -1.5 35, -1.5 35.5, -1 35.5))" +"POLYGON ((-0.5 35.5, -0.5 35, -1 35, -1 35.5, -0.5 35.5))" +"POLYGON ((0 35.5, 0 35, -0.5 35, -0.5 35.5, 0 35.5))" +"POLYGON ((0.5 35.5, 0.5 35, 0 35, 0 35.5, 0.5 35.5))" +"POLYGON ((1 35.5, 1 35, 0.5 35, 0.5 35.5, 1 35.5))" +"POLYGON ((1.5 35.5, 1.5 35, 1 35, 1 35.5, 1.5 35.5))" +"POLYGON ((2 35.5, 2 35, 1.5 35, 1.5 35.5, 2 35.5))" +"POLYGON ((2.5 35.5, 2.5 35, 2 35, 2 35.5, 2.5 35.5))" +"POLYGON ((3 35.5, 3 35, 2.5 35, 2.5 35.5, 3 35.5))" +"POLYGON ((3.5 35.5, 3.5 35, 3 35, 3 35.5, 3.5 35.5))" +"POLYGON ((4 35.5, 4 35, 3.5 35, 3.5 35.5, 4 35.5))" +"POLYGON ((4.5 35.5, 4.5 35, 4 35, 4 35.5, 4.5 35.5))" +"POLYGON ((5 35.5, 5 35, 4.5 35, 4.5 35.5, 5 35.5))" +"POLYGON ((5.5 35.5, 5.5 35, 5 35, 5 35.5, 5.5 35.5))" +"POLYGON ((6 35.5, 6 35, 5.5 35, 5.5 35.5, 6 35.5))" +"POLYGON ((6.5 35.5, 6.5 35, 6 35, 6 35.5, 6.5 35.5))" +"POLYGON ((7 35.5, 7 35, 6.5 35, 6.5 35.5, 7 35.5))" +"POLYGON ((7.5 35.5, 7.5 35, 7 35, 7 35.5, 7.5 35.5))" +"POLYGON ((8 35.5, 8 35, 7.5 35, 7.5 35.5, 8 35.5))" +"POLYGON ((8.5 35.5, 8.5 35, 8 35, 8 35.5, 8.5 35.5))" +"POLYGON ((9 35.5, 9 35, 8.5 35, 8.5 35.5, 9 35.5))" +"POLYGON ((9.5 35.5, 9.5 35, 9 35, 9 35.5, 9.5 35.5))" +"POLYGON ((10 35.5, 10 35, 9.5 35, 9.5 35.5, 10 35.5))" +"POLYGON ((10.5 35.5, 10.5 35, 10 35, 10 35.5, 10.5 35.5))" +"POLYGON ((11 35.5, 11 35, 10.5 35, 10.5 35.5, 11 35.5))" +"POLYGON ((-5.5 36, -5.5 35.5, -6 35.5, -6 36, -5.5 36))" +"POLYGON ((-0.5 36, -0.5 35.5, -1 35.5, -1 36, -0.5 36))" +"POLYGON ((0 36, 0 35.5, -0.5 35.5, -0.5 36, 0 36))" +"POLYGON ((0.5 36, 0.5 35.5, 0 35.5, 0 36, 0.5 36))" +"POLYGON ((1 36, 1 35.5, 0.5 35.5, 0.5 36, 1 36))" +"POLYGON ((1.5 36, 1.5 35.5, 1 35.5, 1 36, 1.5 36))" +"POLYGON ((2 36, 2 35.5, 1.5 35.5, 1.5 36, 2 36))" +"POLYGON ((2.5 36, 2.5 35.5, 2 35.5, 2 36, 2.5 36))" +"POLYGON ((3 36, 3 35.5, 2.5 35.5, 2.5 36, 3 36))" +"POLYGON ((3.5 36, 3.5 35.5, 3 35.5, 3 36, 3.5 36))" +"POLYGON ((4 36, 4 35.5, 3.5 35.5, 3.5 36, 4 36))" +"POLYGON ((4.5 36, 4.5 35.5, 4 35.5, 4 36, 4.5 36))" +"POLYGON ((5 36, 5 35.5, 4.5 35.5, 4.5 36, 5 36))" +"POLYGON ((5.5 36, 5.5 35.5, 5 35.5, 5 36, 5.5 36))" +"POLYGON ((6 36, 6 35.5, 5.5 35.5, 5.5 36, 6 36))" +"POLYGON ((6.5 36, 6.5 35.5, 6 35.5, 6 36, 6.5 36))" +"POLYGON ((7 36, 7 35.5, 6.5 35.5, 6.5 36, 7 36))" +"POLYGON ((7.5 36, 7.5 35.5, 7 35.5, 7 36, 7.5 36))" +"POLYGON ((8 36, 8 35.5, 7.5 35.5, 7.5 36, 8 36))" +"POLYGON ((8.5 36, 8.5 35.5, 8 35.5, 8 36, 8.5 36))" +"POLYGON ((9 36, 9 35.5, 8.5 35.5, 8.5 36, 9 36))" +"POLYGON ((9.5 36, 9.5 35.5, 9 35.5, 9 36, 9.5 36))" +"POLYGON ((10 36, 10 35.5, 9.5 35.5, 9.5 36, 10 36))" +"POLYGON ((10.5 36, 10.5 35.5, 10 35.5, 10 36, 10.5 36))" +"POLYGON ((11 36, 11 35.5, 10.5 35.5, 10.5 36, 11 36))" +"POLYGON ((1 36.5, 1 36, 0.5 36, 0.5 36.5, 1 36.5))" +"POLYGON ((1.5 36.5, 1.5 36, 1 36, 1 36.5, 1.5 36.5))" +"POLYGON ((2 36.5, 2 36, 1.5 36, 1.5 36.5, 2 36.5))" +"POLYGON ((2.5 36.5, 2.5 36, 2 36, 2 36.5, 2.5 36.5))" +"POLYGON ((3 36.5, 3 36, 2.5 36, 2.5 36.5, 3 36.5))" +"POLYGON ((3.5 36.5, 3.5 36, 3 36, 3 36.5, 3.5 36.5))" +"POLYGON ((4 36.5, 4 36, 3.5 36, 3.5 36.5, 4 36.5))" +"POLYGON ((4.5 36.5, 4.5 36, 4 36, 4 36.5, 4.5 36.5))" +"POLYGON ((5 36.5, 5 36, 4.5 36, 4.5 36.5, 5 36.5))" +"POLYGON ((5.5 36.5, 5.5 36, 5 36, 5 36.5, 5.5 36.5))" +"POLYGON ((6 36.5, 6 36, 5.5 36, 5.5 36.5, 6 36.5))" +"POLYGON ((6.5 36.5, 6.5 36, 6 36, 6 36.5, 6.5 36.5))" +"POLYGON ((7 36.5, 7 36, 6.5 36, 6.5 36.5, 7 36.5))" +"POLYGON ((7.5 36.5, 7.5 36, 7 36, 7 36.5, 7.5 36.5))" +"POLYGON ((8 36.5, 8 36, 7.5 36, 7.5 36.5, 8 36.5))" +"POLYGON ((8.5 36.5, 8.5 36, 8 36, 8 36.5, 8.5 36.5))" +"POLYGON ((9 36.5, 9 36, 8.5 36, 8.5 36.5, 9 36.5))" +"POLYGON ((9.5 36.5, 9.5 36, 9 36, 9 36.5, 9.5 36.5))" +"POLYGON ((10 36.5, 10 36, 9.5 36, 9.5 36.5, 10 36.5))" +"POLYGON ((10.5 36.5, 10.5 36, 10 36, 10 36.5, 10.5 36.5))" +"POLYGON ((3.5 37, 3.5 36.5, 3 36.5, 3 37, 3.5 37))" +"POLYGON ((4 37, 4 36.5, 3.5 36.5, 3.5 37, 4 37))" +"POLYGON ((4.5 37, 4.5 36.5, 4 36.5, 4 37, 4.5 37))" +"POLYGON ((5 37, 5 36.5, 4.5 36.5, 4.5 37, 5 37))" +"POLYGON ((6 37, 6 36.5, 5.5 36.5, 5.5 37, 6 37))" +"POLYGON ((6.5 37, 6.5 36.5, 6 36.5, 6 37, 6.5 37))" +"POLYGON ((7 37, 7 36.5, 6.5 36.5, 6.5 37, 7 37))" +"POLYGON ((7.5 37, 7.5 36.5, 7 36.5, 7 37, 7.5 37))" +"POLYGON ((8 37, 8 36.5, 7.5 36.5, 7.5 37, 8 37))" +"POLYGON ((8.5 37, 8.5 36.5, 8 36.5, 8 37, 8.5 37))" +"POLYGON ((9 37, 9 36.5, 8.5 36.5, 8.5 37, 9 37))" +"POLYGON ((9.5 37, 9.5 36.5, 9 36.5, 9 37, 9.5 37))" +"POLYGON ((10 37, 10 36.5, 9.5 36.5, 9.5 37, 10 37))" +"POLYGON ((10.5 37, 10.5 36.5, 10 36.5, 10 37, 10.5 37))" +"POLYGON ((11 37, 11 36.5, 10.5 36.5, 10.5 37, 11 37))" +"POLYGON ((10 37.5, 10 37, 9.5 37, 9.5 37.5, 10 37.5))" diff --git a/data/synced-data/poly-grid.geojson b/data/synced-data/poly-grid.geojson new file mode 100644 index 0000000..a2741e4 --- /dev/null +++ b/data/synced-data/poly-grid.geojson @@ -0,0 +1,10241 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -34.0 ], [ 19.5, -34.5 ], [ 19.0, -34.5 ], [ 19.0, -34.0 ], [ 19.5, -34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -34.0 ], [ 20.0, -34.5 ], [ 19.5, -34.5 ], [ 19.5, -34.0 ], [ 20.0, -34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -34.0 ], [ 20.5, -34.5 ], [ 20.0, -34.5 ], [ 20.0, -34.0 ], [ 20.5, -34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -34.0 ], [ 21.0, -34.5 ], [ 20.5, -34.5 ], [ 20.5, -34.0 ], [ 21.0, -34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -34.0 ], [ 21.5, -34.5 ], [ 21.0, -34.5 ], [ 21.0, -34.0 ], [ 21.5, -34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -34.0 ], [ 22.0, -34.5 ], [ 21.5, -34.5 ], [ 21.5, -34.0 ], [ 22.0, -34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -33.5 ], [ 19.0, -34.0 ], [ 18.5, -34.0 ], [ 18.5, -33.5 ], [ 19.0, -33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -33.5 ], [ 19.5, -34.0 ], [ 19.0, -34.0 ], [ 19.0, -33.5 ], [ 19.5, -33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -33.5 ], [ 20.0, -34.0 ], [ 19.5, -34.0 ], [ 19.5, -33.5 ], [ 20.0, -33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -33.5 ], [ 20.5, -34.0 ], [ 20.0, -34.0 ], [ 20.0, -33.5 ], [ 20.5, -33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -33.5 ], [ 21.0, -34.0 ], [ 20.5, -34.0 ], [ 20.5, -33.5 ], [ 21.0, -33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -33.5 ], [ 21.5, -34.0 ], [ 21.0, -34.0 ], [ 21.0, -33.5 ], [ 21.5, -33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -33.5 ], [ 22.0, -34.0 ], [ 21.5, -34.0 ], [ 21.5, -33.5 ], [ 22.0, -33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -33.5 ], [ 22.5, -34.0 ], [ 22.0, -34.0 ], [ 22.0, -33.5 ], [ 22.5, -33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -33.5 ], [ 23.0, -34.0 ], [ 22.5, -34.0 ], [ 22.5, -33.5 ], [ 23.0, -33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -33.5 ], [ 23.5, -34.0 ], [ 23.0, -34.0 ], [ 23.0, -33.5 ], [ 23.5, -33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -33.5 ], [ 24.0, -34.0 ], [ 23.5, -34.0 ], [ 23.5, -33.5 ], [ 24.0, -33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -33.5 ], [ 24.5, -34.0 ], [ 24.0, -34.0 ], [ 24.0, -33.5 ], [ 24.5, -33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -33.5 ], [ 25.0, -34.0 ], [ 24.5, -34.0 ], [ 24.5, -33.5 ], [ 25.0, -33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -33.5 ], [ 25.5, -34.0 ], [ 25.0, -34.0 ], [ 25.0, -33.5 ], [ 25.5, -33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -33.5 ], [ 26.0, -34.0 ], [ 25.5, -34.0 ], [ 25.5, -33.5 ], [ 26.0, -33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -33.5 ], [ 26.5, -34.0 ], [ 26.0, -34.0 ], [ 26.0, -33.5 ], [ 26.5, -33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -33.0 ], [ 18.5, -33.5 ], [ 18.0, -33.5 ], [ 18.0, -33.0 ], [ 18.5, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -33.0 ], [ 19.0, -33.5 ], [ 18.5, -33.5 ], [ 18.5, -33.0 ], [ 19.0, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -33.0 ], [ 19.5, -33.5 ], [ 19.0, -33.5 ], [ 19.0, -33.0 ], [ 19.5, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -33.0 ], [ 20.0, -33.5 ], [ 19.5, -33.5 ], [ 19.5, -33.0 ], [ 20.0, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -33.0 ], [ 20.5, -33.5 ], [ 20.0, -33.5 ], [ 20.0, -33.0 ], [ 20.5, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -33.0 ], [ 21.0, -33.5 ], [ 20.5, -33.5 ], [ 20.5, -33.0 ], [ 21.0, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -33.0 ], [ 21.5, -33.5 ], [ 21.0, -33.5 ], [ 21.0, -33.0 ], [ 21.5, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -33.0 ], [ 22.0, -33.5 ], [ 21.5, -33.5 ], [ 21.5, -33.0 ], [ 22.0, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -33.0 ], [ 22.5, -33.5 ], [ 22.0, -33.5 ], [ 22.0, -33.0 ], [ 22.5, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -33.0 ], [ 23.0, -33.5 ], [ 22.5, -33.5 ], [ 22.5, -33.0 ], [ 23.0, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -33.0 ], [ 23.5, -33.5 ], [ 23.0, -33.5 ], [ 23.0, -33.0 ], [ 23.5, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -33.0 ], [ 24.0, -33.5 ], [ 23.5, -33.5 ], [ 23.5, -33.0 ], [ 24.0, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -33.0 ], [ 24.5, -33.5 ], [ 24.0, -33.5 ], [ 24.0, -33.0 ], [ 24.5, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -33.0 ], [ 25.0, -33.5 ], [ 24.5, -33.5 ], [ 24.5, -33.0 ], [ 25.0, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -33.0 ], [ 25.5, -33.5 ], [ 25.0, -33.5 ], [ 25.0, -33.0 ], [ 25.5, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -33.0 ], [ 26.0, -33.5 ], [ 25.5, -33.5 ], [ 25.5, -33.0 ], [ 26.0, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -33.0 ], [ 26.5, -33.5 ], [ 26.0, -33.5 ], [ 26.0, -33.0 ], [ 26.5, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -33.0 ], [ 27.0, -33.5 ], [ 26.5, -33.5 ], [ 26.5, -33.0 ], [ 27.0, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -33.0 ], [ 27.5, -33.5 ], [ 27.0, -33.5 ], [ 27.0, -33.0 ], [ 27.5, -33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -32.5 ], [ 18.5, -33.0 ], [ 18.0, -33.0 ], [ 18.0, -32.5 ], [ 18.5, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -32.5 ], [ 19.0, -33.0 ], [ 18.5, -33.0 ], [ 18.5, -32.5 ], [ 19.0, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -32.5 ], [ 19.5, -33.0 ], [ 19.0, -33.0 ], [ 19.0, -32.5 ], [ 19.5, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -32.5 ], [ 20.0, -33.0 ], [ 19.5, -33.0 ], [ 19.5, -32.5 ], [ 20.0, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -32.5 ], [ 20.5, -33.0 ], [ 20.0, -33.0 ], [ 20.0, -32.5 ], [ 20.5, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -32.5 ], [ 21.0, -33.0 ], [ 20.5, -33.0 ], [ 20.5, -32.5 ], [ 21.0, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -32.5 ], [ 21.5, -33.0 ], [ 21.0, -33.0 ], [ 21.0, -32.5 ], [ 21.5, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -32.5 ], [ 22.0, -33.0 ], [ 21.5, -33.0 ], [ 21.5, -32.5 ], [ 22.0, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -32.5 ], [ 22.5, -33.0 ], [ 22.0, -33.0 ], [ 22.0, -32.5 ], [ 22.5, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -32.5 ], [ 23.0, -33.0 ], [ 22.5, -33.0 ], [ 22.5, -32.5 ], [ 23.0, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -32.5 ], [ 23.5, -33.0 ], [ 23.0, -33.0 ], [ 23.0, -32.5 ], [ 23.5, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -32.5 ], [ 24.0, -33.0 ], [ 23.5, -33.0 ], [ 23.5, -32.5 ], [ 24.0, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -32.5 ], [ 24.5, -33.0 ], [ 24.0, -33.0 ], [ 24.0, -32.5 ], [ 24.5, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -32.5 ], [ 25.0, -33.0 ], [ 24.5, -33.0 ], [ 24.5, -32.5 ], [ 25.0, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -32.5 ], [ 25.5, -33.0 ], [ 25.0, -33.0 ], [ 25.0, -32.5 ], [ 25.5, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -32.5 ], [ 26.0, -33.0 ], [ 25.5, -33.0 ], [ 25.5, -32.5 ], [ 26.0, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -32.5 ], [ 26.5, -33.0 ], [ 26.0, -33.0 ], [ 26.0, -32.5 ], [ 26.5, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -32.5 ], [ 27.0, -33.0 ], [ 26.5, -33.0 ], [ 26.5, -32.5 ], [ 27.0, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -32.5 ], [ 27.5, -33.0 ], [ 27.0, -33.0 ], [ 27.0, -32.5 ], [ 27.5, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -32.5 ], [ 28.0, -33.0 ], [ 27.5, -33.0 ], [ 27.5, -32.5 ], [ 28.0, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -32.5 ], [ 28.5, -33.0 ], [ 28.0, -33.0 ], [ 28.0, -32.5 ], [ 28.5, -32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -32.0 ], [ 19.0, -32.5 ], [ 18.5, -32.5 ], [ 18.5, -32.0 ], [ 19.0, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -32.0 ], [ 19.5, -32.5 ], [ 19.0, -32.5 ], [ 19.0, -32.0 ], [ 19.5, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -32.0 ], [ 20.0, -32.5 ], [ 19.5, -32.5 ], [ 19.5, -32.0 ], [ 20.0, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -32.0 ], [ 20.5, -32.5 ], [ 20.0, -32.5 ], [ 20.0, -32.0 ], [ 20.5, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -32.0 ], [ 21.0, -32.5 ], [ 20.5, -32.5 ], [ 20.5, -32.0 ], [ 21.0, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -32.0 ], [ 21.5, -32.5 ], [ 21.0, -32.5 ], [ 21.0, -32.0 ], [ 21.5, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -32.0 ], [ 22.0, -32.5 ], [ 21.5, -32.5 ], [ 21.5, -32.0 ], [ 22.0, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -32.0 ], [ 22.5, -32.5 ], [ 22.0, -32.5 ], [ 22.0, -32.0 ], [ 22.5, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -32.0 ], [ 23.0, -32.5 ], [ 22.5, -32.5 ], [ 22.5, -32.0 ], [ 23.0, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -32.0 ], [ 23.5, -32.5 ], [ 23.0, -32.5 ], [ 23.0, -32.0 ], [ 23.5, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -32.0 ], [ 24.0, -32.5 ], [ 23.5, -32.5 ], [ 23.5, -32.0 ], [ 24.0, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -32.0 ], [ 24.5, -32.5 ], [ 24.0, -32.5 ], [ 24.0, -32.0 ], [ 24.5, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -32.0 ], [ 25.0, -32.5 ], [ 24.5, -32.5 ], [ 24.5, -32.0 ], [ 25.0, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -32.0 ], [ 25.5, -32.5 ], [ 25.0, -32.5 ], [ 25.0, -32.0 ], [ 25.5, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -32.0 ], [ 26.0, -32.5 ], [ 25.5, -32.5 ], [ 25.5, -32.0 ], [ 26.0, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -32.0 ], [ 26.5, -32.5 ], [ 26.0, -32.5 ], [ 26.0, -32.0 ], [ 26.5, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -32.0 ], [ 27.0, -32.5 ], [ 26.5, -32.5 ], [ 26.5, -32.0 ], [ 27.0, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -32.0 ], [ 27.5, -32.5 ], [ 27.0, -32.5 ], [ 27.0, -32.0 ], [ 27.5, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -32.0 ], [ 28.0, -32.5 ], [ 27.5, -32.5 ], [ 27.5, -32.0 ], [ 28.0, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -32.0 ], [ 28.5, -32.5 ], [ 28.0, -32.5 ], [ 28.0, -32.0 ], [ 28.5, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -32.0 ], [ 29.0, -32.5 ], [ 28.5, -32.5 ], [ 28.5, -32.0 ], [ 29.0, -32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -31.5 ], [ 18.5, -32.0 ], [ 18.0, -32.0 ], [ 18.0, -31.5 ], [ 18.5, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -31.5 ], [ 19.0, -32.0 ], [ 18.5, -32.0 ], [ 18.5, -31.5 ], [ 19.0, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -31.5 ], [ 19.5, -32.0 ], [ 19.0, -32.0 ], [ 19.0, -31.5 ], [ 19.5, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -31.5 ], [ 20.0, -32.0 ], [ 19.5, -32.0 ], [ 19.5, -31.5 ], [ 20.0, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -31.5 ], [ 20.5, -32.0 ], [ 20.0, -32.0 ], [ 20.0, -31.5 ], [ 20.5, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -31.5 ], [ 21.0, -32.0 ], [ 20.5, -32.0 ], [ 20.5, -31.5 ], [ 21.0, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -31.5 ], [ 21.5, -32.0 ], [ 21.0, -32.0 ], [ 21.0, -31.5 ], [ 21.5, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -31.5 ], [ 22.0, -32.0 ], [ 21.5, -32.0 ], [ 21.5, -31.5 ], [ 22.0, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -31.5 ], [ 22.5, -32.0 ], [ 22.0, -32.0 ], [ 22.0, -31.5 ], [ 22.5, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -31.5 ], [ 23.0, -32.0 ], [ 22.5, -32.0 ], [ 22.5, -31.5 ], [ 23.0, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -31.5 ], [ 23.5, -32.0 ], [ 23.0, -32.0 ], [ 23.0, -31.5 ], [ 23.5, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -31.5 ], [ 24.0, -32.0 ], [ 23.5, -32.0 ], [ 23.5, -31.5 ], [ 24.0, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -31.5 ], [ 24.5, -32.0 ], [ 24.0, -32.0 ], [ 24.0, -31.5 ], [ 24.5, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -31.5 ], [ 25.0, -32.0 ], [ 24.5, -32.0 ], [ 24.5, -31.5 ], [ 25.0, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -31.5 ], [ 25.5, -32.0 ], [ 25.0, -32.0 ], [ 25.0, -31.5 ], [ 25.5, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -31.5 ], [ 26.0, -32.0 ], [ 25.5, -32.0 ], [ 25.5, -31.5 ], [ 26.0, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -31.5 ], [ 26.5, -32.0 ], [ 26.0, -32.0 ], [ 26.0, -31.5 ], [ 26.5, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -31.5 ], [ 27.0, -32.0 ], [ 26.5, -32.0 ], [ 26.5, -31.5 ], [ 27.0, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -31.5 ], [ 27.5, -32.0 ], [ 27.0, -32.0 ], [ 27.0, -31.5 ], [ 27.5, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -31.5 ], [ 28.0, -32.0 ], [ 27.5, -32.0 ], [ 27.5, -31.5 ], [ 28.0, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -31.5 ], [ 28.5, -32.0 ], [ 28.0, -32.0 ], [ 28.0, -31.5 ], [ 28.5, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -31.5 ], [ 29.0, -32.0 ], [ 28.5, -32.0 ], [ 28.5, -31.5 ], [ 29.0, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -31.5 ], [ 29.5, -32.0 ], [ 29.0, -32.0 ], [ 29.0, -31.5 ], [ 29.5, -31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -31.0 ], [ 18.5, -31.5 ], [ 18.0, -31.5 ], [ 18.0, -31.0 ], [ 18.5, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -31.0 ], [ 19.0, -31.5 ], [ 18.5, -31.5 ], [ 18.5, -31.0 ], [ 19.0, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -31.0 ], [ 19.5, -31.5 ], [ 19.0, -31.5 ], [ 19.0, -31.0 ], [ 19.5, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -31.0 ], [ 20.0, -31.5 ], [ 19.5, -31.5 ], [ 19.5, -31.0 ], [ 20.0, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -31.0 ], [ 20.5, -31.5 ], [ 20.0, -31.5 ], [ 20.0, -31.0 ], [ 20.5, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -31.0 ], [ 21.0, -31.5 ], [ 20.5, -31.5 ], [ 20.5, -31.0 ], [ 21.0, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -31.0 ], [ 21.5, -31.5 ], [ 21.0, -31.5 ], [ 21.0, -31.0 ], [ 21.5, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -31.0 ], [ 22.0, -31.5 ], [ 21.5, -31.5 ], [ 21.5, -31.0 ], [ 22.0, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -31.0 ], [ 22.5, -31.5 ], [ 22.0, -31.5 ], [ 22.0, -31.0 ], [ 22.5, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -31.0 ], [ 23.0, -31.5 ], [ 22.5, -31.5 ], [ 22.5, -31.0 ], [ 23.0, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -31.0 ], [ 23.5, -31.5 ], [ 23.0, -31.5 ], [ 23.0, -31.0 ], [ 23.5, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -31.0 ], [ 24.0, -31.5 ], [ 23.5, -31.5 ], [ 23.5, -31.0 ], [ 24.0, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -31.0 ], [ 24.5, -31.5 ], [ 24.0, -31.5 ], [ 24.0, -31.0 ], [ 24.5, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -31.0 ], [ 25.0, -31.5 ], [ 24.5, -31.5 ], [ 24.5, -31.0 ], [ 25.0, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -31.0 ], [ 25.5, -31.5 ], [ 25.0, -31.5 ], [ 25.0, -31.0 ], [ 25.5, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -31.0 ], [ 26.0, -31.5 ], [ 25.5, -31.5 ], [ 25.5, -31.0 ], [ 26.0, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -31.0 ], [ 26.5, -31.5 ], [ 26.0, -31.5 ], [ 26.0, -31.0 ], [ 26.5, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -31.0 ], [ 27.0, -31.5 ], [ 26.5, -31.5 ], [ 26.5, -31.0 ], [ 27.0, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -31.0 ], [ 27.5, -31.5 ], [ 27.0, -31.5 ], [ 27.0, -31.0 ], [ 27.5, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -31.0 ], [ 28.0, -31.5 ], [ 27.5, -31.5 ], [ 27.5, -31.0 ], [ 28.0, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -31.0 ], [ 28.5, -31.5 ], [ 28.0, -31.5 ], [ 28.0, -31.0 ], [ 28.5, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -31.0 ], [ 29.0, -31.5 ], [ 28.5, -31.5 ], [ 28.5, -31.0 ], [ 29.0, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -31.0 ], [ 29.5, -31.5 ], [ 29.0, -31.5 ], [ 29.0, -31.0 ], [ 29.5, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -31.0 ], [ 30.0, -31.5 ], [ 29.5, -31.5 ], [ 29.5, -31.0 ], [ 30.0, -31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -30.5 ], [ 18.0, -31.0 ], [ 17.5, -31.0 ], [ 17.5, -30.5 ], [ 18.0, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -30.5 ], [ 18.5, -31.0 ], [ 18.0, -31.0 ], [ 18.0, -30.5 ], [ 18.5, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -30.5 ], [ 19.0, -31.0 ], [ 18.5, -31.0 ], [ 18.5, -30.5 ], [ 19.0, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -30.5 ], [ 19.5, -31.0 ], [ 19.0, -31.0 ], [ 19.0, -30.5 ], [ 19.5, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -30.5 ], [ 20.0, -31.0 ], [ 19.5, -31.0 ], [ 19.5, -30.5 ], [ 20.0, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -30.5 ], [ 20.5, -31.0 ], [ 20.0, -31.0 ], [ 20.0, -30.5 ], [ 20.5, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -30.5 ], [ 21.0, -31.0 ], [ 20.5, -31.0 ], [ 20.5, -30.5 ], [ 21.0, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -30.5 ], [ 21.5, -31.0 ], [ 21.0, -31.0 ], [ 21.0, -30.5 ], [ 21.5, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -30.5 ], [ 22.0, -31.0 ], [ 21.5, -31.0 ], [ 21.5, -30.5 ], [ 22.0, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -30.5 ], [ 22.5, -31.0 ], [ 22.0, -31.0 ], [ 22.0, -30.5 ], [ 22.5, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -30.5 ], [ 23.0, -31.0 ], [ 22.5, -31.0 ], [ 22.5, -30.5 ], [ 23.0, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -30.5 ], [ 23.5, -31.0 ], [ 23.0, -31.0 ], [ 23.0, -30.5 ], [ 23.5, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -30.5 ], [ 24.0, -31.0 ], [ 23.5, -31.0 ], [ 23.5, -30.5 ], [ 24.0, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -30.5 ], [ 24.5, -31.0 ], [ 24.0, -31.0 ], [ 24.0, -30.5 ], [ 24.5, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -30.5 ], [ 25.0, -31.0 ], [ 24.5, -31.0 ], [ 24.5, -30.5 ], [ 25.0, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -30.5 ], [ 25.5, -31.0 ], [ 25.0, -31.0 ], [ 25.0, -30.5 ], [ 25.5, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -30.5 ], [ 26.0, -31.0 ], [ 25.5, -31.0 ], [ 25.5, -30.5 ], [ 26.0, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -30.5 ], [ 26.5, -31.0 ], [ 26.0, -31.0 ], [ 26.0, -30.5 ], [ 26.5, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -30.5 ], [ 27.0, -31.0 ], [ 26.5, -31.0 ], [ 26.5, -30.5 ], [ 27.0, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -30.5 ], [ 27.5, -31.0 ], [ 27.0, -31.0 ], [ 27.0, -30.5 ], [ 27.5, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -30.5 ], [ 28.0, -31.0 ], [ 27.5, -31.0 ], [ 27.5, -30.5 ], [ 28.0, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -30.5 ], [ 28.5, -31.0 ], [ 28.0, -31.0 ], [ 28.0, -30.5 ], [ 28.5, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -30.5 ], [ 29.0, -31.0 ], [ 28.5, -31.0 ], [ 28.5, -30.5 ], [ 29.0, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -30.5 ], [ 29.5, -31.0 ], [ 29.0, -31.0 ], [ 29.0, -30.5 ], [ 29.5, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -30.5 ], [ 30.0, -31.0 ], [ 29.5, -31.0 ], [ 29.5, -30.5 ], [ 30.0, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -30.5 ], [ 30.5, -31.0 ], [ 30.0, -31.0 ], [ 30.0, -30.5 ], [ 30.5, -30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -30.0 ], [ 17.5, -30.5 ], [ 17.0, -30.5 ], [ 17.0, -30.0 ], [ 17.5, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -30.0 ], [ 18.0, -30.5 ], [ 17.5, -30.5 ], [ 17.5, -30.0 ], [ 18.0, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -30.0 ], [ 18.5, -30.5 ], [ 18.0, -30.5 ], [ 18.0, -30.0 ], [ 18.5, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -30.0 ], [ 19.0, -30.5 ], [ 18.5, -30.5 ], [ 18.5, -30.0 ], [ 19.0, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -30.0 ], [ 19.5, -30.5 ], [ 19.0, -30.5 ], [ 19.0, -30.0 ], [ 19.5, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -30.0 ], [ 20.0, -30.5 ], [ 19.5, -30.5 ], [ 19.5, -30.0 ], [ 20.0, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -30.0 ], [ 20.5, -30.5 ], [ 20.0, -30.5 ], [ 20.0, -30.0 ], [ 20.5, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -30.0 ], [ 21.0, -30.5 ], [ 20.5, -30.5 ], [ 20.5, -30.0 ], [ 21.0, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -30.0 ], [ 21.5, -30.5 ], [ 21.0, -30.5 ], [ 21.0, -30.0 ], [ 21.5, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -30.0 ], [ 22.0, -30.5 ], [ 21.5, -30.5 ], [ 21.5, -30.0 ], [ 22.0, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -30.0 ], [ 22.5, -30.5 ], [ 22.0, -30.5 ], [ 22.0, -30.0 ], [ 22.5, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -30.0 ], [ 23.0, -30.5 ], [ 22.5, -30.5 ], [ 22.5, -30.0 ], [ 23.0, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -30.0 ], [ 23.5, -30.5 ], [ 23.0, -30.5 ], [ 23.0, -30.0 ], [ 23.5, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -30.0 ], [ 24.0, -30.5 ], [ 23.5, -30.5 ], [ 23.5, -30.0 ], [ 24.0, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -30.0 ], [ 24.5, -30.5 ], [ 24.0, -30.5 ], [ 24.0, -30.0 ], [ 24.5, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -30.0 ], [ 25.0, -30.5 ], [ 24.5, -30.5 ], [ 24.5, -30.0 ], [ 25.0, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -30.0 ], [ 25.5, -30.5 ], [ 25.0, -30.5 ], [ 25.0, -30.0 ], [ 25.5, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -30.0 ], [ 26.0, -30.5 ], [ 25.5, -30.5 ], [ 25.5, -30.0 ], [ 26.0, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -30.0 ], [ 26.5, -30.5 ], [ 26.0, -30.5 ], [ 26.0, -30.0 ], [ 26.5, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -30.0 ], [ 27.0, -30.5 ], [ 26.5, -30.5 ], [ 26.5, -30.0 ], [ 27.0, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -30.0 ], [ 27.5, -30.5 ], [ 27.0, -30.5 ], [ 27.0, -30.0 ], [ 27.5, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -30.0 ], [ 28.0, -30.5 ], [ 27.5, -30.5 ], [ 27.5, -30.0 ], [ 28.0, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -30.0 ], [ 28.5, -30.5 ], [ 28.0, -30.5 ], [ 28.0, -30.0 ], [ 28.5, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -30.0 ], [ 29.0, -30.5 ], [ 28.5, -30.5 ], [ 28.5, -30.0 ], [ 29.0, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -30.0 ], [ 29.5, -30.5 ], [ 29.0, -30.5 ], [ 29.0, -30.0 ], [ 29.5, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -30.0 ], [ 30.0, -30.5 ], [ 29.5, -30.5 ], [ 29.5, -30.0 ], [ 30.0, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -30.0 ], [ 30.5, -30.5 ], [ 30.0, -30.5 ], [ 30.0, -30.0 ], [ 30.5, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -29.5 ], [ 17.5, -30.0 ], [ 17.0, -30.0 ], [ 17.0, -29.5 ], [ 17.5, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -29.5 ], [ 18.0, -30.0 ], [ 17.5, -30.0 ], [ 17.5, -29.5 ], [ 18.0, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -29.5 ], [ 18.5, -30.0 ], [ 18.0, -30.0 ], [ 18.0, -29.5 ], [ 18.5, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -29.5 ], [ 19.0, -30.0 ], [ 18.5, -30.0 ], [ 18.5, -29.5 ], [ 19.0, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -29.5 ], [ 19.5, -30.0 ], [ 19.0, -30.0 ], [ 19.0, -29.5 ], [ 19.5, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -29.5 ], [ 20.0, -30.0 ], [ 19.5, -30.0 ], [ 19.5, -29.5 ], [ 20.0, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -29.5 ], [ 20.5, -30.0 ], [ 20.0, -30.0 ], [ 20.0, -29.5 ], [ 20.5, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -29.5 ], [ 21.0, -30.0 ], [ 20.5, -30.0 ], [ 20.5, -29.5 ], [ 21.0, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -29.5 ], [ 21.5, -30.0 ], [ 21.0, -30.0 ], [ 21.0, -29.5 ], [ 21.5, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -29.5 ], [ 22.0, -30.0 ], [ 21.5, -30.0 ], [ 21.5, -29.5 ], [ 22.0, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -29.5 ], [ 22.5, -30.0 ], [ 22.0, -30.0 ], [ 22.0, -29.5 ], [ 22.5, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -29.5 ], [ 23.0, -30.0 ], [ 22.5, -30.0 ], [ 22.5, -29.5 ], [ 23.0, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -29.5 ], [ 23.5, -30.0 ], [ 23.0, -30.0 ], [ 23.0, -29.5 ], [ 23.5, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -29.5 ], [ 24.0, -30.0 ], [ 23.5, -30.0 ], [ 23.5, -29.5 ], [ 24.0, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -29.5 ], [ 24.5, -30.0 ], [ 24.0, -30.0 ], [ 24.0, -29.5 ], [ 24.5, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -29.5 ], [ 25.0, -30.0 ], [ 24.5, -30.0 ], [ 24.5, -29.5 ], [ 25.0, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -29.5 ], [ 25.5, -30.0 ], [ 25.0, -30.0 ], [ 25.0, -29.5 ], [ 25.5, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -29.5 ], [ 26.0, -30.0 ], [ 25.5, -30.0 ], [ 25.5, -29.5 ], [ 26.0, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -29.5 ], [ 26.5, -30.0 ], [ 26.0, -30.0 ], [ 26.0, -29.5 ], [ 26.5, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -29.5 ], [ 27.0, -30.0 ], [ 26.5, -30.0 ], [ 26.5, -29.5 ], [ 27.0, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -29.5 ], [ 27.5, -30.0 ], [ 27.0, -30.0 ], [ 27.0, -29.5 ], [ 27.5, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -29.5 ], [ 28.0, -30.0 ], [ 27.5, -30.0 ], [ 27.5, -29.5 ], [ 28.0, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -29.5 ], [ 28.5, -30.0 ], [ 28.0, -30.0 ], [ 28.0, -29.5 ], [ 28.5, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -29.5 ], [ 29.0, -30.0 ], [ 28.5, -30.0 ], [ 28.5, -29.5 ], [ 29.0, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -29.5 ], [ 29.5, -30.0 ], [ 29.0, -30.0 ], [ 29.0, -29.5 ], [ 29.5, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -29.5 ], [ 30.0, -30.0 ], [ 29.5, -30.0 ], [ 29.5, -29.5 ], [ 30.0, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -29.5 ], [ 30.5, -30.0 ], [ 30.0, -30.0 ], [ 30.0, -29.5 ], [ 30.5, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -29.5 ], [ 31.0, -30.0 ], [ 30.5, -30.0 ], [ 30.5, -29.5 ], [ 31.0, -29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -29.0 ], [ 17.5, -29.5 ], [ 17.0, -29.5 ], [ 17.0, -29.0 ], [ 17.5, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -29.0 ], [ 18.0, -29.5 ], [ 17.5, -29.5 ], [ 17.5, -29.0 ], [ 18.0, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -29.0 ], [ 18.5, -29.5 ], [ 18.0, -29.5 ], [ 18.0, -29.0 ], [ 18.5, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -29.0 ], [ 19.0, -29.5 ], [ 18.5, -29.5 ], [ 18.5, -29.0 ], [ 19.0, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -29.0 ], [ 19.5, -29.5 ], [ 19.0, -29.5 ], [ 19.0, -29.0 ], [ 19.5, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -29.0 ], [ 20.0, -29.5 ], [ 19.5, -29.5 ], [ 19.5, -29.0 ], [ 20.0, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -29.0 ], [ 20.5, -29.5 ], [ 20.0, -29.5 ], [ 20.0, -29.0 ], [ 20.5, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -29.0 ], [ 21.0, -29.5 ], [ 20.5, -29.5 ], [ 20.5, -29.0 ], [ 21.0, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -29.0 ], [ 21.5, -29.5 ], [ 21.0, -29.5 ], [ 21.0, -29.0 ], [ 21.5, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -29.0 ], [ 22.0, -29.5 ], [ 21.5, -29.5 ], [ 21.5, -29.0 ], [ 22.0, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -29.0 ], [ 22.5, -29.5 ], [ 22.0, -29.5 ], [ 22.0, -29.0 ], [ 22.5, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -29.0 ], [ 23.0, -29.5 ], [ 22.5, -29.5 ], [ 22.5, -29.0 ], [ 23.0, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -29.0 ], [ 23.5, -29.5 ], [ 23.0, -29.5 ], [ 23.0, -29.0 ], [ 23.5, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -29.0 ], [ 24.0, -29.5 ], [ 23.5, -29.5 ], [ 23.5, -29.0 ], [ 24.0, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -29.0 ], [ 24.5, -29.5 ], [ 24.0, -29.5 ], [ 24.0, -29.0 ], [ 24.5, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -29.0 ], [ 25.0, -29.5 ], [ 24.5, -29.5 ], [ 24.5, -29.0 ], [ 25.0, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -29.0 ], [ 25.5, -29.5 ], [ 25.0, -29.5 ], [ 25.0, -29.0 ], [ 25.5, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -29.0 ], [ 26.0, -29.5 ], [ 25.5, -29.5 ], [ 25.5, -29.0 ], [ 26.0, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -29.0 ], [ 26.5, -29.5 ], [ 26.0, -29.5 ], [ 26.0, -29.0 ], [ 26.5, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -29.0 ], [ 27.0, -29.5 ], [ 26.5, -29.5 ], [ 26.5, -29.0 ], [ 27.0, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -29.0 ], [ 27.5, -29.5 ], [ 27.0, -29.5 ], [ 27.0, -29.0 ], [ 27.5, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -29.0 ], [ 28.0, -29.5 ], [ 27.5, -29.5 ], [ 27.5, -29.0 ], [ 28.0, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -29.0 ], [ 28.5, -29.5 ], [ 28.0, -29.5 ], [ 28.0, -29.0 ], [ 28.5, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -29.0 ], [ 29.0, -29.5 ], [ 28.5, -29.5 ], [ 28.5, -29.0 ], [ 29.0, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -29.0 ], [ 29.5, -29.5 ], [ 29.0, -29.5 ], [ 29.0, -29.0 ], [ 29.5, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -29.0 ], [ 30.0, -29.5 ], [ 29.5, -29.5 ], [ 29.5, -29.0 ], [ 30.0, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -29.0 ], [ 30.5, -29.5 ], [ 30.0, -29.5 ], [ 30.0, -29.0 ], [ 30.5, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -29.0 ], [ 31.0, -29.5 ], [ 30.5, -29.5 ], [ 30.5, -29.0 ], [ 31.0, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -29.0 ], [ 31.5, -29.5 ], [ 31.0, -29.5 ], [ 31.0, -29.0 ], [ 31.5, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -28.5 ], [ 17.0, -29.0 ], [ 16.5, -29.0 ], [ 16.5, -28.5 ], [ 17.0, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -28.5 ], [ 17.5, -29.0 ], [ 17.0, -29.0 ], [ 17.0, -28.5 ], [ 17.5, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -28.5 ], [ 18.0, -29.0 ], [ 17.5, -29.0 ], [ 17.5, -28.5 ], [ 18.0, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -28.5 ], [ 18.5, -29.0 ], [ 18.0, -29.0 ], [ 18.0, -28.5 ], [ 18.5, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -28.5 ], [ 19.0, -29.0 ], [ 18.5, -29.0 ], [ 18.5, -28.5 ], [ 19.0, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -28.5 ], [ 19.5, -29.0 ], [ 19.0, -29.0 ], [ 19.0, -28.5 ], [ 19.5, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -28.5 ], [ 20.0, -29.0 ], [ 19.5, -29.0 ], [ 19.5, -28.5 ], [ 20.0, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -28.5 ], [ 20.5, -29.0 ], [ 20.0, -29.0 ], [ 20.0, -28.5 ], [ 20.5, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -28.5 ], [ 21.0, -29.0 ], [ 20.5, -29.0 ], [ 20.5, -28.5 ], [ 21.0, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -28.5 ], [ 21.5, -29.0 ], [ 21.0, -29.0 ], [ 21.0, -28.5 ], [ 21.5, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -28.5 ], [ 22.0, -29.0 ], [ 21.5, -29.0 ], [ 21.5, -28.5 ], [ 22.0, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -28.5 ], [ 22.5, -29.0 ], [ 22.0, -29.0 ], [ 22.0, -28.5 ], [ 22.5, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -28.5 ], [ 23.0, -29.0 ], [ 22.5, -29.0 ], [ 22.5, -28.5 ], [ 23.0, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -28.5 ], [ 23.5, -29.0 ], [ 23.0, -29.0 ], [ 23.0, -28.5 ], [ 23.5, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -28.5 ], [ 24.0, -29.0 ], [ 23.5, -29.0 ], [ 23.5, -28.5 ], [ 24.0, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -28.5 ], [ 24.5, -29.0 ], [ 24.0, -29.0 ], [ 24.0, -28.5 ], [ 24.5, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -28.5 ], [ 25.0, -29.0 ], [ 24.5, -29.0 ], [ 24.5, -28.5 ], [ 25.0, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -28.5 ], [ 25.5, -29.0 ], [ 25.0, -29.0 ], [ 25.0, -28.5 ], [ 25.5, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -28.5 ], [ 26.0, -29.0 ], [ 25.5, -29.0 ], [ 25.5, -28.5 ], [ 26.0, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -28.5 ], [ 26.5, -29.0 ], [ 26.0, -29.0 ], [ 26.0, -28.5 ], [ 26.5, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -28.5 ], [ 27.0, -29.0 ], [ 26.5, -29.0 ], [ 26.5, -28.5 ], [ 27.0, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -28.5 ], [ 27.5, -29.0 ], [ 27.0, -29.0 ], [ 27.0, -28.5 ], [ 27.5, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -28.5 ], [ 28.0, -29.0 ], [ 27.5, -29.0 ], [ 27.5, -28.5 ], [ 28.0, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -28.5 ], [ 28.5, -29.0 ], [ 28.0, -29.0 ], [ 28.0, -28.5 ], [ 28.5, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -28.5 ], [ 29.0, -29.0 ], [ 28.5, -29.0 ], [ 28.5, -28.5 ], [ 29.0, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -28.5 ], [ 29.5, -29.0 ], [ 29.0, -29.0 ], [ 29.0, -28.5 ], [ 29.5, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -28.5 ], [ 30.0, -29.0 ], [ 29.5, -29.0 ], [ 29.5, -28.5 ], [ 30.0, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -28.5 ], [ 30.5, -29.0 ], [ 30.0, -29.0 ], [ 30.0, -28.5 ], [ 30.5, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -28.5 ], [ 31.0, -29.0 ], [ 30.5, -29.0 ], [ 30.5, -28.5 ], [ 31.0, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -28.5 ], [ 31.5, -29.0 ], [ 31.0, -29.0 ], [ 31.0, -28.5 ], [ 31.5, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -28.5 ], [ 32.0, -29.0 ], [ 31.5, -29.0 ], [ 31.5, -28.5 ], [ 32.0, -28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -28.0 ], [ 16.5, -28.5 ], [ 16.0, -28.5 ], [ 16.0, -28.0 ], [ 16.5, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -28.0 ], [ 17.0, -28.5 ], [ 16.5, -28.5 ], [ 16.5, -28.0 ], [ 17.0, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -28.0 ], [ 17.5, -28.5 ], [ 17.0, -28.5 ], [ 17.0, -28.0 ], [ 17.5, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -28.0 ], [ 18.0, -28.5 ], [ 17.5, -28.5 ], [ 17.5, -28.0 ], [ 18.0, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -28.0 ], [ 18.5, -28.5 ], [ 18.0, -28.5 ], [ 18.0, -28.0 ], [ 18.5, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -28.0 ], [ 19.0, -28.5 ], [ 18.5, -28.5 ], [ 18.5, -28.0 ], [ 19.0, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -28.0 ], [ 19.5, -28.5 ], [ 19.0, -28.5 ], [ 19.0, -28.0 ], [ 19.5, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -28.0 ], [ 20.0, -28.5 ], [ 19.5, -28.5 ], [ 19.5, -28.0 ], [ 20.0, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -28.0 ], [ 20.5, -28.5 ], [ 20.0, -28.5 ], [ 20.0, -28.0 ], [ 20.5, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -28.0 ], [ 21.0, -28.5 ], [ 20.5, -28.5 ], [ 20.5, -28.0 ], [ 21.0, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -28.0 ], [ 21.5, -28.5 ], [ 21.0, -28.5 ], [ 21.0, -28.0 ], [ 21.5, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -28.0 ], [ 22.0, -28.5 ], [ 21.5, -28.5 ], [ 21.5, -28.0 ], [ 22.0, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -28.0 ], [ 22.5, -28.5 ], [ 22.0, -28.5 ], [ 22.0, -28.0 ], [ 22.5, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -28.0 ], [ 23.0, -28.5 ], [ 22.5, -28.5 ], [ 22.5, -28.0 ], [ 23.0, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -28.0 ], [ 23.5, -28.5 ], [ 23.0, -28.5 ], [ 23.0, -28.0 ], [ 23.5, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -28.0 ], [ 24.0, -28.5 ], [ 23.5, -28.5 ], [ 23.5, -28.0 ], [ 24.0, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -28.0 ], [ 24.5, -28.5 ], [ 24.0, -28.5 ], [ 24.0, -28.0 ], [ 24.5, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -28.0 ], [ 25.0, -28.5 ], [ 24.5, -28.5 ], [ 24.5, -28.0 ], [ 25.0, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -28.0 ], [ 25.5, -28.5 ], [ 25.0, -28.5 ], [ 25.0, -28.0 ], [ 25.5, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -28.0 ], [ 26.0, -28.5 ], [ 25.5, -28.5 ], [ 25.5, -28.0 ], [ 26.0, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -28.0 ], [ 26.5, -28.5 ], [ 26.0, -28.5 ], [ 26.0, -28.0 ], [ 26.5, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -28.0 ], [ 27.0, -28.5 ], [ 26.5, -28.5 ], [ 26.5, -28.0 ], [ 27.0, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -28.0 ], [ 27.5, -28.5 ], [ 27.0, -28.5 ], [ 27.0, -28.0 ], [ 27.5, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -28.0 ], [ 28.0, -28.5 ], [ 27.5, -28.5 ], [ 27.5, -28.0 ], [ 28.0, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -28.0 ], [ 28.5, -28.5 ], [ 28.0, -28.5 ], [ 28.0, -28.0 ], [ 28.5, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -28.0 ], [ 29.0, -28.5 ], [ 28.5, -28.5 ], [ 28.5, -28.0 ], [ 29.0, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -28.0 ], [ 29.5, -28.5 ], [ 29.0, -28.5 ], [ 29.0, -28.0 ], [ 29.5, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -28.0 ], [ 30.0, -28.5 ], [ 29.5, -28.5 ], [ 29.5, -28.0 ], [ 30.0, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -28.0 ], [ 30.5, -28.5 ], [ 30.0, -28.5 ], [ 30.0, -28.0 ], [ 30.5, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -28.0 ], [ 31.0, -28.5 ], [ 30.5, -28.5 ], [ 30.5, -28.0 ], [ 31.0, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -28.0 ], [ 31.5, -28.5 ], [ 31.0, -28.5 ], [ 31.0, -28.0 ], [ 31.5, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -28.0 ], [ 32.0, -28.5 ], [ 31.5, -28.5 ], [ 31.5, -28.0 ], [ 32.0, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -28.0 ], [ 32.5, -28.5 ], [ 32.0, -28.5 ], [ 32.0, -28.0 ], [ 32.5, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -27.5 ], [ 16.0, -28.0 ], [ 15.5, -28.0 ], [ 15.5, -27.5 ], [ 16.0, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -27.5 ], [ 16.5, -28.0 ], [ 16.0, -28.0 ], [ 16.0, -27.5 ], [ 16.5, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -27.5 ], [ 17.0, -28.0 ], [ 16.5, -28.0 ], [ 16.5, -27.5 ], [ 17.0, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -27.5 ], [ 17.5, -28.0 ], [ 17.0, -28.0 ], [ 17.0, -27.5 ], [ 17.5, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -27.5 ], [ 18.0, -28.0 ], [ 17.5, -28.0 ], [ 17.5, -27.5 ], [ 18.0, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -27.5 ], [ 18.5, -28.0 ], [ 18.0, -28.0 ], [ 18.0, -27.5 ], [ 18.5, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -27.5 ], [ 19.0, -28.0 ], [ 18.5, -28.0 ], [ 18.5, -27.5 ], [ 19.0, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -27.5 ], [ 19.5, -28.0 ], [ 19.0, -28.0 ], [ 19.0, -27.5 ], [ 19.5, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -27.5 ], [ 20.0, -28.0 ], [ 19.5, -28.0 ], [ 19.5, -27.5 ], [ 20.0, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -27.5 ], [ 20.5, -28.0 ], [ 20.0, -28.0 ], [ 20.0, -27.5 ], [ 20.5, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -27.5 ], [ 21.0, -28.0 ], [ 20.5, -28.0 ], [ 20.5, -27.5 ], [ 21.0, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -27.5 ], [ 21.5, -28.0 ], [ 21.0, -28.0 ], [ 21.0, -27.5 ], [ 21.5, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -27.5 ], [ 22.0, -28.0 ], [ 21.5, -28.0 ], [ 21.5, -27.5 ], [ 22.0, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -27.5 ], [ 22.5, -28.0 ], [ 22.0, -28.0 ], [ 22.0, -27.5 ], [ 22.5, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -27.5 ], [ 23.0, -28.0 ], [ 22.5, -28.0 ], [ 22.5, -27.5 ], [ 23.0, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -27.5 ], [ 23.5, -28.0 ], [ 23.0, -28.0 ], [ 23.0, -27.5 ], [ 23.5, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -27.5 ], [ 24.0, -28.0 ], [ 23.5, -28.0 ], [ 23.5, -27.5 ], [ 24.0, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -27.5 ], [ 24.5, -28.0 ], [ 24.0, -28.0 ], [ 24.0, -27.5 ], [ 24.5, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -27.5 ], [ 25.0, -28.0 ], [ 24.5, -28.0 ], [ 24.5, -27.5 ], [ 25.0, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -27.5 ], [ 25.5, -28.0 ], [ 25.0, -28.0 ], [ 25.0, -27.5 ], [ 25.5, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -27.5 ], [ 26.0, -28.0 ], [ 25.5, -28.0 ], [ 25.5, -27.5 ], [ 26.0, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -27.5 ], [ 26.5, -28.0 ], [ 26.0, -28.0 ], [ 26.0, -27.5 ], [ 26.5, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -27.5 ], [ 27.0, -28.0 ], [ 26.5, -28.0 ], [ 26.5, -27.5 ], [ 27.0, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -27.5 ], [ 27.5, -28.0 ], [ 27.0, -28.0 ], [ 27.0, -27.5 ], [ 27.5, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -27.5 ], [ 28.0, -28.0 ], [ 27.5, -28.0 ], [ 27.5, -27.5 ], [ 28.0, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -27.5 ], [ 28.5, -28.0 ], [ 28.0, -28.0 ], [ 28.0, -27.5 ], [ 28.5, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -27.5 ], [ 29.0, -28.0 ], [ 28.5, -28.0 ], [ 28.5, -27.5 ], [ 29.0, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -27.5 ], [ 29.5, -28.0 ], [ 29.0, -28.0 ], [ 29.0, -27.5 ], [ 29.5, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -27.5 ], [ 30.0, -28.0 ], [ 29.5, -28.0 ], [ 29.5, -27.5 ], [ 30.0, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -27.5 ], [ 30.5, -28.0 ], [ 30.0, -28.0 ], [ 30.0, -27.5 ], [ 30.5, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -27.5 ], [ 31.0, -28.0 ], [ 30.5, -28.0 ], [ 30.5, -27.5 ], [ 31.0, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -27.5 ], [ 31.5, -28.0 ], [ 31.0, -28.0 ], [ 31.0, -27.5 ], [ 31.5, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -27.5 ], [ 32.0, -28.0 ], [ 31.5, -28.0 ], [ 31.5, -27.5 ], [ 32.0, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -27.5 ], [ 32.5, -28.0 ], [ 32.0, -28.0 ], [ 32.0, -27.5 ], [ 32.5, -27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -27.0 ], [ 16.0, -27.5 ], [ 15.5, -27.5 ], [ 15.5, -27.0 ], [ 16.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -27.0 ], [ 16.5, -27.5 ], [ 16.0, -27.5 ], [ 16.0, -27.0 ], [ 16.5, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -27.0 ], [ 17.0, -27.5 ], [ 16.5, -27.5 ], [ 16.5, -27.0 ], [ 17.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -27.0 ], [ 17.5, -27.5 ], [ 17.0, -27.5 ], [ 17.0, -27.0 ], [ 17.5, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -27.0 ], [ 18.0, -27.5 ], [ 17.5, -27.5 ], [ 17.5, -27.0 ], [ 18.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -27.0 ], [ 18.5, -27.5 ], [ 18.0, -27.5 ], [ 18.0, -27.0 ], [ 18.5, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -27.0 ], [ 19.0, -27.5 ], [ 18.5, -27.5 ], [ 18.5, -27.0 ], [ 19.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -27.0 ], [ 19.5, -27.5 ], [ 19.0, -27.5 ], [ 19.0, -27.0 ], [ 19.5, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -27.0 ], [ 20.0, -27.5 ], [ 19.5, -27.5 ], [ 19.5, -27.0 ], [ 20.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -27.0 ], [ 20.5, -27.5 ], [ 20.0, -27.5 ], [ 20.0, -27.0 ], [ 20.5, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -27.0 ], [ 21.0, -27.5 ], [ 20.5, -27.5 ], [ 20.5, -27.0 ], [ 21.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -27.0 ], [ 21.5, -27.5 ], [ 21.0, -27.5 ], [ 21.0, -27.0 ], [ 21.5, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -27.0 ], [ 22.0, -27.5 ], [ 21.5, -27.5 ], [ 21.5, -27.0 ], [ 22.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -27.0 ], [ 22.5, -27.5 ], [ 22.0, -27.5 ], [ 22.0, -27.0 ], [ 22.5, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -27.0 ], [ 23.0, -27.5 ], [ 22.5, -27.5 ], [ 22.5, -27.0 ], [ 23.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -27.0 ], [ 23.5, -27.5 ], [ 23.0, -27.5 ], [ 23.0, -27.0 ], [ 23.5, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -27.0 ], [ 24.0, -27.5 ], [ 23.5, -27.5 ], [ 23.5, -27.0 ], [ 24.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -27.0 ], [ 24.5, -27.5 ], [ 24.0, -27.5 ], [ 24.0, -27.0 ], [ 24.5, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -27.0 ], [ 25.0, -27.5 ], [ 24.5, -27.5 ], [ 24.5, -27.0 ], [ 25.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -27.0 ], [ 25.5, -27.5 ], [ 25.0, -27.5 ], [ 25.0, -27.0 ], [ 25.5, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -27.0 ], [ 26.0, -27.5 ], [ 25.5, -27.5 ], [ 25.5, -27.0 ], [ 26.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -27.0 ], [ 26.5, -27.5 ], [ 26.0, -27.5 ], [ 26.0, -27.0 ], [ 26.5, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -27.0 ], [ 27.0, -27.5 ], [ 26.5, -27.5 ], [ 26.5, -27.0 ], [ 27.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -27.0 ], [ 27.5, -27.5 ], [ 27.0, -27.5 ], [ 27.0, -27.0 ], [ 27.5, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -27.0 ], [ 28.0, -27.5 ], [ 27.5, -27.5 ], [ 27.5, -27.0 ], [ 28.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -27.0 ], [ 28.5, -27.5 ], [ 28.0, -27.5 ], [ 28.0, -27.0 ], [ 28.5, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -27.0 ], [ 29.0, -27.5 ], [ 28.5, -27.5 ], [ 28.5, -27.0 ], [ 29.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -27.0 ], [ 29.5, -27.5 ], [ 29.0, -27.5 ], [ 29.0, -27.0 ], [ 29.5, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -27.0 ], [ 30.0, -27.5 ], [ 29.5, -27.5 ], [ 29.5, -27.0 ], [ 30.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -27.0 ], [ 30.5, -27.5 ], [ 30.0, -27.5 ], [ 30.0, -27.0 ], [ 30.5, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -27.0 ], [ 31.0, -27.5 ], [ 30.5, -27.5 ], [ 30.5, -27.0 ], [ 31.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -27.0 ], [ 31.5, -27.5 ], [ 31.0, -27.5 ], [ 31.0, -27.0 ], [ 31.5, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -27.0 ], [ 32.0, -27.5 ], [ 31.5, -27.5 ], [ 31.5, -27.0 ], [ 32.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -27.0 ], [ 32.5, -27.5 ], [ 32.0, -27.5 ], [ 32.0, -27.0 ], [ 32.5, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -27.0 ], [ 33.0, -27.5 ], [ 32.5, -27.5 ], [ 32.5, -27.0 ], [ 33.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -26.5 ], [ 15.5, -27.0 ], [ 15.0, -27.0 ], [ 15.0, -26.5 ], [ 15.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -26.5 ], [ 16.0, -27.0 ], [ 15.5, -27.0 ], [ 15.5, -26.5 ], [ 16.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -26.5 ], [ 16.5, -27.0 ], [ 16.0, -27.0 ], [ 16.0, -26.5 ], [ 16.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -26.5 ], [ 17.0, -27.0 ], [ 16.5, -27.0 ], [ 16.5, -26.5 ], [ 17.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -26.5 ], [ 17.5, -27.0 ], [ 17.0, -27.0 ], [ 17.0, -26.5 ], [ 17.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -26.5 ], [ 18.0, -27.0 ], [ 17.5, -27.0 ], [ 17.5, -26.5 ], [ 18.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -26.5 ], [ 18.5, -27.0 ], [ 18.0, -27.0 ], [ 18.0, -26.5 ], [ 18.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -26.5 ], [ 19.0, -27.0 ], [ 18.5, -27.0 ], [ 18.5, -26.5 ], [ 19.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -26.5 ], [ 19.5, -27.0 ], [ 19.0, -27.0 ], [ 19.0, -26.5 ], [ 19.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -26.5 ], [ 20.0, -27.0 ], [ 19.5, -27.0 ], [ 19.5, -26.5 ], [ 20.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -26.5 ], [ 20.5, -27.0 ], [ 20.0, -27.0 ], [ 20.0, -26.5 ], [ 20.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -26.5 ], [ 21.0, -27.0 ], [ 20.5, -27.0 ], [ 20.5, -26.5 ], [ 21.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -26.5 ], [ 21.5, -27.0 ], [ 21.0, -27.0 ], [ 21.0, -26.5 ], [ 21.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -26.5 ], [ 22.0, -27.0 ], [ 21.5, -27.0 ], [ 21.5, -26.5 ], [ 22.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -26.5 ], [ 22.5, -27.0 ], [ 22.0, -27.0 ], [ 22.0, -26.5 ], [ 22.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -26.5 ], [ 23.0, -27.0 ], [ 22.5, -27.0 ], [ 22.5, -26.5 ], [ 23.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -26.5 ], [ 23.5, -27.0 ], [ 23.0, -27.0 ], [ 23.0, -26.5 ], [ 23.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -26.5 ], [ 24.0, -27.0 ], [ 23.5, -27.0 ], [ 23.5, -26.5 ], [ 24.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -26.5 ], [ 24.5, -27.0 ], [ 24.0, -27.0 ], [ 24.0, -26.5 ], [ 24.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -26.5 ], [ 25.0, -27.0 ], [ 24.5, -27.0 ], [ 24.5, -26.5 ], [ 25.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -26.5 ], [ 25.5, -27.0 ], [ 25.0, -27.0 ], [ 25.0, -26.5 ], [ 25.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -26.5 ], [ 26.0, -27.0 ], [ 25.5, -27.0 ], [ 25.5, -26.5 ], [ 26.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -26.5 ], [ 26.5, -27.0 ], [ 26.0, -27.0 ], [ 26.0, -26.5 ], [ 26.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -26.5 ], [ 27.0, -27.0 ], [ 26.5, -27.0 ], [ 26.5, -26.5 ], [ 27.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -26.5 ], [ 27.5, -27.0 ], [ 27.0, -27.0 ], [ 27.0, -26.5 ], [ 27.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -26.5 ], [ 28.0, -27.0 ], [ 27.5, -27.0 ], [ 27.5, -26.5 ], [ 28.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -26.5 ], [ 28.5, -27.0 ], [ 28.0, -27.0 ], [ 28.0, -26.5 ], [ 28.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -26.5 ], [ 29.0, -27.0 ], [ 28.5, -27.0 ], [ 28.5, -26.5 ], [ 29.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -26.5 ], [ 29.5, -27.0 ], [ 29.0, -27.0 ], [ 29.0, -26.5 ], [ 29.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -26.5 ], [ 30.0, -27.0 ], [ 29.5, -27.0 ], [ 29.5, -26.5 ], [ 30.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -26.5 ], [ 30.5, -27.0 ], [ 30.0, -27.0 ], [ 30.0, -26.5 ], [ 30.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -26.5 ], [ 31.0, -27.0 ], [ 30.5, -27.0 ], [ 30.5, -26.5 ], [ 31.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -26.5 ], [ 31.5, -27.0 ], [ 31.0, -27.0 ], [ 31.0, -26.5 ], [ 31.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -26.5 ], [ 32.0, -27.0 ], [ 31.5, -27.0 ], [ 31.5, -26.5 ], [ 32.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -26.5 ], [ 32.5, -27.0 ], [ 32.0, -27.0 ], [ 32.0, -26.5 ], [ 32.5, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -26.5 ], [ 33.0, -27.0 ], [ 32.5, -27.0 ], [ 32.5, -26.5 ], [ 33.0, -26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -26.0 ], [ 15.5, -26.5 ], [ 15.0, -26.5 ], [ 15.0, -26.0 ], [ 15.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -26.0 ], [ 16.0, -26.5 ], [ 15.5, -26.5 ], [ 15.5, -26.0 ], [ 16.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -26.0 ], [ 16.5, -26.5 ], [ 16.0, -26.5 ], [ 16.0, -26.0 ], [ 16.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -26.0 ], [ 17.0, -26.5 ], [ 16.5, -26.5 ], [ 16.5, -26.0 ], [ 17.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -26.0 ], [ 17.5, -26.5 ], [ 17.0, -26.5 ], [ 17.0, -26.0 ], [ 17.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -26.0 ], [ 18.0, -26.5 ], [ 17.5, -26.5 ], [ 17.5, -26.0 ], [ 18.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -26.0 ], [ 18.5, -26.5 ], [ 18.0, -26.5 ], [ 18.0, -26.0 ], [ 18.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -26.0 ], [ 19.0, -26.5 ], [ 18.5, -26.5 ], [ 18.5, -26.0 ], [ 19.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -26.0 ], [ 19.5, -26.5 ], [ 19.0, -26.5 ], [ 19.0, -26.0 ], [ 19.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -26.0 ], [ 20.0, -26.5 ], [ 19.5, -26.5 ], [ 19.5, -26.0 ], [ 20.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -26.0 ], [ 20.5, -26.5 ], [ 20.0, -26.5 ], [ 20.0, -26.0 ], [ 20.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -26.0 ], [ 21.0, -26.5 ], [ 20.5, -26.5 ], [ 20.5, -26.0 ], [ 21.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -26.0 ], [ 21.5, -26.5 ], [ 21.0, -26.5 ], [ 21.0, -26.0 ], [ 21.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -26.0 ], [ 22.0, -26.5 ], [ 21.5, -26.5 ], [ 21.5, -26.0 ], [ 22.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -26.0 ], [ 22.5, -26.5 ], [ 22.0, -26.5 ], [ 22.0, -26.0 ], [ 22.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -26.0 ], [ 23.0, -26.5 ], [ 22.5, -26.5 ], [ 22.5, -26.0 ], [ 23.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -26.0 ], [ 23.5, -26.5 ], [ 23.0, -26.5 ], [ 23.0, -26.0 ], [ 23.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -26.0 ], [ 24.0, -26.5 ], [ 23.5, -26.5 ], [ 23.5, -26.0 ], [ 24.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -26.0 ], [ 24.5, -26.5 ], [ 24.0, -26.5 ], [ 24.0, -26.0 ], [ 24.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -26.0 ], [ 25.0, -26.5 ], [ 24.5, -26.5 ], [ 24.5, -26.0 ], [ 25.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -26.0 ], [ 25.5, -26.5 ], [ 25.0, -26.5 ], [ 25.0, -26.0 ], [ 25.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -26.0 ], [ 26.0, -26.5 ], [ 25.5, -26.5 ], [ 25.5, -26.0 ], [ 26.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -26.0 ], [ 26.5, -26.5 ], [ 26.0, -26.5 ], [ 26.0, -26.0 ], [ 26.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -26.0 ], [ 27.0, -26.5 ], [ 26.5, -26.5 ], [ 26.5, -26.0 ], [ 27.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -26.0 ], [ 27.5, -26.5 ], [ 27.0, -26.5 ], [ 27.0, -26.0 ], [ 27.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -26.0 ], [ 28.0, -26.5 ], [ 27.5, -26.5 ], [ 27.5, -26.0 ], [ 28.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -26.0 ], [ 28.5, -26.5 ], [ 28.0, -26.5 ], [ 28.0, -26.0 ], [ 28.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -26.0 ], [ 29.0, -26.5 ], [ 28.5, -26.5 ], [ 28.5, -26.0 ], [ 29.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -26.0 ], [ 29.5, -26.5 ], [ 29.0, -26.5 ], [ 29.0, -26.0 ], [ 29.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -26.0 ], [ 30.0, -26.5 ], [ 29.5, -26.5 ], [ 29.5, -26.0 ], [ 30.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -26.0 ], [ 30.5, -26.5 ], [ 30.0, -26.5 ], [ 30.0, -26.0 ], [ 30.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -26.0 ], [ 31.0, -26.5 ], [ 30.5, -26.5 ], [ 30.5, -26.0 ], [ 31.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -26.0 ], [ 31.5, -26.5 ], [ 31.0, -26.5 ], [ 31.0, -26.0 ], [ 31.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -26.0 ], [ 32.0, -26.5 ], [ 31.5, -26.5 ], [ 31.5, -26.0 ], [ 32.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -26.0 ], [ 32.5, -26.5 ], [ 32.0, -26.5 ], [ 32.0, -26.0 ], [ 32.5, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -26.0 ], [ 33.0, -26.5 ], [ 32.5, -26.5 ], [ 32.5, -26.0 ], [ 33.0, -26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -25.5 ], [ 15.5, -26.0 ], [ 15.0, -26.0 ], [ 15.0, -25.5 ], [ 15.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -25.5 ], [ 16.0, -26.0 ], [ 15.5, -26.0 ], [ 15.5, -25.5 ], [ 16.0, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -25.5 ], [ 16.5, -26.0 ], [ 16.0, -26.0 ], [ 16.0, -25.5 ], [ 16.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -25.5 ], [ 17.0, -26.0 ], [ 16.5, -26.0 ], [ 16.5, -25.5 ], [ 17.0, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -25.5 ], [ 17.5, -26.0 ], [ 17.0, -26.0 ], [ 17.0, -25.5 ], [ 17.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -25.5 ], [ 18.0, -26.0 ], [ 17.5, -26.0 ], [ 17.5, -25.5 ], [ 18.0, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -25.5 ], [ 18.5, -26.0 ], [ 18.0, -26.0 ], [ 18.0, -25.5 ], [ 18.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -25.5 ], [ 19.0, -26.0 ], [ 18.5, -26.0 ], [ 18.5, -25.5 ], [ 19.0, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -25.5 ], [ 19.5, -26.0 ], [ 19.0, -26.0 ], [ 19.0, -25.5 ], [ 19.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -25.5 ], [ 20.0, -26.0 ], [ 19.5, -26.0 ], [ 19.5, -25.5 ], [ 20.0, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -25.5 ], [ 20.5, -26.0 ], [ 20.0, -26.0 ], [ 20.0, -25.5 ], [ 20.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -25.5 ], [ 21.0, -26.0 ], [ 20.5, -26.0 ], [ 20.5, -25.5 ], [ 21.0, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -25.5 ], [ 21.5, -26.0 ], [ 21.0, -26.0 ], [ 21.0, -25.5 ], [ 21.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -25.5 ], [ 22.0, -26.0 ], [ 21.5, -26.0 ], [ 21.5, -25.5 ], [ 22.0, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -25.5 ], [ 22.5, -26.0 ], [ 22.0, -26.0 ], [ 22.0, -25.5 ], [ 22.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -25.5 ], [ 23.0, -26.0 ], [ 22.5, -26.0 ], [ 22.5, -25.5 ], [ 23.0, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -25.5 ], [ 23.5, -26.0 ], [ 23.0, -26.0 ], [ 23.0, -25.5 ], [ 23.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -25.5 ], [ 24.0, -26.0 ], [ 23.5, -26.0 ], [ 23.5, -25.5 ], [ 24.0, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -25.5 ], [ 24.5, -26.0 ], [ 24.0, -26.0 ], [ 24.0, -25.5 ], [ 24.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -25.5 ], [ 25.0, -26.0 ], [ 24.5, -26.0 ], [ 24.5, -25.5 ], [ 25.0, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -25.5 ], [ 25.5, -26.0 ], [ 25.0, -26.0 ], [ 25.0, -25.5 ], [ 25.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -25.5 ], [ 26.0, -26.0 ], [ 25.5, -26.0 ], [ 25.5, -25.5 ], [ 26.0, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -25.5 ], [ 26.5, -26.0 ], [ 26.0, -26.0 ], [ 26.0, -25.5 ], [ 26.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -25.5 ], [ 27.0, -26.0 ], [ 26.5, -26.0 ], [ 26.5, -25.5 ], [ 27.0, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -25.5 ], [ 27.5, -26.0 ], [ 27.0, -26.0 ], [ 27.0, -25.5 ], [ 27.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -25.5 ], [ 28.0, -26.0 ], [ 27.5, -26.0 ], [ 27.5, -25.5 ], [ 28.0, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -25.5 ], [ 28.5, -26.0 ], [ 28.0, -26.0 ], [ 28.0, -25.5 ], [ 28.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -25.5 ], [ 29.0, -26.0 ], [ 28.5, -26.0 ], [ 28.5, -25.5 ], [ 29.0, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -25.5 ], [ 29.5, -26.0 ], [ 29.0, -26.0 ], [ 29.0, -25.5 ], [ 29.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -25.5 ], [ 30.0, -26.0 ], [ 29.5, -26.0 ], [ 29.5, -25.5 ], [ 30.0, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -25.5 ], [ 30.5, -26.0 ], [ 30.0, -26.0 ], [ 30.0, -25.5 ], [ 30.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -25.5 ], [ 31.0, -26.0 ], [ 30.5, -26.0 ], [ 30.5, -25.5 ], [ 31.0, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -25.5 ], [ 31.5, -26.0 ], [ 31.0, -26.0 ], [ 31.0, -25.5 ], [ 31.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -25.5 ], [ 32.0, -26.0 ], [ 31.5, -26.0 ], [ 31.5, -25.5 ], [ 32.0, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -25.5 ], [ 32.5, -26.0 ], [ 32.0, -26.0 ], [ 32.0, -25.5 ], [ 32.5, -25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -25.0 ], [ 15.5, -25.5 ], [ 15.0, -25.5 ], [ 15.0, -25.0 ], [ 15.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -25.0 ], [ 16.0, -25.5 ], [ 15.5, -25.5 ], [ 15.5, -25.0 ], [ 16.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -25.0 ], [ 16.5, -25.5 ], [ 16.0, -25.5 ], [ 16.0, -25.0 ], [ 16.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -25.0 ], [ 17.0, -25.5 ], [ 16.5, -25.5 ], [ 16.5, -25.0 ], [ 17.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -25.0 ], [ 17.5, -25.5 ], [ 17.0, -25.5 ], [ 17.0, -25.0 ], [ 17.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -25.0 ], [ 18.0, -25.5 ], [ 17.5, -25.5 ], [ 17.5, -25.0 ], [ 18.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -25.0 ], [ 18.5, -25.5 ], [ 18.0, -25.5 ], [ 18.0, -25.0 ], [ 18.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -25.0 ], [ 19.0, -25.5 ], [ 18.5, -25.5 ], [ 18.5, -25.0 ], [ 19.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -25.0 ], [ 19.5, -25.5 ], [ 19.0, -25.5 ], [ 19.0, -25.0 ], [ 19.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -25.0 ], [ 20.0, -25.5 ], [ 19.5, -25.5 ], [ 19.5, -25.0 ], [ 20.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -25.0 ], [ 20.5, -25.5 ], [ 20.0, -25.5 ], [ 20.0, -25.0 ], [ 20.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -25.0 ], [ 21.0, -25.5 ], [ 20.5, -25.5 ], [ 20.5, -25.0 ], [ 21.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -25.0 ], [ 21.5, -25.5 ], [ 21.0, -25.5 ], [ 21.0, -25.0 ], [ 21.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -25.0 ], [ 22.0, -25.5 ], [ 21.5, -25.5 ], [ 21.5, -25.0 ], [ 22.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -25.0 ], [ 22.5, -25.5 ], [ 22.0, -25.5 ], [ 22.0, -25.0 ], [ 22.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -25.0 ], [ 23.0, -25.5 ], [ 22.5, -25.5 ], [ 22.5, -25.0 ], [ 23.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -25.0 ], [ 23.5, -25.5 ], [ 23.0, -25.5 ], [ 23.0, -25.0 ], [ 23.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -25.0 ], [ 24.0, -25.5 ], [ 23.5, -25.5 ], [ 23.5, -25.0 ], [ 24.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -25.0 ], [ 24.5, -25.5 ], [ 24.0, -25.5 ], [ 24.0, -25.0 ], [ 24.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -25.0 ], [ 25.0, -25.5 ], [ 24.5, -25.5 ], [ 24.5, -25.0 ], [ 25.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -25.0 ], [ 25.5, -25.5 ], [ 25.0, -25.5 ], [ 25.0, -25.0 ], [ 25.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -25.0 ], [ 26.0, -25.5 ], [ 25.5, -25.5 ], [ 25.5, -25.0 ], [ 26.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -25.0 ], [ 26.5, -25.5 ], [ 26.0, -25.5 ], [ 26.0, -25.0 ], [ 26.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -25.0 ], [ 27.0, -25.5 ], [ 26.5, -25.5 ], [ 26.5, -25.0 ], [ 27.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -25.0 ], [ 27.5, -25.5 ], [ 27.0, -25.5 ], [ 27.0, -25.0 ], [ 27.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -25.0 ], [ 28.0, -25.5 ], [ 27.5, -25.5 ], [ 27.5, -25.0 ], [ 28.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -25.0 ], [ 28.5, -25.5 ], [ 28.0, -25.5 ], [ 28.0, -25.0 ], [ 28.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -25.0 ], [ 29.0, -25.5 ], [ 28.5, -25.5 ], [ 28.5, -25.0 ], [ 29.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -25.0 ], [ 29.5, -25.5 ], [ 29.0, -25.5 ], [ 29.0, -25.0 ], [ 29.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -25.0 ], [ 30.0, -25.5 ], [ 29.5, -25.5 ], [ 29.5, -25.0 ], [ 30.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -25.0 ], [ 30.5, -25.5 ], [ 30.0, -25.5 ], [ 30.0, -25.0 ], [ 30.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -25.0 ], [ 31.0, -25.5 ], [ 30.5, -25.5 ], [ 30.5, -25.0 ], [ 31.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -25.0 ], [ 31.5, -25.5 ], [ 31.0, -25.5 ], [ 31.0, -25.0 ], [ 31.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -25.0 ], [ 32.0, -25.5 ], [ 31.5, -25.5 ], [ 31.5, -25.0 ], [ 32.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -25.0 ], [ 32.5, -25.5 ], [ 32.0, -25.5 ], [ 32.0, -25.0 ], [ 32.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -25.0 ], [ 33.0, -25.5 ], [ 32.5, -25.5 ], [ 32.5, -25.0 ], [ 33.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -25.0 ], [ 33.5, -25.5 ], [ 33.0, -25.5 ], [ 33.0, -25.0 ], [ 33.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -25.0 ], [ 45.0, -25.5 ], [ 44.5, -25.5 ], [ 44.5, -25.0 ], [ 45.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -25.0 ], [ 45.5, -25.5 ], [ 45.0, -25.5 ], [ 45.0, -25.0 ], [ 45.5, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -25.0 ], [ 46.0, -25.5 ], [ 45.5, -25.5 ], [ 45.5, -25.0 ], [ 46.0, -25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -24.5 ], [ 15.0, -25.0 ], [ 14.5, -25.0 ], [ 14.5, -24.5 ], [ 15.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -24.5 ], [ 15.5, -25.0 ], [ 15.0, -25.0 ], [ 15.0, -24.5 ], [ 15.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -24.5 ], [ 16.0, -25.0 ], [ 15.5, -25.0 ], [ 15.5, -24.5 ], [ 16.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -24.5 ], [ 16.5, -25.0 ], [ 16.0, -25.0 ], [ 16.0, -24.5 ], [ 16.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -24.5 ], [ 17.0, -25.0 ], [ 16.5, -25.0 ], [ 16.5, -24.5 ], [ 17.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -24.5 ], [ 17.5, -25.0 ], [ 17.0, -25.0 ], [ 17.0, -24.5 ], [ 17.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -24.5 ], [ 18.0, -25.0 ], [ 17.5, -25.0 ], [ 17.5, -24.5 ], [ 18.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -24.5 ], [ 18.5, -25.0 ], [ 18.0, -25.0 ], [ 18.0, -24.5 ], [ 18.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -24.5 ], [ 19.0, -25.0 ], [ 18.5, -25.0 ], [ 18.5, -24.5 ], [ 19.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -24.5 ], [ 19.5, -25.0 ], [ 19.0, -25.0 ], [ 19.0, -24.5 ], [ 19.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -24.5 ], [ 20.0, -25.0 ], [ 19.5, -25.0 ], [ 19.5, -24.5 ], [ 20.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -24.5 ], [ 20.5, -25.0 ], [ 20.0, -25.0 ], [ 20.0, -24.5 ], [ 20.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -24.5 ], [ 21.0, -25.0 ], [ 20.5, -25.0 ], [ 20.5, -24.5 ], [ 21.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -24.5 ], [ 21.5, -25.0 ], [ 21.0, -25.0 ], [ 21.0, -24.5 ], [ 21.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -24.5 ], [ 22.0, -25.0 ], [ 21.5, -25.0 ], [ 21.5, -24.5 ], [ 22.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -24.5 ], [ 22.5, -25.0 ], [ 22.0, -25.0 ], [ 22.0, -24.5 ], [ 22.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -24.5 ], [ 23.0, -25.0 ], [ 22.5, -25.0 ], [ 22.5, -24.5 ], [ 23.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -24.5 ], [ 23.5, -25.0 ], [ 23.0, -25.0 ], [ 23.0, -24.5 ], [ 23.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -24.5 ], [ 24.0, -25.0 ], [ 23.5, -25.0 ], [ 23.5, -24.5 ], [ 24.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -24.5 ], [ 24.5, -25.0 ], [ 24.0, -25.0 ], [ 24.0, -24.5 ], [ 24.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -24.5 ], [ 25.0, -25.0 ], [ 24.5, -25.0 ], [ 24.5, -24.5 ], [ 25.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -24.5 ], [ 25.5, -25.0 ], [ 25.0, -25.0 ], [ 25.0, -24.5 ], [ 25.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -24.5 ], [ 26.0, -25.0 ], [ 25.5, -25.0 ], [ 25.5, -24.5 ], [ 26.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -24.5 ], [ 26.5, -25.0 ], [ 26.0, -25.0 ], [ 26.0, -24.5 ], [ 26.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -24.5 ], [ 27.0, -25.0 ], [ 26.5, -25.0 ], [ 26.5, -24.5 ], [ 27.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -24.5 ], [ 27.5, -25.0 ], [ 27.0, -25.0 ], [ 27.0, -24.5 ], [ 27.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -24.5 ], [ 28.0, -25.0 ], [ 27.5, -25.0 ], [ 27.5, -24.5 ], [ 28.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -24.5 ], [ 28.5, -25.0 ], [ 28.0, -25.0 ], [ 28.0, -24.5 ], [ 28.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -24.5 ], [ 29.0, -25.0 ], [ 28.5, -25.0 ], [ 28.5, -24.5 ], [ 29.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -24.5 ], [ 29.5, -25.0 ], [ 29.0, -25.0 ], [ 29.0, -24.5 ], [ 29.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -24.5 ], [ 30.0, -25.0 ], [ 29.5, -25.0 ], [ 29.5, -24.5 ], [ 30.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -24.5 ], [ 30.5, -25.0 ], [ 30.0, -25.0 ], [ 30.0, -24.5 ], [ 30.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -24.5 ], [ 31.0, -25.0 ], [ 30.5, -25.0 ], [ 30.5, -24.5 ], [ 31.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -24.5 ], [ 31.5, -25.0 ], [ 31.0, -25.0 ], [ 31.0, -24.5 ], [ 31.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -24.5 ], [ 32.0, -25.0 ], [ 31.5, -25.0 ], [ 31.5, -24.5 ], [ 32.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -24.5 ], [ 32.5, -25.0 ], [ 32.0, -25.0 ], [ 32.0, -24.5 ], [ 32.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -24.5 ], [ 33.0, -25.0 ], [ 32.5, -25.0 ], [ 32.5, -24.5 ], [ 33.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -24.5 ], [ 33.5, -25.0 ], [ 33.0, -25.0 ], [ 33.0, -24.5 ], [ 33.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -24.5 ], [ 34.0, -25.0 ], [ 33.5, -25.0 ], [ 33.5, -24.5 ], [ 34.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -24.5 ], [ 34.5, -25.0 ], [ 34.0, -25.0 ], [ 34.0, -24.5 ], [ 34.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -24.5 ], [ 35.0, -25.0 ], [ 34.5, -25.0 ], [ 34.5, -24.5 ], [ 35.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, -24.5 ], [ 44.5, -25.0 ], [ 44.0, -25.0 ], [ 44.0, -24.5 ], [ 44.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -24.5 ], [ 45.0, -25.0 ], [ 44.5, -25.0 ], [ 44.5, -24.5 ], [ 45.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -24.5 ], [ 45.5, -25.0 ], [ 45.0, -25.0 ], [ 45.0, -24.5 ], [ 45.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -24.5 ], [ 46.0, -25.0 ], [ 45.5, -25.0 ], [ 45.5, -24.5 ], [ 46.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -24.5 ], [ 46.5, -25.0 ], [ 46.0, -25.0 ], [ 46.0, -24.5 ], [ 46.5, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -24.5 ], [ 47.0, -25.0 ], [ 46.5, -25.0 ], [ 46.5, -24.5 ], [ 47.0, -24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -24.0 ], [ 15.0, -24.5 ], [ 14.5, -24.5 ], [ 14.5, -24.0 ], [ 15.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -24.0 ], [ 15.5, -24.5 ], [ 15.0, -24.5 ], [ 15.0, -24.0 ], [ 15.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -24.0 ], [ 16.0, -24.5 ], [ 15.5, -24.5 ], [ 15.5, -24.0 ], [ 16.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -24.0 ], [ 16.5, -24.5 ], [ 16.0, -24.5 ], [ 16.0, -24.0 ], [ 16.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -24.0 ], [ 17.0, -24.5 ], [ 16.5, -24.5 ], [ 16.5, -24.0 ], [ 17.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -24.0 ], [ 17.5, -24.5 ], [ 17.0, -24.5 ], [ 17.0, -24.0 ], [ 17.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -24.0 ], [ 18.0, -24.5 ], [ 17.5, -24.5 ], [ 17.5, -24.0 ], [ 18.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -24.0 ], [ 18.5, -24.5 ], [ 18.0, -24.5 ], [ 18.0, -24.0 ], [ 18.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -24.0 ], [ 19.0, -24.5 ], [ 18.5, -24.5 ], [ 18.5, -24.0 ], [ 19.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -24.0 ], [ 19.5, -24.5 ], [ 19.0, -24.5 ], [ 19.0, -24.0 ], [ 19.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -24.0 ], [ 20.0, -24.5 ], [ 19.5, -24.5 ], [ 19.5, -24.0 ], [ 20.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -24.0 ], [ 20.5, -24.5 ], [ 20.0, -24.5 ], [ 20.0, -24.0 ], [ 20.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -24.0 ], [ 21.0, -24.5 ], [ 20.5, -24.5 ], [ 20.5, -24.0 ], [ 21.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -24.0 ], [ 21.5, -24.5 ], [ 21.0, -24.5 ], [ 21.0, -24.0 ], [ 21.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -24.0 ], [ 22.0, -24.5 ], [ 21.5, -24.5 ], [ 21.5, -24.0 ], [ 22.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -24.0 ], [ 22.5, -24.5 ], [ 22.0, -24.5 ], [ 22.0, -24.0 ], [ 22.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -24.0 ], [ 23.0, -24.5 ], [ 22.5, -24.5 ], [ 22.5, -24.0 ], [ 23.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -24.0 ], [ 23.5, -24.5 ], [ 23.0, -24.5 ], [ 23.0, -24.0 ], [ 23.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -24.0 ], [ 24.0, -24.5 ], [ 23.5, -24.5 ], [ 23.5, -24.0 ], [ 24.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -24.0 ], [ 24.5, -24.5 ], [ 24.0, -24.5 ], [ 24.0, -24.0 ], [ 24.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -24.0 ], [ 25.0, -24.5 ], [ 24.5, -24.5 ], [ 24.5, -24.0 ], [ 25.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -24.0 ], [ 25.5, -24.5 ], [ 25.0, -24.5 ], [ 25.0, -24.0 ], [ 25.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -24.0 ], [ 26.0, -24.5 ], [ 25.5, -24.5 ], [ 25.5, -24.0 ], [ 26.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -24.0 ], [ 26.5, -24.5 ], [ 26.0, -24.5 ], [ 26.0, -24.0 ], [ 26.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -24.0 ], [ 27.0, -24.5 ], [ 26.5, -24.5 ], [ 26.5, -24.0 ], [ 27.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -24.0 ], [ 27.5, -24.5 ], [ 27.0, -24.5 ], [ 27.0, -24.0 ], [ 27.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -24.0 ], [ 28.0, -24.5 ], [ 27.5, -24.5 ], [ 27.5, -24.0 ], [ 28.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -24.0 ], [ 28.5, -24.5 ], [ 28.0, -24.5 ], [ 28.0, -24.0 ], [ 28.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -24.0 ], [ 29.0, -24.5 ], [ 28.5, -24.5 ], [ 28.5, -24.0 ], [ 29.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -24.0 ], [ 29.5, -24.5 ], [ 29.0, -24.5 ], [ 29.0, -24.0 ], [ 29.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -24.0 ], [ 30.0, -24.5 ], [ 29.5, -24.5 ], [ 29.5, -24.0 ], [ 30.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -24.0 ], [ 30.5, -24.5 ], [ 30.0, -24.5 ], [ 30.0, -24.0 ], [ 30.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -24.0 ], [ 31.0, -24.5 ], [ 30.5, -24.5 ], [ 30.5, -24.0 ], [ 31.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -24.0 ], [ 31.5, -24.5 ], [ 31.0, -24.5 ], [ 31.0, -24.0 ], [ 31.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -24.0 ], [ 32.0, -24.5 ], [ 31.5, -24.5 ], [ 31.5, -24.0 ], [ 32.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -24.0 ], [ 32.5, -24.5 ], [ 32.0, -24.5 ], [ 32.0, -24.0 ], [ 32.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -24.0 ], [ 33.0, -24.5 ], [ 32.5, -24.5 ], [ 32.5, -24.0 ], [ 33.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -24.0 ], [ 33.5, -24.5 ], [ 33.0, -24.5 ], [ 33.0, -24.0 ], [ 33.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -24.0 ], [ 34.0, -24.5 ], [ 33.5, -24.5 ], [ 33.5, -24.0 ], [ 34.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -24.0 ], [ 34.5, -24.5 ], [ 34.0, -24.5 ], [ 34.0, -24.0 ], [ 34.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -24.0 ], [ 35.0, -24.5 ], [ 34.5, -24.5 ], [ 34.5, -24.0 ], [ 35.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -24.0 ], [ 35.5, -24.5 ], [ 35.0, -24.5 ], [ 35.0, -24.0 ], [ 35.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, -24.0 ], [ 44.0, -24.5 ], [ 43.5, -24.5 ], [ 43.5, -24.0 ], [ 44.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, -24.0 ], [ 44.5, -24.5 ], [ 44.0, -24.5 ], [ 44.0, -24.0 ], [ 44.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -24.0 ], [ 45.0, -24.5 ], [ 44.5, -24.5 ], [ 44.5, -24.0 ], [ 45.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -24.0 ], [ 45.5, -24.5 ], [ 45.0, -24.5 ], [ 45.0, -24.0 ], [ 45.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -24.0 ], [ 46.0, -24.5 ], [ 45.5, -24.5 ], [ 45.5, -24.0 ], [ 46.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -24.0 ], [ 46.5, -24.5 ], [ 46.0, -24.5 ], [ 46.0, -24.0 ], [ 46.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -24.0 ], [ 47.0, -24.5 ], [ 46.5, -24.5 ], [ 46.5, -24.0 ], [ 47.0, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -24.0 ], [ 47.5, -24.5 ], [ 47.0, -24.5 ], [ 47.0, -24.0 ], [ 47.5, -24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -23.5 ], [ 15.0, -24.0 ], [ 14.5, -24.0 ], [ 14.5, -23.5 ], [ 15.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -23.5 ], [ 15.5, -24.0 ], [ 15.0, -24.0 ], [ 15.0, -23.5 ], [ 15.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -23.5 ], [ 16.0, -24.0 ], [ 15.5, -24.0 ], [ 15.5, -23.5 ], [ 16.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -23.5 ], [ 16.5, -24.0 ], [ 16.0, -24.0 ], [ 16.0, -23.5 ], [ 16.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -23.5 ], [ 17.0, -24.0 ], [ 16.5, -24.0 ], [ 16.5, -23.5 ], [ 17.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -23.5 ], [ 17.5, -24.0 ], [ 17.0, -24.0 ], [ 17.0, -23.5 ], [ 17.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -23.5 ], [ 18.0, -24.0 ], [ 17.5, -24.0 ], [ 17.5, -23.5 ], [ 18.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -23.5 ], [ 18.5, -24.0 ], [ 18.0, -24.0 ], [ 18.0, -23.5 ], [ 18.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -23.5 ], [ 19.0, -24.0 ], [ 18.5, -24.0 ], [ 18.5, -23.5 ], [ 19.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -23.5 ], [ 19.5, -24.0 ], [ 19.0, -24.0 ], [ 19.0, -23.5 ], [ 19.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -23.5 ], [ 20.0, -24.0 ], [ 19.5, -24.0 ], [ 19.5, -23.5 ], [ 20.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -23.5 ], [ 20.5, -24.0 ], [ 20.0, -24.0 ], [ 20.0, -23.5 ], [ 20.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -23.5 ], [ 21.0, -24.0 ], [ 20.5, -24.0 ], [ 20.5, -23.5 ], [ 21.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -23.5 ], [ 21.5, -24.0 ], [ 21.0, -24.0 ], [ 21.0, -23.5 ], [ 21.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -23.5 ], [ 22.0, -24.0 ], [ 21.5, -24.0 ], [ 21.5, -23.5 ], [ 22.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -23.5 ], [ 22.5, -24.0 ], [ 22.0, -24.0 ], [ 22.0, -23.5 ], [ 22.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -23.5 ], [ 23.0, -24.0 ], [ 22.5, -24.0 ], [ 22.5, -23.5 ], [ 23.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -23.5 ], [ 23.5, -24.0 ], [ 23.0, -24.0 ], [ 23.0, -23.5 ], [ 23.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -23.5 ], [ 24.0, -24.0 ], [ 23.5, -24.0 ], [ 23.5, -23.5 ], [ 24.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -23.5 ], [ 24.5, -24.0 ], [ 24.0, -24.0 ], [ 24.0, -23.5 ], [ 24.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -23.5 ], [ 25.0, -24.0 ], [ 24.5, -24.0 ], [ 24.5, -23.5 ], [ 25.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -23.5 ], [ 25.5, -24.0 ], [ 25.0, -24.0 ], [ 25.0, -23.5 ], [ 25.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -23.5 ], [ 26.0, -24.0 ], [ 25.5, -24.0 ], [ 25.5, -23.5 ], [ 26.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -23.5 ], [ 26.5, -24.0 ], [ 26.0, -24.0 ], [ 26.0, -23.5 ], [ 26.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -23.5 ], [ 27.0, -24.0 ], [ 26.5, -24.0 ], [ 26.5, -23.5 ], [ 27.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -23.5 ], [ 27.5, -24.0 ], [ 27.0, -24.0 ], [ 27.0, -23.5 ], [ 27.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -23.5 ], [ 28.0, -24.0 ], [ 27.5, -24.0 ], [ 27.5, -23.5 ], [ 28.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -23.5 ], [ 28.5, -24.0 ], [ 28.0, -24.0 ], [ 28.0, -23.5 ], [ 28.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -23.5 ], [ 29.0, -24.0 ], [ 28.5, -24.0 ], [ 28.5, -23.5 ], [ 29.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -23.5 ], [ 29.5, -24.0 ], [ 29.0, -24.0 ], [ 29.0, -23.5 ], [ 29.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -23.5 ], [ 30.0, -24.0 ], [ 29.5, -24.0 ], [ 29.5, -23.5 ], [ 30.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -23.5 ], [ 30.5, -24.0 ], [ 30.0, -24.0 ], [ 30.0, -23.5 ], [ 30.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -23.5 ], [ 31.0, -24.0 ], [ 30.5, -24.0 ], [ 30.5, -23.5 ], [ 31.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -23.5 ], [ 31.5, -24.0 ], [ 31.0, -24.0 ], [ 31.0, -23.5 ], [ 31.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -23.5 ], [ 32.0, -24.0 ], [ 31.5, -24.0 ], [ 31.5, -23.5 ], [ 32.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -23.5 ], [ 32.5, -24.0 ], [ 32.0, -24.0 ], [ 32.0, -23.5 ], [ 32.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -23.5 ], [ 33.0, -24.0 ], [ 32.5, -24.0 ], [ 32.5, -23.5 ], [ 33.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -23.5 ], [ 33.5, -24.0 ], [ 33.0, -24.0 ], [ 33.0, -23.5 ], [ 33.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -23.5 ], [ 34.0, -24.0 ], [ 33.5, -24.0 ], [ 33.5, -23.5 ], [ 34.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -23.5 ], [ 34.5, -24.0 ], [ 34.0, -24.0 ], [ 34.0, -23.5 ], [ 34.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -23.5 ], [ 35.0, -24.0 ], [ 34.5, -24.0 ], [ 34.5, -23.5 ], [ 35.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -23.5 ], [ 35.5, -24.0 ], [ 35.0, -24.0 ], [ 35.0, -23.5 ], [ 35.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, -23.5 ], [ 44.0, -24.0 ], [ 43.5, -24.0 ], [ 43.5, -23.5 ], [ 44.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, -23.5 ], [ 44.5, -24.0 ], [ 44.0, -24.0 ], [ 44.0, -23.5 ], [ 44.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -23.5 ], [ 45.0, -24.0 ], [ 44.5, -24.0 ], [ 44.5, -23.5 ], [ 45.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -23.5 ], [ 45.5, -24.0 ], [ 45.0, -24.0 ], [ 45.0, -23.5 ], [ 45.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -23.5 ], [ 46.0, -24.0 ], [ 45.5, -24.0 ], [ 45.5, -23.5 ], [ 46.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -23.5 ], [ 46.5, -24.0 ], [ 46.0, -24.0 ], [ 46.0, -23.5 ], [ 46.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -23.5 ], [ 47.0, -24.0 ], [ 46.5, -24.0 ], [ 46.5, -23.5 ], [ 47.0, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -23.5 ], [ 47.5, -24.0 ], [ 47.0, -24.0 ], [ 47.0, -23.5 ], [ 47.5, -23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -23.0 ], [ 15.0, -23.5 ], [ 14.5, -23.5 ], [ 14.5, -23.0 ], [ 15.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -23.0 ], [ 15.5, -23.5 ], [ 15.0, -23.5 ], [ 15.0, -23.0 ], [ 15.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -23.0 ], [ 16.0, -23.5 ], [ 15.5, -23.5 ], [ 15.5, -23.0 ], [ 16.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -23.0 ], [ 16.5, -23.5 ], [ 16.0, -23.5 ], [ 16.0, -23.0 ], [ 16.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -23.0 ], [ 17.0, -23.5 ], [ 16.5, -23.5 ], [ 16.5, -23.0 ], [ 17.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -23.0 ], [ 17.5, -23.5 ], [ 17.0, -23.5 ], [ 17.0, -23.0 ], [ 17.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -23.0 ], [ 18.0, -23.5 ], [ 17.5, -23.5 ], [ 17.5, -23.0 ], [ 18.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -23.0 ], [ 18.5, -23.5 ], [ 18.0, -23.5 ], [ 18.0, -23.0 ], [ 18.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -23.0 ], [ 19.0, -23.5 ], [ 18.5, -23.5 ], [ 18.5, -23.0 ], [ 19.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -23.0 ], [ 19.5, -23.5 ], [ 19.0, -23.5 ], [ 19.0, -23.0 ], [ 19.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -23.0 ], [ 20.0, -23.5 ], [ 19.5, -23.5 ], [ 19.5, -23.0 ], [ 20.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -23.0 ], [ 20.5, -23.5 ], [ 20.0, -23.5 ], [ 20.0, -23.0 ], [ 20.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -23.0 ], [ 21.0, -23.5 ], [ 20.5, -23.5 ], [ 20.5, -23.0 ], [ 21.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -23.0 ], [ 21.5, -23.5 ], [ 21.0, -23.5 ], [ 21.0, -23.0 ], [ 21.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -23.0 ], [ 22.0, -23.5 ], [ 21.5, -23.5 ], [ 21.5, -23.0 ], [ 22.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -23.0 ], [ 22.5, -23.5 ], [ 22.0, -23.5 ], [ 22.0, -23.0 ], [ 22.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -23.0 ], [ 23.0, -23.5 ], [ 22.5, -23.5 ], [ 22.5, -23.0 ], [ 23.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -23.0 ], [ 23.5, -23.5 ], [ 23.0, -23.5 ], [ 23.0, -23.0 ], [ 23.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -23.0 ], [ 24.0, -23.5 ], [ 23.5, -23.5 ], [ 23.5, -23.0 ], [ 24.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -23.0 ], [ 24.5, -23.5 ], [ 24.0, -23.5 ], [ 24.0, -23.0 ], [ 24.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -23.0 ], [ 25.0, -23.5 ], [ 24.5, -23.5 ], [ 24.5, -23.0 ], [ 25.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -23.0 ], [ 25.5, -23.5 ], [ 25.0, -23.5 ], [ 25.0, -23.0 ], [ 25.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -23.0 ], [ 26.0, -23.5 ], [ 25.5, -23.5 ], [ 25.5, -23.0 ], [ 26.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -23.0 ], [ 26.5, -23.5 ], [ 26.0, -23.5 ], [ 26.0, -23.0 ], [ 26.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -23.0 ], [ 27.0, -23.5 ], [ 26.5, -23.5 ], [ 26.5, -23.0 ], [ 27.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -23.0 ], [ 27.5, -23.5 ], [ 27.0, -23.5 ], [ 27.0, -23.0 ], [ 27.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -23.0 ], [ 28.0, -23.5 ], [ 27.5, -23.5 ], [ 27.5, -23.0 ], [ 28.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -23.0 ], [ 28.5, -23.5 ], [ 28.0, -23.5 ], [ 28.0, -23.0 ], [ 28.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -23.0 ], [ 29.0, -23.5 ], [ 28.5, -23.5 ], [ 28.5, -23.0 ], [ 29.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -23.0 ], [ 29.5, -23.5 ], [ 29.0, -23.5 ], [ 29.0, -23.0 ], [ 29.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -23.0 ], [ 30.0, -23.5 ], [ 29.5, -23.5 ], [ 29.5, -23.0 ], [ 30.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -23.0 ], [ 30.5, -23.5 ], [ 30.0, -23.5 ], [ 30.0, -23.0 ], [ 30.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -23.0 ], [ 31.0, -23.5 ], [ 30.5, -23.5 ], [ 30.5, -23.0 ], [ 31.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -23.0 ], [ 31.5, -23.5 ], [ 31.0, -23.5 ], [ 31.0, -23.0 ], [ 31.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -23.0 ], [ 32.0, -23.5 ], [ 31.5, -23.5 ], [ 31.5, -23.0 ], [ 32.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -23.0 ], [ 32.5, -23.5 ], [ 32.0, -23.5 ], [ 32.0, -23.0 ], [ 32.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -23.0 ], [ 33.0, -23.5 ], [ 32.5, -23.5 ], [ 32.5, -23.0 ], [ 33.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -23.0 ], [ 33.5, -23.5 ], [ 33.0, -23.5 ], [ 33.0, -23.0 ], [ 33.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -23.0 ], [ 34.0, -23.5 ], [ 33.5, -23.5 ], [ 33.5, -23.0 ], [ 34.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -23.0 ], [ 34.5, -23.5 ], [ 34.0, -23.5 ], [ 34.0, -23.0 ], [ 34.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -23.0 ], [ 35.0, -23.5 ], [ 34.5, -23.5 ], [ 34.5, -23.0 ], [ 35.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -23.0 ], [ 35.5, -23.5 ], [ 35.0, -23.5 ], [ 35.0, -23.0 ], [ 35.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, -23.0 ], [ 44.0, -23.5 ], [ 43.5, -23.5 ], [ 43.5, -23.0 ], [ 44.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, -23.0 ], [ 44.5, -23.5 ], [ 44.0, -23.5 ], [ 44.0, -23.0 ], [ 44.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -23.0 ], [ 45.0, -23.5 ], [ 44.5, -23.5 ], [ 44.5, -23.0 ], [ 45.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -23.0 ], [ 45.5, -23.5 ], [ 45.0, -23.5 ], [ 45.0, -23.0 ], [ 45.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -23.0 ], [ 46.0, -23.5 ], [ 45.5, -23.5 ], [ 45.5, -23.0 ], [ 46.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -23.0 ], [ 46.5, -23.5 ], [ 46.0, -23.5 ], [ 46.0, -23.0 ], [ 46.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -23.0 ], [ 47.0, -23.5 ], [ 46.5, -23.5 ], [ 46.5, -23.0 ], [ 47.0, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -23.0 ], [ 47.5, -23.5 ], [ 47.0, -23.5 ], [ 47.0, -23.0 ], [ 47.5, -23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -22.5 ], [ 15.0, -23.0 ], [ 14.5, -23.0 ], [ 14.5, -22.5 ], [ 15.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -22.5 ], [ 15.5, -23.0 ], [ 15.0, -23.0 ], [ 15.0, -22.5 ], [ 15.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -22.5 ], [ 16.0, -23.0 ], [ 15.5, -23.0 ], [ 15.5, -22.5 ], [ 16.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -22.5 ], [ 16.5, -23.0 ], [ 16.0, -23.0 ], [ 16.0, -22.5 ], [ 16.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -22.5 ], [ 17.0, -23.0 ], [ 16.5, -23.0 ], [ 16.5, -22.5 ], [ 17.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -22.5 ], [ 17.5, -23.0 ], [ 17.0, -23.0 ], [ 17.0, -22.5 ], [ 17.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -22.5 ], [ 18.0, -23.0 ], [ 17.5, -23.0 ], [ 17.5, -22.5 ], [ 18.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -22.5 ], [ 18.5, -23.0 ], [ 18.0, -23.0 ], [ 18.0, -22.5 ], [ 18.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -22.5 ], [ 19.0, -23.0 ], [ 18.5, -23.0 ], [ 18.5, -22.5 ], [ 19.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -22.5 ], [ 19.5, -23.0 ], [ 19.0, -23.0 ], [ 19.0, -22.5 ], [ 19.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -22.5 ], [ 20.0, -23.0 ], [ 19.5, -23.0 ], [ 19.5, -22.5 ], [ 20.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -22.5 ], [ 20.5, -23.0 ], [ 20.0, -23.0 ], [ 20.0, -22.5 ], [ 20.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -22.5 ], [ 21.0, -23.0 ], [ 20.5, -23.0 ], [ 20.5, -22.5 ], [ 21.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -22.5 ], [ 21.5, -23.0 ], [ 21.0, -23.0 ], [ 21.0, -22.5 ], [ 21.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -22.5 ], [ 22.0, -23.0 ], [ 21.5, -23.0 ], [ 21.5, -22.5 ], [ 22.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -22.5 ], [ 22.5, -23.0 ], [ 22.0, -23.0 ], [ 22.0, -22.5 ], [ 22.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -22.5 ], [ 23.0, -23.0 ], [ 22.5, -23.0 ], [ 22.5, -22.5 ], [ 23.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -22.5 ], [ 23.5, -23.0 ], [ 23.0, -23.0 ], [ 23.0, -22.5 ], [ 23.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -22.5 ], [ 24.0, -23.0 ], [ 23.5, -23.0 ], [ 23.5, -22.5 ], [ 24.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -22.5 ], [ 24.5, -23.0 ], [ 24.0, -23.0 ], [ 24.0, -22.5 ], [ 24.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -22.5 ], [ 25.0, -23.0 ], [ 24.5, -23.0 ], [ 24.5, -22.5 ], [ 25.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -22.5 ], [ 25.5, -23.0 ], [ 25.0, -23.0 ], [ 25.0, -22.5 ], [ 25.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -22.5 ], [ 26.0, -23.0 ], [ 25.5, -23.0 ], [ 25.5, -22.5 ], [ 26.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -22.5 ], [ 26.5, -23.0 ], [ 26.0, -23.0 ], [ 26.0, -22.5 ], [ 26.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -22.5 ], [ 27.0, -23.0 ], [ 26.5, -23.0 ], [ 26.5, -22.5 ], [ 27.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -22.5 ], [ 27.5, -23.0 ], [ 27.0, -23.0 ], [ 27.0, -22.5 ], [ 27.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -22.5 ], [ 28.0, -23.0 ], [ 27.5, -23.0 ], [ 27.5, -22.5 ], [ 28.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -22.5 ], [ 28.5, -23.0 ], [ 28.0, -23.0 ], [ 28.0, -22.5 ], [ 28.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -22.5 ], [ 29.0, -23.0 ], [ 28.5, -23.0 ], [ 28.5, -22.5 ], [ 29.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -22.5 ], [ 29.5, -23.0 ], [ 29.0, -23.0 ], [ 29.0, -22.5 ], [ 29.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -22.5 ], [ 30.0, -23.0 ], [ 29.5, -23.0 ], [ 29.5, -22.5 ], [ 30.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -22.5 ], [ 30.5, -23.0 ], [ 30.0, -23.0 ], [ 30.0, -22.5 ], [ 30.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -22.5 ], [ 31.0, -23.0 ], [ 30.5, -23.0 ], [ 30.5, -22.5 ], [ 31.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -22.5 ], [ 31.5, -23.0 ], [ 31.0, -23.0 ], [ 31.0, -22.5 ], [ 31.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -22.5 ], [ 32.0, -23.0 ], [ 31.5, -23.0 ], [ 31.5, -22.5 ], [ 32.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -22.5 ], [ 32.5, -23.0 ], [ 32.0, -23.0 ], [ 32.0, -22.5 ], [ 32.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -22.5 ], [ 33.0, -23.0 ], [ 32.5, -23.0 ], [ 32.5, -22.5 ], [ 33.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -22.5 ], [ 33.5, -23.0 ], [ 33.0, -23.0 ], [ 33.0, -22.5 ], [ 33.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -22.5 ], [ 34.0, -23.0 ], [ 33.5, -23.0 ], [ 33.5, -22.5 ], [ 34.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -22.5 ], [ 34.5, -23.0 ], [ 34.0, -23.0 ], [ 34.0, -22.5 ], [ 34.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -22.5 ], [ 35.0, -23.0 ], [ 34.5, -23.0 ], [ 34.5, -22.5 ], [ 35.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -22.5 ], [ 35.5, -23.0 ], [ 35.0, -23.0 ], [ 35.0, -22.5 ], [ 35.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, -22.5 ], [ 44.0, -23.0 ], [ 43.5, -23.0 ], [ 43.5, -22.5 ], [ 44.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, -22.5 ], [ 44.5, -23.0 ], [ 44.0, -23.0 ], [ 44.0, -22.5 ], [ 44.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -22.5 ], [ 45.0, -23.0 ], [ 44.5, -23.0 ], [ 44.5, -22.5 ], [ 45.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -22.5 ], [ 45.5, -23.0 ], [ 45.0, -23.0 ], [ 45.0, -22.5 ], [ 45.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -22.5 ], [ 46.0, -23.0 ], [ 45.5, -23.0 ], [ 45.5, -22.5 ], [ 46.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -22.5 ], [ 46.5, -23.0 ], [ 46.0, -23.0 ], [ 46.0, -22.5 ], [ 46.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -22.5 ], [ 47.0, -23.0 ], [ 46.5, -23.0 ], [ 46.5, -22.5 ], [ 47.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -22.5 ], [ 47.5, -23.0 ], [ 47.0, -23.0 ], [ 47.0, -22.5 ], [ 47.5, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, -22.5 ], [ 48.0, -23.0 ], [ 47.5, -23.0 ], [ 47.5, -22.5 ], [ 48.0, -22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -22.0 ], [ 15.0, -22.5 ], [ 14.5, -22.5 ], [ 14.5, -22.0 ], [ 15.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -22.0 ], [ 15.5, -22.5 ], [ 15.0, -22.5 ], [ 15.0, -22.0 ], [ 15.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -22.0 ], [ 16.0, -22.5 ], [ 15.5, -22.5 ], [ 15.5, -22.0 ], [ 16.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -22.0 ], [ 16.5, -22.5 ], [ 16.0, -22.5 ], [ 16.0, -22.0 ], [ 16.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -22.0 ], [ 17.0, -22.5 ], [ 16.5, -22.5 ], [ 16.5, -22.0 ], [ 17.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -22.0 ], [ 17.5, -22.5 ], [ 17.0, -22.5 ], [ 17.0, -22.0 ], [ 17.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -22.0 ], [ 18.0, -22.5 ], [ 17.5, -22.5 ], [ 17.5, -22.0 ], [ 18.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -22.0 ], [ 18.5, -22.5 ], [ 18.0, -22.5 ], [ 18.0, -22.0 ], [ 18.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -22.0 ], [ 19.0, -22.5 ], [ 18.5, -22.5 ], [ 18.5, -22.0 ], [ 19.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -22.0 ], [ 19.5, -22.5 ], [ 19.0, -22.5 ], [ 19.0, -22.0 ], [ 19.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -22.0 ], [ 20.0, -22.5 ], [ 19.5, -22.5 ], [ 19.5, -22.0 ], [ 20.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -22.0 ], [ 20.5, -22.5 ], [ 20.0, -22.5 ], [ 20.0, -22.0 ], [ 20.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -22.0 ], [ 21.0, -22.5 ], [ 20.5, -22.5 ], [ 20.5, -22.0 ], [ 21.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -22.0 ], [ 21.5, -22.5 ], [ 21.0, -22.5 ], [ 21.0, -22.0 ], [ 21.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -22.0 ], [ 22.0, -22.5 ], [ 21.5, -22.5 ], [ 21.5, -22.0 ], [ 22.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -22.0 ], [ 22.5, -22.5 ], [ 22.0, -22.5 ], [ 22.0, -22.0 ], [ 22.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -22.0 ], [ 23.0, -22.5 ], [ 22.5, -22.5 ], [ 22.5, -22.0 ], [ 23.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -22.0 ], [ 23.5, -22.5 ], [ 23.0, -22.5 ], [ 23.0, -22.0 ], [ 23.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -22.0 ], [ 24.0, -22.5 ], [ 23.5, -22.5 ], [ 23.5, -22.0 ], [ 24.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -22.0 ], [ 24.5, -22.5 ], [ 24.0, -22.5 ], [ 24.0, -22.0 ], [ 24.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -22.0 ], [ 25.0, -22.5 ], [ 24.5, -22.5 ], [ 24.5, -22.0 ], [ 25.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -22.0 ], [ 25.5, -22.5 ], [ 25.0, -22.5 ], [ 25.0, -22.0 ], [ 25.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -22.0 ], [ 26.0, -22.5 ], [ 25.5, -22.5 ], [ 25.5, -22.0 ], [ 26.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -22.0 ], [ 26.5, -22.5 ], [ 26.0, -22.5 ], [ 26.0, -22.0 ], [ 26.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -22.0 ], [ 27.0, -22.5 ], [ 26.5, -22.5 ], [ 26.5, -22.0 ], [ 27.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -22.0 ], [ 27.5, -22.5 ], [ 27.0, -22.5 ], [ 27.0, -22.0 ], [ 27.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -22.0 ], [ 28.0, -22.5 ], [ 27.5, -22.5 ], [ 27.5, -22.0 ], [ 28.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -22.0 ], [ 28.5, -22.5 ], [ 28.0, -22.5 ], [ 28.0, -22.0 ], [ 28.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -22.0 ], [ 29.0, -22.5 ], [ 28.5, -22.5 ], [ 28.5, -22.0 ], [ 29.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -22.0 ], [ 29.5, -22.5 ], [ 29.0, -22.5 ], [ 29.0, -22.0 ], [ 29.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -22.0 ], [ 30.0, -22.5 ], [ 29.5, -22.5 ], [ 29.5, -22.0 ], [ 30.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -22.0 ], [ 30.5, -22.5 ], [ 30.0, -22.5 ], [ 30.0, -22.0 ], [ 30.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -22.0 ], [ 31.0, -22.5 ], [ 30.5, -22.5 ], [ 30.5, -22.0 ], [ 31.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -22.0 ], [ 31.5, -22.5 ], [ 31.0, -22.5 ], [ 31.0, -22.0 ], [ 31.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -22.0 ], [ 32.0, -22.5 ], [ 31.5, -22.5 ], [ 31.5, -22.0 ], [ 32.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -22.0 ], [ 32.5, -22.5 ], [ 32.0, -22.5 ], [ 32.0, -22.0 ], [ 32.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -22.0 ], [ 33.0, -22.5 ], [ 32.5, -22.5 ], [ 32.5, -22.0 ], [ 33.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -22.0 ], [ 33.5, -22.5 ], [ 33.0, -22.5 ], [ 33.0, -22.0 ], [ 33.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -22.0 ], [ 34.0, -22.5 ], [ 33.5, -22.5 ], [ 33.5, -22.0 ], [ 34.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -22.0 ], [ 34.5, -22.5 ], [ 34.0, -22.5 ], [ 34.0, -22.0 ], [ 34.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -22.0 ], [ 35.0, -22.5 ], [ 34.5, -22.5 ], [ 34.5, -22.0 ], [ 35.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -22.0 ], [ 35.5, -22.5 ], [ 35.0, -22.5 ], [ 35.0, -22.0 ], [ 35.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, -22.0 ], [ 43.5, -22.5 ], [ 43.0, -22.5 ], [ 43.0, -22.0 ], [ 43.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, -22.0 ], [ 44.0, -22.5 ], [ 43.5, -22.5 ], [ 43.5, -22.0 ], [ 44.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, -22.0 ], [ 44.5, -22.5 ], [ 44.0, -22.5 ], [ 44.0, -22.0 ], [ 44.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -22.0 ], [ 45.0, -22.5 ], [ 44.5, -22.5 ], [ 44.5, -22.0 ], [ 45.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -22.0 ], [ 45.5, -22.5 ], [ 45.0, -22.5 ], [ 45.0, -22.0 ], [ 45.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -22.0 ], [ 46.0, -22.5 ], [ 45.5, -22.5 ], [ 45.5, -22.0 ], [ 46.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -22.0 ], [ 46.5, -22.5 ], [ 46.0, -22.5 ], [ 46.0, -22.0 ], [ 46.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -22.0 ], [ 47.0, -22.5 ], [ 46.5, -22.5 ], [ 46.5, -22.0 ], [ 47.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -22.0 ], [ 47.5, -22.5 ], [ 47.0, -22.5 ], [ 47.0, -22.0 ], [ 47.5, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, -22.0 ], [ 48.0, -22.5 ], [ 47.5, -22.5 ], [ 47.5, -22.0 ], [ 48.0, -22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -21.5 ], [ 14.5, -22.0 ], [ 14.0, -22.0 ], [ 14.0, -21.5 ], [ 14.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -21.5 ], [ 15.0, -22.0 ], [ 14.5, -22.0 ], [ 14.5, -21.5 ], [ 15.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -21.5 ], [ 15.5, -22.0 ], [ 15.0, -22.0 ], [ 15.0, -21.5 ], [ 15.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -21.5 ], [ 16.0, -22.0 ], [ 15.5, -22.0 ], [ 15.5, -21.5 ], [ 16.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -21.5 ], [ 16.5, -22.0 ], [ 16.0, -22.0 ], [ 16.0, -21.5 ], [ 16.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -21.5 ], [ 17.0, -22.0 ], [ 16.5, -22.0 ], [ 16.5, -21.5 ], [ 17.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -21.5 ], [ 17.5, -22.0 ], [ 17.0, -22.0 ], [ 17.0, -21.5 ], [ 17.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -21.5 ], [ 18.0, -22.0 ], [ 17.5, -22.0 ], [ 17.5, -21.5 ], [ 18.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -21.5 ], [ 18.5, -22.0 ], [ 18.0, -22.0 ], [ 18.0, -21.5 ], [ 18.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -21.5 ], [ 19.0, -22.0 ], [ 18.5, -22.0 ], [ 18.5, -21.5 ], [ 19.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -21.5 ], [ 19.5, -22.0 ], [ 19.0, -22.0 ], [ 19.0, -21.5 ], [ 19.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -21.5 ], [ 20.0, -22.0 ], [ 19.5, -22.0 ], [ 19.5, -21.5 ], [ 20.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -21.5 ], [ 20.5, -22.0 ], [ 20.0, -22.0 ], [ 20.0, -21.5 ], [ 20.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -21.5 ], [ 21.0, -22.0 ], [ 20.5, -22.0 ], [ 20.5, -21.5 ], [ 21.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -21.5 ], [ 21.5, -22.0 ], [ 21.0, -22.0 ], [ 21.0, -21.5 ], [ 21.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -21.5 ], [ 22.0, -22.0 ], [ 21.5, -22.0 ], [ 21.5, -21.5 ], [ 22.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -21.5 ], [ 22.5, -22.0 ], [ 22.0, -22.0 ], [ 22.0, -21.5 ], [ 22.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -21.5 ], [ 23.0, -22.0 ], [ 22.5, -22.0 ], [ 22.5, -21.5 ], [ 23.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -21.5 ], [ 23.5, -22.0 ], [ 23.0, -22.0 ], [ 23.0, -21.5 ], [ 23.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -21.5 ], [ 24.0, -22.0 ], [ 23.5, -22.0 ], [ 23.5, -21.5 ], [ 24.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -21.5 ], [ 24.5, -22.0 ], [ 24.0, -22.0 ], [ 24.0, -21.5 ], [ 24.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -21.5 ], [ 25.0, -22.0 ], [ 24.5, -22.0 ], [ 24.5, -21.5 ], [ 25.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -21.5 ], [ 25.5, -22.0 ], [ 25.0, -22.0 ], [ 25.0, -21.5 ], [ 25.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -21.5 ], [ 26.0, -22.0 ], [ 25.5, -22.0 ], [ 25.5, -21.5 ], [ 26.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -21.5 ], [ 26.5, -22.0 ], [ 26.0, -22.0 ], [ 26.0, -21.5 ], [ 26.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -21.5 ], [ 27.0, -22.0 ], [ 26.5, -22.0 ], [ 26.5, -21.5 ], [ 27.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -21.5 ], [ 27.5, -22.0 ], [ 27.0, -22.0 ], [ 27.0, -21.5 ], [ 27.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -21.5 ], [ 28.0, -22.0 ], [ 27.5, -22.0 ], [ 27.5, -21.5 ], [ 28.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -21.5 ], [ 28.5, -22.0 ], [ 28.0, -22.0 ], [ 28.0, -21.5 ], [ 28.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -21.5 ], [ 29.0, -22.0 ], [ 28.5, -22.0 ], [ 28.5, -21.5 ], [ 29.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -21.5 ], [ 29.5, -22.0 ], [ 29.0, -22.0 ], [ 29.0, -21.5 ], [ 29.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -21.5 ], [ 30.0, -22.0 ], [ 29.5, -22.0 ], [ 29.5, -21.5 ], [ 30.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -21.5 ], [ 30.5, -22.0 ], [ 30.0, -22.0 ], [ 30.0, -21.5 ], [ 30.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -21.5 ], [ 31.0, -22.0 ], [ 30.5, -22.0 ], [ 30.5, -21.5 ], [ 31.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -21.5 ], [ 31.5, -22.0 ], [ 31.0, -22.0 ], [ 31.0, -21.5 ], [ 31.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -21.5 ], [ 32.0, -22.0 ], [ 31.5, -22.0 ], [ 31.5, -21.5 ], [ 32.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -21.5 ], [ 32.5, -22.0 ], [ 32.0, -22.0 ], [ 32.0, -21.5 ], [ 32.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -21.5 ], [ 33.0, -22.0 ], [ 32.5, -22.0 ], [ 32.5, -21.5 ], [ 33.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -21.5 ], [ 33.5, -22.0 ], [ 33.0, -22.0 ], [ 33.0, -21.5 ], [ 33.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -21.5 ], [ 34.0, -22.0 ], [ 33.5, -22.0 ], [ 33.5, -21.5 ], [ 34.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -21.5 ], [ 34.5, -22.0 ], [ 34.0, -22.0 ], [ 34.0, -21.5 ], [ 34.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -21.5 ], [ 35.0, -22.0 ], [ 34.5, -22.0 ], [ 34.5, -21.5 ], [ 35.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, -21.5 ], [ 44.0, -22.0 ], [ 43.5, -22.0 ], [ 43.5, -21.5 ], [ 44.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, -21.5 ], [ 44.5, -22.0 ], [ 44.0, -22.0 ], [ 44.0, -21.5 ], [ 44.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -21.5 ], [ 45.0, -22.0 ], [ 44.5, -22.0 ], [ 44.5, -21.5 ], [ 45.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -21.5 ], [ 45.5, -22.0 ], [ 45.0, -22.0 ], [ 45.0, -21.5 ], [ 45.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -21.5 ], [ 46.0, -22.0 ], [ 45.5, -22.0 ], [ 45.5, -21.5 ], [ 46.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -21.5 ], [ 46.5, -22.0 ], [ 46.0, -22.0 ], [ 46.0, -21.5 ], [ 46.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -21.5 ], [ 47.0, -22.0 ], [ 46.5, -22.0 ], [ 46.5, -21.5 ], [ 47.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -21.5 ], [ 47.5, -22.0 ], [ 47.0, -22.0 ], [ 47.0, -21.5 ], [ 47.5, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, -21.5 ], [ 48.0, -22.0 ], [ 47.5, -22.0 ], [ 47.5, -21.5 ], [ 48.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -21.0 ], [ 14.0, -21.5 ], [ 13.5, -21.5 ], [ 13.5, -21.0 ], [ 14.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -21.0 ], [ 14.5, -21.5 ], [ 14.0, -21.5 ], [ 14.0, -21.0 ], [ 14.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -21.0 ], [ 15.0, -21.5 ], [ 14.5, -21.5 ], [ 14.5, -21.0 ], [ 15.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -21.0 ], [ 15.5, -21.5 ], [ 15.0, -21.5 ], [ 15.0, -21.0 ], [ 15.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -21.0 ], [ 16.0, -21.5 ], [ 15.5, -21.5 ], [ 15.5, -21.0 ], [ 16.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -21.0 ], [ 16.5, -21.5 ], [ 16.0, -21.5 ], [ 16.0, -21.0 ], [ 16.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -21.0 ], [ 17.0, -21.5 ], [ 16.5, -21.5 ], [ 16.5, -21.0 ], [ 17.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -21.0 ], [ 17.5, -21.5 ], [ 17.0, -21.5 ], [ 17.0, -21.0 ], [ 17.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -21.0 ], [ 18.0, -21.5 ], [ 17.5, -21.5 ], [ 17.5, -21.0 ], [ 18.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -21.0 ], [ 18.5, -21.5 ], [ 18.0, -21.5 ], [ 18.0, -21.0 ], [ 18.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -21.0 ], [ 19.0, -21.5 ], [ 18.5, -21.5 ], [ 18.5, -21.0 ], [ 19.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -21.0 ], [ 19.5, -21.5 ], [ 19.0, -21.5 ], [ 19.0, -21.0 ], [ 19.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -21.0 ], [ 20.0, -21.5 ], [ 19.5, -21.5 ], [ 19.5, -21.0 ], [ 20.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -21.0 ], [ 20.5, -21.5 ], [ 20.0, -21.5 ], [ 20.0, -21.0 ], [ 20.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -21.0 ], [ 21.0, -21.5 ], [ 20.5, -21.5 ], [ 20.5, -21.0 ], [ 21.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -21.0 ], [ 21.5, -21.5 ], [ 21.0, -21.5 ], [ 21.0, -21.0 ], [ 21.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -21.0 ], [ 22.0, -21.5 ], [ 21.5, -21.5 ], [ 21.5, -21.0 ], [ 22.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -21.0 ], [ 22.5, -21.5 ], [ 22.0, -21.5 ], [ 22.0, -21.0 ], [ 22.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -21.0 ], [ 23.0, -21.5 ], [ 22.5, -21.5 ], [ 22.5, -21.0 ], [ 23.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -21.0 ], [ 23.5, -21.5 ], [ 23.0, -21.5 ], [ 23.0, -21.0 ], [ 23.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -21.0 ], [ 24.0, -21.5 ], [ 23.5, -21.5 ], [ 23.5, -21.0 ], [ 24.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -21.0 ], [ 24.5, -21.5 ], [ 24.0, -21.5 ], [ 24.0, -21.0 ], [ 24.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -21.0 ], [ 25.0, -21.5 ], [ 24.5, -21.5 ], [ 24.5, -21.0 ], [ 25.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -21.0 ], [ 25.5, -21.5 ], [ 25.0, -21.5 ], [ 25.0, -21.0 ], [ 25.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -21.0 ], [ 26.0, -21.5 ], [ 25.5, -21.5 ], [ 25.5, -21.0 ], [ 26.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -21.0 ], [ 26.5, -21.5 ], [ 26.0, -21.5 ], [ 26.0, -21.0 ], [ 26.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -21.0 ], [ 27.0, -21.5 ], [ 26.5, -21.5 ], [ 26.5, -21.0 ], [ 27.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -21.0 ], [ 27.5, -21.5 ], [ 27.0, -21.5 ], [ 27.0, -21.0 ], [ 27.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -21.0 ], [ 28.0, -21.5 ], [ 27.5, -21.5 ], [ 27.5, -21.0 ], [ 28.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -21.0 ], [ 28.5, -21.5 ], [ 28.0, -21.5 ], [ 28.0, -21.0 ], [ 28.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -21.0 ], [ 29.0, -21.5 ], [ 28.5, -21.5 ], [ 28.5, -21.0 ], [ 29.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -21.0 ], [ 29.5, -21.5 ], [ 29.0, -21.5 ], [ 29.0, -21.0 ], [ 29.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -21.0 ], [ 30.0, -21.5 ], [ 29.5, -21.5 ], [ 29.5, -21.0 ], [ 30.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -21.0 ], [ 30.5, -21.5 ], [ 30.0, -21.5 ], [ 30.0, -21.0 ], [ 30.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -21.0 ], [ 31.0, -21.5 ], [ 30.5, -21.5 ], [ 30.5, -21.0 ], [ 31.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -21.0 ], [ 31.5, -21.5 ], [ 31.0, -21.5 ], [ 31.0, -21.0 ], [ 31.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -21.0 ], [ 32.0, -21.5 ], [ 31.5, -21.5 ], [ 31.5, -21.0 ], [ 32.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -21.0 ], [ 32.5, -21.5 ], [ 32.0, -21.5 ], [ 32.0, -21.0 ], [ 32.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -21.0 ], [ 33.0, -21.5 ], [ 32.5, -21.5 ], [ 32.5, -21.0 ], [ 33.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -21.0 ], [ 33.5, -21.5 ], [ 33.0, -21.5 ], [ 33.0, -21.0 ], [ 33.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -21.0 ], [ 34.0, -21.5 ], [ 33.5, -21.5 ], [ 33.5, -21.0 ], [ 34.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -21.0 ], [ 34.5, -21.5 ], [ 34.0, -21.5 ], [ 34.0, -21.0 ], [ 34.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -21.0 ], [ 35.0, -21.5 ], [ 34.5, -21.5 ], [ 34.5, -21.0 ], [ 35.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, -21.0 ], [ 44.0, -21.5 ], [ 43.5, -21.5 ], [ 43.5, -21.0 ], [ 44.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, -21.0 ], [ 44.5, -21.5 ], [ 44.0, -21.5 ], [ 44.0, -21.0 ], [ 44.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -21.0 ], [ 45.0, -21.5 ], [ 44.5, -21.5 ], [ 44.5, -21.0 ], [ 45.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -21.0 ], [ 45.5, -21.5 ], [ 45.0, -21.5 ], [ 45.0, -21.0 ], [ 45.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -21.0 ], [ 46.0, -21.5 ], [ 45.5, -21.5 ], [ 45.5, -21.0 ], [ 46.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -21.0 ], [ 46.5, -21.5 ], [ 46.0, -21.5 ], [ 46.0, -21.0 ], [ 46.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -21.0 ], [ 47.0, -21.5 ], [ 46.5, -21.5 ], [ 46.5, -21.0 ], [ 47.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -21.0 ], [ 47.5, -21.5 ], [ 47.0, -21.5 ], [ 47.0, -21.0 ], [ 47.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, -21.0 ], [ 48.0, -21.5 ], [ 47.5, -21.5 ], [ 47.5, -21.0 ], [ 48.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, -21.0 ], [ 48.5, -21.5 ], [ 48.0, -21.5 ], [ 48.0, -21.0 ], [ 48.5, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.0, -21.0 ], [ 56.0, -21.5 ], [ 55.5, -21.5 ], [ 55.5, -21.0 ], [ 56.0, -21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -20.5 ], [ 14.0, -21.0 ], [ 13.5, -21.0 ], [ 13.5, -20.5 ], [ 14.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -20.5 ], [ 14.5, -21.0 ], [ 14.0, -21.0 ], [ 14.0, -20.5 ], [ 14.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -20.5 ], [ 15.0, -21.0 ], [ 14.5, -21.0 ], [ 14.5, -20.5 ], [ 15.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -20.5 ], [ 15.5, -21.0 ], [ 15.0, -21.0 ], [ 15.0, -20.5 ], [ 15.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -20.5 ], [ 16.0, -21.0 ], [ 15.5, -21.0 ], [ 15.5, -20.5 ], [ 16.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -20.5 ], [ 16.5, -21.0 ], [ 16.0, -21.0 ], [ 16.0, -20.5 ], [ 16.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -20.5 ], [ 17.0, -21.0 ], [ 16.5, -21.0 ], [ 16.5, -20.5 ], [ 17.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -20.5 ], [ 17.5, -21.0 ], [ 17.0, -21.0 ], [ 17.0, -20.5 ], [ 17.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -20.5 ], [ 18.0, -21.0 ], [ 17.5, -21.0 ], [ 17.5, -20.5 ], [ 18.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -20.5 ], [ 18.5, -21.0 ], [ 18.0, -21.0 ], [ 18.0, -20.5 ], [ 18.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -20.5 ], [ 19.0, -21.0 ], [ 18.5, -21.0 ], [ 18.5, -20.5 ], [ 19.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -20.5 ], [ 19.5, -21.0 ], [ 19.0, -21.0 ], [ 19.0, -20.5 ], [ 19.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -20.5 ], [ 20.0, -21.0 ], [ 19.5, -21.0 ], [ 19.5, -20.5 ], [ 20.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -20.5 ], [ 20.5, -21.0 ], [ 20.0, -21.0 ], [ 20.0, -20.5 ], [ 20.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -20.5 ], [ 21.0, -21.0 ], [ 20.5, -21.0 ], [ 20.5, -20.5 ], [ 21.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -20.5 ], [ 21.5, -21.0 ], [ 21.0, -21.0 ], [ 21.0, -20.5 ], [ 21.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -20.5 ], [ 22.0, -21.0 ], [ 21.5, -21.0 ], [ 21.5, -20.5 ], [ 22.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -20.5 ], [ 22.5, -21.0 ], [ 22.0, -21.0 ], [ 22.0, -20.5 ], [ 22.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -20.5 ], [ 23.0, -21.0 ], [ 22.5, -21.0 ], [ 22.5, -20.5 ], [ 23.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -20.5 ], [ 23.5, -21.0 ], [ 23.0, -21.0 ], [ 23.0, -20.5 ], [ 23.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -20.5 ], [ 24.0, -21.0 ], [ 23.5, -21.0 ], [ 23.5, -20.5 ], [ 24.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -20.5 ], [ 24.5, -21.0 ], [ 24.0, -21.0 ], [ 24.0, -20.5 ], [ 24.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -20.5 ], [ 25.0, -21.0 ], [ 24.5, -21.0 ], [ 24.5, -20.5 ], [ 25.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -20.5 ], [ 25.5, -21.0 ], [ 25.0, -21.0 ], [ 25.0, -20.5 ], [ 25.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -20.5 ], [ 26.0, -21.0 ], [ 25.5, -21.0 ], [ 25.5, -20.5 ], [ 26.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -20.5 ], [ 26.5, -21.0 ], [ 26.0, -21.0 ], [ 26.0, -20.5 ], [ 26.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -20.5 ], [ 27.0, -21.0 ], [ 26.5, -21.0 ], [ 26.5, -20.5 ], [ 27.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -20.5 ], [ 27.5, -21.0 ], [ 27.0, -21.0 ], [ 27.0, -20.5 ], [ 27.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -20.5 ], [ 28.0, -21.0 ], [ 27.5, -21.0 ], [ 27.5, -20.5 ], [ 28.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -20.5 ], [ 28.5, -21.0 ], [ 28.0, -21.0 ], [ 28.0, -20.5 ], [ 28.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -20.5 ], [ 29.0, -21.0 ], [ 28.5, -21.0 ], [ 28.5, -20.5 ], [ 29.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -20.5 ], [ 29.5, -21.0 ], [ 29.0, -21.0 ], [ 29.0, -20.5 ], [ 29.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -20.5 ], [ 30.0, -21.0 ], [ 29.5, -21.0 ], [ 29.5, -20.5 ], [ 30.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -20.5 ], [ 30.5, -21.0 ], [ 30.0, -21.0 ], [ 30.0, -20.5 ], [ 30.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -20.5 ], [ 31.0, -21.0 ], [ 30.5, -21.0 ], [ 30.5, -20.5 ], [ 31.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -20.5 ], [ 31.5, -21.0 ], [ 31.0, -21.0 ], [ 31.0, -20.5 ], [ 31.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -20.5 ], [ 32.0, -21.0 ], [ 31.5, -21.0 ], [ 31.5, -20.5 ], [ 32.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -20.5 ], [ 32.5, -21.0 ], [ 32.0, -21.0 ], [ 32.0, -20.5 ], [ 32.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -20.5 ], [ 33.0, -21.0 ], [ 32.5, -21.0 ], [ 32.5, -20.5 ], [ 33.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -20.5 ], [ 33.5, -21.0 ], [ 33.0, -21.0 ], [ 33.0, -20.5 ], [ 33.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -20.5 ], [ 34.0, -21.0 ], [ 33.5, -21.0 ], [ 33.5, -20.5 ], [ 34.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -20.5 ], [ 34.5, -21.0 ], [ 34.0, -21.0 ], [ 34.0, -20.5 ], [ 34.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -20.5 ], [ 35.0, -21.0 ], [ 34.5, -21.0 ], [ 34.5, -20.5 ], [ 35.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, -20.5 ], [ 44.5, -21.0 ], [ 44.0, -21.0 ], [ 44.0, -20.5 ], [ 44.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -20.5 ], [ 45.0, -21.0 ], [ 44.5, -21.0 ], [ 44.5, -20.5 ], [ 45.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -20.5 ], [ 45.5, -21.0 ], [ 45.0, -21.0 ], [ 45.0, -20.5 ], [ 45.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -20.5 ], [ 46.0, -21.0 ], [ 45.5, -21.0 ], [ 45.5, -20.5 ], [ 46.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -20.5 ], [ 46.5, -21.0 ], [ 46.0, -21.0 ], [ 46.0, -20.5 ], [ 46.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -20.5 ], [ 47.0, -21.0 ], [ 46.5, -21.0 ], [ 46.5, -20.5 ], [ 47.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -20.5 ], [ 47.5, -21.0 ], [ 47.0, -21.0 ], [ 47.0, -20.5 ], [ 47.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, -20.5 ], [ 48.0, -21.0 ], [ 47.5, -21.0 ], [ 47.5, -20.5 ], [ 48.0, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, -20.5 ], [ 48.5, -21.0 ], [ 48.0, -21.0 ], [ 48.0, -20.5 ], [ 48.5, -20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -20.0 ], [ 13.5, -20.5 ], [ 13.0, -20.5 ], [ 13.0, -20.0 ], [ 13.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -20.0 ], [ 14.0, -20.5 ], [ 13.5, -20.5 ], [ 13.5, -20.0 ], [ 14.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -20.0 ], [ 14.5, -20.5 ], [ 14.0, -20.5 ], [ 14.0, -20.0 ], [ 14.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -20.0 ], [ 15.0, -20.5 ], [ 14.5, -20.5 ], [ 14.5, -20.0 ], [ 15.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -20.0 ], [ 15.5, -20.5 ], [ 15.0, -20.5 ], [ 15.0, -20.0 ], [ 15.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -20.0 ], [ 16.0, -20.5 ], [ 15.5, -20.5 ], [ 15.5, -20.0 ], [ 16.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -20.0 ], [ 16.5, -20.5 ], [ 16.0, -20.5 ], [ 16.0, -20.0 ], [ 16.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -20.0 ], [ 17.0, -20.5 ], [ 16.5, -20.5 ], [ 16.5, -20.0 ], [ 17.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -20.0 ], [ 17.5, -20.5 ], [ 17.0, -20.5 ], [ 17.0, -20.0 ], [ 17.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -20.0 ], [ 18.0, -20.5 ], [ 17.5, -20.5 ], [ 17.5, -20.0 ], [ 18.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -20.0 ], [ 18.5, -20.5 ], [ 18.0, -20.5 ], [ 18.0, -20.0 ], [ 18.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -20.0 ], [ 19.0, -20.5 ], [ 18.5, -20.5 ], [ 18.5, -20.0 ], [ 19.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -20.0 ], [ 19.5, -20.5 ], [ 19.0, -20.5 ], [ 19.0, -20.0 ], [ 19.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -20.0 ], [ 20.0, -20.5 ], [ 19.5, -20.5 ], [ 19.5, -20.0 ], [ 20.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -20.0 ], [ 20.5, -20.5 ], [ 20.0, -20.5 ], [ 20.0, -20.0 ], [ 20.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -20.0 ], [ 21.0, -20.5 ], [ 20.5, -20.5 ], [ 20.5, -20.0 ], [ 21.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -20.0 ], [ 21.5, -20.5 ], [ 21.0, -20.5 ], [ 21.0, -20.0 ], [ 21.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -20.0 ], [ 22.0, -20.5 ], [ 21.5, -20.5 ], [ 21.5, -20.0 ], [ 22.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -20.0 ], [ 22.5, -20.5 ], [ 22.0, -20.5 ], [ 22.0, -20.0 ], [ 22.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -20.0 ], [ 23.0, -20.5 ], [ 22.5, -20.5 ], [ 22.5, -20.0 ], [ 23.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -20.0 ], [ 23.5, -20.5 ], [ 23.0, -20.5 ], [ 23.0, -20.0 ], [ 23.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -20.0 ], [ 24.0, -20.5 ], [ 23.5, -20.5 ], [ 23.5, -20.0 ], [ 24.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -20.0 ], [ 24.5, -20.5 ], [ 24.0, -20.5 ], [ 24.0, -20.0 ], [ 24.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -20.0 ], [ 25.0, -20.5 ], [ 24.5, -20.5 ], [ 24.5, -20.0 ], [ 25.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -20.0 ], [ 25.5, -20.5 ], [ 25.0, -20.5 ], [ 25.0, -20.0 ], [ 25.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -20.0 ], [ 26.0, -20.5 ], [ 25.5, -20.5 ], [ 25.5, -20.0 ], [ 26.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -20.0 ], [ 26.5, -20.5 ], [ 26.0, -20.5 ], [ 26.0, -20.0 ], [ 26.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -20.0 ], [ 27.0, -20.5 ], [ 26.5, -20.5 ], [ 26.5, -20.0 ], [ 27.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -20.0 ], [ 27.5, -20.5 ], [ 27.0, -20.5 ], [ 27.0, -20.0 ], [ 27.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -20.0 ], [ 28.0, -20.5 ], [ 27.5, -20.5 ], [ 27.5, -20.0 ], [ 28.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -20.0 ], [ 28.5, -20.5 ], [ 28.0, -20.5 ], [ 28.0, -20.0 ], [ 28.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -20.0 ], [ 29.0, -20.5 ], [ 28.5, -20.5 ], [ 28.5, -20.0 ], [ 29.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -20.0 ], [ 29.5, -20.5 ], [ 29.0, -20.5 ], [ 29.0, -20.0 ], [ 29.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -20.0 ], [ 30.0, -20.5 ], [ 29.5, -20.5 ], [ 29.5, -20.0 ], [ 30.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -20.0 ], [ 30.5, -20.5 ], [ 30.0, -20.5 ], [ 30.0, -20.0 ], [ 30.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -20.0 ], [ 31.0, -20.5 ], [ 30.5, -20.5 ], [ 30.5, -20.0 ], [ 31.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -20.0 ], [ 31.5, -20.5 ], [ 31.0, -20.5 ], [ 31.0, -20.0 ], [ 31.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -20.0 ], [ 32.0, -20.5 ], [ 31.5, -20.5 ], [ 31.5, -20.0 ], [ 32.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -20.0 ], [ 32.5, -20.5 ], [ 32.0, -20.5 ], [ 32.0, -20.0 ], [ 32.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -20.0 ], [ 33.0, -20.5 ], [ 32.5, -20.5 ], [ 32.5, -20.0 ], [ 33.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -20.0 ], [ 33.5, -20.5 ], [ 33.0, -20.5 ], [ 33.0, -20.0 ], [ 33.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -20.0 ], [ 34.0, -20.5 ], [ 33.5, -20.5 ], [ 33.5, -20.0 ], [ 34.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -20.0 ], [ 34.5, -20.5 ], [ 34.0, -20.5 ], [ 34.0, -20.0 ], [ 34.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -20.0 ], [ 45.0, -20.5 ], [ 44.5, -20.5 ], [ 44.5, -20.0 ], [ 45.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -20.0 ], [ 45.5, -20.5 ], [ 45.0, -20.5 ], [ 45.0, -20.0 ], [ 45.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -20.0 ], [ 46.0, -20.5 ], [ 45.5, -20.5 ], [ 45.5, -20.0 ], [ 46.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -20.0 ], [ 46.5, -20.5 ], [ 46.0, -20.5 ], [ 46.0, -20.0 ], [ 46.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -20.0 ], [ 47.0, -20.5 ], [ 46.5, -20.5 ], [ 46.5, -20.0 ], [ 47.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -20.0 ], [ 47.5, -20.5 ], [ 47.0, -20.5 ], [ 47.0, -20.0 ], [ 47.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, -20.0 ], [ 48.0, -20.5 ], [ 47.5, -20.5 ], [ 47.5, -20.0 ], [ 48.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, -20.0 ], [ 48.5, -20.5 ], [ 48.0, -20.5 ], [ 48.0, -20.0 ], [ 48.5, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.0, -20.0 ], [ 58.0, -20.5 ], [ 57.5, -20.5 ], [ 57.5, -20.0 ], [ 58.0, -20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -19.5 ], [ 13.5, -20.0 ], [ 13.0, -20.0 ], [ 13.0, -19.5 ], [ 13.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -19.5 ], [ 14.0, -20.0 ], [ 13.5, -20.0 ], [ 13.5, -19.5 ], [ 14.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -19.5 ], [ 14.5, -20.0 ], [ 14.0, -20.0 ], [ 14.0, -19.5 ], [ 14.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -19.5 ], [ 15.0, -20.0 ], [ 14.5, -20.0 ], [ 14.5, -19.5 ], [ 15.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -19.5 ], [ 15.5, -20.0 ], [ 15.0, -20.0 ], [ 15.0, -19.5 ], [ 15.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -19.5 ], [ 16.0, -20.0 ], [ 15.5, -20.0 ], [ 15.5, -19.5 ], [ 16.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -19.5 ], [ 16.5, -20.0 ], [ 16.0, -20.0 ], [ 16.0, -19.5 ], [ 16.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -19.5 ], [ 17.0, -20.0 ], [ 16.5, -20.0 ], [ 16.5, -19.5 ], [ 17.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -19.5 ], [ 17.5, -20.0 ], [ 17.0, -20.0 ], [ 17.0, -19.5 ], [ 17.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -19.5 ], [ 18.0, -20.0 ], [ 17.5, -20.0 ], [ 17.5, -19.5 ], [ 18.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -19.5 ], [ 18.5, -20.0 ], [ 18.0, -20.0 ], [ 18.0, -19.5 ], [ 18.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -19.5 ], [ 19.0, -20.0 ], [ 18.5, -20.0 ], [ 18.5, -19.5 ], [ 19.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -19.5 ], [ 19.5, -20.0 ], [ 19.0, -20.0 ], [ 19.0, -19.5 ], [ 19.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -19.5 ], [ 20.0, -20.0 ], [ 19.5, -20.0 ], [ 19.5, -19.5 ], [ 20.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -19.5 ], [ 20.5, -20.0 ], [ 20.0, -20.0 ], [ 20.0, -19.5 ], [ 20.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -19.5 ], [ 21.0, -20.0 ], [ 20.5, -20.0 ], [ 20.5, -19.5 ], [ 21.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -19.5 ], [ 21.5, -20.0 ], [ 21.0, -20.0 ], [ 21.0, -19.5 ], [ 21.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -19.5 ], [ 22.0, -20.0 ], [ 21.5, -20.0 ], [ 21.5, -19.5 ], [ 22.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -19.5 ], [ 22.5, -20.0 ], [ 22.0, -20.0 ], [ 22.0, -19.5 ], [ 22.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -19.5 ], [ 23.0, -20.0 ], [ 22.5, -20.0 ], [ 22.5, -19.5 ], [ 23.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -19.5 ], [ 23.5, -20.0 ], [ 23.0, -20.0 ], [ 23.0, -19.5 ], [ 23.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -19.5 ], [ 24.0, -20.0 ], [ 23.5, -20.0 ], [ 23.5, -19.5 ], [ 24.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -19.5 ], [ 24.5, -20.0 ], [ 24.0, -20.0 ], [ 24.0, -19.5 ], [ 24.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -19.5 ], [ 25.0, -20.0 ], [ 24.5, -20.0 ], [ 24.5, -19.5 ], [ 25.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -19.5 ], [ 25.5, -20.0 ], [ 25.0, -20.0 ], [ 25.0, -19.5 ], [ 25.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -19.5 ], [ 26.0, -20.0 ], [ 25.5, -20.0 ], [ 25.5, -19.5 ], [ 26.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -19.5 ], [ 26.5, -20.0 ], [ 26.0, -20.0 ], [ 26.0, -19.5 ], [ 26.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -19.5 ], [ 27.0, -20.0 ], [ 26.5, -20.0 ], [ 26.5, -19.5 ], [ 27.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -19.5 ], [ 27.5, -20.0 ], [ 27.0, -20.0 ], [ 27.0, -19.5 ], [ 27.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -19.5 ], [ 28.0, -20.0 ], [ 27.5, -20.0 ], [ 27.5, -19.5 ], [ 28.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -19.5 ], [ 28.5, -20.0 ], [ 28.0, -20.0 ], [ 28.0, -19.5 ], [ 28.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -19.5 ], [ 29.0, -20.0 ], [ 28.5, -20.0 ], [ 28.5, -19.5 ], [ 29.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -19.5 ], [ 29.5, -20.0 ], [ 29.0, -20.0 ], [ 29.0, -19.5 ], [ 29.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -19.5 ], [ 30.0, -20.0 ], [ 29.5, -20.0 ], [ 29.5, -19.5 ], [ 30.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -19.5 ], [ 30.5, -20.0 ], [ 30.0, -20.0 ], [ 30.0, -19.5 ], [ 30.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -19.5 ], [ 31.0, -20.0 ], [ 30.5, -20.0 ], [ 30.5, -19.5 ], [ 31.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -19.5 ], [ 31.5, -20.0 ], [ 31.0, -20.0 ], [ 31.0, -19.5 ], [ 31.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -19.5 ], [ 32.0, -20.0 ], [ 31.5, -20.0 ], [ 31.5, -19.5 ], [ 32.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -19.5 ], [ 32.5, -20.0 ], [ 32.0, -20.0 ], [ 32.0, -19.5 ], [ 32.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -19.5 ], [ 33.0, -20.0 ], [ 32.5, -20.0 ], [ 32.5, -19.5 ], [ 33.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -19.5 ], [ 33.5, -20.0 ], [ 33.0, -20.0 ], [ 33.0, -19.5 ], [ 33.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -19.5 ], [ 34.0, -20.0 ], [ 33.5, -20.0 ], [ 33.5, -19.5 ], [ 34.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -19.5 ], [ 34.5, -20.0 ], [ 34.0, -20.0 ], [ 34.0, -19.5 ], [ 34.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -19.5 ], [ 45.0, -20.0 ], [ 44.5, -20.0 ], [ 44.5, -19.5 ], [ 45.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -19.5 ], [ 45.5, -20.0 ], [ 45.0, -20.0 ], [ 45.0, -19.5 ], [ 45.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -19.5 ], [ 46.0, -20.0 ], [ 45.5, -20.0 ], [ 45.5, -19.5 ], [ 46.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -19.5 ], [ 46.5, -20.0 ], [ 46.0, -20.0 ], [ 46.0, -19.5 ], [ 46.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -19.5 ], [ 47.0, -20.0 ], [ 46.5, -20.0 ], [ 46.5, -19.5 ], [ 47.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -19.5 ], [ 47.5, -20.0 ], [ 47.0, -20.0 ], [ 47.0, -19.5 ], [ 47.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, -19.5 ], [ 48.0, -20.0 ], [ 47.5, -20.0 ], [ 47.5, -19.5 ], [ 48.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, -19.5 ], [ 48.5, -20.0 ], [ 48.0, -20.0 ], [ 48.0, -19.5 ], [ 48.5, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, -19.5 ], [ 49.0, -20.0 ], [ 48.5, -20.0 ], [ 48.5, -19.5 ], [ 49.0, -19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -19.0 ], [ 13.0, -19.5 ], [ 12.5, -19.5 ], [ 12.5, -19.0 ], [ 13.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -19.0 ], [ 13.5, -19.5 ], [ 13.0, -19.5 ], [ 13.0, -19.0 ], [ 13.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -19.0 ], [ 14.0, -19.5 ], [ 13.5, -19.5 ], [ 13.5, -19.0 ], [ 14.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -19.0 ], [ 14.5, -19.5 ], [ 14.0, -19.5 ], [ 14.0, -19.0 ], [ 14.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -19.0 ], [ 15.0, -19.5 ], [ 14.5, -19.5 ], [ 14.5, -19.0 ], [ 15.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -19.0 ], [ 15.5, -19.5 ], [ 15.0, -19.5 ], [ 15.0, -19.0 ], [ 15.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -19.0 ], [ 16.0, -19.5 ], [ 15.5, -19.5 ], [ 15.5, -19.0 ], [ 16.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -19.0 ], [ 16.5, -19.5 ], [ 16.0, -19.5 ], [ 16.0, -19.0 ], [ 16.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -19.0 ], [ 17.0, -19.5 ], [ 16.5, -19.5 ], [ 16.5, -19.0 ], [ 17.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -19.0 ], [ 17.5, -19.5 ], [ 17.0, -19.5 ], [ 17.0, -19.0 ], [ 17.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -19.0 ], [ 18.0, -19.5 ], [ 17.5, -19.5 ], [ 17.5, -19.0 ], [ 18.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -19.0 ], [ 18.5, -19.5 ], [ 18.0, -19.5 ], [ 18.0, -19.0 ], [ 18.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -19.0 ], [ 19.0, -19.5 ], [ 18.5, -19.5 ], [ 18.5, -19.0 ], [ 19.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -19.0 ], [ 19.5, -19.5 ], [ 19.0, -19.5 ], [ 19.0, -19.0 ], [ 19.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -19.0 ], [ 20.0, -19.5 ], [ 19.5, -19.5 ], [ 19.5, -19.0 ], [ 20.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -19.0 ], [ 20.5, -19.5 ], [ 20.0, -19.5 ], [ 20.0, -19.0 ], [ 20.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -19.0 ], [ 21.0, -19.5 ], [ 20.5, -19.5 ], [ 20.5, -19.0 ], [ 21.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -19.0 ], [ 21.5, -19.5 ], [ 21.0, -19.5 ], [ 21.0, -19.0 ], [ 21.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -19.0 ], [ 22.0, -19.5 ], [ 21.5, -19.5 ], [ 21.5, -19.0 ], [ 22.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -19.0 ], [ 22.5, -19.5 ], [ 22.0, -19.5 ], [ 22.0, -19.0 ], [ 22.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -19.0 ], [ 23.0, -19.5 ], [ 22.5, -19.5 ], [ 22.5, -19.0 ], [ 23.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -19.0 ], [ 23.5, -19.5 ], [ 23.0, -19.5 ], [ 23.0, -19.0 ], [ 23.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -19.0 ], [ 24.0, -19.5 ], [ 23.5, -19.5 ], [ 23.5, -19.0 ], [ 24.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -19.0 ], [ 24.5, -19.5 ], [ 24.0, -19.5 ], [ 24.0, -19.0 ], [ 24.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -19.0 ], [ 25.0, -19.5 ], [ 24.5, -19.5 ], [ 24.5, -19.0 ], [ 25.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -19.0 ], [ 25.5, -19.5 ], [ 25.0, -19.5 ], [ 25.0, -19.0 ], [ 25.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -19.0 ], [ 26.0, -19.5 ], [ 25.5, -19.5 ], [ 25.5, -19.0 ], [ 26.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -19.0 ], [ 26.5, -19.5 ], [ 26.0, -19.5 ], [ 26.0, -19.0 ], [ 26.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -19.0 ], [ 27.0, -19.5 ], [ 26.5, -19.5 ], [ 26.5, -19.0 ], [ 27.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -19.0 ], [ 27.5, -19.5 ], [ 27.0, -19.5 ], [ 27.0, -19.0 ], [ 27.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -19.0 ], [ 28.0, -19.5 ], [ 27.5, -19.5 ], [ 27.5, -19.0 ], [ 28.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -19.0 ], [ 28.5, -19.5 ], [ 28.0, -19.5 ], [ 28.0, -19.0 ], [ 28.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -19.0 ], [ 29.0, -19.5 ], [ 28.5, -19.5 ], [ 28.5, -19.0 ], [ 29.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -19.0 ], [ 29.5, -19.5 ], [ 29.0, -19.5 ], [ 29.0, -19.0 ], [ 29.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -19.0 ], [ 30.0, -19.5 ], [ 29.5, -19.5 ], [ 29.5, -19.0 ], [ 30.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -19.0 ], [ 30.5, -19.5 ], [ 30.0, -19.5 ], [ 30.0, -19.0 ], [ 30.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -19.0 ], [ 31.0, -19.5 ], [ 30.5, -19.5 ], [ 30.5, -19.0 ], [ 31.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -19.0 ], [ 31.5, -19.5 ], [ 31.0, -19.5 ], [ 31.0, -19.0 ], [ 31.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -19.0 ], [ 32.0, -19.5 ], [ 31.5, -19.5 ], [ 31.5, -19.0 ], [ 32.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -19.0 ], [ 32.5, -19.5 ], [ 32.0, -19.5 ], [ 32.0, -19.0 ], [ 32.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -19.0 ], [ 33.0, -19.5 ], [ 32.5, -19.5 ], [ 32.5, -19.0 ], [ 33.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -19.0 ], [ 33.5, -19.5 ], [ 33.0, -19.5 ], [ 33.0, -19.0 ], [ 33.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -19.0 ], [ 34.0, -19.5 ], [ 33.5, -19.5 ], [ 33.5, -19.0 ], [ 34.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -19.0 ], [ 34.5, -19.5 ], [ 34.0, -19.5 ], [ 34.0, -19.0 ], [ 34.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -19.0 ], [ 35.0, -19.5 ], [ 34.5, -19.5 ], [ 34.5, -19.0 ], [ 35.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -19.0 ], [ 35.5, -19.5 ], [ 35.0, -19.5 ], [ 35.0, -19.0 ], [ 35.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -19.0 ], [ 45.0, -19.5 ], [ 44.5, -19.5 ], [ 44.5, -19.0 ], [ 45.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -19.0 ], [ 45.5, -19.5 ], [ 45.0, -19.5 ], [ 45.0, -19.0 ], [ 45.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -19.0 ], [ 46.0, -19.5 ], [ 45.5, -19.5 ], [ 45.5, -19.0 ], [ 46.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -19.0 ], [ 46.5, -19.5 ], [ 46.0, -19.5 ], [ 46.0, -19.0 ], [ 46.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -19.0 ], [ 47.0, -19.5 ], [ 46.5, -19.5 ], [ 46.5, -19.0 ], [ 47.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -19.0 ], [ 47.5, -19.5 ], [ 47.0, -19.5 ], [ 47.0, -19.0 ], [ 47.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, -19.0 ], [ 48.0, -19.5 ], [ 47.5, -19.5 ], [ 47.5, -19.0 ], [ 48.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, -19.0 ], [ 48.5, -19.5 ], [ 48.0, -19.5 ], [ 48.0, -19.0 ], [ 48.5, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, -19.0 ], [ 49.0, -19.5 ], [ 48.5, -19.5 ], [ 48.5, -19.0 ], [ 49.0, -19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -18.5 ], [ 13.0, -19.0 ], [ 12.5, -19.0 ], [ 12.5, -18.5 ], [ 13.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -18.5 ], [ 13.5, -19.0 ], [ 13.0, -19.0 ], [ 13.0, -18.5 ], [ 13.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -18.5 ], [ 14.0, -19.0 ], [ 13.5, -19.0 ], [ 13.5, -18.5 ], [ 14.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -18.5 ], [ 14.5, -19.0 ], [ 14.0, -19.0 ], [ 14.0, -18.5 ], [ 14.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -18.5 ], [ 15.0, -19.0 ], [ 14.5, -19.0 ], [ 14.5, -18.5 ], [ 15.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -18.5 ], [ 15.5, -19.0 ], [ 15.0, -19.0 ], [ 15.0, -18.5 ], [ 15.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -18.5 ], [ 16.0, -19.0 ], [ 15.5, -19.0 ], [ 15.5, -18.5 ], [ 16.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -18.5 ], [ 16.5, -19.0 ], [ 16.0, -19.0 ], [ 16.0, -18.5 ], [ 16.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -18.5 ], [ 17.0, -19.0 ], [ 16.5, -19.0 ], [ 16.5, -18.5 ], [ 17.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -18.5 ], [ 17.5, -19.0 ], [ 17.0, -19.0 ], [ 17.0, -18.5 ], [ 17.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -18.5 ], [ 18.0, -19.0 ], [ 17.5, -19.0 ], [ 17.5, -18.5 ], [ 18.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -18.5 ], [ 18.5, -19.0 ], [ 18.0, -19.0 ], [ 18.0, -18.5 ], [ 18.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -18.5 ], [ 19.0, -19.0 ], [ 18.5, -19.0 ], [ 18.5, -18.5 ], [ 19.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -18.5 ], [ 19.5, -19.0 ], [ 19.0, -19.0 ], [ 19.0, -18.5 ], [ 19.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -18.5 ], [ 20.0, -19.0 ], [ 19.5, -19.0 ], [ 19.5, -18.5 ], [ 20.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -18.5 ], [ 20.5, -19.0 ], [ 20.0, -19.0 ], [ 20.0, -18.5 ], [ 20.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -18.5 ], [ 21.0, -19.0 ], [ 20.5, -19.0 ], [ 20.5, -18.5 ], [ 21.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -18.5 ], [ 21.5, -19.0 ], [ 21.0, -19.0 ], [ 21.0, -18.5 ], [ 21.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -18.5 ], [ 22.0, -19.0 ], [ 21.5, -19.0 ], [ 21.5, -18.5 ], [ 22.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -18.5 ], [ 22.5, -19.0 ], [ 22.0, -19.0 ], [ 22.0, -18.5 ], [ 22.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -18.5 ], [ 23.0, -19.0 ], [ 22.5, -19.0 ], [ 22.5, -18.5 ], [ 23.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -18.5 ], [ 23.5, -19.0 ], [ 23.0, -19.0 ], [ 23.0, -18.5 ], [ 23.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -18.5 ], [ 24.0, -19.0 ], [ 23.5, -19.0 ], [ 23.5, -18.5 ], [ 24.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -18.5 ], [ 24.5, -19.0 ], [ 24.0, -19.0 ], [ 24.0, -18.5 ], [ 24.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -18.5 ], [ 25.0, -19.0 ], [ 24.5, -19.0 ], [ 24.5, -18.5 ], [ 25.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -18.5 ], [ 25.5, -19.0 ], [ 25.0, -19.0 ], [ 25.0, -18.5 ], [ 25.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -18.5 ], [ 26.0, -19.0 ], [ 25.5, -19.0 ], [ 25.5, -18.5 ], [ 26.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -18.5 ], [ 26.5, -19.0 ], [ 26.0, -19.0 ], [ 26.0, -18.5 ], [ 26.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -18.5 ], [ 27.0, -19.0 ], [ 26.5, -19.0 ], [ 26.5, -18.5 ], [ 27.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -18.5 ], [ 27.5, -19.0 ], [ 27.0, -19.0 ], [ 27.0, -18.5 ], [ 27.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -18.5 ], [ 28.0, -19.0 ], [ 27.5, -19.0 ], [ 27.5, -18.5 ], [ 28.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -18.5 ], [ 28.5, -19.0 ], [ 28.0, -19.0 ], [ 28.0, -18.5 ], [ 28.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -18.5 ], [ 29.0, -19.0 ], [ 28.5, -19.0 ], [ 28.5, -18.5 ], [ 29.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -18.5 ], [ 29.5, -19.0 ], [ 29.0, -19.0 ], [ 29.0, -18.5 ], [ 29.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -18.5 ], [ 30.0, -19.0 ], [ 29.5, -19.0 ], [ 29.5, -18.5 ], [ 30.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -18.5 ], [ 30.5, -19.0 ], [ 30.0, -19.0 ], [ 30.0, -18.5 ], [ 30.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -18.5 ], [ 31.0, -19.0 ], [ 30.5, -19.0 ], [ 30.5, -18.5 ], [ 31.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -18.5 ], [ 31.5, -19.0 ], [ 31.0, -19.0 ], [ 31.0, -18.5 ], [ 31.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -18.5 ], [ 32.0, -19.0 ], [ 31.5, -19.0 ], [ 31.5, -18.5 ], [ 32.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -18.5 ], [ 32.5, -19.0 ], [ 32.0, -19.0 ], [ 32.0, -18.5 ], [ 32.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -18.5 ], [ 33.0, -19.0 ], [ 32.5, -19.0 ], [ 32.5, -18.5 ], [ 33.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -18.5 ], [ 33.5, -19.0 ], [ 33.0, -19.0 ], [ 33.0, -18.5 ], [ 33.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -18.5 ], [ 34.0, -19.0 ], [ 33.5, -19.0 ], [ 33.5, -18.5 ], [ 34.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -18.5 ], [ 34.5, -19.0 ], [ 34.0, -19.0 ], [ 34.0, -18.5 ], [ 34.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -18.5 ], [ 35.0, -19.0 ], [ 34.5, -19.0 ], [ 34.5, -18.5 ], [ 35.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -18.5 ], [ 35.5, -19.0 ], [ 35.0, -19.0 ], [ 35.0, -18.5 ], [ 35.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -18.5 ], [ 36.0, -19.0 ], [ 35.5, -19.0 ], [ 35.5, -18.5 ], [ 36.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -18.5 ], [ 36.5, -19.0 ], [ 36.0, -19.0 ], [ 36.0, -18.5 ], [ 36.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, -18.5 ], [ 44.5, -19.0 ], [ 44.0, -19.0 ], [ 44.0, -18.5 ], [ 44.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -18.5 ], [ 45.0, -19.0 ], [ 44.5, -19.0 ], [ 44.5, -18.5 ], [ 45.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -18.5 ], [ 45.5, -19.0 ], [ 45.0, -19.0 ], [ 45.0, -18.5 ], [ 45.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -18.5 ], [ 46.0, -19.0 ], [ 45.5, -19.0 ], [ 45.5, -18.5 ], [ 46.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -18.5 ], [ 46.5, -19.0 ], [ 46.0, -19.0 ], [ 46.0, -18.5 ], [ 46.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -18.5 ], [ 47.0, -19.0 ], [ 46.5, -19.0 ], [ 46.5, -18.5 ], [ 47.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -18.5 ], [ 47.5, -19.0 ], [ 47.0, -19.0 ], [ 47.0, -18.5 ], [ 47.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, -18.5 ], [ 48.0, -19.0 ], [ 47.5, -19.0 ], [ 47.5, -18.5 ], [ 48.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, -18.5 ], [ 48.5, -19.0 ], [ 48.0, -19.0 ], [ 48.0, -18.5 ], [ 48.5, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, -18.5 ], [ 49.0, -19.0 ], [ 48.5, -19.0 ], [ 48.5, -18.5 ], [ 49.0, -18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -18.0 ], [ 12.5, -18.5 ], [ 12.0, -18.5 ], [ 12.0, -18.0 ], [ 12.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -18.0 ], [ 13.0, -18.5 ], [ 12.5, -18.5 ], [ 12.5, -18.0 ], [ 13.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -18.0 ], [ 13.5, -18.5 ], [ 13.0, -18.5 ], [ 13.0, -18.0 ], [ 13.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -18.0 ], [ 14.0, -18.5 ], [ 13.5, -18.5 ], [ 13.5, -18.0 ], [ 14.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -18.0 ], [ 14.5, -18.5 ], [ 14.0, -18.5 ], [ 14.0, -18.0 ], [ 14.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -18.0 ], [ 15.0, -18.5 ], [ 14.5, -18.5 ], [ 14.5, -18.0 ], [ 15.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -18.0 ], [ 15.5, -18.5 ], [ 15.0, -18.5 ], [ 15.0, -18.0 ], [ 15.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -18.0 ], [ 16.0, -18.5 ], [ 15.5, -18.5 ], [ 15.5, -18.0 ], [ 16.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -18.0 ], [ 16.5, -18.5 ], [ 16.0, -18.5 ], [ 16.0, -18.0 ], [ 16.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -18.0 ], [ 17.0, -18.5 ], [ 16.5, -18.5 ], [ 16.5, -18.0 ], [ 17.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -18.0 ], [ 17.5, -18.5 ], [ 17.0, -18.5 ], [ 17.0, -18.0 ], [ 17.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -18.0 ], [ 18.0, -18.5 ], [ 17.5, -18.5 ], [ 17.5, -18.0 ], [ 18.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -18.0 ], [ 18.5, -18.5 ], [ 18.0, -18.5 ], [ 18.0, -18.0 ], [ 18.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -18.0 ], [ 19.0, -18.5 ], [ 18.5, -18.5 ], [ 18.5, -18.0 ], [ 19.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -18.0 ], [ 19.5, -18.5 ], [ 19.0, -18.5 ], [ 19.0, -18.0 ], [ 19.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -18.0 ], [ 20.0, -18.5 ], [ 19.5, -18.5 ], [ 19.5, -18.0 ], [ 20.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -18.0 ], [ 20.5, -18.5 ], [ 20.0, -18.5 ], [ 20.0, -18.0 ], [ 20.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -18.0 ], [ 21.0, -18.5 ], [ 20.5, -18.5 ], [ 20.5, -18.0 ], [ 21.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -18.0 ], [ 21.5, -18.5 ], [ 21.0, -18.5 ], [ 21.0, -18.0 ], [ 21.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -18.0 ], [ 22.0, -18.5 ], [ 21.5, -18.5 ], [ 21.5, -18.0 ], [ 22.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -18.0 ], [ 22.5, -18.5 ], [ 22.0, -18.5 ], [ 22.0, -18.0 ], [ 22.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -18.0 ], [ 23.0, -18.5 ], [ 22.5, -18.5 ], [ 22.5, -18.0 ], [ 23.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -18.0 ], [ 23.5, -18.5 ], [ 23.0, -18.5 ], [ 23.0, -18.0 ], [ 23.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -18.0 ], [ 24.0, -18.5 ], [ 23.5, -18.5 ], [ 23.5, -18.0 ], [ 24.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -18.0 ], [ 24.5, -18.5 ], [ 24.0, -18.5 ], [ 24.0, -18.0 ], [ 24.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -18.0 ], [ 25.0, -18.5 ], [ 24.5, -18.5 ], [ 24.5, -18.0 ], [ 25.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -18.0 ], [ 25.5, -18.5 ], [ 25.0, -18.5 ], [ 25.0, -18.0 ], [ 25.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -18.0 ], [ 26.0, -18.5 ], [ 25.5, -18.5 ], [ 25.5, -18.0 ], [ 26.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -18.0 ], [ 26.5, -18.5 ], [ 26.0, -18.5 ], [ 26.0, -18.0 ], [ 26.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -18.0 ], [ 27.0, -18.5 ], [ 26.5, -18.5 ], [ 26.5, -18.0 ], [ 27.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -18.0 ], [ 27.5, -18.5 ], [ 27.0, -18.5 ], [ 27.0, -18.0 ], [ 27.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -18.0 ], [ 28.0, -18.5 ], [ 27.5, -18.5 ], [ 27.5, -18.0 ], [ 28.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -18.0 ], [ 28.5, -18.5 ], [ 28.0, -18.5 ], [ 28.0, -18.0 ], [ 28.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -18.0 ], [ 29.0, -18.5 ], [ 28.5, -18.5 ], [ 28.5, -18.0 ], [ 29.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -18.0 ], [ 29.5, -18.5 ], [ 29.0, -18.5 ], [ 29.0, -18.0 ], [ 29.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -18.0 ], [ 30.0, -18.5 ], [ 29.5, -18.5 ], [ 29.5, -18.0 ], [ 30.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -18.0 ], [ 30.5, -18.5 ], [ 30.0, -18.5 ], [ 30.0, -18.0 ], [ 30.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -18.0 ], [ 31.0, -18.5 ], [ 30.5, -18.5 ], [ 30.5, -18.0 ], [ 31.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -18.0 ], [ 31.5, -18.5 ], [ 31.0, -18.5 ], [ 31.0, -18.0 ], [ 31.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -18.0 ], [ 32.0, -18.5 ], [ 31.5, -18.5 ], [ 31.5, -18.0 ], [ 32.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -18.0 ], [ 32.5, -18.5 ], [ 32.0, -18.5 ], [ 32.0, -18.0 ], [ 32.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -18.0 ], [ 33.0, -18.5 ], [ 32.5, -18.5 ], [ 32.5, -18.0 ], [ 33.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -18.0 ], [ 33.5, -18.5 ], [ 33.0, -18.5 ], [ 33.0, -18.0 ], [ 33.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -18.0 ], [ 34.0, -18.5 ], [ 33.5, -18.5 ], [ 33.5, -18.0 ], [ 34.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -18.0 ], [ 34.5, -18.5 ], [ 34.0, -18.5 ], [ 34.0, -18.0 ], [ 34.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -18.0 ], [ 35.0, -18.5 ], [ 34.5, -18.5 ], [ 34.5, -18.0 ], [ 35.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -18.0 ], [ 35.5, -18.5 ], [ 35.0, -18.5 ], [ 35.0, -18.0 ], [ 35.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -18.0 ], [ 36.0, -18.5 ], [ 35.5, -18.5 ], [ 35.5, -18.0 ], [ 36.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -18.0 ], [ 36.5, -18.5 ], [ 36.0, -18.5 ], [ 36.0, -18.0 ], [ 36.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -18.0 ], [ 37.0, -18.5 ], [ 36.5, -18.5 ], [ 36.5, -18.0 ], [ 37.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, -18.0 ], [ 44.5, -18.5 ], [ 44.0, -18.5 ], [ 44.0, -18.0 ], [ 44.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -18.0 ], [ 45.0, -18.5 ], [ 44.5, -18.5 ], [ 44.5, -18.0 ], [ 45.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -18.0 ], [ 45.5, -18.5 ], [ 45.0, -18.5 ], [ 45.0, -18.0 ], [ 45.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -18.0 ], [ 46.0, -18.5 ], [ 45.5, -18.5 ], [ 45.5, -18.0 ], [ 46.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -18.0 ], [ 46.5, -18.5 ], [ 46.0, -18.5 ], [ 46.0, -18.0 ], [ 46.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -18.0 ], [ 47.0, -18.5 ], [ 46.5, -18.5 ], [ 46.5, -18.0 ], [ 47.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -18.0 ], [ 47.5, -18.5 ], [ 47.0, -18.5 ], [ 47.0, -18.0 ], [ 47.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, -18.0 ], [ 48.0, -18.5 ], [ 47.5, -18.5 ], [ 47.5, -18.0 ], [ 48.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, -18.0 ], [ 48.5, -18.5 ], [ 48.0, -18.5 ], [ 48.0, -18.0 ], [ 48.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, -18.0 ], [ 49.0, -18.5 ], [ 48.5, -18.5 ], [ 48.5, -18.0 ], [ 49.0, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, -18.0 ], [ 49.5, -18.5 ], [ 49.0, -18.5 ], [ 49.0, -18.0 ], [ 49.5, -18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -17.5 ], [ 12.5, -18.0 ], [ 12.0, -18.0 ], [ 12.0, -17.5 ], [ 12.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -17.5 ], [ 13.0, -18.0 ], [ 12.5, -18.0 ], [ 12.5, -17.5 ], [ 13.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -17.5 ], [ 13.5, -18.0 ], [ 13.0, -18.0 ], [ 13.0, -17.5 ], [ 13.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -17.5 ], [ 14.0, -18.0 ], [ 13.5, -18.0 ], [ 13.5, -17.5 ], [ 14.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -17.5 ], [ 14.5, -18.0 ], [ 14.0, -18.0 ], [ 14.0, -17.5 ], [ 14.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -17.5 ], [ 15.0, -18.0 ], [ 14.5, -18.0 ], [ 14.5, -17.5 ], [ 15.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -17.5 ], [ 15.5, -18.0 ], [ 15.0, -18.0 ], [ 15.0, -17.5 ], [ 15.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -17.5 ], [ 16.0, -18.0 ], [ 15.5, -18.0 ], [ 15.5, -17.5 ], [ 16.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -17.5 ], [ 16.5, -18.0 ], [ 16.0, -18.0 ], [ 16.0, -17.5 ], [ 16.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -17.5 ], [ 17.0, -18.0 ], [ 16.5, -18.0 ], [ 16.5, -17.5 ], [ 17.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -17.5 ], [ 17.5, -18.0 ], [ 17.0, -18.0 ], [ 17.0, -17.5 ], [ 17.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -17.5 ], [ 18.0, -18.0 ], [ 17.5, -18.0 ], [ 17.5, -17.5 ], [ 18.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -17.5 ], [ 18.5, -18.0 ], [ 18.0, -18.0 ], [ 18.0, -17.5 ], [ 18.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -17.5 ], [ 19.0, -18.0 ], [ 18.5, -18.0 ], [ 18.5, -17.5 ], [ 19.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -17.5 ], [ 19.5, -18.0 ], [ 19.0, -18.0 ], [ 19.0, -17.5 ], [ 19.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -17.5 ], [ 20.0, -18.0 ], [ 19.5, -18.0 ], [ 19.5, -17.5 ], [ 20.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -17.5 ], [ 20.5, -18.0 ], [ 20.0, -18.0 ], [ 20.0, -17.5 ], [ 20.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -17.5 ], [ 21.0, -18.0 ], [ 20.5, -18.0 ], [ 20.5, -17.5 ], [ 21.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -17.5 ], [ 21.5, -18.0 ], [ 21.0, -18.0 ], [ 21.0, -17.5 ], [ 21.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -17.5 ], [ 22.0, -18.0 ], [ 21.5, -18.0 ], [ 21.5, -17.5 ], [ 22.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -17.5 ], [ 22.5, -18.0 ], [ 22.0, -18.0 ], [ 22.0, -17.5 ], [ 22.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -17.5 ], [ 23.0, -18.0 ], [ 22.5, -18.0 ], [ 22.5, -17.5 ], [ 23.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -17.5 ], [ 23.5, -18.0 ], [ 23.0, -18.0 ], [ 23.0, -17.5 ], [ 23.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -17.5 ], [ 24.0, -18.0 ], [ 23.5, -18.0 ], [ 23.5, -17.5 ], [ 24.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -17.5 ], [ 24.5, -18.0 ], [ 24.0, -18.0 ], [ 24.0, -17.5 ], [ 24.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -17.5 ], [ 25.0, -18.0 ], [ 24.5, -18.0 ], [ 24.5, -17.5 ], [ 25.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -17.5 ], [ 25.5, -18.0 ], [ 25.0, -18.0 ], [ 25.0, -17.5 ], [ 25.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -17.5 ], [ 26.0, -18.0 ], [ 25.5, -18.0 ], [ 25.5, -17.5 ], [ 26.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -17.5 ], [ 26.5, -18.0 ], [ 26.0, -18.0 ], [ 26.0, -17.5 ], [ 26.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -17.5 ], [ 27.0, -18.0 ], [ 26.5, -18.0 ], [ 26.5, -17.5 ], [ 27.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -17.5 ], [ 27.5, -18.0 ], [ 27.0, -18.0 ], [ 27.0, -17.5 ], [ 27.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -17.5 ], [ 28.0, -18.0 ], [ 27.5, -18.0 ], [ 27.5, -17.5 ], [ 28.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -17.5 ], [ 28.5, -18.0 ], [ 28.0, -18.0 ], [ 28.0, -17.5 ], [ 28.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -17.5 ], [ 29.0, -18.0 ], [ 28.5, -18.0 ], [ 28.5, -17.5 ], [ 29.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -17.5 ], [ 29.5, -18.0 ], [ 29.0, -18.0 ], [ 29.0, -17.5 ], [ 29.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -17.5 ], [ 30.0, -18.0 ], [ 29.5, -18.0 ], [ 29.5, -17.5 ], [ 30.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -17.5 ], [ 30.5, -18.0 ], [ 30.0, -18.0 ], [ 30.0, -17.5 ], [ 30.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -17.5 ], [ 31.0, -18.0 ], [ 30.5, -18.0 ], [ 30.5, -17.5 ], [ 31.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -17.5 ], [ 31.5, -18.0 ], [ 31.0, -18.0 ], [ 31.0, -17.5 ], [ 31.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -17.5 ], [ 32.0, -18.0 ], [ 31.5, -18.0 ], [ 31.5, -17.5 ], [ 32.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -17.5 ], [ 32.5, -18.0 ], [ 32.0, -18.0 ], [ 32.0, -17.5 ], [ 32.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -17.5 ], [ 33.0, -18.0 ], [ 32.5, -18.0 ], [ 32.5, -17.5 ], [ 33.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -17.5 ], [ 33.5, -18.0 ], [ 33.0, -18.0 ], [ 33.0, -17.5 ], [ 33.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -17.5 ], [ 34.0, -18.0 ], [ 33.5, -18.0 ], [ 33.5, -17.5 ], [ 34.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -17.5 ], [ 34.5, -18.0 ], [ 34.0, -18.0 ], [ 34.0, -17.5 ], [ 34.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -17.5 ], [ 35.0, -18.0 ], [ 34.5, -18.0 ], [ 34.5, -17.5 ], [ 35.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -17.5 ], [ 35.5, -18.0 ], [ 35.0, -18.0 ], [ 35.0, -17.5 ], [ 35.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -17.5 ], [ 36.0, -18.0 ], [ 35.5, -18.0 ], [ 35.5, -17.5 ], [ 36.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -17.5 ], [ 36.5, -18.0 ], [ 36.0, -18.0 ], [ 36.0, -17.5 ], [ 36.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -17.5 ], [ 37.0, -18.0 ], [ 36.5, -18.0 ], [ 36.5, -17.5 ], [ 37.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -17.5 ], [ 37.5, -18.0 ], [ 37.0, -18.0 ], [ 37.0, -17.5 ], [ 37.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, -17.5 ], [ 44.5, -18.0 ], [ 44.0, -18.0 ], [ 44.0, -17.5 ], [ 44.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -17.5 ], [ 45.0, -18.0 ], [ 44.5, -18.0 ], [ 44.5, -17.5 ], [ 45.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -17.5 ], [ 45.5, -18.0 ], [ 45.0, -18.0 ], [ 45.0, -17.5 ], [ 45.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -17.5 ], [ 46.0, -18.0 ], [ 45.5, -18.0 ], [ 45.5, -17.5 ], [ 46.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -17.5 ], [ 46.5, -18.0 ], [ 46.0, -18.0 ], [ 46.0, -17.5 ], [ 46.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -17.5 ], [ 47.0, -18.0 ], [ 46.5, -18.0 ], [ 46.5, -17.5 ], [ 47.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -17.5 ], [ 47.5, -18.0 ], [ 47.0, -18.0 ], [ 47.0, -17.5 ], [ 47.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, -17.5 ], [ 48.0, -18.0 ], [ 47.5, -18.0 ], [ 47.5, -17.5 ], [ 48.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, -17.5 ], [ 48.5, -18.0 ], [ 48.0, -18.0 ], [ 48.0, -17.5 ], [ 48.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, -17.5 ], [ 49.0, -18.0 ], [ 48.5, -18.0 ], [ 48.5, -17.5 ], [ 49.0, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, -17.5 ], [ 49.5, -18.0 ], [ 49.0, -18.0 ], [ 49.0, -17.5 ], [ 49.5, -17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -17.0 ], [ 12.5, -17.5 ], [ 12.0, -17.5 ], [ 12.0, -17.0 ], [ 12.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -17.0 ], [ 13.0, -17.5 ], [ 12.5, -17.5 ], [ 12.5, -17.0 ], [ 13.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -17.0 ], [ 13.5, -17.5 ], [ 13.0, -17.5 ], [ 13.0, -17.0 ], [ 13.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -17.0 ], [ 14.0, -17.5 ], [ 13.5, -17.5 ], [ 13.5, -17.0 ], [ 14.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -17.0 ], [ 14.5, -17.5 ], [ 14.0, -17.5 ], [ 14.0, -17.0 ], [ 14.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -17.0 ], [ 15.0, -17.5 ], [ 14.5, -17.5 ], [ 14.5, -17.0 ], [ 15.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -17.0 ], [ 15.5, -17.5 ], [ 15.0, -17.5 ], [ 15.0, -17.0 ], [ 15.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -17.0 ], [ 16.0, -17.5 ], [ 15.5, -17.5 ], [ 15.5, -17.0 ], [ 16.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -17.0 ], [ 16.5, -17.5 ], [ 16.0, -17.5 ], [ 16.0, -17.0 ], [ 16.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -17.0 ], [ 17.0, -17.5 ], [ 16.5, -17.5 ], [ 16.5, -17.0 ], [ 17.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -17.0 ], [ 17.5, -17.5 ], [ 17.0, -17.5 ], [ 17.0, -17.0 ], [ 17.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -17.0 ], [ 18.0, -17.5 ], [ 17.5, -17.5 ], [ 17.5, -17.0 ], [ 18.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -17.0 ], [ 18.5, -17.5 ], [ 18.0, -17.5 ], [ 18.0, -17.0 ], [ 18.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -17.0 ], [ 19.0, -17.5 ], [ 18.5, -17.5 ], [ 18.5, -17.0 ], [ 19.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -17.0 ], [ 19.5, -17.5 ], [ 19.0, -17.5 ], [ 19.0, -17.0 ], [ 19.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -17.0 ], [ 20.0, -17.5 ], [ 19.5, -17.5 ], [ 19.5, -17.0 ], [ 20.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -17.0 ], [ 20.5, -17.5 ], [ 20.0, -17.5 ], [ 20.0, -17.0 ], [ 20.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -17.0 ], [ 21.0, -17.5 ], [ 20.5, -17.5 ], [ 20.5, -17.0 ], [ 21.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -17.0 ], [ 21.5, -17.5 ], [ 21.0, -17.5 ], [ 21.0, -17.0 ], [ 21.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -17.0 ], [ 22.0, -17.5 ], [ 21.5, -17.5 ], [ 21.5, -17.0 ], [ 22.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -17.0 ], [ 22.5, -17.5 ], [ 22.0, -17.5 ], [ 22.0, -17.0 ], [ 22.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -17.0 ], [ 23.0, -17.5 ], [ 22.5, -17.5 ], [ 22.5, -17.0 ], [ 23.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -17.0 ], [ 23.5, -17.5 ], [ 23.0, -17.5 ], [ 23.0, -17.0 ], [ 23.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -17.0 ], [ 24.0, -17.5 ], [ 23.5, -17.5 ], [ 23.5, -17.0 ], [ 24.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -17.0 ], [ 24.5, -17.5 ], [ 24.0, -17.5 ], [ 24.0, -17.0 ], [ 24.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -17.0 ], [ 25.0, -17.5 ], [ 24.5, -17.5 ], [ 24.5, -17.0 ], [ 25.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -17.0 ], [ 25.5, -17.5 ], [ 25.0, -17.5 ], [ 25.0, -17.0 ], [ 25.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -17.0 ], [ 26.0, -17.5 ], [ 25.5, -17.5 ], [ 25.5, -17.0 ], [ 26.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -17.0 ], [ 26.5, -17.5 ], [ 26.0, -17.5 ], [ 26.0, -17.0 ], [ 26.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -17.0 ], [ 27.0, -17.5 ], [ 26.5, -17.5 ], [ 26.5, -17.0 ], [ 27.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -17.0 ], [ 27.5, -17.5 ], [ 27.0, -17.5 ], [ 27.0, -17.0 ], [ 27.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -17.0 ], [ 28.0, -17.5 ], [ 27.5, -17.5 ], [ 27.5, -17.0 ], [ 28.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -17.0 ], [ 28.5, -17.5 ], [ 28.0, -17.5 ], [ 28.0, -17.0 ], [ 28.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -17.0 ], [ 29.0, -17.5 ], [ 28.5, -17.5 ], [ 28.5, -17.0 ], [ 29.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -17.0 ], [ 29.5, -17.5 ], [ 29.0, -17.5 ], [ 29.0, -17.0 ], [ 29.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -17.0 ], [ 30.0, -17.5 ], [ 29.5, -17.5 ], [ 29.5, -17.0 ], [ 30.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -17.0 ], [ 30.5, -17.5 ], [ 30.0, -17.5 ], [ 30.0, -17.0 ], [ 30.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -17.0 ], [ 31.0, -17.5 ], [ 30.5, -17.5 ], [ 30.5, -17.0 ], [ 31.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -17.0 ], [ 31.5, -17.5 ], [ 31.0, -17.5 ], [ 31.0, -17.0 ], [ 31.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -17.0 ], [ 32.0, -17.5 ], [ 31.5, -17.5 ], [ 31.5, -17.0 ], [ 32.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -17.0 ], [ 32.5, -17.5 ], [ 32.0, -17.5 ], [ 32.0, -17.0 ], [ 32.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -17.0 ], [ 33.0, -17.5 ], [ 32.5, -17.5 ], [ 32.5, -17.0 ], [ 33.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -17.0 ], [ 33.5, -17.5 ], [ 33.0, -17.5 ], [ 33.0, -17.0 ], [ 33.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -17.0 ], [ 34.0, -17.5 ], [ 33.5, -17.5 ], [ 33.5, -17.0 ], [ 34.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -17.0 ], [ 34.5, -17.5 ], [ 34.0, -17.5 ], [ 34.0, -17.0 ], [ 34.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -17.0 ], [ 35.0, -17.5 ], [ 34.5, -17.5 ], [ 34.5, -17.0 ], [ 35.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -17.0 ], [ 35.5, -17.5 ], [ 35.0, -17.5 ], [ 35.0, -17.0 ], [ 35.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -17.0 ], [ 36.0, -17.5 ], [ 35.5, -17.5 ], [ 35.5, -17.0 ], [ 36.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -17.0 ], [ 36.5, -17.5 ], [ 36.0, -17.5 ], [ 36.0, -17.0 ], [ 36.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -17.0 ], [ 37.0, -17.5 ], [ 36.5, -17.5 ], [ 36.5, -17.0 ], [ 37.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -17.0 ], [ 37.5, -17.5 ], [ 37.0, -17.5 ], [ 37.0, -17.0 ], [ 37.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -17.0 ], [ 38.0, -17.5 ], [ 37.5, -17.5 ], [ 37.5, -17.0 ], [ 38.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -17.0 ], [ 38.5, -17.5 ], [ 38.0, -17.5 ], [ 38.0, -17.0 ], [ 38.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, -17.0 ], [ 44.5, -17.5 ], [ 44.0, -17.5 ], [ 44.0, -17.0 ], [ 44.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -17.0 ], [ 45.0, -17.5 ], [ 44.5, -17.5 ], [ 44.5, -17.0 ], [ 45.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -17.0 ], [ 45.5, -17.5 ], [ 45.0, -17.5 ], [ 45.0, -17.0 ], [ 45.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -17.0 ], [ 46.0, -17.5 ], [ 45.5, -17.5 ], [ 45.5, -17.0 ], [ 46.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -17.0 ], [ 46.5, -17.5 ], [ 46.0, -17.5 ], [ 46.0, -17.0 ], [ 46.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -17.0 ], [ 47.0, -17.5 ], [ 46.5, -17.5 ], [ 46.5, -17.0 ], [ 47.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -17.0 ], [ 47.5, -17.5 ], [ 47.0, -17.5 ], [ 47.0, -17.0 ], [ 47.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, -17.0 ], [ 48.0, -17.5 ], [ 47.5, -17.5 ], [ 47.5, -17.0 ], [ 48.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, -17.0 ], [ 48.5, -17.5 ], [ 48.0, -17.5 ], [ 48.0, -17.0 ], [ 48.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, -17.0 ], [ 49.0, -17.5 ], [ 48.5, -17.5 ], [ 48.5, -17.0 ], [ 49.0, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, -17.0 ], [ 49.5, -17.5 ], [ 49.0, -17.5 ], [ 49.0, -17.0 ], [ 49.5, -17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, -16.5 ], [ 12.0, -17.0 ], [ 11.5, -17.0 ], [ 11.5, -16.5 ], [ 12.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -16.5 ], [ 12.5, -17.0 ], [ 12.0, -17.0 ], [ 12.0, -16.5 ], [ 12.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -16.5 ], [ 13.0, -17.0 ], [ 12.5, -17.0 ], [ 12.5, -16.5 ], [ 13.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -16.5 ], [ 13.5, -17.0 ], [ 13.0, -17.0 ], [ 13.0, -16.5 ], [ 13.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -16.5 ], [ 14.0, -17.0 ], [ 13.5, -17.0 ], [ 13.5, -16.5 ], [ 14.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -16.5 ], [ 14.5, -17.0 ], [ 14.0, -17.0 ], [ 14.0, -16.5 ], [ 14.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -16.5 ], [ 15.0, -17.0 ], [ 14.5, -17.0 ], [ 14.5, -16.5 ], [ 15.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -16.5 ], [ 15.5, -17.0 ], [ 15.0, -17.0 ], [ 15.0, -16.5 ], [ 15.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -16.5 ], [ 16.0, -17.0 ], [ 15.5, -17.0 ], [ 15.5, -16.5 ], [ 16.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -16.5 ], [ 16.5, -17.0 ], [ 16.0, -17.0 ], [ 16.0, -16.5 ], [ 16.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -16.5 ], [ 17.0, -17.0 ], [ 16.5, -17.0 ], [ 16.5, -16.5 ], [ 17.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -16.5 ], [ 17.5, -17.0 ], [ 17.0, -17.0 ], [ 17.0, -16.5 ], [ 17.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -16.5 ], [ 18.0, -17.0 ], [ 17.5, -17.0 ], [ 17.5, -16.5 ], [ 18.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -16.5 ], [ 18.5, -17.0 ], [ 18.0, -17.0 ], [ 18.0, -16.5 ], [ 18.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -16.5 ], [ 19.0, -17.0 ], [ 18.5, -17.0 ], [ 18.5, -16.5 ], [ 19.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -16.5 ], [ 19.5, -17.0 ], [ 19.0, -17.0 ], [ 19.0, -16.5 ], [ 19.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -16.5 ], [ 20.0, -17.0 ], [ 19.5, -17.0 ], [ 19.5, -16.5 ], [ 20.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -16.5 ], [ 20.5, -17.0 ], [ 20.0, -17.0 ], [ 20.0, -16.5 ], [ 20.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -16.5 ], [ 21.0, -17.0 ], [ 20.5, -17.0 ], [ 20.5, -16.5 ], [ 21.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -16.5 ], [ 21.5, -17.0 ], [ 21.0, -17.0 ], [ 21.0, -16.5 ], [ 21.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -16.5 ], [ 22.0, -17.0 ], [ 21.5, -17.0 ], [ 21.5, -16.5 ], [ 22.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -16.5 ], [ 22.5, -17.0 ], [ 22.0, -17.0 ], [ 22.0, -16.5 ], [ 22.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -16.5 ], [ 23.0, -17.0 ], [ 22.5, -17.0 ], [ 22.5, -16.5 ], [ 23.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -16.5 ], [ 23.5, -17.0 ], [ 23.0, -17.0 ], [ 23.0, -16.5 ], [ 23.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -16.5 ], [ 24.0, -17.0 ], [ 23.5, -17.0 ], [ 23.5, -16.5 ], [ 24.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -16.5 ], [ 24.5, -17.0 ], [ 24.0, -17.0 ], [ 24.0, -16.5 ], [ 24.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -16.5 ], [ 25.0, -17.0 ], [ 24.5, -17.0 ], [ 24.5, -16.5 ], [ 25.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -16.5 ], [ 25.5, -17.0 ], [ 25.0, -17.0 ], [ 25.0, -16.5 ], [ 25.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -16.5 ], [ 26.0, -17.0 ], [ 25.5, -17.0 ], [ 25.5, -16.5 ], [ 26.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -16.5 ], [ 26.5, -17.0 ], [ 26.0, -17.0 ], [ 26.0, -16.5 ], [ 26.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -16.5 ], [ 27.0, -17.0 ], [ 26.5, -17.0 ], [ 26.5, -16.5 ], [ 27.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -16.5 ], [ 27.5, -17.0 ], [ 27.0, -17.0 ], [ 27.0, -16.5 ], [ 27.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -16.5 ], [ 28.0, -17.0 ], [ 27.5, -17.0 ], [ 27.5, -16.5 ], [ 28.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -16.5 ], [ 28.5, -17.0 ], [ 28.0, -17.0 ], [ 28.0, -16.5 ], [ 28.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -16.5 ], [ 29.0, -17.0 ], [ 28.5, -17.0 ], [ 28.5, -16.5 ], [ 29.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -16.5 ], [ 29.5, -17.0 ], [ 29.0, -17.0 ], [ 29.0, -16.5 ], [ 29.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -16.5 ], [ 30.0, -17.0 ], [ 29.5, -17.0 ], [ 29.5, -16.5 ], [ 30.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -16.5 ], [ 30.5, -17.0 ], [ 30.0, -17.0 ], [ 30.0, -16.5 ], [ 30.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -16.5 ], [ 31.0, -17.0 ], [ 30.5, -17.0 ], [ 30.5, -16.5 ], [ 31.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -16.5 ], [ 31.5, -17.0 ], [ 31.0, -17.0 ], [ 31.0, -16.5 ], [ 31.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -16.5 ], [ 32.0, -17.0 ], [ 31.5, -17.0 ], [ 31.5, -16.5 ], [ 32.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -16.5 ], [ 32.5, -17.0 ], [ 32.0, -17.0 ], [ 32.0, -16.5 ], [ 32.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -16.5 ], [ 33.0, -17.0 ], [ 32.5, -17.0 ], [ 32.5, -16.5 ], [ 33.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -16.5 ], [ 33.5, -17.0 ], [ 33.0, -17.0 ], [ 33.0, -16.5 ], [ 33.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -16.5 ], [ 34.0, -17.0 ], [ 33.5, -17.0 ], [ 33.5, -16.5 ], [ 34.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -16.5 ], [ 34.5, -17.0 ], [ 34.0, -17.0 ], [ 34.0, -16.5 ], [ 34.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -16.5 ], [ 35.0, -17.0 ], [ 34.5, -17.0 ], [ 34.5, -16.5 ], [ 35.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -16.5 ], [ 35.5, -17.0 ], [ 35.0, -17.0 ], [ 35.0, -16.5 ], [ 35.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -16.5 ], [ 36.0, -17.0 ], [ 35.5, -17.0 ], [ 35.5, -16.5 ], [ 36.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -16.5 ], [ 36.5, -17.0 ], [ 36.0, -17.0 ], [ 36.0, -16.5 ], [ 36.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -16.5 ], [ 37.0, -17.0 ], [ 36.5, -17.0 ], [ 36.5, -16.5 ], [ 37.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -16.5 ], [ 37.5, -17.0 ], [ 37.0, -17.0 ], [ 37.0, -16.5 ], [ 37.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -16.5 ], [ 38.0, -17.0 ], [ 37.5, -17.0 ], [ 37.5, -16.5 ], [ 38.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -16.5 ], [ 38.5, -17.0 ], [ 38.0, -17.0 ], [ 38.0, -16.5 ], [ 38.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -16.5 ], [ 39.0, -17.0 ], [ 38.5, -17.0 ], [ 38.5, -16.5 ], [ 39.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -16.5 ], [ 39.5, -17.0 ], [ 39.0, -17.0 ], [ 39.0, -16.5 ], [ 39.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -16.5 ], [ 45.0, -17.0 ], [ 44.5, -17.0 ], [ 44.5, -16.5 ], [ 45.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -16.5 ], [ 45.5, -17.0 ], [ 45.0, -17.0 ], [ 45.0, -16.5 ], [ 45.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -16.5 ], [ 46.0, -17.0 ], [ 45.5, -17.0 ], [ 45.5, -16.5 ], [ 46.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -16.5 ], [ 46.5, -17.0 ], [ 46.0, -17.0 ], [ 46.0, -16.5 ], [ 46.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -16.5 ], [ 47.0, -17.0 ], [ 46.5, -17.0 ], [ 46.5, -16.5 ], [ 47.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -16.5 ], [ 47.5, -17.0 ], [ 47.0, -17.0 ], [ 47.0, -16.5 ], [ 47.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, -16.5 ], [ 48.0, -17.0 ], [ 47.5, -17.0 ], [ 47.5, -16.5 ], [ 48.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, -16.5 ], [ 48.5, -17.0 ], [ 48.0, -17.0 ], [ 48.0, -16.5 ], [ 48.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, -16.5 ], [ 49.0, -17.0 ], [ 48.5, -17.0 ], [ 48.5, -16.5 ], [ 49.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, -16.5 ], [ 49.5, -17.0 ], [ 49.0, -17.0 ], [ 49.0, -16.5 ], [ 49.5, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.0, -16.5 ], [ 50.0, -17.0 ], [ 49.5, -17.0 ], [ 49.5, -16.5 ], [ 50.0, -16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, -16.0 ], [ 12.0, -16.5 ], [ 11.5, -16.5 ], [ 11.5, -16.0 ], [ 12.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -16.0 ], [ 12.5, -16.5 ], [ 12.0, -16.5 ], [ 12.0, -16.0 ], [ 12.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -16.0 ], [ 13.0, -16.5 ], [ 12.5, -16.5 ], [ 12.5, -16.0 ], [ 13.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -16.0 ], [ 13.5, -16.5 ], [ 13.0, -16.5 ], [ 13.0, -16.0 ], [ 13.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -16.0 ], [ 14.0, -16.5 ], [ 13.5, -16.5 ], [ 13.5, -16.0 ], [ 14.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -16.0 ], [ 14.5, -16.5 ], [ 14.0, -16.5 ], [ 14.0, -16.0 ], [ 14.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -16.0 ], [ 15.0, -16.5 ], [ 14.5, -16.5 ], [ 14.5, -16.0 ], [ 15.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -16.0 ], [ 15.5, -16.5 ], [ 15.0, -16.5 ], [ 15.0, -16.0 ], [ 15.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -16.0 ], [ 16.0, -16.5 ], [ 15.5, -16.5 ], [ 15.5, -16.0 ], [ 16.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -16.0 ], [ 16.5, -16.5 ], [ 16.0, -16.5 ], [ 16.0, -16.0 ], [ 16.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -16.0 ], [ 17.0, -16.5 ], [ 16.5, -16.5 ], [ 16.5, -16.0 ], [ 17.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -16.0 ], [ 17.5, -16.5 ], [ 17.0, -16.5 ], [ 17.0, -16.0 ], [ 17.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -16.0 ], [ 18.0, -16.5 ], [ 17.5, -16.5 ], [ 17.5, -16.0 ], [ 18.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -16.0 ], [ 18.5, -16.5 ], [ 18.0, -16.5 ], [ 18.0, -16.0 ], [ 18.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -16.0 ], [ 19.0, -16.5 ], [ 18.5, -16.5 ], [ 18.5, -16.0 ], [ 19.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -16.0 ], [ 19.5, -16.5 ], [ 19.0, -16.5 ], [ 19.0, -16.0 ], [ 19.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -16.0 ], [ 20.0, -16.5 ], [ 19.5, -16.5 ], [ 19.5, -16.0 ], [ 20.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -16.0 ], [ 20.5, -16.5 ], [ 20.0, -16.5 ], [ 20.0, -16.0 ], [ 20.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -16.0 ], [ 21.0, -16.5 ], [ 20.5, -16.5 ], [ 20.5, -16.0 ], [ 21.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -16.0 ], [ 21.5, -16.5 ], [ 21.0, -16.5 ], [ 21.0, -16.0 ], [ 21.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -16.0 ], [ 22.0, -16.5 ], [ 21.5, -16.5 ], [ 21.5, -16.0 ], [ 22.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -16.0 ], [ 22.5, -16.5 ], [ 22.0, -16.5 ], [ 22.0, -16.0 ], [ 22.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -16.0 ], [ 23.0, -16.5 ], [ 22.5, -16.5 ], [ 22.5, -16.0 ], [ 23.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -16.0 ], [ 23.5, -16.5 ], [ 23.0, -16.5 ], [ 23.0, -16.0 ], [ 23.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -16.0 ], [ 24.0, -16.5 ], [ 23.5, -16.5 ], [ 23.5, -16.0 ], [ 24.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -16.0 ], [ 24.5, -16.5 ], [ 24.0, -16.5 ], [ 24.0, -16.0 ], [ 24.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -16.0 ], [ 25.0, -16.5 ], [ 24.5, -16.5 ], [ 24.5, -16.0 ], [ 25.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -16.0 ], [ 25.5, -16.5 ], [ 25.0, -16.5 ], [ 25.0, -16.0 ], [ 25.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -16.0 ], [ 26.0, -16.5 ], [ 25.5, -16.5 ], [ 25.5, -16.0 ], [ 26.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -16.0 ], [ 26.5, -16.5 ], [ 26.0, -16.5 ], [ 26.0, -16.0 ], [ 26.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -16.0 ], [ 27.0, -16.5 ], [ 26.5, -16.5 ], [ 26.5, -16.0 ], [ 27.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -16.0 ], [ 27.5, -16.5 ], [ 27.0, -16.5 ], [ 27.0, -16.0 ], [ 27.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -16.0 ], [ 28.0, -16.5 ], [ 27.5, -16.5 ], [ 27.5, -16.0 ], [ 28.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -16.0 ], [ 28.5, -16.5 ], [ 28.0, -16.5 ], [ 28.0, -16.0 ], [ 28.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -16.0 ], [ 29.0, -16.5 ], [ 28.5, -16.5 ], [ 28.5, -16.0 ], [ 29.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -16.0 ], [ 29.5, -16.5 ], [ 29.0, -16.5 ], [ 29.0, -16.0 ], [ 29.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -16.0 ], [ 30.0, -16.5 ], [ 29.5, -16.5 ], [ 29.5, -16.0 ], [ 30.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -16.0 ], [ 30.5, -16.5 ], [ 30.0, -16.5 ], [ 30.0, -16.0 ], [ 30.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -16.0 ], [ 31.0, -16.5 ], [ 30.5, -16.5 ], [ 30.5, -16.0 ], [ 31.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -16.0 ], [ 31.5, -16.5 ], [ 31.0, -16.5 ], [ 31.0, -16.0 ], [ 31.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -16.0 ], [ 32.0, -16.5 ], [ 31.5, -16.5 ], [ 31.5, -16.0 ], [ 32.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -16.0 ], [ 32.5, -16.5 ], [ 32.0, -16.5 ], [ 32.0, -16.0 ], [ 32.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -16.0 ], [ 33.0, -16.5 ], [ 32.5, -16.5 ], [ 32.5, -16.0 ], [ 33.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -16.0 ], [ 33.5, -16.5 ], [ 33.0, -16.5 ], [ 33.0, -16.0 ], [ 33.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -16.0 ], [ 34.0, -16.5 ], [ 33.5, -16.5 ], [ 33.5, -16.0 ], [ 34.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -16.0 ], [ 34.5, -16.5 ], [ 34.0, -16.5 ], [ 34.0, -16.0 ], [ 34.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -16.0 ], [ 35.0, -16.5 ], [ 34.5, -16.5 ], [ 34.5, -16.0 ], [ 35.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -16.0 ], [ 35.5, -16.5 ], [ 35.0, -16.5 ], [ 35.0, -16.0 ], [ 35.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -16.0 ], [ 36.0, -16.5 ], [ 35.5, -16.5 ], [ 35.5, -16.0 ], [ 36.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -16.0 ], [ 36.5, -16.5 ], [ 36.0, -16.5 ], [ 36.0, -16.0 ], [ 36.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -16.0 ], [ 37.0, -16.5 ], [ 36.5, -16.5 ], [ 36.5, -16.0 ], [ 37.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -16.0 ], [ 37.5, -16.5 ], [ 37.0, -16.5 ], [ 37.0, -16.0 ], [ 37.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -16.0 ], [ 38.0, -16.5 ], [ 37.5, -16.5 ], [ 37.5, -16.0 ], [ 38.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -16.0 ], [ 38.5, -16.5 ], [ 38.0, -16.5 ], [ 38.0, -16.0 ], [ 38.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -16.0 ], [ 39.0, -16.5 ], [ 38.5, -16.5 ], [ 38.5, -16.0 ], [ 39.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -16.0 ], [ 39.5, -16.5 ], [ 39.0, -16.5 ], [ 39.0, -16.0 ], [ 39.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -16.0 ], [ 40.0, -16.5 ], [ 39.5, -16.5 ], [ 39.5, -16.0 ], [ 40.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, -16.0 ], [ 45.0, -16.5 ], [ 44.5, -16.5 ], [ 44.5, -16.0 ], [ 45.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, -16.0 ], [ 45.5, -16.5 ], [ 45.0, -16.5 ], [ 45.0, -16.0 ], [ 45.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, -16.0 ], [ 46.0, -16.5 ], [ 45.5, -16.5 ], [ 45.5, -16.0 ], [ 46.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, -16.0 ], [ 46.5, -16.5 ], [ 46.0, -16.5 ], [ 46.0, -16.0 ], [ 46.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -16.0 ], [ 47.0, -16.5 ], [ 46.5, -16.5 ], [ 46.5, -16.0 ], [ 47.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -16.0 ], [ 47.5, -16.5 ], [ 47.0, -16.5 ], [ 47.0, -16.0 ], [ 47.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, -16.0 ], [ 48.0, -16.5 ], [ 47.5, -16.5 ], [ 47.5, -16.0 ], [ 48.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, -16.0 ], [ 48.5, -16.5 ], [ 48.0, -16.5 ], [ 48.0, -16.0 ], [ 48.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, -16.0 ], [ 49.0, -16.5 ], [ 48.5, -16.5 ], [ 48.5, -16.0 ], [ 49.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, -16.0 ], [ 49.5, -16.5 ], [ 49.0, -16.5 ], [ 49.0, -16.0 ], [ 49.5, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.0, -16.0 ], [ 50.0, -16.5 ], [ 49.5, -16.5 ], [ 49.5, -16.0 ], [ 50.0, -16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -15.5 ], [ 12.5, -16.0 ], [ 12.0, -16.0 ], [ 12.0, -15.5 ], [ 12.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -15.5 ], [ 13.0, -16.0 ], [ 12.5, -16.0 ], [ 12.5, -15.5 ], [ 13.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -15.5 ], [ 13.5, -16.0 ], [ 13.0, -16.0 ], [ 13.0, -15.5 ], [ 13.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -15.5 ], [ 14.0, -16.0 ], [ 13.5, -16.0 ], [ 13.5, -15.5 ], [ 14.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -15.5 ], [ 14.5, -16.0 ], [ 14.0, -16.0 ], [ 14.0, -15.5 ], [ 14.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -15.5 ], [ 15.0, -16.0 ], [ 14.5, -16.0 ], [ 14.5, -15.5 ], [ 15.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -15.5 ], [ 15.5, -16.0 ], [ 15.0, -16.0 ], [ 15.0, -15.5 ], [ 15.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -15.5 ], [ 16.0, -16.0 ], [ 15.5, -16.0 ], [ 15.5, -15.5 ], [ 16.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -15.5 ], [ 16.5, -16.0 ], [ 16.0, -16.0 ], [ 16.0, -15.5 ], [ 16.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -15.5 ], [ 17.0, -16.0 ], [ 16.5, -16.0 ], [ 16.5, -15.5 ], [ 17.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -15.5 ], [ 17.5, -16.0 ], [ 17.0, -16.0 ], [ 17.0, -15.5 ], [ 17.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -15.5 ], [ 18.0, -16.0 ], [ 17.5, -16.0 ], [ 17.5, -15.5 ], [ 18.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -15.5 ], [ 18.5, -16.0 ], [ 18.0, -16.0 ], [ 18.0, -15.5 ], [ 18.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -15.5 ], [ 19.0, -16.0 ], [ 18.5, -16.0 ], [ 18.5, -15.5 ], [ 19.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -15.5 ], [ 19.5, -16.0 ], [ 19.0, -16.0 ], [ 19.0, -15.5 ], [ 19.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -15.5 ], [ 20.0, -16.0 ], [ 19.5, -16.0 ], [ 19.5, -15.5 ], [ 20.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -15.5 ], [ 20.5, -16.0 ], [ 20.0, -16.0 ], [ 20.0, -15.5 ], [ 20.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -15.5 ], [ 21.0, -16.0 ], [ 20.5, -16.0 ], [ 20.5, -15.5 ], [ 21.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -15.5 ], [ 21.5, -16.0 ], [ 21.0, -16.0 ], [ 21.0, -15.5 ], [ 21.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -15.5 ], [ 22.0, -16.0 ], [ 21.5, -16.0 ], [ 21.5, -15.5 ], [ 22.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -15.5 ], [ 22.5, -16.0 ], [ 22.0, -16.0 ], [ 22.0, -15.5 ], [ 22.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -15.5 ], [ 23.0, -16.0 ], [ 22.5, -16.0 ], [ 22.5, -15.5 ], [ 23.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -15.5 ], [ 23.5, -16.0 ], [ 23.0, -16.0 ], [ 23.0, -15.5 ], [ 23.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -15.5 ], [ 24.0, -16.0 ], [ 23.5, -16.0 ], [ 23.5, -15.5 ], [ 24.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -15.5 ], [ 24.5, -16.0 ], [ 24.0, -16.0 ], [ 24.0, -15.5 ], [ 24.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -15.5 ], [ 25.0, -16.0 ], [ 24.5, -16.0 ], [ 24.5, -15.5 ], [ 25.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -15.5 ], [ 25.5, -16.0 ], [ 25.0, -16.0 ], [ 25.0, -15.5 ], [ 25.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -15.5 ], [ 26.0, -16.0 ], [ 25.5, -16.0 ], [ 25.5, -15.5 ], [ 26.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -15.5 ], [ 26.5, -16.0 ], [ 26.0, -16.0 ], [ 26.0, -15.5 ], [ 26.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -15.5 ], [ 27.0, -16.0 ], [ 26.5, -16.0 ], [ 26.5, -15.5 ], [ 27.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -15.5 ], [ 27.5, -16.0 ], [ 27.0, -16.0 ], [ 27.0, -15.5 ], [ 27.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -15.5 ], [ 28.0, -16.0 ], [ 27.5, -16.0 ], [ 27.5, -15.5 ], [ 28.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -15.5 ], [ 28.5, -16.0 ], [ 28.0, -16.0 ], [ 28.0, -15.5 ], [ 28.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -15.5 ], [ 29.0, -16.0 ], [ 28.5, -16.0 ], [ 28.5, -15.5 ], [ 29.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -15.5 ], [ 29.5, -16.0 ], [ 29.0, -16.0 ], [ 29.0, -15.5 ], [ 29.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -15.5 ], [ 30.0, -16.0 ], [ 29.5, -16.0 ], [ 29.5, -15.5 ], [ 30.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -15.5 ], [ 30.5, -16.0 ], [ 30.0, -16.0 ], [ 30.0, -15.5 ], [ 30.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -15.5 ], [ 31.0, -16.0 ], [ 30.5, -16.0 ], [ 30.5, -15.5 ], [ 31.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -15.5 ], [ 31.5, -16.0 ], [ 31.0, -16.0 ], [ 31.0, -15.5 ], [ 31.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -15.5 ], [ 32.0, -16.0 ], [ 31.5, -16.0 ], [ 31.5, -15.5 ], [ 32.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -15.5 ], [ 32.5, -16.0 ], [ 32.0, -16.0 ], [ 32.0, -15.5 ], [ 32.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -15.5 ], [ 33.0, -16.0 ], [ 32.5, -16.0 ], [ 32.5, -15.5 ], [ 33.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -15.5 ], [ 33.5, -16.0 ], [ 33.0, -16.0 ], [ 33.0, -15.5 ], [ 33.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -15.5 ], [ 34.0, -16.0 ], [ 33.5, -16.0 ], [ 33.5, -15.5 ], [ 34.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -15.5 ], [ 34.5, -16.0 ], [ 34.0, -16.0 ], [ 34.0, -15.5 ], [ 34.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -15.5 ], [ 35.0, -16.0 ], [ 34.5, -16.0 ], [ 34.5, -15.5 ], [ 35.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -15.5 ], [ 35.5, -16.0 ], [ 35.0, -16.0 ], [ 35.0, -15.5 ], [ 35.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -15.5 ], [ 36.0, -16.0 ], [ 35.5, -16.0 ], [ 35.5, -15.5 ], [ 36.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -15.5 ], [ 36.5, -16.0 ], [ 36.0, -16.0 ], [ 36.0, -15.5 ], [ 36.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -15.5 ], [ 37.0, -16.0 ], [ 36.5, -16.0 ], [ 36.5, -15.5 ], [ 37.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -15.5 ], [ 37.5, -16.0 ], [ 37.0, -16.0 ], [ 37.0, -15.5 ], [ 37.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -15.5 ], [ 38.0, -16.0 ], [ 37.5, -16.0 ], [ 37.5, -15.5 ], [ 38.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -15.5 ], [ 38.5, -16.0 ], [ 38.0, -16.0 ], [ 38.0, -15.5 ], [ 38.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -15.5 ], [ 39.0, -16.0 ], [ 38.5, -16.0 ], [ 38.5, -15.5 ], [ 39.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -15.5 ], [ 39.5, -16.0 ], [ 39.0, -16.0 ], [ 39.0, -15.5 ], [ 39.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -15.5 ], [ 40.0, -16.0 ], [ 39.5, -16.0 ], [ 39.5, -15.5 ], [ 40.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, -15.5 ], [ 40.5, -16.0 ], [ 40.0, -16.0 ], [ 40.0, -15.5 ], [ 40.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, -15.5 ], [ 47.0, -16.0 ], [ 46.5, -16.0 ], [ 46.5, -15.5 ], [ 47.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -15.5 ], [ 47.5, -16.0 ], [ 47.0, -16.0 ], [ 47.0, -15.5 ], [ 47.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, -15.5 ], [ 48.0, -16.0 ], [ 47.5, -16.0 ], [ 47.5, -15.5 ], [ 48.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, -15.5 ], [ 48.5, -16.0 ], [ 48.0, -16.0 ], [ 48.0, -15.5 ], [ 48.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, -15.5 ], [ 49.0, -16.0 ], [ 48.5, -16.0 ], [ 48.5, -15.5 ], [ 49.0, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, -15.5 ], [ 49.5, -16.0 ], [ 49.0, -16.0 ], [ 49.0, -15.5 ], [ 49.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.5, -15.5 ], [ 50.5, -16.0 ], [ 50.0, -16.0 ], [ 50.0, -15.5 ], [ 50.5, -15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -15.0 ], [ 12.5, -15.5 ], [ 12.0, -15.5 ], [ 12.0, -15.0 ], [ 12.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -15.0 ], [ 13.0, -15.5 ], [ 12.5, -15.5 ], [ 12.5, -15.0 ], [ 13.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -15.0 ], [ 13.5, -15.5 ], [ 13.0, -15.5 ], [ 13.0, -15.0 ], [ 13.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -15.0 ], [ 14.0, -15.5 ], [ 13.5, -15.5 ], [ 13.5, -15.0 ], [ 14.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -15.0 ], [ 14.5, -15.5 ], [ 14.0, -15.5 ], [ 14.0, -15.0 ], [ 14.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -15.0 ], [ 15.0, -15.5 ], [ 14.5, -15.5 ], [ 14.5, -15.0 ], [ 15.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -15.0 ], [ 15.5, -15.5 ], [ 15.0, -15.5 ], [ 15.0, -15.0 ], [ 15.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -15.0 ], [ 16.0, -15.5 ], [ 15.5, -15.5 ], [ 15.5, -15.0 ], [ 16.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -15.0 ], [ 16.5, -15.5 ], [ 16.0, -15.5 ], [ 16.0, -15.0 ], [ 16.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -15.0 ], [ 17.0, -15.5 ], [ 16.5, -15.5 ], [ 16.5, -15.0 ], [ 17.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -15.0 ], [ 17.5, -15.5 ], [ 17.0, -15.5 ], [ 17.0, -15.0 ], [ 17.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -15.0 ], [ 18.0, -15.5 ], [ 17.5, -15.5 ], [ 17.5, -15.0 ], [ 18.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -15.0 ], [ 18.5, -15.5 ], [ 18.0, -15.5 ], [ 18.0, -15.0 ], [ 18.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -15.0 ], [ 19.0, -15.5 ], [ 18.5, -15.5 ], [ 18.5, -15.0 ], [ 19.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -15.0 ], [ 19.5, -15.5 ], [ 19.0, -15.5 ], [ 19.0, -15.0 ], [ 19.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -15.0 ], [ 20.0, -15.5 ], [ 19.5, -15.5 ], [ 19.5, -15.0 ], [ 20.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -15.0 ], [ 20.5, -15.5 ], [ 20.0, -15.5 ], [ 20.0, -15.0 ], [ 20.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -15.0 ], [ 21.0, -15.5 ], [ 20.5, -15.5 ], [ 20.5, -15.0 ], [ 21.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -15.0 ], [ 21.5, -15.5 ], [ 21.0, -15.5 ], [ 21.0, -15.0 ], [ 21.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -15.0 ], [ 22.0, -15.5 ], [ 21.5, -15.5 ], [ 21.5, -15.0 ], [ 22.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -15.0 ], [ 22.5, -15.5 ], [ 22.0, -15.5 ], [ 22.0, -15.0 ], [ 22.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -15.0 ], [ 23.0, -15.5 ], [ 22.5, -15.5 ], [ 22.5, -15.0 ], [ 23.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -15.0 ], [ 23.5, -15.5 ], [ 23.0, -15.5 ], [ 23.0, -15.0 ], [ 23.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -15.0 ], [ 24.0, -15.5 ], [ 23.5, -15.5 ], [ 23.5, -15.0 ], [ 24.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -15.0 ], [ 24.5, -15.5 ], [ 24.0, -15.5 ], [ 24.0, -15.0 ], [ 24.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -15.0 ], [ 25.0, -15.5 ], [ 24.5, -15.5 ], [ 24.5, -15.0 ], [ 25.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -15.0 ], [ 25.5, -15.5 ], [ 25.0, -15.5 ], [ 25.0, -15.0 ], [ 25.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -15.0 ], [ 26.0, -15.5 ], [ 25.5, -15.5 ], [ 25.5, -15.0 ], [ 26.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -15.0 ], [ 26.5, -15.5 ], [ 26.0, -15.5 ], [ 26.0, -15.0 ], [ 26.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -15.0 ], [ 27.0, -15.5 ], [ 26.5, -15.5 ], [ 26.5, -15.0 ], [ 27.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -15.0 ], [ 27.5, -15.5 ], [ 27.0, -15.5 ], [ 27.0, -15.0 ], [ 27.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -15.0 ], [ 28.0, -15.5 ], [ 27.5, -15.5 ], [ 27.5, -15.0 ], [ 28.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -15.0 ], [ 28.5, -15.5 ], [ 28.0, -15.5 ], [ 28.0, -15.0 ], [ 28.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -15.0 ], [ 29.0, -15.5 ], [ 28.5, -15.5 ], [ 28.5, -15.0 ], [ 29.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -15.0 ], [ 29.5, -15.5 ], [ 29.0, -15.5 ], [ 29.0, -15.0 ], [ 29.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -15.0 ], [ 30.0, -15.5 ], [ 29.5, -15.5 ], [ 29.5, -15.0 ], [ 30.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -15.0 ], [ 30.5, -15.5 ], [ 30.0, -15.5 ], [ 30.0, -15.0 ], [ 30.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -15.0 ], [ 31.0, -15.5 ], [ 30.5, -15.5 ], [ 30.5, -15.0 ], [ 31.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -15.0 ], [ 31.5, -15.5 ], [ 31.0, -15.5 ], [ 31.0, -15.0 ], [ 31.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -15.0 ], [ 32.0, -15.5 ], [ 31.5, -15.5 ], [ 31.5, -15.0 ], [ 32.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -15.0 ], [ 32.5, -15.5 ], [ 32.0, -15.5 ], [ 32.0, -15.0 ], [ 32.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -15.0 ], [ 33.0, -15.5 ], [ 32.5, -15.5 ], [ 32.5, -15.0 ], [ 33.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -15.0 ], [ 33.5, -15.5 ], [ 33.0, -15.5 ], [ 33.0, -15.0 ], [ 33.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -15.0 ], [ 34.0, -15.5 ], [ 33.5, -15.5 ], [ 33.5, -15.0 ], [ 34.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -15.0 ], [ 34.5, -15.5 ], [ 34.0, -15.5 ], [ 34.0, -15.0 ], [ 34.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -15.0 ], [ 35.0, -15.5 ], [ 34.5, -15.5 ], [ 34.5, -15.0 ], [ 35.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -15.0 ], [ 35.5, -15.5 ], [ 35.0, -15.5 ], [ 35.0, -15.0 ], [ 35.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -15.0 ], [ 36.0, -15.5 ], [ 35.5, -15.5 ], [ 35.5, -15.0 ], [ 36.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -15.0 ], [ 36.5, -15.5 ], [ 36.0, -15.5 ], [ 36.0, -15.0 ], [ 36.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -15.0 ], [ 37.0, -15.5 ], [ 36.5, -15.5 ], [ 36.5, -15.0 ], [ 37.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -15.0 ], [ 37.5, -15.5 ], [ 37.0, -15.5 ], [ 37.0, -15.0 ], [ 37.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -15.0 ], [ 38.0, -15.5 ], [ 37.5, -15.5 ], [ 37.5, -15.0 ], [ 38.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -15.0 ], [ 38.5, -15.5 ], [ 38.0, -15.5 ], [ 38.0, -15.0 ], [ 38.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -15.0 ], [ 39.0, -15.5 ], [ 38.5, -15.5 ], [ 38.5, -15.0 ], [ 39.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -15.0 ], [ 39.5, -15.5 ], [ 39.0, -15.5 ], [ 39.0, -15.0 ], [ 39.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -15.0 ], [ 40.0, -15.5 ], [ 39.5, -15.5 ], [ 39.5, -15.0 ], [ 40.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, -15.0 ], [ 40.5, -15.5 ], [ 40.0, -15.5 ], [ 40.0, -15.0 ], [ 40.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, -15.0 ], [ 47.5, -15.5 ], [ 47.0, -15.5 ], [ 47.0, -15.0 ], [ 47.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, -15.0 ], [ 48.0, -15.5 ], [ 47.5, -15.5 ], [ 47.5, -15.0 ], [ 48.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, -15.0 ], [ 48.5, -15.5 ], [ 48.0, -15.5 ], [ 48.0, -15.0 ], [ 48.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, -15.0 ], [ 49.0, -15.5 ], [ 48.5, -15.5 ], [ 48.5, -15.0 ], [ 49.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, -15.0 ], [ 49.5, -15.5 ], [ 49.0, -15.5 ], [ 49.0, -15.0 ], [ 49.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.0, -15.0 ], [ 50.0, -15.5 ], [ 49.5, -15.5 ], [ 49.5, -15.0 ], [ 50.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.5, -15.0 ], [ 50.5, -15.5 ], [ 50.0, -15.5 ], [ 50.0, -15.0 ], [ 50.5, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -14.5 ], [ 12.5, -15.0 ], [ 12.0, -15.0 ], [ 12.0, -14.5 ], [ 12.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -14.5 ], [ 13.0, -15.0 ], [ 12.5, -15.0 ], [ 12.5, -14.5 ], [ 13.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -14.5 ], [ 13.5, -15.0 ], [ 13.0, -15.0 ], [ 13.0, -14.5 ], [ 13.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -14.5 ], [ 14.0, -15.0 ], [ 13.5, -15.0 ], [ 13.5, -14.5 ], [ 14.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -14.5 ], [ 14.5, -15.0 ], [ 14.0, -15.0 ], [ 14.0, -14.5 ], [ 14.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -14.5 ], [ 15.0, -15.0 ], [ 14.5, -15.0 ], [ 14.5, -14.5 ], [ 15.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -14.5 ], [ 15.5, -15.0 ], [ 15.0, -15.0 ], [ 15.0, -14.5 ], [ 15.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -14.5 ], [ 16.0, -15.0 ], [ 15.5, -15.0 ], [ 15.5, -14.5 ], [ 16.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -14.5 ], [ 16.5, -15.0 ], [ 16.0, -15.0 ], [ 16.0, -14.5 ], [ 16.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -14.5 ], [ 17.0, -15.0 ], [ 16.5, -15.0 ], [ 16.5, -14.5 ], [ 17.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -14.5 ], [ 17.5, -15.0 ], [ 17.0, -15.0 ], [ 17.0, -14.5 ], [ 17.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -14.5 ], [ 18.0, -15.0 ], [ 17.5, -15.0 ], [ 17.5, -14.5 ], [ 18.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -14.5 ], [ 18.5, -15.0 ], [ 18.0, -15.0 ], [ 18.0, -14.5 ], [ 18.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -14.5 ], [ 19.0, -15.0 ], [ 18.5, -15.0 ], [ 18.5, -14.5 ], [ 19.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -14.5 ], [ 19.5, -15.0 ], [ 19.0, -15.0 ], [ 19.0, -14.5 ], [ 19.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -14.5 ], [ 20.0, -15.0 ], [ 19.5, -15.0 ], [ 19.5, -14.5 ], [ 20.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -14.5 ], [ 20.5, -15.0 ], [ 20.0, -15.0 ], [ 20.0, -14.5 ], [ 20.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -14.5 ], [ 21.0, -15.0 ], [ 20.5, -15.0 ], [ 20.5, -14.5 ], [ 21.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -14.5 ], [ 21.5, -15.0 ], [ 21.0, -15.0 ], [ 21.0, -14.5 ], [ 21.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -14.5 ], [ 22.0, -15.0 ], [ 21.5, -15.0 ], [ 21.5, -14.5 ], [ 22.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -14.5 ], [ 22.5, -15.0 ], [ 22.0, -15.0 ], [ 22.0, -14.5 ], [ 22.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -14.5 ], [ 23.0, -15.0 ], [ 22.5, -15.0 ], [ 22.5, -14.5 ], [ 23.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -14.5 ], [ 23.5, -15.0 ], [ 23.0, -15.0 ], [ 23.0, -14.5 ], [ 23.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -14.5 ], [ 24.0, -15.0 ], [ 23.5, -15.0 ], [ 23.5, -14.5 ], [ 24.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -14.5 ], [ 24.5, -15.0 ], [ 24.0, -15.0 ], [ 24.0, -14.5 ], [ 24.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -14.5 ], [ 25.0, -15.0 ], [ 24.5, -15.0 ], [ 24.5, -14.5 ], [ 25.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -14.5 ], [ 25.5, -15.0 ], [ 25.0, -15.0 ], [ 25.0, -14.5 ], [ 25.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -14.5 ], [ 26.0, -15.0 ], [ 25.5, -15.0 ], [ 25.5, -14.5 ], [ 26.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -14.5 ], [ 26.5, -15.0 ], [ 26.0, -15.0 ], [ 26.0, -14.5 ], [ 26.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -14.5 ], [ 27.0, -15.0 ], [ 26.5, -15.0 ], [ 26.5, -14.5 ], [ 27.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -14.5 ], [ 27.5, -15.0 ], [ 27.0, -15.0 ], [ 27.0, -14.5 ], [ 27.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -14.5 ], [ 28.0, -15.0 ], [ 27.5, -15.0 ], [ 27.5, -14.5 ], [ 28.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -14.5 ], [ 28.5, -15.0 ], [ 28.0, -15.0 ], [ 28.0, -14.5 ], [ 28.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -14.5 ], [ 29.0, -15.0 ], [ 28.5, -15.0 ], [ 28.5, -14.5 ], [ 29.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -14.5 ], [ 29.5, -15.0 ], [ 29.0, -15.0 ], [ 29.0, -14.5 ], [ 29.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -14.5 ], [ 30.0, -15.0 ], [ 29.5, -15.0 ], [ 29.5, -14.5 ], [ 30.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -14.5 ], [ 30.5, -15.0 ], [ 30.0, -15.0 ], [ 30.0, -14.5 ], [ 30.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -14.5 ], [ 31.0, -15.0 ], [ 30.5, -15.0 ], [ 30.5, -14.5 ], [ 31.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -14.5 ], [ 31.5, -15.0 ], [ 31.0, -15.0 ], [ 31.0, -14.5 ], [ 31.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -14.5 ], [ 32.0, -15.0 ], [ 31.5, -15.0 ], [ 31.5, -14.5 ], [ 32.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -14.5 ], [ 32.5, -15.0 ], [ 32.0, -15.0 ], [ 32.0, -14.5 ], [ 32.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -14.5 ], [ 33.0, -15.0 ], [ 32.5, -15.0 ], [ 32.5, -14.5 ], [ 33.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -14.5 ], [ 33.5, -15.0 ], [ 33.0, -15.0 ], [ 33.0, -14.5 ], [ 33.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -14.5 ], [ 34.0, -15.0 ], [ 33.5, -15.0 ], [ 33.5, -14.5 ], [ 34.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -14.5 ], [ 34.5, -15.0 ], [ 34.0, -15.0 ], [ 34.0, -14.5 ], [ 34.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -14.5 ], [ 35.0, -15.0 ], [ 34.5, -15.0 ], [ 34.5, -14.5 ], [ 35.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -14.5 ], [ 35.5, -15.0 ], [ 35.0, -15.0 ], [ 35.0, -14.5 ], [ 35.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -14.5 ], [ 36.0, -15.0 ], [ 35.5, -15.0 ], [ 35.5, -14.5 ], [ 36.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -14.5 ], [ 36.5, -15.0 ], [ 36.0, -15.0 ], [ 36.0, -14.5 ], [ 36.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -14.5 ], [ 37.0, -15.0 ], [ 36.5, -15.0 ], [ 36.5, -14.5 ], [ 37.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -14.5 ], [ 37.5, -15.0 ], [ 37.0, -15.0 ], [ 37.0, -14.5 ], [ 37.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -14.5 ], [ 38.0, -15.0 ], [ 37.5, -15.0 ], [ 37.5, -14.5 ], [ 38.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -14.5 ], [ 38.5, -15.0 ], [ 38.0, -15.0 ], [ 38.0, -14.5 ], [ 38.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -14.5 ], [ 39.0, -15.0 ], [ 38.5, -15.0 ], [ 38.5, -14.5 ], [ 39.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -14.5 ], [ 39.5, -15.0 ], [ 39.0, -15.0 ], [ 39.0, -14.5 ], [ 39.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -14.5 ], [ 40.0, -15.0 ], [ 39.5, -15.0 ], [ 39.5, -14.5 ], [ 40.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, -14.5 ], [ 40.5, -15.0 ], [ 40.0, -15.0 ], [ 40.0, -14.5 ], [ 40.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, -14.5 ], [ 41.0, -15.0 ], [ 40.5, -15.0 ], [ 40.5, -14.5 ], [ 41.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, -14.5 ], [ 48.0, -15.0 ], [ 47.5, -15.0 ], [ 47.5, -14.5 ], [ 48.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, -14.5 ], [ 48.5, -15.0 ], [ 48.0, -15.0 ], [ 48.0, -14.5 ], [ 48.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, -14.5 ], [ 49.0, -15.0 ], [ 48.5, -15.0 ], [ 48.5, -14.5 ], [ 49.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, -14.5 ], [ 49.5, -15.0 ], [ 49.0, -15.0 ], [ 49.0, -14.5 ], [ 49.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.0, -14.5 ], [ 50.0, -15.0 ], [ 49.5, -15.0 ], [ 49.5, -14.5 ], [ 50.0, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.5, -14.5 ], [ 50.5, -15.0 ], [ 50.0, -15.0 ], [ 50.0, -14.5 ], [ 50.5, -14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -14.0 ], [ 13.0, -14.5 ], [ 12.5, -14.5 ], [ 12.5, -14.0 ], [ 13.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -14.0 ], [ 13.5, -14.5 ], [ 13.0, -14.5 ], [ 13.0, -14.0 ], [ 13.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -14.0 ], [ 14.0, -14.5 ], [ 13.5, -14.5 ], [ 13.5, -14.0 ], [ 14.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -14.0 ], [ 14.5, -14.5 ], [ 14.0, -14.5 ], [ 14.0, -14.0 ], [ 14.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -14.0 ], [ 15.0, -14.5 ], [ 14.5, -14.5 ], [ 14.5, -14.0 ], [ 15.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -14.0 ], [ 15.5, -14.5 ], [ 15.0, -14.5 ], [ 15.0, -14.0 ], [ 15.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -14.0 ], [ 16.0, -14.5 ], [ 15.5, -14.5 ], [ 15.5, -14.0 ], [ 16.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -14.0 ], [ 16.5, -14.5 ], [ 16.0, -14.5 ], [ 16.0, -14.0 ], [ 16.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -14.0 ], [ 17.0, -14.5 ], [ 16.5, -14.5 ], [ 16.5, -14.0 ], [ 17.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -14.0 ], [ 17.5, -14.5 ], [ 17.0, -14.5 ], [ 17.0, -14.0 ], [ 17.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -14.0 ], [ 18.0, -14.5 ], [ 17.5, -14.5 ], [ 17.5, -14.0 ], [ 18.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -14.0 ], [ 18.5, -14.5 ], [ 18.0, -14.5 ], [ 18.0, -14.0 ], [ 18.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -14.0 ], [ 19.0, -14.5 ], [ 18.5, -14.5 ], [ 18.5, -14.0 ], [ 19.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -14.0 ], [ 19.5, -14.5 ], [ 19.0, -14.5 ], [ 19.0, -14.0 ], [ 19.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -14.0 ], [ 20.0, -14.5 ], [ 19.5, -14.5 ], [ 19.5, -14.0 ], [ 20.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -14.0 ], [ 20.5, -14.5 ], [ 20.0, -14.5 ], [ 20.0, -14.0 ], [ 20.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -14.0 ], [ 21.0, -14.5 ], [ 20.5, -14.5 ], [ 20.5, -14.0 ], [ 21.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -14.0 ], [ 21.5, -14.5 ], [ 21.0, -14.5 ], [ 21.0, -14.0 ], [ 21.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -14.0 ], [ 22.0, -14.5 ], [ 21.5, -14.5 ], [ 21.5, -14.0 ], [ 22.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -14.0 ], [ 22.5, -14.5 ], [ 22.0, -14.5 ], [ 22.0, -14.0 ], [ 22.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -14.0 ], [ 23.0, -14.5 ], [ 22.5, -14.5 ], [ 22.5, -14.0 ], [ 23.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -14.0 ], [ 23.5, -14.5 ], [ 23.0, -14.5 ], [ 23.0, -14.0 ], [ 23.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -14.0 ], [ 24.0, -14.5 ], [ 23.5, -14.5 ], [ 23.5, -14.0 ], [ 24.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -14.0 ], [ 24.5, -14.5 ], [ 24.0, -14.5 ], [ 24.0, -14.0 ], [ 24.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -14.0 ], [ 25.0, -14.5 ], [ 24.5, -14.5 ], [ 24.5, -14.0 ], [ 25.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -14.0 ], [ 25.5, -14.5 ], [ 25.0, -14.5 ], [ 25.0, -14.0 ], [ 25.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -14.0 ], [ 26.0, -14.5 ], [ 25.5, -14.5 ], [ 25.5, -14.0 ], [ 26.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -14.0 ], [ 26.5, -14.5 ], [ 26.0, -14.5 ], [ 26.0, -14.0 ], [ 26.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -14.0 ], [ 27.0, -14.5 ], [ 26.5, -14.5 ], [ 26.5, -14.0 ], [ 27.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -14.0 ], [ 27.5, -14.5 ], [ 27.0, -14.5 ], [ 27.0, -14.0 ], [ 27.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -14.0 ], [ 28.0, -14.5 ], [ 27.5, -14.5 ], [ 27.5, -14.0 ], [ 28.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -14.0 ], [ 28.5, -14.5 ], [ 28.0, -14.5 ], [ 28.0, -14.0 ], [ 28.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -14.0 ], [ 29.0, -14.5 ], [ 28.5, -14.5 ], [ 28.5, -14.0 ], [ 29.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -14.0 ], [ 29.5, -14.5 ], [ 29.0, -14.5 ], [ 29.0, -14.0 ], [ 29.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -14.0 ], [ 30.0, -14.5 ], [ 29.5, -14.5 ], [ 29.5, -14.0 ], [ 30.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -14.0 ], [ 30.5, -14.5 ], [ 30.0, -14.5 ], [ 30.0, -14.0 ], [ 30.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -14.0 ], [ 31.0, -14.5 ], [ 30.5, -14.5 ], [ 30.5, -14.0 ], [ 31.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -14.0 ], [ 31.5, -14.5 ], [ 31.0, -14.5 ], [ 31.0, -14.0 ], [ 31.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -14.0 ], [ 32.0, -14.5 ], [ 31.5, -14.5 ], [ 31.5, -14.0 ], [ 32.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -14.0 ], [ 32.5, -14.5 ], [ 32.0, -14.5 ], [ 32.0, -14.0 ], [ 32.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -14.0 ], [ 33.0, -14.5 ], [ 32.5, -14.5 ], [ 32.5, -14.0 ], [ 33.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -14.0 ], [ 33.5, -14.5 ], [ 33.0, -14.5 ], [ 33.0, -14.0 ], [ 33.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -14.0 ], [ 34.0, -14.5 ], [ 33.5, -14.5 ], [ 33.5, -14.0 ], [ 34.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -14.0 ], [ 34.5, -14.5 ], [ 34.0, -14.5 ], [ 34.0, -14.0 ], [ 34.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -14.0 ], [ 35.0, -14.5 ], [ 34.5, -14.5 ], [ 34.5, -14.0 ], [ 35.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -14.0 ], [ 35.5, -14.5 ], [ 35.0, -14.5 ], [ 35.0, -14.0 ], [ 35.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -14.0 ], [ 36.0, -14.5 ], [ 35.5, -14.5 ], [ 35.5, -14.0 ], [ 36.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -14.0 ], [ 36.5, -14.5 ], [ 36.0, -14.5 ], [ 36.0, -14.0 ], [ 36.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -14.0 ], [ 37.0, -14.5 ], [ 36.5, -14.5 ], [ 36.5, -14.0 ], [ 37.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -14.0 ], [ 37.5, -14.5 ], [ 37.0, -14.5 ], [ 37.0, -14.0 ], [ 37.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -14.0 ], [ 38.0, -14.5 ], [ 37.5, -14.5 ], [ 37.5, -14.0 ], [ 38.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -14.0 ], [ 38.5, -14.5 ], [ 38.0, -14.5 ], [ 38.0, -14.0 ], [ 38.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -14.0 ], [ 39.0, -14.5 ], [ 38.5, -14.5 ], [ 38.5, -14.0 ], [ 39.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -14.0 ], [ 39.5, -14.5 ], [ 39.0, -14.5 ], [ 39.0, -14.0 ], [ 39.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -14.0 ], [ 40.0, -14.5 ], [ 39.5, -14.5 ], [ 39.5, -14.0 ], [ 40.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, -14.0 ], [ 40.5, -14.5 ], [ 40.0, -14.5 ], [ 40.0, -14.0 ], [ 40.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, -14.0 ], [ 48.5, -14.5 ], [ 48.0, -14.5 ], [ 48.0, -14.0 ], [ 48.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, -14.0 ], [ 49.0, -14.5 ], [ 48.5, -14.5 ], [ 48.5, -14.0 ], [ 49.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, -14.0 ], [ 49.5, -14.5 ], [ 49.0, -14.5 ], [ 49.0, -14.0 ], [ 49.5, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.0, -14.0 ], [ 50.0, -14.5 ], [ 49.5, -14.5 ], [ 49.5, -14.0 ], [ 50.0, -14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -13.5 ], [ 13.0, -14.0 ], [ 12.5, -14.0 ], [ 12.5, -13.5 ], [ 13.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -13.5 ], [ 13.5, -14.0 ], [ 13.0, -14.0 ], [ 13.0, -13.5 ], [ 13.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -13.5 ], [ 14.0, -14.0 ], [ 13.5, -14.0 ], [ 13.5, -13.5 ], [ 14.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -13.5 ], [ 14.5, -14.0 ], [ 14.0, -14.0 ], [ 14.0, -13.5 ], [ 14.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -13.5 ], [ 15.0, -14.0 ], [ 14.5, -14.0 ], [ 14.5, -13.5 ], [ 15.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -13.5 ], [ 15.5, -14.0 ], [ 15.0, -14.0 ], [ 15.0, -13.5 ], [ 15.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -13.5 ], [ 16.0, -14.0 ], [ 15.5, -14.0 ], [ 15.5, -13.5 ], [ 16.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -13.5 ], [ 16.5, -14.0 ], [ 16.0, -14.0 ], [ 16.0, -13.5 ], [ 16.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -13.5 ], [ 17.0, -14.0 ], [ 16.5, -14.0 ], [ 16.5, -13.5 ], [ 17.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -13.5 ], [ 17.5, -14.0 ], [ 17.0, -14.0 ], [ 17.0, -13.5 ], [ 17.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -13.5 ], [ 18.0, -14.0 ], [ 17.5, -14.0 ], [ 17.5, -13.5 ], [ 18.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -13.5 ], [ 18.5, -14.0 ], [ 18.0, -14.0 ], [ 18.0, -13.5 ], [ 18.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -13.5 ], [ 19.0, -14.0 ], [ 18.5, -14.0 ], [ 18.5, -13.5 ], [ 19.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -13.5 ], [ 19.5, -14.0 ], [ 19.0, -14.0 ], [ 19.0, -13.5 ], [ 19.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -13.5 ], [ 20.0, -14.0 ], [ 19.5, -14.0 ], [ 19.5, -13.5 ], [ 20.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -13.5 ], [ 20.5, -14.0 ], [ 20.0, -14.0 ], [ 20.0, -13.5 ], [ 20.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -13.5 ], [ 21.0, -14.0 ], [ 20.5, -14.0 ], [ 20.5, -13.5 ], [ 21.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -13.5 ], [ 21.5, -14.0 ], [ 21.0, -14.0 ], [ 21.0, -13.5 ], [ 21.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -13.5 ], [ 22.0, -14.0 ], [ 21.5, -14.0 ], [ 21.5, -13.5 ], [ 22.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -13.5 ], [ 22.5, -14.0 ], [ 22.0, -14.0 ], [ 22.0, -13.5 ], [ 22.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -13.5 ], [ 23.0, -14.0 ], [ 22.5, -14.0 ], [ 22.5, -13.5 ], [ 23.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -13.5 ], [ 23.5, -14.0 ], [ 23.0, -14.0 ], [ 23.0, -13.5 ], [ 23.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -13.5 ], [ 24.0, -14.0 ], [ 23.5, -14.0 ], [ 23.5, -13.5 ], [ 24.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -13.5 ], [ 24.5, -14.0 ], [ 24.0, -14.0 ], [ 24.0, -13.5 ], [ 24.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -13.5 ], [ 25.0, -14.0 ], [ 24.5, -14.0 ], [ 24.5, -13.5 ], [ 25.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -13.5 ], [ 25.5, -14.0 ], [ 25.0, -14.0 ], [ 25.0, -13.5 ], [ 25.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -13.5 ], [ 26.0, -14.0 ], [ 25.5, -14.0 ], [ 25.5, -13.5 ], [ 26.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -13.5 ], [ 26.5, -14.0 ], [ 26.0, -14.0 ], [ 26.0, -13.5 ], [ 26.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -13.5 ], [ 27.0, -14.0 ], [ 26.5, -14.0 ], [ 26.5, -13.5 ], [ 27.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -13.5 ], [ 27.5, -14.0 ], [ 27.0, -14.0 ], [ 27.0, -13.5 ], [ 27.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -13.5 ], [ 28.0, -14.0 ], [ 27.5, -14.0 ], [ 27.5, -13.5 ], [ 28.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -13.5 ], [ 28.5, -14.0 ], [ 28.0, -14.0 ], [ 28.0, -13.5 ], [ 28.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -13.5 ], [ 29.0, -14.0 ], [ 28.5, -14.0 ], [ 28.5, -13.5 ], [ 29.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -13.5 ], [ 29.5, -14.0 ], [ 29.0, -14.0 ], [ 29.0, -13.5 ], [ 29.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -13.5 ], [ 30.0, -14.0 ], [ 29.5, -14.0 ], [ 29.5, -13.5 ], [ 30.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -13.5 ], [ 30.5, -14.0 ], [ 30.0, -14.0 ], [ 30.0, -13.5 ], [ 30.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -13.5 ], [ 31.0, -14.0 ], [ 30.5, -14.0 ], [ 30.5, -13.5 ], [ 31.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -13.5 ], [ 31.5, -14.0 ], [ 31.0, -14.0 ], [ 31.0, -13.5 ], [ 31.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -13.5 ], [ 32.0, -14.0 ], [ 31.5, -14.0 ], [ 31.5, -13.5 ], [ 32.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -13.5 ], [ 32.5, -14.0 ], [ 32.0, -14.0 ], [ 32.0, -13.5 ], [ 32.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -13.5 ], [ 33.0, -14.0 ], [ 32.5, -14.0 ], [ 32.5, -13.5 ], [ 33.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -13.5 ], [ 33.5, -14.0 ], [ 33.0, -14.0 ], [ 33.0, -13.5 ], [ 33.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -13.5 ], [ 34.0, -14.0 ], [ 33.5, -14.0 ], [ 33.5, -13.5 ], [ 34.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -13.5 ], [ 34.5, -14.0 ], [ 34.0, -14.0 ], [ 34.0, -13.5 ], [ 34.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -13.5 ], [ 35.0, -14.0 ], [ 34.5, -14.0 ], [ 34.5, -13.5 ], [ 35.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -13.5 ], [ 35.5, -14.0 ], [ 35.0, -14.0 ], [ 35.0, -13.5 ], [ 35.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -13.5 ], [ 36.0, -14.0 ], [ 35.5, -14.0 ], [ 35.5, -13.5 ], [ 36.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -13.5 ], [ 36.5, -14.0 ], [ 36.0, -14.0 ], [ 36.0, -13.5 ], [ 36.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -13.5 ], [ 37.0, -14.0 ], [ 36.5, -14.0 ], [ 36.5, -13.5 ], [ 37.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -13.5 ], [ 37.5, -14.0 ], [ 37.0, -14.0 ], [ 37.0, -13.5 ], [ 37.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -13.5 ], [ 38.0, -14.0 ], [ 37.5, -14.0 ], [ 37.5, -13.5 ], [ 38.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -13.5 ], [ 38.5, -14.0 ], [ 38.0, -14.0 ], [ 38.0, -13.5 ], [ 38.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -13.5 ], [ 39.0, -14.0 ], [ 38.5, -14.0 ], [ 38.5, -13.5 ], [ 39.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -13.5 ], [ 39.5, -14.0 ], [ 39.0, -14.0 ], [ 39.0, -13.5 ], [ 39.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -13.5 ], [ 40.0, -14.0 ], [ 39.5, -14.0 ], [ 39.5, -13.5 ], [ 40.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, -13.5 ], [ 40.5, -14.0 ], [ 40.0, -14.0 ], [ 40.0, -13.5 ], [ 40.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, -13.5 ], [ 49.0, -14.0 ], [ 48.5, -14.0 ], [ 48.5, -13.5 ], [ 49.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, -13.5 ], [ 49.5, -14.0 ], [ 49.0, -14.0 ], [ 49.0, -13.5 ], [ 49.5, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.0, -13.5 ], [ 50.0, -14.0 ], [ 49.5, -14.0 ], [ 49.5, -13.5 ], [ 50.0, -13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -13.0 ], [ 13.0, -13.5 ], [ 12.5, -13.5 ], [ 12.5, -13.0 ], [ 13.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -13.0 ], [ 13.5, -13.5 ], [ 13.0, -13.5 ], [ 13.0, -13.0 ], [ 13.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -13.0 ], [ 14.0, -13.5 ], [ 13.5, -13.5 ], [ 13.5, -13.0 ], [ 14.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -13.0 ], [ 14.5, -13.5 ], [ 14.0, -13.5 ], [ 14.0, -13.0 ], [ 14.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -13.0 ], [ 15.0, -13.5 ], [ 14.5, -13.5 ], [ 14.5, -13.0 ], [ 15.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -13.0 ], [ 15.5, -13.5 ], [ 15.0, -13.5 ], [ 15.0, -13.0 ], [ 15.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -13.0 ], [ 16.0, -13.5 ], [ 15.5, -13.5 ], [ 15.5, -13.0 ], [ 16.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -13.0 ], [ 16.5, -13.5 ], [ 16.0, -13.5 ], [ 16.0, -13.0 ], [ 16.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -13.0 ], [ 17.0, -13.5 ], [ 16.5, -13.5 ], [ 16.5, -13.0 ], [ 17.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -13.0 ], [ 17.5, -13.5 ], [ 17.0, -13.5 ], [ 17.0, -13.0 ], [ 17.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -13.0 ], [ 18.0, -13.5 ], [ 17.5, -13.5 ], [ 17.5, -13.0 ], [ 18.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -13.0 ], [ 18.5, -13.5 ], [ 18.0, -13.5 ], [ 18.0, -13.0 ], [ 18.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -13.0 ], [ 19.0, -13.5 ], [ 18.5, -13.5 ], [ 18.5, -13.0 ], [ 19.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -13.0 ], [ 19.5, -13.5 ], [ 19.0, -13.5 ], [ 19.0, -13.0 ], [ 19.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -13.0 ], [ 20.0, -13.5 ], [ 19.5, -13.5 ], [ 19.5, -13.0 ], [ 20.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -13.0 ], [ 20.5, -13.5 ], [ 20.0, -13.5 ], [ 20.0, -13.0 ], [ 20.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -13.0 ], [ 21.0, -13.5 ], [ 20.5, -13.5 ], [ 20.5, -13.0 ], [ 21.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -13.0 ], [ 21.5, -13.5 ], [ 21.0, -13.5 ], [ 21.0, -13.0 ], [ 21.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -13.0 ], [ 22.0, -13.5 ], [ 21.5, -13.5 ], [ 21.5, -13.0 ], [ 22.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -13.0 ], [ 22.5, -13.5 ], [ 22.0, -13.5 ], [ 22.0, -13.0 ], [ 22.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -13.0 ], [ 23.0, -13.5 ], [ 22.5, -13.5 ], [ 22.5, -13.0 ], [ 23.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -13.0 ], [ 23.5, -13.5 ], [ 23.0, -13.5 ], [ 23.0, -13.0 ], [ 23.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -13.0 ], [ 24.0, -13.5 ], [ 23.5, -13.5 ], [ 23.5, -13.0 ], [ 24.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -13.0 ], [ 24.5, -13.5 ], [ 24.0, -13.5 ], [ 24.0, -13.0 ], [ 24.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -13.0 ], [ 25.0, -13.5 ], [ 24.5, -13.5 ], [ 24.5, -13.0 ], [ 25.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -13.0 ], [ 25.5, -13.5 ], [ 25.0, -13.5 ], [ 25.0, -13.0 ], [ 25.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -13.0 ], [ 26.0, -13.5 ], [ 25.5, -13.5 ], [ 25.5, -13.0 ], [ 26.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -13.0 ], [ 26.5, -13.5 ], [ 26.0, -13.5 ], [ 26.0, -13.0 ], [ 26.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -13.0 ], [ 27.0, -13.5 ], [ 26.5, -13.5 ], [ 26.5, -13.0 ], [ 27.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -13.0 ], [ 27.5, -13.5 ], [ 27.0, -13.5 ], [ 27.0, -13.0 ], [ 27.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -13.0 ], [ 28.0, -13.5 ], [ 27.5, -13.5 ], [ 27.5, -13.0 ], [ 28.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -13.0 ], [ 28.5, -13.5 ], [ 28.0, -13.5 ], [ 28.0, -13.0 ], [ 28.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -13.0 ], [ 29.0, -13.5 ], [ 28.5, -13.5 ], [ 28.5, -13.0 ], [ 29.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -13.0 ], [ 29.5, -13.5 ], [ 29.0, -13.5 ], [ 29.0, -13.0 ], [ 29.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -13.0 ], [ 30.0, -13.5 ], [ 29.5, -13.5 ], [ 29.5, -13.0 ], [ 30.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -13.0 ], [ 30.5, -13.5 ], [ 30.0, -13.5 ], [ 30.0, -13.0 ], [ 30.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -13.0 ], [ 31.0, -13.5 ], [ 30.5, -13.5 ], [ 30.5, -13.0 ], [ 31.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -13.0 ], [ 31.5, -13.5 ], [ 31.0, -13.5 ], [ 31.0, -13.0 ], [ 31.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -13.0 ], [ 32.0, -13.5 ], [ 31.5, -13.5 ], [ 31.5, -13.0 ], [ 32.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -13.0 ], [ 32.5, -13.5 ], [ 32.0, -13.5 ], [ 32.0, -13.0 ], [ 32.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -13.0 ], [ 33.0, -13.5 ], [ 32.5, -13.5 ], [ 32.5, -13.0 ], [ 33.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -13.0 ], [ 33.5, -13.5 ], [ 33.0, -13.5 ], [ 33.0, -13.0 ], [ 33.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -13.0 ], [ 34.0, -13.5 ], [ 33.5, -13.5 ], [ 33.5, -13.0 ], [ 34.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -13.0 ], [ 34.5, -13.5 ], [ 34.0, -13.5 ], [ 34.0, -13.0 ], [ 34.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -13.0 ], [ 35.0, -13.5 ], [ 34.5, -13.5 ], [ 34.5, -13.0 ], [ 35.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -13.0 ], [ 35.5, -13.5 ], [ 35.0, -13.5 ], [ 35.0, -13.0 ], [ 35.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -13.0 ], [ 36.0, -13.5 ], [ 35.5, -13.5 ], [ 35.5, -13.0 ], [ 36.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -13.0 ], [ 36.5, -13.5 ], [ 36.0, -13.5 ], [ 36.0, -13.0 ], [ 36.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -13.0 ], [ 37.0, -13.5 ], [ 36.5, -13.5 ], [ 36.5, -13.0 ], [ 37.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -13.0 ], [ 37.5, -13.5 ], [ 37.0, -13.5 ], [ 37.0, -13.0 ], [ 37.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -13.0 ], [ 38.0, -13.5 ], [ 37.5, -13.5 ], [ 37.5, -13.0 ], [ 38.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -13.0 ], [ 38.5, -13.5 ], [ 38.0, -13.5 ], [ 38.0, -13.0 ], [ 38.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -13.0 ], [ 39.0, -13.5 ], [ 38.5, -13.5 ], [ 38.5, -13.0 ], [ 39.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -13.0 ], [ 39.5, -13.5 ], [ 39.0, -13.5 ], [ 39.0, -13.0 ], [ 39.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -13.0 ], [ 40.0, -13.5 ], [ 39.5, -13.5 ], [ 39.5, -13.0 ], [ 40.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, -13.0 ], [ 40.5, -13.5 ], [ 40.0, -13.5 ], [ 40.0, -13.0 ], [ 40.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, -13.0 ], [ 48.5, -13.5 ], [ 48.0, -13.5 ], [ 48.0, -13.0 ], [ 48.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, -13.0 ], [ 49.5, -13.5 ], [ 49.0, -13.5 ], [ 49.0, -13.0 ], [ 49.5, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.0, -13.0 ], [ 50.0, -13.5 ], [ 49.5, -13.5 ], [ 49.5, -13.0 ], [ 50.0, -13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -12.5 ], [ 13.5, -13.0 ], [ 13.0, -13.0 ], [ 13.0, -12.5 ], [ 13.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -12.5 ], [ 14.0, -13.0 ], [ 13.5, -13.0 ], [ 13.5, -12.5 ], [ 14.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -12.5 ], [ 14.5, -13.0 ], [ 14.0, -13.0 ], [ 14.0, -12.5 ], [ 14.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -12.5 ], [ 15.0, -13.0 ], [ 14.5, -13.0 ], [ 14.5, -12.5 ], [ 15.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -12.5 ], [ 15.5, -13.0 ], [ 15.0, -13.0 ], [ 15.0, -12.5 ], [ 15.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -12.5 ], [ 16.0, -13.0 ], [ 15.5, -13.0 ], [ 15.5, -12.5 ], [ 16.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -12.5 ], [ 16.5, -13.0 ], [ 16.0, -13.0 ], [ 16.0, -12.5 ], [ 16.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -12.5 ], [ 17.0, -13.0 ], [ 16.5, -13.0 ], [ 16.5, -12.5 ], [ 17.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -12.5 ], [ 17.5, -13.0 ], [ 17.0, -13.0 ], [ 17.0, -12.5 ], [ 17.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -12.5 ], [ 18.0, -13.0 ], [ 17.5, -13.0 ], [ 17.5, -12.5 ], [ 18.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -12.5 ], [ 18.5, -13.0 ], [ 18.0, -13.0 ], [ 18.0, -12.5 ], [ 18.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -12.5 ], [ 19.0, -13.0 ], [ 18.5, -13.0 ], [ 18.5, -12.5 ], [ 19.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -12.5 ], [ 19.5, -13.0 ], [ 19.0, -13.0 ], [ 19.0, -12.5 ], [ 19.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -12.5 ], [ 20.0, -13.0 ], [ 19.5, -13.0 ], [ 19.5, -12.5 ], [ 20.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -12.5 ], [ 20.5, -13.0 ], [ 20.0, -13.0 ], [ 20.0, -12.5 ], [ 20.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -12.5 ], [ 21.0, -13.0 ], [ 20.5, -13.0 ], [ 20.5, -12.5 ], [ 21.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -12.5 ], [ 21.5, -13.0 ], [ 21.0, -13.0 ], [ 21.0, -12.5 ], [ 21.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -12.5 ], [ 22.0, -13.0 ], [ 21.5, -13.0 ], [ 21.5, -12.5 ], [ 22.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -12.5 ], [ 22.5, -13.0 ], [ 22.0, -13.0 ], [ 22.0, -12.5 ], [ 22.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -12.5 ], [ 23.0, -13.0 ], [ 22.5, -13.0 ], [ 22.5, -12.5 ], [ 23.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -12.5 ], [ 23.5, -13.0 ], [ 23.0, -13.0 ], [ 23.0, -12.5 ], [ 23.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -12.5 ], [ 24.0, -13.0 ], [ 23.5, -13.0 ], [ 23.5, -12.5 ], [ 24.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -12.5 ], [ 24.5, -13.0 ], [ 24.0, -13.0 ], [ 24.0, -12.5 ], [ 24.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -12.5 ], [ 25.0, -13.0 ], [ 24.5, -13.0 ], [ 24.5, -12.5 ], [ 25.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -12.5 ], [ 25.5, -13.0 ], [ 25.0, -13.0 ], [ 25.0, -12.5 ], [ 25.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -12.5 ], [ 26.0, -13.0 ], [ 25.5, -13.0 ], [ 25.5, -12.5 ], [ 26.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -12.5 ], [ 26.5, -13.0 ], [ 26.0, -13.0 ], [ 26.0, -12.5 ], [ 26.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -12.5 ], [ 27.0, -13.0 ], [ 26.5, -13.0 ], [ 26.5, -12.5 ], [ 27.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -12.5 ], [ 27.5, -13.0 ], [ 27.0, -13.0 ], [ 27.0, -12.5 ], [ 27.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -12.5 ], [ 28.0, -13.0 ], [ 27.5, -13.0 ], [ 27.5, -12.5 ], [ 28.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -12.5 ], [ 28.5, -13.0 ], [ 28.0, -13.0 ], [ 28.0, -12.5 ], [ 28.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -12.5 ], [ 29.0, -13.0 ], [ 28.5, -13.0 ], [ 28.5, -12.5 ], [ 29.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -12.5 ], [ 29.5, -13.0 ], [ 29.0, -13.0 ], [ 29.0, -12.5 ], [ 29.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -12.5 ], [ 30.0, -13.0 ], [ 29.5, -13.0 ], [ 29.5, -12.5 ], [ 30.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -12.5 ], [ 30.5, -13.0 ], [ 30.0, -13.0 ], [ 30.0, -12.5 ], [ 30.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -12.5 ], [ 31.0, -13.0 ], [ 30.5, -13.0 ], [ 30.5, -12.5 ], [ 31.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -12.5 ], [ 31.5, -13.0 ], [ 31.0, -13.0 ], [ 31.0, -12.5 ], [ 31.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -12.5 ], [ 32.0, -13.0 ], [ 31.5, -13.0 ], [ 31.5, -12.5 ], [ 32.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -12.5 ], [ 32.5, -13.0 ], [ 32.0, -13.0 ], [ 32.0, -12.5 ], [ 32.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -12.5 ], [ 33.0, -13.0 ], [ 32.5, -13.0 ], [ 32.5, -12.5 ], [ 33.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -12.5 ], [ 33.5, -13.0 ], [ 33.0, -13.0 ], [ 33.0, -12.5 ], [ 33.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -12.5 ], [ 34.0, -13.0 ], [ 33.5, -13.0 ], [ 33.5, -12.5 ], [ 34.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -12.5 ], [ 34.5, -13.0 ], [ 34.0, -13.0 ], [ 34.0, -12.5 ], [ 34.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -12.5 ], [ 35.0, -13.0 ], [ 34.5, -13.0 ], [ 34.5, -12.5 ], [ 35.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -12.5 ], [ 35.5, -13.0 ], [ 35.0, -13.0 ], [ 35.0, -12.5 ], [ 35.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -12.5 ], [ 36.0, -13.0 ], [ 35.5, -13.0 ], [ 35.5, -12.5 ], [ 36.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -12.5 ], [ 36.5, -13.0 ], [ 36.0, -13.0 ], [ 36.0, -12.5 ], [ 36.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -12.5 ], [ 37.0, -13.0 ], [ 36.5, -13.0 ], [ 36.5, -12.5 ], [ 37.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -12.5 ], [ 37.5, -13.0 ], [ 37.0, -13.0 ], [ 37.0, -12.5 ], [ 37.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -12.5 ], [ 38.0, -13.0 ], [ 37.5, -13.0 ], [ 37.5, -12.5 ], [ 38.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -12.5 ], [ 38.5, -13.0 ], [ 38.0, -13.0 ], [ 38.0, -12.5 ], [ 38.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -12.5 ], [ 39.0, -13.0 ], [ 38.5, -13.0 ], [ 38.5, -12.5 ], [ 39.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -12.5 ], [ 39.5, -13.0 ], [ 39.0, -13.0 ], [ 39.0, -12.5 ], [ 39.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -12.5 ], [ 40.0, -13.0 ], [ 39.5, -13.0 ], [ 39.5, -12.5 ], [ 40.0, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, -12.5 ], [ 40.5, -13.0 ], [ 40.0, -13.0 ], [ 40.0, -12.5 ], [ 40.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, -12.5 ], [ 49.5, -13.0 ], [ 49.0, -13.0 ], [ 49.0, -12.5 ], [ 49.5, -12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -12.0 ], [ 14.0, -12.5 ], [ 13.5, -12.5 ], [ 13.5, -12.0 ], [ 14.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -12.0 ], [ 14.5, -12.5 ], [ 14.0, -12.5 ], [ 14.0, -12.0 ], [ 14.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -12.0 ], [ 15.0, -12.5 ], [ 14.5, -12.5 ], [ 14.5, -12.0 ], [ 15.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -12.0 ], [ 15.5, -12.5 ], [ 15.0, -12.5 ], [ 15.0, -12.0 ], [ 15.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -12.0 ], [ 16.0, -12.5 ], [ 15.5, -12.5 ], [ 15.5, -12.0 ], [ 16.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -12.0 ], [ 16.5, -12.5 ], [ 16.0, -12.5 ], [ 16.0, -12.0 ], [ 16.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -12.0 ], [ 17.0, -12.5 ], [ 16.5, -12.5 ], [ 16.5, -12.0 ], [ 17.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -12.0 ], [ 17.5, -12.5 ], [ 17.0, -12.5 ], [ 17.0, -12.0 ], [ 17.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -12.0 ], [ 18.0, -12.5 ], [ 17.5, -12.5 ], [ 17.5, -12.0 ], [ 18.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -12.0 ], [ 18.5, -12.5 ], [ 18.0, -12.5 ], [ 18.0, -12.0 ], [ 18.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -12.0 ], [ 19.0, -12.5 ], [ 18.5, -12.5 ], [ 18.5, -12.0 ], [ 19.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -12.0 ], [ 19.5, -12.5 ], [ 19.0, -12.5 ], [ 19.0, -12.0 ], [ 19.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -12.0 ], [ 20.0, -12.5 ], [ 19.5, -12.5 ], [ 19.5, -12.0 ], [ 20.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -12.0 ], [ 20.5, -12.5 ], [ 20.0, -12.5 ], [ 20.0, -12.0 ], [ 20.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -12.0 ], [ 21.0, -12.5 ], [ 20.5, -12.5 ], [ 20.5, -12.0 ], [ 21.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -12.0 ], [ 21.5, -12.5 ], [ 21.0, -12.5 ], [ 21.0, -12.0 ], [ 21.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -12.0 ], [ 22.0, -12.5 ], [ 21.5, -12.5 ], [ 21.5, -12.0 ], [ 22.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -12.0 ], [ 22.5, -12.5 ], [ 22.0, -12.5 ], [ 22.0, -12.0 ], [ 22.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -12.0 ], [ 23.0, -12.5 ], [ 22.5, -12.5 ], [ 22.5, -12.0 ], [ 23.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -12.0 ], [ 23.5, -12.5 ], [ 23.0, -12.5 ], [ 23.0, -12.0 ], [ 23.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -12.0 ], [ 24.0, -12.5 ], [ 23.5, -12.5 ], [ 23.5, -12.0 ], [ 24.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -12.0 ], [ 24.5, -12.5 ], [ 24.0, -12.5 ], [ 24.0, -12.0 ], [ 24.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -12.0 ], [ 25.0, -12.5 ], [ 24.5, -12.5 ], [ 24.5, -12.0 ], [ 25.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -12.0 ], [ 25.5, -12.5 ], [ 25.0, -12.5 ], [ 25.0, -12.0 ], [ 25.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -12.0 ], [ 26.0, -12.5 ], [ 25.5, -12.5 ], [ 25.5, -12.0 ], [ 26.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -12.0 ], [ 26.5, -12.5 ], [ 26.0, -12.5 ], [ 26.0, -12.0 ], [ 26.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -12.0 ], [ 27.0, -12.5 ], [ 26.5, -12.5 ], [ 26.5, -12.0 ], [ 27.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -12.0 ], [ 27.5, -12.5 ], [ 27.0, -12.5 ], [ 27.0, -12.0 ], [ 27.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -12.0 ], [ 28.0, -12.5 ], [ 27.5, -12.5 ], [ 27.5, -12.0 ], [ 28.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -12.0 ], [ 28.5, -12.5 ], [ 28.0, -12.5 ], [ 28.0, -12.0 ], [ 28.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -12.0 ], [ 29.0, -12.5 ], [ 28.5, -12.5 ], [ 28.5, -12.0 ], [ 29.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -12.0 ], [ 29.5, -12.5 ], [ 29.0, -12.5 ], [ 29.0, -12.0 ], [ 29.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -12.0 ], [ 30.0, -12.5 ], [ 29.5, -12.5 ], [ 29.5, -12.0 ], [ 30.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -12.0 ], [ 30.5, -12.5 ], [ 30.0, -12.5 ], [ 30.0, -12.0 ], [ 30.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -12.0 ], [ 31.0, -12.5 ], [ 30.5, -12.5 ], [ 30.5, -12.0 ], [ 31.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -12.0 ], [ 31.5, -12.5 ], [ 31.0, -12.5 ], [ 31.0, -12.0 ], [ 31.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -12.0 ], [ 32.0, -12.5 ], [ 31.5, -12.5 ], [ 31.5, -12.0 ], [ 32.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -12.0 ], [ 32.5, -12.5 ], [ 32.0, -12.5 ], [ 32.0, -12.0 ], [ 32.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -12.0 ], [ 33.0, -12.5 ], [ 32.5, -12.5 ], [ 32.5, -12.0 ], [ 33.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -12.0 ], [ 33.5, -12.5 ], [ 33.0, -12.5 ], [ 33.0, -12.0 ], [ 33.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -12.0 ], [ 34.0, -12.5 ], [ 33.5, -12.5 ], [ 33.5, -12.0 ], [ 34.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -12.0 ], [ 34.5, -12.5 ], [ 34.0, -12.5 ], [ 34.0, -12.0 ], [ 34.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -12.0 ], [ 35.0, -12.5 ], [ 34.5, -12.5 ], [ 34.5, -12.0 ], [ 35.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -12.0 ], [ 35.5, -12.5 ], [ 35.0, -12.5 ], [ 35.0, -12.0 ], [ 35.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -12.0 ], [ 36.0, -12.5 ], [ 35.5, -12.5 ], [ 35.5, -12.0 ], [ 36.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -12.0 ], [ 36.5, -12.5 ], [ 36.0, -12.5 ], [ 36.0, -12.0 ], [ 36.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -12.0 ], [ 37.0, -12.5 ], [ 36.5, -12.5 ], [ 36.5, -12.0 ], [ 37.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -12.0 ], [ 37.5, -12.5 ], [ 37.0, -12.5 ], [ 37.0, -12.0 ], [ 37.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -12.0 ], [ 38.0, -12.5 ], [ 37.5, -12.5 ], [ 37.5, -12.0 ], [ 38.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -12.0 ], [ 38.5, -12.5 ], [ 38.0, -12.5 ], [ 38.0, -12.0 ], [ 38.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -12.0 ], [ 39.0, -12.5 ], [ 38.5, -12.5 ], [ 38.5, -12.0 ], [ 39.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -12.0 ], [ 39.5, -12.5 ], [ 39.0, -12.5 ], [ 39.0, -12.0 ], [ 39.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -12.0 ], [ 40.0, -12.5 ], [ 39.5, -12.5 ], [ 39.5, -12.0 ], [ 40.0, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, -12.0 ], [ 40.5, -12.5 ], [ 40.0, -12.5 ], [ 40.0, -12.0 ], [ 40.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, -12.0 ], [ 49.5, -12.5 ], [ 49.0, -12.5 ], [ 49.0, -12.0 ], [ 49.5, -12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -11.5 ], [ 14.5, -12.0 ], [ 14.0, -12.0 ], [ 14.0, -11.5 ], [ 14.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -11.5 ], [ 15.0, -12.0 ], [ 14.5, -12.0 ], [ 14.5, -11.5 ], [ 15.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -11.5 ], [ 15.5, -12.0 ], [ 15.0, -12.0 ], [ 15.0, -11.5 ], [ 15.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -11.5 ], [ 16.0, -12.0 ], [ 15.5, -12.0 ], [ 15.5, -11.5 ], [ 16.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -11.5 ], [ 16.5, -12.0 ], [ 16.0, -12.0 ], [ 16.0, -11.5 ], [ 16.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -11.5 ], [ 17.0, -12.0 ], [ 16.5, -12.0 ], [ 16.5, -11.5 ], [ 17.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -11.5 ], [ 17.5, -12.0 ], [ 17.0, -12.0 ], [ 17.0, -11.5 ], [ 17.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -11.5 ], [ 18.0, -12.0 ], [ 17.5, -12.0 ], [ 17.5, -11.5 ], [ 18.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -11.5 ], [ 18.5, -12.0 ], [ 18.0, -12.0 ], [ 18.0, -11.5 ], [ 18.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -11.5 ], [ 19.0, -12.0 ], [ 18.5, -12.0 ], [ 18.5, -11.5 ], [ 19.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -11.5 ], [ 19.5, -12.0 ], [ 19.0, -12.0 ], [ 19.0, -11.5 ], [ 19.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -11.5 ], [ 20.0, -12.0 ], [ 19.5, -12.0 ], [ 19.5, -11.5 ], [ 20.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -11.5 ], [ 20.5, -12.0 ], [ 20.0, -12.0 ], [ 20.0, -11.5 ], [ 20.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -11.5 ], [ 21.0, -12.0 ], [ 20.5, -12.0 ], [ 20.5, -11.5 ], [ 21.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -11.5 ], [ 21.5, -12.0 ], [ 21.0, -12.0 ], [ 21.0, -11.5 ], [ 21.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -11.5 ], [ 22.0, -12.0 ], [ 21.5, -12.0 ], [ 21.5, -11.5 ], [ 22.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -11.5 ], [ 22.5, -12.0 ], [ 22.0, -12.0 ], [ 22.0, -11.5 ], [ 22.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -11.5 ], [ 23.0, -12.0 ], [ 22.5, -12.0 ], [ 22.5, -11.5 ], [ 23.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -11.5 ], [ 23.5, -12.0 ], [ 23.0, -12.0 ], [ 23.0, -11.5 ], [ 23.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -11.5 ], [ 24.0, -12.0 ], [ 23.5, -12.0 ], [ 23.5, -11.5 ], [ 24.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -11.5 ], [ 24.5, -12.0 ], [ 24.0, -12.0 ], [ 24.0, -11.5 ], [ 24.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -11.5 ], [ 25.0, -12.0 ], [ 24.5, -12.0 ], [ 24.5, -11.5 ], [ 25.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -11.5 ], [ 25.5, -12.0 ], [ 25.0, -12.0 ], [ 25.0, -11.5 ], [ 25.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -11.5 ], [ 26.0, -12.0 ], [ 25.5, -12.0 ], [ 25.5, -11.5 ], [ 26.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -11.5 ], [ 26.5, -12.0 ], [ 26.0, -12.0 ], [ 26.0, -11.5 ], [ 26.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -11.5 ], [ 27.0, -12.0 ], [ 26.5, -12.0 ], [ 26.5, -11.5 ], [ 27.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -11.5 ], [ 27.5, -12.0 ], [ 27.0, -12.0 ], [ 27.0, -11.5 ], [ 27.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -11.5 ], [ 28.0, -12.0 ], [ 27.5, -12.0 ], [ 27.5, -11.5 ], [ 28.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -11.5 ], [ 28.5, -12.0 ], [ 28.0, -12.0 ], [ 28.0, -11.5 ], [ 28.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -11.5 ], [ 29.0, -12.0 ], [ 28.5, -12.0 ], [ 28.5, -11.5 ], [ 29.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -11.5 ], [ 29.5, -12.0 ], [ 29.0, -12.0 ], [ 29.0, -11.5 ], [ 29.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -11.5 ], [ 30.0, -12.0 ], [ 29.5, -12.0 ], [ 29.5, -11.5 ], [ 30.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -11.5 ], [ 30.5, -12.0 ], [ 30.0, -12.0 ], [ 30.0, -11.5 ], [ 30.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -11.5 ], [ 31.0, -12.0 ], [ 30.5, -12.0 ], [ 30.5, -11.5 ], [ 31.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -11.5 ], [ 31.5, -12.0 ], [ 31.0, -12.0 ], [ 31.0, -11.5 ], [ 31.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -11.5 ], [ 32.0, -12.0 ], [ 31.5, -12.0 ], [ 31.5, -11.5 ], [ 32.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -11.5 ], [ 32.5, -12.0 ], [ 32.0, -12.0 ], [ 32.0, -11.5 ], [ 32.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -11.5 ], [ 33.0, -12.0 ], [ 32.5, -12.0 ], [ 32.5, -11.5 ], [ 33.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -11.5 ], [ 33.5, -12.0 ], [ 33.0, -12.0 ], [ 33.0, -11.5 ], [ 33.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -11.5 ], [ 34.0, -12.0 ], [ 33.5, -12.0 ], [ 33.5, -11.5 ], [ 34.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -11.5 ], [ 34.5, -12.0 ], [ 34.0, -12.0 ], [ 34.0, -11.5 ], [ 34.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -11.5 ], [ 35.0, -12.0 ], [ 34.5, -12.0 ], [ 34.5, -11.5 ], [ 35.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -11.5 ], [ 35.5, -12.0 ], [ 35.0, -12.0 ], [ 35.0, -11.5 ], [ 35.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -11.5 ], [ 36.0, -12.0 ], [ 35.5, -12.0 ], [ 35.5, -11.5 ], [ 36.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -11.5 ], [ 36.5, -12.0 ], [ 36.0, -12.0 ], [ 36.0, -11.5 ], [ 36.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -11.5 ], [ 37.0, -12.0 ], [ 36.5, -12.0 ], [ 36.5, -11.5 ], [ 37.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -11.5 ], [ 37.5, -12.0 ], [ 37.0, -12.0 ], [ 37.0, -11.5 ], [ 37.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -11.5 ], [ 38.0, -12.0 ], [ 37.5, -12.0 ], [ 37.5, -11.5 ], [ 38.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -11.5 ], [ 38.5, -12.0 ], [ 38.0, -12.0 ], [ 38.0, -11.5 ], [ 38.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -11.5 ], [ 39.0, -12.0 ], [ 38.5, -12.0 ], [ 38.5, -11.5 ], [ 39.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -11.5 ], [ 39.5, -12.0 ], [ 39.0, -12.0 ], [ 39.0, -11.5 ], [ 39.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -11.5 ], [ 40.0, -12.0 ], [ 39.5, -12.0 ], [ 39.5, -11.5 ], [ 40.0, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, -11.5 ], [ 40.5, -12.0 ], [ 40.0, -12.0 ], [ 40.0, -11.5 ], [ 40.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, -11.5 ], [ 43.5, -12.0 ], [ 43.0, -12.0 ], [ 43.0, -11.5 ], [ 43.5, -11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -11.0 ], [ 14.5, -11.5 ], [ 14.0, -11.5 ], [ 14.0, -11.0 ], [ 14.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -11.0 ], [ 15.0, -11.5 ], [ 14.5, -11.5 ], [ 14.5, -11.0 ], [ 15.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -11.0 ], [ 15.5, -11.5 ], [ 15.0, -11.5 ], [ 15.0, -11.0 ], [ 15.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -11.0 ], [ 16.0, -11.5 ], [ 15.5, -11.5 ], [ 15.5, -11.0 ], [ 16.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -11.0 ], [ 16.5, -11.5 ], [ 16.0, -11.5 ], [ 16.0, -11.0 ], [ 16.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -11.0 ], [ 17.0, -11.5 ], [ 16.5, -11.5 ], [ 16.5, -11.0 ], [ 17.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -11.0 ], [ 17.5, -11.5 ], [ 17.0, -11.5 ], [ 17.0, -11.0 ], [ 17.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -11.0 ], [ 18.0, -11.5 ], [ 17.5, -11.5 ], [ 17.5, -11.0 ], [ 18.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -11.0 ], [ 18.5, -11.5 ], [ 18.0, -11.5 ], [ 18.0, -11.0 ], [ 18.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -11.0 ], [ 19.0, -11.5 ], [ 18.5, -11.5 ], [ 18.5, -11.0 ], [ 19.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -11.0 ], [ 19.5, -11.5 ], [ 19.0, -11.5 ], [ 19.0, -11.0 ], [ 19.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -11.0 ], [ 20.0, -11.5 ], [ 19.5, -11.5 ], [ 19.5, -11.0 ], [ 20.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -11.0 ], [ 20.5, -11.5 ], [ 20.0, -11.5 ], [ 20.0, -11.0 ], [ 20.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -11.0 ], [ 21.0, -11.5 ], [ 20.5, -11.5 ], [ 20.5, -11.0 ], [ 21.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -11.0 ], [ 21.5, -11.5 ], [ 21.0, -11.5 ], [ 21.0, -11.0 ], [ 21.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -11.0 ], [ 22.0, -11.5 ], [ 21.5, -11.5 ], [ 21.5, -11.0 ], [ 22.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -11.0 ], [ 22.5, -11.5 ], [ 22.0, -11.5 ], [ 22.0, -11.0 ], [ 22.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -11.0 ], [ 23.0, -11.5 ], [ 22.5, -11.5 ], [ 22.5, -11.0 ], [ 23.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -11.0 ], [ 23.5, -11.5 ], [ 23.0, -11.5 ], [ 23.0, -11.0 ], [ 23.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -11.0 ], [ 24.0, -11.5 ], [ 23.5, -11.5 ], [ 23.5, -11.0 ], [ 24.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -11.0 ], [ 24.5, -11.5 ], [ 24.0, -11.5 ], [ 24.0, -11.0 ], [ 24.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -11.0 ], [ 25.0, -11.5 ], [ 24.5, -11.5 ], [ 24.5, -11.0 ], [ 25.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -11.0 ], [ 25.5, -11.5 ], [ 25.0, -11.5 ], [ 25.0, -11.0 ], [ 25.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -11.0 ], [ 26.0, -11.5 ], [ 25.5, -11.5 ], [ 25.5, -11.0 ], [ 26.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -11.0 ], [ 26.5, -11.5 ], [ 26.0, -11.5 ], [ 26.0, -11.0 ], [ 26.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -11.0 ], [ 27.0, -11.5 ], [ 26.5, -11.5 ], [ 26.5, -11.0 ], [ 27.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -11.0 ], [ 27.5, -11.5 ], [ 27.0, -11.5 ], [ 27.0, -11.0 ], [ 27.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -11.0 ], [ 28.0, -11.5 ], [ 27.5, -11.5 ], [ 27.5, -11.0 ], [ 28.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -11.0 ], [ 28.5, -11.5 ], [ 28.0, -11.5 ], [ 28.0, -11.0 ], [ 28.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -11.0 ], [ 29.0, -11.5 ], [ 28.5, -11.5 ], [ 28.5, -11.0 ], [ 29.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -11.0 ], [ 29.5, -11.5 ], [ 29.0, -11.5 ], [ 29.0, -11.0 ], [ 29.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -11.0 ], [ 30.0, -11.5 ], [ 29.5, -11.5 ], [ 29.5, -11.0 ], [ 30.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -11.0 ], [ 30.5, -11.5 ], [ 30.0, -11.5 ], [ 30.0, -11.0 ], [ 30.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -11.0 ], [ 31.0, -11.5 ], [ 30.5, -11.5 ], [ 30.5, -11.0 ], [ 31.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -11.0 ], [ 31.5, -11.5 ], [ 31.0, -11.5 ], [ 31.0, -11.0 ], [ 31.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -11.0 ], [ 32.0, -11.5 ], [ 31.5, -11.5 ], [ 31.5, -11.0 ], [ 32.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -11.0 ], [ 32.5, -11.5 ], [ 32.0, -11.5 ], [ 32.0, -11.0 ], [ 32.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -11.0 ], [ 33.0, -11.5 ], [ 32.5, -11.5 ], [ 32.5, -11.0 ], [ 33.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -11.0 ], [ 33.5, -11.5 ], [ 33.0, -11.5 ], [ 33.0, -11.0 ], [ 33.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -11.0 ], [ 34.0, -11.5 ], [ 33.5, -11.5 ], [ 33.5, -11.0 ], [ 34.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -11.0 ], [ 34.5, -11.5 ], [ 34.0, -11.5 ], [ 34.0, -11.0 ], [ 34.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -11.0 ], [ 35.0, -11.5 ], [ 34.5, -11.5 ], [ 34.5, -11.0 ], [ 35.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -11.0 ], [ 35.5, -11.5 ], [ 35.0, -11.5 ], [ 35.0, -11.0 ], [ 35.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -11.0 ], [ 36.0, -11.5 ], [ 35.5, -11.5 ], [ 35.5, -11.0 ], [ 36.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -11.0 ], [ 36.5, -11.5 ], [ 36.0, -11.5 ], [ 36.0, -11.0 ], [ 36.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -11.0 ], [ 37.0, -11.5 ], [ 36.5, -11.5 ], [ 36.5, -11.0 ], [ 37.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -11.0 ], [ 37.5, -11.5 ], [ 37.0, -11.5 ], [ 37.0, -11.0 ], [ 37.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -11.0 ], [ 38.0, -11.5 ], [ 37.5, -11.5 ], [ 37.5, -11.0 ], [ 38.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -11.0 ], [ 38.5, -11.5 ], [ 38.0, -11.5 ], [ 38.0, -11.0 ], [ 38.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -11.0 ], [ 39.0, -11.5 ], [ 38.5, -11.5 ], [ 38.5, -11.0 ], [ 39.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -11.0 ], [ 39.5, -11.5 ], [ 39.0, -11.5 ], [ 39.0, -11.0 ], [ 39.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -11.0 ], [ 40.0, -11.5 ], [ 39.5, -11.5 ], [ 39.5, -11.0 ], [ 40.0, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, -11.0 ], [ 40.5, -11.5 ], [ 40.0, -11.5 ], [ 40.0, -11.0 ], [ 40.5, -11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -10.5 ], [ 14.5, -11.0 ], [ 14.0, -11.0 ], [ 14.0, -10.5 ], [ 14.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -10.5 ], [ 15.0, -11.0 ], [ 14.5, -11.0 ], [ 14.5, -10.5 ], [ 15.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -10.5 ], [ 15.5, -11.0 ], [ 15.0, -11.0 ], [ 15.0, -10.5 ], [ 15.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -10.5 ], [ 16.0, -11.0 ], [ 15.5, -11.0 ], [ 15.5, -10.5 ], [ 16.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -10.5 ], [ 16.5, -11.0 ], [ 16.0, -11.0 ], [ 16.0, -10.5 ], [ 16.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -10.5 ], [ 17.0, -11.0 ], [ 16.5, -11.0 ], [ 16.5, -10.5 ], [ 17.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -10.5 ], [ 17.5, -11.0 ], [ 17.0, -11.0 ], [ 17.0, -10.5 ], [ 17.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -10.5 ], [ 18.0, -11.0 ], [ 17.5, -11.0 ], [ 17.5, -10.5 ], [ 18.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -10.5 ], [ 18.5, -11.0 ], [ 18.0, -11.0 ], [ 18.0, -10.5 ], [ 18.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -10.5 ], [ 19.0, -11.0 ], [ 18.5, -11.0 ], [ 18.5, -10.5 ], [ 19.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -10.5 ], [ 19.5, -11.0 ], [ 19.0, -11.0 ], [ 19.0, -10.5 ], [ 19.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -10.5 ], [ 20.0, -11.0 ], [ 19.5, -11.0 ], [ 19.5, -10.5 ], [ 20.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -10.5 ], [ 20.5, -11.0 ], [ 20.0, -11.0 ], [ 20.0, -10.5 ], [ 20.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -10.5 ], [ 21.0, -11.0 ], [ 20.5, -11.0 ], [ 20.5, -10.5 ], [ 21.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -10.5 ], [ 21.5, -11.0 ], [ 21.0, -11.0 ], [ 21.0, -10.5 ], [ 21.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -10.5 ], [ 22.0, -11.0 ], [ 21.5, -11.0 ], [ 21.5, -10.5 ], [ 22.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -10.5 ], [ 22.5, -11.0 ], [ 22.0, -11.0 ], [ 22.0, -10.5 ], [ 22.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -10.5 ], [ 23.0, -11.0 ], [ 22.5, -11.0 ], [ 22.5, -10.5 ], [ 23.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -10.5 ], [ 23.5, -11.0 ], [ 23.0, -11.0 ], [ 23.0, -10.5 ], [ 23.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -10.5 ], [ 24.0, -11.0 ], [ 23.5, -11.0 ], [ 23.5, -10.5 ], [ 24.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -10.5 ], [ 24.5, -11.0 ], [ 24.0, -11.0 ], [ 24.0, -10.5 ], [ 24.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -10.5 ], [ 25.0, -11.0 ], [ 24.5, -11.0 ], [ 24.5, -10.5 ], [ 25.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -10.5 ], [ 25.5, -11.0 ], [ 25.0, -11.0 ], [ 25.0, -10.5 ], [ 25.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -10.5 ], [ 26.0, -11.0 ], [ 25.5, -11.0 ], [ 25.5, -10.5 ], [ 26.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -10.5 ], [ 26.5, -11.0 ], [ 26.0, -11.0 ], [ 26.0, -10.5 ], [ 26.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -10.5 ], [ 27.0, -11.0 ], [ 26.5, -11.0 ], [ 26.5, -10.5 ], [ 27.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -10.5 ], [ 27.5, -11.0 ], [ 27.0, -11.0 ], [ 27.0, -10.5 ], [ 27.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -10.5 ], [ 28.0, -11.0 ], [ 27.5, -11.0 ], [ 27.5, -10.5 ], [ 28.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -10.5 ], [ 28.5, -11.0 ], [ 28.0, -11.0 ], [ 28.0, -10.5 ], [ 28.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -10.5 ], [ 29.0, -11.0 ], [ 28.5, -11.0 ], [ 28.5, -10.5 ], [ 29.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -10.5 ], [ 29.5, -11.0 ], [ 29.0, -11.0 ], [ 29.0, -10.5 ], [ 29.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -10.5 ], [ 30.0, -11.0 ], [ 29.5, -11.0 ], [ 29.5, -10.5 ], [ 30.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -10.5 ], [ 30.5, -11.0 ], [ 30.0, -11.0 ], [ 30.0, -10.5 ], [ 30.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -10.5 ], [ 31.0, -11.0 ], [ 30.5, -11.0 ], [ 30.5, -10.5 ], [ 31.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -10.5 ], [ 31.5, -11.0 ], [ 31.0, -11.0 ], [ 31.0, -10.5 ], [ 31.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -10.5 ], [ 32.0, -11.0 ], [ 31.5, -11.0 ], [ 31.5, -10.5 ], [ 32.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -10.5 ], [ 32.5, -11.0 ], [ 32.0, -11.0 ], [ 32.0, -10.5 ], [ 32.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -10.5 ], [ 33.0, -11.0 ], [ 32.5, -11.0 ], [ 32.5, -10.5 ], [ 33.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -10.5 ], [ 33.5, -11.0 ], [ 33.0, -11.0 ], [ 33.0, -10.5 ], [ 33.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -10.5 ], [ 34.0, -11.0 ], [ 33.5, -11.0 ], [ 33.5, -10.5 ], [ 34.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -10.5 ], [ 34.5, -11.0 ], [ 34.0, -11.0 ], [ 34.0, -10.5 ], [ 34.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -10.5 ], [ 35.0, -11.0 ], [ 34.5, -11.0 ], [ 34.5, -10.5 ], [ 35.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -10.5 ], [ 35.5, -11.0 ], [ 35.0, -11.0 ], [ 35.0, -10.5 ], [ 35.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -10.5 ], [ 36.0, -11.0 ], [ 35.5, -11.0 ], [ 35.5, -10.5 ], [ 36.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -10.5 ], [ 36.5, -11.0 ], [ 36.0, -11.0 ], [ 36.0, -10.5 ], [ 36.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -10.5 ], [ 37.0, -11.0 ], [ 36.5, -11.0 ], [ 36.5, -10.5 ], [ 37.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -10.5 ], [ 37.5, -11.0 ], [ 37.0, -11.0 ], [ 37.0, -10.5 ], [ 37.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -10.5 ], [ 38.0, -11.0 ], [ 37.5, -11.0 ], [ 37.5, -10.5 ], [ 38.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -10.5 ], [ 38.5, -11.0 ], [ 38.0, -11.0 ], [ 38.0, -10.5 ], [ 38.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -10.5 ], [ 39.0, -11.0 ], [ 38.5, -11.0 ], [ 38.5, -10.5 ], [ 39.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -10.5 ], [ 39.5, -11.0 ], [ 39.0, -11.0 ], [ 39.0, -10.5 ], [ 39.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -10.5 ], [ 40.0, -11.0 ], [ 39.5, -11.0 ], [ 39.5, -10.5 ], [ 40.0, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, -10.5 ], [ 40.5, -11.0 ], [ 40.0, -11.0 ], [ 40.0, -10.5 ], [ 40.5, -10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -10.0 ], [ 14.0, -10.5 ], [ 13.5, -10.5 ], [ 13.5, -10.0 ], [ 14.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -10.0 ], [ 14.5, -10.5 ], [ 14.0, -10.5 ], [ 14.0, -10.0 ], [ 14.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -10.0 ], [ 15.0, -10.5 ], [ 14.5, -10.5 ], [ 14.5, -10.0 ], [ 15.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -10.0 ], [ 15.5, -10.5 ], [ 15.0, -10.5 ], [ 15.0, -10.0 ], [ 15.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -10.0 ], [ 16.0, -10.5 ], [ 15.5, -10.5 ], [ 15.5, -10.0 ], [ 16.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -10.0 ], [ 16.5, -10.5 ], [ 16.0, -10.5 ], [ 16.0, -10.0 ], [ 16.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -10.0 ], [ 17.0, -10.5 ], [ 16.5, -10.5 ], [ 16.5, -10.0 ], [ 17.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -10.0 ], [ 17.5, -10.5 ], [ 17.0, -10.5 ], [ 17.0, -10.0 ], [ 17.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -10.0 ], [ 18.0, -10.5 ], [ 17.5, -10.5 ], [ 17.5, -10.0 ], [ 18.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -10.0 ], [ 18.5, -10.5 ], [ 18.0, -10.5 ], [ 18.0, -10.0 ], [ 18.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -10.0 ], [ 19.0, -10.5 ], [ 18.5, -10.5 ], [ 18.5, -10.0 ], [ 19.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -10.0 ], [ 19.5, -10.5 ], [ 19.0, -10.5 ], [ 19.0, -10.0 ], [ 19.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -10.0 ], [ 20.0, -10.5 ], [ 19.5, -10.5 ], [ 19.5, -10.0 ], [ 20.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -10.0 ], [ 20.5, -10.5 ], [ 20.0, -10.5 ], [ 20.0, -10.0 ], [ 20.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -10.0 ], [ 21.0, -10.5 ], [ 20.5, -10.5 ], [ 20.5, -10.0 ], [ 21.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -10.0 ], [ 21.5, -10.5 ], [ 21.0, -10.5 ], [ 21.0, -10.0 ], [ 21.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -10.0 ], [ 22.0, -10.5 ], [ 21.5, -10.5 ], [ 21.5, -10.0 ], [ 22.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -10.0 ], [ 22.5, -10.5 ], [ 22.0, -10.5 ], [ 22.0, -10.0 ], [ 22.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -10.0 ], [ 23.0, -10.5 ], [ 22.5, -10.5 ], [ 22.5, -10.0 ], [ 23.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -10.0 ], [ 23.5, -10.5 ], [ 23.0, -10.5 ], [ 23.0, -10.0 ], [ 23.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -10.0 ], [ 24.0, -10.5 ], [ 23.5, -10.5 ], [ 23.5, -10.0 ], [ 24.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -10.0 ], [ 24.5, -10.5 ], [ 24.0, -10.5 ], [ 24.0, -10.0 ], [ 24.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -10.0 ], [ 25.0, -10.5 ], [ 24.5, -10.5 ], [ 24.5, -10.0 ], [ 25.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -10.0 ], [ 25.5, -10.5 ], [ 25.0, -10.5 ], [ 25.0, -10.0 ], [ 25.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -10.0 ], [ 26.0, -10.5 ], [ 25.5, -10.5 ], [ 25.5, -10.0 ], [ 26.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -10.0 ], [ 26.5, -10.5 ], [ 26.0, -10.5 ], [ 26.0, -10.0 ], [ 26.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -10.0 ], [ 27.0, -10.5 ], [ 26.5, -10.5 ], [ 26.5, -10.0 ], [ 27.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -10.0 ], [ 27.5, -10.5 ], [ 27.0, -10.5 ], [ 27.0, -10.0 ], [ 27.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -10.0 ], [ 28.0, -10.5 ], [ 27.5, -10.5 ], [ 27.5, -10.0 ], [ 28.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -10.0 ], [ 28.5, -10.5 ], [ 28.0, -10.5 ], [ 28.0, -10.0 ], [ 28.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -10.0 ], [ 29.0, -10.5 ], [ 28.5, -10.5 ], [ 28.5, -10.0 ], [ 29.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -10.0 ], [ 29.5, -10.5 ], [ 29.0, -10.5 ], [ 29.0, -10.0 ], [ 29.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -10.0 ], [ 30.0, -10.5 ], [ 29.5, -10.5 ], [ 29.5, -10.0 ], [ 30.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -10.0 ], [ 30.5, -10.5 ], [ 30.0, -10.5 ], [ 30.0, -10.0 ], [ 30.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -10.0 ], [ 31.0, -10.5 ], [ 30.5, -10.5 ], [ 30.5, -10.0 ], [ 31.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -10.0 ], [ 31.5, -10.5 ], [ 31.0, -10.5 ], [ 31.0, -10.0 ], [ 31.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -10.0 ], [ 32.0, -10.5 ], [ 31.5, -10.5 ], [ 31.5, -10.0 ], [ 32.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -10.0 ], [ 32.5, -10.5 ], [ 32.0, -10.5 ], [ 32.0, -10.0 ], [ 32.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -10.0 ], [ 33.0, -10.5 ], [ 32.5, -10.5 ], [ 32.5, -10.0 ], [ 33.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -10.0 ], [ 33.5, -10.5 ], [ 33.0, -10.5 ], [ 33.0, -10.0 ], [ 33.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -10.0 ], [ 34.0, -10.5 ], [ 33.5, -10.5 ], [ 33.5, -10.0 ], [ 34.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -10.0 ], [ 34.5, -10.5 ], [ 34.0, -10.5 ], [ 34.0, -10.0 ], [ 34.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -10.0 ], [ 35.0, -10.5 ], [ 34.5, -10.5 ], [ 34.5, -10.0 ], [ 35.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -10.0 ], [ 35.5, -10.5 ], [ 35.0, -10.5 ], [ 35.0, -10.0 ], [ 35.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -10.0 ], [ 36.0, -10.5 ], [ 35.5, -10.5 ], [ 35.5, -10.0 ], [ 36.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -10.0 ], [ 36.5, -10.5 ], [ 36.0, -10.5 ], [ 36.0, -10.0 ], [ 36.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -10.0 ], [ 37.0, -10.5 ], [ 36.5, -10.5 ], [ 36.5, -10.0 ], [ 37.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -10.0 ], [ 37.5, -10.5 ], [ 37.0, -10.5 ], [ 37.0, -10.0 ], [ 37.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -10.0 ], [ 38.0, -10.5 ], [ 37.5, -10.5 ], [ 37.5, -10.0 ], [ 38.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -10.0 ], [ 38.5, -10.5 ], [ 38.0, -10.5 ], [ 38.0, -10.0 ], [ 38.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -10.0 ], [ 39.0, -10.5 ], [ 38.5, -10.5 ], [ 38.5, -10.0 ], [ 39.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -10.0 ], [ 39.5, -10.5 ], [ 39.0, -10.5 ], [ 39.0, -10.0 ], [ 39.5, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -10.0 ], [ 40.0, -10.5 ], [ 39.5, -10.5 ], [ 39.5, -10.0 ], [ 40.0, -10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -9.5 ], [ 14.0, -10.0 ], [ 13.5, -10.0 ], [ 13.5, -9.5 ], [ 14.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -9.5 ], [ 14.5, -10.0 ], [ 14.0, -10.0 ], [ 14.0, -9.5 ], [ 14.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -9.5 ], [ 15.0, -10.0 ], [ 14.5, -10.0 ], [ 14.5, -9.5 ], [ 15.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -9.5 ], [ 15.5, -10.0 ], [ 15.0, -10.0 ], [ 15.0, -9.5 ], [ 15.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -9.5 ], [ 16.0, -10.0 ], [ 15.5, -10.0 ], [ 15.5, -9.5 ], [ 16.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -9.5 ], [ 16.5, -10.0 ], [ 16.0, -10.0 ], [ 16.0, -9.5 ], [ 16.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -9.5 ], [ 17.0, -10.0 ], [ 16.5, -10.0 ], [ 16.5, -9.5 ], [ 17.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -9.5 ], [ 17.5, -10.0 ], [ 17.0, -10.0 ], [ 17.0, -9.5 ], [ 17.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -9.5 ], [ 18.0, -10.0 ], [ 17.5, -10.0 ], [ 17.5, -9.5 ], [ 18.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -9.5 ], [ 18.5, -10.0 ], [ 18.0, -10.0 ], [ 18.0, -9.5 ], [ 18.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -9.5 ], [ 19.0, -10.0 ], [ 18.5, -10.0 ], [ 18.5, -9.5 ], [ 19.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -9.5 ], [ 19.5, -10.0 ], [ 19.0, -10.0 ], [ 19.0, -9.5 ], [ 19.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -9.5 ], [ 20.0, -10.0 ], [ 19.5, -10.0 ], [ 19.5, -9.5 ], [ 20.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -9.5 ], [ 20.5, -10.0 ], [ 20.0, -10.0 ], [ 20.0, -9.5 ], [ 20.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -9.5 ], [ 21.0, -10.0 ], [ 20.5, -10.0 ], [ 20.5, -9.5 ], [ 21.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -9.5 ], [ 21.5, -10.0 ], [ 21.0, -10.0 ], [ 21.0, -9.5 ], [ 21.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -9.5 ], [ 22.0, -10.0 ], [ 21.5, -10.0 ], [ 21.5, -9.5 ], [ 22.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -9.5 ], [ 22.5, -10.0 ], [ 22.0, -10.0 ], [ 22.0, -9.5 ], [ 22.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -9.5 ], [ 23.0, -10.0 ], [ 22.5, -10.0 ], [ 22.5, -9.5 ], [ 23.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -9.5 ], [ 23.5, -10.0 ], [ 23.0, -10.0 ], [ 23.0, -9.5 ], [ 23.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -9.5 ], [ 24.0, -10.0 ], [ 23.5, -10.0 ], [ 23.5, -9.5 ], [ 24.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -9.5 ], [ 24.5, -10.0 ], [ 24.0, -10.0 ], [ 24.0, -9.5 ], [ 24.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -9.5 ], [ 25.0, -10.0 ], [ 24.5, -10.0 ], [ 24.5, -9.5 ], [ 25.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -9.5 ], [ 25.5, -10.0 ], [ 25.0, -10.0 ], [ 25.0, -9.5 ], [ 25.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -9.5 ], [ 26.0, -10.0 ], [ 25.5, -10.0 ], [ 25.5, -9.5 ], [ 26.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -9.5 ], [ 26.5, -10.0 ], [ 26.0, -10.0 ], [ 26.0, -9.5 ], [ 26.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -9.5 ], [ 27.0, -10.0 ], [ 26.5, -10.0 ], [ 26.5, -9.5 ], [ 27.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -9.5 ], [ 27.5, -10.0 ], [ 27.0, -10.0 ], [ 27.0, -9.5 ], [ 27.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -9.5 ], [ 28.0, -10.0 ], [ 27.5, -10.0 ], [ 27.5, -9.5 ], [ 28.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -9.5 ], [ 28.5, -10.0 ], [ 28.0, -10.0 ], [ 28.0, -9.5 ], [ 28.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -9.5 ], [ 29.0, -10.0 ], [ 28.5, -10.0 ], [ 28.5, -9.5 ], [ 29.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -9.5 ], [ 29.5, -10.0 ], [ 29.0, -10.0 ], [ 29.0, -9.5 ], [ 29.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -9.5 ], [ 30.0, -10.0 ], [ 29.5, -10.0 ], [ 29.5, -9.5 ], [ 30.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -9.5 ], [ 30.5, -10.0 ], [ 30.0, -10.0 ], [ 30.0, -9.5 ], [ 30.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -9.5 ], [ 31.0, -10.0 ], [ 30.5, -10.0 ], [ 30.5, -9.5 ], [ 31.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -9.5 ], [ 31.5, -10.0 ], [ 31.0, -10.0 ], [ 31.0, -9.5 ], [ 31.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -9.5 ], [ 32.0, -10.0 ], [ 31.5, -10.0 ], [ 31.5, -9.5 ], [ 32.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -9.5 ], [ 32.5, -10.0 ], [ 32.0, -10.0 ], [ 32.0, -9.5 ], [ 32.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -9.5 ], [ 33.0, -10.0 ], [ 32.5, -10.0 ], [ 32.5, -9.5 ], [ 33.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -9.5 ], [ 33.5, -10.0 ], [ 33.0, -10.0 ], [ 33.0, -9.5 ], [ 33.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -9.5 ], [ 34.0, -10.0 ], [ 33.5, -10.0 ], [ 33.5, -9.5 ], [ 34.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -9.5 ], [ 34.5, -10.0 ], [ 34.0, -10.0 ], [ 34.0, -9.5 ], [ 34.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -9.5 ], [ 35.0, -10.0 ], [ 34.5, -10.0 ], [ 34.5, -9.5 ], [ 35.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -9.5 ], [ 35.5, -10.0 ], [ 35.0, -10.0 ], [ 35.0, -9.5 ], [ 35.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -9.5 ], [ 36.0, -10.0 ], [ 35.5, -10.0 ], [ 35.5, -9.5 ], [ 36.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -9.5 ], [ 36.5, -10.0 ], [ 36.0, -10.0 ], [ 36.0, -9.5 ], [ 36.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -9.5 ], [ 37.0, -10.0 ], [ 36.5, -10.0 ], [ 36.5, -9.5 ], [ 37.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -9.5 ], [ 37.5, -10.0 ], [ 37.0, -10.0 ], [ 37.0, -9.5 ], [ 37.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -9.5 ], [ 38.0, -10.0 ], [ 37.5, -10.0 ], [ 37.5, -9.5 ], [ 38.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -9.5 ], [ 38.5, -10.0 ], [ 38.0, -10.0 ], [ 38.0, -9.5 ], [ 38.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -9.5 ], [ 39.0, -10.0 ], [ 38.5, -10.0 ], [ 38.5, -9.5 ], [ 39.0, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -9.5 ], [ 39.5, -10.0 ], [ 39.0, -10.0 ], [ 39.0, -9.5 ], [ 39.5, -9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -9.0 ], [ 13.5, -9.5 ], [ 13.0, -9.5 ], [ 13.0, -9.0 ], [ 13.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -9.0 ], [ 14.0, -9.5 ], [ 13.5, -9.5 ], [ 13.5, -9.0 ], [ 14.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -9.0 ], [ 14.5, -9.5 ], [ 14.0, -9.5 ], [ 14.0, -9.0 ], [ 14.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -9.0 ], [ 15.0, -9.5 ], [ 14.5, -9.5 ], [ 14.5, -9.0 ], [ 15.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -9.0 ], [ 15.5, -9.5 ], [ 15.0, -9.5 ], [ 15.0, -9.0 ], [ 15.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -9.0 ], [ 16.0, -9.5 ], [ 15.5, -9.5 ], [ 15.5, -9.0 ], [ 16.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -9.0 ], [ 16.5, -9.5 ], [ 16.0, -9.5 ], [ 16.0, -9.0 ], [ 16.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -9.0 ], [ 17.0, -9.5 ], [ 16.5, -9.5 ], [ 16.5, -9.0 ], [ 17.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -9.0 ], [ 17.5, -9.5 ], [ 17.0, -9.5 ], [ 17.0, -9.0 ], [ 17.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -9.0 ], [ 18.0, -9.5 ], [ 17.5, -9.5 ], [ 17.5, -9.0 ], [ 18.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -9.0 ], [ 18.5, -9.5 ], [ 18.0, -9.5 ], [ 18.0, -9.0 ], [ 18.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -9.0 ], [ 19.0, -9.5 ], [ 18.5, -9.5 ], [ 18.5, -9.0 ], [ 19.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -9.0 ], [ 19.5, -9.5 ], [ 19.0, -9.5 ], [ 19.0, -9.0 ], [ 19.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -9.0 ], [ 20.0, -9.5 ], [ 19.5, -9.5 ], [ 19.5, -9.0 ], [ 20.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -9.0 ], [ 20.5, -9.5 ], [ 20.0, -9.5 ], [ 20.0, -9.0 ], [ 20.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -9.0 ], [ 21.0, -9.5 ], [ 20.5, -9.5 ], [ 20.5, -9.0 ], [ 21.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -9.0 ], [ 21.5, -9.5 ], [ 21.0, -9.5 ], [ 21.0, -9.0 ], [ 21.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -9.0 ], [ 22.0, -9.5 ], [ 21.5, -9.5 ], [ 21.5, -9.0 ], [ 22.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -9.0 ], [ 22.5, -9.5 ], [ 22.0, -9.5 ], [ 22.0, -9.0 ], [ 22.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -9.0 ], [ 23.0, -9.5 ], [ 22.5, -9.5 ], [ 22.5, -9.0 ], [ 23.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -9.0 ], [ 23.5, -9.5 ], [ 23.0, -9.5 ], [ 23.0, -9.0 ], [ 23.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -9.0 ], [ 24.0, -9.5 ], [ 23.5, -9.5 ], [ 23.5, -9.0 ], [ 24.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -9.0 ], [ 24.5, -9.5 ], [ 24.0, -9.5 ], [ 24.0, -9.0 ], [ 24.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -9.0 ], [ 25.0, -9.5 ], [ 24.5, -9.5 ], [ 24.5, -9.0 ], [ 25.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -9.0 ], [ 25.5, -9.5 ], [ 25.0, -9.5 ], [ 25.0, -9.0 ], [ 25.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -9.0 ], [ 26.0, -9.5 ], [ 25.5, -9.5 ], [ 25.5, -9.0 ], [ 26.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -9.0 ], [ 26.5, -9.5 ], [ 26.0, -9.5 ], [ 26.0, -9.0 ], [ 26.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -9.0 ], [ 27.0, -9.5 ], [ 26.5, -9.5 ], [ 26.5, -9.0 ], [ 27.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -9.0 ], [ 27.5, -9.5 ], [ 27.0, -9.5 ], [ 27.0, -9.0 ], [ 27.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -9.0 ], [ 28.0, -9.5 ], [ 27.5, -9.5 ], [ 27.5, -9.0 ], [ 28.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -9.0 ], [ 28.5, -9.5 ], [ 28.0, -9.5 ], [ 28.0, -9.0 ], [ 28.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -9.0 ], [ 29.0, -9.5 ], [ 28.5, -9.5 ], [ 28.5, -9.0 ], [ 29.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -9.0 ], [ 29.5, -9.5 ], [ 29.0, -9.5 ], [ 29.0, -9.0 ], [ 29.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -9.0 ], [ 30.0, -9.5 ], [ 29.5, -9.5 ], [ 29.5, -9.0 ], [ 30.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -9.0 ], [ 30.5, -9.5 ], [ 30.0, -9.5 ], [ 30.0, -9.0 ], [ 30.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -9.0 ], [ 31.0, -9.5 ], [ 30.5, -9.5 ], [ 30.5, -9.0 ], [ 31.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -9.0 ], [ 31.5, -9.5 ], [ 31.0, -9.5 ], [ 31.0, -9.0 ], [ 31.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -9.0 ], [ 32.0, -9.5 ], [ 31.5, -9.5 ], [ 31.5, -9.0 ], [ 32.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -9.0 ], [ 32.5, -9.5 ], [ 32.0, -9.5 ], [ 32.0, -9.0 ], [ 32.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -9.0 ], [ 33.0, -9.5 ], [ 32.5, -9.5 ], [ 32.5, -9.0 ], [ 33.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -9.0 ], [ 33.5, -9.5 ], [ 33.0, -9.5 ], [ 33.0, -9.0 ], [ 33.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -9.0 ], [ 34.0, -9.5 ], [ 33.5, -9.5 ], [ 33.5, -9.0 ], [ 34.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -9.0 ], [ 34.5, -9.5 ], [ 34.0, -9.5 ], [ 34.0, -9.0 ], [ 34.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -9.0 ], [ 35.0, -9.5 ], [ 34.5, -9.5 ], [ 34.5, -9.0 ], [ 35.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -9.0 ], [ 35.5, -9.5 ], [ 35.0, -9.5 ], [ 35.0, -9.0 ], [ 35.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -9.0 ], [ 36.0, -9.5 ], [ 35.5, -9.5 ], [ 35.5, -9.0 ], [ 36.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -9.0 ], [ 36.5, -9.5 ], [ 36.0, -9.5 ], [ 36.0, -9.0 ], [ 36.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -9.0 ], [ 37.0, -9.5 ], [ 36.5, -9.5 ], [ 36.5, -9.0 ], [ 37.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -9.0 ], [ 37.5, -9.5 ], [ 37.0, -9.5 ], [ 37.0, -9.0 ], [ 37.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -9.0 ], [ 38.0, -9.5 ], [ 37.5, -9.5 ], [ 37.5, -9.0 ], [ 38.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -9.0 ], [ 38.5, -9.5 ], [ 38.0, -9.5 ], [ 38.0, -9.0 ], [ 38.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -9.0 ], [ 39.0, -9.5 ], [ 38.5, -9.5 ], [ 38.5, -9.0 ], [ 39.0, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -9.0 ], [ 39.5, -9.5 ], [ 39.0, -9.5 ], [ 39.0, -9.0 ], [ 39.5, -9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -8.5 ], [ 14.0, -9.0 ], [ 13.5, -9.0 ], [ 13.5, -8.5 ], [ 14.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -8.5 ], [ 14.5, -9.0 ], [ 14.0, -9.0 ], [ 14.0, -8.5 ], [ 14.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -8.5 ], [ 15.0, -9.0 ], [ 14.5, -9.0 ], [ 14.5, -8.5 ], [ 15.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -8.5 ], [ 15.5, -9.0 ], [ 15.0, -9.0 ], [ 15.0, -8.5 ], [ 15.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -8.5 ], [ 16.0, -9.0 ], [ 15.5, -9.0 ], [ 15.5, -8.5 ], [ 16.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -8.5 ], [ 16.5, -9.0 ], [ 16.0, -9.0 ], [ 16.0, -8.5 ], [ 16.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -8.5 ], [ 17.0, -9.0 ], [ 16.5, -9.0 ], [ 16.5, -8.5 ], [ 17.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -8.5 ], [ 17.5, -9.0 ], [ 17.0, -9.0 ], [ 17.0, -8.5 ], [ 17.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -8.5 ], [ 18.0, -9.0 ], [ 17.5, -9.0 ], [ 17.5, -8.5 ], [ 18.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -8.5 ], [ 18.5, -9.0 ], [ 18.0, -9.0 ], [ 18.0, -8.5 ], [ 18.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -8.5 ], [ 19.0, -9.0 ], [ 18.5, -9.0 ], [ 18.5, -8.5 ], [ 19.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -8.5 ], [ 19.5, -9.0 ], [ 19.0, -9.0 ], [ 19.0, -8.5 ], [ 19.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -8.5 ], [ 20.0, -9.0 ], [ 19.5, -9.0 ], [ 19.5, -8.5 ], [ 20.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -8.5 ], [ 20.5, -9.0 ], [ 20.0, -9.0 ], [ 20.0, -8.5 ], [ 20.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -8.5 ], [ 21.0, -9.0 ], [ 20.5, -9.0 ], [ 20.5, -8.5 ], [ 21.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -8.5 ], [ 21.5, -9.0 ], [ 21.0, -9.0 ], [ 21.0, -8.5 ], [ 21.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -8.5 ], [ 22.0, -9.0 ], [ 21.5, -9.0 ], [ 21.5, -8.5 ], [ 22.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -8.5 ], [ 22.5, -9.0 ], [ 22.0, -9.0 ], [ 22.0, -8.5 ], [ 22.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -8.5 ], [ 23.0, -9.0 ], [ 22.5, -9.0 ], [ 22.5, -8.5 ], [ 23.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -8.5 ], [ 23.5, -9.0 ], [ 23.0, -9.0 ], [ 23.0, -8.5 ], [ 23.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -8.5 ], [ 24.0, -9.0 ], [ 23.5, -9.0 ], [ 23.5, -8.5 ], [ 24.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -8.5 ], [ 24.5, -9.0 ], [ 24.0, -9.0 ], [ 24.0, -8.5 ], [ 24.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -8.5 ], [ 25.0, -9.0 ], [ 24.5, -9.0 ], [ 24.5, -8.5 ], [ 25.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -8.5 ], [ 25.5, -9.0 ], [ 25.0, -9.0 ], [ 25.0, -8.5 ], [ 25.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -8.5 ], [ 26.0, -9.0 ], [ 25.5, -9.0 ], [ 25.5, -8.5 ], [ 26.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -8.5 ], [ 26.5, -9.0 ], [ 26.0, -9.0 ], [ 26.0, -8.5 ], [ 26.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -8.5 ], [ 27.0, -9.0 ], [ 26.5, -9.0 ], [ 26.5, -8.5 ], [ 27.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -8.5 ], [ 27.5, -9.0 ], [ 27.0, -9.0 ], [ 27.0, -8.5 ], [ 27.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -8.5 ], [ 28.0, -9.0 ], [ 27.5, -9.0 ], [ 27.5, -8.5 ], [ 28.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -8.5 ], [ 28.5, -9.0 ], [ 28.0, -9.0 ], [ 28.0, -8.5 ], [ 28.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -8.5 ], [ 29.0, -9.0 ], [ 28.5, -9.0 ], [ 28.5, -8.5 ], [ 29.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -8.5 ], [ 29.5, -9.0 ], [ 29.0, -9.0 ], [ 29.0, -8.5 ], [ 29.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -8.5 ], [ 30.0, -9.0 ], [ 29.5, -9.0 ], [ 29.5, -8.5 ], [ 30.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -8.5 ], [ 30.5, -9.0 ], [ 30.0, -9.0 ], [ 30.0, -8.5 ], [ 30.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -8.5 ], [ 31.0, -9.0 ], [ 30.5, -9.0 ], [ 30.5, -8.5 ], [ 31.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -8.5 ], [ 31.5, -9.0 ], [ 31.0, -9.0 ], [ 31.0, -8.5 ], [ 31.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -8.5 ], [ 32.0, -9.0 ], [ 31.5, -9.0 ], [ 31.5, -8.5 ], [ 32.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -8.5 ], [ 32.5, -9.0 ], [ 32.0, -9.0 ], [ 32.0, -8.5 ], [ 32.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -8.5 ], [ 33.0, -9.0 ], [ 32.5, -9.0 ], [ 32.5, -8.5 ], [ 33.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -8.5 ], [ 33.5, -9.0 ], [ 33.0, -9.0 ], [ 33.0, -8.5 ], [ 33.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -8.5 ], [ 34.0, -9.0 ], [ 33.5, -9.0 ], [ 33.5, -8.5 ], [ 34.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -8.5 ], [ 34.5, -9.0 ], [ 34.0, -9.0 ], [ 34.0, -8.5 ], [ 34.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -8.5 ], [ 35.0, -9.0 ], [ 34.5, -9.0 ], [ 34.5, -8.5 ], [ 35.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -8.5 ], [ 35.5, -9.0 ], [ 35.0, -9.0 ], [ 35.0, -8.5 ], [ 35.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -8.5 ], [ 36.0, -9.0 ], [ 35.5, -9.0 ], [ 35.5, -8.5 ], [ 36.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -8.5 ], [ 36.5, -9.0 ], [ 36.0, -9.0 ], [ 36.0, -8.5 ], [ 36.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -8.5 ], [ 37.0, -9.0 ], [ 36.5, -9.0 ], [ 36.5, -8.5 ], [ 37.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -8.5 ], [ 37.5, -9.0 ], [ 37.0, -9.0 ], [ 37.0, -8.5 ], [ 37.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -8.5 ], [ 38.0, -9.0 ], [ 37.5, -9.0 ], [ 37.5, -8.5 ], [ 38.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -8.5 ], [ 38.5, -9.0 ], [ 38.0, -9.0 ], [ 38.0, -8.5 ], [ 38.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -8.5 ], [ 39.0, -9.0 ], [ 38.5, -9.0 ], [ 38.5, -8.5 ], [ 39.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -8.5 ], [ 39.5, -9.0 ], [ 39.0, -9.0 ], [ 39.0, -8.5 ], [ 39.5, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -8.0 ], [ 14.0, -8.5 ], [ 13.5, -8.5 ], [ 13.5, -8.0 ], [ 14.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -8.0 ], [ 14.5, -8.5 ], [ 14.0, -8.5 ], [ 14.0, -8.0 ], [ 14.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -8.0 ], [ 15.0, -8.5 ], [ 14.5, -8.5 ], [ 14.5, -8.0 ], [ 15.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -8.0 ], [ 15.5, -8.5 ], [ 15.0, -8.5 ], [ 15.0, -8.0 ], [ 15.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -8.0 ], [ 16.0, -8.5 ], [ 15.5, -8.5 ], [ 15.5, -8.0 ], [ 16.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -8.0 ], [ 16.5, -8.5 ], [ 16.0, -8.5 ], [ 16.0, -8.0 ], [ 16.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -8.0 ], [ 17.0, -8.5 ], [ 16.5, -8.5 ], [ 16.5, -8.0 ], [ 17.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -8.0 ], [ 17.5, -8.5 ], [ 17.0, -8.5 ], [ 17.0, -8.0 ], [ 17.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -8.0 ], [ 18.0, -8.5 ], [ 17.5, -8.5 ], [ 17.5, -8.0 ], [ 18.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -8.0 ], [ 18.5, -8.5 ], [ 18.0, -8.5 ], [ 18.0, -8.0 ], [ 18.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -8.0 ], [ 19.0, -8.5 ], [ 18.5, -8.5 ], [ 18.5, -8.0 ], [ 19.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -8.0 ], [ 19.5, -8.5 ], [ 19.0, -8.5 ], [ 19.0, -8.0 ], [ 19.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -8.0 ], [ 20.0, -8.5 ], [ 19.5, -8.5 ], [ 19.5, -8.0 ], [ 20.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -8.0 ], [ 20.5, -8.5 ], [ 20.0, -8.5 ], [ 20.0, -8.0 ], [ 20.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -8.0 ], [ 21.0, -8.5 ], [ 20.5, -8.5 ], [ 20.5, -8.0 ], [ 21.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -8.0 ], [ 21.5, -8.5 ], [ 21.0, -8.5 ], [ 21.0, -8.0 ], [ 21.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -8.0 ], [ 22.0, -8.5 ], [ 21.5, -8.5 ], [ 21.5, -8.0 ], [ 22.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -8.0 ], [ 22.5, -8.5 ], [ 22.0, -8.5 ], [ 22.0, -8.0 ], [ 22.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -8.0 ], [ 23.0, -8.5 ], [ 22.5, -8.5 ], [ 22.5, -8.0 ], [ 23.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -8.0 ], [ 23.5, -8.5 ], [ 23.0, -8.5 ], [ 23.0, -8.0 ], [ 23.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -8.0 ], [ 24.0, -8.5 ], [ 23.5, -8.5 ], [ 23.5, -8.0 ], [ 24.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -8.0 ], [ 24.5, -8.5 ], [ 24.0, -8.5 ], [ 24.0, -8.0 ], [ 24.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -8.0 ], [ 25.0, -8.5 ], [ 24.5, -8.5 ], [ 24.5, -8.0 ], [ 25.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -8.0 ], [ 25.5, -8.5 ], [ 25.0, -8.5 ], [ 25.0, -8.0 ], [ 25.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -8.0 ], [ 26.0, -8.5 ], [ 25.5, -8.5 ], [ 25.5, -8.0 ], [ 26.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -8.0 ], [ 26.5, -8.5 ], [ 26.0, -8.5 ], [ 26.0, -8.0 ], [ 26.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -8.0 ], [ 27.0, -8.5 ], [ 26.5, -8.5 ], [ 26.5, -8.0 ], [ 27.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -8.0 ], [ 27.5, -8.5 ], [ 27.0, -8.5 ], [ 27.0, -8.0 ], [ 27.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -8.0 ], [ 28.0, -8.5 ], [ 27.5, -8.5 ], [ 27.5, -8.0 ], [ 28.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -8.0 ], [ 28.5, -8.5 ], [ 28.0, -8.5 ], [ 28.0, -8.0 ], [ 28.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -8.0 ], [ 29.0, -8.5 ], [ 28.5, -8.5 ], [ 28.5, -8.0 ], [ 29.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -8.0 ], [ 29.5, -8.5 ], [ 29.0, -8.5 ], [ 29.0, -8.0 ], [ 29.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -8.0 ], [ 30.0, -8.5 ], [ 29.5, -8.5 ], [ 29.5, -8.0 ], [ 30.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -8.0 ], [ 30.5, -8.5 ], [ 30.0, -8.5 ], [ 30.0, -8.0 ], [ 30.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -8.0 ], [ 31.0, -8.5 ], [ 30.5, -8.5 ], [ 30.5, -8.0 ], [ 31.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -8.0 ], [ 31.5, -8.5 ], [ 31.0, -8.5 ], [ 31.0, -8.0 ], [ 31.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -8.0 ], [ 32.0, -8.5 ], [ 31.5, -8.5 ], [ 31.5, -8.0 ], [ 32.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -8.0 ], [ 32.5, -8.5 ], [ 32.0, -8.5 ], [ 32.0, -8.0 ], [ 32.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -8.0 ], [ 33.0, -8.5 ], [ 32.5, -8.5 ], [ 32.5, -8.0 ], [ 33.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -8.0 ], [ 33.5, -8.5 ], [ 33.0, -8.5 ], [ 33.0, -8.0 ], [ 33.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -8.0 ], [ 34.0, -8.5 ], [ 33.5, -8.5 ], [ 33.5, -8.0 ], [ 34.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -8.0 ], [ 34.5, -8.5 ], [ 34.0, -8.5 ], [ 34.0, -8.0 ], [ 34.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -8.0 ], [ 35.0, -8.5 ], [ 34.5, -8.5 ], [ 34.5, -8.0 ], [ 35.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -8.0 ], [ 35.5, -8.5 ], [ 35.0, -8.5 ], [ 35.0, -8.0 ], [ 35.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -8.0 ], [ 36.0, -8.5 ], [ 35.5, -8.5 ], [ 35.5, -8.0 ], [ 36.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -8.0 ], [ 36.5, -8.5 ], [ 36.0, -8.5 ], [ 36.0, -8.0 ], [ 36.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -8.0 ], [ 37.0, -8.5 ], [ 36.5, -8.5 ], [ 36.5, -8.0 ], [ 37.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -8.0 ], [ 37.5, -8.5 ], [ 37.0, -8.5 ], [ 37.0, -8.0 ], [ 37.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -8.0 ], [ 38.0, -8.5 ], [ 37.5, -8.5 ], [ 37.5, -8.0 ], [ 38.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -8.0 ], [ 38.5, -8.5 ], [ 38.0, -8.5 ], [ 38.0, -8.0 ], [ 38.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -8.0 ], [ 39.0, -8.5 ], [ 38.5, -8.5 ], [ 38.5, -8.0 ], [ 39.0, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -8.0 ], [ 39.5, -8.5 ], [ 39.0, -8.5 ], [ 39.0, -8.0 ], [ 39.5, -8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -7.5 ], [ 13.5, -8.0 ], [ 13.0, -8.0 ], [ 13.0, -7.5 ], [ 13.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -7.5 ], [ 14.0, -8.0 ], [ 13.5, -8.0 ], [ 13.5, -7.5 ], [ 14.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -7.5 ], [ 14.5, -8.0 ], [ 14.0, -8.0 ], [ 14.0, -7.5 ], [ 14.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -7.5 ], [ 15.0, -8.0 ], [ 14.5, -8.0 ], [ 14.5, -7.5 ], [ 15.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -7.5 ], [ 15.5, -8.0 ], [ 15.0, -8.0 ], [ 15.0, -7.5 ], [ 15.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -7.5 ], [ 16.0, -8.0 ], [ 15.5, -8.0 ], [ 15.5, -7.5 ], [ 16.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -7.5 ], [ 16.5, -8.0 ], [ 16.0, -8.0 ], [ 16.0, -7.5 ], [ 16.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -7.5 ], [ 17.0, -8.0 ], [ 16.5, -8.0 ], [ 16.5, -7.5 ], [ 17.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -7.5 ], [ 17.5, -8.0 ], [ 17.0, -8.0 ], [ 17.0, -7.5 ], [ 17.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -7.5 ], [ 18.0, -8.0 ], [ 17.5, -8.0 ], [ 17.5, -7.5 ], [ 18.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -7.5 ], [ 18.5, -8.0 ], [ 18.0, -8.0 ], [ 18.0, -7.5 ], [ 18.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -7.5 ], [ 19.0, -8.0 ], [ 18.5, -8.0 ], [ 18.5, -7.5 ], [ 19.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -7.5 ], [ 19.5, -8.0 ], [ 19.0, -8.0 ], [ 19.0, -7.5 ], [ 19.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -7.5 ], [ 20.0, -8.0 ], [ 19.5, -8.0 ], [ 19.5, -7.5 ], [ 20.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -7.5 ], [ 20.5, -8.0 ], [ 20.0, -8.0 ], [ 20.0, -7.5 ], [ 20.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -7.5 ], [ 21.0, -8.0 ], [ 20.5, -8.0 ], [ 20.5, -7.5 ], [ 21.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -7.5 ], [ 21.5, -8.0 ], [ 21.0, -8.0 ], [ 21.0, -7.5 ], [ 21.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -7.5 ], [ 22.0, -8.0 ], [ 21.5, -8.0 ], [ 21.5, -7.5 ], [ 22.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -7.5 ], [ 22.5, -8.0 ], [ 22.0, -8.0 ], [ 22.0, -7.5 ], [ 22.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -7.5 ], [ 23.0, -8.0 ], [ 22.5, -8.0 ], [ 22.5, -7.5 ], [ 23.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -7.5 ], [ 23.5, -8.0 ], [ 23.0, -8.0 ], [ 23.0, -7.5 ], [ 23.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -7.5 ], [ 24.0, -8.0 ], [ 23.5, -8.0 ], [ 23.5, -7.5 ], [ 24.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -7.5 ], [ 24.5, -8.0 ], [ 24.0, -8.0 ], [ 24.0, -7.5 ], [ 24.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -7.5 ], [ 25.0, -8.0 ], [ 24.5, -8.0 ], [ 24.5, -7.5 ], [ 25.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -7.5 ], [ 25.5, -8.0 ], [ 25.0, -8.0 ], [ 25.0, -7.5 ], [ 25.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -7.5 ], [ 26.0, -8.0 ], [ 25.5, -8.0 ], [ 25.5, -7.5 ], [ 26.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -7.5 ], [ 26.5, -8.0 ], [ 26.0, -8.0 ], [ 26.0, -7.5 ], [ 26.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -7.5 ], [ 27.0, -8.0 ], [ 26.5, -8.0 ], [ 26.5, -7.5 ], [ 27.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -7.5 ], [ 27.5, -8.0 ], [ 27.0, -8.0 ], [ 27.0, -7.5 ], [ 27.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -7.5 ], [ 28.0, -8.0 ], [ 27.5, -8.0 ], [ 27.5, -7.5 ], [ 28.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -7.5 ], [ 28.5, -8.0 ], [ 28.0, -8.0 ], [ 28.0, -7.5 ], [ 28.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -7.5 ], [ 29.0, -8.0 ], [ 28.5, -8.0 ], [ 28.5, -7.5 ], [ 29.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -7.5 ], [ 29.5, -8.0 ], [ 29.0, -8.0 ], [ 29.0, -7.5 ], [ 29.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -7.5 ], [ 30.0, -8.0 ], [ 29.5, -8.0 ], [ 29.5, -7.5 ], [ 30.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -7.5 ], [ 30.5, -8.0 ], [ 30.0, -8.0 ], [ 30.0, -7.5 ], [ 30.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -7.5 ], [ 31.0, -8.0 ], [ 30.5, -8.0 ], [ 30.5, -7.5 ], [ 31.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -7.5 ], [ 31.5, -8.0 ], [ 31.0, -8.0 ], [ 31.0, -7.5 ], [ 31.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -7.5 ], [ 32.0, -8.0 ], [ 31.5, -8.0 ], [ 31.5, -7.5 ], [ 32.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -7.5 ], [ 32.5, -8.0 ], [ 32.0, -8.0 ], [ 32.0, -7.5 ], [ 32.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -7.5 ], [ 33.0, -8.0 ], [ 32.5, -8.0 ], [ 32.5, -7.5 ], [ 33.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -7.5 ], [ 33.5, -8.0 ], [ 33.0, -8.0 ], [ 33.0, -7.5 ], [ 33.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -7.5 ], [ 34.0, -8.0 ], [ 33.5, -8.0 ], [ 33.5, -7.5 ], [ 34.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -7.5 ], [ 34.5, -8.0 ], [ 34.0, -8.0 ], [ 34.0, -7.5 ], [ 34.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -7.5 ], [ 35.0, -8.0 ], [ 34.5, -8.0 ], [ 34.5, -7.5 ], [ 35.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -7.5 ], [ 35.5, -8.0 ], [ 35.0, -8.0 ], [ 35.0, -7.5 ], [ 35.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -7.5 ], [ 36.0, -8.0 ], [ 35.5, -8.0 ], [ 35.5, -7.5 ], [ 36.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -7.5 ], [ 36.5, -8.0 ], [ 36.0, -8.0 ], [ 36.0, -7.5 ], [ 36.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -7.5 ], [ 37.0, -8.0 ], [ 36.5, -8.0 ], [ 36.5, -7.5 ], [ 37.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -7.5 ], [ 37.5, -8.0 ], [ 37.0, -8.0 ], [ 37.0, -7.5 ], [ 37.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -7.5 ], [ 38.0, -8.0 ], [ 37.5, -8.0 ], [ 37.5, -7.5 ], [ 38.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -7.5 ], [ 38.5, -8.0 ], [ 38.0, -8.0 ], [ 38.0, -7.5 ], [ 38.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -7.5 ], [ 39.0, -8.0 ], [ 38.5, -8.0 ], [ 38.5, -7.5 ], [ 39.0, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -7.5 ], [ 39.5, -8.0 ], [ 39.0, -8.0 ], [ 39.0, -7.5 ], [ 39.5, -7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -7.0 ], [ 13.5, -7.5 ], [ 13.0, -7.5 ], [ 13.0, -7.0 ], [ 13.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -7.0 ], [ 14.0, -7.5 ], [ 13.5, -7.5 ], [ 13.5, -7.0 ], [ 14.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -7.0 ], [ 14.5, -7.5 ], [ 14.0, -7.5 ], [ 14.0, -7.0 ], [ 14.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -7.0 ], [ 15.0, -7.5 ], [ 14.5, -7.5 ], [ 14.5, -7.0 ], [ 15.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -7.0 ], [ 15.5, -7.5 ], [ 15.0, -7.5 ], [ 15.0, -7.0 ], [ 15.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -7.0 ], [ 16.0, -7.5 ], [ 15.5, -7.5 ], [ 15.5, -7.0 ], [ 16.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -7.0 ], [ 16.5, -7.5 ], [ 16.0, -7.5 ], [ 16.0, -7.0 ], [ 16.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -7.0 ], [ 17.0, -7.5 ], [ 16.5, -7.5 ], [ 16.5, -7.0 ], [ 17.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -7.0 ], [ 17.5, -7.5 ], [ 17.0, -7.5 ], [ 17.0, -7.0 ], [ 17.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -7.0 ], [ 18.0, -7.5 ], [ 17.5, -7.5 ], [ 17.5, -7.0 ], [ 18.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -7.0 ], [ 18.5, -7.5 ], [ 18.0, -7.5 ], [ 18.0, -7.0 ], [ 18.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -7.0 ], [ 19.0, -7.5 ], [ 18.5, -7.5 ], [ 18.5, -7.0 ], [ 19.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -7.0 ], [ 19.5, -7.5 ], [ 19.0, -7.5 ], [ 19.0, -7.0 ], [ 19.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -7.0 ], [ 20.0, -7.5 ], [ 19.5, -7.5 ], [ 19.5, -7.0 ], [ 20.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -7.0 ], [ 20.5, -7.5 ], [ 20.0, -7.5 ], [ 20.0, -7.0 ], [ 20.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -7.0 ], [ 21.0, -7.5 ], [ 20.5, -7.5 ], [ 20.5, -7.0 ], [ 21.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -7.0 ], [ 21.5, -7.5 ], [ 21.0, -7.5 ], [ 21.0, -7.0 ], [ 21.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -7.0 ], [ 22.0, -7.5 ], [ 21.5, -7.5 ], [ 21.5, -7.0 ], [ 22.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -7.0 ], [ 22.5, -7.5 ], [ 22.0, -7.5 ], [ 22.0, -7.0 ], [ 22.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -7.0 ], [ 23.0, -7.5 ], [ 22.5, -7.5 ], [ 22.5, -7.0 ], [ 23.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -7.0 ], [ 23.5, -7.5 ], [ 23.0, -7.5 ], [ 23.0, -7.0 ], [ 23.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -7.0 ], [ 24.0, -7.5 ], [ 23.5, -7.5 ], [ 23.5, -7.0 ], [ 24.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -7.0 ], [ 24.5, -7.5 ], [ 24.0, -7.5 ], [ 24.0, -7.0 ], [ 24.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -7.0 ], [ 25.0, -7.5 ], [ 24.5, -7.5 ], [ 24.5, -7.0 ], [ 25.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -7.0 ], [ 25.5, -7.5 ], [ 25.0, -7.5 ], [ 25.0, -7.0 ], [ 25.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -7.0 ], [ 26.0, -7.5 ], [ 25.5, -7.5 ], [ 25.5, -7.0 ], [ 26.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -7.0 ], [ 26.5, -7.5 ], [ 26.0, -7.5 ], [ 26.0, -7.0 ], [ 26.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -7.0 ], [ 27.0, -7.5 ], [ 26.5, -7.5 ], [ 26.5, -7.0 ], [ 27.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -7.0 ], [ 27.5, -7.5 ], [ 27.0, -7.5 ], [ 27.0, -7.0 ], [ 27.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -7.0 ], [ 28.0, -7.5 ], [ 27.5, -7.5 ], [ 27.5, -7.0 ], [ 28.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -7.0 ], [ 28.5, -7.5 ], [ 28.0, -7.5 ], [ 28.0, -7.0 ], [ 28.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -7.0 ], [ 29.0, -7.5 ], [ 28.5, -7.5 ], [ 28.5, -7.0 ], [ 29.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -7.0 ], [ 29.5, -7.5 ], [ 29.0, -7.5 ], [ 29.0, -7.0 ], [ 29.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -7.0 ], [ 30.0, -7.5 ], [ 29.5, -7.5 ], [ 29.5, -7.0 ], [ 30.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -7.0 ], [ 30.5, -7.5 ], [ 30.0, -7.5 ], [ 30.0, -7.0 ], [ 30.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -7.0 ], [ 31.0, -7.5 ], [ 30.5, -7.5 ], [ 30.5, -7.0 ], [ 31.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -7.0 ], [ 31.5, -7.5 ], [ 31.0, -7.5 ], [ 31.0, -7.0 ], [ 31.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -7.0 ], [ 32.0, -7.5 ], [ 31.5, -7.5 ], [ 31.5, -7.0 ], [ 32.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -7.0 ], [ 32.5, -7.5 ], [ 32.0, -7.5 ], [ 32.0, -7.0 ], [ 32.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -7.0 ], [ 33.0, -7.5 ], [ 32.5, -7.5 ], [ 32.5, -7.0 ], [ 33.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -7.0 ], [ 33.5, -7.5 ], [ 33.0, -7.5 ], [ 33.0, -7.0 ], [ 33.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -7.0 ], [ 34.0, -7.5 ], [ 33.5, -7.5 ], [ 33.5, -7.0 ], [ 34.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -7.0 ], [ 34.5, -7.5 ], [ 34.0, -7.5 ], [ 34.0, -7.0 ], [ 34.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -7.0 ], [ 35.0, -7.5 ], [ 34.5, -7.5 ], [ 34.5, -7.0 ], [ 35.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -7.0 ], [ 35.5, -7.5 ], [ 35.0, -7.5 ], [ 35.0, -7.0 ], [ 35.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -7.0 ], [ 36.0, -7.5 ], [ 35.5, -7.5 ], [ 35.5, -7.0 ], [ 36.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -7.0 ], [ 36.5, -7.5 ], [ 36.0, -7.5 ], [ 36.0, -7.0 ], [ 36.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -7.0 ], [ 37.0, -7.5 ], [ 36.5, -7.5 ], [ 36.5, -7.0 ], [ 37.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -7.0 ], [ 37.5, -7.5 ], [ 37.0, -7.5 ], [ 37.0, -7.0 ], [ 37.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -7.0 ], [ 38.0, -7.5 ], [ 37.5, -7.5 ], [ 37.5, -7.0 ], [ 38.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -7.0 ], [ 38.5, -7.5 ], [ 38.0, -7.5 ], [ 38.0, -7.0 ], [ 38.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -7.0 ], [ 39.0, -7.5 ], [ 38.5, -7.5 ], [ 38.5, -7.0 ], [ 39.0, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -7.0 ], [ 39.5, -7.5 ], [ 39.0, -7.5 ], [ 39.0, -7.0 ], [ 39.5, -7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -6.5 ], [ 13.0, -7.0 ], [ 12.5, -7.0 ], [ 12.5, -6.5 ], [ 13.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -6.5 ], [ 13.5, -7.0 ], [ 13.0, -7.0 ], [ 13.0, -6.5 ], [ 13.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -6.5 ], [ 14.0, -7.0 ], [ 13.5, -7.0 ], [ 13.5, -6.5 ], [ 14.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -6.5 ], [ 14.5, -7.0 ], [ 14.0, -7.0 ], [ 14.0, -6.5 ], [ 14.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -6.5 ], [ 15.0, -7.0 ], [ 14.5, -7.0 ], [ 14.5, -6.5 ], [ 15.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -6.5 ], [ 15.5, -7.0 ], [ 15.0, -7.0 ], [ 15.0, -6.5 ], [ 15.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -6.5 ], [ 16.0, -7.0 ], [ 15.5, -7.0 ], [ 15.5, -6.5 ], [ 16.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -6.5 ], [ 16.5, -7.0 ], [ 16.0, -7.0 ], [ 16.0, -6.5 ], [ 16.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -6.5 ], [ 17.0, -7.0 ], [ 16.5, -7.0 ], [ 16.5, -6.5 ], [ 17.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -6.5 ], [ 17.5, -7.0 ], [ 17.0, -7.0 ], [ 17.0, -6.5 ], [ 17.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -6.5 ], [ 18.0, -7.0 ], [ 17.5, -7.0 ], [ 17.5, -6.5 ], [ 18.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -6.5 ], [ 18.5, -7.0 ], [ 18.0, -7.0 ], [ 18.0, -6.5 ], [ 18.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -6.5 ], [ 19.0, -7.0 ], [ 18.5, -7.0 ], [ 18.5, -6.5 ], [ 19.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -6.5 ], [ 19.5, -7.0 ], [ 19.0, -7.0 ], [ 19.0, -6.5 ], [ 19.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -6.5 ], [ 20.0, -7.0 ], [ 19.5, -7.0 ], [ 19.5, -6.5 ], [ 20.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -6.5 ], [ 20.5, -7.0 ], [ 20.0, -7.0 ], [ 20.0, -6.5 ], [ 20.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -6.5 ], [ 21.0, -7.0 ], [ 20.5, -7.0 ], [ 20.5, -6.5 ], [ 21.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -6.5 ], [ 21.5, -7.0 ], [ 21.0, -7.0 ], [ 21.0, -6.5 ], [ 21.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -6.5 ], [ 22.0, -7.0 ], [ 21.5, -7.0 ], [ 21.5, -6.5 ], [ 22.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -6.5 ], [ 22.5, -7.0 ], [ 22.0, -7.0 ], [ 22.0, -6.5 ], [ 22.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -6.5 ], [ 23.0, -7.0 ], [ 22.5, -7.0 ], [ 22.5, -6.5 ], [ 23.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -6.5 ], [ 23.5, -7.0 ], [ 23.0, -7.0 ], [ 23.0, -6.5 ], [ 23.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -6.5 ], [ 24.0, -7.0 ], [ 23.5, -7.0 ], [ 23.5, -6.5 ], [ 24.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -6.5 ], [ 24.5, -7.0 ], [ 24.0, -7.0 ], [ 24.0, -6.5 ], [ 24.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -6.5 ], [ 25.0, -7.0 ], [ 24.5, -7.0 ], [ 24.5, -6.5 ], [ 25.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -6.5 ], [ 25.5, -7.0 ], [ 25.0, -7.0 ], [ 25.0, -6.5 ], [ 25.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -6.5 ], [ 26.0, -7.0 ], [ 25.5, -7.0 ], [ 25.5, -6.5 ], [ 26.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -6.5 ], [ 26.5, -7.0 ], [ 26.0, -7.0 ], [ 26.0, -6.5 ], [ 26.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -6.5 ], [ 27.0, -7.0 ], [ 26.5, -7.0 ], [ 26.5, -6.5 ], [ 27.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -6.5 ], [ 27.5, -7.0 ], [ 27.0, -7.0 ], [ 27.0, -6.5 ], [ 27.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -6.5 ], [ 28.0, -7.0 ], [ 27.5, -7.0 ], [ 27.5, -6.5 ], [ 28.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -6.5 ], [ 28.5, -7.0 ], [ 28.0, -7.0 ], [ 28.0, -6.5 ], [ 28.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -6.5 ], [ 29.0, -7.0 ], [ 28.5, -7.0 ], [ 28.5, -6.5 ], [ 29.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -6.5 ], [ 29.5, -7.0 ], [ 29.0, -7.0 ], [ 29.0, -6.5 ], [ 29.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -6.5 ], [ 30.0, -7.0 ], [ 29.5, -7.0 ], [ 29.5, -6.5 ], [ 30.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -6.5 ], [ 30.5, -7.0 ], [ 30.0, -7.0 ], [ 30.0, -6.5 ], [ 30.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -6.5 ], [ 31.0, -7.0 ], [ 30.5, -7.0 ], [ 30.5, -6.5 ], [ 31.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -6.5 ], [ 31.5, -7.0 ], [ 31.0, -7.0 ], [ 31.0, -6.5 ], [ 31.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -6.5 ], [ 32.0, -7.0 ], [ 31.5, -7.0 ], [ 31.5, -6.5 ], [ 32.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -6.5 ], [ 32.5, -7.0 ], [ 32.0, -7.0 ], [ 32.0, -6.5 ], [ 32.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -6.5 ], [ 33.0, -7.0 ], [ 32.5, -7.0 ], [ 32.5, -6.5 ], [ 33.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -6.5 ], [ 33.5, -7.0 ], [ 33.0, -7.0 ], [ 33.0, -6.5 ], [ 33.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -6.5 ], [ 34.0, -7.0 ], [ 33.5, -7.0 ], [ 33.5, -6.5 ], [ 34.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -6.5 ], [ 34.5, -7.0 ], [ 34.0, -7.0 ], [ 34.0, -6.5 ], [ 34.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -6.5 ], [ 35.0, -7.0 ], [ 34.5, -7.0 ], [ 34.5, -6.5 ], [ 35.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -6.5 ], [ 35.5, -7.0 ], [ 35.0, -7.0 ], [ 35.0, -6.5 ], [ 35.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -6.5 ], [ 36.0, -7.0 ], [ 35.5, -7.0 ], [ 35.5, -6.5 ], [ 36.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -6.5 ], [ 36.5, -7.0 ], [ 36.0, -7.0 ], [ 36.0, -6.5 ], [ 36.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -6.5 ], [ 37.0, -7.0 ], [ 36.5, -7.0 ], [ 36.5, -6.5 ], [ 37.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -6.5 ], [ 37.5, -7.0 ], [ 37.0, -7.0 ], [ 37.0, -6.5 ], [ 37.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -6.5 ], [ 38.0, -7.0 ], [ 37.5, -7.0 ], [ 37.5, -6.5 ], [ 38.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -6.5 ], [ 38.5, -7.0 ], [ 38.0, -7.0 ], [ 38.0, -6.5 ], [ 38.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -6.5 ], [ 39.0, -7.0 ], [ 38.5, -7.0 ], [ 38.5, -6.5 ], [ 39.0, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -6.5 ], [ 39.5, -7.0 ], [ 39.0, -7.0 ], [ 39.0, -6.5 ], [ 39.5, -6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -6.0 ], [ 13.0, -6.5 ], [ 12.5, -6.5 ], [ 12.5, -6.0 ], [ 13.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -6.0 ], [ 13.5, -6.5 ], [ 13.0, -6.5 ], [ 13.0, -6.0 ], [ 13.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -6.0 ], [ 14.0, -6.5 ], [ 13.5, -6.5 ], [ 13.5, -6.0 ], [ 14.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -6.0 ], [ 14.5, -6.5 ], [ 14.0, -6.5 ], [ 14.0, -6.0 ], [ 14.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -6.0 ], [ 15.0, -6.5 ], [ 14.5, -6.5 ], [ 14.5, -6.0 ], [ 15.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -6.0 ], [ 15.5, -6.5 ], [ 15.0, -6.5 ], [ 15.0, -6.0 ], [ 15.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -6.0 ], [ 16.0, -6.5 ], [ 15.5, -6.5 ], [ 15.5, -6.0 ], [ 16.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -6.0 ], [ 16.5, -6.5 ], [ 16.0, -6.5 ], [ 16.0, -6.0 ], [ 16.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -6.0 ], [ 17.0, -6.5 ], [ 16.5, -6.5 ], [ 16.5, -6.0 ], [ 17.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -6.0 ], [ 17.5, -6.5 ], [ 17.0, -6.5 ], [ 17.0, -6.0 ], [ 17.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -6.0 ], [ 18.0, -6.5 ], [ 17.5, -6.5 ], [ 17.5, -6.0 ], [ 18.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -6.0 ], [ 18.5, -6.5 ], [ 18.0, -6.5 ], [ 18.0, -6.0 ], [ 18.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -6.0 ], [ 19.0, -6.5 ], [ 18.5, -6.5 ], [ 18.5, -6.0 ], [ 19.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -6.0 ], [ 19.5, -6.5 ], [ 19.0, -6.5 ], [ 19.0, -6.0 ], [ 19.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -6.0 ], [ 20.0, -6.5 ], [ 19.5, -6.5 ], [ 19.5, -6.0 ], [ 20.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -6.0 ], [ 20.5, -6.5 ], [ 20.0, -6.5 ], [ 20.0, -6.0 ], [ 20.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -6.0 ], [ 21.0, -6.5 ], [ 20.5, -6.5 ], [ 20.5, -6.0 ], [ 21.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -6.0 ], [ 21.5, -6.5 ], [ 21.0, -6.5 ], [ 21.0, -6.0 ], [ 21.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -6.0 ], [ 22.0, -6.5 ], [ 21.5, -6.5 ], [ 21.5, -6.0 ], [ 22.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -6.0 ], [ 22.5, -6.5 ], [ 22.0, -6.5 ], [ 22.0, -6.0 ], [ 22.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -6.0 ], [ 23.0, -6.5 ], [ 22.5, -6.5 ], [ 22.5, -6.0 ], [ 23.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -6.0 ], [ 23.5, -6.5 ], [ 23.0, -6.5 ], [ 23.0, -6.0 ], [ 23.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -6.0 ], [ 24.0, -6.5 ], [ 23.5, -6.5 ], [ 23.5, -6.0 ], [ 24.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -6.0 ], [ 24.5, -6.5 ], [ 24.0, -6.5 ], [ 24.0, -6.0 ], [ 24.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -6.0 ], [ 25.0, -6.5 ], [ 24.5, -6.5 ], [ 24.5, -6.0 ], [ 25.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -6.0 ], [ 25.5, -6.5 ], [ 25.0, -6.5 ], [ 25.0, -6.0 ], [ 25.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -6.0 ], [ 26.0, -6.5 ], [ 25.5, -6.5 ], [ 25.5, -6.0 ], [ 26.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -6.0 ], [ 26.5, -6.5 ], [ 26.0, -6.5 ], [ 26.0, -6.0 ], [ 26.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -6.0 ], [ 27.0, -6.5 ], [ 26.5, -6.5 ], [ 26.5, -6.0 ], [ 27.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -6.0 ], [ 27.5, -6.5 ], [ 27.0, -6.5 ], [ 27.0, -6.0 ], [ 27.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -6.0 ], [ 28.0, -6.5 ], [ 27.5, -6.5 ], [ 27.5, -6.0 ], [ 28.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -6.0 ], [ 28.5, -6.5 ], [ 28.0, -6.5 ], [ 28.0, -6.0 ], [ 28.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -6.0 ], [ 29.0, -6.5 ], [ 28.5, -6.5 ], [ 28.5, -6.0 ], [ 29.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -6.0 ], [ 29.5, -6.5 ], [ 29.0, -6.5 ], [ 29.0, -6.0 ], [ 29.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -6.0 ], [ 30.0, -6.5 ], [ 29.5, -6.5 ], [ 29.5, -6.0 ], [ 30.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -6.0 ], [ 30.5, -6.5 ], [ 30.0, -6.5 ], [ 30.0, -6.0 ], [ 30.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -6.0 ], [ 31.0, -6.5 ], [ 30.5, -6.5 ], [ 30.5, -6.0 ], [ 31.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -6.0 ], [ 31.5, -6.5 ], [ 31.0, -6.5 ], [ 31.0, -6.0 ], [ 31.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -6.0 ], [ 32.0, -6.5 ], [ 31.5, -6.5 ], [ 31.5, -6.0 ], [ 32.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -6.0 ], [ 32.5, -6.5 ], [ 32.0, -6.5 ], [ 32.0, -6.0 ], [ 32.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -6.0 ], [ 33.0, -6.5 ], [ 32.5, -6.5 ], [ 32.5, -6.0 ], [ 33.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -6.0 ], [ 33.5, -6.5 ], [ 33.0, -6.5 ], [ 33.0, -6.0 ], [ 33.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -6.0 ], [ 34.0, -6.5 ], [ 33.5, -6.5 ], [ 33.5, -6.0 ], [ 34.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -6.0 ], [ 34.5, -6.5 ], [ 34.0, -6.5 ], [ 34.0, -6.0 ], [ 34.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -6.0 ], [ 35.0, -6.5 ], [ 34.5, -6.5 ], [ 34.5, -6.0 ], [ 35.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -6.0 ], [ 35.5, -6.5 ], [ 35.0, -6.5 ], [ 35.0, -6.0 ], [ 35.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -6.0 ], [ 36.0, -6.5 ], [ 35.5, -6.5 ], [ 35.5, -6.0 ], [ 36.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -6.0 ], [ 36.5, -6.5 ], [ 36.0, -6.5 ], [ 36.0, -6.0 ], [ 36.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -6.0 ], [ 37.0, -6.5 ], [ 36.5, -6.5 ], [ 36.5, -6.0 ], [ 37.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -6.0 ], [ 37.5, -6.5 ], [ 37.0, -6.5 ], [ 37.0, -6.0 ], [ 37.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -6.0 ], [ 38.0, -6.5 ], [ 37.5, -6.5 ], [ 37.5, -6.0 ], [ 38.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -6.0 ], [ 38.5, -6.5 ], [ 38.0, -6.5 ], [ 38.0, -6.0 ], [ 38.5, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -6.0 ], [ 39.0, -6.5 ], [ 38.5, -6.5 ], [ 38.5, -6.0 ], [ 39.0, -6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -5.5 ], [ 12.5, -6.0 ], [ 12.0, -6.0 ], [ 12.0, -5.5 ], [ 12.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -5.5 ], [ 13.0, -6.0 ], [ 12.5, -6.0 ], [ 12.5, -5.5 ], [ 13.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -5.5 ], [ 13.5, -6.0 ], [ 13.0, -6.0 ], [ 13.0, -5.5 ], [ 13.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -5.5 ], [ 14.0, -6.0 ], [ 13.5, -6.0 ], [ 13.5, -5.5 ], [ 14.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -5.5 ], [ 14.5, -6.0 ], [ 14.0, -6.0 ], [ 14.0, -5.5 ], [ 14.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -5.5 ], [ 15.0, -6.0 ], [ 14.5, -6.0 ], [ 14.5, -5.5 ], [ 15.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -5.5 ], [ 15.5, -6.0 ], [ 15.0, -6.0 ], [ 15.0, -5.5 ], [ 15.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -5.5 ], [ 16.0, -6.0 ], [ 15.5, -6.0 ], [ 15.5, -5.5 ], [ 16.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -5.5 ], [ 16.5, -6.0 ], [ 16.0, -6.0 ], [ 16.0, -5.5 ], [ 16.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -5.5 ], [ 17.0, -6.0 ], [ 16.5, -6.0 ], [ 16.5, -5.5 ], [ 17.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -5.5 ], [ 17.5, -6.0 ], [ 17.0, -6.0 ], [ 17.0, -5.5 ], [ 17.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -5.5 ], [ 18.0, -6.0 ], [ 17.5, -6.0 ], [ 17.5, -5.5 ], [ 18.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -5.5 ], [ 18.5, -6.0 ], [ 18.0, -6.0 ], [ 18.0, -5.5 ], [ 18.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -5.5 ], [ 19.0, -6.0 ], [ 18.5, -6.0 ], [ 18.5, -5.5 ], [ 19.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -5.5 ], [ 19.5, -6.0 ], [ 19.0, -6.0 ], [ 19.0, -5.5 ], [ 19.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -5.5 ], [ 20.0, -6.0 ], [ 19.5, -6.0 ], [ 19.5, -5.5 ], [ 20.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -5.5 ], [ 20.5, -6.0 ], [ 20.0, -6.0 ], [ 20.0, -5.5 ], [ 20.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -5.5 ], [ 21.0, -6.0 ], [ 20.5, -6.0 ], [ 20.5, -5.5 ], [ 21.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -5.5 ], [ 21.5, -6.0 ], [ 21.0, -6.0 ], [ 21.0, -5.5 ], [ 21.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -5.5 ], [ 22.0, -6.0 ], [ 21.5, -6.0 ], [ 21.5, -5.5 ], [ 22.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -5.5 ], [ 22.5, -6.0 ], [ 22.0, -6.0 ], [ 22.0, -5.5 ], [ 22.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -5.5 ], [ 23.0, -6.0 ], [ 22.5, -6.0 ], [ 22.5, -5.5 ], [ 23.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -5.5 ], [ 23.5, -6.0 ], [ 23.0, -6.0 ], [ 23.0, -5.5 ], [ 23.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -5.5 ], [ 24.0, -6.0 ], [ 23.5, -6.0 ], [ 23.5, -5.5 ], [ 24.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -5.5 ], [ 24.5, -6.0 ], [ 24.0, -6.0 ], [ 24.0, -5.5 ], [ 24.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -5.5 ], [ 25.0, -6.0 ], [ 24.5, -6.0 ], [ 24.5, -5.5 ], [ 25.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -5.5 ], [ 25.5, -6.0 ], [ 25.0, -6.0 ], [ 25.0, -5.5 ], [ 25.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -5.5 ], [ 26.0, -6.0 ], [ 25.5, -6.0 ], [ 25.5, -5.5 ], [ 26.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -5.5 ], [ 26.5, -6.0 ], [ 26.0, -6.0 ], [ 26.0, -5.5 ], [ 26.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -5.5 ], [ 27.0, -6.0 ], [ 26.5, -6.0 ], [ 26.5, -5.5 ], [ 27.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -5.5 ], [ 27.5, -6.0 ], [ 27.0, -6.0 ], [ 27.0, -5.5 ], [ 27.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -5.5 ], [ 28.0, -6.0 ], [ 27.5, -6.0 ], [ 27.5, -5.5 ], [ 28.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -5.5 ], [ 28.5, -6.0 ], [ 28.0, -6.0 ], [ 28.0, -5.5 ], [ 28.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -5.5 ], [ 29.0, -6.0 ], [ 28.5, -6.0 ], [ 28.5, -5.5 ], [ 29.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -5.5 ], [ 29.5, -6.0 ], [ 29.0, -6.0 ], [ 29.0, -5.5 ], [ 29.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -5.5 ], [ 30.0, -6.0 ], [ 29.5, -6.0 ], [ 29.5, -5.5 ], [ 30.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -5.5 ], [ 30.5, -6.0 ], [ 30.0, -6.0 ], [ 30.0, -5.5 ], [ 30.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -5.5 ], [ 31.0, -6.0 ], [ 30.5, -6.0 ], [ 30.5, -5.5 ], [ 31.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -5.5 ], [ 31.5, -6.0 ], [ 31.0, -6.0 ], [ 31.0, -5.5 ], [ 31.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -5.5 ], [ 32.0, -6.0 ], [ 31.5, -6.0 ], [ 31.5, -5.5 ], [ 32.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -5.5 ], [ 32.5, -6.0 ], [ 32.0, -6.0 ], [ 32.0, -5.5 ], [ 32.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -5.5 ], [ 33.0, -6.0 ], [ 32.5, -6.0 ], [ 32.5, -5.5 ], [ 33.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -5.5 ], [ 33.5, -6.0 ], [ 33.0, -6.0 ], [ 33.0, -5.5 ], [ 33.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -5.5 ], [ 34.0, -6.0 ], [ 33.5, -6.0 ], [ 33.5, -5.5 ], [ 34.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -5.5 ], [ 34.5, -6.0 ], [ 34.0, -6.0 ], [ 34.0, -5.5 ], [ 34.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -5.5 ], [ 35.0, -6.0 ], [ 34.5, -6.0 ], [ 34.5, -5.5 ], [ 35.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -5.5 ], [ 35.5, -6.0 ], [ 35.0, -6.0 ], [ 35.0, -5.5 ], [ 35.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -5.5 ], [ 36.0, -6.0 ], [ 35.5, -6.0 ], [ 35.5, -5.5 ], [ 36.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -5.5 ], [ 36.5, -6.0 ], [ 36.0, -6.0 ], [ 36.0, -5.5 ], [ 36.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -5.5 ], [ 37.0, -6.0 ], [ 36.5, -6.0 ], [ 36.5, -5.5 ], [ 37.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -5.5 ], [ 37.5, -6.0 ], [ 37.0, -6.0 ], [ 37.0, -5.5 ], [ 37.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -5.5 ], [ 38.0, -6.0 ], [ 37.5, -6.0 ], [ 37.5, -5.5 ], [ 38.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -5.5 ], [ 38.5, -6.0 ], [ 38.0, -6.0 ], [ 38.0, -5.5 ], [ 38.5, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -5.5 ], [ 39.0, -6.0 ], [ 38.5, -6.0 ], [ 38.5, -5.5 ], [ 39.0, -5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -5.0 ], [ 12.5, -5.5 ], [ 12.0, -5.5 ], [ 12.0, -5.0 ], [ 12.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -5.0 ], [ 13.0, -5.5 ], [ 12.5, -5.5 ], [ 12.5, -5.0 ], [ 13.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -5.0 ], [ 13.5, -5.5 ], [ 13.0, -5.5 ], [ 13.0, -5.0 ], [ 13.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -5.0 ], [ 14.0, -5.5 ], [ 13.5, -5.5 ], [ 13.5, -5.0 ], [ 14.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -5.0 ], [ 14.5, -5.5 ], [ 14.0, -5.5 ], [ 14.0, -5.0 ], [ 14.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -5.0 ], [ 15.0, -5.5 ], [ 14.5, -5.5 ], [ 14.5, -5.0 ], [ 15.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -5.0 ], [ 15.5, -5.5 ], [ 15.0, -5.5 ], [ 15.0, -5.0 ], [ 15.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -5.0 ], [ 16.0, -5.5 ], [ 15.5, -5.5 ], [ 15.5, -5.0 ], [ 16.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -5.0 ], [ 16.5, -5.5 ], [ 16.0, -5.5 ], [ 16.0, -5.0 ], [ 16.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -5.0 ], [ 17.0, -5.5 ], [ 16.5, -5.5 ], [ 16.5, -5.0 ], [ 17.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -5.0 ], [ 17.5, -5.5 ], [ 17.0, -5.5 ], [ 17.0, -5.0 ], [ 17.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -5.0 ], [ 18.0, -5.5 ], [ 17.5, -5.5 ], [ 17.5, -5.0 ], [ 18.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -5.0 ], [ 18.5, -5.5 ], [ 18.0, -5.5 ], [ 18.0, -5.0 ], [ 18.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -5.0 ], [ 19.0, -5.5 ], [ 18.5, -5.5 ], [ 18.5, -5.0 ], [ 19.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -5.0 ], [ 19.5, -5.5 ], [ 19.0, -5.5 ], [ 19.0, -5.0 ], [ 19.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -5.0 ], [ 20.0, -5.5 ], [ 19.5, -5.5 ], [ 19.5, -5.0 ], [ 20.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -5.0 ], [ 20.5, -5.5 ], [ 20.0, -5.5 ], [ 20.0, -5.0 ], [ 20.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -5.0 ], [ 21.0, -5.5 ], [ 20.5, -5.5 ], [ 20.5, -5.0 ], [ 21.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -5.0 ], [ 21.5, -5.5 ], [ 21.0, -5.5 ], [ 21.0, -5.0 ], [ 21.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -5.0 ], [ 22.0, -5.5 ], [ 21.5, -5.5 ], [ 21.5, -5.0 ], [ 22.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -5.0 ], [ 22.5, -5.5 ], [ 22.0, -5.5 ], [ 22.0, -5.0 ], [ 22.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -5.0 ], [ 23.0, -5.5 ], [ 22.5, -5.5 ], [ 22.5, -5.0 ], [ 23.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -5.0 ], [ 23.5, -5.5 ], [ 23.0, -5.5 ], [ 23.0, -5.0 ], [ 23.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -5.0 ], [ 24.0, -5.5 ], [ 23.5, -5.5 ], [ 23.5, -5.0 ], [ 24.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -5.0 ], [ 24.5, -5.5 ], [ 24.0, -5.5 ], [ 24.0, -5.0 ], [ 24.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -5.0 ], [ 25.0, -5.5 ], [ 24.5, -5.5 ], [ 24.5, -5.0 ], [ 25.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -5.0 ], [ 25.5, -5.5 ], [ 25.0, -5.5 ], [ 25.0, -5.0 ], [ 25.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -5.0 ], [ 26.0, -5.5 ], [ 25.5, -5.5 ], [ 25.5, -5.0 ], [ 26.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -5.0 ], [ 26.5, -5.5 ], [ 26.0, -5.5 ], [ 26.0, -5.0 ], [ 26.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -5.0 ], [ 27.0, -5.5 ], [ 26.5, -5.5 ], [ 26.5, -5.0 ], [ 27.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -5.0 ], [ 27.5, -5.5 ], [ 27.0, -5.5 ], [ 27.0, -5.0 ], [ 27.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -5.0 ], [ 28.0, -5.5 ], [ 27.5, -5.5 ], [ 27.5, -5.0 ], [ 28.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -5.0 ], [ 28.5, -5.5 ], [ 28.0, -5.5 ], [ 28.0, -5.0 ], [ 28.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -5.0 ], [ 29.0, -5.5 ], [ 28.5, -5.5 ], [ 28.5, -5.0 ], [ 29.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -5.0 ], [ 29.5, -5.5 ], [ 29.0, -5.5 ], [ 29.0, -5.0 ], [ 29.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -5.0 ], [ 30.0, -5.5 ], [ 29.5, -5.5 ], [ 29.5, -5.0 ], [ 30.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -5.0 ], [ 30.5, -5.5 ], [ 30.0, -5.5 ], [ 30.0, -5.0 ], [ 30.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -5.0 ], [ 31.0, -5.5 ], [ 30.5, -5.5 ], [ 30.5, -5.0 ], [ 31.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -5.0 ], [ 31.5, -5.5 ], [ 31.0, -5.5 ], [ 31.0, -5.0 ], [ 31.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -5.0 ], [ 32.0, -5.5 ], [ 31.5, -5.5 ], [ 31.5, -5.0 ], [ 32.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -5.0 ], [ 32.5, -5.5 ], [ 32.0, -5.5 ], [ 32.0, -5.0 ], [ 32.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -5.0 ], [ 33.0, -5.5 ], [ 32.5, -5.5 ], [ 32.5, -5.0 ], [ 33.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -5.0 ], [ 33.5, -5.5 ], [ 33.0, -5.5 ], [ 33.0, -5.0 ], [ 33.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -5.0 ], [ 34.0, -5.5 ], [ 33.5, -5.5 ], [ 33.5, -5.0 ], [ 34.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -5.0 ], [ 34.5, -5.5 ], [ 34.0, -5.5 ], [ 34.0, -5.0 ], [ 34.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -5.0 ], [ 35.0, -5.5 ], [ 34.5, -5.5 ], [ 34.5, -5.0 ], [ 35.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -5.0 ], [ 35.5, -5.5 ], [ 35.0, -5.5 ], [ 35.0, -5.0 ], [ 35.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -5.0 ], [ 36.0, -5.5 ], [ 35.5, -5.5 ], [ 35.5, -5.0 ], [ 36.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -5.0 ], [ 36.5, -5.5 ], [ 36.0, -5.5 ], [ 36.0, -5.0 ], [ 36.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -5.0 ], [ 37.0, -5.5 ], [ 36.5, -5.5 ], [ 36.5, -5.0 ], [ 37.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -5.0 ], [ 37.5, -5.5 ], [ 37.0, -5.5 ], [ 37.0, -5.0 ], [ 37.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -5.0 ], [ 38.0, -5.5 ], [ 37.5, -5.5 ], [ 37.5, -5.0 ], [ 38.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -5.0 ], [ 38.5, -5.5 ], [ 38.0, -5.5 ], [ 38.0, -5.0 ], [ 38.5, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -5.0 ], [ 39.0, -5.5 ], [ 38.5, -5.5 ], [ 38.5, -5.0 ], [ 39.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -5.0 ], [ 40.0, -5.5 ], [ 39.5, -5.5 ], [ 39.5, -5.0 ], [ 40.0, -5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -4.5 ], [ 12.5, -5.0 ], [ 12.0, -5.0 ], [ 12.0, -4.5 ], [ 12.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -4.5 ], [ 13.0, -5.0 ], [ 12.5, -5.0 ], [ 12.5, -4.5 ], [ 13.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -4.5 ], [ 13.5, -5.0 ], [ 13.0, -5.0 ], [ 13.0, -4.5 ], [ 13.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -4.5 ], [ 14.0, -5.0 ], [ 13.5, -5.0 ], [ 13.5, -4.5 ], [ 14.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -4.5 ], [ 14.5, -5.0 ], [ 14.0, -5.0 ], [ 14.0, -4.5 ], [ 14.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -4.5 ], [ 15.0, -5.0 ], [ 14.5, -5.0 ], [ 14.5, -4.5 ], [ 15.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -4.5 ], [ 15.5, -5.0 ], [ 15.0, -5.0 ], [ 15.0, -4.5 ], [ 15.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -4.5 ], [ 16.0, -5.0 ], [ 15.5, -5.0 ], [ 15.5, -4.5 ], [ 16.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -4.5 ], [ 16.5, -5.0 ], [ 16.0, -5.0 ], [ 16.0, -4.5 ], [ 16.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -4.5 ], [ 17.0, -5.0 ], [ 16.5, -5.0 ], [ 16.5, -4.5 ], [ 17.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -4.5 ], [ 17.5, -5.0 ], [ 17.0, -5.0 ], [ 17.0, -4.5 ], [ 17.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -4.5 ], [ 18.0, -5.0 ], [ 17.5, -5.0 ], [ 17.5, -4.5 ], [ 18.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -4.5 ], [ 18.5, -5.0 ], [ 18.0, -5.0 ], [ 18.0, -4.5 ], [ 18.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -4.5 ], [ 19.0, -5.0 ], [ 18.5, -5.0 ], [ 18.5, -4.5 ], [ 19.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -4.5 ], [ 19.5, -5.0 ], [ 19.0, -5.0 ], [ 19.0, -4.5 ], [ 19.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -4.5 ], [ 20.0, -5.0 ], [ 19.5, -5.0 ], [ 19.5, -4.5 ], [ 20.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -4.5 ], [ 20.5, -5.0 ], [ 20.0, -5.0 ], [ 20.0, -4.5 ], [ 20.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -4.5 ], [ 21.0, -5.0 ], [ 20.5, -5.0 ], [ 20.5, -4.5 ], [ 21.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -4.5 ], [ 21.5, -5.0 ], [ 21.0, -5.0 ], [ 21.0, -4.5 ], [ 21.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -4.5 ], [ 22.0, -5.0 ], [ 21.5, -5.0 ], [ 21.5, -4.5 ], [ 22.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -4.5 ], [ 22.5, -5.0 ], [ 22.0, -5.0 ], [ 22.0, -4.5 ], [ 22.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -4.5 ], [ 23.0, -5.0 ], [ 22.5, -5.0 ], [ 22.5, -4.5 ], [ 23.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -4.5 ], [ 23.5, -5.0 ], [ 23.0, -5.0 ], [ 23.0, -4.5 ], [ 23.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -4.5 ], [ 24.0, -5.0 ], [ 23.5, -5.0 ], [ 23.5, -4.5 ], [ 24.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -4.5 ], [ 24.5, -5.0 ], [ 24.0, -5.0 ], [ 24.0, -4.5 ], [ 24.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -4.5 ], [ 25.0, -5.0 ], [ 24.5, -5.0 ], [ 24.5, -4.5 ], [ 25.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -4.5 ], [ 25.5, -5.0 ], [ 25.0, -5.0 ], [ 25.0, -4.5 ], [ 25.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -4.5 ], [ 26.0, -5.0 ], [ 25.5, -5.0 ], [ 25.5, -4.5 ], [ 26.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -4.5 ], [ 26.5, -5.0 ], [ 26.0, -5.0 ], [ 26.0, -4.5 ], [ 26.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -4.5 ], [ 27.0, -5.0 ], [ 26.5, -5.0 ], [ 26.5, -4.5 ], [ 27.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -4.5 ], [ 27.5, -5.0 ], [ 27.0, -5.0 ], [ 27.0, -4.5 ], [ 27.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -4.5 ], [ 28.0, -5.0 ], [ 27.5, -5.0 ], [ 27.5, -4.5 ], [ 28.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -4.5 ], [ 28.5, -5.0 ], [ 28.0, -5.0 ], [ 28.0, -4.5 ], [ 28.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -4.5 ], [ 29.0, -5.0 ], [ 28.5, -5.0 ], [ 28.5, -4.5 ], [ 29.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -4.5 ], [ 29.5, -5.0 ], [ 29.0, -5.0 ], [ 29.0, -4.5 ], [ 29.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -4.5 ], [ 30.0, -5.0 ], [ 29.5, -5.0 ], [ 29.5, -4.5 ], [ 30.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -4.5 ], [ 30.5, -5.0 ], [ 30.0, -5.0 ], [ 30.0, -4.5 ], [ 30.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -4.5 ], [ 31.0, -5.0 ], [ 30.5, -5.0 ], [ 30.5, -4.5 ], [ 31.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -4.5 ], [ 31.5, -5.0 ], [ 31.0, -5.0 ], [ 31.0, -4.5 ], [ 31.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -4.5 ], [ 32.0, -5.0 ], [ 31.5, -5.0 ], [ 31.5, -4.5 ], [ 32.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -4.5 ], [ 32.5, -5.0 ], [ 32.0, -5.0 ], [ 32.0, -4.5 ], [ 32.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -4.5 ], [ 33.0, -5.0 ], [ 32.5, -5.0 ], [ 32.5, -4.5 ], [ 33.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -4.5 ], [ 33.5, -5.0 ], [ 33.0, -5.0 ], [ 33.0, -4.5 ], [ 33.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -4.5 ], [ 34.0, -5.0 ], [ 33.5, -5.0 ], [ 33.5, -4.5 ], [ 34.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -4.5 ], [ 34.5, -5.0 ], [ 34.0, -5.0 ], [ 34.0, -4.5 ], [ 34.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -4.5 ], [ 35.0, -5.0 ], [ 34.5, -5.0 ], [ 34.5, -4.5 ], [ 35.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -4.5 ], [ 35.5, -5.0 ], [ 35.0, -5.0 ], [ 35.0, -4.5 ], [ 35.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -4.5 ], [ 36.0, -5.0 ], [ 35.5, -5.0 ], [ 35.5, -4.5 ], [ 36.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -4.5 ], [ 36.5, -5.0 ], [ 36.0, -5.0 ], [ 36.0, -4.5 ], [ 36.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -4.5 ], [ 37.0, -5.0 ], [ 36.5, -5.0 ], [ 36.5, -4.5 ], [ 37.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -4.5 ], [ 37.5, -5.0 ], [ 37.0, -5.0 ], [ 37.0, -4.5 ], [ 37.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -4.5 ], [ 38.0, -5.0 ], [ 37.5, -5.0 ], [ 37.5, -4.5 ], [ 38.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -4.5 ], [ 38.5, -5.0 ], [ 38.0, -5.0 ], [ 38.0, -4.5 ], [ 38.5, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -4.5 ], [ 39.0, -5.0 ], [ 38.5, -5.0 ], [ 38.5, -4.5 ], [ 39.0, -4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, -4.0 ], [ 12.0, -4.5 ], [ 11.5, -4.5 ], [ 11.5, -4.0 ], [ 12.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -4.0 ], [ 12.5, -4.5 ], [ 12.0, -4.5 ], [ 12.0, -4.0 ], [ 12.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -4.0 ], [ 13.0, -4.5 ], [ 12.5, -4.5 ], [ 12.5, -4.0 ], [ 13.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -4.0 ], [ 13.5, -4.5 ], [ 13.0, -4.5 ], [ 13.0, -4.0 ], [ 13.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -4.0 ], [ 14.0, -4.5 ], [ 13.5, -4.5 ], [ 13.5, -4.0 ], [ 14.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -4.0 ], [ 14.5, -4.5 ], [ 14.0, -4.5 ], [ 14.0, -4.0 ], [ 14.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -4.0 ], [ 15.0, -4.5 ], [ 14.5, -4.5 ], [ 14.5, -4.0 ], [ 15.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -4.0 ], [ 15.5, -4.5 ], [ 15.0, -4.5 ], [ 15.0, -4.0 ], [ 15.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -4.0 ], [ 16.0, -4.5 ], [ 15.5, -4.5 ], [ 15.5, -4.0 ], [ 16.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -4.0 ], [ 16.5, -4.5 ], [ 16.0, -4.5 ], [ 16.0, -4.0 ], [ 16.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -4.0 ], [ 17.0, -4.5 ], [ 16.5, -4.5 ], [ 16.5, -4.0 ], [ 17.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -4.0 ], [ 17.5, -4.5 ], [ 17.0, -4.5 ], [ 17.0, -4.0 ], [ 17.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -4.0 ], [ 18.0, -4.5 ], [ 17.5, -4.5 ], [ 17.5, -4.0 ], [ 18.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -4.0 ], [ 18.5, -4.5 ], [ 18.0, -4.5 ], [ 18.0, -4.0 ], [ 18.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -4.0 ], [ 19.0, -4.5 ], [ 18.5, -4.5 ], [ 18.5, -4.0 ], [ 19.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -4.0 ], [ 19.5, -4.5 ], [ 19.0, -4.5 ], [ 19.0, -4.0 ], [ 19.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -4.0 ], [ 20.0, -4.5 ], [ 19.5, -4.5 ], [ 19.5, -4.0 ], [ 20.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -4.0 ], [ 20.5, -4.5 ], [ 20.0, -4.5 ], [ 20.0, -4.0 ], [ 20.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -4.0 ], [ 21.0, -4.5 ], [ 20.5, -4.5 ], [ 20.5, -4.0 ], [ 21.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -4.0 ], [ 21.5, -4.5 ], [ 21.0, -4.5 ], [ 21.0, -4.0 ], [ 21.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -4.0 ], [ 22.0, -4.5 ], [ 21.5, -4.5 ], [ 21.5, -4.0 ], [ 22.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -4.0 ], [ 22.5, -4.5 ], [ 22.0, -4.5 ], [ 22.0, -4.0 ], [ 22.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -4.0 ], [ 23.0, -4.5 ], [ 22.5, -4.5 ], [ 22.5, -4.0 ], [ 23.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -4.0 ], [ 23.5, -4.5 ], [ 23.0, -4.5 ], [ 23.0, -4.0 ], [ 23.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -4.0 ], [ 24.0, -4.5 ], [ 23.5, -4.5 ], [ 23.5, -4.0 ], [ 24.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -4.0 ], [ 24.5, -4.5 ], [ 24.0, -4.5 ], [ 24.0, -4.0 ], [ 24.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -4.0 ], [ 25.0, -4.5 ], [ 24.5, -4.5 ], [ 24.5, -4.0 ], [ 25.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -4.0 ], [ 25.5, -4.5 ], [ 25.0, -4.5 ], [ 25.0, -4.0 ], [ 25.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -4.0 ], [ 26.0, -4.5 ], [ 25.5, -4.5 ], [ 25.5, -4.0 ], [ 26.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -4.0 ], [ 26.5, -4.5 ], [ 26.0, -4.5 ], [ 26.0, -4.0 ], [ 26.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -4.0 ], [ 27.0, -4.5 ], [ 26.5, -4.5 ], [ 26.5, -4.0 ], [ 27.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -4.0 ], [ 27.5, -4.5 ], [ 27.0, -4.5 ], [ 27.0, -4.0 ], [ 27.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -4.0 ], [ 28.0, -4.5 ], [ 27.5, -4.5 ], [ 27.5, -4.0 ], [ 28.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -4.0 ], [ 28.5, -4.5 ], [ 28.0, -4.5 ], [ 28.0, -4.0 ], [ 28.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -4.0 ], [ 29.0, -4.5 ], [ 28.5, -4.5 ], [ 28.5, -4.0 ], [ 29.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -4.0 ], [ 29.5, -4.5 ], [ 29.0, -4.5 ], [ 29.0, -4.0 ], [ 29.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -4.0 ], [ 30.0, -4.5 ], [ 29.5, -4.5 ], [ 29.5, -4.0 ], [ 30.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -4.0 ], [ 30.5, -4.5 ], [ 30.0, -4.5 ], [ 30.0, -4.0 ], [ 30.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -4.0 ], [ 31.0, -4.5 ], [ 30.5, -4.5 ], [ 30.5, -4.0 ], [ 31.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -4.0 ], [ 31.5, -4.5 ], [ 31.0, -4.5 ], [ 31.0, -4.0 ], [ 31.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -4.0 ], [ 32.0, -4.5 ], [ 31.5, -4.5 ], [ 31.5, -4.0 ], [ 32.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -4.0 ], [ 32.5, -4.5 ], [ 32.0, -4.5 ], [ 32.0, -4.0 ], [ 32.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -4.0 ], [ 33.0, -4.5 ], [ 32.5, -4.5 ], [ 32.5, -4.0 ], [ 33.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -4.0 ], [ 33.5, -4.5 ], [ 33.0, -4.5 ], [ 33.0, -4.0 ], [ 33.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -4.0 ], [ 34.0, -4.5 ], [ 33.5, -4.5 ], [ 33.5, -4.0 ], [ 34.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -4.0 ], [ 34.5, -4.5 ], [ 34.0, -4.5 ], [ 34.0, -4.0 ], [ 34.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -4.0 ], [ 35.0, -4.5 ], [ 34.5, -4.5 ], [ 34.5, -4.0 ], [ 35.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -4.0 ], [ 35.5, -4.5 ], [ 35.0, -4.5 ], [ 35.0, -4.0 ], [ 35.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -4.0 ], [ 36.0, -4.5 ], [ 35.5, -4.5 ], [ 35.5, -4.0 ], [ 36.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -4.0 ], [ 36.5, -4.5 ], [ 36.0, -4.5 ], [ 36.0, -4.0 ], [ 36.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -4.0 ], [ 37.0, -4.5 ], [ 36.5, -4.5 ], [ 36.5, -4.0 ], [ 37.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -4.0 ], [ 37.5, -4.5 ], [ 37.0, -4.5 ], [ 37.0, -4.0 ], [ 37.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -4.0 ], [ 38.0, -4.5 ], [ 37.5, -4.5 ], [ 37.5, -4.0 ], [ 38.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -4.0 ], [ 38.5, -4.5 ], [ 38.0, -4.5 ], [ 38.0, -4.0 ], [ 38.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -4.0 ], [ 39.0, -4.5 ], [ 38.5, -4.5 ], [ 38.5, -4.0 ], [ 39.0, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -4.0 ], [ 39.5, -4.5 ], [ 39.0, -4.5 ], [ 39.0, -4.0 ], [ 39.5, -4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, -3.5 ], [ 11.5, -4.0 ], [ 11.0, -4.0 ], [ 11.0, -3.5 ], [ 11.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, -3.5 ], [ 12.0, -4.0 ], [ 11.5, -4.0 ], [ 11.5, -3.5 ], [ 12.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -3.5 ], [ 12.5, -4.0 ], [ 12.0, -4.0 ], [ 12.0, -3.5 ], [ 12.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -3.5 ], [ 13.0, -4.0 ], [ 12.5, -4.0 ], [ 12.5, -3.5 ], [ 13.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -3.5 ], [ 13.5, -4.0 ], [ 13.0, -4.0 ], [ 13.0, -3.5 ], [ 13.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -3.5 ], [ 14.0, -4.0 ], [ 13.5, -4.0 ], [ 13.5, -3.5 ], [ 14.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -3.5 ], [ 14.5, -4.0 ], [ 14.0, -4.0 ], [ 14.0, -3.5 ], [ 14.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -3.5 ], [ 15.0, -4.0 ], [ 14.5, -4.0 ], [ 14.5, -3.5 ], [ 15.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -3.5 ], [ 15.5, -4.0 ], [ 15.0, -4.0 ], [ 15.0, -3.5 ], [ 15.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -3.5 ], [ 16.0, -4.0 ], [ 15.5, -4.0 ], [ 15.5, -3.5 ], [ 16.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -3.5 ], [ 16.5, -4.0 ], [ 16.0, -4.0 ], [ 16.0, -3.5 ], [ 16.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -3.5 ], [ 17.0, -4.0 ], [ 16.5, -4.0 ], [ 16.5, -3.5 ], [ 17.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -3.5 ], [ 17.5, -4.0 ], [ 17.0, -4.0 ], [ 17.0, -3.5 ], [ 17.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -3.5 ], [ 18.0, -4.0 ], [ 17.5, -4.0 ], [ 17.5, -3.5 ], [ 18.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -3.5 ], [ 18.5, -4.0 ], [ 18.0, -4.0 ], [ 18.0, -3.5 ], [ 18.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -3.5 ], [ 19.0, -4.0 ], [ 18.5, -4.0 ], [ 18.5, -3.5 ], [ 19.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -3.5 ], [ 19.5, -4.0 ], [ 19.0, -4.0 ], [ 19.0, -3.5 ], [ 19.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -3.5 ], [ 20.0, -4.0 ], [ 19.5, -4.0 ], [ 19.5, -3.5 ], [ 20.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -3.5 ], [ 20.5, -4.0 ], [ 20.0, -4.0 ], [ 20.0, -3.5 ], [ 20.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -3.5 ], [ 21.0, -4.0 ], [ 20.5, -4.0 ], [ 20.5, -3.5 ], [ 21.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -3.5 ], [ 21.5, -4.0 ], [ 21.0, -4.0 ], [ 21.0, -3.5 ], [ 21.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -3.5 ], [ 22.0, -4.0 ], [ 21.5, -4.0 ], [ 21.5, -3.5 ], [ 22.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -3.5 ], [ 22.5, -4.0 ], [ 22.0, -4.0 ], [ 22.0, -3.5 ], [ 22.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -3.5 ], [ 23.0, -4.0 ], [ 22.5, -4.0 ], [ 22.5, -3.5 ], [ 23.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -3.5 ], [ 23.5, -4.0 ], [ 23.0, -4.0 ], [ 23.0, -3.5 ], [ 23.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -3.5 ], [ 24.0, -4.0 ], [ 23.5, -4.0 ], [ 23.5, -3.5 ], [ 24.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -3.5 ], [ 24.5, -4.0 ], [ 24.0, -4.0 ], [ 24.0, -3.5 ], [ 24.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -3.5 ], [ 25.0, -4.0 ], [ 24.5, -4.0 ], [ 24.5, -3.5 ], [ 25.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -3.5 ], [ 25.5, -4.0 ], [ 25.0, -4.0 ], [ 25.0, -3.5 ], [ 25.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -3.5 ], [ 26.0, -4.0 ], [ 25.5, -4.0 ], [ 25.5, -3.5 ], [ 26.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -3.5 ], [ 26.5, -4.0 ], [ 26.0, -4.0 ], [ 26.0, -3.5 ], [ 26.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -3.5 ], [ 27.0, -4.0 ], [ 26.5, -4.0 ], [ 26.5, -3.5 ], [ 27.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -3.5 ], [ 27.5, -4.0 ], [ 27.0, -4.0 ], [ 27.0, -3.5 ], [ 27.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -3.5 ], [ 28.0, -4.0 ], [ 27.5, -4.0 ], [ 27.5, -3.5 ], [ 28.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -3.5 ], [ 28.5, -4.0 ], [ 28.0, -4.0 ], [ 28.0, -3.5 ], [ 28.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -3.5 ], [ 29.0, -4.0 ], [ 28.5, -4.0 ], [ 28.5, -3.5 ], [ 29.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -3.5 ], [ 29.5, -4.0 ], [ 29.0, -4.0 ], [ 29.0, -3.5 ], [ 29.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -3.5 ], [ 30.0, -4.0 ], [ 29.5, -4.0 ], [ 29.5, -3.5 ], [ 30.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -3.5 ], [ 30.5, -4.0 ], [ 30.0, -4.0 ], [ 30.0, -3.5 ], [ 30.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -3.5 ], [ 31.0, -4.0 ], [ 30.5, -4.0 ], [ 30.5, -3.5 ], [ 31.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -3.5 ], [ 31.5, -4.0 ], [ 31.0, -4.0 ], [ 31.0, -3.5 ], [ 31.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -3.5 ], [ 32.0, -4.0 ], [ 31.5, -4.0 ], [ 31.5, -3.5 ], [ 32.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -3.5 ], [ 32.5, -4.0 ], [ 32.0, -4.0 ], [ 32.0, -3.5 ], [ 32.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -3.5 ], [ 33.0, -4.0 ], [ 32.5, -4.0 ], [ 32.5, -3.5 ], [ 33.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -3.5 ], [ 33.5, -4.0 ], [ 33.0, -4.0 ], [ 33.0, -3.5 ], [ 33.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -3.5 ], [ 34.0, -4.0 ], [ 33.5, -4.0 ], [ 33.5, -3.5 ], [ 34.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -3.5 ], [ 34.5, -4.0 ], [ 34.0, -4.0 ], [ 34.0, -3.5 ], [ 34.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -3.5 ], [ 35.0, -4.0 ], [ 34.5, -4.0 ], [ 34.5, -3.5 ], [ 35.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -3.5 ], [ 35.5, -4.0 ], [ 35.0, -4.0 ], [ 35.0, -3.5 ], [ 35.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -3.5 ], [ 36.0, -4.0 ], [ 35.5, -4.0 ], [ 35.5, -3.5 ], [ 36.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -3.5 ], [ 36.5, -4.0 ], [ 36.0, -4.0 ], [ 36.0, -3.5 ], [ 36.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -3.5 ], [ 37.0, -4.0 ], [ 36.5, -4.0 ], [ 36.5, -3.5 ], [ 37.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -3.5 ], [ 37.5, -4.0 ], [ 37.0, -4.0 ], [ 37.0, -3.5 ], [ 37.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -3.5 ], [ 38.0, -4.0 ], [ 37.5, -4.0 ], [ 37.5, -3.5 ], [ 38.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -3.5 ], [ 38.5, -4.0 ], [ 38.0, -4.0 ], [ 38.0, -3.5 ], [ 38.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -3.5 ], [ 39.0, -4.0 ], [ 38.5, -4.0 ], [ 38.5, -3.5 ], [ 39.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -3.5 ], [ 39.5, -4.0 ], [ 39.0, -4.0 ], [ 39.0, -3.5 ], [ 39.5, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -3.5 ], [ 40.0, -4.0 ], [ 39.5, -4.0 ], [ 39.5, -3.5 ], [ 40.0, -3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, -3.0 ], [ 11.0, -3.5 ], [ 10.5, -3.5 ], [ 10.5, -3.0 ], [ 11.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, -3.0 ], [ 11.5, -3.5 ], [ 11.0, -3.5 ], [ 11.0, -3.0 ], [ 11.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, -3.0 ], [ 12.0, -3.5 ], [ 11.5, -3.5 ], [ 11.5, -3.0 ], [ 12.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -3.0 ], [ 12.5, -3.5 ], [ 12.0, -3.5 ], [ 12.0, -3.0 ], [ 12.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -3.0 ], [ 13.0, -3.5 ], [ 12.5, -3.5 ], [ 12.5, -3.0 ], [ 13.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -3.0 ], [ 13.5, -3.5 ], [ 13.0, -3.5 ], [ 13.0, -3.0 ], [ 13.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -3.0 ], [ 14.0, -3.5 ], [ 13.5, -3.5 ], [ 13.5, -3.0 ], [ 14.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -3.0 ], [ 14.5, -3.5 ], [ 14.0, -3.5 ], [ 14.0, -3.0 ], [ 14.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -3.0 ], [ 15.0, -3.5 ], [ 14.5, -3.5 ], [ 14.5, -3.0 ], [ 15.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -3.0 ], [ 15.5, -3.5 ], [ 15.0, -3.5 ], [ 15.0, -3.0 ], [ 15.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -3.0 ], [ 16.0, -3.5 ], [ 15.5, -3.5 ], [ 15.5, -3.0 ], [ 16.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -3.0 ], [ 16.5, -3.5 ], [ 16.0, -3.5 ], [ 16.0, -3.0 ], [ 16.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -3.0 ], [ 17.0, -3.5 ], [ 16.5, -3.5 ], [ 16.5, -3.0 ], [ 17.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -3.0 ], [ 17.5, -3.5 ], [ 17.0, -3.5 ], [ 17.0, -3.0 ], [ 17.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -3.0 ], [ 18.0, -3.5 ], [ 17.5, -3.5 ], [ 17.5, -3.0 ], [ 18.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -3.0 ], [ 18.5, -3.5 ], [ 18.0, -3.5 ], [ 18.0, -3.0 ], [ 18.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -3.0 ], [ 19.0, -3.5 ], [ 18.5, -3.5 ], [ 18.5, -3.0 ], [ 19.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -3.0 ], [ 19.5, -3.5 ], [ 19.0, -3.5 ], [ 19.0, -3.0 ], [ 19.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -3.0 ], [ 20.0, -3.5 ], [ 19.5, -3.5 ], [ 19.5, -3.0 ], [ 20.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -3.0 ], [ 20.5, -3.5 ], [ 20.0, -3.5 ], [ 20.0, -3.0 ], [ 20.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -3.0 ], [ 21.0, -3.5 ], [ 20.5, -3.5 ], [ 20.5, -3.0 ], [ 21.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -3.0 ], [ 21.5, -3.5 ], [ 21.0, -3.5 ], [ 21.0, -3.0 ], [ 21.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -3.0 ], [ 22.0, -3.5 ], [ 21.5, -3.5 ], [ 21.5, -3.0 ], [ 22.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -3.0 ], [ 22.5, -3.5 ], [ 22.0, -3.5 ], [ 22.0, -3.0 ], [ 22.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -3.0 ], [ 23.0, -3.5 ], [ 22.5, -3.5 ], [ 22.5, -3.0 ], [ 23.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -3.0 ], [ 23.5, -3.5 ], [ 23.0, -3.5 ], [ 23.0, -3.0 ], [ 23.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -3.0 ], [ 24.0, -3.5 ], [ 23.5, -3.5 ], [ 23.5, -3.0 ], [ 24.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -3.0 ], [ 24.5, -3.5 ], [ 24.0, -3.5 ], [ 24.0, -3.0 ], [ 24.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -3.0 ], [ 25.0, -3.5 ], [ 24.5, -3.5 ], [ 24.5, -3.0 ], [ 25.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -3.0 ], [ 25.5, -3.5 ], [ 25.0, -3.5 ], [ 25.0, -3.0 ], [ 25.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -3.0 ], [ 26.0, -3.5 ], [ 25.5, -3.5 ], [ 25.5, -3.0 ], [ 26.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -3.0 ], [ 26.5, -3.5 ], [ 26.0, -3.5 ], [ 26.0, -3.0 ], [ 26.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -3.0 ], [ 27.0, -3.5 ], [ 26.5, -3.5 ], [ 26.5, -3.0 ], [ 27.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -3.0 ], [ 27.5, -3.5 ], [ 27.0, -3.5 ], [ 27.0, -3.0 ], [ 27.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -3.0 ], [ 28.0, -3.5 ], [ 27.5, -3.5 ], [ 27.5, -3.0 ], [ 28.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -3.0 ], [ 28.5, -3.5 ], [ 28.0, -3.5 ], [ 28.0, -3.0 ], [ 28.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -3.0 ], [ 29.0, -3.5 ], [ 28.5, -3.5 ], [ 28.5, -3.0 ], [ 29.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -3.0 ], [ 29.5, -3.5 ], [ 29.0, -3.5 ], [ 29.0, -3.0 ], [ 29.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -3.0 ], [ 30.0, -3.5 ], [ 29.5, -3.5 ], [ 29.5, -3.0 ], [ 30.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -3.0 ], [ 30.5, -3.5 ], [ 30.0, -3.5 ], [ 30.0, -3.0 ], [ 30.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -3.0 ], [ 31.0, -3.5 ], [ 30.5, -3.5 ], [ 30.5, -3.0 ], [ 31.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -3.0 ], [ 31.5, -3.5 ], [ 31.0, -3.5 ], [ 31.0, -3.0 ], [ 31.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -3.0 ], [ 32.0, -3.5 ], [ 31.5, -3.5 ], [ 31.5, -3.0 ], [ 32.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -3.0 ], [ 32.5, -3.5 ], [ 32.0, -3.5 ], [ 32.0, -3.0 ], [ 32.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -3.0 ], [ 33.0, -3.5 ], [ 32.5, -3.5 ], [ 32.5, -3.0 ], [ 33.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -3.0 ], [ 33.5, -3.5 ], [ 33.0, -3.5 ], [ 33.0, -3.0 ], [ 33.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -3.0 ], [ 34.0, -3.5 ], [ 33.5, -3.5 ], [ 33.5, -3.0 ], [ 34.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -3.0 ], [ 34.5, -3.5 ], [ 34.0, -3.5 ], [ 34.0, -3.0 ], [ 34.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -3.0 ], [ 35.0, -3.5 ], [ 34.5, -3.5 ], [ 34.5, -3.0 ], [ 35.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -3.0 ], [ 35.5, -3.5 ], [ 35.0, -3.5 ], [ 35.0, -3.0 ], [ 35.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -3.0 ], [ 36.0, -3.5 ], [ 35.5, -3.5 ], [ 35.5, -3.0 ], [ 36.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -3.0 ], [ 36.5, -3.5 ], [ 36.0, -3.5 ], [ 36.0, -3.0 ], [ 36.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -3.0 ], [ 37.0, -3.5 ], [ 36.5, -3.5 ], [ 36.5, -3.0 ], [ 37.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -3.0 ], [ 37.5, -3.5 ], [ 37.0, -3.5 ], [ 37.0, -3.0 ], [ 37.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -3.0 ], [ 38.0, -3.5 ], [ 37.5, -3.5 ], [ 37.5, -3.0 ], [ 38.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -3.0 ], [ 38.5, -3.5 ], [ 38.0, -3.5 ], [ 38.0, -3.0 ], [ 38.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -3.0 ], [ 39.0, -3.5 ], [ 38.5, -3.5 ], [ 38.5, -3.0 ], [ 39.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -3.0 ], [ 39.5, -3.5 ], [ 39.0, -3.5 ], [ 39.0, -3.0 ], [ 39.5, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -3.0 ], [ 40.0, -3.5 ], [ 39.5, -3.5 ], [ 39.5, -3.0 ], [ 40.0, -3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, -2.5 ], [ 10.5, -3.0 ], [ 10.0, -3.0 ], [ 10.0, -2.5 ], [ 10.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, -2.5 ], [ 11.0, -3.0 ], [ 10.5, -3.0 ], [ 10.5, -2.5 ], [ 11.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, -2.5 ], [ 11.5, -3.0 ], [ 11.0, -3.0 ], [ 11.0, -2.5 ], [ 11.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, -2.5 ], [ 12.0, -3.0 ], [ 11.5, -3.0 ], [ 11.5, -2.5 ], [ 12.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -2.5 ], [ 12.5, -3.0 ], [ 12.0, -3.0 ], [ 12.0, -2.5 ], [ 12.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -2.5 ], [ 13.0, -3.0 ], [ 12.5, -3.0 ], [ 12.5, -2.5 ], [ 13.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -2.5 ], [ 13.5, -3.0 ], [ 13.0, -3.0 ], [ 13.0, -2.5 ], [ 13.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -2.5 ], [ 14.0, -3.0 ], [ 13.5, -3.0 ], [ 13.5, -2.5 ], [ 14.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -2.5 ], [ 14.5, -3.0 ], [ 14.0, -3.0 ], [ 14.0, -2.5 ], [ 14.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -2.5 ], [ 15.0, -3.0 ], [ 14.5, -3.0 ], [ 14.5, -2.5 ], [ 15.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -2.5 ], [ 15.5, -3.0 ], [ 15.0, -3.0 ], [ 15.0, -2.5 ], [ 15.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -2.5 ], [ 16.0, -3.0 ], [ 15.5, -3.0 ], [ 15.5, -2.5 ], [ 16.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -2.5 ], [ 16.5, -3.0 ], [ 16.0, -3.0 ], [ 16.0, -2.5 ], [ 16.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -2.5 ], [ 17.0, -3.0 ], [ 16.5, -3.0 ], [ 16.5, -2.5 ], [ 17.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -2.5 ], [ 17.5, -3.0 ], [ 17.0, -3.0 ], [ 17.0, -2.5 ], [ 17.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -2.5 ], [ 18.0, -3.0 ], [ 17.5, -3.0 ], [ 17.5, -2.5 ], [ 18.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -2.5 ], [ 18.5, -3.0 ], [ 18.0, -3.0 ], [ 18.0, -2.5 ], [ 18.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -2.5 ], [ 19.0, -3.0 ], [ 18.5, -3.0 ], [ 18.5, -2.5 ], [ 19.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -2.5 ], [ 19.5, -3.0 ], [ 19.0, -3.0 ], [ 19.0, -2.5 ], [ 19.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -2.5 ], [ 20.0, -3.0 ], [ 19.5, -3.0 ], [ 19.5, -2.5 ], [ 20.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -2.5 ], [ 20.5, -3.0 ], [ 20.0, -3.0 ], [ 20.0, -2.5 ], [ 20.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -2.5 ], [ 21.0, -3.0 ], [ 20.5, -3.0 ], [ 20.5, -2.5 ], [ 21.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -2.5 ], [ 21.5, -3.0 ], [ 21.0, -3.0 ], [ 21.0, -2.5 ], [ 21.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -2.5 ], [ 22.0, -3.0 ], [ 21.5, -3.0 ], [ 21.5, -2.5 ], [ 22.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -2.5 ], [ 22.5, -3.0 ], [ 22.0, -3.0 ], [ 22.0, -2.5 ], [ 22.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -2.5 ], [ 23.0, -3.0 ], [ 22.5, -3.0 ], [ 22.5, -2.5 ], [ 23.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -2.5 ], [ 23.5, -3.0 ], [ 23.0, -3.0 ], [ 23.0, -2.5 ], [ 23.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -2.5 ], [ 24.0, -3.0 ], [ 23.5, -3.0 ], [ 23.5, -2.5 ], [ 24.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -2.5 ], [ 24.5, -3.0 ], [ 24.0, -3.0 ], [ 24.0, -2.5 ], [ 24.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -2.5 ], [ 25.0, -3.0 ], [ 24.5, -3.0 ], [ 24.5, -2.5 ], [ 25.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -2.5 ], [ 25.5, -3.0 ], [ 25.0, -3.0 ], [ 25.0, -2.5 ], [ 25.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -2.5 ], [ 26.0, -3.0 ], [ 25.5, -3.0 ], [ 25.5, -2.5 ], [ 26.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -2.5 ], [ 26.5, -3.0 ], [ 26.0, -3.0 ], [ 26.0, -2.5 ], [ 26.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -2.5 ], [ 27.0, -3.0 ], [ 26.5, -3.0 ], [ 26.5, -2.5 ], [ 27.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -2.5 ], [ 27.5, -3.0 ], [ 27.0, -3.0 ], [ 27.0, -2.5 ], [ 27.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -2.5 ], [ 28.0, -3.0 ], [ 27.5, -3.0 ], [ 27.5, -2.5 ], [ 28.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -2.5 ], [ 28.5, -3.0 ], [ 28.0, -3.0 ], [ 28.0, -2.5 ], [ 28.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -2.5 ], [ 29.0, -3.0 ], [ 28.5, -3.0 ], [ 28.5, -2.5 ], [ 29.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -2.5 ], [ 29.5, -3.0 ], [ 29.0, -3.0 ], [ 29.0, -2.5 ], [ 29.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -2.5 ], [ 30.0, -3.0 ], [ 29.5, -3.0 ], [ 29.5, -2.5 ], [ 30.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -2.5 ], [ 30.5, -3.0 ], [ 30.0, -3.0 ], [ 30.0, -2.5 ], [ 30.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -2.5 ], [ 31.0, -3.0 ], [ 30.5, -3.0 ], [ 30.5, -2.5 ], [ 31.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -2.5 ], [ 31.5, -3.0 ], [ 31.0, -3.0 ], [ 31.0, -2.5 ], [ 31.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -2.5 ], [ 32.0, -3.0 ], [ 31.5, -3.0 ], [ 31.5, -2.5 ], [ 32.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -2.5 ], [ 32.5, -3.0 ], [ 32.0, -3.0 ], [ 32.0, -2.5 ], [ 32.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -2.5 ], [ 33.0, -3.0 ], [ 32.5, -3.0 ], [ 32.5, -2.5 ], [ 33.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -2.5 ], [ 33.5, -3.0 ], [ 33.0, -3.0 ], [ 33.0, -2.5 ], [ 33.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -2.5 ], [ 34.0, -3.0 ], [ 33.5, -3.0 ], [ 33.5, -2.5 ], [ 34.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -2.5 ], [ 34.5, -3.0 ], [ 34.0, -3.0 ], [ 34.0, -2.5 ], [ 34.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -2.5 ], [ 35.0, -3.0 ], [ 34.5, -3.0 ], [ 34.5, -2.5 ], [ 35.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -2.5 ], [ 35.5, -3.0 ], [ 35.0, -3.0 ], [ 35.0, -2.5 ], [ 35.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -2.5 ], [ 36.0, -3.0 ], [ 35.5, -3.0 ], [ 35.5, -2.5 ], [ 36.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -2.5 ], [ 36.5, -3.0 ], [ 36.0, -3.0 ], [ 36.0, -2.5 ], [ 36.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -2.5 ], [ 37.0, -3.0 ], [ 36.5, -3.0 ], [ 36.5, -2.5 ], [ 37.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -2.5 ], [ 37.5, -3.0 ], [ 37.0, -3.0 ], [ 37.0, -2.5 ], [ 37.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -2.5 ], [ 38.0, -3.0 ], [ 37.5, -3.0 ], [ 37.5, -2.5 ], [ 38.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -2.5 ], [ 38.5, -3.0 ], [ 38.0, -3.0 ], [ 38.0, -2.5 ], [ 38.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -2.5 ], [ 39.0, -3.0 ], [ 38.5, -3.0 ], [ 38.5, -2.5 ], [ 39.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -2.5 ], [ 39.5, -3.0 ], [ 39.0, -3.0 ], [ 39.0, -2.5 ], [ 39.5, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -2.5 ], [ 40.0, -3.0 ], [ 39.5, -3.0 ], [ 39.5, -2.5 ], [ 40.0, -2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, -2.0 ], [ 10.0, -2.5 ], [ 9.5, -2.5 ], [ 9.5, -2.0 ], [ 10.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, -2.0 ], [ 10.5, -2.5 ], [ 10.0, -2.5 ], [ 10.0, -2.0 ], [ 10.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, -2.0 ], [ 11.0, -2.5 ], [ 10.5, -2.5 ], [ 10.5, -2.0 ], [ 11.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, -2.0 ], [ 11.5, -2.5 ], [ 11.0, -2.5 ], [ 11.0, -2.0 ], [ 11.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, -2.0 ], [ 12.0, -2.5 ], [ 11.5, -2.5 ], [ 11.5, -2.0 ], [ 12.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -2.0 ], [ 12.5, -2.5 ], [ 12.0, -2.5 ], [ 12.0, -2.0 ], [ 12.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -2.0 ], [ 13.0, -2.5 ], [ 12.5, -2.5 ], [ 12.5, -2.0 ], [ 13.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -2.0 ], [ 13.5, -2.5 ], [ 13.0, -2.5 ], [ 13.0, -2.0 ], [ 13.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -2.0 ], [ 14.0, -2.5 ], [ 13.5, -2.5 ], [ 13.5, -2.0 ], [ 14.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -2.0 ], [ 14.5, -2.5 ], [ 14.0, -2.5 ], [ 14.0, -2.0 ], [ 14.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -2.0 ], [ 15.0, -2.5 ], [ 14.5, -2.5 ], [ 14.5, -2.0 ], [ 15.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -2.0 ], [ 15.5, -2.5 ], [ 15.0, -2.5 ], [ 15.0, -2.0 ], [ 15.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -2.0 ], [ 16.0, -2.5 ], [ 15.5, -2.5 ], [ 15.5, -2.0 ], [ 16.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -2.0 ], [ 16.5, -2.5 ], [ 16.0, -2.5 ], [ 16.0, -2.0 ], [ 16.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -2.0 ], [ 17.0, -2.5 ], [ 16.5, -2.5 ], [ 16.5, -2.0 ], [ 17.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -2.0 ], [ 17.5, -2.5 ], [ 17.0, -2.5 ], [ 17.0, -2.0 ], [ 17.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -2.0 ], [ 18.0, -2.5 ], [ 17.5, -2.5 ], [ 17.5, -2.0 ], [ 18.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -2.0 ], [ 18.5, -2.5 ], [ 18.0, -2.5 ], [ 18.0, -2.0 ], [ 18.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -2.0 ], [ 19.0, -2.5 ], [ 18.5, -2.5 ], [ 18.5, -2.0 ], [ 19.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -2.0 ], [ 19.5, -2.5 ], [ 19.0, -2.5 ], [ 19.0, -2.0 ], [ 19.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -2.0 ], [ 20.0, -2.5 ], [ 19.5, -2.5 ], [ 19.5, -2.0 ], [ 20.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -2.0 ], [ 20.5, -2.5 ], [ 20.0, -2.5 ], [ 20.0, -2.0 ], [ 20.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -2.0 ], [ 21.0, -2.5 ], [ 20.5, -2.5 ], [ 20.5, -2.0 ], [ 21.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -2.0 ], [ 21.5, -2.5 ], [ 21.0, -2.5 ], [ 21.0, -2.0 ], [ 21.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -2.0 ], [ 22.0, -2.5 ], [ 21.5, -2.5 ], [ 21.5, -2.0 ], [ 22.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -2.0 ], [ 22.5, -2.5 ], [ 22.0, -2.5 ], [ 22.0, -2.0 ], [ 22.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -2.0 ], [ 23.0, -2.5 ], [ 22.5, -2.5 ], [ 22.5, -2.0 ], [ 23.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -2.0 ], [ 23.5, -2.5 ], [ 23.0, -2.5 ], [ 23.0, -2.0 ], [ 23.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -2.0 ], [ 24.0, -2.5 ], [ 23.5, -2.5 ], [ 23.5, -2.0 ], [ 24.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -2.0 ], [ 24.5, -2.5 ], [ 24.0, -2.5 ], [ 24.0, -2.0 ], [ 24.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -2.0 ], [ 25.0, -2.5 ], [ 24.5, -2.5 ], [ 24.5, -2.0 ], [ 25.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -2.0 ], [ 25.5, -2.5 ], [ 25.0, -2.5 ], [ 25.0, -2.0 ], [ 25.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -2.0 ], [ 26.0, -2.5 ], [ 25.5, -2.5 ], [ 25.5, -2.0 ], [ 26.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -2.0 ], [ 26.5, -2.5 ], [ 26.0, -2.5 ], [ 26.0, -2.0 ], [ 26.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -2.0 ], [ 27.0, -2.5 ], [ 26.5, -2.5 ], [ 26.5, -2.0 ], [ 27.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -2.0 ], [ 27.5, -2.5 ], [ 27.0, -2.5 ], [ 27.0, -2.0 ], [ 27.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -2.0 ], [ 28.0, -2.5 ], [ 27.5, -2.5 ], [ 27.5, -2.0 ], [ 28.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -2.0 ], [ 28.5, -2.5 ], [ 28.0, -2.5 ], [ 28.0, -2.0 ], [ 28.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -2.0 ], [ 29.0, -2.5 ], [ 28.5, -2.5 ], [ 28.5, -2.0 ], [ 29.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -2.0 ], [ 29.5, -2.5 ], [ 29.0, -2.5 ], [ 29.0, -2.0 ], [ 29.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -2.0 ], [ 30.0, -2.5 ], [ 29.5, -2.5 ], [ 29.5, -2.0 ], [ 30.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -2.0 ], [ 30.5, -2.5 ], [ 30.0, -2.5 ], [ 30.0, -2.0 ], [ 30.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -2.0 ], [ 31.0, -2.5 ], [ 30.5, -2.5 ], [ 30.5, -2.0 ], [ 31.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -2.0 ], [ 31.5, -2.5 ], [ 31.0, -2.5 ], [ 31.0, -2.0 ], [ 31.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -2.0 ], [ 32.0, -2.5 ], [ 31.5, -2.5 ], [ 31.5, -2.0 ], [ 32.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -2.0 ], [ 32.5, -2.5 ], [ 32.0, -2.5 ], [ 32.0, -2.0 ], [ 32.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -2.0 ], [ 33.0, -2.5 ], [ 32.5, -2.5 ], [ 32.5, -2.0 ], [ 33.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -2.0 ], [ 33.5, -2.5 ], [ 33.0, -2.5 ], [ 33.0, -2.0 ], [ 33.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -2.0 ], [ 34.0, -2.5 ], [ 33.5, -2.5 ], [ 33.5, -2.0 ], [ 34.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -2.0 ], [ 34.5, -2.5 ], [ 34.0, -2.5 ], [ 34.0, -2.0 ], [ 34.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -2.0 ], [ 35.0, -2.5 ], [ 34.5, -2.5 ], [ 34.5, -2.0 ], [ 35.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -2.0 ], [ 35.5, -2.5 ], [ 35.0, -2.5 ], [ 35.0, -2.0 ], [ 35.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -2.0 ], [ 36.0, -2.5 ], [ 35.5, -2.5 ], [ 35.5, -2.0 ], [ 36.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -2.0 ], [ 36.5, -2.5 ], [ 36.0, -2.5 ], [ 36.0, -2.0 ], [ 36.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -2.0 ], [ 37.0, -2.5 ], [ 36.5, -2.5 ], [ 36.5, -2.0 ], [ 37.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -2.0 ], [ 37.5, -2.5 ], [ 37.0, -2.5 ], [ 37.0, -2.0 ], [ 37.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -2.0 ], [ 38.0, -2.5 ], [ 37.5, -2.5 ], [ 37.5, -2.0 ], [ 38.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -2.0 ], [ 38.5, -2.5 ], [ 38.0, -2.5 ], [ 38.0, -2.0 ], [ 38.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -2.0 ], [ 39.0, -2.5 ], [ 38.5, -2.5 ], [ 38.5, -2.0 ], [ 39.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -2.0 ], [ 39.5, -2.5 ], [ 39.0, -2.5 ], [ 39.0, -2.0 ], [ 39.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -2.0 ], [ 40.0, -2.5 ], [ 39.5, -2.5 ], [ 39.5, -2.0 ], [ 40.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, -2.0 ], [ 40.5, -2.5 ], [ 40.0, -2.5 ], [ 40.0, -2.0 ], [ 40.5, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, -2.0 ], [ 41.0, -2.5 ], [ 40.5, -2.5 ], [ 40.5, -2.0 ], [ 41.0, -2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, -1.5 ], [ 9.5, -2.0 ], [ 9.0, -2.0 ], [ 9.0, -1.5 ], [ 9.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, -1.5 ], [ 10.0, -2.0 ], [ 9.5, -2.0 ], [ 9.5, -1.5 ], [ 10.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, -1.5 ], [ 10.5, -2.0 ], [ 10.0, -2.0 ], [ 10.0, -1.5 ], [ 10.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, -1.5 ], [ 11.0, -2.0 ], [ 10.5, -2.0 ], [ 10.5, -1.5 ], [ 11.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, -1.5 ], [ 11.5, -2.0 ], [ 11.0, -2.0 ], [ 11.0, -1.5 ], [ 11.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, -1.5 ], [ 12.0, -2.0 ], [ 11.5, -2.0 ], [ 11.5, -1.5 ], [ 12.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -1.5 ], [ 12.5, -2.0 ], [ 12.0, -2.0 ], [ 12.0, -1.5 ], [ 12.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -1.5 ], [ 13.0, -2.0 ], [ 12.5, -2.0 ], [ 12.5, -1.5 ], [ 13.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -1.5 ], [ 13.5, -2.0 ], [ 13.0, -2.0 ], [ 13.0, -1.5 ], [ 13.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -1.5 ], [ 14.0, -2.0 ], [ 13.5, -2.0 ], [ 13.5, -1.5 ], [ 14.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -1.5 ], [ 14.5, -2.0 ], [ 14.0, -2.0 ], [ 14.0, -1.5 ], [ 14.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -1.5 ], [ 15.0, -2.0 ], [ 14.5, -2.0 ], [ 14.5, -1.5 ], [ 15.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -1.5 ], [ 15.5, -2.0 ], [ 15.0, -2.0 ], [ 15.0, -1.5 ], [ 15.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -1.5 ], [ 16.0, -2.0 ], [ 15.5, -2.0 ], [ 15.5, -1.5 ], [ 16.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -1.5 ], [ 16.5, -2.0 ], [ 16.0, -2.0 ], [ 16.0, -1.5 ], [ 16.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -1.5 ], [ 17.0, -2.0 ], [ 16.5, -2.0 ], [ 16.5, -1.5 ], [ 17.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -1.5 ], [ 17.5, -2.0 ], [ 17.0, -2.0 ], [ 17.0, -1.5 ], [ 17.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -1.5 ], [ 18.0, -2.0 ], [ 17.5, -2.0 ], [ 17.5, -1.5 ], [ 18.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -1.5 ], [ 18.5, -2.0 ], [ 18.0, -2.0 ], [ 18.0, -1.5 ], [ 18.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -1.5 ], [ 19.0, -2.0 ], [ 18.5, -2.0 ], [ 18.5, -1.5 ], [ 19.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -1.5 ], [ 19.5, -2.0 ], [ 19.0, -2.0 ], [ 19.0, -1.5 ], [ 19.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -1.5 ], [ 20.0, -2.0 ], [ 19.5, -2.0 ], [ 19.5, -1.5 ], [ 20.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -1.5 ], [ 20.5, -2.0 ], [ 20.0, -2.0 ], [ 20.0, -1.5 ], [ 20.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -1.5 ], [ 21.0, -2.0 ], [ 20.5, -2.0 ], [ 20.5, -1.5 ], [ 21.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -1.5 ], [ 21.5, -2.0 ], [ 21.0, -2.0 ], [ 21.0, -1.5 ], [ 21.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -1.5 ], [ 22.0, -2.0 ], [ 21.5, -2.0 ], [ 21.5, -1.5 ], [ 22.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -1.5 ], [ 22.5, -2.0 ], [ 22.0, -2.0 ], [ 22.0, -1.5 ], [ 22.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -1.5 ], [ 23.0, -2.0 ], [ 22.5, -2.0 ], [ 22.5, -1.5 ], [ 23.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -1.5 ], [ 23.5, -2.0 ], [ 23.0, -2.0 ], [ 23.0, -1.5 ], [ 23.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -1.5 ], [ 24.0, -2.0 ], [ 23.5, -2.0 ], [ 23.5, -1.5 ], [ 24.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -1.5 ], [ 24.5, -2.0 ], [ 24.0, -2.0 ], [ 24.0, -1.5 ], [ 24.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -1.5 ], [ 25.0, -2.0 ], [ 24.5, -2.0 ], [ 24.5, -1.5 ], [ 25.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -1.5 ], [ 25.5, -2.0 ], [ 25.0, -2.0 ], [ 25.0, -1.5 ], [ 25.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -1.5 ], [ 26.0, -2.0 ], [ 25.5, -2.0 ], [ 25.5, -1.5 ], [ 26.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -1.5 ], [ 26.5, -2.0 ], [ 26.0, -2.0 ], [ 26.0, -1.5 ], [ 26.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -1.5 ], [ 27.0, -2.0 ], [ 26.5, -2.0 ], [ 26.5, -1.5 ], [ 27.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -1.5 ], [ 27.5, -2.0 ], [ 27.0, -2.0 ], [ 27.0, -1.5 ], [ 27.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -1.5 ], [ 28.0, -2.0 ], [ 27.5, -2.0 ], [ 27.5, -1.5 ], [ 28.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -1.5 ], [ 28.5, -2.0 ], [ 28.0, -2.0 ], [ 28.0, -1.5 ], [ 28.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -1.5 ], [ 29.0, -2.0 ], [ 28.5, -2.0 ], [ 28.5, -1.5 ], [ 29.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -1.5 ], [ 29.5, -2.0 ], [ 29.0, -2.0 ], [ 29.0, -1.5 ], [ 29.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -1.5 ], [ 30.0, -2.0 ], [ 29.5, -2.0 ], [ 29.5, -1.5 ], [ 30.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -1.5 ], [ 30.5, -2.0 ], [ 30.0, -2.0 ], [ 30.0, -1.5 ], [ 30.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -1.5 ], [ 31.0, -2.0 ], [ 30.5, -2.0 ], [ 30.5, -1.5 ], [ 31.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -1.5 ], [ 31.5, -2.0 ], [ 31.0, -2.0 ], [ 31.0, -1.5 ], [ 31.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -1.5 ], [ 32.0, -2.0 ], [ 31.5, -2.0 ], [ 31.5, -1.5 ], [ 32.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -1.5 ], [ 32.5, -2.0 ], [ 32.0, -2.0 ], [ 32.0, -1.5 ], [ 32.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -1.5 ], [ 33.0, -2.0 ], [ 32.5, -2.0 ], [ 32.5, -1.5 ], [ 33.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -1.5 ], [ 33.5, -2.0 ], [ 33.0, -2.0 ], [ 33.0, -1.5 ], [ 33.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -1.5 ], [ 34.0, -2.0 ], [ 33.5, -2.0 ], [ 33.5, -1.5 ], [ 34.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -1.5 ], [ 34.5, -2.0 ], [ 34.0, -2.0 ], [ 34.0, -1.5 ], [ 34.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -1.5 ], [ 35.0, -2.0 ], [ 34.5, -2.0 ], [ 34.5, -1.5 ], [ 35.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -1.5 ], [ 35.5, -2.0 ], [ 35.0, -2.0 ], [ 35.0, -1.5 ], [ 35.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -1.5 ], [ 36.0, -2.0 ], [ 35.5, -2.0 ], [ 35.5, -1.5 ], [ 36.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -1.5 ], [ 36.5, -2.0 ], [ 36.0, -2.0 ], [ 36.0, -1.5 ], [ 36.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -1.5 ], [ 37.0, -2.0 ], [ 36.5, -2.0 ], [ 36.5, -1.5 ], [ 37.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -1.5 ], [ 37.5, -2.0 ], [ 37.0, -2.0 ], [ 37.0, -1.5 ], [ 37.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -1.5 ], [ 38.0, -2.0 ], [ 37.5, -2.0 ], [ 37.5, -1.5 ], [ 38.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -1.5 ], [ 38.5, -2.0 ], [ 38.0, -2.0 ], [ 38.0, -1.5 ], [ 38.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -1.5 ], [ 39.0, -2.0 ], [ 38.5, -2.0 ], [ 38.5, -1.5 ], [ 39.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -1.5 ], [ 39.5, -2.0 ], [ 39.0, -2.0 ], [ 39.0, -1.5 ], [ 39.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -1.5 ], [ 40.0, -2.0 ], [ 39.5, -2.0 ], [ 39.5, -1.5 ], [ 40.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, -1.5 ], [ 40.5, -2.0 ], [ 40.0, -2.0 ], [ 40.0, -1.5 ], [ 40.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, -1.5 ], [ 41.0, -2.0 ], [ 40.5, -2.0 ], [ 40.5, -1.5 ], [ 41.0, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, -1.5 ], [ 41.5, -2.0 ], [ 41.0, -2.0 ], [ 41.0, -1.5 ], [ 41.5, -1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, -1.0 ], [ 9.5, -1.5 ], [ 9.0, -1.5 ], [ 9.0, -1.0 ], [ 9.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, -1.0 ], [ 10.0, -1.5 ], [ 9.5, -1.5 ], [ 9.5, -1.0 ], [ 10.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, -1.0 ], [ 10.5, -1.5 ], [ 10.0, -1.5 ], [ 10.0, -1.0 ], [ 10.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, -1.0 ], [ 11.0, -1.5 ], [ 10.5, -1.5 ], [ 10.5, -1.0 ], [ 11.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, -1.0 ], [ 11.5, -1.5 ], [ 11.0, -1.5 ], [ 11.0, -1.0 ], [ 11.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, -1.0 ], [ 12.0, -1.5 ], [ 11.5, -1.5 ], [ 11.5, -1.0 ], [ 12.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -1.0 ], [ 12.5, -1.5 ], [ 12.0, -1.5 ], [ 12.0, -1.0 ], [ 12.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -1.0 ], [ 13.0, -1.5 ], [ 12.5, -1.5 ], [ 12.5, -1.0 ], [ 13.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -1.0 ], [ 13.5, -1.5 ], [ 13.0, -1.5 ], [ 13.0, -1.0 ], [ 13.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -1.0 ], [ 14.0, -1.5 ], [ 13.5, -1.5 ], [ 13.5, -1.0 ], [ 14.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -1.0 ], [ 14.5, -1.5 ], [ 14.0, -1.5 ], [ 14.0, -1.0 ], [ 14.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -1.0 ], [ 15.0, -1.5 ], [ 14.5, -1.5 ], [ 14.5, -1.0 ], [ 15.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -1.0 ], [ 15.5, -1.5 ], [ 15.0, -1.5 ], [ 15.0, -1.0 ], [ 15.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -1.0 ], [ 16.0, -1.5 ], [ 15.5, -1.5 ], [ 15.5, -1.0 ], [ 16.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -1.0 ], [ 16.5, -1.5 ], [ 16.0, -1.5 ], [ 16.0, -1.0 ], [ 16.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -1.0 ], [ 17.0, -1.5 ], [ 16.5, -1.5 ], [ 16.5, -1.0 ], [ 17.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -1.0 ], [ 17.5, -1.5 ], [ 17.0, -1.5 ], [ 17.0, -1.0 ], [ 17.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -1.0 ], [ 18.0, -1.5 ], [ 17.5, -1.5 ], [ 17.5, -1.0 ], [ 18.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -1.0 ], [ 18.5, -1.5 ], [ 18.0, -1.5 ], [ 18.0, -1.0 ], [ 18.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -1.0 ], [ 19.0, -1.5 ], [ 18.5, -1.5 ], [ 18.5, -1.0 ], [ 19.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -1.0 ], [ 19.5, -1.5 ], [ 19.0, -1.5 ], [ 19.0, -1.0 ], [ 19.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -1.0 ], [ 20.0, -1.5 ], [ 19.5, -1.5 ], [ 19.5, -1.0 ], [ 20.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -1.0 ], [ 20.5, -1.5 ], [ 20.0, -1.5 ], [ 20.0, -1.0 ], [ 20.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -1.0 ], [ 21.0, -1.5 ], [ 20.5, -1.5 ], [ 20.5, -1.0 ], [ 21.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -1.0 ], [ 21.5, -1.5 ], [ 21.0, -1.5 ], [ 21.0, -1.0 ], [ 21.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -1.0 ], [ 22.0, -1.5 ], [ 21.5, -1.5 ], [ 21.5, -1.0 ], [ 22.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -1.0 ], [ 22.5, -1.5 ], [ 22.0, -1.5 ], [ 22.0, -1.0 ], [ 22.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -1.0 ], [ 23.0, -1.5 ], [ 22.5, -1.5 ], [ 22.5, -1.0 ], [ 23.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -1.0 ], [ 23.5, -1.5 ], [ 23.0, -1.5 ], [ 23.0, -1.0 ], [ 23.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -1.0 ], [ 24.0, -1.5 ], [ 23.5, -1.5 ], [ 23.5, -1.0 ], [ 24.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -1.0 ], [ 24.5, -1.5 ], [ 24.0, -1.5 ], [ 24.0, -1.0 ], [ 24.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -1.0 ], [ 25.0, -1.5 ], [ 24.5, -1.5 ], [ 24.5, -1.0 ], [ 25.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -1.0 ], [ 25.5, -1.5 ], [ 25.0, -1.5 ], [ 25.0, -1.0 ], [ 25.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -1.0 ], [ 26.0, -1.5 ], [ 25.5, -1.5 ], [ 25.5, -1.0 ], [ 26.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -1.0 ], [ 26.5, -1.5 ], [ 26.0, -1.5 ], [ 26.0, -1.0 ], [ 26.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -1.0 ], [ 27.0, -1.5 ], [ 26.5, -1.5 ], [ 26.5, -1.0 ], [ 27.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -1.0 ], [ 27.5, -1.5 ], [ 27.0, -1.5 ], [ 27.0, -1.0 ], [ 27.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -1.0 ], [ 28.0, -1.5 ], [ 27.5, -1.5 ], [ 27.5, -1.0 ], [ 28.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -1.0 ], [ 28.5, -1.5 ], [ 28.0, -1.5 ], [ 28.0, -1.0 ], [ 28.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -1.0 ], [ 29.0, -1.5 ], [ 28.5, -1.5 ], [ 28.5, -1.0 ], [ 29.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -1.0 ], [ 29.5, -1.5 ], [ 29.0, -1.5 ], [ 29.0, -1.0 ], [ 29.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -1.0 ], [ 30.0, -1.5 ], [ 29.5, -1.5 ], [ 29.5, -1.0 ], [ 30.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -1.0 ], [ 30.5, -1.5 ], [ 30.0, -1.5 ], [ 30.0, -1.0 ], [ 30.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -1.0 ], [ 31.0, -1.5 ], [ 30.5, -1.5 ], [ 30.5, -1.0 ], [ 31.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -1.0 ], [ 31.5, -1.5 ], [ 31.0, -1.5 ], [ 31.0, -1.0 ], [ 31.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -1.0 ], [ 32.0, -1.5 ], [ 31.5, -1.5 ], [ 31.5, -1.0 ], [ 32.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -1.0 ], [ 32.5, -1.5 ], [ 32.0, -1.5 ], [ 32.0, -1.0 ], [ 32.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -1.0 ], [ 33.0, -1.5 ], [ 32.5, -1.5 ], [ 32.5, -1.0 ], [ 33.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -1.0 ], [ 33.5, -1.5 ], [ 33.0, -1.5 ], [ 33.0, -1.0 ], [ 33.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -1.0 ], [ 34.0, -1.5 ], [ 33.5, -1.5 ], [ 33.5, -1.0 ], [ 34.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -1.0 ], [ 34.5, -1.5 ], [ 34.0, -1.5 ], [ 34.0, -1.0 ], [ 34.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -1.0 ], [ 35.0, -1.5 ], [ 34.5, -1.5 ], [ 34.5, -1.0 ], [ 35.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -1.0 ], [ 35.5, -1.5 ], [ 35.0, -1.5 ], [ 35.0, -1.0 ], [ 35.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -1.0 ], [ 36.0, -1.5 ], [ 35.5, -1.5 ], [ 35.5, -1.0 ], [ 36.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -1.0 ], [ 36.5, -1.5 ], [ 36.0, -1.5 ], [ 36.0, -1.0 ], [ 36.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -1.0 ], [ 37.0, -1.5 ], [ 36.5, -1.5 ], [ 36.5, -1.0 ], [ 37.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -1.0 ], [ 37.5, -1.5 ], [ 37.0, -1.5 ], [ 37.0, -1.0 ], [ 37.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -1.0 ], [ 38.0, -1.5 ], [ 37.5, -1.5 ], [ 37.5, -1.0 ], [ 38.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -1.0 ], [ 38.5, -1.5 ], [ 38.0, -1.5 ], [ 38.0, -1.0 ], [ 38.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -1.0 ], [ 39.0, -1.5 ], [ 38.5, -1.5 ], [ 38.5, -1.0 ], [ 39.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -1.0 ], [ 39.5, -1.5 ], [ 39.0, -1.5 ], [ 39.0, -1.0 ], [ 39.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -1.0 ], [ 40.0, -1.5 ], [ 39.5, -1.5 ], [ 39.5, -1.0 ], [ 40.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, -1.0 ], [ 40.5, -1.5 ], [ 40.0, -1.5 ], [ 40.0, -1.0 ], [ 40.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, -1.0 ], [ 41.0, -1.5 ], [ 40.5, -1.5 ], [ 40.5, -1.0 ], [ 41.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, -1.0 ], [ 41.5, -1.5 ], [ 41.0, -1.5 ], [ 41.0, -1.0 ], [ 41.5, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, -1.0 ], [ 42.0, -1.5 ], [ 41.5, -1.5 ], [ 41.5, -1.0 ], [ 42.0, -1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, -0.5 ], [ 9.5, -1.0 ], [ 9.0, -1.0 ], [ 9.0, -0.5 ], [ 9.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, -0.5 ], [ 10.0, -1.0 ], [ 9.5, -1.0 ], [ 9.5, -0.5 ], [ 10.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, -0.5 ], [ 10.5, -1.0 ], [ 10.0, -1.0 ], [ 10.0, -0.5 ], [ 10.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, -0.5 ], [ 11.0, -1.0 ], [ 10.5, -1.0 ], [ 10.5, -0.5 ], [ 11.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, -0.5 ], [ 11.5, -1.0 ], [ 11.0, -1.0 ], [ 11.0, -0.5 ], [ 11.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, -0.5 ], [ 12.0, -1.0 ], [ 11.5, -1.0 ], [ 11.5, -0.5 ], [ 12.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, -0.5 ], [ 12.5, -1.0 ], [ 12.0, -1.0 ], [ 12.0, -0.5 ], [ 12.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, -0.5 ], [ 13.0, -1.0 ], [ 12.5, -1.0 ], [ 12.5, -0.5 ], [ 13.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, -0.5 ], [ 13.5, -1.0 ], [ 13.0, -1.0 ], [ 13.0, -0.5 ], [ 13.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, -0.5 ], [ 14.0, -1.0 ], [ 13.5, -1.0 ], [ 13.5, -0.5 ], [ 14.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, -0.5 ], [ 14.5, -1.0 ], [ 14.0, -1.0 ], [ 14.0, -0.5 ], [ 14.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, -0.5 ], [ 15.0, -1.0 ], [ 14.5, -1.0 ], [ 14.5, -0.5 ], [ 15.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, -0.5 ], [ 15.5, -1.0 ], [ 15.0, -1.0 ], [ 15.0, -0.5 ], [ 15.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, -0.5 ], [ 16.0, -1.0 ], [ 15.5, -1.0 ], [ 15.5, -0.5 ], [ 16.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, -0.5 ], [ 16.5, -1.0 ], [ 16.0, -1.0 ], [ 16.0, -0.5 ], [ 16.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, -0.5 ], [ 17.0, -1.0 ], [ 16.5, -1.0 ], [ 16.5, -0.5 ], [ 17.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, -0.5 ], [ 17.5, -1.0 ], [ 17.0, -1.0 ], [ 17.0, -0.5 ], [ 17.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, -0.5 ], [ 18.0, -1.0 ], [ 17.5, -1.0 ], [ 17.5, -0.5 ], [ 18.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, -0.5 ], [ 18.5, -1.0 ], [ 18.0, -1.0 ], [ 18.0, -0.5 ], [ 18.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, -0.5 ], [ 19.0, -1.0 ], [ 18.5, -1.0 ], [ 18.5, -0.5 ], [ 19.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, -0.5 ], [ 19.5, -1.0 ], [ 19.0, -1.0 ], [ 19.0, -0.5 ], [ 19.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, -0.5 ], [ 20.0, -1.0 ], [ 19.5, -1.0 ], [ 19.5, -0.5 ], [ 20.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, -0.5 ], [ 20.5, -1.0 ], [ 20.0, -1.0 ], [ 20.0, -0.5 ], [ 20.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, -0.5 ], [ 21.0, -1.0 ], [ 20.5, -1.0 ], [ 20.5, -0.5 ], [ 21.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, -0.5 ], [ 21.5, -1.0 ], [ 21.0, -1.0 ], [ 21.0, -0.5 ], [ 21.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, -0.5 ], [ 22.0, -1.0 ], [ 21.5, -1.0 ], [ 21.5, -0.5 ], [ 22.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, -0.5 ], [ 22.5, -1.0 ], [ 22.0, -1.0 ], [ 22.0, -0.5 ], [ 22.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, -0.5 ], [ 23.0, -1.0 ], [ 22.5, -1.0 ], [ 22.5, -0.5 ], [ 23.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, -0.5 ], [ 23.5, -1.0 ], [ 23.0, -1.0 ], [ 23.0, -0.5 ], [ 23.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, -0.5 ], [ 24.0, -1.0 ], [ 23.5, -1.0 ], [ 23.5, -0.5 ], [ 24.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, -0.5 ], [ 24.5, -1.0 ], [ 24.0, -1.0 ], [ 24.0, -0.5 ], [ 24.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, -0.5 ], [ 25.0, -1.0 ], [ 24.5, -1.0 ], [ 24.5, -0.5 ], [ 25.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, -0.5 ], [ 25.5, -1.0 ], [ 25.0, -1.0 ], [ 25.0, -0.5 ], [ 25.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, -0.5 ], [ 26.0, -1.0 ], [ 25.5, -1.0 ], [ 25.5, -0.5 ], [ 26.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, -0.5 ], [ 26.5, -1.0 ], [ 26.0, -1.0 ], [ 26.0, -0.5 ], [ 26.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, -0.5 ], [ 27.0, -1.0 ], [ 26.5, -1.0 ], [ 26.5, -0.5 ], [ 27.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, -0.5 ], [ 27.5, -1.0 ], [ 27.0, -1.0 ], [ 27.0, -0.5 ], [ 27.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, -0.5 ], [ 28.0, -1.0 ], [ 27.5, -1.0 ], [ 27.5, -0.5 ], [ 28.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, -0.5 ], [ 28.5, -1.0 ], [ 28.0, -1.0 ], [ 28.0, -0.5 ], [ 28.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, -0.5 ], [ 29.0, -1.0 ], [ 28.5, -1.0 ], [ 28.5, -0.5 ], [ 29.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, -0.5 ], [ 29.5, -1.0 ], [ 29.0, -1.0 ], [ 29.0, -0.5 ], [ 29.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, -0.5 ], [ 30.0, -1.0 ], [ 29.5, -1.0 ], [ 29.5, -0.5 ], [ 30.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, -0.5 ], [ 30.5, -1.0 ], [ 30.0, -1.0 ], [ 30.0, -0.5 ], [ 30.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, -0.5 ], [ 31.0, -1.0 ], [ 30.5, -1.0 ], [ 30.5, -0.5 ], [ 31.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, -0.5 ], [ 31.5, -1.0 ], [ 31.0, -1.0 ], [ 31.0, -0.5 ], [ 31.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, -0.5 ], [ 32.0, -1.0 ], [ 31.5, -1.0 ], [ 31.5, -0.5 ], [ 32.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, -0.5 ], [ 32.5, -1.0 ], [ 32.0, -1.0 ], [ 32.0, -0.5 ], [ 32.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, -0.5 ], [ 33.0, -1.0 ], [ 32.5, -1.0 ], [ 32.5, -0.5 ], [ 33.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, -0.5 ], [ 33.5, -1.0 ], [ 33.0, -1.0 ], [ 33.0, -0.5 ], [ 33.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, -0.5 ], [ 34.0, -1.0 ], [ 33.5, -1.0 ], [ 33.5, -0.5 ], [ 34.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, -0.5 ], [ 34.5, -1.0 ], [ 34.0, -1.0 ], [ 34.0, -0.5 ], [ 34.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, -0.5 ], [ 35.0, -1.0 ], [ 34.5, -1.0 ], [ 34.5, -0.5 ], [ 35.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, -0.5 ], [ 35.5, -1.0 ], [ 35.0, -1.0 ], [ 35.0, -0.5 ], [ 35.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, -0.5 ], [ 36.0, -1.0 ], [ 35.5, -1.0 ], [ 35.5, -0.5 ], [ 36.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, -0.5 ], [ 36.5, -1.0 ], [ 36.0, -1.0 ], [ 36.0, -0.5 ], [ 36.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, -0.5 ], [ 37.0, -1.0 ], [ 36.5, -1.0 ], [ 36.5, -0.5 ], [ 37.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, -0.5 ], [ 37.5, -1.0 ], [ 37.0, -1.0 ], [ 37.0, -0.5 ], [ 37.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, -0.5 ], [ 38.0, -1.0 ], [ 37.5, -1.0 ], [ 37.5, -0.5 ], [ 38.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, -0.5 ], [ 38.5, -1.0 ], [ 38.0, -1.0 ], [ 38.0, -0.5 ], [ 38.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, -0.5 ], [ 39.0, -1.0 ], [ 38.5, -1.0 ], [ 38.5, -0.5 ], [ 39.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, -0.5 ], [ 39.5, -1.0 ], [ 39.0, -1.0 ], [ 39.0, -0.5 ], [ 39.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, -0.5 ], [ 40.0, -1.0 ], [ 39.5, -1.0 ], [ 39.5, -0.5 ], [ 40.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, -0.5 ], [ 40.5, -1.0 ], [ 40.0, -1.0 ], [ 40.0, -0.5 ], [ 40.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, -0.5 ], [ 41.0, -1.0 ], [ 40.5, -1.0 ], [ 40.5, -0.5 ], [ 41.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, -0.5 ], [ 41.5, -1.0 ], [ 41.0, -1.0 ], [ 41.0, -0.5 ], [ 41.5, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, -0.5 ], [ 42.0, -1.0 ], [ 41.5, -1.0 ], [ 41.5, -0.5 ], [ 42.0, -0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 0.0 ], [ 10.0, -0.5 ], [ 9.5, -0.5 ], [ 9.5, 0.0 ], [ 10.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 0.0 ], [ 10.5, -0.5 ], [ 10.0, -0.5 ], [ 10.0, 0.0 ], [ 10.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 0.0 ], [ 11.0, -0.5 ], [ 10.5, -0.5 ], [ 10.5, 0.0 ], [ 11.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 0.0 ], [ 11.5, -0.5 ], [ 11.0, -0.5 ], [ 11.0, 0.0 ], [ 11.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 0.0 ], [ 12.0, -0.5 ], [ 11.5, -0.5 ], [ 11.5, 0.0 ], [ 12.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 0.0 ], [ 12.5, -0.5 ], [ 12.0, -0.5 ], [ 12.0, 0.0 ], [ 12.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 0.0 ], [ 13.0, -0.5 ], [ 12.5, -0.5 ], [ 12.5, 0.0 ], [ 13.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 0.0 ], [ 13.5, -0.5 ], [ 13.0, -0.5 ], [ 13.0, 0.0 ], [ 13.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 0.0 ], [ 14.0, -0.5 ], [ 13.5, -0.5 ], [ 13.5, 0.0 ], [ 14.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 0.0 ], [ 14.5, -0.5 ], [ 14.0, -0.5 ], [ 14.0, 0.0 ], [ 14.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 0.0 ], [ 15.0, -0.5 ], [ 14.5, -0.5 ], [ 14.5, 0.0 ], [ 15.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 0.0 ], [ 15.5, -0.5 ], [ 15.0, -0.5 ], [ 15.0, 0.0 ], [ 15.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 0.0 ], [ 16.0, -0.5 ], [ 15.5, -0.5 ], [ 15.5, 0.0 ], [ 16.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 0.0 ], [ 16.5, -0.5 ], [ 16.0, -0.5 ], [ 16.0, 0.0 ], [ 16.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 0.0 ], [ 17.0, -0.5 ], [ 16.5, -0.5 ], [ 16.5, 0.0 ], [ 17.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 0.0 ], [ 17.5, -0.5 ], [ 17.0, -0.5 ], [ 17.0, 0.0 ], [ 17.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 0.0 ], [ 18.0, -0.5 ], [ 17.5, -0.5 ], [ 17.5, 0.0 ], [ 18.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 0.0 ], [ 18.5, -0.5 ], [ 18.0, -0.5 ], [ 18.0, 0.0 ], [ 18.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 0.0 ], [ 19.0, -0.5 ], [ 18.5, -0.5 ], [ 18.5, 0.0 ], [ 19.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 0.0 ], [ 19.5, -0.5 ], [ 19.0, -0.5 ], [ 19.0, 0.0 ], [ 19.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 0.0 ], [ 20.0, -0.5 ], [ 19.5, -0.5 ], [ 19.5, 0.0 ], [ 20.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 0.0 ], [ 20.5, -0.5 ], [ 20.0, -0.5 ], [ 20.0, 0.0 ], [ 20.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 0.0 ], [ 21.0, -0.5 ], [ 20.5, -0.5 ], [ 20.5, 0.0 ], [ 21.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 0.0 ], [ 21.5, -0.5 ], [ 21.0, -0.5 ], [ 21.0, 0.0 ], [ 21.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 0.0 ], [ 22.0, -0.5 ], [ 21.5, -0.5 ], [ 21.5, 0.0 ], [ 22.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 0.0 ], [ 22.5, -0.5 ], [ 22.0, -0.5 ], [ 22.0, 0.0 ], [ 22.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 0.0 ], [ 23.0, -0.5 ], [ 22.5, -0.5 ], [ 22.5, 0.0 ], [ 23.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 0.0 ], [ 23.5, -0.5 ], [ 23.0, -0.5 ], [ 23.0, 0.0 ], [ 23.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 0.0 ], [ 24.0, -0.5 ], [ 23.5, -0.5 ], [ 23.5, 0.0 ], [ 24.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 0.0 ], [ 24.5, -0.5 ], [ 24.0, -0.5 ], [ 24.0, 0.0 ], [ 24.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 0.0 ], [ 25.0, -0.5 ], [ 24.5, -0.5 ], [ 24.5, 0.0 ], [ 25.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 0.0 ], [ 25.5, -0.5 ], [ 25.0, -0.5 ], [ 25.0, 0.0 ], [ 25.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 0.0 ], [ 26.0, -0.5 ], [ 25.5, -0.5 ], [ 25.5, 0.0 ], [ 26.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 0.0 ], [ 26.5, -0.5 ], [ 26.0, -0.5 ], [ 26.0, 0.0 ], [ 26.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 0.0 ], [ 27.0, -0.5 ], [ 26.5, -0.5 ], [ 26.5, 0.0 ], [ 27.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 0.0 ], [ 27.5, -0.5 ], [ 27.0, -0.5 ], [ 27.0, 0.0 ], [ 27.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 0.0 ], [ 28.0, -0.5 ], [ 27.5, -0.5 ], [ 27.5, 0.0 ], [ 28.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 0.0 ], [ 28.5, -0.5 ], [ 28.0, -0.5 ], [ 28.0, 0.0 ], [ 28.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 0.0 ], [ 29.0, -0.5 ], [ 28.5, -0.5 ], [ 28.5, 0.0 ], [ 29.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 0.0 ], [ 29.5, -0.5 ], [ 29.0, -0.5 ], [ 29.0, 0.0 ], [ 29.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 0.0 ], [ 30.0, -0.5 ], [ 29.5, -0.5 ], [ 29.5, 0.0 ], [ 30.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 0.0 ], [ 30.5, -0.5 ], [ 30.0, -0.5 ], [ 30.0, 0.0 ], [ 30.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 0.0 ], [ 31.0, -0.5 ], [ 30.5, -0.5 ], [ 30.5, 0.0 ], [ 31.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 0.0 ], [ 31.5, -0.5 ], [ 31.0, -0.5 ], [ 31.0, 0.0 ], [ 31.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 0.0 ], [ 32.0, -0.5 ], [ 31.5, -0.5 ], [ 31.5, 0.0 ], [ 32.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 0.0 ], [ 32.5, -0.5 ], [ 32.0, -0.5 ], [ 32.0, 0.0 ], [ 32.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 0.0 ], [ 33.0, -0.5 ], [ 32.5, -0.5 ], [ 32.5, 0.0 ], [ 33.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 0.0 ], [ 33.5, -0.5 ], [ 33.0, -0.5 ], [ 33.0, 0.0 ], [ 33.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 0.0 ], [ 34.0, -0.5 ], [ 33.5, -0.5 ], [ 33.5, 0.0 ], [ 34.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 0.0 ], [ 34.5, -0.5 ], [ 34.0, -0.5 ], [ 34.0, 0.0 ], [ 34.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 0.0 ], [ 35.0, -0.5 ], [ 34.5, -0.5 ], [ 34.5, 0.0 ], [ 35.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 0.0 ], [ 35.5, -0.5 ], [ 35.0, -0.5 ], [ 35.0, 0.0 ], [ 35.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 0.0 ], [ 36.0, -0.5 ], [ 35.5, -0.5 ], [ 35.5, 0.0 ], [ 36.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 0.0 ], [ 36.5, -0.5 ], [ 36.0, -0.5 ], [ 36.0, 0.0 ], [ 36.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 0.0 ], [ 37.0, -0.5 ], [ 36.5, -0.5 ], [ 36.5, 0.0 ], [ 37.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 0.0 ], [ 37.5, -0.5 ], [ 37.0, -0.5 ], [ 37.0, 0.0 ], [ 37.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 0.0 ], [ 38.0, -0.5 ], [ 37.5, -0.5 ], [ 37.5, 0.0 ], [ 38.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 0.0 ], [ 38.5, -0.5 ], [ 38.0, -0.5 ], [ 38.0, 0.0 ], [ 38.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 0.0 ], [ 39.0, -0.5 ], [ 38.5, -0.5 ], [ 38.5, 0.0 ], [ 39.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 0.0 ], [ 39.5, -0.5 ], [ 39.0, -0.5 ], [ 39.0, 0.0 ], [ 39.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 0.0 ], [ 40.0, -0.5 ], [ 39.5, -0.5 ], [ 39.5, 0.0 ], [ 40.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 0.0 ], [ 40.5, -0.5 ], [ 40.0, -0.5 ], [ 40.0, 0.0 ], [ 40.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 0.0 ], [ 41.0, -0.5 ], [ 40.5, -0.5 ], [ 40.5, 0.0 ], [ 41.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 0.0 ], [ 41.5, -0.5 ], [ 41.0, -0.5 ], [ 41.0, 0.0 ], [ 41.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 0.0 ], [ 42.0, -0.5 ], [ 41.5, -0.5 ], [ 41.5, 0.0 ], [ 42.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 0.0 ], [ 42.5, -0.5 ], [ 42.0, -0.5 ], [ 42.0, 0.0 ], [ 42.5, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 0.5 ], [ 10.0, 0.0 ], [ 9.5, 0.0 ], [ 9.5, 0.5 ], [ 10.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 0.5 ], [ 10.5, 0.0 ], [ 10.0, 0.0 ], [ 10.0, 0.5 ], [ 10.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 0.5 ], [ 11.0, 0.0 ], [ 10.5, 0.0 ], [ 10.5, 0.5 ], [ 11.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 0.5 ], [ 11.5, 0.0 ], [ 11.0, 0.0 ], [ 11.0, 0.5 ], [ 11.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 0.5 ], [ 12.0, 0.0 ], [ 11.5, 0.0 ], [ 11.5, 0.5 ], [ 12.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 0.5 ], [ 12.5, 0.0 ], [ 12.0, 0.0 ], [ 12.0, 0.5 ], [ 12.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 0.5 ], [ 13.0, 0.0 ], [ 12.5, 0.0 ], [ 12.5, 0.5 ], [ 13.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 0.5 ], [ 13.5, 0.0 ], [ 13.0, 0.0 ], [ 13.0, 0.5 ], [ 13.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 0.5 ], [ 14.0, 0.0 ], [ 13.5, 0.0 ], [ 13.5, 0.5 ], [ 14.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 0.5 ], [ 14.5, 0.0 ], [ 14.0, 0.0 ], [ 14.0, 0.5 ], [ 14.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 0.5 ], [ 15.0, 0.0 ], [ 14.5, 0.0 ], [ 14.5, 0.5 ], [ 15.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 0.5 ], [ 15.5, 0.0 ], [ 15.0, 0.0 ], [ 15.0, 0.5 ], [ 15.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 0.5 ], [ 16.0, 0.0 ], [ 15.5, 0.0 ], [ 15.5, 0.5 ], [ 16.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 0.5 ], [ 16.5, 0.0 ], [ 16.0, 0.0 ], [ 16.0, 0.5 ], [ 16.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 0.5 ], [ 17.0, 0.0 ], [ 16.5, 0.0 ], [ 16.5, 0.5 ], [ 17.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 0.5 ], [ 17.5, 0.0 ], [ 17.0, 0.0 ], [ 17.0, 0.5 ], [ 17.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 0.5 ], [ 18.0, 0.0 ], [ 17.5, 0.0 ], [ 17.5, 0.5 ], [ 18.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 0.5 ], [ 18.5, 0.0 ], [ 18.0, 0.0 ], [ 18.0, 0.5 ], [ 18.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 0.5 ], [ 19.0, 0.0 ], [ 18.5, 0.0 ], [ 18.5, 0.5 ], [ 19.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 0.5 ], [ 19.5, 0.0 ], [ 19.0, 0.0 ], [ 19.0, 0.5 ], [ 19.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 0.5 ], [ 20.0, 0.0 ], [ 19.5, 0.0 ], [ 19.5, 0.5 ], [ 20.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 0.5 ], [ 20.5, 0.0 ], [ 20.0, 0.0 ], [ 20.0, 0.5 ], [ 20.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 0.5 ], [ 21.0, 0.0 ], [ 20.5, 0.0 ], [ 20.5, 0.5 ], [ 21.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 0.5 ], [ 21.5, 0.0 ], [ 21.0, 0.0 ], [ 21.0, 0.5 ], [ 21.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 0.5 ], [ 22.0, 0.0 ], [ 21.5, 0.0 ], [ 21.5, 0.5 ], [ 22.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 0.5 ], [ 22.5, 0.0 ], [ 22.0, 0.0 ], [ 22.0, 0.5 ], [ 22.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 0.5 ], [ 23.0, 0.0 ], [ 22.5, 0.0 ], [ 22.5, 0.5 ], [ 23.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 0.5 ], [ 23.5, 0.0 ], [ 23.0, 0.0 ], [ 23.0, 0.5 ], [ 23.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 0.5 ], [ 24.0, 0.0 ], [ 23.5, 0.0 ], [ 23.5, 0.5 ], [ 24.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 0.5 ], [ 24.5, 0.0 ], [ 24.0, 0.0 ], [ 24.0, 0.5 ], [ 24.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 0.5 ], [ 25.0, 0.0 ], [ 24.5, 0.0 ], [ 24.5, 0.5 ], [ 25.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 0.5 ], [ 25.5, 0.0 ], [ 25.0, 0.0 ], [ 25.0, 0.5 ], [ 25.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 0.5 ], [ 26.0, 0.0 ], [ 25.5, 0.0 ], [ 25.5, 0.5 ], [ 26.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 0.5 ], [ 26.5, 0.0 ], [ 26.0, 0.0 ], [ 26.0, 0.5 ], [ 26.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 0.5 ], [ 27.0, 0.0 ], [ 26.5, 0.0 ], [ 26.5, 0.5 ], [ 27.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 0.5 ], [ 27.5, 0.0 ], [ 27.0, 0.0 ], [ 27.0, 0.5 ], [ 27.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 0.5 ], [ 28.0, 0.0 ], [ 27.5, 0.0 ], [ 27.5, 0.5 ], [ 28.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 0.5 ], [ 28.5, 0.0 ], [ 28.0, 0.0 ], [ 28.0, 0.5 ], [ 28.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 0.5 ], [ 29.0, 0.0 ], [ 28.5, 0.0 ], [ 28.5, 0.5 ], [ 29.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 0.5 ], [ 29.5, 0.0 ], [ 29.0, 0.0 ], [ 29.0, 0.5 ], [ 29.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 0.5 ], [ 30.0, 0.0 ], [ 29.5, 0.0 ], [ 29.5, 0.5 ], [ 30.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 0.5 ], [ 30.5, 0.0 ], [ 30.0, 0.0 ], [ 30.0, 0.5 ], [ 30.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 0.5 ], [ 31.0, 0.0 ], [ 30.5, 0.0 ], [ 30.5, 0.5 ], [ 31.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 0.5 ], [ 31.5, 0.0 ], [ 31.0, 0.0 ], [ 31.0, 0.5 ], [ 31.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 0.5 ], [ 32.0, 0.0 ], [ 31.5, 0.0 ], [ 31.5, 0.5 ], [ 32.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 0.5 ], [ 32.5, 0.0 ], [ 32.0, 0.0 ], [ 32.0, 0.5 ], [ 32.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 0.5 ], [ 33.0, 0.0 ], [ 32.5, 0.0 ], [ 32.5, 0.5 ], [ 33.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 0.5 ], [ 33.5, 0.0 ], [ 33.0, 0.0 ], [ 33.0, 0.5 ], [ 33.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 0.5 ], [ 34.0, 0.0 ], [ 33.5, 0.0 ], [ 33.5, 0.5 ], [ 34.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 0.5 ], [ 34.5, 0.0 ], [ 34.0, 0.0 ], [ 34.0, 0.5 ], [ 34.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 0.5 ], [ 35.0, 0.0 ], [ 34.5, 0.0 ], [ 34.5, 0.5 ], [ 35.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 0.5 ], [ 35.5, 0.0 ], [ 35.0, 0.0 ], [ 35.0, 0.5 ], [ 35.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 0.5 ], [ 36.0, 0.0 ], [ 35.5, 0.0 ], [ 35.5, 0.5 ], [ 36.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 0.5 ], [ 36.5, 0.0 ], [ 36.0, 0.0 ], [ 36.0, 0.5 ], [ 36.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 0.5 ], [ 37.0, 0.0 ], [ 36.5, 0.0 ], [ 36.5, 0.5 ], [ 37.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 0.5 ], [ 37.5, 0.0 ], [ 37.0, 0.0 ], [ 37.0, 0.5 ], [ 37.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 0.5 ], [ 38.0, 0.0 ], [ 37.5, 0.0 ], [ 37.5, 0.5 ], [ 38.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 0.5 ], [ 38.5, 0.0 ], [ 38.0, 0.0 ], [ 38.0, 0.5 ], [ 38.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 0.5 ], [ 39.0, 0.0 ], [ 38.5, 0.0 ], [ 38.5, 0.5 ], [ 39.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 0.5 ], [ 39.5, 0.0 ], [ 39.0, 0.0 ], [ 39.0, 0.5 ], [ 39.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 0.5 ], [ 40.0, 0.0 ], [ 39.5, 0.0 ], [ 39.5, 0.5 ], [ 40.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 0.5 ], [ 40.5, 0.0 ], [ 40.0, 0.0 ], [ 40.0, 0.5 ], [ 40.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 0.5 ], [ 41.0, 0.0 ], [ 40.5, 0.0 ], [ 40.5, 0.5 ], [ 41.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 0.5 ], [ 41.5, 0.0 ], [ 41.0, 0.0 ], [ 41.0, 0.5 ], [ 41.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 0.5 ], [ 42.0, 0.0 ], [ 41.5, 0.0 ], [ 41.5, 0.5 ], [ 42.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 0.5 ], [ 42.5, 0.0 ], [ 42.0, 0.0 ], [ 42.0, 0.5 ], [ 42.5, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 0.5 ], [ 43.0, 0.0 ], [ 42.5, 0.0 ], [ 42.5, 0.5 ], [ 43.0, 0.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 1.0 ], [ 10.0, 0.5 ], [ 9.5, 0.5 ], [ 9.5, 1.0 ], [ 10.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 1.0 ], [ 10.5, 0.5 ], [ 10.0, 0.5 ], [ 10.0, 1.0 ], [ 10.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 1.0 ], [ 11.0, 0.5 ], [ 10.5, 0.5 ], [ 10.5, 1.0 ], [ 11.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 1.0 ], [ 11.5, 0.5 ], [ 11.0, 0.5 ], [ 11.0, 1.0 ], [ 11.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 1.0 ], [ 12.0, 0.5 ], [ 11.5, 0.5 ], [ 11.5, 1.0 ], [ 12.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 1.0 ], [ 12.5, 0.5 ], [ 12.0, 0.5 ], [ 12.0, 1.0 ], [ 12.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 1.0 ], [ 13.0, 0.5 ], [ 12.5, 0.5 ], [ 12.5, 1.0 ], [ 13.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 1.0 ], [ 13.5, 0.5 ], [ 13.0, 0.5 ], [ 13.0, 1.0 ], [ 13.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 1.0 ], [ 14.0, 0.5 ], [ 13.5, 0.5 ], [ 13.5, 1.0 ], [ 14.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 1.0 ], [ 14.5, 0.5 ], [ 14.0, 0.5 ], [ 14.0, 1.0 ], [ 14.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 1.0 ], [ 15.0, 0.5 ], [ 14.5, 0.5 ], [ 14.5, 1.0 ], [ 15.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 1.0 ], [ 15.5, 0.5 ], [ 15.0, 0.5 ], [ 15.0, 1.0 ], [ 15.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 1.0 ], [ 16.0, 0.5 ], [ 15.5, 0.5 ], [ 15.5, 1.0 ], [ 16.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 1.0 ], [ 16.5, 0.5 ], [ 16.0, 0.5 ], [ 16.0, 1.0 ], [ 16.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 1.0 ], [ 17.0, 0.5 ], [ 16.5, 0.5 ], [ 16.5, 1.0 ], [ 17.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 1.0 ], [ 17.5, 0.5 ], [ 17.0, 0.5 ], [ 17.0, 1.0 ], [ 17.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 1.0 ], [ 18.0, 0.5 ], [ 17.5, 0.5 ], [ 17.5, 1.0 ], [ 18.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 1.0 ], [ 18.5, 0.5 ], [ 18.0, 0.5 ], [ 18.0, 1.0 ], [ 18.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 1.0 ], [ 19.0, 0.5 ], [ 18.5, 0.5 ], [ 18.5, 1.0 ], [ 19.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 1.0 ], [ 19.5, 0.5 ], [ 19.0, 0.5 ], [ 19.0, 1.0 ], [ 19.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 1.0 ], [ 20.0, 0.5 ], [ 19.5, 0.5 ], [ 19.5, 1.0 ], [ 20.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 1.0 ], [ 20.5, 0.5 ], [ 20.0, 0.5 ], [ 20.0, 1.0 ], [ 20.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 1.0 ], [ 21.0, 0.5 ], [ 20.5, 0.5 ], [ 20.5, 1.0 ], [ 21.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 1.0 ], [ 21.5, 0.5 ], [ 21.0, 0.5 ], [ 21.0, 1.0 ], [ 21.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 1.0 ], [ 22.0, 0.5 ], [ 21.5, 0.5 ], [ 21.5, 1.0 ], [ 22.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 1.0 ], [ 22.5, 0.5 ], [ 22.0, 0.5 ], [ 22.0, 1.0 ], [ 22.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 1.0 ], [ 23.0, 0.5 ], [ 22.5, 0.5 ], [ 22.5, 1.0 ], [ 23.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 1.0 ], [ 23.5, 0.5 ], [ 23.0, 0.5 ], [ 23.0, 1.0 ], [ 23.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 1.0 ], [ 24.0, 0.5 ], [ 23.5, 0.5 ], [ 23.5, 1.0 ], [ 24.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 1.0 ], [ 24.5, 0.5 ], [ 24.0, 0.5 ], [ 24.0, 1.0 ], [ 24.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 1.0 ], [ 25.0, 0.5 ], [ 24.5, 0.5 ], [ 24.5, 1.0 ], [ 25.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 1.0 ], [ 25.5, 0.5 ], [ 25.0, 0.5 ], [ 25.0, 1.0 ], [ 25.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 1.0 ], [ 26.0, 0.5 ], [ 25.5, 0.5 ], [ 25.5, 1.0 ], [ 26.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 1.0 ], [ 26.5, 0.5 ], [ 26.0, 0.5 ], [ 26.0, 1.0 ], [ 26.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 1.0 ], [ 27.0, 0.5 ], [ 26.5, 0.5 ], [ 26.5, 1.0 ], [ 27.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 1.0 ], [ 27.5, 0.5 ], [ 27.0, 0.5 ], [ 27.0, 1.0 ], [ 27.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 1.0 ], [ 28.0, 0.5 ], [ 27.5, 0.5 ], [ 27.5, 1.0 ], [ 28.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 1.0 ], [ 28.5, 0.5 ], [ 28.0, 0.5 ], [ 28.0, 1.0 ], [ 28.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 1.0 ], [ 29.0, 0.5 ], [ 28.5, 0.5 ], [ 28.5, 1.0 ], [ 29.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 1.0 ], [ 29.5, 0.5 ], [ 29.0, 0.5 ], [ 29.0, 1.0 ], [ 29.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 1.0 ], [ 30.0, 0.5 ], [ 29.5, 0.5 ], [ 29.5, 1.0 ], [ 30.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 1.0 ], [ 30.5, 0.5 ], [ 30.0, 0.5 ], [ 30.0, 1.0 ], [ 30.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 1.0 ], [ 31.0, 0.5 ], [ 30.5, 0.5 ], [ 30.5, 1.0 ], [ 31.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 1.0 ], [ 31.5, 0.5 ], [ 31.0, 0.5 ], [ 31.0, 1.0 ], [ 31.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 1.0 ], [ 32.0, 0.5 ], [ 31.5, 0.5 ], [ 31.5, 1.0 ], [ 32.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 1.0 ], [ 32.5, 0.5 ], [ 32.0, 0.5 ], [ 32.0, 1.0 ], [ 32.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 1.0 ], [ 33.0, 0.5 ], [ 32.5, 0.5 ], [ 32.5, 1.0 ], [ 33.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 1.0 ], [ 33.5, 0.5 ], [ 33.0, 0.5 ], [ 33.0, 1.0 ], [ 33.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 1.0 ], [ 34.0, 0.5 ], [ 33.5, 0.5 ], [ 33.5, 1.0 ], [ 34.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 1.0 ], [ 34.5, 0.5 ], [ 34.0, 0.5 ], [ 34.0, 1.0 ], [ 34.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 1.0 ], [ 35.0, 0.5 ], [ 34.5, 0.5 ], [ 34.5, 1.0 ], [ 35.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 1.0 ], [ 35.5, 0.5 ], [ 35.0, 0.5 ], [ 35.0, 1.0 ], [ 35.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 1.0 ], [ 36.0, 0.5 ], [ 35.5, 0.5 ], [ 35.5, 1.0 ], [ 36.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 1.0 ], [ 36.5, 0.5 ], [ 36.0, 0.5 ], [ 36.0, 1.0 ], [ 36.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 1.0 ], [ 37.0, 0.5 ], [ 36.5, 0.5 ], [ 36.5, 1.0 ], [ 37.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 1.0 ], [ 37.5, 0.5 ], [ 37.0, 0.5 ], [ 37.0, 1.0 ], [ 37.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 1.0 ], [ 38.0, 0.5 ], [ 37.5, 0.5 ], [ 37.5, 1.0 ], [ 38.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 1.0 ], [ 38.5, 0.5 ], [ 38.0, 0.5 ], [ 38.0, 1.0 ], [ 38.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 1.0 ], [ 39.0, 0.5 ], [ 38.5, 0.5 ], [ 38.5, 1.0 ], [ 39.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 1.0 ], [ 39.5, 0.5 ], [ 39.0, 0.5 ], [ 39.0, 1.0 ], [ 39.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 1.0 ], [ 40.0, 0.5 ], [ 39.5, 0.5 ], [ 39.5, 1.0 ], [ 40.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 1.0 ], [ 40.5, 0.5 ], [ 40.0, 0.5 ], [ 40.0, 1.0 ], [ 40.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 1.0 ], [ 41.0, 0.5 ], [ 40.5, 0.5 ], [ 40.5, 1.0 ], [ 41.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 1.0 ], [ 41.5, 0.5 ], [ 41.0, 0.5 ], [ 41.0, 1.0 ], [ 41.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 1.0 ], [ 42.0, 0.5 ], [ 41.5, 0.5 ], [ 41.5, 1.0 ], [ 42.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 1.0 ], [ 42.5, 0.5 ], [ 42.0, 0.5 ], [ 42.0, 1.0 ], [ 42.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 1.0 ], [ 43.0, 0.5 ], [ 42.5, 0.5 ], [ 42.5, 1.0 ], [ 43.0, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 1.0 ], [ 43.5, 0.5 ], [ 43.0, 0.5 ], [ 43.0, 1.0 ], [ 43.5, 1.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 1.5 ], [ 10.0, 1.0 ], [ 9.5, 1.0 ], [ 9.5, 1.5 ], [ 10.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 1.5 ], [ 10.5, 1.0 ], [ 10.0, 1.0 ], [ 10.0, 1.5 ], [ 10.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 1.5 ], [ 11.0, 1.0 ], [ 10.5, 1.0 ], [ 10.5, 1.5 ], [ 11.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 1.5 ], [ 11.5, 1.0 ], [ 11.0, 1.0 ], [ 11.0, 1.5 ], [ 11.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 1.5 ], [ 12.0, 1.0 ], [ 11.5, 1.0 ], [ 11.5, 1.5 ], [ 12.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 1.5 ], [ 12.5, 1.0 ], [ 12.0, 1.0 ], [ 12.0, 1.5 ], [ 12.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 1.5 ], [ 13.0, 1.0 ], [ 12.5, 1.0 ], [ 12.5, 1.5 ], [ 13.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 1.5 ], [ 13.5, 1.0 ], [ 13.0, 1.0 ], [ 13.0, 1.5 ], [ 13.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 1.5 ], [ 14.0, 1.0 ], [ 13.5, 1.0 ], [ 13.5, 1.5 ], [ 14.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 1.5 ], [ 14.5, 1.0 ], [ 14.0, 1.0 ], [ 14.0, 1.5 ], [ 14.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 1.5 ], [ 15.0, 1.0 ], [ 14.5, 1.0 ], [ 14.5, 1.5 ], [ 15.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 1.5 ], [ 15.5, 1.0 ], [ 15.0, 1.0 ], [ 15.0, 1.5 ], [ 15.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 1.5 ], [ 16.0, 1.0 ], [ 15.5, 1.0 ], [ 15.5, 1.5 ], [ 16.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 1.5 ], [ 16.5, 1.0 ], [ 16.0, 1.0 ], [ 16.0, 1.5 ], [ 16.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 1.5 ], [ 17.0, 1.0 ], [ 16.5, 1.0 ], [ 16.5, 1.5 ], [ 17.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 1.5 ], [ 17.5, 1.0 ], [ 17.0, 1.0 ], [ 17.0, 1.5 ], [ 17.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 1.5 ], [ 18.0, 1.0 ], [ 17.5, 1.0 ], [ 17.5, 1.5 ], [ 18.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 1.5 ], [ 18.5, 1.0 ], [ 18.0, 1.0 ], [ 18.0, 1.5 ], [ 18.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 1.5 ], [ 19.0, 1.0 ], [ 18.5, 1.0 ], [ 18.5, 1.5 ], [ 19.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 1.5 ], [ 19.5, 1.0 ], [ 19.0, 1.0 ], [ 19.0, 1.5 ], [ 19.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 1.5 ], [ 20.0, 1.0 ], [ 19.5, 1.0 ], [ 19.5, 1.5 ], [ 20.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 1.5 ], [ 20.5, 1.0 ], [ 20.0, 1.0 ], [ 20.0, 1.5 ], [ 20.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 1.5 ], [ 21.0, 1.0 ], [ 20.5, 1.0 ], [ 20.5, 1.5 ], [ 21.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 1.5 ], [ 21.5, 1.0 ], [ 21.0, 1.0 ], [ 21.0, 1.5 ], [ 21.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 1.5 ], [ 22.0, 1.0 ], [ 21.5, 1.0 ], [ 21.5, 1.5 ], [ 22.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 1.5 ], [ 22.5, 1.0 ], [ 22.0, 1.0 ], [ 22.0, 1.5 ], [ 22.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 1.5 ], [ 23.0, 1.0 ], [ 22.5, 1.0 ], [ 22.5, 1.5 ], [ 23.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 1.5 ], [ 23.5, 1.0 ], [ 23.0, 1.0 ], [ 23.0, 1.5 ], [ 23.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 1.5 ], [ 24.0, 1.0 ], [ 23.5, 1.0 ], [ 23.5, 1.5 ], [ 24.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 1.5 ], [ 24.5, 1.0 ], [ 24.0, 1.0 ], [ 24.0, 1.5 ], [ 24.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 1.5 ], [ 25.0, 1.0 ], [ 24.5, 1.0 ], [ 24.5, 1.5 ], [ 25.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 1.5 ], [ 25.5, 1.0 ], [ 25.0, 1.0 ], [ 25.0, 1.5 ], [ 25.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 1.5 ], [ 26.0, 1.0 ], [ 25.5, 1.0 ], [ 25.5, 1.5 ], [ 26.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 1.5 ], [ 26.5, 1.0 ], [ 26.0, 1.0 ], [ 26.0, 1.5 ], [ 26.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 1.5 ], [ 27.0, 1.0 ], [ 26.5, 1.0 ], [ 26.5, 1.5 ], [ 27.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 1.5 ], [ 27.5, 1.0 ], [ 27.0, 1.0 ], [ 27.0, 1.5 ], [ 27.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 1.5 ], [ 28.0, 1.0 ], [ 27.5, 1.0 ], [ 27.5, 1.5 ], [ 28.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 1.5 ], [ 28.5, 1.0 ], [ 28.0, 1.0 ], [ 28.0, 1.5 ], [ 28.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 1.5 ], [ 29.0, 1.0 ], [ 28.5, 1.0 ], [ 28.5, 1.5 ], [ 29.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 1.5 ], [ 29.5, 1.0 ], [ 29.0, 1.0 ], [ 29.0, 1.5 ], [ 29.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 1.5 ], [ 30.0, 1.0 ], [ 29.5, 1.0 ], [ 29.5, 1.5 ], [ 30.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 1.5 ], [ 30.5, 1.0 ], [ 30.0, 1.0 ], [ 30.0, 1.5 ], [ 30.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 1.5 ], [ 31.0, 1.0 ], [ 30.5, 1.0 ], [ 30.5, 1.5 ], [ 31.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 1.5 ], [ 31.5, 1.0 ], [ 31.0, 1.0 ], [ 31.0, 1.5 ], [ 31.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 1.5 ], [ 32.0, 1.0 ], [ 31.5, 1.0 ], [ 31.5, 1.5 ], [ 32.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 1.5 ], [ 32.5, 1.0 ], [ 32.0, 1.0 ], [ 32.0, 1.5 ], [ 32.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 1.5 ], [ 33.0, 1.0 ], [ 32.5, 1.0 ], [ 32.5, 1.5 ], [ 33.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 1.5 ], [ 33.5, 1.0 ], [ 33.0, 1.0 ], [ 33.0, 1.5 ], [ 33.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 1.5 ], [ 34.0, 1.0 ], [ 33.5, 1.0 ], [ 33.5, 1.5 ], [ 34.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 1.5 ], [ 34.5, 1.0 ], [ 34.0, 1.0 ], [ 34.0, 1.5 ], [ 34.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 1.5 ], [ 35.0, 1.0 ], [ 34.5, 1.0 ], [ 34.5, 1.5 ], [ 35.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 1.5 ], [ 35.5, 1.0 ], [ 35.0, 1.0 ], [ 35.0, 1.5 ], [ 35.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 1.5 ], [ 36.0, 1.0 ], [ 35.5, 1.0 ], [ 35.5, 1.5 ], [ 36.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 1.5 ], [ 36.5, 1.0 ], [ 36.0, 1.0 ], [ 36.0, 1.5 ], [ 36.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 1.5 ], [ 37.0, 1.0 ], [ 36.5, 1.0 ], [ 36.5, 1.5 ], [ 37.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 1.5 ], [ 37.5, 1.0 ], [ 37.0, 1.0 ], [ 37.0, 1.5 ], [ 37.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 1.5 ], [ 38.0, 1.0 ], [ 37.5, 1.0 ], [ 37.5, 1.5 ], [ 38.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 1.5 ], [ 38.5, 1.0 ], [ 38.0, 1.0 ], [ 38.0, 1.5 ], [ 38.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 1.5 ], [ 39.0, 1.0 ], [ 38.5, 1.0 ], [ 38.5, 1.5 ], [ 39.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 1.5 ], [ 39.5, 1.0 ], [ 39.0, 1.0 ], [ 39.0, 1.5 ], [ 39.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 1.5 ], [ 40.0, 1.0 ], [ 39.5, 1.0 ], [ 39.5, 1.5 ], [ 40.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 1.5 ], [ 40.5, 1.0 ], [ 40.0, 1.0 ], [ 40.0, 1.5 ], [ 40.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 1.5 ], [ 41.0, 1.0 ], [ 40.5, 1.0 ], [ 40.5, 1.5 ], [ 41.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 1.5 ], [ 41.5, 1.0 ], [ 41.0, 1.0 ], [ 41.0, 1.5 ], [ 41.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 1.5 ], [ 42.0, 1.0 ], [ 41.5, 1.0 ], [ 41.5, 1.5 ], [ 42.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 1.5 ], [ 42.5, 1.0 ], [ 42.0, 1.0 ], [ 42.0, 1.5 ], [ 42.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 1.5 ], [ 43.0, 1.0 ], [ 42.5, 1.0 ], [ 42.5, 1.5 ], [ 43.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 1.5 ], [ 43.5, 1.0 ], [ 43.0, 1.0 ], [ 43.0, 1.5 ], [ 43.5, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 1.5 ], [ 44.0, 1.0 ], [ 43.5, 1.0 ], [ 43.5, 1.5 ], [ 44.0, 1.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 2.0 ], [ 10.0, 1.5 ], [ 9.5, 1.5 ], [ 9.5, 2.0 ], [ 10.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 2.0 ], [ 10.5, 1.5 ], [ 10.0, 1.5 ], [ 10.0, 2.0 ], [ 10.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 2.0 ], [ 11.0, 1.5 ], [ 10.5, 1.5 ], [ 10.5, 2.0 ], [ 11.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 2.0 ], [ 11.5, 1.5 ], [ 11.0, 1.5 ], [ 11.0, 2.0 ], [ 11.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 2.0 ], [ 12.0, 1.5 ], [ 11.5, 1.5 ], [ 11.5, 2.0 ], [ 12.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 2.0 ], [ 12.5, 1.5 ], [ 12.0, 1.5 ], [ 12.0, 2.0 ], [ 12.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 2.0 ], [ 13.0, 1.5 ], [ 12.5, 1.5 ], [ 12.5, 2.0 ], [ 13.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 2.0 ], [ 13.5, 1.5 ], [ 13.0, 1.5 ], [ 13.0, 2.0 ], [ 13.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 2.0 ], [ 14.0, 1.5 ], [ 13.5, 1.5 ], [ 13.5, 2.0 ], [ 14.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 2.0 ], [ 14.5, 1.5 ], [ 14.0, 1.5 ], [ 14.0, 2.0 ], [ 14.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 2.0 ], [ 15.0, 1.5 ], [ 14.5, 1.5 ], [ 14.5, 2.0 ], [ 15.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 2.0 ], [ 15.5, 1.5 ], [ 15.0, 1.5 ], [ 15.0, 2.0 ], [ 15.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 2.0 ], [ 16.0, 1.5 ], [ 15.5, 1.5 ], [ 15.5, 2.0 ], [ 16.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 2.0 ], [ 16.5, 1.5 ], [ 16.0, 1.5 ], [ 16.0, 2.0 ], [ 16.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 2.0 ], [ 17.0, 1.5 ], [ 16.5, 1.5 ], [ 16.5, 2.0 ], [ 17.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 2.0 ], [ 17.5, 1.5 ], [ 17.0, 1.5 ], [ 17.0, 2.0 ], [ 17.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 2.0 ], [ 18.0, 1.5 ], [ 17.5, 1.5 ], [ 17.5, 2.0 ], [ 18.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 2.0 ], [ 18.5, 1.5 ], [ 18.0, 1.5 ], [ 18.0, 2.0 ], [ 18.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 2.0 ], [ 19.0, 1.5 ], [ 18.5, 1.5 ], [ 18.5, 2.0 ], [ 19.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 2.0 ], [ 19.5, 1.5 ], [ 19.0, 1.5 ], [ 19.0, 2.0 ], [ 19.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 2.0 ], [ 20.0, 1.5 ], [ 19.5, 1.5 ], [ 19.5, 2.0 ], [ 20.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 2.0 ], [ 20.5, 1.5 ], [ 20.0, 1.5 ], [ 20.0, 2.0 ], [ 20.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 2.0 ], [ 21.0, 1.5 ], [ 20.5, 1.5 ], [ 20.5, 2.0 ], [ 21.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 2.0 ], [ 21.5, 1.5 ], [ 21.0, 1.5 ], [ 21.0, 2.0 ], [ 21.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 2.0 ], [ 22.0, 1.5 ], [ 21.5, 1.5 ], [ 21.5, 2.0 ], [ 22.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 2.0 ], [ 22.5, 1.5 ], [ 22.0, 1.5 ], [ 22.0, 2.0 ], [ 22.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 2.0 ], [ 23.0, 1.5 ], [ 22.5, 1.5 ], [ 22.5, 2.0 ], [ 23.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 2.0 ], [ 23.5, 1.5 ], [ 23.0, 1.5 ], [ 23.0, 2.0 ], [ 23.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 2.0 ], [ 24.0, 1.5 ], [ 23.5, 1.5 ], [ 23.5, 2.0 ], [ 24.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 2.0 ], [ 24.5, 1.5 ], [ 24.0, 1.5 ], [ 24.0, 2.0 ], [ 24.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 2.0 ], [ 25.0, 1.5 ], [ 24.5, 1.5 ], [ 24.5, 2.0 ], [ 25.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 2.0 ], [ 25.5, 1.5 ], [ 25.0, 1.5 ], [ 25.0, 2.0 ], [ 25.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 2.0 ], [ 26.0, 1.5 ], [ 25.5, 1.5 ], [ 25.5, 2.0 ], [ 26.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 2.0 ], [ 26.5, 1.5 ], [ 26.0, 1.5 ], [ 26.0, 2.0 ], [ 26.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 2.0 ], [ 27.0, 1.5 ], [ 26.5, 1.5 ], [ 26.5, 2.0 ], [ 27.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 2.0 ], [ 27.5, 1.5 ], [ 27.0, 1.5 ], [ 27.0, 2.0 ], [ 27.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 2.0 ], [ 28.0, 1.5 ], [ 27.5, 1.5 ], [ 27.5, 2.0 ], [ 28.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 2.0 ], [ 28.5, 1.5 ], [ 28.0, 1.5 ], [ 28.0, 2.0 ], [ 28.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 2.0 ], [ 29.0, 1.5 ], [ 28.5, 1.5 ], [ 28.5, 2.0 ], [ 29.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 2.0 ], [ 29.5, 1.5 ], [ 29.0, 1.5 ], [ 29.0, 2.0 ], [ 29.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 2.0 ], [ 30.0, 1.5 ], [ 29.5, 1.5 ], [ 29.5, 2.0 ], [ 30.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 2.0 ], [ 30.5, 1.5 ], [ 30.0, 1.5 ], [ 30.0, 2.0 ], [ 30.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 2.0 ], [ 31.0, 1.5 ], [ 30.5, 1.5 ], [ 30.5, 2.0 ], [ 31.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 2.0 ], [ 31.5, 1.5 ], [ 31.0, 1.5 ], [ 31.0, 2.0 ], [ 31.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 2.0 ], [ 32.0, 1.5 ], [ 31.5, 1.5 ], [ 31.5, 2.0 ], [ 32.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 2.0 ], [ 32.5, 1.5 ], [ 32.0, 1.5 ], [ 32.0, 2.0 ], [ 32.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 2.0 ], [ 33.0, 1.5 ], [ 32.5, 1.5 ], [ 32.5, 2.0 ], [ 33.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 2.0 ], [ 33.5, 1.5 ], [ 33.0, 1.5 ], [ 33.0, 2.0 ], [ 33.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 2.0 ], [ 34.0, 1.5 ], [ 33.5, 1.5 ], [ 33.5, 2.0 ], [ 34.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 2.0 ], [ 34.5, 1.5 ], [ 34.0, 1.5 ], [ 34.0, 2.0 ], [ 34.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 2.0 ], [ 35.0, 1.5 ], [ 34.5, 1.5 ], [ 34.5, 2.0 ], [ 35.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 2.0 ], [ 35.5, 1.5 ], [ 35.0, 1.5 ], [ 35.0, 2.0 ], [ 35.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 2.0 ], [ 36.0, 1.5 ], [ 35.5, 1.5 ], [ 35.5, 2.0 ], [ 36.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 2.0 ], [ 36.5, 1.5 ], [ 36.0, 1.5 ], [ 36.0, 2.0 ], [ 36.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 2.0 ], [ 37.0, 1.5 ], [ 36.5, 1.5 ], [ 36.5, 2.0 ], [ 37.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 2.0 ], [ 37.5, 1.5 ], [ 37.0, 1.5 ], [ 37.0, 2.0 ], [ 37.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 2.0 ], [ 38.0, 1.5 ], [ 37.5, 1.5 ], [ 37.5, 2.0 ], [ 38.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 2.0 ], [ 38.5, 1.5 ], [ 38.0, 1.5 ], [ 38.0, 2.0 ], [ 38.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 2.0 ], [ 39.0, 1.5 ], [ 38.5, 1.5 ], [ 38.5, 2.0 ], [ 39.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 2.0 ], [ 39.5, 1.5 ], [ 39.0, 1.5 ], [ 39.0, 2.0 ], [ 39.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 2.0 ], [ 40.0, 1.5 ], [ 39.5, 1.5 ], [ 39.5, 2.0 ], [ 40.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 2.0 ], [ 40.5, 1.5 ], [ 40.0, 1.5 ], [ 40.0, 2.0 ], [ 40.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 2.0 ], [ 41.0, 1.5 ], [ 40.5, 1.5 ], [ 40.5, 2.0 ], [ 41.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 2.0 ], [ 41.5, 1.5 ], [ 41.0, 1.5 ], [ 41.0, 2.0 ], [ 41.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 2.0 ], [ 42.0, 1.5 ], [ 41.5, 1.5 ], [ 41.5, 2.0 ], [ 42.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 2.0 ], [ 42.5, 1.5 ], [ 42.0, 1.5 ], [ 42.0, 2.0 ], [ 42.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 2.0 ], [ 43.0, 1.5 ], [ 42.5, 1.5 ], [ 42.5, 2.0 ], [ 43.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 2.0 ], [ 43.5, 1.5 ], [ 43.0, 1.5 ], [ 43.0, 2.0 ], [ 43.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 2.0 ], [ 44.0, 1.5 ], [ 43.5, 1.5 ], [ 43.5, 2.0 ], [ 44.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 2.0 ], [ 44.5, 1.5 ], [ 44.0, 1.5 ], [ 44.0, 2.0 ], [ 44.5, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 2.0 ], [ 45.0, 1.5 ], [ 44.5, 1.5 ], [ 44.5, 2.0 ], [ 45.0, 2.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 2.5 ], [ 10.5, 2.0 ], [ 10.0, 2.0 ], [ 10.0, 2.5 ], [ 10.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 2.5 ], [ 11.0, 2.0 ], [ 10.5, 2.0 ], [ 10.5, 2.5 ], [ 11.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 2.5 ], [ 11.5, 2.0 ], [ 11.0, 2.0 ], [ 11.0, 2.5 ], [ 11.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 2.5 ], [ 12.0, 2.0 ], [ 11.5, 2.0 ], [ 11.5, 2.5 ], [ 12.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 2.5 ], [ 12.5, 2.0 ], [ 12.0, 2.0 ], [ 12.0, 2.5 ], [ 12.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 2.5 ], [ 13.0, 2.0 ], [ 12.5, 2.0 ], [ 12.5, 2.5 ], [ 13.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 2.5 ], [ 13.5, 2.0 ], [ 13.0, 2.0 ], [ 13.0, 2.5 ], [ 13.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 2.5 ], [ 14.0, 2.0 ], [ 13.5, 2.0 ], [ 13.5, 2.5 ], [ 14.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 2.5 ], [ 14.5, 2.0 ], [ 14.0, 2.0 ], [ 14.0, 2.5 ], [ 14.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 2.5 ], [ 15.0, 2.0 ], [ 14.5, 2.0 ], [ 14.5, 2.5 ], [ 15.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 2.5 ], [ 15.5, 2.0 ], [ 15.0, 2.0 ], [ 15.0, 2.5 ], [ 15.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 2.5 ], [ 16.0, 2.0 ], [ 15.5, 2.0 ], [ 15.5, 2.5 ], [ 16.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 2.5 ], [ 16.5, 2.0 ], [ 16.0, 2.0 ], [ 16.0, 2.5 ], [ 16.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 2.5 ], [ 17.0, 2.0 ], [ 16.5, 2.0 ], [ 16.5, 2.5 ], [ 17.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 2.5 ], [ 17.5, 2.0 ], [ 17.0, 2.0 ], [ 17.0, 2.5 ], [ 17.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 2.5 ], [ 18.0, 2.0 ], [ 17.5, 2.0 ], [ 17.5, 2.5 ], [ 18.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 2.5 ], [ 18.5, 2.0 ], [ 18.0, 2.0 ], [ 18.0, 2.5 ], [ 18.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 2.5 ], [ 19.0, 2.0 ], [ 18.5, 2.0 ], [ 18.5, 2.5 ], [ 19.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 2.5 ], [ 19.5, 2.0 ], [ 19.0, 2.0 ], [ 19.0, 2.5 ], [ 19.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 2.5 ], [ 20.0, 2.0 ], [ 19.5, 2.0 ], [ 19.5, 2.5 ], [ 20.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 2.5 ], [ 20.5, 2.0 ], [ 20.0, 2.0 ], [ 20.0, 2.5 ], [ 20.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 2.5 ], [ 21.0, 2.0 ], [ 20.5, 2.0 ], [ 20.5, 2.5 ], [ 21.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 2.5 ], [ 21.5, 2.0 ], [ 21.0, 2.0 ], [ 21.0, 2.5 ], [ 21.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 2.5 ], [ 22.0, 2.0 ], [ 21.5, 2.0 ], [ 21.5, 2.5 ], [ 22.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 2.5 ], [ 22.5, 2.0 ], [ 22.0, 2.0 ], [ 22.0, 2.5 ], [ 22.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 2.5 ], [ 23.0, 2.0 ], [ 22.5, 2.0 ], [ 22.5, 2.5 ], [ 23.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 2.5 ], [ 23.5, 2.0 ], [ 23.0, 2.0 ], [ 23.0, 2.5 ], [ 23.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 2.5 ], [ 24.0, 2.0 ], [ 23.5, 2.0 ], [ 23.5, 2.5 ], [ 24.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 2.5 ], [ 24.5, 2.0 ], [ 24.0, 2.0 ], [ 24.0, 2.5 ], [ 24.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 2.5 ], [ 25.0, 2.0 ], [ 24.5, 2.0 ], [ 24.5, 2.5 ], [ 25.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 2.5 ], [ 25.5, 2.0 ], [ 25.0, 2.0 ], [ 25.0, 2.5 ], [ 25.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 2.5 ], [ 26.0, 2.0 ], [ 25.5, 2.0 ], [ 25.5, 2.5 ], [ 26.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 2.5 ], [ 26.5, 2.0 ], [ 26.0, 2.0 ], [ 26.0, 2.5 ], [ 26.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 2.5 ], [ 27.0, 2.0 ], [ 26.5, 2.0 ], [ 26.5, 2.5 ], [ 27.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 2.5 ], [ 27.5, 2.0 ], [ 27.0, 2.0 ], [ 27.0, 2.5 ], [ 27.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 2.5 ], [ 28.0, 2.0 ], [ 27.5, 2.0 ], [ 27.5, 2.5 ], [ 28.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 2.5 ], [ 28.5, 2.0 ], [ 28.0, 2.0 ], [ 28.0, 2.5 ], [ 28.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 2.5 ], [ 29.0, 2.0 ], [ 28.5, 2.0 ], [ 28.5, 2.5 ], [ 29.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 2.5 ], [ 29.5, 2.0 ], [ 29.0, 2.0 ], [ 29.0, 2.5 ], [ 29.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 2.5 ], [ 30.0, 2.0 ], [ 29.5, 2.0 ], [ 29.5, 2.5 ], [ 30.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 2.5 ], [ 30.5, 2.0 ], [ 30.0, 2.0 ], [ 30.0, 2.5 ], [ 30.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 2.5 ], [ 31.0, 2.0 ], [ 30.5, 2.0 ], [ 30.5, 2.5 ], [ 31.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 2.5 ], [ 31.5, 2.0 ], [ 31.0, 2.0 ], [ 31.0, 2.5 ], [ 31.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 2.5 ], [ 32.0, 2.0 ], [ 31.5, 2.0 ], [ 31.5, 2.5 ], [ 32.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 2.5 ], [ 32.5, 2.0 ], [ 32.0, 2.0 ], [ 32.0, 2.5 ], [ 32.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 2.5 ], [ 33.0, 2.0 ], [ 32.5, 2.0 ], [ 32.5, 2.5 ], [ 33.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 2.5 ], [ 33.5, 2.0 ], [ 33.0, 2.0 ], [ 33.0, 2.5 ], [ 33.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 2.5 ], [ 34.0, 2.0 ], [ 33.5, 2.0 ], [ 33.5, 2.5 ], [ 34.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 2.5 ], [ 34.5, 2.0 ], [ 34.0, 2.0 ], [ 34.0, 2.5 ], [ 34.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 2.5 ], [ 35.0, 2.0 ], [ 34.5, 2.0 ], [ 34.5, 2.5 ], [ 35.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 2.5 ], [ 35.5, 2.0 ], [ 35.0, 2.0 ], [ 35.0, 2.5 ], [ 35.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 2.5 ], [ 36.0, 2.0 ], [ 35.5, 2.0 ], [ 35.5, 2.5 ], [ 36.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 2.5 ], [ 36.5, 2.0 ], [ 36.0, 2.0 ], [ 36.0, 2.5 ], [ 36.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 2.5 ], [ 37.0, 2.0 ], [ 36.5, 2.0 ], [ 36.5, 2.5 ], [ 37.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 2.5 ], [ 37.5, 2.0 ], [ 37.0, 2.0 ], [ 37.0, 2.5 ], [ 37.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 2.5 ], [ 38.0, 2.0 ], [ 37.5, 2.0 ], [ 37.5, 2.5 ], [ 38.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 2.5 ], [ 38.5, 2.0 ], [ 38.0, 2.0 ], [ 38.0, 2.5 ], [ 38.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 2.5 ], [ 39.0, 2.0 ], [ 38.5, 2.0 ], [ 38.5, 2.5 ], [ 39.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 2.5 ], [ 39.5, 2.0 ], [ 39.0, 2.0 ], [ 39.0, 2.5 ], [ 39.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 2.5 ], [ 40.0, 2.0 ], [ 39.5, 2.0 ], [ 39.5, 2.5 ], [ 40.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 2.5 ], [ 40.5, 2.0 ], [ 40.0, 2.0 ], [ 40.0, 2.5 ], [ 40.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 2.5 ], [ 41.0, 2.0 ], [ 40.5, 2.0 ], [ 40.5, 2.5 ], [ 41.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 2.5 ], [ 41.5, 2.0 ], [ 41.0, 2.0 ], [ 41.0, 2.5 ], [ 41.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 2.5 ], [ 42.0, 2.0 ], [ 41.5, 2.0 ], [ 41.5, 2.5 ], [ 42.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 2.5 ], [ 42.5, 2.0 ], [ 42.0, 2.0 ], [ 42.0, 2.5 ], [ 42.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 2.5 ], [ 43.0, 2.0 ], [ 42.5, 2.0 ], [ 42.5, 2.5 ], [ 43.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 2.5 ], [ 43.5, 2.0 ], [ 43.0, 2.0 ], [ 43.0, 2.5 ], [ 43.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 2.5 ], [ 44.0, 2.0 ], [ 43.5, 2.0 ], [ 43.5, 2.5 ], [ 44.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 2.5 ], [ 44.5, 2.0 ], [ 44.0, 2.0 ], [ 44.0, 2.5 ], [ 44.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 2.5 ], [ 45.0, 2.0 ], [ 44.5, 2.0 ], [ 44.5, 2.5 ], [ 45.0, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, 2.5 ], [ 45.5, 2.0 ], [ 45.0, 2.0 ], [ 45.0, 2.5 ], [ 45.5, 2.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 3.0 ], [ 10.5, 2.5 ], [ 10.0, 2.5 ], [ 10.0, 3.0 ], [ 10.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 3.0 ], [ 11.0, 2.5 ], [ 10.5, 2.5 ], [ 10.5, 3.0 ], [ 11.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 3.0 ], [ 11.5, 2.5 ], [ 11.0, 2.5 ], [ 11.0, 3.0 ], [ 11.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 3.0 ], [ 12.0, 2.5 ], [ 11.5, 2.5 ], [ 11.5, 3.0 ], [ 12.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 3.0 ], [ 12.5, 2.5 ], [ 12.0, 2.5 ], [ 12.0, 3.0 ], [ 12.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 3.0 ], [ 13.0, 2.5 ], [ 12.5, 2.5 ], [ 12.5, 3.0 ], [ 13.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 3.0 ], [ 13.5, 2.5 ], [ 13.0, 2.5 ], [ 13.0, 3.0 ], [ 13.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 3.0 ], [ 14.0, 2.5 ], [ 13.5, 2.5 ], [ 13.5, 3.0 ], [ 14.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 3.0 ], [ 14.5, 2.5 ], [ 14.0, 2.5 ], [ 14.0, 3.0 ], [ 14.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 3.0 ], [ 15.0, 2.5 ], [ 14.5, 2.5 ], [ 14.5, 3.0 ], [ 15.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 3.0 ], [ 15.5, 2.5 ], [ 15.0, 2.5 ], [ 15.0, 3.0 ], [ 15.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 3.0 ], [ 16.0, 2.5 ], [ 15.5, 2.5 ], [ 15.5, 3.0 ], [ 16.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 3.0 ], [ 16.5, 2.5 ], [ 16.0, 2.5 ], [ 16.0, 3.0 ], [ 16.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 3.0 ], [ 17.0, 2.5 ], [ 16.5, 2.5 ], [ 16.5, 3.0 ], [ 17.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 3.0 ], [ 17.5, 2.5 ], [ 17.0, 2.5 ], [ 17.0, 3.0 ], [ 17.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 3.0 ], [ 18.0, 2.5 ], [ 17.5, 2.5 ], [ 17.5, 3.0 ], [ 18.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 3.0 ], [ 18.5, 2.5 ], [ 18.0, 2.5 ], [ 18.0, 3.0 ], [ 18.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 3.0 ], [ 19.0, 2.5 ], [ 18.5, 2.5 ], [ 18.5, 3.0 ], [ 19.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 3.0 ], [ 19.5, 2.5 ], [ 19.0, 2.5 ], [ 19.0, 3.0 ], [ 19.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 3.0 ], [ 20.0, 2.5 ], [ 19.5, 2.5 ], [ 19.5, 3.0 ], [ 20.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 3.0 ], [ 20.5, 2.5 ], [ 20.0, 2.5 ], [ 20.0, 3.0 ], [ 20.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 3.0 ], [ 21.0, 2.5 ], [ 20.5, 2.5 ], [ 20.5, 3.0 ], [ 21.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 3.0 ], [ 21.5, 2.5 ], [ 21.0, 2.5 ], [ 21.0, 3.0 ], [ 21.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 3.0 ], [ 22.0, 2.5 ], [ 21.5, 2.5 ], [ 21.5, 3.0 ], [ 22.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 3.0 ], [ 22.5, 2.5 ], [ 22.0, 2.5 ], [ 22.0, 3.0 ], [ 22.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 3.0 ], [ 23.0, 2.5 ], [ 22.5, 2.5 ], [ 22.5, 3.0 ], [ 23.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 3.0 ], [ 23.5, 2.5 ], [ 23.0, 2.5 ], [ 23.0, 3.0 ], [ 23.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 3.0 ], [ 24.0, 2.5 ], [ 23.5, 2.5 ], [ 23.5, 3.0 ], [ 24.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 3.0 ], [ 24.5, 2.5 ], [ 24.0, 2.5 ], [ 24.0, 3.0 ], [ 24.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 3.0 ], [ 25.0, 2.5 ], [ 24.5, 2.5 ], [ 24.5, 3.0 ], [ 25.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 3.0 ], [ 25.5, 2.5 ], [ 25.0, 2.5 ], [ 25.0, 3.0 ], [ 25.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 3.0 ], [ 26.0, 2.5 ], [ 25.5, 2.5 ], [ 25.5, 3.0 ], [ 26.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 3.0 ], [ 26.5, 2.5 ], [ 26.0, 2.5 ], [ 26.0, 3.0 ], [ 26.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 3.0 ], [ 27.0, 2.5 ], [ 26.5, 2.5 ], [ 26.5, 3.0 ], [ 27.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 3.0 ], [ 27.5, 2.5 ], [ 27.0, 2.5 ], [ 27.0, 3.0 ], [ 27.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 3.0 ], [ 28.0, 2.5 ], [ 27.5, 2.5 ], [ 27.5, 3.0 ], [ 28.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 3.0 ], [ 28.5, 2.5 ], [ 28.0, 2.5 ], [ 28.0, 3.0 ], [ 28.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 3.0 ], [ 29.0, 2.5 ], [ 28.5, 2.5 ], [ 28.5, 3.0 ], [ 29.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 3.0 ], [ 29.5, 2.5 ], [ 29.0, 2.5 ], [ 29.0, 3.0 ], [ 29.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 3.0 ], [ 30.0, 2.5 ], [ 29.5, 2.5 ], [ 29.5, 3.0 ], [ 30.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 3.0 ], [ 30.5, 2.5 ], [ 30.0, 2.5 ], [ 30.0, 3.0 ], [ 30.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 3.0 ], [ 31.0, 2.5 ], [ 30.5, 2.5 ], [ 30.5, 3.0 ], [ 31.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 3.0 ], [ 31.5, 2.5 ], [ 31.0, 2.5 ], [ 31.0, 3.0 ], [ 31.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 3.0 ], [ 32.0, 2.5 ], [ 31.5, 2.5 ], [ 31.5, 3.0 ], [ 32.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 3.0 ], [ 32.5, 2.5 ], [ 32.0, 2.5 ], [ 32.0, 3.0 ], [ 32.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 3.0 ], [ 33.0, 2.5 ], [ 32.5, 2.5 ], [ 32.5, 3.0 ], [ 33.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 3.0 ], [ 33.5, 2.5 ], [ 33.0, 2.5 ], [ 33.0, 3.0 ], [ 33.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 3.0 ], [ 34.0, 2.5 ], [ 33.5, 2.5 ], [ 33.5, 3.0 ], [ 34.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 3.0 ], [ 34.5, 2.5 ], [ 34.0, 2.5 ], [ 34.0, 3.0 ], [ 34.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 3.0 ], [ 35.0, 2.5 ], [ 34.5, 2.5 ], [ 34.5, 3.0 ], [ 35.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 3.0 ], [ 35.5, 2.5 ], [ 35.0, 2.5 ], [ 35.0, 3.0 ], [ 35.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 3.0 ], [ 36.0, 2.5 ], [ 35.5, 2.5 ], [ 35.5, 3.0 ], [ 36.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 3.0 ], [ 36.5, 2.5 ], [ 36.0, 2.5 ], [ 36.0, 3.0 ], [ 36.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 3.0 ], [ 37.0, 2.5 ], [ 36.5, 2.5 ], [ 36.5, 3.0 ], [ 37.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 3.0 ], [ 37.5, 2.5 ], [ 37.0, 2.5 ], [ 37.0, 3.0 ], [ 37.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 3.0 ], [ 38.0, 2.5 ], [ 37.5, 2.5 ], [ 37.5, 3.0 ], [ 38.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 3.0 ], [ 38.5, 2.5 ], [ 38.0, 2.5 ], [ 38.0, 3.0 ], [ 38.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 3.0 ], [ 39.0, 2.5 ], [ 38.5, 2.5 ], [ 38.5, 3.0 ], [ 39.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 3.0 ], [ 39.5, 2.5 ], [ 39.0, 2.5 ], [ 39.0, 3.0 ], [ 39.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 3.0 ], [ 40.0, 2.5 ], [ 39.5, 2.5 ], [ 39.5, 3.0 ], [ 40.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 3.0 ], [ 40.5, 2.5 ], [ 40.0, 2.5 ], [ 40.0, 3.0 ], [ 40.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 3.0 ], [ 41.0, 2.5 ], [ 40.5, 2.5 ], [ 40.5, 3.0 ], [ 41.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 3.0 ], [ 41.5, 2.5 ], [ 41.0, 2.5 ], [ 41.0, 3.0 ], [ 41.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 3.0 ], [ 42.0, 2.5 ], [ 41.5, 2.5 ], [ 41.5, 3.0 ], [ 42.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 3.0 ], [ 42.5, 2.5 ], [ 42.0, 2.5 ], [ 42.0, 3.0 ], [ 42.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 3.0 ], [ 43.0, 2.5 ], [ 42.5, 2.5 ], [ 42.5, 3.0 ], [ 43.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 3.0 ], [ 43.5, 2.5 ], [ 43.0, 2.5 ], [ 43.0, 3.0 ], [ 43.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 3.0 ], [ 44.0, 2.5 ], [ 43.5, 2.5 ], [ 43.5, 3.0 ], [ 44.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 3.0 ], [ 44.5, 2.5 ], [ 44.0, 2.5 ], [ 44.0, 3.0 ], [ 44.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 3.0 ], [ 45.0, 2.5 ], [ 44.5, 2.5 ], [ 44.5, 3.0 ], [ 45.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, 3.0 ], [ 45.5, 2.5 ], [ 45.0, 2.5 ], [ 45.0, 3.0 ], [ 45.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 3.0 ], [ 46.0, 2.5 ], [ 45.5, 2.5 ], [ 45.5, 3.0 ], [ 46.0, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, 3.0 ], [ 46.5, 2.5 ], [ 46.0, 2.5 ], [ 46.0, 3.0 ], [ 46.5, 3.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 3.5 ], [ 10.5, 3.0 ], [ 10.0, 3.0 ], [ 10.0, 3.5 ], [ 10.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 3.5 ], [ 11.0, 3.0 ], [ 10.5, 3.0 ], [ 10.5, 3.5 ], [ 11.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 3.5 ], [ 11.5, 3.0 ], [ 11.0, 3.0 ], [ 11.0, 3.5 ], [ 11.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 3.5 ], [ 12.0, 3.0 ], [ 11.5, 3.0 ], [ 11.5, 3.5 ], [ 12.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 3.5 ], [ 12.5, 3.0 ], [ 12.0, 3.0 ], [ 12.0, 3.5 ], [ 12.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 3.5 ], [ 13.0, 3.0 ], [ 12.5, 3.0 ], [ 12.5, 3.5 ], [ 13.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 3.5 ], [ 13.5, 3.0 ], [ 13.0, 3.0 ], [ 13.0, 3.5 ], [ 13.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 3.5 ], [ 14.0, 3.0 ], [ 13.5, 3.0 ], [ 13.5, 3.5 ], [ 14.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 3.5 ], [ 14.5, 3.0 ], [ 14.0, 3.0 ], [ 14.0, 3.5 ], [ 14.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 3.5 ], [ 15.0, 3.0 ], [ 14.5, 3.0 ], [ 14.5, 3.5 ], [ 15.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 3.5 ], [ 15.5, 3.0 ], [ 15.0, 3.0 ], [ 15.0, 3.5 ], [ 15.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 3.5 ], [ 16.0, 3.0 ], [ 15.5, 3.0 ], [ 15.5, 3.5 ], [ 16.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 3.5 ], [ 16.5, 3.0 ], [ 16.0, 3.0 ], [ 16.0, 3.5 ], [ 16.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 3.5 ], [ 17.0, 3.0 ], [ 16.5, 3.0 ], [ 16.5, 3.5 ], [ 17.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 3.5 ], [ 17.5, 3.0 ], [ 17.0, 3.0 ], [ 17.0, 3.5 ], [ 17.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 3.5 ], [ 18.0, 3.0 ], [ 17.5, 3.0 ], [ 17.5, 3.5 ], [ 18.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 3.5 ], [ 18.5, 3.0 ], [ 18.0, 3.0 ], [ 18.0, 3.5 ], [ 18.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 3.5 ], [ 19.0, 3.0 ], [ 18.5, 3.0 ], [ 18.5, 3.5 ], [ 19.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 3.5 ], [ 19.5, 3.0 ], [ 19.0, 3.0 ], [ 19.0, 3.5 ], [ 19.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 3.5 ], [ 20.0, 3.0 ], [ 19.5, 3.0 ], [ 19.5, 3.5 ], [ 20.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 3.5 ], [ 20.5, 3.0 ], [ 20.0, 3.0 ], [ 20.0, 3.5 ], [ 20.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 3.5 ], [ 21.0, 3.0 ], [ 20.5, 3.0 ], [ 20.5, 3.5 ], [ 21.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 3.5 ], [ 21.5, 3.0 ], [ 21.0, 3.0 ], [ 21.0, 3.5 ], [ 21.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 3.5 ], [ 22.0, 3.0 ], [ 21.5, 3.0 ], [ 21.5, 3.5 ], [ 22.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 3.5 ], [ 22.5, 3.0 ], [ 22.0, 3.0 ], [ 22.0, 3.5 ], [ 22.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 3.5 ], [ 23.0, 3.0 ], [ 22.5, 3.0 ], [ 22.5, 3.5 ], [ 23.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 3.5 ], [ 23.5, 3.0 ], [ 23.0, 3.0 ], [ 23.0, 3.5 ], [ 23.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 3.5 ], [ 24.0, 3.0 ], [ 23.5, 3.0 ], [ 23.5, 3.5 ], [ 24.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 3.5 ], [ 24.5, 3.0 ], [ 24.0, 3.0 ], [ 24.0, 3.5 ], [ 24.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 3.5 ], [ 25.0, 3.0 ], [ 24.5, 3.0 ], [ 24.5, 3.5 ], [ 25.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 3.5 ], [ 25.5, 3.0 ], [ 25.0, 3.0 ], [ 25.0, 3.5 ], [ 25.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 3.5 ], [ 26.0, 3.0 ], [ 25.5, 3.0 ], [ 25.5, 3.5 ], [ 26.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 3.5 ], [ 26.5, 3.0 ], [ 26.0, 3.0 ], [ 26.0, 3.5 ], [ 26.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 3.5 ], [ 27.0, 3.0 ], [ 26.5, 3.0 ], [ 26.5, 3.5 ], [ 27.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 3.5 ], [ 27.5, 3.0 ], [ 27.0, 3.0 ], [ 27.0, 3.5 ], [ 27.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 3.5 ], [ 28.0, 3.0 ], [ 27.5, 3.0 ], [ 27.5, 3.5 ], [ 28.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 3.5 ], [ 28.5, 3.0 ], [ 28.0, 3.0 ], [ 28.0, 3.5 ], [ 28.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 3.5 ], [ 29.0, 3.0 ], [ 28.5, 3.0 ], [ 28.5, 3.5 ], [ 29.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 3.5 ], [ 29.5, 3.0 ], [ 29.0, 3.0 ], [ 29.0, 3.5 ], [ 29.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 3.5 ], [ 30.0, 3.0 ], [ 29.5, 3.0 ], [ 29.5, 3.5 ], [ 30.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 3.5 ], [ 30.5, 3.0 ], [ 30.0, 3.0 ], [ 30.0, 3.5 ], [ 30.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 3.5 ], [ 31.0, 3.0 ], [ 30.5, 3.0 ], [ 30.5, 3.5 ], [ 31.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 3.5 ], [ 31.5, 3.0 ], [ 31.0, 3.0 ], [ 31.0, 3.5 ], [ 31.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 3.5 ], [ 32.0, 3.0 ], [ 31.5, 3.0 ], [ 31.5, 3.5 ], [ 32.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 3.5 ], [ 32.5, 3.0 ], [ 32.0, 3.0 ], [ 32.0, 3.5 ], [ 32.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 3.5 ], [ 33.0, 3.0 ], [ 32.5, 3.0 ], [ 32.5, 3.5 ], [ 33.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 3.5 ], [ 33.5, 3.0 ], [ 33.0, 3.0 ], [ 33.0, 3.5 ], [ 33.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 3.5 ], [ 34.0, 3.0 ], [ 33.5, 3.0 ], [ 33.5, 3.5 ], [ 34.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 3.5 ], [ 34.5, 3.0 ], [ 34.0, 3.0 ], [ 34.0, 3.5 ], [ 34.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 3.5 ], [ 35.0, 3.0 ], [ 34.5, 3.0 ], [ 34.5, 3.5 ], [ 35.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 3.5 ], [ 35.5, 3.0 ], [ 35.0, 3.0 ], [ 35.0, 3.5 ], [ 35.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 3.5 ], [ 36.0, 3.0 ], [ 35.5, 3.0 ], [ 35.5, 3.5 ], [ 36.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 3.5 ], [ 36.5, 3.0 ], [ 36.0, 3.0 ], [ 36.0, 3.5 ], [ 36.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 3.5 ], [ 37.0, 3.0 ], [ 36.5, 3.0 ], [ 36.5, 3.5 ], [ 37.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 3.5 ], [ 37.5, 3.0 ], [ 37.0, 3.0 ], [ 37.0, 3.5 ], [ 37.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 3.5 ], [ 38.0, 3.0 ], [ 37.5, 3.0 ], [ 37.5, 3.5 ], [ 38.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 3.5 ], [ 38.5, 3.0 ], [ 38.0, 3.0 ], [ 38.0, 3.5 ], [ 38.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 3.5 ], [ 39.0, 3.0 ], [ 38.5, 3.0 ], [ 38.5, 3.5 ], [ 39.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 3.5 ], [ 39.5, 3.0 ], [ 39.0, 3.0 ], [ 39.0, 3.5 ], [ 39.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 3.5 ], [ 40.0, 3.0 ], [ 39.5, 3.0 ], [ 39.5, 3.5 ], [ 40.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 3.5 ], [ 40.5, 3.0 ], [ 40.0, 3.0 ], [ 40.0, 3.5 ], [ 40.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 3.5 ], [ 41.0, 3.0 ], [ 40.5, 3.0 ], [ 40.5, 3.5 ], [ 41.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 3.5 ], [ 41.5, 3.0 ], [ 41.0, 3.0 ], [ 41.0, 3.5 ], [ 41.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 3.5 ], [ 42.0, 3.0 ], [ 41.5, 3.0 ], [ 41.5, 3.5 ], [ 42.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 3.5 ], [ 42.5, 3.0 ], [ 42.0, 3.0 ], [ 42.0, 3.5 ], [ 42.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 3.5 ], [ 43.0, 3.0 ], [ 42.5, 3.0 ], [ 42.5, 3.5 ], [ 43.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 3.5 ], [ 43.5, 3.0 ], [ 43.0, 3.0 ], [ 43.0, 3.5 ], [ 43.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 3.5 ], [ 44.0, 3.0 ], [ 43.5, 3.0 ], [ 43.5, 3.5 ], [ 44.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 3.5 ], [ 44.5, 3.0 ], [ 44.0, 3.0 ], [ 44.0, 3.5 ], [ 44.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 3.5 ], [ 45.0, 3.0 ], [ 44.5, 3.0 ], [ 44.5, 3.5 ], [ 45.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, 3.5 ], [ 45.5, 3.0 ], [ 45.0, 3.0 ], [ 45.0, 3.5 ], [ 45.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 3.5 ], [ 46.0, 3.0 ], [ 45.5, 3.0 ], [ 45.5, 3.5 ], [ 46.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, 3.5 ], [ 46.5, 3.0 ], [ 46.0, 3.0 ], [ 46.0, 3.5 ], [ 46.5, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, 3.5 ], [ 47.0, 3.0 ], [ 46.5, 3.0 ], [ 46.5, 3.5 ], [ 47.0, 3.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 4.0 ], [ 10.0, 3.5 ], [ 9.5, 3.5 ], [ 9.5, 4.0 ], [ 10.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 4.0 ], [ 10.5, 3.5 ], [ 10.0, 3.5 ], [ 10.0, 4.0 ], [ 10.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 4.0 ], [ 11.0, 3.5 ], [ 10.5, 3.5 ], [ 10.5, 4.0 ], [ 11.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 4.0 ], [ 11.5, 3.5 ], [ 11.0, 3.5 ], [ 11.0, 4.0 ], [ 11.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 4.0 ], [ 12.0, 3.5 ], [ 11.5, 3.5 ], [ 11.5, 4.0 ], [ 12.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 4.0 ], [ 12.5, 3.5 ], [ 12.0, 3.5 ], [ 12.0, 4.0 ], [ 12.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 4.0 ], [ 13.0, 3.5 ], [ 12.5, 3.5 ], [ 12.5, 4.0 ], [ 13.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 4.0 ], [ 13.5, 3.5 ], [ 13.0, 3.5 ], [ 13.0, 4.0 ], [ 13.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 4.0 ], [ 14.0, 3.5 ], [ 13.5, 3.5 ], [ 13.5, 4.0 ], [ 14.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 4.0 ], [ 14.5, 3.5 ], [ 14.0, 3.5 ], [ 14.0, 4.0 ], [ 14.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 4.0 ], [ 15.0, 3.5 ], [ 14.5, 3.5 ], [ 14.5, 4.0 ], [ 15.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 4.0 ], [ 15.5, 3.5 ], [ 15.0, 3.5 ], [ 15.0, 4.0 ], [ 15.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 4.0 ], [ 16.0, 3.5 ], [ 15.5, 3.5 ], [ 15.5, 4.0 ], [ 16.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 4.0 ], [ 16.5, 3.5 ], [ 16.0, 3.5 ], [ 16.0, 4.0 ], [ 16.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 4.0 ], [ 17.0, 3.5 ], [ 16.5, 3.5 ], [ 16.5, 4.0 ], [ 17.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 4.0 ], [ 17.5, 3.5 ], [ 17.0, 3.5 ], [ 17.0, 4.0 ], [ 17.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 4.0 ], [ 18.0, 3.5 ], [ 17.5, 3.5 ], [ 17.5, 4.0 ], [ 18.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 4.0 ], [ 18.5, 3.5 ], [ 18.0, 3.5 ], [ 18.0, 4.0 ], [ 18.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 4.0 ], [ 19.0, 3.5 ], [ 18.5, 3.5 ], [ 18.5, 4.0 ], [ 19.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 4.0 ], [ 19.5, 3.5 ], [ 19.0, 3.5 ], [ 19.0, 4.0 ], [ 19.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 4.0 ], [ 20.0, 3.5 ], [ 19.5, 3.5 ], [ 19.5, 4.0 ], [ 20.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 4.0 ], [ 20.5, 3.5 ], [ 20.0, 3.5 ], [ 20.0, 4.0 ], [ 20.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 4.0 ], [ 21.0, 3.5 ], [ 20.5, 3.5 ], [ 20.5, 4.0 ], [ 21.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 4.0 ], [ 21.5, 3.5 ], [ 21.0, 3.5 ], [ 21.0, 4.0 ], [ 21.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 4.0 ], [ 22.0, 3.5 ], [ 21.5, 3.5 ], [ 21.5, 4.0 ], [ 22.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 4.0 ], [ 22.5, 3.5 ], [ 22.0, 3.5 ], [ 22.0, 4.0 ], [ 22.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 4.0 ], [ 23.0, 3.5 ], [ 22.5, 3.5 ], [ 22.5, 4.0 ], [ 23.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 4.0 ], [ 23.5, 3.5 ], [ 23.0, 3.5 ], [ 23.0, 4.0 ], [ 23.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 4.0 ], [ 24.0, 3.5 ], [ 23.5, 3.5 ], [ 23.5, 4.0 ], [ 24.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 4.0 ], [ 24.5, 3.5 ], [ 24.0, 3.5 ], [ 24.0, 4.0 ], [ 24.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 4.0 ], [ 25.0, 3.5 ], [ 24.5, 3.5 ], [ 24.5, 4.0 ], [ 25.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 4.0 ], [ 25.5, 3.5 ], [ 25.0, 3.5 ], [ 25.0, 4.0 ], [ 25.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 4.0 ], [ 26.0, 3.5 ], [ 25.5, 3.5 ], [ 25.5, 4.0 ], [ 26.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 4.0 ], [ 26.5, 3.5 ], [ 26.0, 3.5 ], [ 26.0, 4.0 ], [ 26.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 4.0 ], [ 27.0, 3.5 ], [ 26.5, 3.5 ], [ 26.5, 4.0 ], [ 27.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 4.0 ], [ 27.5, 3.5 ], [ 27.0, 3.5 ], [ 27.0, 4.0 ], [ 27.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 4.0 ], [ 28.0, 3.5 ], [ 27.5, 3.5 ], [ 27.5, 4.0 ], [ 28.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 4.0 ], [ 28.5, 3.5 ], [ 28.0, 3.5 ], [ 28.0, 4.0 ], [ 28.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 4.0 ], [ 29.0, 3.5 ], [ 28.5, 3.5 ], [ 28.5, 4.0 ], [ 29.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 4.0 ], [ 29.5, 3.5 ], [ 29.0, 3.5 ], [ 29.0, 4.0 ], [ 29.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 4.0 ], [ 30.0, 3.5 ], [ 29.5, 3.5 ], [ 29.5, 4.0 ], [ 30.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 4.0 ], [ 30.5, 3.5 ], [ 30.0, 3.5 ], [ 30.0, 4.0 ], [ 30.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 4.0 ], [ 31.0, 3.5 ], [ 30.5, 3.5 ], [ 30.5, 4.0 ], [ 31.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 4.0 ], [ 31.5, 3.5 ], [ 31.0, 3.5 ], [ 31.0, 4.0 ], [ 31.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 4.0 ], [ 32.0, 3.5 ], [ 31.5, 3.5 ], [ 31.5, 4.0 ], [ 32.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 4.0 ], [ 32.5, 3.5 ], [ 32.0, 3.5 ], [ 32.0, 4.0 ], [ 32.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 4.0 ], [ 33.0, 3.5 ], [ 32.5, 3.5 ], [ 32.5, 4.0 ], [ 33.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 4.0 ], [ 33.5, 3.5 ], [ 33.0, 3.5 ], [ 33.0, 4.0 ], [ 33.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 4.0 ], [ 34.0, 3.5 ], [ 33.5, 3.5 ], [ 33.5, 4.0 ], [ 34.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 4.0 ], [ 34.5, 3.5 ], [ 34.0, 3.5 ], [ 34.0, 4.0 ], [ 34.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 4.0 ], [ 35.0, 3.5 ], [ 34.5, 3.5 ], [ 34.5, 4.0 ], [ 35.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 4.0 ], [ 35.5, 3.5 ], [ 35.0, 3.5 ], [ 35.0, 4.0 ], [ 35.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 4.0 ], [ 36.0, 3.5 ], [ 35.5, 3.5 ], [ 35.5, 4.0 ], [ 36.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 4.0 ], [ 36.5, 3.5 ], [ 36.0, 3.5 ], [ 36.0, 4.0 ], [ 36.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 4.0 ], [ 37.0, 3.5 ], [ 36.5, 3.5 ], [ 36.5, 4.0 ], [ 37.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 4.0 ], [ 37.5, 3.5 ], [ 37.0, 3.5 ], [ 37.0, 4.0 ], [ 37.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 4.0 ], [ 38.0, 3.5 ], [ 37.5, 3.5 ], [ 37.5, 4.0 ], [ 38.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 4.0 ], [ 38.5, 3.5 ], [ 38.0, 3.5 ], [ 38.0, 4.0 ], [ 38.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 4.0 ], [ 39.0, 3.5 ], [ 38.5, 3.5 ], [ 38.5, 4.0 ], [ 39.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 4.0 ], [ 39.5, 3.5 ], [ 39.0, 3.5 ], [ 39.0, 4.0 ], [ 39.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 4.0 ], [ 40.0, 3.5 ], [ 39.5, 3.5 ], [ 39.5, 4.0 ], [ 40.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 4.0 ], [ 40.5, 3.5 ], [ 40.0, 3.5 ], [ 40.0, 4.0 ], [ 40.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 4.0 ], [ 41.0, 3.5 ], [ 40.5, 3.5 ], [ 40.5, 4.0 ], [ 41.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 4.0 ], [ 41.5, 3.5 ], [ 41.0, 3.5 ], [ 41.0, 4.0 ], [ 41.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 4.0 ], [ 42.0, 3.5 ], [ 41.5, 3.5 ], [ 41.5, 4.0 ], [ 42.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 4.0 ], [ 42.5, 3.5 ], [ 42.0, 3.5 ], [ 42.0, 4.0 ], [ 42.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 4.0 ], [ 43.0, 3.5 ], [ 42.5, 3.5 ], [ 42.5, 4.0 ], [ 43.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 4.0 ], [ 43.5, 3.5 ], [ 43.0, 3.5 ], [ 43.0, 4.0 ], [ 43.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 4.0 ], [ 44.0, 3.5 ], [ 43.5, 3.5 ], [ 43.5, 4.0 ], [ 44.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 4.0 ], [ 44.5, 3.5 ], [ 44.0, 3.5 ], [ 44.0, 4.0 ], [ 44.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 4.0 ], [ 45.0, 3.5 ], [ 44.5, 3.5 ], [ 44.5, 4.0 ], [ 45.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, 4.0 ], [ 45.5, 3.5 ], [ 45.0, 3.5 ], [ 45.0, 4.0 ], [ 45.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 4.0 ], [ 46.0, 3.5 ], [ 45.5, 3.5 ], [ 45.5, 4.0 ], [ 46.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, 4.0 ], [ 46.5, 3.5 ], [ 46.0, 3.5 ], [ 46.0, 4.0 ], [ 46.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, 4.0 ], [ 47.0, 3.5 ], [ 46.5, 3.5 ], [ 46.5, 4.0 ], [ 47.0, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, 4.0 ], [ 47.5, 3.5 ], [ 47.0, 3.5 ], [ 47.0, 4.0 ], [ 47.5, 4.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 4.5 ], [ 9.5, 4.0 ], [ 9.0, 4.0 ], [ 9.0, 4.5 ], [ 9.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 4.5 ], [ 10.0, 4.0 ], [ 9.5, 4.0 ], [ 9.5, 4.5 ], [ 10.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 4.5 ], [ 10.5, 4.0 ], [ 10.0, 4.0 ], [ 10.0, 4.5 ], [ 10.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 4.5 ], [ 11.0, 4.0 ], [ 10.5, 4.0 ], [ 10.5, 4.5 ], [ 11.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 4.5 ], [ 11.5, 4.0 ], [ 11.0, 4.0 ], [ 11.0, 4.5 ], [ 11.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 4.5 ], [ 12.0, 4.0 ], [ 11.5, 4.0 ], [ 11.5, 4.5 ], [ 12.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 4.5 ], [ 12.5, 4.0 ], [ 12.0, 4.0 ], [ 12.0, 4.5 ], [ 12.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 4.5 ], [ 13.0, 4.0 ], [ 12.5, 4.0 ], [ 12.5, 4.5 ], [ 13.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 4.5 ], [ 13.5, 4.0 ], [ 13.0, 4.0 ], [ 13.0, 4.5 ], [ 13.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 4.5 ], [ 14.0, 4.0 ], [ 13.5, 4.0 ], [ 13.5, 4.5 ], [ 14.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 4.5 ], [ 14.5, 4.0 ], [ 14.0, 4.0 ], [ 14.0, 4.5 ], [ 14.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 4.5 ], [ 15.0, 4.0 ], [ 14.5, 4.0 ], [ 14.5, 4.5 ], [ 15.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 4.5 ], [ 15.5, 4.0 ], [ 15.0, 4.0 ], [ 15.0, 4.5 ], [ 15.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 4.5 ], [ 16.0, 4.0 ], [ 15.5, 4.0 ], [ 15.5, 4.5 ], [ 16.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 4.5 ], [ 16.5, 4.0 ], [ 16.0, 4.0 ], [ 16.0, 4.5 ], [ 16.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 4.5 ], [ 17.0, 4.0 ], [ 16.5, 4.0 ], [ 16.5, 4.5 ], [ 17.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 4.5 ], [ 17.5, 4.0 ], [ 17.0, 4.0 ], [ 17.0, 4.5 ], [ 17.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 4.5 ], [ 18.0, 4.0 ], [ 17.5, 4.0 ], [ 17.5, 4.5 ], [ 18.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 4.5 ], [ 18.5, 4.0 ], [ 18.0, 4.0 ], [ 18.0, 4.5 ], [ 18.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 4.5 ], [ 19.0, 4.0 ], [ 18.5, 4.0 ], [ 18.5, 4.5 ], [ 19.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 4.5 ], [ 19.5, 4.0 ], [ 19.0, 4.0 ], [ 19.0, 4.5 ], [ 19.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 4.5 ], [ 20.0, 4.0 ], [ 19.5, 4.0 ], [ 19.5, 4.5 ], [ 20.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 4.5 ], [ 20.5, 4.0 ], [ 20.0, 4.0 ], [ 20.0, 4.5 ], [ 20.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 4.5 ], [ 21.0, 4.0 ], [ 20.5, 4.0 ], [ 20.5, 4.5 ], [ 21.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 4.5 ], [ 21.5, 4.0 ], [ 21.0, 4.0 ], [ 21.0, 4.5 ], [ 21.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 4.5 ], [ 22.0, 4.0 ], [ 21.5, 4.0 ], [ 21.5, 4.5 ], [ 22.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 4.5 ], [ 22.5, 4.0 ], [ 22.0, 4.0 ], [ 22.0, 4.5 ], [ 22.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 4.5 ], [ 23.0, 4.0 ], [ 22.5, 4.0 ], [ 22.5, 4.5 ], [ 23.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 4.5 ], [ 23.5, 4.0 ], [ 23.0, 4.0 ], [ 23.0, 4.5 ], [ 23.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 4.5 ], [ 24.0, 4.0 ], [ 23.5, 4.0 ], [ 23.5, 4.5 ], [ 24.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 4.5 ], [ 24.5, 4.0 ], [ 24.0, 4.0 ], [ 24.0, 4.5 ], [ 24.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 4.5 ], [ 25.0, 4.0 ], [ 24.5, 4.0 ], [ 24.5, 4.5 ], [ 25.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 4.5 ], [ 25.5, 4.0 ], [ 25.0, 4.0 ], [ 25.0, 4.5 ], [ 25.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 4.5 ], [ 26.0, 4.0 ], [ 25.5, 4.0 ], [ 25.5, 4.5 ], [ 26.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 4.5 ], [ 26.5, 4.0 ], [ 26.0, 4.0 ], [ 26.0, 4.5 ], [ 26.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 4.5 ], [ 27.0, 4.0 ], [ 26.5, 4.0 ], [ 26.5, 4.5 ], [ 27.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 4.5 ], [ 27.5, 4.0 ], [ 27.0, 4.0 ], [ 27.0, 4.5 ], [ 27.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 4.5 ], [ 28.0, 4.0 ], [ 27.5, 4.0 ], [ 27.5, 4.5 ], [ 28.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 4.5 ], [ 28.5, 4.0 ], [ 28.0, 4.0 ], [ 28.0, 4.5 ], [ 28.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 4.5 ], [ 29.0, 4.0 ], [ 28.5, 4.0 ], [ 28.5, 4.5 ], [ 29.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 4.5 ], [ 29.5, 4.0 ], [ 29.0, 4.0 ], [ 29.0, 4.5 ], [ 29.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 4.5 ], [ 30.0, 4.0 ], [ 29.5, 4.0 ], [ 29.5, 4.5 ], [ 30.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 4.5 ], [ 30.5, 4.0 ], [ 30.0, 4.0 ], [ 30.0, 4.5 ], [ 30.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 4.5 ], [ 31.0, 4.0 ], [ 30.5, 4.0 ], [ 30.5, 4.5 ], [ 31.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 4.5 ], [ 31.5, 4.0 ], [ 31.0, 4.0 ], [ 31.0, 4.5 ], [ 31.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 4.5 ], [ 32.0, 4.0 ], [ 31.5, 4.0 ], [ 31.5, 4.5 ], [ 32.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 4.5 ], [ 32.5, 4.0 ], [ 32.0, 4.0 ], [ 32.0, 4.5 ], [ 32.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 4.5 ], [ 33.0, 4.0 ], [ 32.5, 4.0 ], [ 32.5, 4.5 ], [ 33.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 4.5 ], [ 33.5, 4.0 ], [ 33.0, 4.0 ], [ 33.0, 4.5 ], [ 33.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 4.5 ], [ 34.0, 4.0 ], [ 33.5, 4.0 ], [ 33.5, 4.5 ], [ 34.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 4.5 ], [ 34.5, 4.0 ], [ 34.0, 4.0 ], [ 34.0, 4.5 ], [ 34.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 4.5 ], [ 35.0, 4.0 ], [ 34.5, 4.0 ], [ 34.5, 4.5 ], [ 35.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 4.5 ], [ 35.5, 4.0 ], [ 35.0, 4.0 ], [ 35.0, 4.5 ], [ 35.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 4.5 ], [ 36.0, 4.0 ], [ 35.5, 4.0 ], [ 35.5, 4.5 ], [ 36.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 4.5 ], [ 36.5, 4.0 ], [ 36.0, 4.0 ], [ 36.0, 4.5 ], [ 36.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 4.5 ], [ 37.0, 4.0 ], [ 36.5, 4.0 ], [ 36.5, 4.5 ], [ 37.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 4.5 ], [ 37.5, 4.0 ], [ 37.0, 4.0 ], [ 37.0, 4.5 ], [ 37.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 4.5 ], [ 38.0, 4.0 ], [ 37.5, 4.0 ], [ 37.5, 4.5 ], [ 38.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 4.5 ], [ 38.5, 4.0 ], [ 38.0, 4.0 ], [ 38.0, 4.5 ], [ 38.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 4.5 ], [ 39.0, 4.0 ], [ 38.5, 4.0 ], [ 38.5, 4.5 ], [ 39.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 4.5 ], [ 39.5, 4.0 ], [ 39.0, 4.0 ], [ 39.0, 4.5 ], [ 39.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 4.5 ], [ 40.0, 4.0 ], [ 39.5, 4.0 ], [ 39.5, 4.5 ], [ 40.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 4.5 ], [ 40.5, 4.0 ], [ 40.0, 4.0 ], [ 40.0, 4.5 ], [ 40.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 4.5 ], [ 41.0, 4.0 ], [ 40.5, 4.0 ], [ 40.5, 4.5 ], [ 41.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 4.5 ], [ 41.5, 4.0 ], [ 41.0, 4.0 ], [ 41.0, 4.5 ], [ 41.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 4.5 ], [ 42.0, 4.0 ], [ 41.5, 4.0 ], [ 41.5, 4.5 ], [ 42.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 4.5 ], [ 42.5, 4.0 ], [ 42.0, 4.0 ], [ 42.0, 4.5 ], [ 42.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 4.5 ], [ 43.0, 4.0 ], [ 42.5, 4.0 ], [ 42.5, 4.5 ], [ 43.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 4.5 ], [ 43.5, 4.0 ], [ 43.0, 4.0 ], [ 43.0, 4.5 ], [ 43.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 4.5 ], [ 44.0, 4.0 ], [ 43.5, 4.0 ], [ 43.5, 4.5 ], [ 44.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 4.5 ], [ 44.5, 4.0 ], [ 44.0, 4.0 ], [ 44.0, 4.5 ], [ 44.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 4.5 ], [ 45.0, 4.0 ], [ 44.5, 4.0 ], [ 44.5, 4.5 ], [ 45.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, 4.5 ], [ 45.5, 4.0 ], [ 45.0, 4.0 ], [ 45.0, 4.5 ], [ 45.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 4.5 ], [ 46.0, 4.0 ], [ 45.5, 4.0 ], [ 45.5, 4.5 ], [ 46.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, 4.5 ], [ 46.5, 4.0 ], [ 46.0, 4.0 ], [ 46.0, 4.5 ], [ 46.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, 4.5 ], [ 47.0, 4.0 ], [ 46.5, 4.0 ], [ 46.5, 4.5 ], [ 47.0, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, 4.5 ], [ 47.5, 4.0 ], [ 47.0, 4.0 ], [ 47.0, 4.5 ], [ 47.5, 4.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 5.0 ], [ -8.0, 4.5 ], [ -8.5, 4.5 ], [ -8.5, 5.0 ], [ -8.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 5.0 ], [ -7.5, 4.5 ], [ -8.0, 4.5 ], [ -8.0, 5.0 ], [ -7.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 5.0 ], [ -7.0, 4.5 ], [ -7.5, 4.5 ], [ -7.5, 5.0 ], [ -7.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 5.0 ], [ -6.5, 4.5 ], [ -7.0, 4.5 ], [ -7.0, 5.0 ], [ -6.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 5.0 ], [ 6.0, 4.5 ], [ 5.5, 4.5 ], [ 5.5, 5.0 ], [ 6.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 5.0 ], [ 6.5, 4.5 ], [ 6.0, 4.5 ], [ 6.0, 5.0 ], [ 6.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 5.0 ], [ 7.0, 4.5 ], [ 6.5, 4.5 ], [ 6.5, 5.0 ], [ 7.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 5.0 ], [ 7.5, 4.5 ], [ 7.0, 4.5 ], [ 7.0, 5.0 ], [ 7.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 5.0 ], [ 8.0, 4.5 ], [ 7.5, 4.5 ], [ 7.5, 5.0 ], [ 8.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 5.0 ], [ 8.5, 4.5 ], [ 8.0, 4.5 ], [ 8.0, 5.0 ], [ 8.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 5.0 ], [ 9.0, 4.5 ], [ 8.5, 4.5 ], [ 8.5, 5.0 ], [ 9.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 5.0 ], [ 9.5, 4.5 ], [ 9.0, 4.5 ], [ 9.0, 5.0 ], [ 9.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 5.0 ], [ 10.0, 4.5 ], [ 9.5, 4.5 ], [ 9.5, 5.0 ], [ 10.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 5.0 ], [ 10.5, 4.5 ], [ 10.0, 4.5 ], [ 10.0, 5.0 ], [ 10.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 5.0 ], [ 11.0, 4.5 ], [ 10.5, 4.5 ], [ 10.5, 5.0 ], [ 11.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 5.0 ], [ 11.5, 4.5 ], [ 11.0, 4.5 ], [ 11.0, 5.0 ], [ 11.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 5.0 ], [ 12.0, 4.5 ], [ 11.5, 4.5 ], [ 11.5, 5.0 ], [ 12.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 5.0 ], [ 12.5, 4.5 ], [ 12.0, 4.5 ], [ 12.0, 5.0 ], [ 12.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 5.0 ], [ 13.0, 4.5 ], [ 12.5, 4.5 ], [ 12.5, 5.0 ], [ 13.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 5.0 ], [ 13.5, 4.5 ], [ 13.0, 4.5 ], [ 13.0, 5.0 ], [ 13.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 5.0 ], [ 14.0, 4.5 ], [ 13.5, 4.5 ], [ 13.5, 5.0 ], [ 14.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 5.0 ], [ 14.5, 4.5 ], [ 14.0, 4.5 ], [ 14.0, 5.0 ], [ 14.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 5.0 ], [ 15.0, 4.5 ], [ 14.5, 4.5 ], [ 14.5, 5.0 ], [ 15.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 5.0 ], [ 15.5, 4.5 ], [ 15.0, 4.5 ], [ 15.0, 5.0 ], [ 15.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 5.0 ], [ 16.0, 4.5 ], [ 15.5, 4.5 ], [ 15.5, 5.0 ], [ 16.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 5.0 ], [ 16.5, 4.5 ], [ 16.0, 4.5 ], [ 16.0, 5.0 ], [ 16.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 5.0 ], [ 17.0, 4.5 ], [ 16.5, 4.5 ], [ 16.5, 5.0 ], [ 17.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 5.0 ], [ 17.5, 4.5 ], [ 17.0, 4.5 ], [ 17.0, 5.0 ], [ 17.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 5.0 ], [ 18.0, 4.5 ], [ 17.5, 4.5 ], [ 17.5, 5.0 ], [ 18.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 5.0 ], [ 18.5, 4.5 ], [ 18.0, 4.5 ], [ 18.0, 5.0 ], [ 18.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 5.0 ], [ 19.0, 4.5 ], [ 18.5, 4.5 ], [ 18.5, 5.0 ], [ 19.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 5.0 ], [ 19.5, 4.5 ], [ 19.0, 4.5 ], [ 19.0, 5.0 ], [ 19.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 5.0 ], [ 20.0, 4.5 ], [ 19.5, 4.5 ], [ 19.5, 5.0 ], [ 20.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 5.0 ], [ 20.5, 4.5 ], [ 20.0, 4.5 ], [ 20.0, 5.0 ], [ 20.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 5.0 ], [ 21.0, 4.5 ], [ 20.5, 4.5 ], [ 20.5, 5.0 ], [ 21.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 5.0 ], [ 21.5, 4.5 ], [ 21.0, 4.5 ], [ 21.0, 5.0 ], [ 21.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 5.0 ], [ 22.0, 4.5 ], [ 21.5, 4.5 ], [ 21.5, 5.0 ], [ 22.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 5.0 ], [ 22.5, 4.5 ], [ 22.0, 4.5 ], [ 22.0, 5.0 ], [ 22.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 5.0 ], [ 23.0, 4.5 ], [ 22.5, 4.5 ], [ 22.5, 5.0 ], [ 23.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 5.0 ], [ 23.5, 4.5 ], [ 23.0, 4.5 ], [ 23.0, 5.0 ], [ 23.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 5.0 ], [ 24.0, 4.5 ], [ 23.5, 4.5 ], [ 23.5, 5.0 ], [ 24.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 5.0 ], [ 24.5, 4.5 ], [ 24.0, 4.5 ], [ 24.0, 5.0 ], [ 24.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 5.0 ], [ 25.0, 4.5 ], [ 24.5, 4.5 ], [ 24.5, 5.0 ], [ 25.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 5.0 ], [ 25.5, 4.5 ], [ 25.0, 4.5 ], [ 25.0, 5.0 ], [ 25.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 5.0 ], [ 26.0, 4.5 ], [ 25.5, 4.5 ], [ 25.5, 5.0 ], [ 26.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 5.0 ], [ 26.5, 4.5 ], [ 26.0, 4.5 ], [ 26.0, 5.0 ], [ 26.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 5.0 ], [ 27.0, 4.5 ], [ 26.5, 4.5 ], [ 26.5, 5.0 ], [ 27.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 5.0 ], [ 27.5, 4.5 ], [ 27.0, 4.5 ], [ 27.0, 5.0 ], [ 27.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 5.0 ], [ 28.0, 4.5 ], [ 27.5, 4.5 ], [ 27.5, 5.0 ], [ 28.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 5.0 ], [ 28.5, 4.5 ], [ 28.0, 4.5 ], [ 28.0, 5.0 ], [ 28.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 5.0 ], [ 29.0, 4.5 ], [ 28.5, 4.5 ], [ 28.5, 5.0 ], [ 29.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 5.0 ], [ 29.5, 4.5 ], [ 29.0, 4.5 ], [ 29.0, 5.0 ], [ 29.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 5.0 ], [ 30.0, 4.5 ], [ 29.5, 4.5 ], [ 29.5, 5.0 ], [ 30.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 5.0 ], [ 30.5, 4.5 ], [ 30.0, 4.5 ], [ 30.0, 5.0 ], [ 30.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 5.0 ], [ 31.0, 4.5 ], [ 30.5, 4.5 ], [ 30.5, 5.0 ], [ 31.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 5.0 ], [ 31.5, 4.5 ], [ 31.0, 4.5 ], [ 31.0, 5.0 ], [ 31.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 5.0 ], [ 32.0, 4.5 ], [ 31.5, 4.5 ], [ 31.5, 5.0 ], [ 32.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 5.0 ], [ 32.5, 4.5 ], [ 32.0, 4.5 ], [ 32.0, 5.0 ], [ 32.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 5.0 ], [ 33.0, 4.5 ], [ 32.5, 4.5 ], [ 32.5, 5.0 ], [ 33.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 5.0 ], [ 33.5, 4.5 ], [ 33.0, 4.5 ], [ 33.0, 5.0 ], [ 33.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 5.0 ], [ 34.0, 4.5 ], [ 33.5, 4.5 ], [ 33.5, 5.0 ], [ 34.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 5.0 ], [ 34.5, 4.5 ], [ 34.0, 4.5 ], [ 34.0, 5.0 ], [ 34.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 5.0 ], [ 35.0, 4.5 ], [ 34.5, 4.5 ], [ 34.5, 5.0 ], [ 35.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 5.0 ], [ 35.5, 4.5 ], [ 35.0, 4.5 ], [ 35.0, 5.0 ], [ 35.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 5.0 ], [ 36.0, 4.5 ], [ 35.5, 4.5 ], [ 35.5, 5.0 ], [ 36.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 5.0 ], [ 36.5, 4.5 ], [ 36.0, 4.5 ], [ 36.0, 5.0 ], [ 36.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 5.0 ], [ 37.0, 4.5 ], [ 36.5, 4.5 ], [ 36.5, 5.0 ], [ 37.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 5.0 ], [ 37.5, 4.5 ], [ 37.0, 4.5 ], [ 37.0, 5.0 ], [ 37.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 5.0 ], [ 38.0, 4.5 ], [ 37.5, 4.5 ], [ 37.5, 5.0 ], [ 38.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 5.0 ], [ 38.5, 4.5 ], [ 38.0, 4.5 ], [ 38.0, 5.0 ], [ 38.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 5.0 ], [ 39.0, 4.5 ], [ 38.5, 4.5 ], [ 38.5, 5.0 ], [ 39.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 5.0 ], [ 39.5, 4.5 ], [ 39.0, 4.5 ], [ 39.0, 5.0 ], [ 39.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 5.0 ], [ 40.0, 4.5 ], [ 39.5, 4.5 ], [ 39.5, 5.0 ], [ 40.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 5.0 ], [ 40.5, 4.5 ], [ 40.0, 4.5 ], [ 40.0, 5.0 ], [ 40.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 5.0 ], [ 41.0, 4.5 ], [ 40.5, 4.5 ], [ 40.5, 5.0 ], [ 41.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 5.0 ], [ 41.5, 4.5 ], [ 41.0, 4.5 ], [ 41.0, 5.0 ], [ 41.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 5.0 ], [ 42.0, 4.5 ], [ 41.5, 4.5 ], [ 41.5, 5.0 ], [ 42.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 5.0 ], [ 42.5, 4.5 ], [ 42.0, 4.5 ], [ 42.0, 5.0 ], [ 42.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 5.0 ], [ 43.0, 4.5 ], [ 42.5, 4.5 ], [ 42.5, 5.0 ], [ 43.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 5.0 ], [ 43.5, 4.5 ], [ 43.0, 4.5 ], [ 43.0, 5.0 ], [ 43.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 5.0 ], [ 44.0, 4.5 ], [ 43.5, 4.5 ], [ 43.5, 5.0 ], [ 44.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 5.0 ], [ 44.5, 4.5 ], [ 44.0, 4.5 ], [ 44.0, 5.0 ], [ 44.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 5.0 ], [ 45.0, 4.5 ], [ 44.5, 4.5 ], [ 44.5, 5.0 ], [ 45.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, 5.0 ], [ 45.5, 4.5 ], [ 45.0, 4.5 ], [ 45.0, 5.0 ], [ 45.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 5.0 ], [ 46.0, 4.5 ], [ 45.5, 4.5 ], [ 45.5, 5.0 ], [ 46.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, 5.0 ], [ 46.5, 4.5 ], [ 46.0, 4.5 ], [ 46.0, 5.0 ], [ 46.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, 5.0 ], [ 47.0, 4.5 ], [ 46.5, 4.5 ], [ 46.5, 5.0 ], [ 47.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, 5.0 ], [ 47.5, 4.5 ], [ 47.0, 4.5 ], [ 47.0, 5.0 ], [ 47.5, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, 5.0 ], [ 48.0, 4.5 ], [ 47.5, 4.5 ], [ 47.5, 5.0 ], [ 48.0, 5.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 5.5 ], [ -9.0, 5.0 ], [ -9.5, 5.0 ], [ -9.5, 5.5 ], [ -9.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 5.5 ], [ -8.5, 5.0 ], [ -9.0, 5.0 ], [ -9.0, 5.5 ], [ -8.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 5.5 ], [ -8.0, 5.0 ], [ -8.5, 5.0 ], [ -8.5, 5.5 ], [ -8.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 5.5 ], [ -7.5, 5.0 ], [ -8.0, 5.0 ], [ -8.0, 5.5 ], [ -7.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 5.5 ], [ -7.0, 5.0 ], [ -7.5, 5.0 ], [ -7.5, 5.5 ], [ -7.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 5.5 ], [ -6.5, 5.0 ], [ -7.0, 5.0 ], [ -7.0, 5.5 ], [ -6.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 5.5 ], [ -6.0, 5.0 ], [ -6.5, 5.0 ], [ -6.5, 5.5 ], [ -6.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 5.5 ], [ -5.5, 5.0 ], [ -6.0, 5.0 ], [ -6.0, 5.5 ], [ -5.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 5.5 ], [ -5.0, 5.0 ], [ -5.5, 5.0 ], [ -5.5, 5.5 ], [ -5.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 5.5 ], [ -4.5, 5.0 ], [ -5.0, 5.0 ], [ -5.0, 5.5 ], [ -4.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 5.5 ], [ -3.5, 5.0 ], [ -4.0, 5.0 ], [ -4.0, 5.5 ], [ -3.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 5.5 ], [ -3.0, 5.0 ], [ -3.5, 5.0 ], [ -3.5, 5.5 ], [ -3.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 5.5 ], [ -2.5, 5.0 ], [ -3.0, 5.0 ], [ -3.0, 5.5 ], [ -2.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 5.5 ], [ -2.0, 5.0 ], [ -2.5, 5.0 ], [ -2.5, 5.5 ], [ -2.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 5.5 ], [ -1.5, 5.0 ], [ -2.0, 5.0 ], [ -2.0, 5.5 ], [ -1.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 5.5 ], [ -1.0, 5.0 ], [ -1.5, 5.0 ], [ -1.5, 5.5 ], [ -1.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 5.5 ], [ 6.0, 5.0 ], [ 5.5, 5.0 ], [ 5.5, 5.5 ], [ 6.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 5.5 ], [ 6.5, 5.0 ], [ 6.0, 5.0 ], [ 6.0, 5.5 ], [ 6.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 5.5 ], [ 7.0, 5.0 ], [ 6.5, 5.0 ], [ 6.5, 5.5 ], [ 7.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 5.5 ], [ 7.5, 5.0 ], [ 7.0, 5.0 ], [ 7.0, 5.5 ], [ 7.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 5.5 ], [ 8.0, 5.0 ], [ 7.5, 5.0 ], [ 7.5, 5.5 ], [ 8.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 5.5 ], [ 8.5, 5.0 ], [ 8.0, 5.0 ], [ 8.0, 5.5 ], [ 8.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 5.5 ], [ 9.0, 5.0 ], [ 8.5, 5.0 ], [ 8.5, 5.5 ], [ 9.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 5.5 ], [ 9.5, 5.0 ], [ 9.0, 5.0 ], [ 9.0, 5.5 ], [ 9.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 5.5 ], [ 10.0, 5.0 ], [ 9.5, 5.0 ], [ 9.5, 5.5 ], [ 10.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 5.5 ], [ 10.5, 5.0 ], [ 10.0, 5.0 ], [ 10.0, 5.5 ], [ 10.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 5.5 ], [ 11.0, 5.0 ], [ 10.5, 5.0 ], [ 10.5, 5.5 ], [ 11.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 5.5 ], [ 11.5, 5.0 ], [ 11.0, 5.0 ], [ 11.0, 5.5 ], [ 11.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 5.5 ], [ 12.0, 5.0 ], [ 11.5, 5.0 ], [ 11.5, 5.5 ], [ 12.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 5.5 ], [ 12.5, 5.0 ], [ 12.0, 5.0 ], [ 12.0, 5.5 ], [ 12.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 5.5 ], [ 13.0, 5.0 ], [ 12.5, 5.0 ], [ 12.5, 5.5 ], [ 13.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 5.5 ], [ 13.5, 5.0 ], [ 13.0, 5.0 ], [ 13.0, 5.5 ], [ 13.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 5.5 ], [ 14.0, 5.0 ], [ 13.5, 5.0 ], [ 13.5, 5.5 ], [ 14.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 5.5 ], [ 14.5, 5.0 ], [ 14.0, 5.0 ], [ 14.0, 5.5 ], [ 14.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 5.5 ], [ 15.0, 5.0 ], [ 14.5, 5.0 ], [ 14.5, 5.5 ], [ 15.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 5.5 ], [ 15.5, 5.0 ], [ 15.0, 5.0 ], [ 15.0, 5.5 ], [ 15.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 5.5 ], [ 16.0, 5.0 ], [ 15.5, 5.0 ], [ 15.5, 5.5 ], [ 16.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 5.5 ], [ 16.5, 5.0 ], [ 16.0, 5.0 ], [ 16.0, 5.5 ], [ 16.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 5.5 ], [ 17.0, 5.0 ], [ 16.5, 5.0 ], [ 16.5, 5.5 ], [ 17.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 5.5 ], [ 17.5, 5.0 ], [ 17.0, 5.0 ], [ 17.0, 5.5 ], [ 17.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 5.5 ], [ 18.0, 5.0 ], [ 17.5, 5.0 ], [ 17.5, 5.5 ], [ 18.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 5.5 ], [ 18.5, 5.0 ], [ 18.0, 5.0 ], [ 18.0, 5.5 ], [ 18.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 5.5 ], [ 19.0, 5.0 ], [ 18.5, 5.0 ], [ 18.5, 5.5 ], [ 19.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 5.5 ], [ 19.5, 5.0 ], [ 19.0, 5.0 ], [ 19.0, 5.5 ], [ 19.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 5.5 ], [ 20.0, 5.0 ], [ 19.5, 5.0 ], [ 19.5, 5.5 ], [ 20.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 5.5 ], [ 20.5, 5.0 ], [ 20.0, 5.0 ], [ 20.0, 5.5 ], [ 20.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 5.5 ], [ 21.0, 5.0 ], [ 20.5, 5.0 ], [ 20.5, 5.5 ], [ 21.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 5.5 ], [ 21.5, 5.0 ], [ 21.0, 5.0 ], [ 21.0, 5.5 ], [ 21.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 5.5 ], [ 22.0, 5.0 ], [ 21.5, 5.0 ], [ 21.5, 5.5 ], [ 22.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 5.5 ], [ 22.5, 5.0 ], [ 22.0, 5.0 ], [ 22.0, 5.5 ], [ 22.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 5.5 ], [ 23.0, 5.0 ], [ 22.5, 5.0 ], [ 22.5, 5.5 ], [ 23.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 5.5 ], [ 23.5, 5.0 ], [ 23.0, 5.0 ], [ 23.0, 5.5 ], [ 23.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 5.5 ], [ 24.0, 5.0 ], [ 23.5, 5.0 ], [ 23.5, 5.5 ], [ 24.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 5.5 ], [ 24.5, 5.0 ], [ 24.0, 5.0 ], [ 24.0, 5.5 ], [ 24.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 5.5 ], [ 25.0, 5.0 ], [ 24.5, 5.0 ], [ 24.5, 5.5 ], [ 25.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 5.5 ], [ 25.5, 5.0 ], [ 25.0, 5.0 ], [ 25.0, 5.5 ], [ 25.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 5.5 ], [ 26.0, 5.0 ], [ 25.5, 5.0 ], [ 25.5, 5.5 ], [ 26.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 5.5 ], [ 26.5, 5.0 ], [ 26.0, 5.0 ], [ 26.0, 5.5 ], [ 26.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 5.5 ], [ 27.0, 5.0 ], [ 26.5, 5.0 ], [ 26.5, 5.5 ], [ 27.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 5.5 ], [ 27.5, 5.0 ], [ 27.0, 5.0 ], [ 27.0, 5.5 ], [ 27.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 5.5 ], [ 28.0, 5.0 ], [ 27.5, 5.0 ], [ 27.5, 5.5 ], [ 28.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 5.5 ], [ 28.5, 5.0 ], [ 28.0, 5.0 ], [ 28.0, 5.5 ], [ 28.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 5.5 ], [ 29.0, 5.0 ], [ 28.5, 5.0 ], [ 28.5, 5.5 ], [ 29.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 5.5 ], [ 29.5, 5.0 ], [ 29.0, 5.0 ], [ 29.0, 5.5 ], [ 29.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 5.5 ], [ 30.0, 5.0 ], [ 29.5, 5.0 ], [ 29.5, 5.5 ], [ 30.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 5.5 ], [ 30.5, 5.0 ], [ 30.0, 5.0 ], [ 30.0, 5.5 ], [ 30.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 5.5 ], [ 31.0, 5.0 ], [ 30.5, 5.0 ], [ 30.5, 5.5 ], [ 31.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 5.5 ], [ 31.5, 5.0 ], [ 31.0, 5.0 ], [ 31.0, 5.5 ], [ 31.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 5.5 ], [ 32.0, 5.0 ], [ 31.5, 5.0 ], [ 31.5, 5.5 ], [ 32.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 5.5 ], [ 32.5, 5.0 ], [ 32.0, 5.0 ], [ 32.0, 5.5 ], [ 32.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 5.5 ], [ 33.0, 5.0 ], [ 32.5, 5.0 ], [ 32.5, 5.5 ], [ 33.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 5.5 ], [ 33.5, 5.0 ], [ 33.0, 5.0 ], [ 33.0, 5.5 ], [ 33.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 5.5 ], [ 34.0, 5.0 ], [ 33.5, 5.0 ], [ 33.5, 5.5 ], [ 34.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 5.5 ], [ 34.5, 5.0 ], [ 34.0, 5.0 ], [ 34.0, 5.5 ], [ 34.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 5.5 ], [ 35.0, 5.0 ], [ 34.5, 5.0 ], [ 34.5, 5.5 ], [ 35.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 5.5 ], [ 35.5, 5.0 ], [ 35.0, 5.0 ], [ 35.0, 5.5 ], [ 35.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 5.5 ], [ 36.0, 5.0 ], [ 35.5, 5.0 ], [ 35.5, 5.5 ], [ 36.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 5.5 ], [ 36.5, 5.0 ], [ 36.0, 5.0 ], [ 36.0, 5.5 ], [ 36.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 5.5 ], [ 37.0, 5.0 ], [ 36.5, 5.0 ], [ 36.5, 5.5 ], [ 37.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 5.5 ], [ 37.5, 5.0 ], [ 37.0, 5.0 ], [ 37.0, 5.5 ], [ 37.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 5.5 ], [ 38.0, 5.0 ], [ 37.5, 5.0 ], [ 37.5, 5.5 ], [ 38.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 5.5 ], [ 38.5, 5.0 ], [ 38.0, 5.0 ], [ 38.0, 5.5 ], [ 38.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 5.5 ], [ 39.0, 5.0 ], [ 38.5, 5.0 ], [ 38.5, 5.5 ], [ 39.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 5.5 ], [ 39.5, 5.0 ], [ 39.0, 5.0 ], [ 39.0, 5.5 ], [ 39.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 5.5 ], [ 40.0, 5.0 ], [ 39.5, 5.0 ], [ 39.5, 5.5 ], [ 40.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 5.5 ], [ 40.5, 5.0 ], [ 40.0, 5.0 ], [ 40.0, 5.5 ], [ 40.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 5.5 ], [ 41.0, 5.0 ], [ 40.5, 5.0 ], [ 40.5, 5.5 ], [ 41.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 5.5 ], [ 41.5, 5.0 ], [ 41.0, 5.0 ], [ 41.0, 5.5 ], [ 41.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 5.5 ], [ 42.0, 5.0 ], [ 41.5, 5.0 ], [ 41.5, 5.5 ], [ 42.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 5.5 ], [ 42.5, 5.0 ], [ 42.0, 5.0 ], [ 42.0, 5.5 ], [ 42.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 5.5 ], [ 43.0, 5.0 ], [ 42.5, 5.0 ], [ 42.5, 5.5 ], [ 43.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 5.5 ], [ 43.5, 5.0 ], [ 43.0, 5.0 ], [ 43.0, 5.5 ], [ 43.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 5.5 ], [ 44.0, 5.0 ], [ 43.5, 5.0 ], [ 43.5, 5.5 ], [ 44.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 5.5 ], [ 44.5, 5.0 ], [ 44.0, 5.0 ], [ 44.0, 5.5 ], [ 44.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 5.5 ], [ 45.0, 5.0 ], [ 44.5, 5.0 ], [ 44.5, 5.5 ], [ 45.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, 5.5 ], [ 45.5, 5.0 ], [ 45.0, 5.0 ], [ 45.0, 5.5 ], [ 45.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 5.5 ], [ 46.0, 5.0 ], [ 45.5, 5.0 ], [ 45.5, 5.5 ], [ 46.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, 5.5 ], [ 46.5, 5.0 ], [ 46.0, 5.0 ], [ 46.0, 5.5 ], [ 46.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, 5.5 ], [ 47.0, 5.0 ], [ 46.5, 5.0 ], [ 46.5, 5.5 ], [ 47.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, 5.5 ], [ 47.5, 5.0 ], [ 47.0, 5.0 ], [ 47.0, 5.5 ], [ 47.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, 5.5 ], [ 48.0, 5.0 ], [ 47.5, 5.0 ], [ 47.5, 5.5 ], [ 48.0, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, 5.5 ], [ 48.5, 5.0 ], [ 48.0, 5.0 ], [ 48.0, 5.5 ], [ 48.5, 5.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 6.0 ], [ -9.5, 5.5 ], [ -10.0, 5.5 ], [ -10.0, 6.0 ], [ -9.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 6.0 ], [ -9.0, 5.5 ], [ -9.5, 5.5 ], [ -9.5, 6.0 ], [ -9.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 6.0 ], [ -8.5, 5.5 ], [ -9.0, 5.5 ], [ -9.0, 6.0 ], [ -8.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 6.0 ], [ -8.0, 5.5 ], [ -8.5, 5.5 ], [ -8.5, 6.0 ], [ -8.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 6.0 ], [ -7.5, 5.5 ], [ -8.0, 5.5 ], [ -8.0, 6.0 ], [ -7.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 6.0 ], [ -7.0, 5.5 ], [ -7.5, 5.5 ], [ -7.5, 6.0 ], [ -7.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 6.0 ], [ -6.5, 5.5 ], [ -7.0, 5.5 ], [ -7.0, 6.0 ], [ -6.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 6.0 ], [ -6.0, 5.5 ], [ -6.5, 5.5 ], [ -6.5, 6.0 ], [ -6.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 6.0 ], [ -5.5, 5.5 ], [ -6.0, 5.5 ], [ -6.0, 6.0 ], [ -5.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 6.0 ], [ -5.0, 5.5 ], [ -5.5, 5.5 ], [ -5.5, 6.0 ], [ -5.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 6.0 ], [ -4.5, 5.5 ], [ -5.0, 5.5 ], [ -5.0, 6.0 ], [ -4.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 6.0 ], [ -4.0, 5.5 ], [ -4.5, 5.5 ], [ -4.5, 6.0 ], [ -4.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 6.0 ], [ -3.5, 5.5 ], [ -4.0, 5.5 ], [ -4.0, 6.0 ], [ -3.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 6.0 ], [ -3.0, 5.5 ], [ -3.5, 5.5 ], [ -3.5, 6.0 ], [ -3.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 6.0 ], [ -2.5, 5.5 ], [ -3.0, 5.5 ], [ -3.0, 6.0 ], [ -2.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 6.0 ], [ -2.0, 5.5 ], [ -2.5, 5.5 ], [ -2.5, 6.0 ], [ -2.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 6.0 ], [ -1.5, 5.5 ], [ -2.0, 5.5 ], [ -2.0, 6.0 ], [ -1.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 6.0 ], [ -1.0, 5.5 ], [ -1.5, 5.5 ], [ -1.5, 6.0 ], [ -1.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 6.0 ], [ -0.5, 5.5 ], [ -1.0, 5.5 ], [ -1.0, 6.0 ], [ -0.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 6.0 ], [ 0.0, 5.5 ], [ -0.5, 5.5 ], [ -0.5, 6.0 ], [ 0.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 6.0 ], [ 5.5, 5.5 ], [ 5.0, 5.5 ], [ 5.0, 6.0 ], [ 5.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 6.0 ], [ 6.0, 5.5 ], [ 5.5, 5.5 ], [ 5.5, 6.0 ], [ 6.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 6.0 ], [ 6.5, 5.5 ], [ 6.0, 5.5 ], [ 6.0, 6.0 ], [ 6.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 6.0 ], [ 7.0, 5.5 ], [ 6.5, 5.5 ], [ 6.5, 6.0 ], [ 7.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 6.0 ], [ 7.5, 5.5 ], [ 7.0, 5.5 ], [ 7.0, 6.0 ], [ 7.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 6.0 ], [ 8.0, 5.5 ], [ 7.5, 5.5 ], [ 7.5, 6.0 ], [ 8.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 6.0 ], [ 8.5, 5.5 ], [ 8.0, 5.5 ], [ 8.0, 6.0 ], [ 8.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 6.0 ], [ 9.0, 5.5 ], [ 8.5, 5.5 ], [ 8.5, 6.0 ], [ 9.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 6.0 ], [ 9.5, 5.5 ], [ 9.0, 5.5 ], [ 9.0, 6.0 ], [ 9.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 6.0 ], [ 10.0, 5.5 ], [ 9.5, 5.5 ], [ 9.5, 6.0 ], [ 10.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 6.0 ], [ 10.5, 5.5 ], [ 10.0, 5.5 ], [ 10.0, 6.0 ], [ 10.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 6.0 ], [ 11.0, 5.5 ], [ 10.5, 5.5 ], [ 10.5, 6.0 ], [ 11.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 6.0 ], [ 11.5, 5.5 ], [ 11.0, 5.5 ], [ 11.0, 6.0 ], [ 11.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 6.0 ], [ 12.0, 5.5 ], [ 11.5, 5.5 ], [ 11.5, 6.0 ], [ 12.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 6.0 ], [ 12.5, 5.5 ], [ 12.0, 5.5 ], [ 12.0, 6.0 ], [ 12.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 6.0 ], [ 13.0, 5.5 ], [ 12.5, 5.5 ], [ 12.5, 6.0 ], [ 13.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 6.0 ], [ 13.5, 5.5 ], [ 13.0, 5.5 ], [ 13.0, 6.0 ], [ 13.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 6.0 ], [ 14.0, 5.5 ], [ 13.5, 5.5 ], [ 13.5, 6.0 ], [ 14.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 6.0 ], [ 14.5, 5.5 ], [ 14.0, 5.5 ], [ 14.0, 6.0 ], [ 14.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 6.0 ], [ 15.0, 5.5 ], [ 14.5, 5.5 ], [ 14.5, 6.0 ], [ 15.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 6.0 ], [ 15.5, 5.5 ], [ 15.0, 5.5 ], [ 15.0, 6.0 ], [ 15.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 6.0 ], [ 16.0, 5.5 ], [ 15.5, 5.5 ], [ 15.5, 6.0 ], [ 16.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 6.0 ], [ 16.5, 5.5 ], [ 16.0, 5.5 ], [ 16.0, 6.0 ], [ 16.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 6.0 ], [ 17.0, 5.5 ], [ 16.5, 5.5 ], [ 16.5, 6.0 ], [ 17.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 6.0 ], [ 17.5, 5.5 ], [ 17.0, 5.5 ], [ 17.0, 6.0 ], [ 17.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 6.0 ], [ 18.0, 5.5 ], [ 17.5, 5.5 ], [ 17.5, 6.0 ], [ 18.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 6.0 ], [ 18.5, 5.5 ], [ 18.0, 5.5 ], [ 18.0, 6.0 ], [ 18.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 6.0 ], [ 19.0, 5.5 ], [ 18.5, 5.5 ], [ 18.5, 6.0 ], [ 19.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 6.0 ], [ 19.5, 5.5 ], [ 19.0, 5.5 ], [ 19.0, 6.0 ], [ 19.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 6.0 ], [ 20.0, 5.5 ], [ 19.5, 5.5 ], [ 19.5, 6.0 ], [ 20.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 6.0 ], [ 20.5, 5.5 ], [ 20.0, 5.5 ], [ 20.0, 6.0 ], [ 20.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 6.0 ], [ 21.0, 5.5 ], [ 20.5, 5.5 ], [ 20.5, 6.0 ], [ 21.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 6.0 ], [ 21.5, 5.5 ], [ 21.0, 5.5 ], [ 21.0, 6.0 ], [ 21.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 6.0 ], [ 22.0, 5.5 ], [ 21.5, 5.5 ], [ 21.5, 6.0 ], [ 22.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 6.0 ], [ 22.5, 5.5 ], [ 22.0, 5.5 ], [ 22.0, 6.0 ], [ 22.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 6.0 ], [ 23.0, 5.5 ], [ 22.5, 5.5 ], [ 22.5, 6.0 ], [ 23.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 6.0 ], [ 23.5, 5.5 ], [ 23.0, 5.5 ], [ 23.0, 6.0 ], [ 23.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 6.0 ], [ 24.0, 5.5 ], [ 23.5, 5.5 ], [ 23.5, 6.0 ], [ 24.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 6.0 ], [ 24.5, 5.5 ], [ 24.0, 5.5 ], [ 24.0, 6.0 ], [ 24.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 6.0 ], [ 25.0, 5.5 ], [ 24.5, 5.5 ], [ 24.5, 6.0 ], [ 25.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 6.0 ], [ 25.5, 5.5 ], [ 25.0, 5.5 ], [ 25.0, 6.0 ], [ 25.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 6.0 ], [ 26.0, 5.5 ], [ 25.5, 5.5 ], [ 25.5, 6.0 ], [ 26.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 6.0 ], [ 26.5, 5.5 ], [ 26.0, 5.5 ], [ 26.0, 6.0 ], [ 26.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 6.0 ], [ 27.0, 5.5 ], [ 26.5, 5.5 ], [ 26.5, 6.0 ], [ 27.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 6.0 ], [ 27.5, 5.5 ], [ 27.0, 5.5 ], [ 27.0, 6.0 ], [ 27.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 6.0 ], [ 28.0, 5.5 ], [ 27.5, 5.5 ], [ 27.5, 6.0 ], [ 28.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 6.0 ], [ 28.5, 5.5 ], [ 28.0, 5.5 ], [ 28.0, 6.0 ], [ 28.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 6.0 ], [ 29.0, 5.5 ], [ 28.5, 5.5 ], [ 28.5, 6.0 ], [ 29.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 6.0 ], [ 29.5, 5.5 ], [ 29.0, 5.5 ], [ 29.0, 6.0 ], [ 29.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 6.0 ], [ 30.0, 5.5 ], [ 29.5, 5.5 ], [ 29.5, 6.0 ], [ 30.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 6.0 ], [ 30.5, 5.5 ], [ 30.0, 5.5 ], [ 30.0, 6.0 ], [ 30.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 6.0 ], [ 31.0, 5.5 ], [ 30.5, 5.5 ], [ 30.5, 6.0 ], [ 31.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 6.0 ], [ 31.5, 5.5 ], [ 31.0, 5.5 ], [ 31.0, 6.0 ], [ 31.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 6.0 ], [ 32.0, 5.5 ], [ 31.5, 5.5 ], [ 31.5, 6.0 ], [ 32.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 6.0 ], [ 32.5, 5.5 ], [ 32.0, 5.5 ], [ 32.0, 6.0 ], [ 32.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 6.0 ], [ 33.0, 5.5 ], [ 32.5, 5.5 ], [ 32.5, 6.0 ], [ 33.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 6.0 ], [ 33.5, 5.5 ], [ 33.0, 5.5 ], [ 33.0, 6.0 ], [ 33.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 6.0 ], [ 34.0, 5.5 ], [ 33.5, 5.5 ], [ 33.5, 6.0 ], [ 34.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 6.0 ], [ 34.5, 5.5 ], [ 34.0, 5.5 ], [ 34.0, 6.0 ], [ 34.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 6.0 ], [ 35.0, 5.5 ], [ 34.5, 5.5 ], [ 34.5, 6.0 ], [ 35.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 6.0 ], [ 35.5, 5.5 ], [ 35.0, 5.5 ], [ 35.0, 6.0 ], [ 35.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 6.0 ], [ 36.0, 5.5 ], [ 35.5, 5.5 ], [ 35.5, 6.0 ], [ 36.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 6.0 ], [ 36.5, 5.5 ], [ 36.0, 5.5 ], [ 36.0, 6.0 ], [ 36.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 6.0 ], [ 37.0, 5.5 ], [ 36.5, 5.5 ], [ 36.5, 6.0 ], [ 37.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 6.0 ], [ 37.5, 5.5 ], [ 37.0, 5.5 ], [ 37.0, 6.0 ], [ 37.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 6.0 ], [ 38.0, 5.5 ], [ 37.5, 5.5 ], [ 37.5, 6.0 ], [ 38.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 6.0 ], [ 38.5, 5.5 ], [ 38.0, 5.5 ], [ 38.0, 6.0 ], [ 38.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 6.0 ], [ 39.0, 5.5 ], [ 38.5, 5.5 ], [ 38.5, 6.0 ], [ 39.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 6.0 ], [ 39.5, 5.5 ], [ 39.0, 5.5 ], [ 39.0, 6.0 ], [ 39.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 6.0 ], [ 40.0, 5.5 ], [ 39.5, 5.5 ], [ 39.5, 6.0 ], [ 40.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 6.0 ], [ 40.5, 5.5 ], [ 40.0, 5.5 ], [ 40.0, 6.0 ], [ 40.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 6.0 ], [ 41.0, 5.5 ], [ 40.5, 5.5 ], [ 40.5, 6.0 ], [ 41.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 6.0 ], [ 41.5, 5.5 ], [ 41.0, 5.5 ], [ 41.0, 6.0 ], [ 41.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 6.0 ], [ 42.0, 5.5 ], [ 41.5, 5.5 ], [ 41.5, 6.0 ], [ 42.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 6.0 ], [ 42.5, 5.5 ], [ 42.0, 5.5 ], [ 42.0, 6.0 ], [ 42.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 6.0 ], [ 43.0, 5.5 ], [ 42.5, 5.5 ], [ 42.5, 6.0 ], [ 43.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 6.0 ], [ 43.5, 5.5 ], [ 43.0, 5.5 ], [ 43.0, 6.0 ], [ 43.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 6.0 ], [ 44.0, 5.5 ], [ 43.5, 5.5 ], [ 43.5, 6.0 ], [ 44.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 6.0 ], [ 44.5, 5.5 ], [ 44.0, 5.5 ], [ 44.0, 6.0 ], [ 44.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 6.0 ], [ 45.0, 5.5 ], [ 44.5, 5.5 ], [ 44.5, 6.0 ], [ 45.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, 6.0 ], [ 45.5, 5.5 ], [ 45.0, 5.5 ], [ 45.0, 6.0 ], [ 45.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 6.0 ], [ 46.0, 5.5 ], [ 45.5, 5.5 ], [ 45.5, 6.0 ], [ 46.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, 6.0 ], [ 46.5, 5.5 ], [ 46.0, 5.5 ], [ 46.0, 6.0 ], [ 46.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, 6.0 ], [ 47.0, 5.5 ], [ 46.5, 5.5 ], [ 46.5, 6.0 ], [ 47.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, 6.0 ], [ 47.5, 5.5 ], [ 47.0, 5.5 ], [ 47.0, 6.0 ], [ 47.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, 6.0 ], [ 48.0, 5.5 ], [ 47.5, 5.5 ], [ 47.5, 6.0 ], [ 48.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, 6.0 ], [ 48.5, 5.5 ], [ 48.0, 5.5 ], [ 48.0, 6.0 ], [ 48.5, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, 6.0 ], [ 49.0, 5.5 ], [ 48.5, 5.5 ], [ 48.5, 6.0 ], [ 49.0, 6.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 6.5 ], [ -10.0, 6.0 ], [ -10.5, 6.0 ], [ -10.5, 6.5 ], [ -10.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 6.5 ], [ -9.5, 6.0 ], [ -10.0, 6.0 ], [ -10.0, 6.5 ], [ -9.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 6.5 ], [ -9.0, 6.0 ], [ -9.5, 6.0 ], [ -9.5, 6.5 ], [ -9.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 6.5 ], [ -8.5, 6.0 ], [ -9.0, 6.0 ], [ -9.0, 6.5 ], [ -8.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 6.5 ], [ -8.0, 6.0 ], [ -8.5, 6.0 ], [ -8.5, 6.5 ], [ -8.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 6.5 ], [ -7.5, 6.0 ], [ -8.0, 6.0 ], [ -8.0, 6.5 ], [ -7.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 6.5 ], [ -7.0, 6.0 ], [ -7.5, 6.0 ], [ -7.5, 6.5 ], [ -7.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 6.5 ], [ -6.5, 6.0 ], [ -7.0, 6.0 ], [ -7.0, 6.5 ], [ -6.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 6.5 ], [ -6.0, 6.0 ], [ -6.5, 6.0 ], [ -6.5, 6.5 ], [ -6.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 6.5 ], [ -5.5, 6.0 ], [ -6.0, 6.0 ], [ -6.0, 6.5 ], [ -5.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 6.5 ], [ -5.0, 6.0 ], [ -5.5, 6.0 ], [ -5.5, 6.5 ], [ -5.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 6.5 ], [ -4.5, 6.0 ], [ -5.0, 6.0 ], [ -5.0, 6.5 ], [ -4.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 6.5 ], [ -4.0, 6.0 ], [ -4.5, 6.0 ], [ -4.5, 6.5 ], [ -4.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 6.5 ], [ -3.5, 6.0 ], [ -4.0, 6.0 ], [ -4.0, 6.5 ], [ -3.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 6.5 ], [ -3.0, 6.0 ], [ -3.5, 6.0 ], [ -3.5, 6.5 ], [ -3.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 6.5 ], [ -2.5, 6.0 ], [ -3.0, 6.0 ], [ -3.0, 6.5 ], [ -2.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 6.5 ], [ -2.0, 6.0 ], [ -2.5, 6.0 ], [ -2.5, 6.5 ], [ -2.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 6.5 ], [ -1.5, 6.0 ], [ -2.0, 6.0 ], [ -2.0, 6.5 ], [ -1.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 6.5 ], [ -1.0, 6.0 ], [ -1.5, 6.0 ], [ -1.5, 6.5 ], [ -1.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 6.5 ], [ -0.5, 6.0 ], [ -1.0, 6.0 ], [ -1.0, 6.5 ], [ -0.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 6.5 ], [ 0.0, 6.0 ], [ -0.5, 6.0 ], [ -0.5, 6.5 ], [ 0.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 6.5 ], [ 0.5, 6.0 ], [ 0.0, 6.0 ], [ 0.0, 6.5 ], [ 0.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 6.5 ], [ 1.0, 6.0 ], [ 0.5, 6.0 ], [ 0.5, 6.5 ], [ 1.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 6.5 ], [ 1.5, 6.0 ], [ 1.0, 6.0 ], [ 1.0, 6.5 ], [ 1.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 6.5 ], [ 2.0, 6.0 ], [ 1.5, 6.0 ], [ 1.5, 6.5 ], [ 2.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 6.5 ], [ 5.0, 6.0 ], [ 4.5, 6.0 ], [ 4.5, 6.5 ], [ 5.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 6.5 ], [ 5.5, 6.0 ], [ 5.0, 6.0 ], [ 5.0, 6.5 ], [ 5.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 6.5 ], [ 6.0, 6.0 ], [ 5.5, 6.0 ], [ 5.5, 6.5 ], [ 6.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 6.5 ], [ 6.5, 6.0 ], [ 6.0, 6.0 ], [ 6.0, 6.5 ], [ 6.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 6.5 ], [ 7.0, 6.0 ], [ 6.5, 6.0 ], [ 6.5, 6.5 ], [ 7.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 6.5 ], [ 7.5, 6.0 ], [ 7.0, 6.0 ], [ 7.0, 6.5 ], [ 7.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 6.5 ], [ 8.0, 6.0 ], [ 7.5, 6.0 ], [ 7.5, 6.5 ], [ 8.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 6.5 ], [ 8.5, 6.0 ], [ 8.0, 6.0 ], [ 8.0, 6.5 ], [ 8.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 6.5 ], [ 9.0, 6.0 ], [ 8.5, 6.0 ], [ 8.5, 6.5 ], [ 9.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 6.5 ], [ 9.5, 6.0 ], [ 9.0, 6.0 ], [ 9.0, 6.5 ], [ 9.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 6.5 ], [ 10.0, 6.0 ], [ 9.5, 6.0 ], [ 9.5, 6.5 ], [ 10.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 6.5 ], [ 10.5, 6.0 ], [ 10.0, 6.0 ], [ 10.0, 6.5 ], [ 10.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 6.5 ], [ 11.0, 6.0 ], [ 10.5, 6.0 ], [ 10.5, 6.5 ], [ 11.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 6.5 ], [ 11.5, 6.0 ], [ 11.0, 6.0 ], [ 11.0, 6.5 ], [ 11.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 6.5 ], [ 12.0, 6.0 ], [ 11.5, 6.0 ], [ 11.5, 6.5 ], [ 12.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 6.5 ], [ 12.5, 6.0 ], [ 12.0, 6.0 ], [ 12.0, 6.5 ], [ 12.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 6.5 ], [ 13.0, 6.0 ], [ 12.5, 6.0 ], [ 12.5, 6.5 ], [ 13.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 6.5 ], [ 13.5, 6.0 ], [ 13.0, 6.0 ], [ 13.0, 6.5 ], [ 13.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 6.5 ], [ 14.0, 6.0 ], [ 13.5, 6.0 ], [ 13.5, 6.5 ], [ 14.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 6.5 ], [ 14.5, 6.0 ], [ 14.0, 6.0 ], [ 14.0, 6.5 ], [ 14.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 6.5 ], [ 15.0, 6.0 ], [ 14.5, 6.0 ], [ 14.5, 6.5 ], [ 15.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 6.5 ], [ 15.5, 6.0 ], [ 15.0, 6.0 ], [ 15.0, 6.5 ], [ 15.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 6.5 ], [ 16.0, 6.0 ], [ 15.5, 6.0 ], [ 15.5, 6.5 ], [ 16.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 6.5 ], [ 16.5, 6.0 ], [ 16.0, 6.0 ], [ 16.0, 6.5 ], [ 16.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 6.5 ], [ 17.0, 6.0 ], [ 16.5, 6.0 ], [ 16.5, 6.5 ], [ 17.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 6.5 ], [ 17.5, 6.0 ], [ 17.0, 6.0 ], [ 17.0, 6.5 ], [ 17.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 6.5 ], [ 18.0, 6.0 ], [ 17.5, 6.0 ], [ 17.5, 6.5 ], [ 18.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 6.5 ], [ 18.5, 6.0 ], [ 18.0, 6.0 ], [ 18.0, 6.5 ], [ 18.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 6.5 ], [ 19.0, 6.0 ], [ 18.5, 6.0 ], [ 18.5, 6.5 ], [ 19.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 6.5 ], [ 19.5, 6.0 ], [ 19.0, 6.0 ], [ 19.0, 6.5 ], [ 19.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 6.5 ], [ 20.0, 6.0 ], [ 19.5, 6.0 ], [ 19.5, 6.5 ], [ 20.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 6.5 ], [ 20.5, 6.0 ], [ 20.0, 6.0 ], [ 20.0, 6.5 ], [ 20.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 6.5 ], [ 21.0, 6.0 ], [ 20.5, 6.0 ], [ 20.5, 6.5 ], [ 21.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 6.5 ], [ 21.5, 6.0 ], [ 21.0, 6.0 ], [ 21.0, 6.5 ], [ 21.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 6.5 ], [ 22.0, 6.0 ], [ 21.5, 6.0 ], [ 21.5, 6.5 ], [ 22.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 6.5 ], [ 22.5, 6.0 ], [ 22.0, 6.0 ], [ 22.0, 6.5 ], [ 22.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 6.5 ], [ 23.0, 6.0 ], [ 22.5, 6.0 ], [ 22.5, 6.5 ], [ 23.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 6.5 ], [ 23.5, 6.0 ], [ 23.0, 6.0 ], [ 23.0, 6.5 ], [ 23.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 6.5 ], [ 24.0, 6.0 ], [ 23.5, 6.0 ], [ 23.5, 6.5 ], [ 24.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 6.5 ], [ 24.5, 6.0 ], [ 24.0, 6.0 ], [ 24.0, 6.5 ], [ 24.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 6.5 ], [ 25.0, 6.0 ], [ 24.5, 6.0 ], [ 24.5, 6.5 ], [ 25.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 6.5 ], [ 25.5, 6.0 ], [ 25.0, 6.0 ], [ 25.0, 6.5 ], [ 25.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 6.5 ], [ 26.0, 6.0 ], [ 25.5, 6.0 ], [ 25.5, 6.5 ], [ 26.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 6.5 ], [ 26.5, 6.0 ], [ 26.0, 6.0 ], [ 26.0, 6.5 ], [ 26.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 6.5 ], [ 27.0, 6.0 ], [ 26.5, 6.0 ], [ 26.5, 6.5 ], [ 27.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 6.5 ], [ 27.5, 6.0 ], [ 27.0, 6.0 ], [ 27.0, 6.5 ], [ 27.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 6.5 ], [ 28.0, 6.0 ], [ 27.5, 6.0 ], [ 27.5, 6.5 ], [ 28.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 6.5 ], [ 28.5, 6.0 ], [ 28.0, 6.0 ], [ 28.0, 6.5 ], [ 28.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 6.5 ], [ 29.0, 6.0 ], [ 28.5, 6.0 ], [ 28.5, 6.5 ], [ 29.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 6.5 ], [ 29.5, 6.0 ], [ 29.0, 6.0 ], [ 29.0, 6.5 ], [ 29.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 6.5 ], [ 30.0, 6.0 ], [ 29.5, 6.0 ], [ 29.5, 6.5 ], [ 30.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 6.5 ], [ 30.5, 6.0 ], [ 30.0, 6.0 ], [ 30.0, 6.5 ], [ 30.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 6.5 ], [ 31.0, 6.0 ], [ 30.5, 6.0 ], [ 30.5, 6.5 ], [ 31.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 6.5 ], [ 31.5, 6.0 ], [ 31.0, 6.0 ], [ 31.0, 6.5 ], [ 31.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 6.5 ], [ 32.0, 6.0 ], [ 31.5, 6.0 ], [ 31.5, 6.5 ], [ 32.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 6.5 ], [ 32.5, 6.0 ], [ 32.0, 6.0 ], [ 32.0, 6.5 ], [ 32.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 6.5 ], [ 33.0, 6.0 ], [ 32.5, 6.0 ], [ 32.5, 6.5 ], [ 33.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 6.5 ], [ 33.5, 6.0 ], [ 33.0, 6.0 ], [ 33.0, 6.5 ], [ 33.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 6.5 ], [ 34.0, 6.0 ], [ 33.5, 6.0 ], [ 33.5, 6.5 ], [ 34.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 6.5 ], [ 34.5, 6.0 ], [ 34.0, 6.0 ], [ 34.0, 6.5 ], [ 34.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 6.5 ], [ 35.0, 6.0 ], [ 34.5, 6.0 ], [ 34.5, 6.5 ], [ 35.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 6.5 ], [ 35.5, 6.0 ], [ 35.0, 6.0 ], [ 35.0, 6.5 ], [ 35.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 6.5 ], [ 36.0, 6.0 ], [ 35.5, 6.0 ], [ 35.5, 6.5 ], [ 36.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 6.5 ], [ 36.5, 6.0 ], [ 36.0, 6.0 ], [ 36.0, 6.5 ], [ 36.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 6.5 ], [ 37.0, 6.0 ], [ 36.5, 6.0 ], [ 36.5, 6.5 ], [ 37.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 6.5 ], [ 37.5, 6.0 ], [ 37.0, 6.0 ], [ 37.0, 6.5 ], [ 37.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 6.5 ], [ 38.0, 6.0 ], [ 37.5, 6.0 ], [ 37.5, 6.5 ], [ 38.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 6.5 ], [ 38.5, 6.0 ], [ 38.0, 6.0 ], [ 38.0, 6.5 ], [ 38.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 6.5 ], [ 39.0, 6.0 ], [ 38.5, 6.0 ], [ 38.5, 6.5 ], [ 39.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 6.5 ], [ 39.5, 6.0 ], [ 39.0, 6.0 ], [ 39.0, 6.5 ], [ 39.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 6.5 ], [ 40.0, 6.0 ], [ 39.5, 6.0 ], [ 39.5, 6.5 ], [ 40.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 6.5 ], [ 40.5, 6.0 ], [ 40.0, 6.0 ], [ 40.0, 6.5 ], [ 40.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 6.5 ], [ 41.0, 6.0 ], [ 40.5, 6.0 ], [ 40.5, 6.5 ], [ 41.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 6.5 ], [ 41.5, 6.0 ], [ 41.0, 6.0 ], [ 41.0, 6.5 ], [ 41.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 6.5 ], [ 42.0, 6.0 ], [ 41.5, 6.0 ], [ 41.5, 6.5 ], [ 42.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 6.5 ], [ 42.5, 6.0 ], [ 42.0, 6.0 ], [ 42.0, 6.5 ], [ 42.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 6.5 ], [ 43.0, 6.0 ], [ 42.5, 6.0 ], [ 42.5, 6.5 ], [ 43.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 6.5 ], [ 43.5, 6.0 ], [ 43.0, 6.0 ], [ 43.0, 6.5 ], [ 43.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 6.5 ], [ 44.0, 6.0 ], [ 43.5, 6.0 ], [ 43.5, 6.5 ], [ 44.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 6.5 ], [ 44.5, 6.0 ], [ 44.0, 6.0 ], [ 44.0, 6.5 ], [ 44.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 6.5 ], [ 45.0, 6.0 ], [ 44.5, 6.0 ], [ 44.5, 6.5 ], [ 45.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, 6.5 ], [ 45.5, 6.0 ], [ 45.0, 6.0 ], [ 45.0, 6.5 ], [ 45.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 6.5 ], [ 46.0, 6.0 ], [ 45.5, 6.0 ], [ 45.5, 6.5 ], [ 46.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, 6.5 ], [ 46.5, 6.0 ], [ 46.0, 6.0 ], [ 46.0, 6.5 ], [ 46.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, 6.5 ], [ 47.0, 6.0 ], [ 46.5, 6.0 ], [ 46.5, 6.5 ], [ 47.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, 6.5 ], [ 47.5, 6.0 ], [ 47.0, 6.0 ], [ 47.0, 6.5 ], [ 47.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, 6.5 ], [ 48.0, 6.0 ], [ 47.5, 6.0 ], [ 47.5, 6.5 ], [ 48.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, 6.5 ], [ 48.5, 6.0 ], [ 48.0, 6.0 ], [ 48.0, 6.5 ], [ 48.5, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, 6.5 ], [ 49.0, 6.0 ], [ 48.5, 6.0 ], [ 48.5, 6.5 ], [ 49.0, 6.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 7.0 ], [ -11.0, 6.5 ], [ -11.5, 6.5 ], [ -11.5, 7.0 ], [ -11.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 7.0 ], [ -10.5, 6.5 ], [ -11.0, 6.5 ], [ -11.0, 7.0 ], [ -10.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 7.0 ], [ -10.0, 6.5 ], [ -10.5, 6.5 ], [ -10.5, 7.0 ], [ -10.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 7.0 ], [ -9.5, 6.5 ], [ -10.0, 6.5 ], [ -10.0, 7.0 ], [ -9.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 7.0 ], [ -9.0, 6.5 ], [ -9.5, 6.5 ], [ -9.5, 7.0 ], [ -9.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 7.0 ], [ -8.5, 6.5 ], [ -9.0, 6.5 ], [ -9.0, 7.0 ], [ -8.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 7.0 ], [ -8.0, 6.5 ], [ -8.5, 6.5 ], [ -8.5, 7.0 ], [ -8.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 7.0 ], [ -7.5, 6.5 ], [ -8.0, 6.5 ], [ -8.0, 7.0 ], [ -7.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 7.0 ], [ -7.0, 6.5 ], [ -7.5, 6.5 ], [ -7.5, 7.0 ], [ -7.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 7.0 ], [ -6.5, 6.5 ], [ -7.0, 6.5 ], [ -7.0, 7.0 ], [ -6.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 7.0 ], [ -6.0, 6.5 ], [ -6.5, 6.5 ], [ -6.5, 7.0 ], [ -6.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 7.0 ], [ -5.5, 6.5 ], [ -6.0, 6.5 ], [ -6.0, 7.0 ], [ -5.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 7.0 ], [ -5.0, 6.5 ], [ -5.5, 6.5 ], [ -5.5, 7.0 ], [ -5.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 7.0 ], [ -4.5, 6.5 ], [ -5.0, 6.5 ], [ -5.0, 7.0 ], [ -4.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 7.0 ], [ -4.0, 6.5 ], [ -4.5, 6.5 ], [ -4.5, 7.0 ], [ -4.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 7.0 ], [ -3.5, 6.5 ], [ -4.0, 6.5 ], [ -4.0, 7.0 ], [ -3.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 7.0 ], [ -3.0, 6.5 ], [ -3.5, 6.5 ], [ -3.5, 7.0 ], [ -3.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 7.0 ], [ -2.5, 6.5 ], [ -3.0, 6.5 ], [ -3.0, 7.0 ], [ -2.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 7.0 ], [ -2.0, 6.5 ], [ -2.5, 6.5 ], [ -2.5, 7.0 ], [ -2.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 7.0 ], [ -1.5, 6.5 ], [ -2.0, 6.5 ], [ -2.0, 7.0 ], [ -1.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 7.0 ], [ -1.0, 6.5 ], [ -1.5, 6.5 ], [ -1.5, 7.0 ], [ -1.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 7.0 ], [ -0.5, 6.5 ], [ -1.0, 6.5 ], [ -1.0, 7.0 ], [ -0.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 7.0 ], [ 0.0, 6.5 ], [ -0.5, 6.5 ], [ -0.5, 7.0 ], [ 0.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 7.0 ], [ 0.5, 6.5 ], [ 0.0, 6.5 ], [ 0.0, 7.0 ], [ 0.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 7.0 ], [ 1.0, 6.5 ], [ 0.5, 6.5 ], [ 0.5, 7.0 ], [ 1.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 7.0 ], [ 1.5, 6.5 ], [ 1.0, 6.5 ], [ 1.0, 7.0 ], [ 1.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 7.0 ], [ 2.0, 6.5 ], [ 1.5, 6.5 ], [ 1.5, 7.0 ], [ 2.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 7.0 ], [ 2.5, 6.5 ], [ 2.0, 6.5 ], [ 2.0, 7.0 ], [ 2.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 7.0 ], [ 3.0, 6.5 ], [ 2.5, 6.5 ], [ 2.5, 7.0 ], [ 3.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 7.0 ], [ 3.5, 6.5 ], [ 3.0, 6.5 ], [ 3.0, 7.0 ], [ 3.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 7.0 ], [ 4.0, 6.5 ], [ 3.5, 6.5 ], [ 3.5, 7.0 ], [ 4.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 7.0 ], [ 4.5, 6.5 ], [ 4.0, 6.5 ], [ 4.0, 7.0 ], [ 4.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 7.0 ], [ 5.0, 6.5 ], [ 4.5, 6.5 ], [ 4.5, 7.0 ], [ 5.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 7.0 ], [ 5.5, 6.5 ], [ 5.0, 6.5 ], [ 5.0, 7.0 ], [ 5.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 7.0 ], [ 6.0, 6.5 ], [ 5.5, 6.5 ], [ 5.5, 7.0 ], [ 6.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 7.0 ], [ 6.5, 6.5 ], [ 6.0, 6.5 ], [ 6.0, 7.0 ], [ 6.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 7.0 ], [ 7.0, 6.5 ], [ 6.5, 6.5 ], [ 6.5, 7.0 ], [ 7.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 7.0 ], [ 7.5, 6.5 ], [ 7.0, 6.5 ], [ 7.0, 7.0 ], [ 7.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 7.0 ], [ 8.0, 6.5 ], [ 7.5, 6.5 ], [ 7.5, 7.0 ], [ 8.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 7.0 ], [ 8.5, 6.5 ], [ 8.0, 6.5 ], [ 8.0, 7.0 ], [ 8.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 7.0 ], [ 9.0, 6.5 ], [ 8.5, 6.5 ], [ 8.5, 7.0 ], [ 9.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 7.0 ], [ 9.5, 6.5 ], [ 9.0, 6.5 ], [ 9.0, 7.0 ], [ 9.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 7.0 ], [ 10.0, 6.5 ], [ 9.5, 6.5 ], [ 9.5, 7.0 ], [ 10.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 7.0 ], [ 10.5, 6.5 ], [ 10.0, 6.5 ], [ 10.0, 7.0 ], [ 10.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 7.0 ], [ 11.0, 6.5 ], [ 10.5, 6.5 ], [ 10.5, 7.0 ], [ 11.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 7.0 ], [ 11.5, 6.5 ], [ 11.0, 6.5 ], [ 11.0, 7.0 ], [ 11.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 7.0 ], [ 12.0, 6.5 ], [ 11.5, 6.5 ], [ 11.5, 7.0 ], [ 12.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 7.0 ], [ 12.5, 6.5 ], [ 12.0, 6.5 ], [ 12.0, 7.0 ], [ 12.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 7.0 ], [ 13.0, 6.5 ], [ 12.5, 6.5 ], [ 12.5, 7.0 ], [ 13.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 7.0 ], [ 13.5, 6.5 ], [ 13.0, 6.5 ], [ 13.0, 7.0 ], [ 13.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 7.0 ], [ 14.0, 6.5 ], [ 13.5, 6.5 ], [ 13.5, 7.0 ], [ 14.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 7.0 ], [ 14.5, 6.5 ], [ 14.0, 6.5 ], [ 14.0, 7.0 ], [ 14.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 7.0 ], [ 15.0, 6.5 ], [ 14.5, 6.5 ], [ 14.5, 7.0 ], [ 15.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 7.0 ], [ 15.5, 6.5 ], [ 15.0, 6.5 ], [ 15.0, 7.0 ], [ 15.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 7.0 ], [ 16.0, 6.5 ], [ 15.5, 6.5 ], [ 15.5, 7.0 ], [ 16.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 7.0 ], [ 16.5, 6.5 ], [ 16.0, 6.5 ], [ 16.0, 7.0 ], [ 16.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 7.0 ], [ 17.0, 6.5 ], [ 16.5, 6.5 ], [ 16.5, 7.0 ], [ 17.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 7.0 ], [ 17.5, 6.5 ], [ 17.0, 6.5 ], [ 17.0, 7.0 ], [ 17.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 7.0 ], [ 18.0, 6.5 ], [ 17.5, 6.5 ], [ 17.5, 7.0 ], [ 18.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 7.0 ], [ 18.5, 6.5 ], [ 18.0, 6.5 ], [ 18.0, 7.0 ], [ 18.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 7.0 ], [ 19.0, 6.5 ], [ 18.5, 6.5 ], [ 18.5, 7.0 ], [ 19.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 7.0 ], [ 19.5, 6.5 ], [ 19.0, 6.5 ], [ 19.0, 7.0 ], [ 19.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 7.0 ], [ 20.0, 6.5 ], [ 19.5, 6.5 ], [ 19.5, 7.0 ], [ 20.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 7.0 ], [ 20.5, 6.5 ], [ 20.0, 6.5 ], [ 20.0, 7.0 ], [ 20.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 7.0 ], [ 21.0, 6.5 ], [ 20.5, 6.5 ], [ 20.5, 7.0 ], [ 21.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 7.0 ], [ 21.5, 6.5 ], [ 21.0, 6.5 ], [ 21.0, 7.0 ], [ 21.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 7.0 ], [ 22.0, 6.5 ], [ 21.5, 6.5 ], [ 21.5, 7.0 ], [ 22.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 7.0 ], [ 22.5, 6.5 ], [ 22.0, 6.5 ], [ 22.0, 7.0 ], [ 22.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 7.0 ], [ 23.0, 6.5 ], [ 22.5, 6.5 ], [ 22.5, 7.0 ], [ 23.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 7.0 ], [ 23.5, 6.5 ], [ 23.0, 6.5 ], [ 23.0, 7.0 ], [ 23.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 7.0 ], [ 24.0, 6.5 ], [ 23.5, 6.5 ], [ 23.5, 7.0 ], [ 24.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 7.0 ], [ 24.5, 6.5 ], [ 24.0, 6.5 ], [ 24.0, 7.0 ], [ 24.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 7.0 ], [ 25.0, 6.5 ], [ 24.5, 6.5 ], [ 24.5, 7.0 ], [ 25.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 7.0 ], [ 25.5, 6.5 ], [ 25.0, 6.5 ], [ 25.0, 7.0 ], [ 25.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 7.0 ], [ 26.0, 6.5 ], [ 25.5, 6.5 ], [ 25.5, 7.0 ], [ 26.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 7.0 ], [ 26.5, 6.5 ], [ 26.0, 6.5 ], [ 26.0, 7.0 ], [ 26.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 7.0 ], [ 27.0, 6.5 ], [ 26.5, 6.5 ], [ 26.5, 7.0 ], [ 27.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 7.0 ], [ 27.5, 6.5 ], [ 27.0, 6.5 ], [ 27.0, 7.0 ], [ 27.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 7.0 ], [ 28.0, 6.5 ], [ 27.5, 6.5 ], [ 27.5, 7.0 ], [ 28.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 7.0 ], [ 28.5, 6.5 ], [ 28.0, 6.5 ], [ 28.0, 7.0 ], [ 28.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 7.0 ], [ 29.0, 6.5 ], [ 28.5, 6.5 ], [ 28.5, 7.0 ], [ 29.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 7.0 ], [ 29.5, 6.5 ], [ 29.0, 6.5 ], [ 29.0, 7.0 ], [ 29.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 7.0 ], [ 30.0, 6.5 ], [ 29.5, 6.5 ], [ 29.5, 7.0 ], [ 30.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 7.0 ], [ 30.5, 6.5 ], [ 30.0, 6.5 ], [ 30.0, 7.0 ], [ 30.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 7.0 ], [ 31.0, 6.5 ], [ 30.5, 6.5 ], [ 30.5, 7.0 ], [ 31.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 7.0 ], [ 31.5, 6.5 ], [ 31.0, 6.5 ], [ 31.0, 7.0 ], [ 31.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 7.0 ], [ 32.0, 6.5 ], [ 31.5, 6.5 ], [ 31.5, 7.0 ], [ 32.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 7.0 ], [ 32.5, 6.5 ], [ 32.0, 6.5 ], [ 32.0, 7.0 ], [ 32.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 7.0 ], [ 33.0, 6.5 ], [ 32.5, 6.5 ], [ 32.5, 7.0 ], [ 33.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 7.0 ], [ 33.5, 6.5 ], [ 33.0, 6.5 ], [ 33.0, 7.0 ], [ 33.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 7.0 ], [ 34.0, 6.5 ], [ 33.5, 6.5 ], [ 33.5, 7.0 ], [ 34.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 7.0 ], [ 34.5, 6.5 ], [ 34.0, 6.5 ], [ 34.0, 7.0 ], [ 34.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 7.0 ], [ 35.0, 6.5 ], [ 34.5, 6.5 ], [ 34.5, 7.0 ], [ 35.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 7.0 ], [ 35.5, 6.5 ], [ 35.0, 6.5 ], [ 35.0, 7.0 ], [ 35.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 7.0 ], [ 36.0, 6.5 ], [ 35.5, 6.5 ], [ 35.5, 7.0 ], [ 36.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 7.0 ], [ 36.5, 6.5 ], [ 36.0, 6.5 ], [ 36.0, 7.0 ], [ 36.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 7.0 ], [ 37.0, 6.5 ], [ 36.5, 6.5 ], [ 36.5, 7.0 ], [ 37.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 7.0 ], [ 37.5, 6.5 ], [ 37.0, 6.5 ], [ 37.0, 7.0 ], [ 37.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 7.0 ], [ 38.0, 6.5 ], [ 37.5, 6.5 ], [ 37.5, 7.0 ], [ 38.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 7.0 ], [ 38.5, 6.5 ], [ 38.0, 6.5 ], [ 38.0, 7.0 ], [ 38.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 7.0 ], [ 39.0, 6.5 ], [ 38.5, 6.5 ], [ 38.5, 7.0 ], [ 39.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 7.0 ], [ 39.5, 6.5 ], [ 39.0, 6.5 ], [ 39.0, 7.0 ], [ 39.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 7.0 ], [ 40.0, 6.5 ], [ 39.5, 6.5 ], [ 39.5, 7.0 ], [ 40.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 7.0 ], [ 40.5, 6.5 ], [ 40.0, 6.5 ], [ 40.0, 7.0 ], [ 40.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 7.0 ], [ 41.0, 6.5 ], [ 40.5, 6.5 ], [ 40.5, 7.0 ], [ 41.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 7.0 ], [ 41.5, 6.5 ], [ 41.0, 6.5 ], [ 41.0, 7.0 ], [ 41.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 7.0 ], [ 42.0, 6.5 ], [ 41.5, 6.5 ], [ 41.5, 7.0 ], [ 42.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 7.0 ], [ 42.5, 6.5 ], [ 42.0, 6.5 ], [ 42.0, 7.0 ], [ 42.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 7.0 ], [ 43.0, 6.5 ], [ 42.5, 6.5 ], [ 42.5, 7.0 ], [ 43.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 7.0 ], [ 43.5, 6.5 ], [ 43.0, 6.5 ], [ 43.0, 7.0 ], [ 43.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 7.0 ], [ 44.0, 6.5 ], [ 43.5, 6.5 ], [ 43.5, 7.0 ], [ 44.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 7.0 ], [ 44.5, 6.5 ], [ 44.0, 6.5 ], [ 44.0, 7.0 ], [ 44.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 7.0 ], [ 45.0, 6.5 ], [ 44.5, 6.5 ], [ 44.5, 7.0 ], [ 45.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, 7.0 ], [ 45.5, 6.5 ], [ 45.0, 6.5 ], [ 45.0, 7.0 ], [ 45.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 7.0 ], [ 46.0, 6.5 ], [ 45.5, 6.5 ], [ 45.5, 7.0 ], [ 46.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, 7.0 ], [ 46.5, 6.5 ], [ 46.0, 6.5 ], [ 46.0, 7.0 ], [ 46.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, 7.0 ], [ 47.0, 6.5 ], [ 46.5, 6.5 ], [ 46.5, 7.0 ], [ 47.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, 7.0 ], [ 47.5, 6.5 ], [ 47.0, 6.5 ], [ 47.0, 7.0 ], [ 47.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, 7.0 ], [ 48.0, 6.5 ], [ 47.5, 6.5 ], [ 47.5, 7.0 ], [ 48.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, 7.0 ], [ 48.5, 6.5 ], [ 48.0, 6.5 ], [ 48.0, 7.0 ], [ 48.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, 7.0 ], [ 49.0, 6.5 ], [ 48.5, 6.5 ], [ 48.5, 7.0 ], [ 49.0, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, 7.0 ], [ 49.5, 6.5 ], [ 49.0, 6.5 ], [ 49.0, 7.0 ], [ 49.5, 7.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 7.5 ], [ -11.5, 7.0 ], [ -12.0, 7.0 ], [ -12.0, 7.5 ], [ -11.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 7.5 ], [ -11.0, 7.0 ], [ -11.5, 7.0 ], [ -11.5, 7.5 ], [ -11.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 7.5 ], [ -10.5, 7.0 ], [ -11.0, 7.0 ], [ -11.0, 7.5 ], [ -10.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 7.5 ], [ -10.0, 7.0 ], [ -10.5, 7.0 ], [ -10.5, 7.5 ], [ -10.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 7.5 ], [ -9.5, 7.0 ], [ -10.0, 7.0 ], [ -10.0, 7.5 ], [ -9.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 7.5 ], [ -9.0, 7.0 ], [ -9.5, 7.0 ], [ -9.5, 7.5 ], [ -9.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 7.5 ], [ -8.5, 7.0 ], [ -9.0, 7.0 ], [ -9.0, 7.5 ], [ -8.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 7.5 ], [ -8.0, 7.0 ], [ -8.5, 7.0 ], [ -8.5, 7.5 ], [ -8.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 7.5 ], [ -7.5, 7.0 ], [ -8.0, 7.0 ], [ -8.0, 7.5 ], [ -7.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 7.5 ], [ -7.0, 7.0 ], [ -7.5, 7.0 ], [ -7.5, 7.5 ], [ -7.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 7.5 ], [ -6.5, 7.0 ], [ -7.0, 7.0 ], [ -7.0, 7.5 ], [ -6.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 7.5 ], [ -6.0, 7.0 ], [ -6.5, 7.0 ], [ -6.5, 7.5 ], [ -6.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 7.5 ], [ -5.5, 7.0 ], [ -6.0, 7.0 ], [ -6.0, 7.5 ], [ -5.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 7.5 ], [ -5.0, 7.0 ], [ -5.5, 7.0 ], [ -5.5, 7.5 ], [ -5.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 7.5 ], [ -4.5, 7.0 ], [ -5.0, 7.0 ], [ -5.0, 7.5 ], [ -4.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 7.5 ], [ -4.0, 7.0 ], [ -4.5, 7.0 ], [ -4.5, 7.5 ], [ -4.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 7.5 ], [ -3.5, 7.0 ], [ -4.0, 7.0 ], [ -4.0, 7.5 ], [ -3.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 7.5 ], [ -3.0, 7.0 ], [ -3.5, 7.0 ], [ -3.5, 7.5 ], [ -3.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 7.5 ], [ -2.5, 7.0 ], [ -3.0, 7.0 ], [ -3.0, 7.5 ], [ -2.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 7.5 ], [ -2.0, 7.0 ], [ -2.5, 7.0 ], [ -2.5, 7.5 ], [ -2.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 7.5 ], [ -1.5, 7.0 ], [ -2.0, 7.0 ], [ -2.0, 7.5 ], [ -1.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 7.5 ], [ -1.0, 7.0 ], [ -1.5, 7.0 ], [ -1.5, 7.5 ], [ -1.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 7.5 ], [ -0.5, 7.0 ], [ -1.0, 7.0 ], [ -1.0, 7.5 ], [ -0.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 7.5 ], [ 0.0, 7.0 ], [ -0.5, 7.0 ], [ -0.5, 7.5 ], [ 0.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 7.5 ], [ 0.5, 7.0 ], [ 0.0, 7.0 ], [ 0.0, 7.5 ], [ 0.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 7.5 ], [ 1.0, 7.0 ], [ 0.5, 7.0 ], [ 0.5, 7.5 ], [ 1.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 7.5 ], [ 1.5, 7.0 ], [ 1.0, 7.0 ], [ 1.0, 7.5 ], [ 1.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 7.5 ], [ 2.0, 7.0 ], [ 1.5, 7.0 ], [ 1.5, 7.5 ], [ 2.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 7.5 ], [ 2.5, 7.0 ], [ 2.0, 7.0 ], [ 2.0, 7.5 ], [ 2.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 7.5 ], [ 3.0, 7.0 ], [ 2.5, 7.0 ], [ 2.5, 7.5 ], [ 3.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 7.5 ], [ 3.5, 7.0 ], [ 3.0, 7.0 ], [ 3.0, 7.5 ], [ 3.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 7.5 ], [ 4.0, 7.0 ], [ 3.5, 7.0 ], [ 3.5, 7.5 ], [ 4.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 7.5 ], [ 4.5, 7.0 ], [ 4.0, 7.0 ], [ 4.0, 7.5 ], [ 4.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 7.5 ], [ 5.0, 7.0 ], [ 4.5, 7.0 ], [ 4.5, 7.5 ], [ 5.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 7.5 ], [ 5.5, 7.0 ], [ 5.0, 7.0 ], [ 5.0, 7.5 ], [ 5.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 7.5 ], [ 6.0, 7.0 ], [ 5.5, 7.0 ], [ 5.5, 7.5 ], [ 6.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 7.5 ], [ 6.5, 7.0 ], [ 6.0, 7.0 ], [ 6.0, 7.5 ], [ 6.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 7.5 ], [ 7.0, 7.0 ], [ 6.5, 7.0 ], [ 6.5, 7.5 ], [ 7.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 7.5 ], [ 7.5, 7.0 ], [ 7.0, 7.0 ], [ 7.0, 7.5 ], [ 7.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 7.5 ], [ 8.0, 7.0 ], [ 7.5, 7.0 ], [ 7.5, 7.5 ], [ 8.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 7.5 ], [ 8.5, 7.0 ], [ 8.0, 7.0 ], [ 8.0, 7.5 ], [ 8.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 7.5 ], [ 9.0, 7.0 ], [ 8.5, 7.0 ], [ 8.5, 7.5 ], [ 9.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 7.5 ], [ 9.5, 7.0 ], [ 9.0, 7.0 ], [ 9.0, 7.5 ], [ 9.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 7.5 ], [ 10.0, 7.0 ], [ 9.5, 7.0 ], [ 9.5, 7.5 ], [ 10.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 7.5 ], [ 10.5, 7.0 ], [ 10.0, 7.0 ], [ 10.0, 7.5 ], [ 10.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 7.5 ], [ 11.0, 7.0 ], [ 10.5, 7.0 ], [ 10.5, 7.5 ], [ 11.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 7.5 ], [ 11.5, 7.0 ], [ 11.0, 7.0 ], [ 11.0, 7.5 ], [ 11.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 7.5 ], [ 12.0, 7.0 ], [ 11.5, 7.0 ], [ 11.5, 7.5 ], [ 12.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 7.5 ], [ 12.5, 7.0 ], [ 12.0, 7.0 ], [ 12.0, 7.5 ], [ 12.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 7.5 ], [ 13.0, 7.0 ], [ 12.5, 7.0 ], [ 12.5, 7.5 ], [ 13.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 7.5 ], [ 13.5, 7.0 ], [ 13.0, 7.0 ], [ 13.0, 7.5 ], [ 13.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 7.5 ], [ 14.0, 7.0 ], [ 13.5, 7.0 ], [ 13.5, 7.5 ], [ 14.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 7.5 ], [ 14.5, 7.0 ], [ 14.0, 7.0 ], [ 14.0, 7.5 ], [ 14.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 7.5 ], [ 15.0, 7.0 ], [ 14.5, 7.0 ], [ 14.5, 7.5 ], [ 15.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 7.5 ], [ 15.5, 7.0 ], [ 15.0, 7.0 ], [ 15.0, 7.5 ], [ 15.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 7.5 ], [ 16.0, 7.0 ], [ 15.5, 7.0 ], [ 15.5, 7.5 ], [ 16.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 7.5 ], [ 16.5, 7.0 ], [ 16.0, 7.0 ], [ 16.0, 7.5 ], [ 16.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 7.5 ], [ 17.0, 7.0 ], [ 16.5, 7.0 ], [ 16.5, 7.5 ], [ 17.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 7.5 ], [ 17.5, 7.0 ], [ 17.0, 7.0 ], [ 17.0, 7.5 ], [ 17.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 7.5 ], [ 18.0, 7.0 ], [ 17.5, 7.0 ], [ 17.5, 7.5 ], [ 18.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 7.5 ], [ 18.5, 7.0 ], [ 18.0, 7.0 ], [ 18.0, 7.5 ], [ 18.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 7.5 ], [ 19.0, 7.0 ], [ 18.5, 7.0 ], [ 18.5, 7.5 ], [ 19.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 7.5 ], [ 19.5, 7.0 ], [ 19.0, 7.0 ], [ 19.0, 7.5 ], [ 19.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 7.5 ], [ 20.0, 7.0 ], [ 19.5, 7.0 ], [ 19.5, 7.5 ], [ 20.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 7.5 ], [ 20.5, 7.0 ], [ 20.0, 7.0 ], [ 20.0, 7.5 ], [ 20.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 7.5 ], [ 21.0, 7.0 ], [ 20.5, 7.0 ], [ 20.5, 7.5 ], [ 21.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 7.5 ], [ 21.5, 7.0 ], [ 21.0, 7.0 ], [ 21.0, 7.5 ], [ 21.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 7.5 ], [ 22.0, 7.0 ], [ 21.5, 7.0 ], [ 21.5, 7.5 ], [ 22.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 7.5 ], [ 22.5, 7.0 ], [ 22.0, 7.0 ], [ 22.0, 7.5 ], [ 22.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 7.5 ], [ 23.0, 7.0 ], [ 22.5, 7.0 ], [ 22.5, 7.5 ], [ 23.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 7.5 ], [ 23.5, 7.0 ], [ 23.0, 7.0 ], [ 23.0, 7.5 ], [ 23.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 7.5 ], [ 24.0, 7.0 ], [ 23.5, 7.0 ], [ 23.5, 7.5 ], [ 24.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 7.5 ], [ 24.5, 7.0 ], [ 24.0, 7.0 ], [ 24.0, 7.5 ], [ 24.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 7.5 ], [ 25.0, 7.0 ], [ 24.5, 7.0 ], [ 24.5, 7.5 ], [ 25.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 7.5 ], [ 25.5, 7.0 ], [ 25.0, 7.0 ], [ 25.0, 7.5 ], [ 25.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 7.5 ], [ 26.0, 7.0 ], [ 25.5, 7.0 ], [ 25.5, 7.5 ], [ 26.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 7.5 ], [ 26.5, 7.0 ], [ 26.0, 7.0 ], [ 26.0, 7.5 ], [ 26.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 7.5 ], [ 27.0, 7.0 ], [ 26.5, 7.0 ], [ 26.5, 7.5 ], [ 27.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 7.5 ], [ 27.5, 7.0 ], [ 27.0, 7.0 ], [ 27.0, 7.5 ], [ 27.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 7.5 ], [ 28.0, 7.0 ], [ 27.5, 7.0 ], [ 27.5, 7.5 ], [ 28.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 7.5 ], [ 28.5, 7.0 ], [ 28.0, 7.0 ], [ 28.0, 7.5 ], [ 28.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 7.5 ], [ 29.0, 7.0 ], [ 28.5, 7.0 ], [ 28.5, 7.5 ], [ 29.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 7.5 ], [ 29.5, 7.0 ], [ 29.0, 7.0 ], [ 29.0, 7.5 ], [ 29.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 7.5 ], [ 30.0, 7.0 ], [ 29.5, 7.0 ], [ 29.5, 7.5 ], [ 30.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 7.5 ], [ 30.5, 7.0 ], [ 30.0, 7.0 ], [ 30.0, 7.5 ], [ 30.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 7.5 ], [ 31.0, 7.0 ], [ 30.5, 7.0 ], [ 30.5, 7.5 ], [ 31.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 7.5 ], [ 31.5, 7.0 ], [ 31.0, 7.0 ], [ 31.0, 7.5 ], [ 31.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 7.5 ], [ 32.0, 7.0 ], [ 31.5, 7.0 ], [ 31.5, 7.5 ], [ 32.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 7.5 ], [ 32.5, 7.0 ], [ 32.0, 7.0 ], [ 32.0, 7.5 ], [ 32.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 7.5 ], [ 33.0, 7.0 ], [ 32.5, 7.0 ], [ 32.5, 7.5 ], [ 33.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 7.5 ], [ 33.5, 7.0 ], [ 33.0, 7.0 ], [ 33.0, 7.5 ], [ 33.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 7.5 ], [ 34.0, 7.0 ], [ 33.5, 7.0 ], [ 33.5, 7.5 ], [ 34.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 7.5 ], [ 34.5, 7.0 ], [ 34.0, 7.0 ], [ 34.0, 7.5 ], [ 34.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 7.5 ], [ 35.0, 7.0 ], [ 34.5, 7.0 ], [ 34.5, 7.5 ], [ 35.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 7.5 ], [ 35.5, 7.0 ], [ 35.0, 7.0 ], [ 35.0, 7.5 ], [ 35.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 7.5 ], [ 36.0, 7.0 ], [ 35.5, 7.0 ], [ 35.5, 7.5 ], [ 36.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 7.5 ], [ 36.5, 7.0 ], [ 36.0, 7.0 ], [ 36.0, 7.5 ], [ 36.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 7.5 ], [ 37.0, 7.0 ], [ 36.5, 7.0 ], [ 36.5, 7.5 ], [ 37.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 7.5 ], [ 37.5, 7.0 ], [ 37.0, 7.0 ], [ 37.0, 7.5 ], [ 37.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 7.5 ], [ 38.0, 7.0 ], [ 37.5, 7.0 ], [ 37.5, 7.5 ], [ 38.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 7.5 ], [ 38.5, 7.0 ], [ 38.0, 7.0 ], [ 38.0, 7.5 ], [ 38.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 7.5 ], [ 39.0, 7.0 ], [ 38.5, 7.0 ], [ 38.5, 7.5 ], [ 39.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 7.5 ], [ 39.5, 7.0 ], [ 39.0, 7.0 ], [ 39.0, 7.5 ], [ 39.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 7.5 ], [ 40.0, 7.0 ], [ 39.5, 7.0 ], [ 39.5, 7.5 ], [ 40.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 7.5 ], [ 40.5, 7.0 ], [ 40.0, 7.0 ], [ 40.0, 7.5 ], [ 40.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 7.5 ], [ 41.0, 7.0 ], [ 40.5, 7.0 ], [ 40.5, 7.5 ], [ 41.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 7.5 ], [ 41.5, 7.0 ], [ 41.0, 7.0 ], [ 41.0, 7.5 ], [ 41.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 7.5 ], [ 42.0, 7.0 ], [ 41.5, 7.0 ], [ 41.5, 7.5 ], [ 42.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 7.5 ], [ 42.5, 7.0 ], [ 42.0, 7.0 ], [ 42.0, 7.5 ], [ 42.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 7.5 ], [ 43.0, 7.0 ], [ 42.5, 7.0 ], [ 42.5, 7.5 ], [ 43.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 7.5 ], [ 43.5, 7.0 ], [ 43.0, 7.0 ], [ 43.0, 7.5 ], [ 43.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 7.5 ], [ 44.0, 7.0 ], [ 43.5, 7.0 ], [ 43.5, 7.5 ], [ 44.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 7.5 ], [ 44.5, 7.0 ], [ 44.0, 7.0 ], [ 44.0, 7.5 ], [ 44.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 7.5 ], [ 45.0, 7.0 ], [ 44.5, 7.0 ], [ 44.5, 7.5 ], [ 45.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, 7.5 ], [ 45.5, 7.0 ], [ 45.0, 7.0 ], [ 45.0, 7.5 ], [ 45.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 7.5 ], [ 46.0, 7.0 ], [ 45.5, 7.0 ], [ 45.5, 7.5 ], [ 46.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, 7.5 ], [ 46.5, 7.0 ], [ 46.0, 7.0 ], [ 46.0, 7.5 ], [ 46.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, 7.5 ], [ 47.0, 7.0 ], [ 46.5, 7.0 ], [ 46.5, 7.5 ], [ 47.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, 7.5 ], [ 47.5, 7.0 ], [ 47.0, 7.0 ], [ 47.0, 7.5 ], [ 47.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, 7.5 ], [ 48.0, 7.0 ], [ 47.5, 7.0 ], [ 47.5, 7.5 ], [ 48.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, 7.5 ], [ 48.5, 7.0 ], [ 48.0, 7.0 ], [ 48.0, 7.5 ], [ 48.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, 7.5 ], [ 49.0, 7.0 ], [ 48.5, 7.0 ], [ 48.5, 7.5 ], [ 49.0, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, 7.5 ], [ 49.5, 7.0 ], [ 49.0, 7.0 ], [ 49.0, 7.5 ], [ 49.5, 7.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 8.0 ], [ -12.0, 7.5 ], [ -12.5, 7.5 ], [ -12.5, 8.0 ], [ -12.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 8.0 ], [ -11.5, 7.5 ], [ -12.0, 7.5 ], [ -12.0, 8.0 ], [ -11.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 8.0 ], [ -11.0, 7.5 ], [ -11.5, 7.5 ], [ -11.5, 8.0 ], [ -11.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 8.0 ], [ -10.5, 7.5 ], [ -11.0, 7.5 ], [ -11.0, 8.0 ], [ -10.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 8.0 ], [ -10.0, 7.5 ], [ -10.5, 7.5 ], [ -10.5, 8.0 ], [ -10.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 8.0 ], [ -9.5, 7.5 ], [ -10.0, 7.5 ], [ -10.0, 8.0 ], [ -9.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 8.0 ], [ -9.0, 7.5 ], [ -9.5, 7.5 ], [ -9.5, 8.0 ], [ -9.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 8.0 ], [ -8.5, 7.5 ], [ -9.0, 7.5 ], [ -9.0, 8.0 ], [ -8.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 8.0 ], [ -8.0, 7.5 ], [ -8.5, 7.5 ], [ -8.5, 8.0 ], [ -8.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 8.0 ], [ -7.5, 7.5 ], [ -8.0, 7.5 ], [ -8.0, 8.0 ], [ -7.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 8.0 ], [ -7.0, 7.5 ], [ -7.5, 7.5 ], [ -7.5, 8.0 ], [ -7.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 8.0 ], [ -6.5, 7.5 ], [ -7.0, 7.5 ], [ -7.0, 8.0 ], [ -6.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 8.0 ], [ -6.0, 7.5 ], [ -6.5, 7.5 ], [ -6.5, 8.0 ], [ -6.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 8.0 ], [ -5.5, 7.5 ], [ -6.0, 7.5 ], [ -6.0, 8.0 ], [ -5.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 8.0 ], [ -5.0, 7.5 ], [ -5.5, 7.5 ], [ -5.5, 8.0 ], [ -5.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 8.0 ], [ -4.5, 7.5 ], [ -5.0, 7.5 ], [ -5.0, 8.0 ], [ -4.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 8.0 ], [ -4.0, 7.5 ], [ -4.5, 7.5 ], [ -4.5, 8.0 ], [ -4.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 8.0 ], [ -3.5, 7.5 ], [ -4.0, 7.5 ], [ -4.0, 8.0 ], [ -3.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 8.0 ], [ -3.0, 7.5 ], [ -3.5, 7.5 ], [ -3.5, 8.0 ], [ -3.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 8.0 ], [ -2.5, 7.5 ], [ -3.0, 7.5 ], [ -3.0, 8.0 ], [ -2.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 8.0 ], [ -2.0, 7.5 ], [ -2.5, 7.5 ], [ -2.5, 8.0 ], [ -2.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 8.0 ], [ -1.5, 7.5 ], [ -2.0, 7.5 ], [ -2.0, 8.0 ], [ -1.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 8.0 ], [ -1.0, 7.5 ], [ -1.5, 7.5 ], [ -1.5, 8.0 ], [ -1.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 8.0 ], [ -0.5, 7.5 ], [ -1.0, 7.5 ], [ -1.0, 8.0 ], [ -0.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 8.0 ], [ 0.0, 7.5 ], [ -0.5, 7.5 ], [ -0.5, 8.0 ], [ 0.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 8.0 ], [ 0.5, 7.5 ], [ 0.0, 7.5 ], [ 0.0, 8.0 ], [ 0.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 8.0 ], [ 1.0, 7.5 ], [ 0.5, 7.5 ], [ 0.5, 8.0 ], [ 1.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 8.0 ], [ 1.5, 7.5 ], [ 1.0, 7.5 ], [ 1.0, 8.0 ], [ 1.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 8.0 ], [ 2.0, 7.5 ], [ 1.5, 7.5 ], [ 1.5, 8.0 ], [ 2.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 8.0 ], [ 2.5, 7.5 ], [ 2.0, 7.5 ], [ 2.0, 8.0 ], [ 2.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 8.0 ], [ 3.0, 7.5 ], [ 2.5, 7.5 ], [ 2.5, 8.0 ], [ 3.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 8.0 ], [ 3.5, 7.5 ], [ 3.0, 7.5 ], [ 3.0, 8.0 ], [ 3.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 8.0 ], [ 4.0, 7.5 ], [ 3.5, 7.5 ], [ 3.5, 8.0 ], [ 4.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 8.0 ], [ 4.5, 7.5 ], [ 4.0, 7.5 ], [ 4.0, 8.0 ], [ 4.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 8.0 ], [ 5.0, 7.5 ], [ 4.5, 7.5 ], [ 4.5, 8.0 ], [ 5.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 8.0 ], [ 5.5, 7.5 ], [ 5.0, 7.5 ], [ 5.0, 8.0 ], [ 5.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 8.0 ], [ 6.0, 7.5 ], [ 5.5, 7.5 ], [ 5.5, 8.0 ], [ 6.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 8.0 ], [ 6.5, 7.5 ], [ 6.0, 7.5 ], [ 6.0, 8.0 ], [ 6.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 8.0 ], [ 7.0, 7.5 ], [ 6.5, 7.5 ], [ 6.5, 8.0 ], [ 7.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 8.0 ], [ 7.5, 7.5 ], [ 7.0, 7.5 ], [ 7.0, 8.0 ], [ 7.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 8.0 ], [ 8.0, 7.5 ], [ 7.5, 7.5 ], [ 7.5, 8.0 ], [ 8.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 8.0 ], [ 8.5, 7.5 ], [ 8.0, 7.5 ], [ 8.0, 8.0 ], [ 8.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 8.0 ], [ 9.0, 7.5 ], [ 8.5, 7.5 ], [ 8.5, 8.0 ], [ 9.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 8.0 ], [ 9.5, 7.5 ], [ 9.0, 7.5 ], [ 9.0, 8.0 ], [ 9.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 8.0 ], [ 10.0, 7.5 ], [ 9.5, 7.5 ], [ 9.5, 8.0 ], [ 10.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 8.0 ], [ 10.5, 7.5 ], [ 10.0, 7.5 ], [ 10.0, 8.0 ], [ 10.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 8.0 ], [ 11.0, 7.5 ], [ 10.5, 7.5 ], [ 10.5, 8.0 ], [ 11.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 8.0 ], [ 11.5, 7.5 ], [ 11.0, 7.5 ], [ 11.0, 8.0 ], [ 11.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 8.0 ], [ 12.0, 7.5 ], [ 11.5, 7.5 ], [ 11.5, 8.0 ], [ 12.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 8.0 ], [ 12.5, 7.5 ], [ 12.0, 7.5 ], [ 12.0, 8.0 ], [ 12.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 8.0 ], [ 13.0, 7.5 ], [ 12.5, 7.5 ], [ 12.5, 8.0 ], [ 13.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 8.0 ], [ 13.5, 7.5 ], [ 13.0, 7.5 ], [ 13.0, 8.0 ], [ 13.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 8.0 ], [ 14.0, 7.5 ], [ 13.5, 7.5 ], [ 13.5, 8.0 ], [ 14.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 8.0 ], [ 14.5, 7.5 ], [ 14.0, 7.5 ], [ 14.0, 8.0 ], [ 14.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 8.0 ], [ 15.0, 7.5 ], [ 14.5, 7.5 ], [ 14.5, 8.0 ], [ 15.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 8.0 ], [ 15.5, 7.5 ], [ 15.0, 7.5 ], [ 15.0, 8.0 ], [ 15.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 8.0 ], [ 16.0, 7.5 ], [ 15.5, 7.5 ], [ 15.5, 8.0 ], [ 16.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 8.0 ], [ 16.5, 7.5 ], [ 16.0, 7.5 ], [ 16.0, 8.0 ], [ 16.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 8.0 ], [ 17.0, 7.5 ], [ 16.5, 7.5 ], [ 16.5, 8.0 ], [ 17.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 8.0 ], [ 17.5, 7.5 ], [ 17.0, 7.5 ], [ 17.0, 8.0 ], [ 17.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 8.0 ], [ 18.0, 7.5 ], [ 17.5, 7.5 ], [ 17.5, 8.0 ], [ 18.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 8.0 ], [ 18.5, 7.5 ], [ 18.0, 7.5 ], [ 18.0, 8.0 ], [ 18.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 8.0 ], [ 19.0, 7.5 ], [ 18.5, 7.5 ], [ 18.5, 8.0 ], [ 19.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 8.0 ], [ 19.5, 7.5 ], [ 19.0, 7.5 ], [ 19.0, 8.0 ], [ 19.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 8.0 ], [ 20.0, 7.5 ], [ 19.5, 7.5 ], [ 19.5, 8.0 ], [ 20.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 8.0 ], [ 20.5, 7.5 ], [ 20.0, 7.5 ], [ 20.0, 8.0 ], [ 20.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 8.0 ], [ 21.0, 7.5 ], [ 20.5, 7.5 ], [ 20.5, 8.0 ], [ 21.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 8.0 ], [ 21.5, 7.5 ], [ 21.0, 7.5 ], [ 21.0, 8.0 ], [ 21.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 8.0 ], [ 22.0, 7.5 ], [ 21.5, 7.5 ], [ 21.5, 8.0 ], [ 22.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 8.0 ], [ 22.5, 7.5 ], [ 22.0, 7.5 ], [ 22.0, 8.0 ], [ 22.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 8.0 ], [ 23.0, 7.5 ], [ 22.5, 7.5 ], [ 22.5, 8.0 ], [ 23.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 8.0 ], [ 23.5, 7.5 ], [ 23.0, 7.5 ], [ 23.0, 8.0 ], [ 23.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 8.0 ], [ 24.0, 7.5 ], [ 23.5, 7.5 ], [ 23.5, 8.0 ], [ 24.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 8.0 ], [ 24.5, 7.5 ], [ 24.0, 7.5 ], [ 24.0, 8.0 ], [ 24.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 8.0 ], [ 25.0, 7.5 ], [ 24.5, 7.5 ], [ 24.5, 8.0 ], [ 25.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 8.0 ], [ 25.5, 7.5 ], [ 25.0, 7.5 ], [ 25.0, 8.0 ], [ 25.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 8.0 ], [ 26.0, 7.5 ], [ 25.5, 7.5 ], [ 25.5, 8.0 ], [ 26.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 8.0 ], [ 26.5, 7.5 ], [ 26.0, 7.5 ], [ 26.0, 8.0 ], [ 26.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 8.0 ], [ 27.0, 7.5 ], [ 26.5, 7.5 ], [ 26.5, 8.0 ], [ 27.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 8.0 ], [ 27.5, 7.5 ], [ 27.0, 7.5 ], [ 27.0, 8.0 ], [ 27.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 8.0 ], [ 28.0, 7.5 ], [ 27.5, 7.5 ], [ 27.5, 8.0 ], [ 28.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 8.0 ], [ 28.5, 7.5 ], [ 28.0, 7.5 ], [ 28.0, 8.0 ], [ 28.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 8.0 ], [ 29.0, 7.5 ], [ 28.5, 7.5 ], [ 28.5, 8.0 ], [ 29.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 8.0 ], [ 29.5, 7.5 ], [ 29.0, 7.5 ], [ 29.0, 8.0 ], [ 29.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 8.0 ], [ 30.0, 7.5 ], [ 29.5, 7.5 ], [ 29.5, 8.0 ], [ 30.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 8.0 ], [ 30.5, 7.5 ], [ 30.0, 7.5 ], [ 30.0, 8.0 ], [ 30.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 8.0 ], [ 31.0, 7.5 ], [ 30.5, 7.5 ], [ 30.5, 8.0 ], [ 31.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 8.0 ], [ 31.5, 7.5 ], [ 31.0, 7.5 ], [ 31.0, 8.0 ], [ 31.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 8.0 ], [ 32.0, 7.5 ], [ 31.5, 7.5 ], [ 31.5, 8.0 ], [ 32.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 8.0 ], [ 32.5, 7.5 ], [ 32.0, 7.5 ], [ 32.0, 8.0 ], [ 32.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 8.0 ], [ 33.0, 7.5 ], [ 32.5, 7.5 ], [ 32.5, 8.0 ], [ 33.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 8.0 ], [ 33.5, 7.5 ], [ 33.0, 7.5 ], [ 33.0, 8.0 ], [ 33.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 8.0 ], [ 34.0, 7.5 ], [ 33.5, 7.5 ], [ 33.5, 8.0 ], [ 34.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 8.0 ], [ 34.5, 7.5 ], [ 34.0, 7.5 ], [ 34.0, 8.0 ], [ 34.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 8.0 ], [ 35.0, 7.5 ], [ 34.5, 7.5 ], [ 34.5, 8.0 ], [ 35.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 8.0 ], [ 35.5, 7.5 ], [ 35.0, 7.5 ], [ 35.0, 8.0 ], [ 35.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 8.0 ], [ 36.0, 7.5 ], [ 35.5, 7.5 ], [ 35.5, 8.0 ], [ 36.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 8.0 ], [ 36.5, 7.5 ], [ 36.0, 7.5 ], [ 36.0, 8.0 ], [ 36.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 8.0 ], [ 37.0, 7.5 ], [ 36.5, 7.5 ], [ 36.5, 8.0 ], [ 37.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 8.0 ], [ 37.5, 7.5 ], [ 37.0, 7.5 ], [ 37.0, 8.0 ], [ 37.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 8.0 ], [ 38.0, 7.5 ], [ 37.5, 7.5 ], [ 37.5, 8.0 ], [ 38.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 8.0 ], [ 38.5, 7.5 ], [ 38.0, 7.5 ], [ 38.0, 8.0 ], [ 38.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 8.0 ], [ 39.0, 7.5 ], [ 38.5, 7.5 ], [ 38.5, 8.0 ], [ 39.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 8.0 ], [ 39.5, 7.5 ], [ 39.0, 7.5 ], [ 39.0, 8.0 ], [ 39.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 8.0 ], [ 40.0, 7.5 ], [ 39.5, 7.5 ], [ 39.5, 8.0 ], [ 40.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 8.0 ], [ 40.5, 7.5 ], [ 40.0, 7.5 ], [ 40.0, 8.0 ], [ 40.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 8.0 ], [ 41.0, 7.5 ], [ 40.5, 7.5 ], [ 40.5, 8.0 ], [ 41.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 8.0 ], [ 41.5, 7.5 ], [ 41.0, 7.5 ], [ 41.0, 8.0 ], [ 41.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 8.0 ], [ 42.0, 7.5 ], [ 41.5, 7.5 ], [ 41.5, 8.0 ], [ 42.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 8.0 ], [ 42.5, 7.5 ], [ 42.0, 7.5 ], [ 42.0, 8.0 ], [ 42.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 8.0 ], [ 43.0, 7.5 ], [ 42.5, 7.5 ], [ 42.5, 8.0 ], [ 43.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 8.0 ], [ 43.5, 7.5 ], [ 43.0, 7.5 ], [ 43.0, 8.0 ], [ 43.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 8.0 ], [ 44.0, 7.5 ], [ 43.5, 7.5 ], [ 43.5, 8.0 ], [ 44.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 8.0 ], [ 44.5, 7.5 ], [ 44.0, 7.5 ], [ 44.0, 8.0 ], [ 44.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 8.0 ], [ 45.0, 7.5 ], [ 44.5, 7.5 ], [ 44.5, 8.0 ], [ 45.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, 8.0 ], [ 45.5, 7.5 ], [ 45.0, 7.5 ], [ 45.0, 8.0 ], [ 45.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 8.0 ], [ 46.0, 7.5 ], [ 45.5, 7.5 ], [ 45.5, 8.0 ], [ 46.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, 8.0 ], [ 46.5, 7.5 ], [ 46.0, 7.5 ], [ 46.0, 8.0 ], [ 46.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, 8.0 ], [ 47.0, 7.5 ], [ 46.5, 7.5 ], [ 46.5, 8.0 ], [ 47.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, 8.0 ], [ 47.5, 7.5 ], [ 47.0, 7.5 ], [ 47.0, 8.0 ], [ 47.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, 8.0 ], [ 48.0, 7.5 ], [ 47.5, 7.5 ], [ 47.5, 8.0 ], [ 48.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, 8.0 ], [ 48.5, 7.5 ], [ 48.0, 7.5 ], [ 48.0, 8.0 ], [ 48.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, 8.0 ], [ 49.0, 7.5 ], [ 48.5, 7.5 ], [ 48.5, 8.0 ], [ 49.0, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, 8.0 ], [ 49.5, 7.5 ], [ 49.0, 7.5 ], [ 49.0, 8.0 ], [ 49.5, 8.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 8.5 ], [ -12.5, 8.0 ], [ -13.0, 8.0 ], [ -13.0, 8.5 ], [ -12.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 8.5 ], [ -12.0, 8.0 ], [ -12.5, 8.0 ], [ -12.5, 8.5 ], [ -12.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 8.5 ], [ -11.5, 8.0 ], [ -12.0, 8.0 ], [ -12.0, 8.5 ], [ -11.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 8.5 ], [ -11.0, 8.0 ], [ -11.5, 8.0 ], [ -11.5, 8.5 ], [ -11.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 8.5 ], [ -10.5, 8.0 ], [ -11.0, 8.0 ], [ -11.0, 8.5 ], [ -10.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 8.5 ], [ -10.0, 8.0 ], [ -10.5, 8.0 ], [ -10.5, 8.5 ], [ -10.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 8.5 ], [ -9.5, 8.0 ], [ -10.0, 8.0 ], [ -10.0, 8.5 ], [ -9.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 8.5 ], [ -9.0, 8.0 ], [ -9.5, 8.0 ], [ -9.5, 8.5 ], [ -9.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 8.5 ], [ -8.5, 8.0 ], [ -9.0, 8.0 ], [ -9.0, 8.5 ], [ -8.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 8.5 ], [ -8.0, 8.0 ], [ -8.5, 8.0 ], [ -8.5, 8.5 ], [ -8.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 8.5 ], [ -7.5, 8.0 ], [ -8.0, 8.0 ], [ -8.0, 8.5 ], [ -7.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 8.5 ], [ -7.0, 8.0 ], [ -7.5, 8.0 ], [ -7.5, 8.5 ], [ -7.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 8.5 ], [ -6.5, 8.0 ], [ -7.0, 8.0 ], [ -7.0, 8.5 ], [ -6.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 8.5 ], [ -6.0, 8.0 ], [ -6.5, 8.0 ], [ -6.5, 8.5 ], [ -6.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 8.5 ], [ -5.5, 8.0 ], [ -6.0, 8.0 ], [ -6.0, 8.5 ], [ -5.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 8.5 ], [ -5.0, 8.0 ], [ -5.5, 8.0 ], [ -5.5, 8.5 ], [ -5.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 8.5 ], [ -4.5, 8.0 ], [ -5.0, 8.0 ], [ -5.0, 8.5 ], [ -4.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 8.5 ], [ -4.0, 8.0 ], [ -4.5, 8.0 ], [ -4.5, 8.5 ], [ -4.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 8.5 ], [ -3.5, 8.0 ], [ -4.0, 8.0 ], [ -4.0, 8.5 ], [ -3.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 8.5 ], [ -3.0, 8.0 ], [ -3.5, 8.0 ], [ -3.5, 8.5 ], [ -3.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 8.5 ], [ -2.5, 8.0 ], [ -3.0, 8.0 ], [ -3.0, 8.5 ], [ -2.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 8.5 ], [ -2.0, 8.0 ], [ -2.5, 8.0 ], [ -2.5, 8.5 ], [ -2.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 8.5 ], [ -1.5, 8.0 ], [ -2.0, 8.0 ], [ -2.0, 8.5 ], [ -1.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 8.5 ], [ -1.0, 8.0 ], [ -1.5, 8.0 ], [ -1.5, 8.5 ], [ -1.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 8.5 ], [ -0.5, 8.0 ], [ -1.0, 8.0 ], [ -1.0, 8.5 ], [ -0.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 8.5 ], [ 0.0, 8.0 ], [ -0.5, 8.0 ], [ -0.5, 8.5 ], [ 0.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 8.5 ], [ 0.5, 8.0 ], [ 0.0, 8.0 ], [ 0.0, 8.5 ], [ 0.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 8.5 ], [ 1.0, 8.0 ], [ 0.5, 8.0 ], [ 0.5, 8.5 ], [ 1.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 8.5 ], [ 1.5, 8.0 ], [ 1.0, 8.0 ], [ 1.0, 8.5 ], [ 1.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 8.5 ], [ 2.0, 8.0 ], [ 1.5, 8.0 ], [ 1.5, 8.5 ], [ 2.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 8.5 ], [ 2.5, 8.0 ], [ 2.0, 8.0 ], [ 2.0, 8.5 ], [ 2.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 8.5 ], [ 3.0, 8.0 ], [ 2.5, 8.0 ], [ 2.5, 8.5 ], [ 3.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 8.5 ], [ 3.5, 8.0 ], [ 3.0, 8.0 ], [ 3.0, 8.5 ], [ 3.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 8.5 ], [ 4.0, 8.0 ], [ 3.5, 8.0 ], [ 3.5, 8.5 ], [ 4.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 8.5 ], [ 4.5, 8.0 ], [ 4.0, 8.0 ], [ 4.0, 8.5 ], [ 4.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 8.5 ], [ 5.0, 8.0 ], [ 4.5, 8.0 ], [ 4.5, 8.5 ], [ 5.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 8.5 ], [ 5.5, 8.0 ], [ 5.0, 8.0 ], [ 5.0, 8.5 ], [ 5.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 8.5 ], [ 6.0, 8.0 ], [ 5.5, 8.0 ], [ 5.5, 8.5 ], [ 6.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 8.5 ], [ 6.5, 8.0 ], [ 6.0, 8.0 ], [ 6.0, 8.5 ], [ 6.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 8.5 ], [ 7.0, 8.0 ], [ 6.5, 8.0 ], [ 6.5, 8.5 ], [ 7.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 8.5 ], [ 7.5, 8.0 ], [ 7.0, 8.0 ], [ 7.0, 8.5 ], [ 7.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 8.5 ], [ 8.0, 8.0 ], [ 7.5, 8.0 ], [ 7.5, 8.5 ], [ 8.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 8.5 ], [ 8.5, 8.0 ], [ 8.0, 8.0 ], [ 8.0, 8.5 ], [ 8.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 8.5 ], [ 9.0, 8.0 ], [ 8.5, 8.0 ], [ 8.5, 8.5 ], [ 9.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 8.5 ], [ 9.5, 8.0 ], [ 9.0, 8.0 ], [ 9.0, 8.5 ], [ 9.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 8.5 ], [ 10.0, 8.0 ], [ 9.5, 8.0 ], [ 9.5, 8.5 ], [ 10.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 8.5 ], [ 10.5, 8.0 ], [ 10.0, 8.0 ], [ 10.0, 8.5 ], [ 10.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 8.5 ], [ 11.0, 8.0 ], [ 10.5, 8.0 ], [ 10.5, 8.5 ], [ 11.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 8.5 ], [ 11.5, 8.0 ], [ 11.0, 8.0 ], [ 11.0, 8.5 ], [ 11.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 8.5 ], [ 12.0, 8.0 ], [ 11.5, 8.0 ], [ 11.5, 8.5 ], [ 12.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 8.5 ], [ 12.5, 8.0 ], [ 12.0, 8.0 ], [ 12.0, 8.5 ], [ 12.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 8.5 ], [ 13.0, 8.0 ], [ 12.5, 8.0 ], [ 12.5, 8.5 ], [ 13.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 8.5 ], [ 13.5, 8.0 ], [ 13.0, 8.0 ], [ 13.0, 8.5 ], [ 13.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 8.5 ], [ 14.0, 8.0 ], [ 13.5, 8.0 ], [ 13.5, 8.5 ], [ 14.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 8.5 ], [ 14.5, 8.0 ], [ 14.0, 8.0 ], [ 14.0, 8.5 ], [ 14.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 8.5 ], [ 15.0, 8.0 ], [ 14.5, 8.0 ], [ 14.5, 8.5 ], [ 15.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 8.5 ], [ 15.5, 8.0 ], [ 15.0, 8.0 ], [ 15.0, 8.5 ], [ 15.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 8.5 ], [ 16.0, 8.0 ], [ 15.5, 8.0 ], [ 15.5, 8.5 ], [ 16.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 8.5 ], [ 16.5, 8.0 ], [ 16.0, 8.0 ], [ 16.0, 8.5 ], [ 16.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 8.5 ], [ 17.0, 8.0 ], [ 16.5, 8.0 ], [ 16.5, 8.5 ], [ 17.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 8.5 ], [ 17.5, 8.0 ], [ 17.0, 8.0 ], [ 17.0, 8.5 ], [ 17.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 8.5 ], [ 18.0, 8.0 ], [ 17.5, 8.0 ], [ 17.5, 8.5 ], [ 18.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 8.5 ], [ 18.5, 8.0 ], [ 18.0, 8.0 ], [ 18.0, 8.5 ], [ 18.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 8.5 ], [ 19.0, 8.0 ], [ 18.5, 8.0 ], [ 18.5, 8.5 ], [ 19.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 8.5 ], [ 19.5, 8.0 ], [ 19.0, 8.0 ], [ 19.0, 8.5 ], [ 19.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 8.5 ], [ 20.0, 8.0 ], [ 19.5, 8.0 ], [ 19.5, 8.5 ], [ 20.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 8.5 ], [ 20.5, 8.0 ], [ 20.0, 8.0 ], [ 20.0, 8.5 ], [ 20.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 8.5 ], [ 21.0, 8.0 ], [ 20.5, 8.0 ], [ 20.5, 8.5 ], [ 21.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 8.5 ], [ 21.5, 8.0 ], [ 21.0, 8.0 ], [ 21.0, 8.5 ], [ 21.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 8.5 ], [ 22.0, 8.0 ], [ 21.5, 8.0 ], [ 21.5, 8.5 ], [ 22.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 8.5 ], [ 22.5, 8.0 ], [ 22.0, 8.0 ], [ 22.0, 8.5 ], [ 22.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 8.5 ], [ 23.0, 8.0 ], [ 22.5, 8.0 ], [ 22.5, 8.5 ], [ 23.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 8.5 ], [ 23.5, 8.0 ], [ 23.0, 8.0 ], [ 23.0, 8.5 ], [ 23.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 8.5 ], [ 24.0, 8.0 ], [ 23.5, 8.0 ], [ 23.5, 8.5 ], [ 24.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 8.5 ], [ 24.5, 8.0 ], [ 24.0, 8.0 ], [ 24.0, 8.5 ], [ 24.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 8.5 ], [ 25.0, 8.0 ], [ 24.5, 8.0 ], [ 24.5, 8.5 ], [ 25.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 8.5 ], [ 25.5, 8.0 ], [ 25.0, 8.0 ], [ 25.0, 8.5 ], [ 25.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 8.5 ], [ 26.0, 8.0 ], [ 25.5, 8.0 ], [ 25.5, 8.5 ], [ 26.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 8.5 ], [ 26.5, 8.0 ], [ 26.0, 8.0 ], [ 26.0, 8.5 ], [ 26.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 8.5 ], [ 27.0, 8.0 ], [ 26.5, 8.0 ], [ 26.5, 8.5 ], [ 27.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 8.5 ], [ 27.5, 8.0 ], [ 27.0, 8.0 ], [ 27.0, 8.5 ], [ 27.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 8.5 ], [ 28.0, 8.0 ], [ 27.5, 8.0 ], [ 27.5, 8.5 ], [ 28.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 8.5 ], [ 28.5, 8.0 ], [ 28.0, 8.0 ], [ 28.0, 8.5 ], [ 28.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 8.5 ], [ 29.0, 8.0 ], [ 28.5, 8.0 ], [ 28.5, 8.5 ], [ 29.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 8.5 ], [ 29.5, 8.0 ], [ 29.0, 8.0 ], [ 29.0, 8.5 ], [ 29.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 8.5 ], [ 30.0, 8.0 ], [ 29.5, 8.0 ], [ 29.5, 8.5 ], [ 30.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 8.5 ], [ 30.5, 8.0 ], [ 30.0, 8.0 ], [ 30.0, 8.5 ], [ 30.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 8.5 ], [ 31.0, 8.0 ], [ 30.5, 8.0 ], [ 30.5, 8.5 ], [ 31.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 8.5 ], [ 31.5, 8.0 ], [ 31.0, 8.0 ], [ 31.0, 8.5 ], [ 31.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 8.5 ], [ 32.0, 8.0 ], [ 31.5, 8.0 ], [ 31.5, 8.5 ], [ 32.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 8.5 ], [ 32.5, 8.0 ], [ 32.0, 8.0 ], [ 32.0, 8.5 ], [ 32.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 8.5 ], [ 33.0, 8.0 ], [ 32.5, 8.0 ], [ 32.5, 8.5 ], [ 33.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 8.5 ], [ 33.5, 8.0 ], [ 33.0, 8.0 ], [ 33.0, 8.5 ], [ 33.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 8.5 ], [ 34.0, 8.0 ], [ 33.5, 8.0 ], [ 33.5, 8.5 ], [ 34.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 8.5 ], [ 34.5, 8.0 ], [ 34.0, 8.0 ], [ 34.0, 8.5 ], [ 34.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 8.5 ], [ 35.0, 8.0 ], [ 34.5, 8.0 ], [ 34.5, 8.5 ], [ 35.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 8.5 ], [ 35.5, 8.0 ], [ 35.0, 8.0 ], [ 35.0, 8.5 ], [ 35.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 8.5 ], [ 36.0, 8.0 ], [ 35.5, 8.0 ], [ 35.5, 8.5 ], [ 36.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 8.5 ], [ 36.5, 8.0 ], [ 36.0, 8.0 ], [ 36.0, 8.5 ], [ 36.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 8.5 ], [ 37.0, 8.0 ], [ 36.5, 8.0 ], [ 36.5, 8.5 ], [ 37.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 8.5 ], [ 37.5, 8.0 ], [ 37.0, 8.0 ], [ 37.0, 8.5 ], [ 37.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 8.5 ], [ 38.0, 8.0 ], [ 37.5, 8.0 ], [ 37.5, 8.5 ], [ 38.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 8.5 ], [ 38.5, 8.0 ], [ 38.0, 8.0 ], [ 38.0, 8.5 ], [ 38.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 8.5 ], [ 39.0, 8.0 ], [ 38.5, 8.0 ], [ 38.5, 8.5 ], [ 39.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 8.5 ], [ 39.5, 8.0 ], [ 39.0, 8.0 ], [ 39.0, 8.5 ], [ 39.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 8.5 ], [ 40.0, 8.0 ], [ 39.5, 8.0 ], [ 39.5, 8.5 ], [ 40.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 8.5 ], [ 40.5, 8.0 ], [ 40.0, 8.0 ], [ 40.0, 8.5 ], [ 40.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 8.5 ], [ 41.0, 8.0 ], [ 40.5, 8.0 ], [ 40.5, 8.5 ], [ 41.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 8.5 ], [ 41.5, 8.0 ], [ 41.0, 8.0 ], [ 41.0, 8.5 ], [ 41.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 8.5 ], [ 42.0, 8.0 ], [ 41.5, 8.0 ], [ 41.5, 8.5 ], [ 42.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 8.5 ], [ 42.5, 8.0 ], [ 42.0, 8.0 ], [ 42.0, 8.5 ], [ 42.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 8.5 ], [ 43.0, 8.0 ], [ 42.5, 8.0 ], [ 42.5, 8.5 ], [ 43.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 8.5 ], [ 43.5, 8.0 ], [ 43.0, 8.0 ], [ 43.0, 8.5 ], [ 43.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 8.5 ], [ 44.0, 8.0 ], [ 43.5, 8.0 ], [ 43.5, 8.5 ], [ 44.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 8.5 ], [ 44.5, 8.0 ], [ 44.0, 8.0 ], [ 44.0, 8.5 ], [ 44.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 8.5 ], [ 45.0, 8.0 ], [ 44.5, 8.0 ], [ 44.5, 8.5 ], [ 45.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, 8.5 ], [ 45.5, 8.0 ], [ 45.0, 8.0 ], [ 45.0, 8.5 ], [ 45.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 8.5 ], [ 46.0, 8.0 ], [ 45.5, 8.0 ], [ 45.5, 8.5 ], [ 46.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, 8.5 ], [ 46.5, 8.0 ], [ 46.0, 8.0 ], [ 46.0, 8.5 ], [ 46.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, 8.5 ], [ 47.0, 8.0 ], [ 46.5, 8.0 ], [ 46.5, 8.5 ], [ 47.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, 8.5 ], [ 47.5, 8.0 ], [ 47.0, 8.0 ], [ 47.0, 8.5 ], [ 47.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, 8.5 ], [ 48.0, 8.0 ], [ 47.5, 8.0 ], [ 47.5, 8.5 ], [ 48.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, 8.5 ], [ 48.5, 8.0 ], [ 48.0, 8.0 ], [ 48.0, 8.5 ], [ 48.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, 8.5 ], [ 49.0, 8.0 ], [ 48.5, 8.0 ], [ 48.5, 8.5 ], [ 49.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, 8.5 ], [ 49.5, 8.0 ], [ 49.0, 8.0 ], [ 49.0, 8.5 ], [ 49.5, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.0, 8.5 ], [ 50.0, 8.0 ], [ 49.5, 8.0 ], [ 49.5, 8.5 ], [ 50.0, 8.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 9.0 ], [ -12.5, 8.5 ], [ -13.0, 8.5 ], [ -13.0, 9.0 ], [ -12.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 9.0 ], [ -12.0, 8.5 ], [ -12.5, 8.5 ], [ -12.5, 9.0 ], [ -12.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 9.0 ], [ -11.5, 8.5 ], [ -12.0, 8.5 ], [ -12.0, 9.0 ], [ -11.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 9.0 ], [ -11.0, 8.5 ], [ -11.5, 8.5 ], [ -11.5, 9.0 ], [ -11.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 9.0 ], [ -10.5, 8.5 ], [ -11.0, 8.5 ], [ -11.0, 9.0 ], [ -10.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 9.0 ], [ -10.0, 8.5 ], [ -10.5, 8.5 ], [ -10.5, 9.0 ], [ -10.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 9.0 ], [ -9.5, 8.5 ], [ -10.0, 8.5 ], [ -10.0, 9.0 ], [ -9.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 9.0 ], [ -9.0, 8.5 ], [ -9.5, 8.5 ], [ -9.5, 9.0 ], [ -9.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 9.0 ], [ -8.5, 8.5 ], [ -9.0, 8.5 ], [ -9.0, 9.0 ], [ -8.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 9.0 ], [ -8.0, 8.5 ], [ -8.5, 8.5 ], [ -8.5, 9.0 ], [ -8.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 9.0 ], [ -7.5, 8.5 ], [ -8.0, 8.5 ], [ -8.0, 9.0 ], [ -7.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 9.0 ], [ -7.0, 8.5 ], [ -7.5, 8.5 ], [ -7.5, 9.0 ], [ -7.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 9.0 ], [ -6.5, 8.5 ], [ -7.0, 8.5 ], [ -7.0, 9.0 ], [ -6.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 9.0 ], [ -6.0, 8.5 ], [ -6.5, 8.5 ], [ -6.5, 9.0 ], [ -6.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 9.0 ], [ -5.5, 8.5 ], [ -6.0, 8.5 ], [ -6.0, 9.0 ], [ -5.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 9.0 ], [ -5.0, 8.5 ], [ -5.5, 8.5 ], [ -5.5, 9.0 ], [ -5.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 9.0 ], [ -4.5, 8.5 ], [ -5.0, 8.5 ], [ -5.0, 9.0 ], [ -4.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 9.0 ], [ -4.0, 8.5 ], [ -4.5, 8.5 ], [ -4.5, 9.0 ], [ -4.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 9.0 ], [ -3.5, 8.5 ], [ -4.0, 8.5 ], [ -4.0, 9.0 ], [ -3.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 9.0 ], [ -3.0, 8.5 ], [ -3.5, 8.5 ], [ -3.5, 9.0 ], [ -3.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 9.0 ], [ -2.5, 8.5 ], [ -3.0, 8.5 ], [ -3.0, 9.0 ], [ -2.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 9.0 ], [ -2.0, 8.5 ], [ -2.5, 8.5 ], [ -2.5, 9.0 ], [ -2.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 9.0 ], [ -1.5, 8.5 ], [ -2.0, 8.5 ], [ -2.0, 9.0 ], [ -1.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 9.0 ], [ -1.0, 8.5 ], [ -1.5, 8.5 ], [ -1.5, 9.0 ], [ -1.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 9.0 ], [ -0.5, 8.5 ], [ -1.0, 8.5 ], [ -1.0, 9.0 ], [ -0.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 9.0 ], [ 0.0, 8.5 ], [ -0.5, 8.5 ], [ -0.5, 9.0 ], [ 0.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 9.0 ], [ 0.5, 8.5 ], [ 0.0, 8.5 ], [ 0.0, 9.0 ], [ 0.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 9.0 ], [ 1.0, 8.5 ], [ 0.5, 8.5 ], [ 0.5, 9.0 ], [ 1.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 9.0 ], [ 1.5, 8.5 ], [ 1.0, 8.5 ], [ 1.0, 9.0 ], [ 1.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 9.0 ], [ 2.0, 8.5 ], [ 1.5, 8.5 ], [ 1.5, 9.0 ], [ 2.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 9.0 ], [ 2.5, 8.5 ], [ 2.0, 8.5 ], [ 2.0, 9.0 ], [ 2.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 9.0 ], [ 3.0, 8.5 ], [ 2.5, 8.5 ], [ 2.5, 9.0 ], [ 3.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 9.0 ], [ 3.5, 8.5 ], [ 3.0, 8.5 ], [ 3.0, 9.0 ], [ 3.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 9.0 ], [ 4.0, 8.5 ], [ 3.5, 8.5 ], [ 3.5, 9.0 ], [ 4.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 9.0 ], [ 4.5, 8.5 ], [ 4.0, 8.5 ], [ 4.0, 9.0 ], [ 4.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 9.0 ], [ 5.0, 8.5 ], [ 4.5, 8.5 ], [ 4.5, 9.0 ], [ 5.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 9.0 ], [ 5.5, 8.5 ], [ 5.0, 8.5 ], [ 5.0, 9.0 ], [ 5.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 9.0 ], [ 6.0, 8.5 ], [ 5.5, 8.5 ], [ 5.5, 9.0 ], [ 6.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 9.0 ], [ 6.5, 8.5 ], [ 6.0, 8.5 ], [ 6.0, 9.0 ], [ 6.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 9.0 ], [ 7.0, 8.5 ], [ 6.5, 8.5 ], [ 6.5, 9.0 ], [ 7.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 9.0 ], [ 7.5, 8.5 ], [ 7.0, 8.5 ], [ 7.0, 9.0 ], [ 7.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 9.0 ], [ 8.0, 8.5 ], [ 7.5, 8.5 ], [ 7.5, 9.0 ], [ 8.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 9.0 ], [ 8.5, 8.5 ], [ 8.0, 8.5 ], [ 8.0, 9.0 ], [ 8.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 9.0 ], [ 9.0, 8.5 ], [ 8.5, 8.5 ], [ 8.5, 9.0 ], [ 9.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 9.0 ], [ 9.5, 8.5 ], [ 9.0, 8.5 ], [ 9.0, 9.0 ], [ 9.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 9.0 ], [ 10.0, 8.5 ], [ 9.5, 8.5 ], [ 9.5, 9.0 ], [ 10.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 9.0 ], [ 10.5, 8.5 ], [ 10.0, 8.5 ], [ 10.0, 9.0 ], [ 10.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 9.0 ], [ 11.0, 8.5 ], [ 10.5, 8.5 ], [ 10.5, 9.0 ], [ 11.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 9.0 ], [ 11.5, 8.5 ], [ 11.0, 8.5 ], [ 11.0, 9.0 ], [ 11.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 9.0 ], [ 12.0, 8.5 ], [ 11.5, 8.5 ], [ 11.5, 9.0 ], [ 12.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 9.0 ], [ 12.5, 8.5 ], [ 12.0, 8.5 ], [ 12.0, 9.0 ], [ 12.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 9.0 ], [ 13.0, 8.5 ], [ 12.5, 8.5 ], [ 12.5, 9.0 ], [ 13.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 9.0 ], [ 13.5, 8.5 ], [ 13.0, 8.5 ], [ 13.0, 9.0 ], [ 13.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 9.0 ], [ 14.0, 8.5 ], [ 13.5, 8.5 ], [ 13.5, 9.0 ], [ 14.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 9.0 ], [ 14.5, 8.5 ], [ 14.0, 8.5 ], [ 14.0, 9.0 ], [ 14.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 9.0 ], [ 15.0, 8.5 ], [ 14.5, 8.5 ], [ 14.5, 9.0 ], [ 15.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 9.0 ], [ 15.5, 8.5 ], [ 15.0, 8.5 ], [ 15.0, 9.0 ], [ 15.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 9.0 ], [ 16.0, 8.5 ], [ 15.5, 8.5 ], [ 15.5, 9.0 ], [ 16.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 9.0 ], [ 16.5, 8.5 ], [ 16.0, 8.5 ], [ 16.0, 9.0 ], [ 16.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 9.0 ], [ 17.0, 8.5 ], [ 16.5, 8.5 ], [ 16.5, 9.0 ], [ 17.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 9.0 ], [ 17.5, 8.5 ], [ 17.0, 8.5 ], [ 17.0, 9.0 ], [ 17.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 9.0 ], [ 18.0, 8.5 ], [ 17.5, 8.5 ], [ 17.5, 9.0 ], [ 18.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 9.0 ], [ 18.5, 8.5 ], [ 18.0, 8.5 ], [ 18.0, 9.0 ], [ 18.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 9.0 ], [ 19.0, 8.5 ], [ 18.5, 8.5 ], [ 18.5, 9.0 ], [ 19.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 9.0 ], [ 19.5, 8.5 ], [ 19.0, 8.5 ], [ 19.0, 9.0 ], [ 19.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 9.0 ], [ 20.0, 8.5 ], [ 19.5, 8.5 ], [ 19.5, 9.0 ], [ 20.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 9.0 ], [ 20.5, 8.5 ], [ 20.0, 8.5 ], [ 20.0, 9.0 ], [ 20.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 9.0 ], [ 21.0, 8.5 ], [ 20.5, 8.5 ], [ 20.5, 9.0 ], [ 21.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 9.0 ], [ 21.5, 8.5 ], [ 21.0, 8.5 ], [ 21.0, 9.0 ], [ 21.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 9.0 ], [ 22.0, 8.5 ], [ 21.5, 8.5 ], [ 21.5, 9.0 ], [ 22.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 9.0 ], [ 22.5, 8.5 ], [ 22.0, 8.5 ], [ 22.0, 9.0 ], [ 22.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 9.0 ], [ 23.0, 8.5 ], [ 22.5, 8.5 ], [ 22.5, 9.0 ], [ 23.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 9.0 ], [ 23.5, 8.5 ], [ 23.0, 8.5 ], [ 23.0, 9.0 ], [ 23.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 9.0 ], [ 24.0, 8.5 ], [ 23.5, 8.5 ], [ 23.5, 9.0 ], [ 24.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 9.0 ], [ 24.5, 8.5 ], [ 24.0, 8.5 ], [ 24.0, 9.0 ], [ 24.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 9.0 ], [ 25.0, 8.5 ], [ 24.5, 8.5 ], [ 24.5, 9.0 ], [ 25.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 9.0 ], [ 25.5, 8.5 ], [ 25.0, 8.5 ], [ 25.0, 9.0 ], [ 25.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 9.0 ], [ 26.0, 8.5 ], [ 25.5, 8.5 ], [ 25.5, 9.0 ], [ 26.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 9.0 ], [ 26.5, 8.5 ], [ 26.0, 8.5 ], [ 26.0, 9.0 ], [ 26.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 9.0 ], [ 27.0, 8.5 ], [ 26.5, 8.5 ], [ 26.5, 9.0 ], [ 27.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 9.0 ], [ 27.5, 8.5 ], [ 27.0, 8.5 ], [ 27.0, 9.0 ], [ 27.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 9.0 ], [ 28.0, 8.5 ], [ 27.5, 8.5 ], [ 27.5, 9.0 ], [ 28.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 9.0 ], [ 28.5, 8.5 ], [ 28.0, 8.5 ], [ 28.0, 9.0 ], [ 28.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 9.0 ], [ 29.0, 8.5 ], [ 28.5, 8.5 ], [ 28.5, 9.0 ], [ 29.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 9.0 ], [ 29.5, 8.5 ], [ 29.0, 8.5 ], [ 29.0, 9.0 ], [ 29.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 9.0 ], [ 30.0, 8.5 ], [ 29.5, 8.5 ], [ 29.5, 9.0 ], [ 30.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 9.0 ], [ 30.5, 8.5 ], [ 30.0, 8.5 ], [ 30.0, 9.0 ], [ 30.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 9.0 ], [ 31.0, 8.5 ], [ 30.5, 8.5 ], [ 30.5, 9.0 ], [ 31.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 9.0 ], [ 31.5, 8.5 ], [ 31.0, 8.5 ], [ 31.0, 9.0 ], [ 31.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 9.0 ], [ 32.0, 8.5 ], [ 31.5, 8.5 ], [ 31.5, 9.0 ], [ 32.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 9.0 ], [ 32.5, 8.5 ], [ 32.0, 8.5 ], [ 32.0, 9.0 ], [ 32.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 9.0 ], [ 33.0, 8.5 ], [ 32.5, 8.5 ], [ 32.5, 9.0 ], [ 33.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 9.0 ], [ 33.5, 8.5 ], [ 33.0, 8.5 ], [ 33.0, 9.0 ], [ 33.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 9.0 ], [ 34.0, 8.5 ], [ 33.5, 8.5 ], [ 33.5, 9.0 ], [ 34.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 9.0 ], [ 34.5, 8.5 ], [ 34.0, 8.5 ], [ 34.0, 9.0 ], [ 34.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 9.0 ], [ 35.0, 8.5 ], [ 34.5, 8.5 ], [ 34.5, 9.0 ], [ 35.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 9.0 ], [ 35.5, 8.5 ], [ 35.0, 8.5 ], [ 35.0, 9.0 ], [ 35.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 9.0 ], [ 36.0, 8.5 ], [ 35.5, 8.5 ], [ 35.5, 9.0 ], [ 36.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 9.0 ], [ 36.5, 8.5 ], [ 36.0, 8.5 ], [ 36.0, 9.0 ], [ 36.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 9.0 ], [ 37.0, 8.5 ], [ 36.5, 8.5 ], [ 36.5, 9.0 ], [ 37.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 9.0 ], [ 37.5, 8.5 ], [ 37.0, 8.5 ], [ 37.0, 9.0 ], [ 37.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 9.0 ], [ 38.0, 8.5 ], [ 37.5, 8.5 ], [ 37.5, 9.0 ], [ 38.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 9.0 ], [ 38.5, 8.5 ], [ 38.0, 8.5 ], [ 38.0, 9.0 ], [ 38.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 9.0 ], [ 39.0, 8.5 ], [ 38.5, 8.5 ], [ 38.5, 9.0 ], [ 39.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 9.0 ], [ 39.5, 8.5 ], [ 39.0, 8.5 ], [ 39.0, 9.0 ], [ 39.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 9.0 ], [ 40.0, 8.5 ], [ 39.5, 8.5 ], [ 39.5, 9.0 ], [ 40.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 9.0 ], [ 40.5, 8.5 ], [ 40.0, 8.5 ], [ 40.0, 9.0 ], [ 40.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 9.0 ], [ 41.0, 8.5 ], [ 40.5, 8.5 ], [ 40.5, 9.0 ], [ 41.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 9.0 ], [ 41.5, 8.5 ], [ 41.0, 8.5 ], [ 41.0, 9.0 ], [ 41.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 9.0 ], [ 42.0, 8.5 ], [ 41.5, 8.5 ], [ 41.5, 9.0 ], [ 42.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 9.0 ], [ 42.5, 8.5 ], [ 42.0, 8.5 ], [ 42.0, 9.0 ], [ 42.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 9.0 ], [ 43.0, 8.5 ], [ 42.5, 8.5 ], [ 42.5, 9.0 ], [ 43.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 9.0 ], [ 43.5, 8.5 ], [ 43.0, 8.5 ], [ 43.0, 9.0 ], [ 43.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 9.0 ], [ 44.0, 8.5 ], [ 43.5, 8.5 ], [ 43.5, 9.0 ], [ 44.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 9.0 ], [ 44.5, 8.5 ], [ 44.0, 8.5 ], [ 44.0, 9.0 ], [ 44.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 9.0 ], [ 45.0, 8.5 ], [ 44.5, 8.5 ], [ 44.5, 9.0 ], [ 45.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, 9.0 ], [ 45.5, 8.5 ], [ 45.0, 8.5 ], [ 45.0, 9.0 ], [ 45.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 9.0 ], [ 46.0, 8.5 ], [ 45.5, 8.5 ], [ 45.5, 9.0 ], [ 46.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, 9.0 ], [ 46.5, 8.5 ], [ 46.0, 8.5 ], [ 46.0, 9.0 ], [ 46.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, 9.0 ], [ 47.0, 8.5 ], [ 46.5, 8.5 ], [ 46.5, 9.0 ], [ 47.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, 9.0 ], [ 47.5, 8.5 ], [ 47.0, 8.5 ], [ 47.0, 9.0 ], [ 47.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, 9.0 ], [ 48.0, 8.5 ], [ 47.5, 8.5 ], [ 47.5, 9.0 ], [ 48.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, 9.0 ], [ 48.5, 8.5 ], [ 48.0, 8.5 ], [ 48.0, 9.0 ], [ 48.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, 9.0 ], [ 49.0, 8.5 ], [ 48.5, 8.5 ], [ 48.5, 9.0 ], [ 49.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, 9.0 ], [ 49.5, 8.5 ], [ 49.0, 8.5 ], [ 49.0, 9.0 ], [ 49.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.0, 9.0 ], [ 50.0, 8.5 ], [ 49.5, 8.5 ], [ 49.5, 9.0 ], [ 50.0, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.5, 9.0 ], [ 50.5, 8.5 ], [ 50.0, 8.5 ], [ 50.0, 9.0 ], [ 50.5, 9.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 9.5 ], [ -13.0, 9.0 ], [ -13.5, 9.0 ], [ -13.5, 9.5 ], [ -13.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 9.5 ], [ -12.5, 9.0 ], [ -13.0, 9.0 ], [ -13.0, 9.5 ], [ -12.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 9.5 ], [ -12.0, 9.0 ], [ -12.5, 9.0 ], [ -12.5, 9.5 ], [ -12.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 9.5 ], [ -11.5, 9.0 ], [ -12.0, 9.0 ], [ -12.0, 9.5 ], [ -11.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 9.5 ], [ -11.0, 9.0 ], [ -11.5, 9.0 ], [ -11.5, 9.5 ], [ -11.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 9.5 ], [ -10.5, 9.0 ], [ -11.0, 9.0 ], [ -11.0, 9.5 ], [ -10.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 9.5 ], [ -10.0, 9.0 ], [ -10.5, 9.0 ], [ -10.5, 9.5 ], [ -10.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 9.5 ], [ -9.5, 9.0 ], [ -10.0, 9.0 ], [ -10.0, 9.5 ], [ -9.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 9.5 ], [ -9.0, 9.0 ], [ -9.5, 9.0 ], [ -9.5, 9.5 ], [ -9.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 9.5 ], [ -8.5, 9.0 ], [ -9.0, 9.0 ], [ -9.0, 9.5 ], [ -8.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 9.5 ], [ -8.0, 9.0 ], [ -8.5, 9.0 ], [ -8.5, 9.5 ], [ -8.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 9.5 ], [ -7.5, 9.0 ], [ -8.0, 9.0 ], [ -8.0, 9.5 ], [ -7.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 9.5 ], [ -7.0, 9.0 ], [ -7.5, 9.0 ], [ -7.5, 9.5 ], [ -7.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 9.5 ], [ -6.5, 9.0 ], [ -7.0, 9.0 ], [ -7.0, 9.5 ], [ -6.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 9.5 ], [ -6.0, 9.0 ], [ -6.5, 9.0 ], [ -6.5, 9.5 ], [ -6.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 9.5 ], [ -5.5, 9.0 ], [ -6.0, 9.0 ], [ -6.0, 9.5 ], [ -5.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 9.5 ], [ -5.0, 9.0 ], [ -5.5, 9.0 ], [ -5.5, 9.5 ], [ -5.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 9.5 ], [ -4.5, 9.0 ], [ -5.0, 9.0 ], [ -5.0, 9.5 ], [ -4.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 9.5 ], [ -4.0, 9.0 ], [ -4.5, 9.0 ], [ -4.5, 9.5 ], [ -4.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 9.5 ], [ -3.5, 9.0 ], [ -4.0, 9.0 ], [ -4.0, 9.5 ], [ -3.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 9.5 ], [ -3.0, 9.0 ], [ -3.5, 9.0 ], [ -3.5, 9.5 ], [ -3.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 9.5 ], [ -2.5, 9.0 ], [ -3.0, 9.0 ], [ -3.0, 9.5 ], [ -2.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 9.5 ], [ -2.0, 9.0 ], [ -2.5, 9.0 ], [ -2.5, 9.5 ], [ -2.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 9.5 ], [ -1.5, 9.0 ], [ -2.0, 9.0 ], [ -2.0, 9.5 ], [ -1.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 9.5 ], [ -1.0, 9.0 ], [ -1.5, 9.0 ], [ -1.5, 9.5 ], [ -1.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 9.5 ], [ -0.5, 9.0 ], [ -1.0, 9.0 ], [ -1.0, 9.5 ], [ -0.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 9.5 ], [ 0.0, 9.0 ], [ -0.5, 9.0 ], [ -0.5, 9.5 ], [ 0.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 9.5 ], [ 0.5, 9.0 ], [ 0.0, 9.0 ], [ 0.0, 9.5 ], [ 0.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 9.5 ], [ 1.0, 9.0 ], [ 0.5, 9.0 ], [ 0.5, 9.5 ], [ 1.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 9.5 ], [ 1.5, 9.0 ], [ 1.0, 9.0 ], [ 1.0, 9.5 ], [ 1.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 9.5 ], [ 2.0, 9.0 ], [ 1.5, 9.0 ], [ 1.5, 9.5 ], [ 2.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 9.5 ], [ 2.5, 9.0 ], [ 2.0, 9.0 ], [ 2.0, 9.5 ], [ 2.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 9.5 ], [ 3.0, 9.0 ], [ 2.5, 9.0 ], [ 2.5, 9.5 ], [ 3.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 9.5 ], [ 3.5, 9.0 ], [ 3.0, 9.0 ], [ 3.0, 9.5 ], [ 3.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 9.5 ], [ 4.0, 9.0 ], [ 3.5, 9.0 ], [ 3.5, 9.5 ], [ 4.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 9.5 ], [ 4.5, 9.0 ], [ 4.0, 9.0 ], [ 4.0, 9.5 ], [ 4.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 9.5 ], [ 5.0, 9.0 ], [ 4.5, 9.0 ], [ 4.5, 9.5 ], [ 5.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 9.5 ], [ 5.5, 9.0 ], [ 5.0, 9.0 ], [ 5.0, 9.5 ], [ 5.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 9.5 ], [ 6.0, 9.0 ], [ 5.5, 9.0 ], [ 5.5, 9.5 ], [ 6.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 9.5 ], [ 6.5, 9.0 ], [ 6.0, 9.0 ], [ 6.0, 9.5 ], [ 6.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 9.5 ], [ 7.0, 9.0 ], [ 6.5, 9.0 ], [ 6.5, 9.5 ], [ 7.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 9.5 ], [ 7.5, 9.0 ], [ 7.0, 9.0 ], [ 7.0, 9.5 ], [ 7.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 9.5 ], [ 8.0, 9.0 ], [ 7.5, 9.0 ], [ 7.5, 9.5 ], [ 8.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 9.5 ], [ 8.5, 9.0 ], [ 8.0, 9.0 ], [ 8.0, 9.5 ], [ 8.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 9.5 ], [ 9.0, 9.0 ], [ 8.5, 9.0 ], [ 8.5, 9.5 ], [ 9.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 9.5 ], [ 9.5, 9.0 ], [ 9.0, 9.0 ], [ 9.0, 9.5 ], [ 9.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 9.5 ], [ 10.0, 9.0 ], [ 9.5, 9.0 ], [ 9.5, 9.5 ], [ 10.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 9.5 ], [ 10.5, 9.0 ], [ 10.0, 9.0 ], [ 10.0, 9.5 ], [ 10.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 9.5 ], [ 11.0, 9.0 ], [ 10.5, 9.0 ], [ 10.5, 9.5 ], [ 11.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 9.5 ], [ 11.5, 9.0 ], [ 11.0, 9.0 ], [ 11.0, 9.5 ], [ 11.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 9.5 ], [ 12.0, 9.0 ], [ 11.5, 9.0 ], [ 11.5, 9.5 ], [ 12.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 9.5 ], [ 12.5, 9.0 ], [ 12.0, 9.0 ], [ 12.0, 9.5 ], [ 12.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 9.5 ], [ 13.0, 9.0 ], [ 12.5, 9.0 ], [ 12.5, 9.5 ], [ 13.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 9.5 ], [ 13.5, 9.0 ], [ 13.0, 9.0 ], [ 13.0, 9.5 ], [ 13.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 9.5 ], [ 14.0, 9.0 ], [ 13.5, 9.0 ], [ 13.5, 9.5 ], [ 14.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 9.5 ], [ 14.5, 9.0 ], [ 14.0, 9.0 ], [ 14.0, 9.5 ], [ 14.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 9.5 ], [ 15.0, 9.0 ], [ 14.5, 9.0 ], [ 14.5, 9.5 ], [ 15.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 9.5 ], [ 15.5, 9.0 ], [ 15.0, 9.0 ], [ 15.0, 9.5 ], [ 15.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 9.5 ], [ 16.0, 9.0 ], [ 15.5, 9.0 ], [ 15.5, 9.5 ], [ 16.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 9.5 ], [ 16.5, 9.0 ], [ 16.0, 9.0 ], [ 16.0, 9.5 ], [ 16.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 9.5 ], [ 17.0, 9.0 ], [ 16.5, 9.0 ], [ 16.5, 9.5 ], [ 17.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 9.5 ], [ 17.5, 9.0 ], [ 17.0, 9.0 ], [ 17.0, 9.5 ], [ 17.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 9.5 ], [ 18.0, 9.0 ], [ 17.5, 9.0 ], [ 17.5, 9.5 ], [ 18.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 9.5 ], [ 18.5, 9.0 ], [ 18.0, 9.0 ], [ 18.0, 9.5 ], [ 18.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 9.5 ], [ 19.0, 9.0 ], [ 18.5, 9.0 ], [ 18.5, 9.5 ], [ 19.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 9.5 ], [ 19.5, 9.0 ], [ 19.0, 9.0 ], [ 19.0, 9.5 ], [ 19.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 9.5 ], [ 20.0, 9.0 ], [ 19.5, 9.0 ], [ 19.5, 9.5 ], [ 20.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 9.5 ], [ 20.5, 9.0 ], [ 20.0, 9.0 ], [ 20.0, 9.5 ], [ 20.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 9.5 ], [ 21.0, 9.0 ], [ 20.5, 9.0 ], [ 20.5, 9.5 ], [ 21.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 9.5 ], [ 21.5, 9.0 ], [ 21.0, 9.0 ], [ 21.0, 9.5 ], [ 21.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 9.5 ], [ 22.0, 9.0 ], [ 21.5, 9.0 ], [ 21.5, 9.5 ], [ 22.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 9.5 ], [ 22.5, 9.0 ], [ 22.0, 9.0 ], [ 22.0, 9.5 ], [ 22.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 9.5 ], [ 23.0, 9.0 ], [ 22.5, 9.0 ], [ 22.5, 9.5 ], [ 23.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 9.5 ], [ 23.5, 9.0 ], [ 23.0, 9.0 ], [ 23.0, 9.5 ], [ 23.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 9.5 ], [ 24.0, 9.0 ], [ 23.5, 9.0 ], [ 23.5, 9.5 ], [ 24.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 9.5 ], [ 24.5, 9.0 ], [ 24.0, 9.0 ], [ 24.0, 9.5 ], [ 24.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 9.5 ], [ 25.0, 9.0 ], [ 24.5, 9.0 ], [ 24.5, 9.5 ], [ 25.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 9.5 ], [ 25.5, 9.0 ], [ 25.0, 9.0 ], [ 25.0, 9.5 ], [ 25.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 9.5 ], [ 26.0, 9.0 ], [ 25.5, 9.0 ], [ 25.5, 9.5 ], [ 26.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 9.5 ], [ 26.5, 9.0 ], [ 26.0, 9.0 ], [ 26.0, 9.5 ], [ 26.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 9.5 ], [ 27.0, 9.0 ], [ 26.5, 9.0 ], [ 26.5, 9.5 ], [ 27.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 9.5 ], [ 27.5, 9.0 ], [ 27.0, 9.0 ], [ 27.0, 9.5 ], [ 27.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 9.5 ], [ 28.0, 9.0 ], [ 27.5, 9.0 ], [ 27.5, 9.5 ], [ 28.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 9.5 ], [ 28.5, 9.0 ], [ 28.0, 9.0 ], [ 28.0, 9.5 ], [ 28.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 9.5 ], [ 29.0, 9.0 ], [ 28.5, 9.0 ], [ 28.5, 9.5 ], [ 29.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 9.5 ], [ 29.5, 9.0 ], [ 29.0, 9.0 ], [ 29.0, 9.5 ], [ 29.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 9.5 ], [ 30.0, 9.0 ], [ 29.5, 9.0 ], [ 29.5, 9.5 ], [ 30.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 9.5 ], [ 30.5, 9.0 ], [ 30.0, 9.0 ], [ 30.0, 9.5 ], [ 30.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 9.5 ], [ 31.0, 9.0 ], [ 30.5, 9.0 ], [ 30.5, 9.5 ], [ 31.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 9.5 ], [ 31.5, 9.0 ], [ 31.0, 9.0 ], [ 31.0, 9.5 ], [ 31.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 9.5 ], [ 32.0, 9.0 ], [ 31.5, 9.0 ], [ 31.5, 9.5 ], [ 32.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 9.5 ], [ 32.5, 9.0 ], [ 32.0, 9.0 ], [ 32.0, 9.5 ], [ 32.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 9.5 ], [ 33.0, 9.0 ], [ 32.5, 9.0 ], [ 32.5, 9.5 ], [ 33.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 9.5 ], [ 33.5, 9.0 ], [ 33.0, 9.0 ], [ 33.0, 9.5 ], [ 33.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 9.5 ], [ 34.0, 9.0 ], [ 33.5, 9.0 ], [ 33.5, 9.5 ], [ 34.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 9.5 ], [ 34.5, 9.0 ], [ 34.0, 9.0 ], [ 34.0, 9.5 ], [ 34.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 9.5 ], [ 35.0, 9.0 ], [ 34.5, 9.0 ], [ 34.5, 9.5 ], [ 35.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 9.5 ], [ 35.5, 9.0 ], [ 35.0, 9.0 ], [ 35.0, 9.5 ], [ 35.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 9.5 ], [ 36.0, 9.0 ], [ 35.5, 9.0 ], [ 35.5, 9.5 ], [ 36.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 9.5 ], [ 36.5, 9.0 ], [ 36.0, 9.0 ], [ 36.0, 9.5 ], [ 36.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 9.5 ], [ 37.0, 9.0 ], [ 36.5, 9.0 ], [ 36.5, 9.5 ], [ 37.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 9.5 ], [ 37.5, 9.0 ], [ 37.0, 9.0 ], [ 37.0, 9.5 ], [ 37.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 9.5 ], [ 38.0, 9.0 ], [ 37.5, 9.0 ], [ 37.5, 9.5 ], [ 38.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 9.5 ], [ 38.5, 9.0 ], [ 38.0, 9.0 ], [ 38.0, 9.5 ], [ 38.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 9.5 ], [ 39.0, 9.0 ], [ 38.5, 9.0 ], [ 38.5, 9.5 ], [ 39.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 9.5 ], [ 39.5, 9.0 ], [ 39.0, 9.0 ], [ 39.0, 9.5 ], [ 39.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 9.5 ], [ 40.0, 9.0 ], [ 39.5, 9.0 ], [ 39.5, 9.5 ], [ 40.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 9.5 ], [ 40.5, 9.0 ], [ 40.0, 9.0 ], [ 40.0, 9.5 ], [ 40.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 9.5 ], [ 41.0, 9.0 ], [ 40.5, 9.0 ], [ 40.5, 9.5 ], [ 41.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 9.5 ], [ 41.5, 9.0 ], [ 41.0, 9.0 ], [ 41.0, 9.5 ], [ 41.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 9.5 ], [ 42.0, 9.0 ], [ 41.5, 9.0 ], [ 41.5, 9.5 ], [ 42.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 9.5 ], [ 42.5, 9.0 ], [ 42.0, 9.0 ], [ 42.0, 9.5 ], [ 42.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 9.5 ], [ 43.0, 9.0 ], [ 42.5, 9.0 ], [ 42.5, 9.5 ], [ 43.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 9.5 ], [ 43.5, 9.0 ], [ 43.0, 9.0 ], [ 43.0, 9.5 ], [ 43.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 9.5 ], [ 44.0, 9.0 ], [ 43.5, 9.0 ], [ 43.5, 9.5 ], [ 44.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 9.5 ], [ 44.5, 9.0 ], [ 44.0, 9.0 ], [ 44.0, 9.5 ], [ 44.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 9.5 ], [ 45.0, 9.0 ], [ 44.5, 9.0 ], [ 44.5, 9.5 ], [ 45.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, 9.5 ], [ 45.5, 9.0 ], [ 45.0, 9.0 ], [ 45.0, 9.5 ], [ 45.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 9.5 ], [ 46.0, 9.0 ], [ 45.5, 9.0 ], [ 45.5, 9.5 ], [ 46.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, 9.5 ], [ 46.5, 9.0 ], [ 46.0, 9.0 ], [ 46.0, 9.5 ], [ 46.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, 9.5 ], [ 47.0, 9.0 ], [ 46.5, 9.0 ], [ 46.5, 9.5 ], [ 47.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, 9.5 ], [ 47.5, 9.0 ], [ 47.0, 9.0 ], [ 47.0, 9.5 ], [ 47.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, 9.5 ], [ 48.0, 9.0 ], [ 47.5, 9.0 ], [ 47.5, 9.5 ], [ 48.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, 9.5 ], [ 48.5, 9.0 ], [ 48.0, 9.0 ], [ 48.0, 9.5 ], [ 48.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, 9.5 ], [ 49.0, 9.0 ], [ 48.5, 9.0 ], [ 48.5, 9.5 ], [ 49.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, 9.5 ], [ 49.5, 9.0 ], [ 49.0, 9.0 ], [ 49.0, 9.5 ], [ 49.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.0, 9.5 ], [ 50.0, 9.0 ], [ 49.5, 9.0 ], [ 49.5, 9.5 ], [ 50.0, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.5, 9.5 ], [ 50.5, 9.0 ], [ 50.0, 9.0 ], [ 50.0, 9.5 ], [ 50.5, 9.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 10.0 ], [ -13.0, 9.5 ], [ -13.5, 9.5 ], [ -13.5, 10.0 ], [ -13.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 10.0 ], [ -12.5, 9.5 ], [ -13.0, 9.5 ], [ -13.0, 10.0 ], [ -12.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 10.0 ], [ -12.0, 9.5 ], [ -12.5, 9.5 ], [ -12.5, 10.0 ], [ -12.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 10.0 ], [ -11.5, 9.5 ], [ -12.0, 9.5 ], [ -12.0, 10.0 ], [ -11.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 10.0 ], [ -11.0, 9.5 ], [ -11.5, 9.5 ], [ -11.5, 10.0 ], [ -11.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 10.0 ], [ -10.5, 9.5 ], [ -11.0, 9.5 ], [ -11.0, 10.0 ], [ -10.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 10.0 ], [ -10.0, 9.5 ], [ -10.5, 9.5 ], [ -10.5, 10.0 ], [ -10.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 10.0 ], [ -9.5, 9.5 ], [ -10.0, 9.5 ], [ -10.0, 10.0 ], [ -9.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 10.0 ], [ -9.0, 9.5 ], [ -9.5, 9.5 ], [ -9.5, 10.0 ], [ -9.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 10.0 ], [ -8.5, 9.5 ], [ -9.0, 9.5 ], [ -9.0, 10.0 ], [ -8.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 10.0 ], [ -8.0, 9.5 ], [ -8.5, 9.5 ], [ -8.5, 10.0 ], [ -8.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 10.0 ], [ -7.5, 9.5 ], [ -8.0, 9.5 ], [ -8.0, 10.0 ], [ -7.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 10.0 ], [ -7.0, 9.5 ], [ -7.5, 9.5 ], [ -7.5, 10.0 ], [ -7.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 10.0 ], [ -6.5, 9.5 ], [ -7.0, 9.5 ], [ -7.0, 10.0 ], [ -6.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 10.0 ], [ -6.0, 9.5 ], [ -6.5, 9.5 ], [ -6.5, 10.0 ], [ -6.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 10.0 ], [ -5.5, 9.5 ], [ -6.0, 9.5 ], [ -6.0, 10.0 ], [ -5.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 10.0 ], [ -5.0, 9.5 ], [ -5.5, 9.5 ], [ -5.5, 10.0 ], [ -5.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 10.0 ], [ -4.5, 9.5 ], [ -5.0, 9.5 ], [ -5.0, 10.0 ], [ -4.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 10.0 ], [ -4.0, 9.5 ], [ -4.5, 9.5 ], [ -4.5, 10.0 ], [ -4.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 10.0 ], [ -3.5, 9.5 ], [ -4.0, 9.5 ], [ -4.0, 10.0 ], [ -3.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 10.0 ], [ -3.0, 9.5 ], [ -3.5, 9.5 ], [ -3.5, 10.0 ], [ -3.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 10.0 ], [ -2.5, 9.5 ], [ -3.0, 9.5 ], [ -3.0, 10.0 ], [ -2.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 10.0 ], [ -2.0, 9.5 ], [ -2.5, 9.5 ], [ -2.5, 10.0 ], [ -2.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 10.0 ], [ -1.5, 9.5 ], [ -2.0, 9.5 ], [ -2.0, 10.0 ], [ -1.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 10.0 ], [ -1.0, 9.5 ], [ -1.5, 9.5 ], [ -1.5, 10.0 ], [ -1.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 10.0 ], [ -0.5, 9.5 ], [ -1.0, 9.5 ], [ -1.0, 10.0 ], [ -0.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 10.0 ], [ 0.0, 9.5 ], [ -0.5, 9.5 ], [ -0.5, 10.0 ], [ 0.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 10.0 ], [ 0.5, 9.5 ], [ 0.0, 9.5 ], [ 0.0, 10.0 ], [ 0.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 10.0 ], [ 1.0, 9.5 ], [ 0.5, 9.5 ], [ 0.5, 10.0 ], [ 1.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 10.0 ], [ 1.5, 9.5 ], [ 1.0, 9.5 ], [ 1.0, 10.0 ], [ 1.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 10.0 ], [ 2.0, 9.5 ], [ 1.5, 9.5 ], [ 1.5, 10.0 ], [ 2.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 10.0 ], [ 2.5, 9.5 ], [ 2.0, 9.5 ], [ 2.0, 10.0 ], [ 2.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 10.0 ], [ 3.0, 9.5 ], [ 2.5, 9.5 ], [ 2.5, 10.0 ], [ 3.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 10.0 ], [ 3.5, 9.5 ], [ 3.0, 9.5 ], [ 3.0, 10.0 ], [ 3.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 10.0 ], [ 4.0, 9.5 ], [ 3.5, 9.5 ], [ 3.5, 10.0 ], [ 4.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 10.0 ], [ 4.5, 9.5 ], [ 4.0, 9.5 ], [ 4.0, 10.0 ], [ 4.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 10.0 ], [ 5.0, 9.5 ], [ 4.5, 9.5 ], [ 4.5, 10.0 ], [ 5.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 10.0 ], [ 5.5, 9.5 ], [ 5.0, 9.5 ], [ 5.0, 10.0 ], [ 5.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 10.0 ], [ 6.0, 9.5 ], [ 5.5, 9.5 ], [ 5.5, 10.0 ], [ 6.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 10.0 ], [ 6.5, 9.5 ], [ 6.0, 9.5 ], [ 6.0, 10.0 ], [ 6.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 10.0 ], [ 7.0, 9.5 ], [ 6.5, 9.5 ], [ 6.5, 10.0 ], [ 7.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 10.0 ], [ 7.5, 9.5 ], [ 7.0, 9.5 ], [ 7.0, 10.0 ], [ 7.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 10.0 ], [ 8.0, 9.5 ], [ 7.5, 9.5 ], [ 7.5, 10.0 ], [ 8.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 10.0 ], [ 8.5, 9.5 ], [ 8.0, 9.5 ], [ 8.0, 10.0 ], [ 8.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 10.0 ], [ 9.0, 9.5 ], [ 8.5, 9.5 ], [ 8.5, 10.0 ], [ 9.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 10.0 ], [ 9.5, 9.5 ], [ 9.0, 9.5 ], [ 9.0, 10.0 ], [ 9.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 10.0 ], [ 10.0, 9.5 ], [ 9.5, 9.5 ], [ 9.5, 10.0 ], [ 10.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 10.0 ], [ 10.5, 9.5 ], [ 10.0, 9.5 ], [ 10.0, 10.0 ], [ 10.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 10.0 ], [ 11.0, 9.5 ], [ 10.5, 9.5 ], [ 10.5, 10.0 ], [ 11.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 10.0 ], [ 11.5, 9.5 ], [ 11.0, 9.5 ], [ 11.0, 10.0 ], [ 11.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 10.0 ], [ 12.0, 9.5 ], [ 11.5, 9.5 ], [ 11.5, 10.0 ], [ 12.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 10.0 ], [ 12.5, 9.5 ], [ 12.0, 9.5 ], [ 12.0, 10.0 ], [ 12.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 10.0 ], [ 13.0, 9.5 ], [ 12.5, 9.5 ], [ 12.5, 10.0 ], [ 13.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 10.0 ], [ 13.5, 9.5 ], [ 13.0, 9.5 ], [ 13.0, 10.0 ], [ 13.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 10.0 ], [ 14.0, 9.5 ], [ 13.5, 9.5 ], [ 13.5, 10.0 ], [ 14.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 10.0 ], [ 14.5, 9.5 ], [ 14.0, 9.5 ], [ 14.0, 10.0 ], [ 14.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 10.0 ], [ 15.0, 9.5 ], [ 14.5, 9.5 ], [ 14.5, 10.0 ], [ 15.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 10.0 ], [ 15.5, 9.5 ], [ 15.0, 9.5 ], [ 15.0, 10.0 ], [ 15.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 10.0 ], [ 16.0, 9.5 ], [ 15.5, 9.5 ], [ 15.5, 10.0 ], [ 16.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 10.0 ], [ 16.5, 9.5 ], [ 16.0, 9.5 ], [ 16.0, 10.0 ], [ 16.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 10.0 ], [ 17.0, 9.5 ], [ 16.5, 9.5 ], [ 16.5, 10.0 ], [ 17.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 10.0 ], [ 17.5, 9.5 ], [ 17.0, 9.5 ], [ 17.0, 10.0 ], [ 17.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 10.0 ], [ 18.0, 9.5 ], [ 17.5, 9.5 ], [ 17.5, 10.0 ], [ 18.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 10.0 ], [ 18.5, 9.5 ], [ 18.0, 9.5 ], [ 18.0, 10.0 ], [ 18.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 10.0 ], [ 19.0, 9.5 ], [ 18.5, 9.5 ], [ 18.5, 10.0 ], [ 19.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 10.0 ], [ 19.5, 9.5 ], [ 19.0, 9.5 ], [ 19.0, 10.0 ], [ 19.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 10.0 ], [ 20.0, 9.5 ], [ 19.5, 9.5 ], [ 19.5, 10.0 ], [ 20.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 10.0 ], [ 20.5, 9.5 ], [ 20.0, 9.5 ], [ 20.0, 10.0 ], [ 20.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 10.0 ], [ 21.0, 9.5 ], [ 20.5, 9.5 ], [ 20.5, 10.0 ], [ 21.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 10.0 ], [ 21.5, 9.5 ], [ 21.0, 9.5 ], [ 21.0, 10.0 ], [ 21.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 10.0 ], [ 22.0, 9.5 ], [ 21.5, 9.5 ], [ 21.5, 10.0 ], [ 22.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 10.0 ], [ 22.5, 9.5 ], [ 22.0, 9.5 ], [ 22.0, 10.0 ], [ 22.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 10.0 ], [ 23.0, 9.5 ], [ 22.5, 9.5 ], [ 22.5, 10.0 ], [ 23.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 10.0 ], [ 23.5, 9.5 ], [ 23.0, 9.5 ], [ 23.0, 10.0 ], [ 23.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 10.0 ], [ 24.0, 9.5 ], [ 23.5, 9.5 ], [ 23.5, 10.0 ], [ 24.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 10.0 ], [ 24.5, 9.5 ], [ 24.0, 9.5 ], [ 24.0, 10.0 ], [ 24.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 10.0 ], [ 25.0, 9.5 ], [ 24.5, 9.5 ], [ 24.5, 10.0 ], [ 25.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 10.0 ], [ 25.5, 9.5 ], [ 25.0, 9.5 ], [ 25.0, 10.0 ], [ 25.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 10.0 ], [ 26.0, 9.5 ], [ 25.5, 9.5 ], [ 25.5, 10.0 ], [ 26.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 10.0 ], [ 26.5, 9.5 ], [ 26.0, 9.5 ], [ 26.0, 10.0 ], [ 26.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 10.0 ], [ 27.0, 9.5 ], [ 26.5, 9.5 ], [ 26.5, 10.0 ], [ 27.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 10.0 ], [ 27.5, 9.5 ], [ 27.0, 9.5 ], [ 27.0, 10.0 ], [ 27.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 10.0 ], [ 28.0, 9.5 ], [ 27.5, 9.5 ], [ 27.5, 10.0 ], [ 28.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 10.0 ], [ 28.5, 9.5 ], [ 28.0, 9.5 ], [ 28.0, 10.0 ], [ 28.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 10.0 ], [ 29.0, 9.5 ], [ 28.5, 9.5 ], [ 28.5, 10.0 ], [ 29.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 10.0 ], [ 29.5, 9.5 ], [ 29.0, 9.5 ], [ 29.0, 10.0 ], [ 29.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 10.0 ], [ 30.0, 9.5 ], [ 29.5, 9.5 ], [ 29.5, 10.0 ], [ 30.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 10.0 ], [ 30.5, 9.5 ], [ 30.0, 9.5 ], [ 30.0, 10.0 ], [ 30.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 10.0 ], [ 31.0, 9.5 ], [ 30.5, 9.5 ], [ 30.5, 10.0 ], [ 31.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 10.0 ], [ 31.5, 9.5 ], [ 31.0, 9.5 ], [ 31.0, 10.0 ], [ 31.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 10.0 ], [ 32.0, 9.5 ], [ 31.5, 9.5 ], [ 31.5, 10.0 ], [ 32.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 10.0 ], [ 32.5, 9.5 ], [ 32.0, 9.5 ], [ 32.0, 10.0 ], [ 32.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 10.0 ], [ 33.0, 9.5 ], [ 32.5, 9.5 ], [ 32.5, 10.0 ], [ 33.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 10.0 ], [ 33.5, 9.5 ], [ 33.0, 9.5 ], [ 33.0, 10.0 ], [ 33.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 10.0 ], [ 34.0, 9.5 ], [ 33.5, 9.5 ], [ 33.5, 10.0 ], [ 34.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 10.0 ], [ 34.5, 9.5 ], [ 34.0, 9.5 ], [ 34.0, 10.0 ], [ 34.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 10.0 ], [ 35.0, 9.5 ], [ 34.5, 9.5 ], [ 34.5, 10.0 ], [ 35.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 10.0 ], [ 35.5, 9.5 ], [ 35.0, 9.5 ], [ 35.0, 10.0 ], [ 35.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 10.0 ], [ 36.0, 9.5 ], [ 35.5, 9.5 ], [ 35.5, 10.0 ], [ 36.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 10.0 ], [ 36.5, 9.5 ], [ 36.0, 9.5 ], [ 36.0, 10.0 ], [ 36.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 10.0 ], [ 37.0, 9.5 ], [ 36.5, 9.5 ], [ 36.5, 10.0 ], [ 37.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 10.0 ], [ 37.5, 9.5 ], [ 37.0, 9.5 ], [ 37.0, 10.0 ], [ 37.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 10.0 ], [ 38.0, 9.5 ], [ 37.5, 9.5 ], [ 37.5, 10.0 ], [ 38.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 10.0 ], [ 38.5, 9.5 ], [ 38.0, 9.5 ], [ 38.0, 10.0 ], [ 38.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 10.0 ], [ 39.0, 9.5 ], [ 38.5, 9.5 ], [ 38.5, 10.0 ], [ 39.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 10.0 ], [ 39.5, 9.5 ], [ 39.0, 9.5 ], [ 39.0, 10.0 ], [ 39.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 10.0 ], [ 40.0, 9.5 ], [ 39.5, 9.5 ], [ 39.5, 10.0 ], [ 40.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 10.0 ], [ 40.5, 9.5 ], [ 40.0, 9.5 ], [ 40.0, 10.0 ], [ 40.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 10.0 ], [ 41.0, 9.5 ], [ 40.5, 9.5 ], [ 40.5, 10.0 ], [ 41.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 10.0 ], [ 41.5, 9.5 ], [ 41.0, 9.5 ], [ 41.0, 10.0 ], [ 41.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 10.0 ], [ 42.0, 9.5 ], [ 41.5, 9.5 ], [ 41.5, 10.0 ], [ 42.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 10.0 ], [ 42.5, 9.5 ], [ 42.0, 9.5 ], [ 42.0, 10.0 ], [ 42.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 10.0 ], [ 43.0, 9.5 ], [ 42.5, 9.5 ], [ 42.5, 10.0 ], [ 43.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 10.0 ], [ 43.5, 9.5 ], [ 43.0, 9.5 ], [ 43.0, 10.0 ], [ 43.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 10.0 ], [ 44.0, 9.5 ], [ 43.5, 9.5 ], [ 43.5, 10.0 ], [ 44.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 10.0 ], [ 44.5, 9.5 ], [ 44.0, 9.5 ], [ 44.0, 10.0 ], [ 44.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 10.0 ], [ 45.0, 9.5 ], [ 44.5, 9.5 ], [ 44.5, 10.0 ], [ 45.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, 10.0 ], [ 45.5, 9.5 ], [ 45.0, 9.5 ], [ 45.0, 10.0 ], [ 45.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 10.0 ], [ 46.0, 9.5 ], [ 45.5, 9.5 ], [ 45.5, 10.0 ], [ 46.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, 10.0 ], [ 46.5, 9.5 ], [ 46.0, 9.5 ], [ 46.0, 10.0 ], [ 46.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, 10.0 ], [ 47.0, 9.5 ], [ 46.5, 9.5 ], [ 46.5, 10.0 ], [ 47.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, 10.0 ], [ 47.5, 9.5 ], [ 47.0, 9.5 ], [ 47.0, 10.0 ], [ 47.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, 10.0 ], [ 48.0, 9.5 ], [ 47.5, 9.5 ], [ 47.5, 10.0 ], [ 48.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, 10.0 ], [ 48.5, 9.5 ], [ 48.0, 9.5 ], [ 48.0, 10.0 ], [ 48.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, 10.0 ], [ 49.0, 9.5 ], [ 48.5, 9.5 ], [ 48.5, 10.0 ], [ 49.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, 10.0 ], [ 49.5, 9.5 ], [ 49.0, 9.5 ], [ 49.0, 10.0 ], [ 49.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.0, 10.0 ], [ 50.0, 9.5 ], [ 49.5, 9.5 ], [ 49.5, 10.0 ], [ 50.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.5, 10.0 ], [ 50.5, 9.5 ], [ 50.0, 9.5 ], [ 50.0, 10.0 ], [ 50.5, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.0, 10.0 ], [ 51.0, 9.5 ], [ 50.5, 9.5 ], [ 50.5, 10.0 ], [ 51.0, 10.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 10.5 ], [ -14.0, 10.0 ], [ -14.5, 10.0 ], [ -14.5, 10.5 ], [ -14.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 10.5 ], [ -13.5, 10.0 ], [ -14.0, 10.0 ], [ -14.0, 10.5 ], [ -13.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 10.5 ], [ -13.0, 10.0 ], [ -13.5, 10.0 ], [ -13.5, 10.5 ], [ -13.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 10.5 ], [ -12.5, 10.0 ], [ -13.0, 10.0 ], [ -13.0, 10.5 ], [ -12.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 10.5 ], [ -12.0, 10.0 ], [ -12.5, 10.0 ], [ -12.5, 10.5 ], [ -12.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 10.5 ], [ -11.5, 10.0 ], [ -12.0, 10.0 ], [ -12.0, 10.5 ], [ -11.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 10.5 ], [ -11.0, 10.0 ], [ -11.5, 10.0 ], [ -11.5, 10.5 ], [ -11.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 10.5 ], [ -10.5, 10.0 ], [ -11.0, 10.0 ], [ -11.0, 10.5 ], [ -10.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 10.5 ], [ -10.0, 10.0 ], [ -10.5, 10.0 ], [ -10.5, 10.5 ], [ -10.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 10.5 ], [ -9.5, 10.0 ], [ -10.0, 10.0 ], [ -10.0, 10.5 ], [ -9.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 10.5 ], [ -9.0, 10.0 ], [ -9.5, 10.0 ], [ -9.5, 10.5 ], [ -9.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 10.5 ], [ -8.5, 10.0 ], [ -9.0, 10.0 ], [ -9.0, 10.5 ], [ -8.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 10.5 ], [ -8.0, 10.0 ], [ -8.5, 10.0 ], [ -8.5, 10.5 ], [ -8.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 10.5 ], [ -7.5, 10.0 ], [ -8.0, 10.0 ], [ -8.0, 10.5 ], [ -7.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 10.5 ], [ -7.0, 10.0 ], [ -7.5, 10.0 ], [ -7.5, 10.5 ], [ -7.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 10.5 ], [ -6.5, 10.0 ], [ -7.0, 10.0 ], [ -7.0, 10.5 ], [ -6.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 10.5 ], [ -6.0, 10.0 ], [ -6.5, 10.0 ], [ -6.5, 10.5 ], [ -6.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 10.5 ], [ -5.5, 10.0 ], [ -6.0, 10.0 ], [ -6.0, 10.5 ], [ -5.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 10.5 ], [ -5.0, 10.0 ], [ -5.5, 10.0 ], [ -5.5, 10.5 ], [ -5.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 10.5 ], [ -4.5, 10.0 ], [ -5.0, 10.0 ], [ -5.0, 10.5 ], [ -4.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 10.5 ], [ -4.0, 10.0 ], [ -4.5, 10.0 ], [ -4.5, 10.5 ], [ -4.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 10.5 ], [ -3.5, 10.0 ], [ -4.0, 10.0 ], [ -4.0, 10.5 ], [ -3.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 10.5 ], [ -3.0, 10.0 ], [ -3.5, 10.0 ], [ -3.5, 10.5 ], [ -3.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 10.5 ], [ -2.5, 10.0 ], [ -3.0, 10.0 ], [ -3.0, 10.5 ], [ -2.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 10.5 ], [ -2.0, 10.0 ], [ -2.5, 10.0 ], [ -2.5, 10.5 ], [ -2.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 10.5 ], [ -1.5, 10.0 ], [ -2.0, 10.0 ], [ -2.0, 10.5 ], [ -1.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 10.5 ], [ -1.0, 10.0 ], [ -1.5, 10.0 ], [ -1.5, 10.5 ], [ -1.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 10.5 ], [ -0.5, 10.0 ], [ -1.0, 10.0 ], [ -1.0, 10.5 ], [ -0.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 10.5 ], [ 0.0, 10.0 ], [ -0.5, 10.0 ], [ -0.5, 10.5 ], [ 0.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 10.5 ], [ 0.5, 10.0 ], [ 0.0, 10.0 ], [ 0.0, 10.5 ], [ 0.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 10.5 ], [ 1.0, 10.0 ], [ 0.5, 10.0 ], [ 0.5, 10.5 ], [ 1.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 10.5 ], [ 1.5, 10.0 ], [ 1.0, 10.0 ], [ 1.0, 10.5 ], [ 1.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 10.5 ], [ 2.0, 10.0 ], [ 1.5, 10.0 ], [ 1.5, 10.5 ], [ 2.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 10.5 ], [ 2.5, 10.0 ], [ 2.0, 10.0 ], [ 2.0, 10.5 ], [ 2.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 10.5 ], [ 3.0, 10.0 ], [ 2.5, 10.0 ], [ 2.5, 10.5 ], [ 3.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 10.5 ], [ 3.5, 10.0 ], [ 3.0, 10.0 ], [ 3.0, 10.5 ], [ 3.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 10.5 ], [ 4.0, 10.0 ], [ 3.5, 10.0 ], [ 3.5, 10.5 ], [ 4.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 10.5 ], [ 4.5, 10.0 ], [ 4.0, 10.0 ], [ 4.0, 10.5 ], [ 4.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 10.5 ], [ 5.0, 10.0 ], [ 4.5, 10.0 ], [ 4.5, 10.5 ], [ 5.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 10.5 ], [ 5.5, 10.0 ], [ 5.0, 10.0 ], [ 5.0, 10.5 ], [ 5.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 10.5 ], [ 6.0, 10.0 ], [ 5.5, 10.0 ], [ 5.5, 10.5 ], [ 6.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 10.5 ], [ 6.5, 10.0 ], [ 6.0, 10.0 ], [ 6.0, 10.5 ], [ 6.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 10.5 ], [ 7.0, 10.0 ], [ 6.5, 10.0 ], [ 6.5, 10.5 ], [ 7.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 10.5 ], [ 7.5, 10.0 ], [ 7.0, 10.0 ], [ 7.0, 10.5 ], [ 7.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 10.5 ], [ 8.0, 10.0 ], [ 7.5, 10.0 ], [ 7.5, 10.5 ], [ 8.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 10.5 ], [ 8.5, 10.0 ], [ 8.0, 10.0 ], [ 8.0, 10.5 ], [ 8.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 10.5 ], [ 9.0, 10.0 ], [ 8.5, 10.0 ], [ 8.5, 10.5 ], [ 9.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 10.5 ], [ 9.5, 10.0 ], [ 9.0, 10.0 ], [ 9.0, 10.5 ], [ 9.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 10.5 ], [ 10.0, 10.0 ], [ 9.5, 10.0 ], [ 9.5, 10.5 ], [ 10.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 10.5 ], [ 10.5, 10.0 ], [ 10.0, 10.0 ], [ 10.0, 10.5 ], [ 10.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 10.5 ], [ 11.0, 10.0 ], [ 10.5, 10.0 ], [ 10.5, 10.5 ], [ 11.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 10.5 ], [ 11.5, 10.0 ], [ 11.0, 10.0 ], [ 11.0, 10.5 ], [ 11.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 10.5 ], [ 12.0, 10.0 ], [ 11.5, 10.0 ], [ 11.5, 10.5 ], [ 12.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 10.5 ], [ 12.5, 10.0 ], [ 12.0, 10.0 ], [ 12.0, 10.5 ], [ 12.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 10.5 ], [ 13.0, 10.0 ], [ 12.5, 10.0 ], [ 12.5, 10.5 ], [ 13.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 10.5 ], [ 13.5, 10.0 ], [ 13.0, 10.0 ], [ 13.0, 10.5 ], [ 13.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 10.5 ], [ 14.0, 10.0 ], [ 13.5, 10.0 ], [ 13.5, 10.5 ], [ 14.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 10.5 ], [ 14.5, 10.0 ], [ 14.0, 10.0 ], [ 14.0, 10.5 ], [ 14.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 10.5 ], [ 15.0, 10.0 ], [ 14.5, 10.0 ], [ 14.5, 10.5 ], [ 15.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 10.5 ], [ 15.5, 10.0 ], [ 15.0, 10.0 ], [ 15.0, 10.5 ], [ 15.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 10.5 ], [ 16.0, 10.0 ], [ 15.5, 10.0 ], [ 15.5, 10.5 ], [ 16.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 10.5 ], [ 16.5, 10.0 ], [ 16.0, 10.0 ], [ 16.0, 10.5 ], [ 16.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 10.5 ], [ 17.0, 10.0 ], [ 16.5, 10.0 ], [ 16.5, 10.5 ], [ 17.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 10.5 ], [ 17.5, 10.0 ], [ 17.0, 10.0 ], [ 17.0, 10.5 ], [ 17.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 10.5 ], [ 18.0, 10.0 ], [ 17.5, 10.0 ], [ 17.5, 10.5 ], [ 18.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 10.5 ], [ 18.5, 10.0 ], [ 18.0, 10.0 ], [ 18.0, 10.5 ], [ 18.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 10.5 ], [ 19.0, 10.0 ], [ 18.5, 10.0 ], [ 18.5, 10.5 ], [ 19.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 10.5 ], [ 19.5, 10.0 ], [ 19.0, 10.0 ], [ 19.0, 10.5 ], [ 19.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 10.5 ], [ 20.0, 10.0 ], [ 19.5, 10.0 ], [ 19.5, 10.5 ], [ 20.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 10.5 ], [ 20.5, 10.0 ], [ 20.0, 10.0 ], [ 20.0, 10.5 ], [ 20.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 10.5 ], [ 21.0, 10.0 ], [ 20.5, 10.0 ], [ 20.5, 10.5 ], [ 21.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 10.5 ], [ 21.5, 10.0 ], [ 21.0, 10.0 ], [ 21.0, 10.5 ], [ 21.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 10.5 ], [ 22.0, 10.0 ], [ 21.5, 10.0 ], [ 21.5, 10.5 ], [ 22.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 10.5 ], [ 22.5, 10.0 ], [ 22.0, 10.0 ], [ 22.0, 10.5 ], [ 22.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 10.5 ], [ 23.0, 10.0 ], [ 22.5, 10.0 ], [ 22.5, 10.5 ], [ 23.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 10.5 ], [ 23.5, 10.0 ], [ 23.0, 10.0 ], [ 23.0, 10.5 ], [ 23.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 10.5 ], [ 24.0, 10.0 ], [ 23.5, 10.0 ], [ 23.5, 10.5 ], [ 24.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 10.5 ], [ 24.5, 10.0 ], [ 24.0, 10.0 ], [ 24.0, 10.5 ], [ 24.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 10.5 ], [ 25.0, 10.0 ], [ 24.5, 10.0 ], [ 24.5, 10.5 ], [ 25.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 10.5 ], [ 25.5, 10.0 ], [ 25.0, 10.0 ], [ 25.0, 10.5 ], [ 25.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 10.5 ], [ 26.0, 10.0 ], [ 25.5, 10.0 ], [ 25.5, 10.5 ], [ 26.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 10.5 ], [ 26.5, 10.0 ], [ 26.0, 10.0 ], [ 26.0, 10.5 ], [ 26.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 10.5 ], [ 27.0, 10.0 ], [ 26.5, 10.0 ], [ 26.5, 10.5 ], [ 27.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 10.5 ], [ 27.5, 10.0 ], [ 27.0, 10.0 ], [ 27.0, 10.5 ], [ 27.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 10.5 ], [ 28.0, 10.0 ], [ 27.5, 10.0 ], [ 27.5, 10.5 ], [ 28.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 10.5 ], [ 28.5, 10.0 ], [ 28.0, 10.0 ], [ 28.0, 10.5 ], [ 28.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 10.5 ], [ 29.0, 10.0 ], [ 28.5, 10.0 ], [ 28.5, 10.5 ], [ 29.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 10.5 ], [ 29.5, 10.0 ], [ 29.0, 10.0 ], [ 29.0, 10.5 ], [ 29.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 10.5 ], [ 30.0, 10.0 ], [ 29.5, 10.0 ], [ 29.5, 10.5 ], [ 30.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 10.5 ], [ 30.5, 10.0 ], [ 30.0, 10.0 ], [ 30.0, 10.5 ], [ 30.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 10.5 ], [ 31.0, 10.0 ], [ 30.5, 10.0 ], [ 30.5, 10.5 ], [ 31.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 10.5 ], [ 31.5, 10.0 ], [ 31.0, 10.0 ], [ 31.0, 10.5 ], [ 31.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 10.5 ], [ 32.0, 10.0 ], [ 31.5, 10.0 ], [ 31.5, 10.5 ], [ 32.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 10.5 ], [ 32.5, 10.0 ], [ 32.0, 10.0 ], [ 32.0, 10.5 ], [ 32.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 10.5 ], [ 33.0, 10.0 ], [ 32.5, 10.0 ], [ 32.5, 10.5 ], [ 33.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 10.5 ], [ 33.5, 10.0 ], [ 33.0, 10.0 ], [ 33.0, 10.5 ], [ 33.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 10.5 ], [ 34.0, 10.0 ], [ 33.5, 10.0 ], [ 33.5, 10.5 ], [ 34.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 10.5 ], [ 34.5, 10.0 ], [ 34.0, 10.0 ], [ 34.0, 10.5 ], [ 34.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 10.5 ], [ 35.0, 10.0 ], [ 34.5, 10.0 ], [ 34.5, 10.5 ], [ 35.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 10.5 ], [ 35.5, 10.0 ], [ 35.0, 10.0 ], [ 35.0, 10.5 ], [ 35.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 10.5 ], [ 36.0, 10.0 ], [ 35.5, 10.0 ], [ 35.5, 10.5 ], [ 36.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 10.5 ], [ 36.5, 10.0 ], [ 36.0, 10.0 ], [ 36.0, 10.5 ], [ 36.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 10.5 ], [ 37.0, 10.0 ], [ 36.5, 10.0 ], [ 36.5, 10.5 ], [ 37.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 10.5 ], [ 37.5, 10.0 ], [ 37.0, 10.0 ], [ 37.0, 10.5 ], [ 37.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 10.5 ], [ 38.0, 10.0 ], [ 37.5, 10.0 ], [ 37.5, 10.5 ], [ 38.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 10.5 ], [ 38.5, 10.0 ], [ 38.0, 10.0 ], [ 38.0, 10.5 ], [ 38.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 10.5 ], [ 39.0, 10.0 ], [ 38.5, 10.0 ], [ 38.5, 10.5 ], [ 39.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 10.5 ], [ 39.5, 10.0 ], [ 39.0, 10.0 ], [ 39.0, 10.5 ], [ 39.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 10.5 ], [ 40.0, 10.0 ], [ 39.5, 10.0 ], [ 39.5, 10.5 ], [ 40.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 10.5 ], [ 40.5, 10.0 ], [ 40.0, 10.0 ], [ 40.0, 10.5 ], [ 40.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 10.5 ], [ 41.0, 10.0 ], [ 40.5, 10.0 ], [ 40.5, 10.5 ], [ 41.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 10.5 ], [ 41.5, 10.0 ], [ 41.0, 10.0 ], [ 41.0, 10.5 ], [ 41.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 10.5 ], [ 42.0, 10.0 ], [ 41.5, 10.0 ], [ 41.5, 10.5 ], [ 42.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 10.5 ], [ 42.5, 10.0 ], [ 42.0, 10.0 ], [ 42.0, 10.5 ], [ 42.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 10.5 ], [ 43.0, 10.0 ], [ 42.5, 10.0 ], [ 42.5, 10.5 ], [ 43.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 10.5 ], [ 43.5, 10.0 ], [ 43.0, 10.0 ], [ 43.0, 10.5 ], [ 43.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 10.5 ], [ 44.0, 10.0 ], [ 43.5, 10.0 ], [ 43.5, 10.5 ], [ 44.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.5, 10.5 ], [ 44.5, 10.0 ], [ 44.0, 10.0 ], [ 44.0, 10.5 ], [ 44.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.0, 10.5 ], [ 45.0, 10.0 ], [ 44.5, 10.0 ], [ 44.5, 10.5 ], [ 45.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.5, 10.5 ], [ 45.5, 10.0 ], [ 45.0, 10.0 ], [ 45.0, 10.5 ], [ 45.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 10.5 ], [ 46.0, 10.0 ], [ 45.5, 10.0 ], [ 45.5, 10.5 ], [ 46.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.5, 10.5 ], [ 46.5, 10.0 ], [ 46.0, 10.0 ], [ 46.0, 10.5 ], [ 46.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, 10.5 ], [ 47.0, 10.0 ], [ 46.5, 10.0 ], [ 46.5, 10.5 ], [ 47.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, 10.5 ], [ 47.5, 10.0 ], [ 47.0, 10.0 ], [ 47.0, 10.5 ], [ 47.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, 10.5 ], [ 48.0, 10.0 ], [ 47.5, 10.0 ], [ 47.5, 10.5 ], [ 48.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, 10.5 ], [ 48.5, 10.0 ], [ 48.0, 10.0 ], [ 48.0, 10.5 ], [ 48.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, 10.5 ], [ 49.0, 10.0 ], [ 48.5, 10.0 ], [ 48.5, 10.5 ], [ 49.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, 10.5 ], [ 49.5, 10.0 ], [ 49.0, 10.0 ], [ 49.0, 10.5 ], [ 49.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.0, 10.5 ], [ 50.0, 10.0 ], [ 49.5, 10.0 ], [ 49.5, 10.5 ], [ 50.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.5, 10.5 ], [ 50.5, 10.0 ], [ 50.0, 10.0 ], [ 50.0, 10.5 ], [ 50.5, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.0, 10.5 ], [ 51.0, 10.0 ], [ 50.5, 10.0 ], [ 50.5, 10.5 ], [ 51.0, 10.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 11.0 ], [ -14.0, 10.5 ], [ -14.5, 10.5 ], [ -14.5, 11.0 ], [ -14.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 11.0 ], [ -13.5, 10.5 ], [ -14.0, 10.5 ], [ -14.0, 11.0 ], [ -13.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 11.0 ], [ -13.0, 10.5 ], [ -13.5, 10.5 ], [ -13.5, 11.0 ], [ -13.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 11.0 ], [ -12.5, 10.5 ], [ -13.0, 10.5 ], [ -13.0, 11.0 ], [ -12.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 11.0 ], [ -12.0, 10.5 ], [ -12.5, 10.5 ], [ -12.5, 11.0 ], [ -12.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 11.0 ], [ -11.5, 10.5 ], [ -12.0, 10.5 ], [ -12.0, 11.0 ], [ -11.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 11.0 ], [ -11.0, 10.5 ], [ -11.5, 10.5 ], [ -11.5, 11.0 ], [ -11.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 11.0 ], [ -10.5, 10.5 ], [ -11.0, 10.5 ], [ -11.0, 11.0 ], [ -10.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 11.0 ], [ -10.0, 10.5 ], [ -10.5, 10.5 ], [ -10.5, 11.0 ], [ -10.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 11.0 ], [ -9.5, 10.5 ], [ -10.0, 10.5 ], [ -10.0, 11.0 ], [ -9.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 11.0 ], [ -9.0, 10.5 ], [ -9.5, 10.5 ], [ -9.5, 11.0 ], [ -9.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 11.0 ], [ -8.5, 10.5 ], [ -9.0, 10.5 ], [ -9.0, 11.0 ], [ -8.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 11.0 ], [ -8.0, 10.5 ], [ -8.5, 10.5 ], [ -8.5, 11.0 ], [ -8.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 11.0 ], [ -7.5, 10.5 ], [ -8.0, 10.5 ], [ -8.0, 11.0 ], [ -7.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 11.0 ], [ -7.0, 10.5 ], [ -7.5, 10.5 ], [ -7.5, 11.0 ], [ -7.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 11.0 ], [ -6.5, 10.5 ], [ -7.0, 10.5 ], [ -7.0, 11.0 ], [ -6.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 11.0 ], [ -6.0, 10.5 ], [ -6.5, 10.5 ], [ -6.5, 11.0 ], [ -6.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 11.0 ], [ -5.5, 10.5 ], [ -6.0, 10.5 ], [ -6.0, 11.0 ], [ -5.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 11.0 ], [ -5.0, 10.5 ], [ -5.5, 10.5 ], [ -5.5, 11.0 ], [ -5.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 11.0 ], [ -4.5, 10.5 ], [ -5.0, 10.5 ], [ -5.0, 11.0 ], [ -4.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 11.0 ], [ -4.0, 10.5 ], [ -4.5, 10.5 ], [ -4.5, 11.0 ], [ -4.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 11.0 ], [ -3.5, 10.5 ], [ -4.0, 10.5 ], [ -4.0, 11.0 ], [ -3.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 11.0 ], [ -3.0, 10.5 ], [ -3.5, 10.5 ], [ -3.5, 11.0 ], [ -3.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 11.0 ], [ -2.5, 10.5 ], [ -3.0, 10.5 ], [ -3.0, 11.0 ], [ -2.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 11.0 ], [ -2.0, 10.5 ], [ -2.5, 10.5 ], [ -2.5, 11.0 ], [ -2.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 11.0 ], [ -1.5, 10.5 ], [ -2.0, 10.5 ], [ -2.0, 11.0 ], [ -1.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 11.0 ], [ -1.0, 10.5 ], [ -1.5, 10.5 ], [ -1.5, 11.0 ], [ -1.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 11.0 ], [ -0.5, 10.5 ], [ -1.0, 10.5 ], [ -1.0, 11.0 ], [ -0.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 11.0 ], [ 0.0, 10.5 ], [ -0.5, 10.5 ], [ -0.5, 11.0 ], [ 0.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 11.0 ], [ 0.5, 10.5 ], [ 0.0, 10.5 ], [ 0.0, 11.0 ], [ 0.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 11.0 ], [ 1.0, 10.5 ], [ 0.5, 10.5 ], [ 0.5, 11.0 ], [ 1.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 11.0 ], [ 1.5, 10.5 ], [ 1.0, 10.5 ], [ 1.0, 11.0 ], [ 1.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 11.0 ], [ 2.0, 10.5 ], [ 1.5, 10.5 ], [ 1.5, 11.0 ], [ 2.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 11.0 ], [ 2.5, 10.5 ], [ 2.0, 10.5 ], [ 2.0, 11.0 ], [ 2.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 11.0 ], [ 3.0, 10.5 ], [ 2.5, 10.5 ], [ 2.5, 11.0 ], [ 3.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 11.0 ], [ 3.5, 10.5 ], [ 3.0, 10.5 ], [ 3.0, 11.0 ], [ 3.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 11.0 ], [ 4.0, 10.5 ], [ 3.5, 10.5 ], [ 3.5, 11.0 ], [ 4.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 11.0 ], [ 4.5, 10.5 ], [ 4.0, 10.5 ], [ 4.0, 11.0 ], [ 4.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 11.0 ], [ 5.0, 10.5 ], [ 4.5, 10.5 ], [ 4.5, 11.0 ], [ 5.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 11.0 ], [ 5.5, 10.5 ], [ 5.0, 10.5 ], [ 5.0, 11.0 ], [ 5.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 11.0 ], [ 6.0, 10.5 ], [ 5.5, 10.5 ], [ 5.5, 11.0 ], [ 6.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 11.0 ], [ 6.5, 10.5 ], [ 6.0, 10.5 ], [ 6.0, 11.0 ], [ 6.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 11.0 ], [ 7.0, 10.5 ], [ 6.5, 10.5 ], [ 6.5, 11.0 ], [ 7.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 11.0 ], [ 7.5, 10.5 ], [ 7.0, 10.5 ], [ 7.0, 11.0 ], [ 7.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 11.0 ], [ 8.0, 10.5 ], [ 7.5, 10.5 ], [ 7.5, 11.0 ], [ 8.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 11.0 ], [ 8.5, 10.5 ], [ 8.0, 10.5 ], [ 8.0, 11.0 ], [ 8.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 11.0 ], [ 9.0, 10.5 ], [ 8.5, 10.5 ], [ 8.5, 11.0 ], [ 9.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 11.0 ], [ 9.5, 10.5 ], [ 9.0, 10.5 ], [ 9.0, 11.0 ], [ 9.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 11.0 ], [ 10.0, 10.5 ], [ 9.5, 10.5 ], [ 9.5, 11.0 ], [ 10.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 11.0 ], [ 10.5, 10.5 ], [ 10.0, 10.5 ], [ 10.0, 11.0 ], [ 10.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 11.0 ], [ 11.0, 10.5 ], [ 10.5, 10.5 ], [ 10.5, 11.0 ], [ 11.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 11.0 ], [ 11.5, 10.5 ], [ 11.0, 10.5 ], [ 11.0, 11.0 ], [ 11.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 11.0 ], [ 12.0, 10.5 ], [ 11.5, 10.5 ], [ 11.5, 11.0 ], [ 12.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 11.0 ], [ 12.5, 10.5 ], [ 12.0, 10.5 ], [ 12.0, 11.0 ], [ 12.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 11.0 ], [ 13.0, 10.5 ], [ 12.5, 10.5 ], [ 12.5, 11.0 ], [ 13.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 11.0 ], [ 13.5, 10.5 ], [ 13.0, 10.5 ], [ 13.0, 11.0 ], [ 13.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 11.0 ], [ 14.0, 10.5 ], [ 13.5, 10.5 ], [ 13.5, 11.0 ], [ 14.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 11.0 ], [ 14.5, 10.5 ], [ 14.0, 10.5 ], [ 14.0, 11.0 ], [ 14.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 11.0 ], [ 15.0, 10.5 ], [ 14.5, 10.5 ], [ 14.5, 11.0 ], [ 15.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 11.0 ], [ 15.5, 10.5 ], [ 15.0, 10.5 ], [ 15.0, 11.0 ], [ 15.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 11.0 ], [ 16.0, 10.5 ], [ 15.5, 10.5 ], [ 15.5, 11.0 ], [ 16.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 11.0 ], [ 16.5, 10.5 ], [ 16.0, 10.5 ], [ 16.0, 11.0 ], [ 16.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 11.0 ], [ 17.0, 10.5 ], [ 16.5, 10.5 ], [ 16.5, 11.0 ], [ 17.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 11.0 ], [ 17.5, 10.5 ], [ 17.0, 10.5 ], [ 17.0, 11.0 ], [ 17.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 11.0 ], [ 18.0, 10.5 ], [ 17.5, 10.5 ], [ 17.5, 11.0 ], [ 18.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 11.0 ], [ 18.5, 10.5 ], [ 18.0, 10.5 ], [ 18.0, 11.0 ], [ 18.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 11.0 ], [ 19.0, 10.5 ], [ 18.5, 10.5 ], [ 18.5, 11.0 ], [ 19.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 11.0 ], [ 19.5, 10.5 ], [ 19.0, 10.5 ], [ 19.0, 11.0 ], [ 19.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 11.0 ], [ 20.0, 10.5 ], [ 19.5, 10.5 ], [ 19.5, 11.0 ], [ 20.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 11.0 ], [ 20.5, 10.5 ], [ 20.0, 10.5 ], [ 20.0, 11.0 ], [ 20.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 11.0 ], [ 21.0, 10.5 ], [ 20.5, 10.5 ], [ 20.5, 11.0 ], [ 21.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 11.0 ], [ 21.5, 10.5 ], [ 21.0, 10.5 ], [ 21.0, 11.0 ], [ 21.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 11.0 ], [ 22.0, 10.5 ], [ 21.5, 10.5 ], [ 21.5, 11.0 ], [ 22.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 11.0 ], [ 22.5, 10.5 ], [ 22.0, 10.5 ], [ 22.0, 11.0 ], [ 22.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 11.0 ], [ 23.0, 10.5 ], [ 22.5, 10.5 ], [ 22.5, 11.0 ], [ 23.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 11.0 ], [ 23.5, 10.5 ], [ 23.0, 10.5 ], [ 23.0, 11.0 ], [ 23.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 11.0 ], [ 24.0, 10.5 ], [ 23.5, 10.5 ], [ 23.5, 11.0 ], [ 24.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 11.0 ], [ 24.5, 10.5 ], [ 24.0, 10.5 ], [ 24.0, 11.0 ], [ 24.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 11.0 ], [ 25.0, 10.5 ], [ 24.5, 10.5 ], [ 24.5, 11.0 ], [ 25.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 11.0 ], [ 25.5, 10.5 ], [ 25.0, 10.5 ], [ 25.0, 11.0 ], [ 25.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 11.0 ], [ 26.0, 10.5 ], [ 25.5, 10.5 ], [ 25.5, 11.0 ], [ 26.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 11.0 ], [ 26.5, 10.5 ], [ 26.0, 10.5 ], [ 26.0, 11.0 ], [ 26.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 11.0 ], [ 27.0, 10.5 ], [ 26.5, 10.5 ], [ 26.5, 11.0 ], [ 27.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 11.0 ], [ 27.5, 10.5 ], [ 27.0, 10.5 ], [ 27.0, 11.0 ], [ 27.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 11.0 ], [ 28.0, 10.5 ], [ 27.5, 10.5 ], [ 27.5, 11.0 ], [ 28.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 11.0 ], [ 28.5, 10.5 ], [ 28.0, 10.5 ], [ 28.0, 11.0 ], [ 28.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 11.0 ], [ 29.0, 10.5 ], [ 28.5, 10.5 ], [ 28.5, 11.0 ], [ 29.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 11.0 ], [ 29.5, 10.5 ], [ 29.0, 10.5 ], [ 29.0, 11.0 ], [ 29.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 11.0 ], [ 30.0, 10.5 ], [ 29.5, 10.5 ], [ 29.5, 11.0 ], [ 30.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 11.0 ], [ 30.5, 10.5 ], [ 30.0, 10.5 ], [ 30.0, 11.0 ], [ 30.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 11.0 ], [ 31.0, 10.5 ], [ 30.5, 10.5 ], [ 30.5, 11.0 ], [ 31.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 11.0 ], [ 31.5, 10.5 ], [ 31.0, 10.5 ], [ 31.0, 11.0 ], [ 31.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 11.0 ], [ 32.0, 10.5 ], [ 31.5, 10.5 ], [ 31.5, 11.0 ], [ 32.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 11.0 ], [ 32.5, 10.5 ], [ 32.0, 10.5 ], [ 32.0, 11.0 ], [ 32.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 11.0 ], [ 33.0, 10.5 ], [ 32.5, 10.5 ], [ 32.5, 11.0 ], [ 33.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 11.0 ], [ 33.5, 10.5 ], [ 33.0, 10.5 ], [ 33.0, 11.0 ], [ 33.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 11.0 ], [ 34.0, 10.5 ], [ 33.5, 10.5 ], [ 33.5, 11.0 ], [ 34.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 11.0 ], [ 34.5, 10.5 ], [ 34.0, 10.5 ], [ 34.0, 11.0 ], [ 34.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 11.0 ], [ 35.0, 10.5 ], [ 34.5, 10.5 ], [ 34.5, 11.0 ], [ 35.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 11.0 ], [ 35.5, 10.5 ], [ 35.0, 10.5 ], [ 35.0, 11.0 ], [ 35.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 11.0 ], [ 36.0, 10.5 ], [ 35.5, 10.5 ], [ 35.5, 11.0 ], [ 36.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 11.0 ], [ 36.5, 10.5 ], [ 36.0, 10.5 ], [ 36.0, 11.0 ], [ 36.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 11.0 ], [ 37.0, 10.5 ], [ 36.5, 10.5 ], [ 36.5, 11.0 ], [ 37.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 11.0 ], [ 37.5, 10.5 ], [ 37.0, 10.5 ], [ 37.0, 11.0 ], [ 37.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 11.0 ], [ 38.0, 10.5 ], [ 37.5, 10.5 ], [ 37.5, 11.0 ], [ 38.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 11.0 ], [ 38.5, 10.5 ], [ 38.0, 10.5 ], [ 38.0, 11.0 ], [ 38.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 11.0 ], [ 39.0, 10.5 ], [ 38.5, 10.5 ], [ 38.5, 11.0 ], [ 39.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 11.0 ], [ 39.5, 10.5 ], [ 39.0, 10.5 ], [ 39.0, 11.0 ], [ 39.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 11.0 ], [ 40.0, 10.5 ], [ 39.5, 10.5 ], [ 39.5, 11.0 ], [ 40.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 11.0 ], [ 40.5, 10.5 ], [ 40.0, 10.5 ], [ 40.0, 11.0 ], [ 40.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 11.0 ], [ 41.0, 10.5 ], [ 40.5, 10.5 ], [ 40.5, 11.0 ], [ 41.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 11.0 ], [ 41.5, 10.5 ], [ 41.0, 10.5 ], [ 41.0, 11.0 ], [ 41.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 11.0 ], [ 42.0, 10.5 ], [ 41.5, 10.5 ], [ 41.5, 11.0 ], [ 42.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 11.0 ], [ 42.5, 10.5 ], [ 42.0, 10.5 ], [ 42.0, 11.0 ], [ 42.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 11.0 ], [ 43.0, 10.5 ], [ 42.5, 10.5 ], [ 42.5, 11.0 ], [ 43.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 11.0 ], [ 43.5, 10.5 ], [ 43.0, 10.5 ], [ 43.0, 11.0 ], [ 43.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.0, 11.0 ], [ 44.0, 10.5 ], [ 43.5, 10.5 ], [ 43.5, 11.0 ], [ 44.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 11.0 ], [ 46.0, 10.5 ], [ 45.5, 10.5 ], [ 45.5, 11.0 ], [ 46.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.0, 11.0 ], [ 47.0, 10.5 ], [ 46.5, 10.5 ], [ 46.5, 11.0 ], [ 47.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.5, 11.0 ], [ 47.5, 10.5 ], [ 47.0, 10.5 ], [ 47.0, 11.0 ], [ 47.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.0, 11.0 ], [ 48.0, 10.5 ], [ 47.5, 10.5 ], [ 47.5, 11.0 ], [ 48.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.5, 11.0 ], [ 48.5, 10.5 ], [ 48.0, 10.5 ], [ 48.0, 11.0 ], [ 48.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, 11.0 ], [ 49.0, 10.5 ], [ 48.5, 10.5 ], [ 48.5, 11.0 ], [ 49.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, 11.0 ], [ 49.5, 10.5 ], [ 49.0, 10.5 ], [ 49.0, 11.0 ], [ 49.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.0, 11.0 ], [ 50.0, 10.5 ], [ 49.5, 10.5 ], [ 49.5, 11.0 ], [ 50.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.5, 11.0 ], [ 50.5, 10.5 ], [ 50.0, 10.5 ], [ 50.0, 11.0 ], [ 50.5, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.0, 11.0 ], [ 51.0, 10.5 ], [ 50.5, 10.5 ], [ 50.5, 11.0 ], [ 51.0, 11.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 11.5 ], [ -15.5, 11.0 ], [ -16.0, 11.0 ], [ -16.0, 11.5 ], [ -15.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 11.5 ], [ -15.0, 11.0 ], [ -15.5, 11.0 ], [ -15.5, 11.5 ], [ -15.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 11.5 ], [ -14.5, 11.0 ], [ -15.0, 11.0 ], [ -15.0, 11.5 ], [ -14.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 11.5 ], [ -14.0, 11.0 ], [ -14.5, 11.0 ], [ -14.5, 11.5 ], [ -14.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 11.5 ], [ -13.5, 11.0 ], [ -14.0, 11.0 ], [ -14.0, 11.5 ], [ -13.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 11.5 ], [ -13.0, 11.0 ], [ -13.5, 11.0 ], [ -13.5, 11.5 ], [ -13.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 11.5 ], [ -12.5, 11.0 ], [ -13.0, 11.0 ], [ -13.0, 11.5 ], [ -12.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 11.5 ], [ -12.0, 11.0 ], [ -12.5, 11.0 ], [ -12.5, 11.5 ], [ -12.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 11.5 ], [ -11.5, 11.0 ], [ -12.0, 11.0 ], [ -12.0, 11.5 ], [ -11.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 11.5 ], [ -11.0, 11.0 ], [ -11.5, 11.0 ], [ -11.5, 11.5 ], [ -11.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 11.5 ], [ -10.5, 11.0 ], [ -11.0, 11.0 ], [ -11.0, 11.5 ], [ -10.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 11.5 ], [ -10.0, 11.0 ], [ -10.5, 11.0 ], [ -10.5, 11.5 ], [ -10.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 11.5 ], [ -9.5, 11.0 ], [ -10.0, 11.0 ], [ -10.0, 11.5 ], [ -9.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 11.5 ], [ -9.0, 11.0 ], [ -9.5, 11.0 ], [ -9.5, 11.5 ], [ -9.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 11.5 ], [ -8.5, 11.0 ], [ -9.0, 11.0 ], [ -9.0, 11.5 ], [ -8.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 11.5 ], [ -8.0, 11.0 ], [ -8.5, 11.0 ], [ -8.5, 11.5 ], [ -8.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 11.5 ], [ -7.5, 11.0 ], [ -8.0, 11.0 ], [ -8.0, 11.5 ], [ -7.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 11.5 ], [ -7.0, 11.0 ], [ -7.5, 11.0 ], [ -7.5, 11.5 ], [ -7.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 11.5 ], [ -6.5, 11.0 ], [ -7.0, 11.0 ], [ -7.0, 11.5 ], [ -6.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 11.5 ], [ -6.0, 11.0 ], [ -6.5, 11.0 ], [ -6.5, 11.5 ], [ -6.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 11.5 ], [ -5.5, 11.0 ], [ -6.0, 11.0 ], [ -6.0, 11.5 ], [ -5.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 11.5 ], [ -5.0, 11.0 ], [ -5.5, 11.0 ], [ -5.5, 11.5 ], [ -5.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 11.5 ], [ -4.5, 11.0 ], [ -5.0, 11.0 ], [ -5.0, 11.5 ], [ -4.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 11.5 ], [ -4.0, 11.0 ], [ -4.5, 11.0 ], [ -4.5, 11.5 ], [ -4.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 11.5 ], [ -3.5, 11.0 ], [ -4.0, 11.0 ], [ -4.0, 11.5 ], [ -3.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 11.5 ], [ -3.0, 11.0 ], [ -3.5, 11.0 ], [ -3.5, 11.5 ], [ -3.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 11.5 ], [ -2.5, 11.0 ], [ -3.0, 11.0 ], [ -3.0, 11.5 ], [ -2.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 11.5 ], [ -2.0, 11.0 ], [ -2.5, 11.0 ], [ -2.5, 11.5 ], [ -2.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 11.5 ], [ -1.5, 11.0 ], [ -2.0, 11.0 ], [ -2.0, 11.5 ], [ -1.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 11.5 ], [ -1.0, 11.0 ], [ -1.5, 11.0 ], [ -1.5, 11.5 ], [ -1.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 11.5 ], [ -0.5, 11.0 ], [ -1.0, 11.0 ], [ -1.0, 11.5 ], [ -0.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 11.5 ], [ 0.0, 11.0 ], [ -0.5, 11.0 ], [ -0.5, 11.5 ], [ 0.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 11.5 ], [ 0.5, 11.0 ], [ 0.0, 11.0 ], [ 0.0, 11.5 ], [ 0.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 11.5 ], [ 1.0, 11.0 ], [ 0.5, 11.0 ], [ 0.5, 11.5 ], [ 1.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 11.5 ], [ 1.5, 11.0 ], [ 1.0, 11.0 ], [ 1.0, 11.5 ], [ 1.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 11.5 ], [ 2.0, 11.0 ], [ 1.5, 11.0 ], [ 1.5, 11.5 ], [ 2.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 11.5 ], [ 2.5, 11.0 ], [ 2.0, 11.0 ], [ 2.0, 11.5 ], [ 2.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 11.5 ], [ 3.0, 11.0 ], [ 2.5, 11.0 ], [ 2.5, 11.5 ], [ 3.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 11.5 ], [ 3.5, 11.0 ], [ 3.0, 11.0 ], [ 3.0, 11.5 ], [ 3.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 11.5 ], [ 4.0, 11.0 ], [ 3.5, 11.0 ], [ 3.5, 11.5 ], [ 4.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 11.5 ], [ 4.5, 11.0 ], [ 4.0, 11.0 ], [ 4.0, 11.5 ], [ 4.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 11.5 ], [ 5.0, 11.0 ], [ 4.5, 11.0 ], [ 4.5, 11.5 ], [ 5.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 11.5 ], [ 5.5, 11.0 ], [ 5.0, 11.0 ], [ 5.0, 11.5 ], [ 5.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 11.5 ], [ 6.0, 11.0 ], [ 5.5, 11.0 ], [ 5.5, 11.5 ], [ 6.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 11.5 ], [ 6.5, 11.0 ], [ 6.0, 11.0 ], [ 6.0, 11.5 ], [ 6.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 11.5 ], [ 7.0, 11.0 ], [ 6.5, 11.0 ], [ 6.5, 11.5 ], [ 7.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 11.5 ], [ 7.5, 11.0 ], [ 7.0, 11.0 ], [ 7.0, 11.5 ], [ 7.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 11.5 ], [ 8.0, 11.0 ], [ 7.5, 11.0 ], [ 7.5, 11.5 ], [ 8.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 11.5 ], [ 8.5, 11.0 ], [ 8.0, 11.0 ], [ 8.0, 11.5 ], [ 8.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 11.5 ], [ 9.0, 11.0 ], [ 8.5, 11.0 ], [ 8.5, 11.5 ], [ 9.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 11.5 ], [ 9.5, 11.0 ], [ 9.0, 11.0 ], [ 9.0, 11.5 ], [ 9.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 11.5 ], [ 10.0, 11.0 ], [ 9.5, 11.0 ], [ 9.5, 11.5 ], [ 10.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 11.5 ], [ 10.5, 11.0 ], [ 10.0, 11.0 ], [ 10.0, 11.5 ], [ 10.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 11.5 ], [ 11.0, 11.0 ], [ 10.5, 11.0 ], [ 10.5, 11.5 ], [ 11.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 11.5 ], [ 11.5, 11.0 ], [ 11.0, 11.0 ], [ 11.0, 11.5 ], [ 11.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 11.5 ], [ 12.0, 11.0 ], [ 11.5, 11.0 ], [ 11.5, 11.5 ], [ 12.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 11.5 ], [ 12.5, 11.0 ], [ 12.0, 11.0 ], [ 12.0, 11.5 ], [ 12.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 11.5 ], [ 13.0, 11.0 ], [ 12.5, 11.0 ], [ 12.5, 11.5 ], [ 13.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 11.5 ], [ 13.5, 11.0 ], [ 13.0, 11.0 ], [ 13.0, 11.5 ], [ 13.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 11.5 ], [ 14.0, 11.0 ], [ 13.5, 11.0 ], [ 13.5, 11.5 ], [ 14.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 11.5 ], [ 14.5, 11.0 ], [ 14.0, 11.0 ], [ 14.0, 11.5 ], [ 14.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 11.5 ], [ 15.0, 11.0 ], [ 14.5, 11.0 ], [ 14.5, 11.5 ], [ 15.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 11.5 ], [ 15.5, 11.0 ], [ 15.0, 11.0 ], [ 15.0, 11.5 ], [ 15.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 11.5 ], [ 16.0, 11.0 ], [ 15.5, 11.0 ], [ 15.5, 11.5 ], [ 16.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 11.5 ], [ 16.5, 11.0 ], [ 16.0, 11.0 ], [ 16.0, 11.5 ], [ 16.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 11.5 ], [ 17.0, 11.0 ], [ 16.5, 11.0 ], [ 16.5, 11.5 ], [ 17.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 11.5 ], [ 17.5, 11.0 ], [ 17.0, 11.0 ], [ 17.0, 11.5 ], [ 17.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 11.5 ], [ 18.0, 11.0 ], [ 17.5, 11.0 ], [ 17.5, 11.5 ], [ 18.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 11.5 ], [ 18.5, 11.0 ], [ 18.0, 11.0 ], [ 18.0, 11.5 ], [ 18.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 11.5 ], [ 19.0, 11.0 ], [ 18.5, 11.0 ], [ 18.5, 11.5 ], [ 19.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 11.5 ], [ 19.5, 11.0 ], [ 19.0, 11.0 ], [ 19.0, 11.5 ], [ 19.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 11.5 ], [ 20.0, 11.0 ], [ 19.5, 11.0 ], [ 19.5, 11.5 ], [ 20.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 11.5 ], [ 20.5, 11.0 ], [ 20.0, 11.0 ], [ 20.0, 11.5 ], [ 20.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 11.5 ], [ 21.0, 11.0 ], [ 20.5, 11.0 ], [ 20.5, 11.5 ], [ 21.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 11.5 ], [ 21.5, 11.0 ], [ 21.0, 11.0 ], [ 21.0, 11.5 ], [ 21.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 11.5 ], [ 22.0, 11.0 ], [ 21.5, 11.0 ], [ 21.5, 11.5 ], [ 22.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 11.5 ], [ 22.5, 11.0 ], [ 22.0, 11.0 ], [ 22.0, 11.5 ], [ 22.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 11.5 ], [ 23.0, 11.0 ], [ 22.5, 11.0 ], [ 22.5, 11.5 ], [ 23.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 11.5 ], [ 23.5, 11.0 ], [ 23.0, 11.0 ], [ 23.0, 11.5 ], [ 23.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 11.5 ], [ 24.0, 11.0 ], [ 23.5, 11.0 ], [ 23.5, 11.5 ], [ 24.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 11.5 ], [ 24.5, 11.0 ], [ 24.0, 11.0 ], [ 24.0, 11.5 ], [ 24.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 11.5 ], [ 25.0, 11.0 ], [ 24.5, 11.0 ], [ 24.5, 11.5 ], [ 25.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 11.5 ], [ 25.5, 11.0 ], [ 25.0, 11.0 ], [ 25.0, 11.5 ], [ 25.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 11.5 ], [ 26.0, 11.0 ], [ 25.5, 11.0 ], [ 25.5, 11.5 ], [ 26.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 11.5 ], [ 26.5, 11.0 ], [ 26.0, 11.0 ], [ 26.0, 11.5 ], [ 26.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 11.5 ], [ 27.0, 11.0 ], [ 26.5, 11.0 ], [ 26.5, 11.5 ], [ 27.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 11.5 ], [ 27.5, 11.0 ], [ 27.0, 11.0 ], [ 27.0, 11.5 ], [ 27.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 11.5 ], [ 28.0, 11.0 ], [ 27.5, 11.0 ], [ 27.5, 11.5 ], [ 28.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 11.5 ], [ 28.5, 11.0 ], [ 28.0, 11.0 ], [ 28.0, 11.5 ], [ 28.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 11.5 ], [ 29.0, 11.0 ], [ 28.5, 11.0 ], [ 28.5, 11.5 ], [ 29.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 11.5 ], [ 29.5, 11.0 ], [ 29.0, 11.0 ], [ 29.0, 11.5 ], [ 29.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 11.5 ], [ 30.0, 11.0 ], [ 29.5, 11.0 ], [ 29.5, 11.5 ], [ 30.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 11.5 ], [ 30.5, 11.0 ], [ 30.0, 11.0 ], [ 30.0, 11.5 ], [ 30.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 11.5 ], [ 31.0, 11.0 ], [ 30.5, 11.0 ], [ 30.5, 11.5 ], [ 31.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 11.5 ], [ 31.5, 11.0 ], [ 31.0, 11.0 ], [ 31.0, 11.5 ], [ 31.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 11.5 ], [ 32.0, 11.0 ], [ 31.5, 11.0 ], [ 31.5, 11.5 ], [ 32.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 11.5 ], [ 32.5, 11.0 ], [ 32.0, 11.0 ], [ 32.0, 11.5 ], [ 32.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 11.5 ], [ 33.0, 11.0 ], [ 32.5, 11.0 ], [ 32.5, 11.5 ], [ 33.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 11.5 ], [ 33.5, 11.0 ], [ 33.0, 11.0 ], [ 33.0, 11.5 ], [ 33.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 11.5 ], [ 34.0, 11.0 ], [ 33.5, 11.0 ], [ 33.5, 11.5 ], [ 34.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 11.5 ], [ 34.5, 11.0 ], [ 34.0, 11.0 ], [ 34.0, 11.5 ], [ 34.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 11.5 ], [ 35.0, 11.0 ], [ 34.5, 11.0 ], [ 34.5, 11.5 ], [ 35.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 11.5 ], [ 35.5, 11.0 ], [ 35.0, 11.0 ], [ 35.0, 11.5 ], [ 35.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 11.5 ], [ 36.0, 11.0 ], [ 35.5, 11.0 ], [ 35.5, 11.5 ], [ 36.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 11.5 ], [ 36.5, 11.0 ], [ 36.0, 11.0 ], [ 36.0, 11.5 ], [ 36.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 11.5 ], [ 37.0, 11.0 ], [ 36.5, 11.0 ], [ 36.5, 11.5 ], [ 37.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 11.5 ], [ 37.5, 11.0 ], [ 37.0, 11.0 ], [ 37.0, 11.5 ], [ 37.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 11.5 ], [ 38.0, 11.0 ], [ 37.5, 11.0 ], [ 37.5, 11.5 ], [ 38.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 11.5 ], [ 38.5, 11.0 ], [ 38.0, 11.0 ], [ 38.0, 11.5 ], [ 38.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 11.5 ], [ 39.0, 11.0 ], [ 38.5, 11.0 ], [ 38.5, 11.5 ], [ 39.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 11.5 ], [ 39.5, 11.0 ], [ 39.0, 11.0 ], [ 39.0, 11.5 ], [ 39.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 11.5 ], [ 40.0, 11.0 ], [ 39.5, 11.0 ], [ 39.5, 11.5 ], [ 40.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 11.5 ], [ 40.5, 11.0 ], [ 40.0, 11.0 ], [ 40.0, 11.5 ], [ 40.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 11.5 ], [ 41.0, 11.0 ], [ 40.5, 11.0 ], [ 40.5, 11.5 ], [ 41.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 11.5 ], [ 41.5, 11.0 ], [ 41.0, 11.0 ], [ 41.0, 11.5 ], [ 41.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 11.5 ], [ 42.0, 11.0 ], [ 41.5, 11.0 ], [ 41.5, 11.5 ], [ 42.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 11.5 ], [ 42.5, 11.0 ], [ 42.0, 11.0 ], [ 42.0, 11.5 ], [ 42.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 11.5 ], [ 43.0, 11.0 ], [ 42.5, 11.0 ], [ 42.5, 11.5 ], [ 43.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 11.5 ], [ 43.5, 11.0 ], [ 43.0, 11.0 ], [ 43.0, 11.5 ], [ 43.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, 11.5 ], [ 49.0, 11.0 ], [ 48.5, 11.0 ], [ 48.5, 11.5 ], [ 49.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.5, 11.5 ], [ 49.5, 11.0 ], [ 49.0, 11.0 ], [ 49.0, 11.5 ], [ 49.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.0, 11.5 ], [ 50.0, 11.0 ], [ 49.5, 11.0 ], [ 49.5, 11.5 ], [ 50.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.5, 11.5 ], [ 50.5, 11.0 ], [ 50.0, 11.0 ], [ 50.0, 11.5 ], [ 50.5, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.0, 11.5 ], [ 51.0, 11.0 ], [ 50.5, 11.0 ], [ 50.5, 11.5 ], [ 51.0, 11.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 12.0 ], [ -15.0, 11.5 ], [ -15.5, 11.5 ], [ -15.5, 12.0 ], [ -15.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 12.0 ], [ -14.5, 11.5 ], [ -15.0, 11.5 ], [ -15.0, 12.0 ], [ -14.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 12.0 ], [ -14.0, 11.5 ], [ -14.5, 11.5 ], [ -14.5, 12.0 ], [ -14.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 12.0 ], [ -13.5, 11.5 ], [ -14.0, 11.5 ], [ -14.0, 12.0 ], [ -13.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 12.0 ], [ -13.0, 11.5 ], [ -13.5, 11.5 ], [ -13.5, 12.0 ], [ -13.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 12.0 ], [ -12.5, 11.5 ], [ -13.0, 11.5 ], [ -13.0, 12.0 ], [ -12.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 12.0 ], [ -12.0, 11.5 ], [ -12.5, 11.5 ], [ -12.5, 12.0 ], [ -12.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 12.0 ], [ -11.5, 11.5 ], [ -12.0, 11.5 ], [ -12.0, 12.0 ], [ -11.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 12.0 ], [ -11.0, 11.5 ], [ -11.5, 11.5 ], [ -11.5, 12.0 ], [ -11.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 12.0 ], [ -10.5, 11.5 ], [ -11.0, 11.5 ], [ -11.0, 12.0 ], [ -10.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 12.0 ], [ -10.0, 11.5 ], [ -10.5, 11.5 ], [ -10.5, 12.0 ], [ -10.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 12.0 ], [ -9.5, 11.5 ], [ -10.0, 11.5 ], [ -10.0, 12.0 ], [ -9.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 12.0 ], [ -9.0, 11.5 ], [ -9.5, 11.5 ], [ -9.5, 12.0 ], [ -9.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 12.0 ], [ -8.5, 11.5 ], [ -9.0, 11.5 ], [ -9.0, 12.0 ], [ -8.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 12.0 ], [ -8.0, 11.5 ], [ -8.5, 11.5 ], [ -8.5, 12.0 ], [ -8.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 12.0 ], [ -7.5, 11.5 ], [ -8.0, 11.5 ], [ -8.0, 12.0 ], [ -7.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 12.0 ], [ -7.0, 11.5 ], [ -7.5, 11.5 ], [ -7.5, 12.0 ], [ -7.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 12.0 ], [ -6.5, 11.5 ], [ -7.0, 11.5 ], [ -7.0, 12.0 ], [ -6.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 12.0 ], [ -6.0, 11.5 ], [ -6.5, 11.5 ], [ -6.5, 12.0 ], [ -6.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 12.0 ], [ -5.5, 11.5 ], [ -6.0, 11.5 ], [ -6.0, 12.0 ], [ -5.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 12.0 ], [ -5.0, 11.5 ], [ -5.5, 11.5 ], [ -5.5, 12.0 ], [ -5.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 12.0 ], [ -4.5, 11.5 ], [ -5.0, 11.5 ], [ -5.0, 12.0 ], [ -4.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 12.0 ], [ -4.0, 11.5 ], [ -4.5, 11.5 ], [ -4.5, 12.0 ], [ -4.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 12.0 ], [ -3.5, 11.5 ], [ -4.0, 11.5 ], [ -4.0, 12.0 ], [ -3.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 12.0 ], [ -3.0, 11.5 ], [ -3.5, 11.5 ], [ -3.5, 12.0 ], [ -3.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 12.0 ], [ -2.5, 11.5 ], [ -3.0, 11.5 ], [ -3.0, 12.0 ], [ -2.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 12.0 ], [ -2.0, 11.5 ], [ -2.5, 11.5 ], [ -2.5, 12.0 ], [ -2.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 12.0 ], [ -1.5, 11.5 ], [ -2.0, 11.5 ], [ -2.0, 12.0 ], [ -1.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 12.0 ], [ -1.0, 11.5 ], [ -1.5, 11.5 ], [ -1.5, 12.0 ], [ -1.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 12.0 ], [ -0.5, 11.5 ], [ -1.0, 11.5 ], [ -1.0, 12.0 ], [ -0.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 12.0 ], [ 0.0, 11.5 ], [ -0.5, 11.5 ], [ -0.5, 12.0 ], [ 0.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 12.0 ], [ 0.5, 11.5 ], [ 0.0, 11.5 ], [ 0.0, 12.0 ], [ 0.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 12.0 ], [ 1.0, 11.5 ], [ 0.5, 11.5 ], [ 0.5, 12.0 ], [ 1.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 12.0 ], [ 1.5, 11.5 ], [ 1.0, 11.5 ], [ 1.0, 12.0 ], [ 1.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 12.0 ], [ 2.0, 11.5 ], [ 1.5, 11.5 ], [ 1.5, 12.0 ], [ 2.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 12.0 ], [ 2.5, 11.5 ], [ 2.0, 11.5 ], [ 2.0, 12.0 ], [ 2.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 12.0 ], [ 3.0, 11.5 ], [ 2.5, 11.5 ], [ 2.5, 12.0 ], [ 3.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 12.0 ], [ 3.5, 11.5 ], [ 3.0, 11.5 ], [ 3.0, 12.0 ], [ 3.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 12.0 ], [ 4.0, 11.5 ], [ 3.5, 11.5 ], [ 3.5, 12.0 ], [ 4.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 12.0 ], [ 4.5, 11.5 ], [ 4.0, 11.5 ], [ 4.0, 12.0 ], [ 4.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 12.0 ], [ 5.0, 11.5 ], [ 4.5, 11.5 ], [ 4.5, 12.0 ], [ 5.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 12.0 ], [ 5.5, 11.5 ], [ 5.0, 11.5 ], [ 5.0, 12.0 ], [ 5.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 12.0 ], [ 6.0, 11.5 ], [ 5.5, 11.5 ], [ 5.5, 12.0 ], [ 6.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 12.0 ], [ 6.5, 11.5 ], [ 6.0, 11.5 ], [ 6.0, 12.0 ], [ 6.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 12.0 ], [ 7.0, 11.5 ], [ 6.5, 11.5 ], [ 6.5, 12.0 ], [ 7.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 12.0 ], [ 7.5, 11.5 ], [ 7.0, 11.5 ], [ 7.0, 12.0 ], [ 7.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 12.0 ], [ 8.0, 11.5 ], [ 7.5, 11.5 ], [ 7.5, 12.0 ], [ 8.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 12.0 ], [ 8.5, 11.5 ], [ 8.0, 11.5 ], [ 8.0, 12.0 ], [ 8.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 12.0 ], [ 9.0, 11.5 ], [ 8.5, 11.5 ], [ 8.5, 12.0 ], [ 9.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 12.0 ], [ 9.5, 11.5 ], [ 9.0, 11.5 ], [ 9.0, 12.0 ], [ 9.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 12.0 ], [ 10.0, 11.5 ], [ 9.5, 11.5 ], [ 9.5, 12.0 ], [ 10.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 12.0 ], [ 10.5, 11.5 ], [ 10.0, 11.5 ], [ 10.0, 12.0 ], [ 10.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 12.0 ], [ 11.0, 11.5 ], [ 10.5, 11.5 ], [ 10.5, 12.0 ], [ 11.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 12.0 ], [ 11.5, 11.5 ], [ 11.0, 11.5 ], [ 11.0, 12.0 ], [ 11.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 12.0 ], [ 12.0, 11.5 ], [ 11.5, 11.5 ], [ 11.5, 12.0 ], [ 12.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 12.0 ], [ 12.5, 11.5 ], [ 12.0, 11.5 ], [ 12.0, 12.0 ], [ 12.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 12.0 ], [ 13.0, 11.5 ], [ 12.5, 11.5 ], [ 12.5, 12.0 ], [ 13.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 12.0 ], [ 13.5, 11.5 ], [ 13.0, 11.5 ], [ 13.0, 12.0 ], [ 13.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 12.0 ], [ 14.0, 11.5 ], [ 13.5, 11.5 ], [ 13.5, 12.0 ], [ 14.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 12.0 ], [ 14.5, 11.5 ], [ 14.0, 11.5 ], [ 14.0, 12.0 ], [ 14.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 12.0 ], [ 15.0, 11.5 ], [ 14.5, 11.5 ], [ 14.5, 12.0 ], [ 15.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 12.0 ], [ 15.5, 11.5 ], [ 15.0, 11.5 ], [ 15.0, 12.0 ], [ 15.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 12.0 ], [ 16.0, 11.5 ], [ 15.5, 11.5 ], [ 15.5, 12.0 ], [ 16.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 12.0 ], [ 16.5, 11.5 ], [ 16.0, 11.5 ], [ 16.0, 12.0 ], [ 16.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 12.0 ], [ 17.0, 11.5 ], [ 16.5, 11.5 ], [ 16.5, 12.0 ], [ 17.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 12.0 ], [ 17.5, 11.5 ], [ 17.0, 11.5 ], [ 17.0, 12.0 ], [ 17.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 12.0 ], [ 18.0, 11.5 ], [ 17.5, 11.5 ], [ 17.5, 12.0 ], [ 18.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 12.0 ], [ 18.5, 11.5 ], [ 18.0, 11.5 ], [ 18.0, 12.0 ], [ 18.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 12.0 ], [ 19.0, 11.5 ], [ 18.5, 11.5 ], [ 18.5, 12.0 ], [ 19.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 12.0 ], [ 19.5, 11.5 ], [ 19.0, 11.5 ], [ 19.0, 12.0 ], [ 19.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 12.0 ], [ 20.0, 11.5 ], [ 19.5, 11.5 ], [ 19.5, 12.0 ], [ 20.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 12.0 ], [ 20.5, 11.5 ], [ 20.0, 11.5 ], [ 20.0, 12.0 ], [ 20.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 12.0 ], [ 21.0, 11.5 ], [ 20.5, 11.5 ], [ 20.5, 12.0 ], [ 21.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 12.0 ], [ 21.5, 11.5 ], [ 21.0, 11.5 ], [ 21.0, 12.0 ], [ 21.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 12.0 ], [ 22.0, 11.5 ], [ 21.5, 11.5 ], [ 21.5, 12.0 ], [ 22.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 12.0 ], [ 22.5, 11.5 ], [ 22.0, 11.5 ], [ 22.0, 12.0 ], [ 22.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 12.0 ], [ 23.0, 11.5 ], [ 22.5, 11.5 ], [ 22.5, 12.0 ], [ 23.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 12.0 ], [ 23.5, 11.5 ], [ 23.0, 11.5 ], [ 23.0, 12.0 ], [ 23.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 12.0 ], [ 24.0, 11.5 ], [ 23.5, 11.5 ], [ 23.5, 12.0 ], [ 24.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 12.0 ], [ 24.5, 11.5 ], [ 24.0, 11.5 ], [ 24.0, 12.0 ], [ 24.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 12.0 ], [ 25.0, 11.5 ], [ 24.5, 11.5 ], [ 24.5, 12.0 ], [ 25.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 12.0 ], [ 25.5, 11.5 ], [ 25.0, 11.5 ], [ 25.0, 12.0 ], [ 25.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 12.0 ], [ 26.0, 11.5 ], [ 25.5, 11.5 ], [ 25.5, 12.0 ], [ 26.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 12.0 ], [ 26.5, 11.5 ], [ 26.0, 11.5 ], [ 26.0, 12.0 ], [ 26.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 12.0 ], [ 27.0, 11.5 ], [ 26.5, 11.5 ], [ 26.5, 12.0 ], [ 27.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 12.0 ], [ 27.5, 11.5 ], [ 27.0, 11.5 ], [ 27.0, 12.0 ], [ 27.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 12.0 ], [ 28.0, 11.5 ], [ 27.5, 11.5 ], [ 27.5, 12.0 ], [ 28.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 12.0 ], [ 28.5, 11.5 ], [ 28.0, 11.5 ], [ 28.0, 12.0 ], [ 28.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 12.0 ], [ 29.0, 11.5 ], [ 28.5, 11.5 ], [ 28.5, 12.0 ], [ 29.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 12.0 ], [ 29.5, 11.5 ], [ 29.0, 11.5 ], [ 29.0, 12.0 ], [ 29.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 12.0 ], [ 30.0, 11.5 ], [ 29.5, 11.5 ], [ 29.5, 12.0 ], [ 30.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 12.0 ], [ 30.5, 11.5 ], [ 30.0, 11.5 ], [ 30.0, 12.0 ], [ 30.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 12.0 ], [ 31.0, 11.5 ], [ 30.5, 11.5 ], [ 30.5, 12.0 ], [ 31.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 12.0 ], [ 31.5, 11.5 ], [ 31.0, 11.5 ], [ 31.0, 12.0 ], [ 31.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 12.0 ], [ 32.0, 11.5 ], [ 31.5, 11.5 ], [ 31.5, 12.0 ], [ 32.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 12.0 ], [ 32.5, 11.5 ], [ 32.0, 11.5 ], [ 32.0, 12.0 ], [ 32.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 12.0 ], [ 33.0, 11.5 ], [ 32.5, 11.5 ], [ 32.5, 12.0 ], [ 33.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 12.0 ], [ 33.5, 11.5 ], [ 33.0, 11.5 ], [ 33.0, 12.0 ], [ 33.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 12.0 ], [ 34.0, 11.5 ], [ 33.5, 11.5 ], [ 33.5, 12.0 ], [ 34.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 12.0 ], [ 34.5, 11.5 ], [ 34.0, 11.5 ], [ 34.0, 12.0 ], [ 34.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 12.0 ], [ 35.0, 11.5 ], [ 34.5, 11.5 ], [ 34.5, 12.0 ], [ 35.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 12.0 ], [ 35.5, 11.5 ], [ 35.0, 11.5 ], [ 35.0, 12.0 ], [ 35.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 12.0 ], [ 36.0, 11.5 ], [ 35.5, 11.5 ], [ 35.5, 12.0 ], [ 36.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 12.0 ], [ 36.5, 11.5 ], [ 36.0, 11.5 ], [ 36.0, 12.0 ], [ 36.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 12.0 ], [ 37.0, 11.5 ], [ 36.5, 11.5 ], [ 36.5, 12.0 ], [ 37.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 12.0 ], [ 37.5, 11.5 ], [ 37.0, 11.5 ], [ 37.0, 12.0 ], [ 37.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 12.0 ], [ 38.0, 11.5 ], [ 37.5, 11.5 ], [ 37.5, 12.0 ], [ 38.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 12.0 ], [ 38.5, 11.5 ], [ 38.0, 11.5 ], [ 38.0, 12.0 ], [ 38.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 12.0 ], [ 39.0, 11.5 ], [ 38.5, 11.5 ], [ 38.5, 12.0 ], [ 39.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 12.0 ], [ 39.5, 11.5 ], [ 39.0, 11.5 ], [ 39.0, 12.0 ], [ 39.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 12.0 ], [ 40.0, 11.5 ], [ 39.5, 11.5 ], [ 39.5, 12.0 ], [ 40.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 12.0 ], [ 40.5, 11.5 ], [ 40.0, 11.5 ], [ 40.0, 12.0 ], [ 40.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 12.0 ], [ 41.0, 11.5 ], [ 40.5, 11.5 ], [ 40.5, 12.0 ], [ 41.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 12.0 ], [ 41.5, 11.5 ], [ 41.0, 11.5 ], [ 41.0, 12.0 ], [ 41.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 12.0 ], [ 42.0, 11.5 ], [ 41.5, 11.5 ], [ 41.5, 12.0 ], [ 42.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 12.0 ], [ 42.5, 11.5 ], [ 42.0, 11.5 ], [ 42.0, 12.0 ], [ 42.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 12.0 ], [ 43.0, 11.5 ], [ 42.5, 11.5 ], [ 42.5, 12.0 ], [ 43.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.0, 12.0 ], [ 51.0, 11.5 ], [ 50.5, 11.5 ], [ 50.5, 12.0 ], [ 51.0, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.5, 12.0 ], [ 51.5, 11.5 ], [ 51.0, 11.5 ], [ 51.0, 12.0 ], [ 51.5, 12.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 12.5 ], [ -15.5, 12.0 ], [ -16.0, 12.0 ], [ -16.0, 12.5 ], [ -15.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 12.5 ], [ -15.0, 12.0 ], [ -15.5, 12.0 ], [ -15.5, 12.5 ], [ -15.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 12.5 ], [ -14.5, 12.0 ], [ -15.0, 12.0 ], [ -15.0, 12.5 ], [ -14.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 12.5 ], [ -14.0, 12.0 ], [ -14.5, 12.0 ], [ -14.5, 12.5 ], [ -14.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 12.5 ], [ -13.5, 12.0 ], [ -14.0, 12.0 ], [ -14.0, 12.5 ], [ -13.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 12.5 ], [ -13.0, 12.0 ], [ -13.5, 12.0 ], [ -13.5, 12.5 ], [ -13.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 12.5 ], [ -12.5, 12.0 ], [ -13.0, 12.0 ], [ -13.0, 12.5 ], [ -12.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 12.5 ], [ -12.0, 12.0 ], [ -12.5, 12.0 ], [ -12.5, 12.5 ], [ -12.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 12.5 ], [ -11.5, 12.0 ], [ -12.0, 12.0 ], [ -12.0, 12.5 ], [ -11.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 12.5 ], [ -11.0, 12.0 ], [ -11.5, 12.0 ], [ -11.5, 12.5 ], [ -11.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 12.5 ], [ -10.5, 12.0 ], [ -11.0, 12.0 ], [ -11.0, 12.5 ], [ -10.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 12.5 ], [ -10.0, 12.0 ], [ -10.5, 12.0 ], [ -10.5, 12.5 ], [ -10.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 12.5 ], [ -9.5, 12.0 ], [ -10.0, 12.0 ], [ -10.0, 12.5 ], [ -9.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 12.5 ], [ -9.0, 12.0 ], [ -9.5, 12.0 ], [ -9.5, 12.5 ], [ -9.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 12.5 ], [ -8.5, 12.0 ], [ -9.0, 12.0 ], [ -9.0, 12.5 ], [ -8.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 12.5 ], [ -8.0, 12.0 ], [ -8.5, 12.0 ], [ -8.5, 12.5 ], [ -8.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 12.5 ], [ -7.5, 12.0 ], [ -8.0, 12.0 ], [ -8.0, 12.5 ], [ -7.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 12.5 ], [ -7.0, 12.0 ], [ -7.5, 12.0 ], [ -7.5, 12.5 ], [ -7.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 12.5 ], [ -6.5, 12.0 ], [ -7.0, 12.0 ], [ -7.0, 12.5 ], [ -6.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 12.5 ], [ -6.0, 12.0 ], [ -6.5, 12.0 ], [ -6.5, 12.5 ], [ -6.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 12.5 ], [ -5.5, 12.0 ], [ -6.0, 12.0 ], [ -6.0, 12.5 ], [ -5.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 12.5 ], [ -5.0, 12.0 ], [ -5.5, 12.0 ], [ -5.5, 12.5 ], [ -5.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 12.5 ], [ -4.5, 12.0 ], [ -5.0, 12.0 ], [ -5.0, 12.5 ], [ -4.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 12.5 ], [ -4.0, 12.0 ], [ -4.5, 12.0 ], [ -4.5, 12.5 ], [ -4.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 12.5 ], [ -3.5, 12.0 ], [ -4.0, 12.0 ], [ -4.0, 12.5 ], [ -3.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 12.5 ], [ -3.0, 12.0 ], [ -3.5, 12.0 ], [ -3.5, 12.5 ], [ -3.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 12.5 ], [ -2.5, 12.0 ], [ -3.0, 12.0 ], [ -3.0, 12.5 ], [ -2.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 12.5 ], [ -2.0, 12.0 ], [ -2.5, 12.0 ], [ -2.5, 12.5 ], [ -2.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 12.5 ], [ -1.5, 12.0 ], [ -2.0, 12.0 ], [ -2.0, 12.5 ], [ -1.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 12.5 ], [ -1.0, 12.0 ], [ -1.5, 12.0 ], [ -1.5, 12.5 ], [ -1.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 12.5 ], [ -0.5, 12.0 ], [ -1.0, 12.0 ], [ -1.0, 12.5 ], [ -0.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 12.5 ], [ 0.0, 12.0 ], [ -0.5, 12.0 ], [ -0.5, 12.5 ], [ 0.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 12.5 ], [ 0.5, 12.0 ], [ 0.0, 12.0 ], [ 0.0, 12.5 ], [ 0.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 12.5 ], [ 1.0, 12.0 ], [ 0.5, 12.0 ], [ 0.5, 12.5 ], [ 1.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 12.5 ], [ 1.5, 12.0 ], [ 1.0, 12.0 ], [ 1.0, 12.5 ], [ 1.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 12.5 ], [ 2.0, 12.0 ], [ 1.5, 12.0 ], [ 1.5, 12.5 ], [ 2.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 12.5 ], [ 2.5, 12.0 ], [ 2.0, 12.0 ], [ 2.0, 12.5 ], [ 2.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 12.5 ], [ 3.0, 12.0 ], [ 2.5, 12.0 ], [ 2.5, 12.5 ], [ 3.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 12.5 ], [ 3.5, 12.0 ], [ 3.0, 12.0 ], [ 3.0, 12.5 ], [ 3.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 12.5 ], [ 4.0, 12.0 ], [ 3.5, 12.0 ], [ 3.5, 12.5 ], [ 4.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 12.5 ], [ 4.5, 12.0 ], [ 4.0, 12.0 ], [ 4.0, 12.5 ], [ 4.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 12.5 ], [ 5.0, 12.0 ], [ 4.5, 12.0 ], [ 4.5, 12.5 ], [ 5.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 12.5 ], [ 5.5, 12.0 ], [ 5.0, 12.0 ], [ 5.0, 12.5 ], [ 5.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 12.5 ], [ 6.0, 12.0 ], [ 5.5, 12.0 ], [ 5.5, 12.5 ], [ 6.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 12.5 ], [ 6.5, 12.0 ], [ 6.0, 12.0 ], [ 6.0, 12.5 ], [ 6.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 12.5 ], [ 7.0, 12.0 ], [ 6.5, 12.0 ], [ 6.5, 12.5 ], [ 7.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 12.5 ], [ 7.5, 12.0 ], [ 7.0, 12.0 ], [ 7.0, 12.5 ], [ 7.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 12.5 ], [ 8.0, 12.0 ], [ 7.5, 12.0 ], [ 7.5, 12.5 ], [ 8.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 12.5 ], [ 8.5, 12.0 ], [ 8.0, 12.0 ], [ 8.0, 12.5 ], [ 8.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 12.5 ], [ 9.0, 12.0 ], [ 8.5, 12.0 ], [ 8.5, 12.5 ], [ 9.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 12.5 ], [ 9.5, 12.0 ], [ 9.0, 12.0 ], [ 9.0, 12.5 ], [ 9.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 12.5 ], [ 10.0, 12.0 ], [ 9.5, 12.0 ], [ 9.5, 12.5 ], [ 10.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 12.5 ], [ 10.5, 12.0 ], [ 10.0, 12.0 ], [ 10.0, 12.5 ], [ 10.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 12.5 ], [ 11.0, 12.0 ], [ 10.5, 12.0 ], [ 10.5, 12.5 ], [ 11.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 12.5 ], [ 11.5, 12.0 ], [ 11.0, 12.0 ], [ 11.0, 12.5 ], [ 11.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 12.5 ], [ 12.0, 12.0 ], [ 11.5, 12.0 ], [ 11.5, 12.5 ], [ 12.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 12.5 ], [ 12.5, 12.0 ], [ 12.0, 12.0 ], [ 12.0, 12.5 ], [ 12.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 12.5 ], [ 13.0, 12.0 ], [ 12.5, 12.0 ], [ 12.5, 12.5 ], [ 13.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 12.5 ], [ 13.5, 12.0 ], [ 13.0, 12.0 ], [ 13.0, 12.5 ], [ 13.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 12.5 ], [ 14.0, 12.0 ], [ 13.5, 12.0 ], [ 13.5, 12.5 ], [ 14.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 12.5 ], [ 14.5, 12.0 ], [ 14.0, 12.0 ], [ 14.0, 12.5 ], [ 14.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 12.5 ], [ 15.0, 12.0 ], [ 14.5, 12.0 ], [ 14.5, 12.5 ], [ 15.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 12.5 ], [ 15.5, 12.0 ], [ 15.0, 12.0 ], [ 15.0, 12.5 ], [ 15.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 12.5 ], [ 16.0, 12.0 ], [ 15.5, 12.0 ], [ 15.5, 12.5 ], [ 16.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 12.5 ], [ 16.5, 12.0 ], [ 16.0, 12.0 ], [ 16.0, 12.5 ], [ 16.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 12.5 ], [ 17.0, 12.0 ], [ 16.5, 12.0 ], [ 16.5, 12.5 ], [ 17.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 12.5 ], [ 17.5, 12.0 ], [ 17.0, 12.0 ], [ 17.0, 12.5 ], [ 17.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 12.5 ], [ 18.0, 12.0 ], [ 17.5, 12.0 ], [ 17.5, 12.5 ], [ 18.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 12.5 ], [ 18.5, 12.0 ], [ 18.0, 12.0 ], [ 18.0, 12.5 ], [ 18.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 12.5 ], [ 19.0, 12.0 ], [ 18.5, 12.0 ], [ 18.5, 12.5 ], [ 19.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 12.5 ], [ 19.5, 12.0 ], [ 19.0, 12.0 ], [ 19.0, 12.5 ], [ 19.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 12.5 ], [ 20.0, 12.0 ], [ 19.5, 12.0 ], [ 19.5, 12.5 ], [ 20.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 12.5 ], [ 20.5, 12.0 ], [ 20.0, 12.0 ], [ 20.0, 12.5 ], [ 20.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 12.5 ], [ 21.0, 12.0 ], [ 20.5, 12.0 ], [ 20.5, 12.5 ], [ 21.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 12.5 ], [ 21.5, 12.0 ], [ 21.0, 12.0 ], [ 21.0, 12.5 ], [ 21.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 12.5 ], [ 22.0, 12.0 ], [ 21.5, 12.0 ], [ 21.5, 12.5 ], [ 22.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 12.5 ], [ 22.5, 12.0 ], [ 22.0, 12.0 ], [ 22.0, 12.5 ], [ 22.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 12.5 ], [ 23.0, 12.0 ], [ 22.5, 12.0 ], [ 22.5, 12.5 ], [ 23.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 12.5 ], [ 23.5, 12.0 ], [ 23.0, 12.0 ], [ 23.0, 12.5 ], [ 23.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 12.5 ], [ 24.0, 12.0 ], [ 23.5, 12.0 ], [ 23.5, 12.5 ], [ 24.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 12.5 ], [ 24.5, 12.0 ], [ 24.0, 12.0 ], [ 24.0, 12.5 ], [ 24.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 12.5 ], [ 25.0, 12.0 ], [ 24.5, 12.0 ], [ 24.5, 12.5 ], [ 25.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 12.5 ], [ 25.5, 12.0 ], [ 25.0, 12.0 ], [ 25.0, 12.5 ], [ 25.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 12.5 ], [ 26.0, 12.0 ], [ 25.5, 12.0 ], [ 25.5, 12.5 ], [ 26.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 12.5 ], [ 26.5, 12.0 ], [ 26.0, 12.0 ], [ 26.0, 12.5 ], [ 26.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 12.5 ], [ 27.0, 12.0 ], [ 26.5, 12.0 ], [ 26.5, 12.5 ], [ 27.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 12.5 ], [ 27.5, 12.0 ], [ 27.0, 12.0 ], [ 27.0, 12.5 ], [ 27.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 12.5 ], [ 28.0, 12.0 ], [ 27.5, 12.0 ], [ 27.5, 12.5 ], [ 28.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 12.5 ], [ 28.5, 12.0 ], [ 28.0, 12.0 ], [ 28.0, 12.5 ], [ 28.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 12.5 ], [ 29.0, 12.0 ], [ 28.5, 12.0 ], [ 28.5, 12.5 ], [ 29.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 12.5 ], [ 29.5, 12.0 ], [ 29.0, 12.0 ], [ 29.0, 12.5 ], [ 29.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 12.5 ], [ 30.0, 12.0 ], [ 29.5, 12.0 ], [ 29.5, 12.5 ], [ 30.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 12.5 ], [ 30.5, 12.0 ], [ 30.0, 12.0 ], [ 30.0, 12.5 ], [ 30.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 12.5 ], [ 31.0, 12.0 ], [ 30.5, 12.0 ], [ 30.5, 12.5 ], [ 31.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 12.5 ], [ 31.5, 12.0 ], [ 31.0, 12.0 ], [ 31.0, 12.5 ], [ 31.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 12.5 ], [ 32.0, 12.0 ], [ 31.5, 12.0 ], [ 31.5, 12.5 ], [ 32.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 12.5 ], [ 32.5, 12.0 ], [ 32.0, 12.0 ], [ 32.0, 12.5 ], [ 32.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 12.5 ], [ 33.0, 12.0 ], [ 32.5, 12.0 ], [ 32.5, 12.5 ], [ 33.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 12.5 ], [ 33.5, 12.0 ], [ 33.0, 12.0 ], [ 33.0, 12.5 ], [ 33.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 12.5 ], [ 34.0, 12.0 ], [ 33.5, 12.0 ], [ 33.5, 12.5 ], [ 34.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 12.5 ], [ 34.5, 12.0 ], [ 34.0, 12.0 ], [ 34.0, 12.5 ], [ 34.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 12.5 ], [ 35.0, 12.0 ], [ 34.5, 12.0 ], [ 34.5, 12.5 ], [ 35.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 12.5 ], [ 35.5, 12.0 ], [ 35.0, 12.0 ], [ 35.0, 12.5 ], [ 35.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 12.5 ], [ 36.0, 12.0 ], [ 35.5, 12.0 ], [ 35.5, 12.5 ], [ 36.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 12.5 ], [ 36.5, 12.0 ], [ 36.0, 12.0 ], [ 36.0, 12.5 ], [ 36.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 12.5 ], [ 37.0, 12.0 ], [ 36.5, 12.0 ], [ 36.5, 12.5 ], [ 37.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 12.5 ], [ 37.5, 12.0 ], [ 37.0, 12.0 ], [ 37.0, 12.5 ], [ 37.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 12.5 ], [ 38.0, 12.0 ], [ 37.5, 12.0 ], [ 37.5, 12.5 ], [ 38.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 12.5 ], [ 38.5, 12.0 ], [ 38.0, 12.0 ], [ 38.0, 12.5 ], [ 38.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 12.5 ], [ 39.0, 12.0 ], [ 38.5, 12.0 ], [ 38.5, 12.5 ], [ 39.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 12.5 ], [ 39.5, 12.0 ], [ 39.0, 12.0 ], [ 39.0, 12.5 ], [ 39.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 12.5 ], [ 40.0, 12.0 ], [ 39.5, 12.0 ], [ 39.5, 12.5 ], [ 40.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 12.5 ], [ 40.5, 12.0 ], [ 40.0, 12.0 ], [ 40.0, 12.5 ], [ 40.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 12.5 ], [ 41.0, 12.0 ], [ 40.5, 12.0 ], [ 40.5, 12.5 ], [ 41.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 12.5 ], [ 41.5, 12.0 ], [ 41.0, 12.0 ], [ 41.0, 12.5 ], [ 41.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 12.5 ], [ 42.0, 12.0 ], [ 41.5, 12.0 ], [ 41.5, 12.5 ], [ 42.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 12.5 ], [ 42.5, 12.0 ], [ 42.0, 12.0 ], [ 42.0, 12.5 ], [ 42.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 12.5 ], [ 43.0, 12.0 ], [ 42.5, 12.0 ], [ 42.5, 12.5 ], [ 43.0, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.5, 12.5 ], [ 43.5, 12.0 ], [ 43.0, 12.0 ], [ 43.0, 12.5 ], [ 43.5, 12.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.5, 13.0 ], [ -16.5, 12.5 ], [ -17.0, 12.5 ], [ -17.0, 13.0 ], [ -16.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.0, 13.0 ], [ -16.0, 12.5 ], [ -16.5, 12.5 ], [ -16.5, 13.0 ], [ -16.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 13.0 ], [ -15.5, 12.5 ], [ -16.0, 12.5 ], [ -16.0, 13.0 ], [ -15.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 13.0 ], [ -15.0, 12.5 ], [ -15.5, 12.5 ], [ -15.5, 13.0 ], [ -15.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 13.0 ], [ -14.5, 12.5 ], [ -15.0, 12.5 ], [ -15.0, 13.0 ], [ -14.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 13.0 ], [ -14.0, 12.5 ], [ -14.5, 12.5 ], [ -14.5, 13.0 ], [ -14.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 13.0 ], [ -13.5, 12.5 ], [ -14.0, 12.5 ], [ -14.0, 13.0 ], [ -13.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 13.0 ], [ -13.0, 12.5 ], [ -13.5, 12.5 ], [ -13.5, 13.0 ], [ -13.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 13.0 ], [ -12.5, 12.5 ], [ -13.0, 12.5 ], [ -13.0, 13.0 ], [ -12.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 13.0 ], [ -12.0, 12.5 ], [ -12.5, 12.5 ], [ -12.5, 13.0 ], [ -12.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 13.0 ], [ -11.5, 12.5 ], [ -12.0, 12.5 ], [ -12.0, 13.0 ], [ -11.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 13.0 ], [ -11.0, 12.5 ], [ -11.5, 12.5 ], [ -11.5, 13.0 ], [ -11.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 13.0 ], [ -10.5, 12.5 ], [ -11.0, 12.5 ], [ -11.0, 13.0 ], [ -10.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 13.0 ], [ -10.0, 12.5 ], [ -10.5, 12.5 ], [ -10.5, 13.0 ], [ -10.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 13.0 ], [ -9.5, 12.5 ], [ -10.0, 12.5 ], [ -10.0, 13.0 ], [ -9.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 13.0 ], [ -9.0, 12.5 ], [ -9.5, 12.5 ], [ -9.5, 13.0 ], [ -9.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 13.0 ], [ -8.5, 12.5 ], [ -9.0, 12.5 ], [ -9.0, 13.0 ], [ -8.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 13.0 ], [ -8.0, 12.5 ], [ -8.5, 12.5 ], [ -8.5, 13.0 ], [ -8.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 13.0 ], [ -7.5, 12.5 ], [ -8.0, 12.5 ], [ -8.0, 13.0 ], [ -7.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 13.0 ], [ -7.0, 12.5 ], [ -7.5, 12.5 ], [ -7.5, 13.0 ], [ -7.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 13.0 ], [ -6.5, 12.5 ], [ -7.0, 12.5 ], [ -7.0, 13.0 ], [ -6.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 13.0 ], [ -6.0, 12.5 ], [ -6.5, 12.5 ], [ -6.5, 13.0 ], [ -6.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 13.0 ], [ -5.5, 12.5 ], [ -6.0, 12.5 ], [ -6.0, 13.0 ], [ -5.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 13.0 ], [ -5.0, 12.5 ], [ -5.5, 12.5 ], [ -5.5, 13.0 ], [ -5.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 13.0 ], [ -4.5, 12.5 ], [ -5.0, 12.5 ], [ -5.0, 13.0 ], [ -4.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 13.0 ], [ -4.0, 12.5 ], [ -4.5, 12.5 ], [ -4.5, 13.0 ], [ -4.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 13.0 ], [ -3.5, 12.5 ], [ -4.0, 12.5 ], [ -4.0, 13.0 ], [ -3.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 13.0 ], [ -3.0, 12.5 ], [ -3.5, 12.5 ], [ -3.5, 13.0 ], [ -3.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 13.0 ], [ -2.5, 12.5 ], [ -3.0, 12.5 ], [ -3.0, 13.0 ], [ -2.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 13.0 ], [ -2.0, 12.5 ], [ -2.5, 12.5 ], [ -2.5, 13.0 ], [ -2.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 13.0 ], [ -1.5, 12.5 ], [ -2.0, 12.5 ], [ -2.0, 13.0 ], [ -1.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 13.0 ], [ -1.0, 12.5 ], [ -1.5, 12.5 ], [ -1.5, 13.0 ], [ -1.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 13.0 ], [ -0.5, 12.5 ], [ -1.0, 12.5 ], [ -1.0, 13.0 ], [ -0.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 13.0 ], [ 0.0, 12.5 ], [ -0.5, 12.5 ], [ -0.5, 13.0 ], [ 0.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 13.0 ], [ 0.5, 12.5 ], [ 0.0, 12.5 ], [ 0.0, 13.0 ], [ 0.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 13.0 ], [ 1.0, 12.5 ], [ 0.5, 12.5 ], [ 0.5, 13.0 ], [ 1.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 13.0 ], [ 1.5, 12.5 ], [ 1.0, 12.5 ], [ 1.0, 13.0 ], [ 1.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 13.0 ], [ 2.0, 12.5 ], [ 1.5, 12.5 ], [ 1.5, 13.0 ], [ 2.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 13.0 ], [ 2.5, 12.5 ], [ 2.0, 12.5 ], [ 2.0, 13.0 ], [ 2.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 13.0 ], [ 3.0, 12.5 ], [ 2.5, 12.5 ], [ 2.5, 13.0 ], [ 3.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 13.0 ], [ 3.5, 12.5 ], [ 3.0, 12.5 ], [ 3.0, 13.0 ], [ 3.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 13.0 ], [ 4.0, 12.5 ], [ 3.5, 12.5 ], [ 3.5, 13.0 ], [ 4.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 13.0 ], [ 4.5, 12.5 ], [ 4.0, 12.5 ], [ 4.0, 13.0 ], [ 4.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 13.0 ], [ 5.0, 12.5 ], [ 4.5, 12.5 ], [ 4.5, 13.0 ], [ 5.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 13.0 ], [ 5.5, 12.5 ], [ 5.0, 12.5 ], [ 5.0, 13.0 ], [ 5.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 13.0 ], [ 6.0, 12.5 ], [ 5.5, 12.5 ], [ 5.5, 13.0 ], [ 6.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 13.0 ], [ 6.5, 12.5 ], [ 6.0, 12.5 ], [ 6.0, 13.0 ], [ 6.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 13.0 ], [ 7.0, 12.5 ], [ 6.5, 12.5 ], [ 6.5, 13.0 ], [ 7.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 13.0 ], [ 7.5, 12.5 ], [ 7.0, 12.5 ], [ 7.0, 13.0 ], [ 7.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 13.0 ], [ 8.0, 12.5 ], [ 7.5, 12.5 ], [ 7.5, 13.0 ], [ 8.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 13.0 ], [ 8.5, 12.5 ], [ 8.0, 12.5 ], [ 8.0, 13.0 ], [ 8.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 13.0 ], [ 9.0, 12.5 ], [ 8.5, 12.5 ], [ 8.5, 13.0 ], [ 9.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 13.0 ], [ 9.5, 12.5 ], [ 9.0, 12.5 ], [ 9.0, 13.0 ], [ 9.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 13.0 ], [ 10.0, 12.5 ], [ 9.5, 12.5 ], [ 9.5, 13.0 ], [ 10.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 13.0 ], [ 10.5, 12.5 ], [ 10.0, 12.5 ], [ 10.0, 13.0 ], [ 10.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 13.0 ], [ 11.0, 12.5 ], [ 10.5, 12.5 ], [ 10.5, 13.0 ], [ 11.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 13.0 ], [ 11.5, 12.5 ], [ 11.0, 12.5 ], [ 11.0, 13.0 ], [ 11.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 13.0 ], [ 12.0, 12.5 ], [ 11.5, 12.5 ], [ 11.5, 13.0 ], [ 12.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 13.0 ], [ 12.5, 12.5 ], [ 12.0, 12.5 ], [ 12.0, 13.0 ], [ 12.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 13.0 ], [ 13.0, 12.5 ], [ 12.5, 12.5 ], [ 12.5, 13.0 ], [ 13.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 13.0 ], [ 13.5, 12.5 ], [ 13.0, 12.5 ], [ 13.0, 13.0 ], [ 13.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 13.0 ], [ 14.0, 12.5 ], [ 13.5, 12.5 ], [ 13.5, 13.0 ], [ 14.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 13.0 ], [ 14.5, 12.5 ], [ 14.0, 12.5 ], [ 14.0, 13.0 ], [ 14.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 13.0 ], [ 15.0, 12.5 ], [ 14.5, 12.5 ], [ 14.5, 13.0 ], [ 15.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 13.0 ], [ 15.5, 12.5 ], [ 15.0, 12.5 ], [ 15.0, 13.0 ], [ 15.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 13.0 ], [ 16.0, 12.5 ], [ 15.5, 12.5 ], [ 15.5, 13.0 ], [ 16.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 13.0 ], [ 16.5, 12.5 ], [ 16.0, 12.5 ], [ 16.0, 13.0 ], [ 16.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 13.0 ], [ 17.0, 12.5 ], [ 16.5, 12.5 ], [ 16.5, 13.0 ], [ 17.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 13.0 ], [ 17.5, 12.5 ], [ 17.0, 12.5 ], [ 17.0, 13.0 ], [ 17.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 13.0 ], [ 18.0, 12.5 ], [ 17.5, 12.5 ], [ 17.5, 13.0 ], [ 18.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 13.0 ], [ 18.5, 12.5 ], [ 18.0, 12.5 ], [ 18.0, 13.0 ], [ 18.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 13.0 ], [ 19.0, 12.5 ], [ 18.5, 12.5 ], [ 18.5, 13.0 ], [ 19.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 13.0 ], [ 19.5, 12.5 ], [ 19.0, 12.5 ], [ 19.0, 13.0 ], [ 19.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 13.0 ], [ 20.0, 12.5 ], [ 19.5, 12.5 ], [ 19.5, 13.0 ], [ 20.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 13.0 ], [ 20.5, 12.5 ], [ 20.0, 12.5 ], [ 20.0, 13.0 ], [ 20.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 13.0 ], [ 21.0, 12.5 ], [ 20.5, 12.5 ], [ 20.5, 13.0 ], [ 21.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 13.0 ], [ 21.5, 12.5 ], [ 21.0, 12.5 ], [ 21.0, 13.0 ], [ 21.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 13.0 ], [ 22.0, 12.5 ], [ 21.5, 12.5 ], [ 21.5, 13.0 ], [ 22.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 13.0 ], [ 22.5, 12.5 ], [ 22.0, 12.5 ], [ 22.0, 13.0 ], [ 22.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 13.0 ], [ 23.0, 12.5 ], [ 22.5, 12.5 ], [ 22.5, 13.0 ], [ 23.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 13.0 ], [ 23.5, 12.5 ], [ 23.0, 12.5 ], [ 23.0, 13.0 ], [ 23.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 13.0 ], [ 24.0, 12.5 ], [ 23.5, 12.5 ], [ 23.5, 13.0 ], [ 24.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 13.0 ], [ 24.5, 12.5 ], [ 24.0, 12.5 ], [ 24.0, 13.0 ], [ 24.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 13.0 ], [ 25.0, 12.5 ], [ 24.5, 12.5 ], [ 24.5, 13.0 ], [ 25.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 13.0 ], [ 25.5, 12.5 ], [ 25.0, 12.5 ], [ 25.0, 13.0 ], [ 25.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 13.0 ], [ 26.0, 12.5 ], [ 25.5, 12.5 ], [ 25.5, 13.0 ], [ 26.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 13.0 ], [ 26.5, 12.5 ], [ 26.0, 12.5 ], [ 26.0, 13.0 ], [ 26.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 13.0 ], [ 27.0, 12.5 ], [ 26.5, 12.5 ], [ 26.5, 13.0 ], [ 27.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 13.0 ], [ 27.5, 12.5 ], [ 27.0, 12.5 ], [ 27.0, 13.0 ], [ 27.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 13.0 ], [ 28.0, 12.5 ], [ 27.5, 12.5 ], [ 27.5, 13.0 ], [ 28.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 13.0 ], [ 28.5, 12.5 ], [ 28.0, 12.5 ], [ 28.0, 13.0 ], [ 28.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 13.0 ], [ 29.0, 12.5 ], [ 28.5, 12.5 ], [ 28.5, 13.0 ], [ 29.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 13.0 ], [ 29.5, 12.5 ], [ 29.0, 12.5 ], [ 29.0, 13.0 ], [ 29.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 13.0 ], [ 30.0, 12.5 ], [ 29.5, 12.5 ], [ 29.5, 13.0 ], [ 30.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 13.0 ], [ 30.5, 12.5 ], [ 30.0, 12.5 ], [ 30.0, 13.0 ], [ 30.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 13.0 ], [ 31.0, 12.5 ], [ 30.5, 12.5 ], [ 30.5, 13.0 ], [ 31.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 13.0 ], [ 31.5, 12.5 ], [ 31.0, 12.5 ], [ 31.0, 13.0 ], [ 31.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 13.0 ], [ 32.0, 12.5 ], [ 31.5, 12.5 ], [ 31.5, 13.0 ], [ 32.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 13.0 ], [ 32.5, 12.5 ], [ 32.0, 12.5 ], [ 32.0, 13.0 ], [ 32.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 13.0 ], [ 33.0, 12.5 ], [ 32.5, 12.5 ], [ 32.5, 13.0 ], [ 33.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 13.0 ], [ 33.5, 12.5 ], [ 33.0, 12.5 ], [ 33.0, 13.0 ], [ 33.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 13.0 ], [ 34.0, 12.5 ], [ 33.5, 12.5 ], [ 33.5, 13.0 ], [ 34.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 13.0 ], [ 34.5, 12.5 ], [ 34.0, 12.5 ], [ 34.0, 13.0 ], [ 34.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 13.0 ], [ 35.0, 12.5 ], [ 34.5, 12.5 ], [ 34.5, 13.0 ], [ 35.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 13.0 ], [ 35.5, 12.5 ], [ 35.0, 12.5 ], [ 35.0, 13.0 ], [ 35.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 13.0 ], [ 36.0, 12.5 ], [ 35.5, 12.5 ], [ 35.5, 13.0 ], [ 36.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 13.0 ], [ 36.5, 12.5 ], [ 36.0, 12.5 ], [ 36.0, 13.0 ], [ 36.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 13.0 ], [ 37.0, 12.5 ], [ 36.5, 12.5 ], [ 36.5, 13.0 ], [ 37.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 13.0 ], [ 37.5, 12.5 ], [ 37.0, 12.5 ], [ 37.0, 13.0 ], [ 37.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 13.0 ], [ 38.0, 12.5 ], [ 37.5, 12.5 ], [ 37.5, 13.0 ], [ 38.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 13.0 ], [ 38.5, 12.5 ], [ 38.0, 12.5 ], [ 38.0, 13.0 ], [ 38.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 13.0 ], [ 39.0, 12.5 ], [ 38.5, 12.5 ], [ 38.5, 13.0 ], [ 39.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 13.0 ], [ 39.5, 12.5 ], [ 39.0, 12.5 ], [ 39.0, 13.0 ], [ 39.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 13.0 ], [ 40.0, 12.5 ], [ 39.5, 12.5 ], [ 39.5, 13.0 ], [ 40.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 13.0 ], [ 40.5, 12.5 ], [ 40.0, 12.5 ], [ 40.0, 13.0 ], [ 40.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 13.0 ], [ 41.0, 12.5 ], [ 40.5, 12.5 ], [ 40.5, 13.0 ], [ 41.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 13.0 ], [ 41.5, 12.5 ], [ 41.0, 12.5 ], [ 41.0, 13.0 ], [ 41.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 13.0 ], [ 42.0, 12.5 ], [ 41.5, 12.5 ], [ 41.5, 13.0 ], [ 42.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 13.0 ], [ 42.5, 12.5 ], [ 42.0, 12.5 ], [ 42.0, 13.0 ], [ 42.5, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.0, 13.0 ], [ 43.0, 12.5 ], [ 42.5, 12.5 ], [ 42.5, 13.0 ], [ 43.0, 13.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.5, 13.5 ], [ -16.5, 13.0 ], [ -17.0, 13.0 ], [ -17.0, 13.5 ], [ -16.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.0, 13.5 ], [ -16.0, 13.0 ], [ -16.5, 13.0 ], [ -16.5, 13.5 ], [ -16.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 13.5 ], [ -15.5, 13.0 ], [ -16.0, 13.0 ], [ -16.0, 13.5 ], [ -15.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 13.5 ], [ -15.0, 13.0 ], [ -15.5, 13.0 ], [ -15.5, 13.5 ], [ -15.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 13.5 ], [ -14.5, 13.0 ], [ -15.0, 13.0 ], [ -15.0, 13.5 ], [ -14.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 13.5 ], [ -14.0, 13.0 ], [ -14.5, 13.0 ], [ -14.5, 13.5 ], [ -14.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 13.5 ], [ -13.5, 13.0 ], [ -14.0, 13.0 ], [ -14.0, 13.5 ], [ -13.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 13.5 ], [ -13.0, 13.0 ], [ -13.5, 13.0 ], [ -13.5, 13.5 ], [ -13.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 13.5 ], [ -12.5, 13.0 ], [ -13.0, 13.0 ], [ -13.0, 13.5 ], [ -12.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 13.5 ], [ -12.0, 13.0 ], [ -12.5, 13.0 ], [ -12.5, 13.5 ], [ -12.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 13.5 ], [ -11.5, 13.0 ], [ -12.0, 13.0 ], [ -12.0, 13.5 ], [ -11.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 13.5 ], [ -11.0, 13.0 ], [ -11.5, 13.0 ], [ -11.5, 13.5 ], [ -11.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 13.5 ], [ -10.5, 13.0 ], [ -11.0, 13.0 ], [ -11.0, 13.5 ], [ -10.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 13.5 ], [ -10.0, 13.0 ], [ -10.5, 13.0 ], [ -10.5, 13.5 ], [ -10.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 13.5 ], [ -9.5, 13.0 ], [ -10.0, 13.0 ], [ -10.0, 13.5 ], [ -9.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 13.5 ], [ -9.0, 13.0 ], [ -9.5, 13.0 ], [ -9.5, 13.5 ], [ -9.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 13.5 ], [ -8.5, 13.0 ], [ -9.0, 13.0 ], [ -9.0, 13.5 ], [ -8.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 13.5 ], [ -8.0, 13.0 ], [ -8.5, 13.0 ], [ -8.5, 13.5 ], [ -8.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 13.5 ], [ -7.5, 13.0 ], [ -8.0, 13.0 ], [ -8.0, 13.5 ], [ -7.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 13.5 ], [ -7.0, 13.0 ], [ -7.5, 13.0 ], [ -7.5, 13.5 ], [ -7.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 13.5 ], [ -6.5, 13.0 ], [ -7.0, 13.0 ], [ -7.0, 13.5 ], [ -6.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 13.5 ], [ -6.0, 13.0 ], [ -6.5, 13.0 ], [ -6.5, 13.5 ], [ -6.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 13.5 ], [ -5.5, 13.0 ], [ -6.0, 13.0 ], [ -6.0, 13.5 ], [ -5.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 13.5 ], [ -5.0, 13.0 ], [ -5.5, 13.0 ], [ -5.5, 13.5 ], [ -5.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 13.5 ], [ -4.5, 13.0 ], [ -5.0, 13.0 ], [ -5.0, 13.5 ], [ -4.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 13.5 ], [ -4.0, 13.0 ], [ -4.5, 13.0 ], [ -4.5, 13.5 ], [ -4.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 13.5 ], [ -3.5, 13.0 ], [ -4.0, 13.0 ], [ -4.0, 13.5 ], [ -3.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 13.5 ], [ -3.0, 13.0 ], [ -3.5, 13.0 ], [ -3.5, 13.5 ], [ -3.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 13.5 ], [ -2.5, 13.0 ], [ -3.0, 13.0 ], [ -3.0, 13.5 ], [ -2.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 13.5 ], [ -2.0, 13.0 ], [ -2.5, 13.0 ], [ -2.5, 13.5 ], [ -2.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 13.5 ], [ -1.5, 13.0 ], [ -2.0, 13.0 ], [ -2.0, 13.5 ], [ -1.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 13.5 ], [ -1.0, 13.0 ], [ -1.5, 13.0 ], [ -1.5, 13.5 ], [ -1.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 13.5 ], [ -0.5, 13.0 ], [ -1.0, 13.0 ], [ -1.0, 13.5 ], [ -0.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 13.5 ], [ 0.0, 13.0 ], [ -0.5, 13.0 ], [ -0.5, 13.5 ], [ 0.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 13.5 ], [ 0.5, 13.0 ], [ 0.0, 13.0 ], [ 0.0, 13.5 ], [ 0.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 13.5 ], [ 1.0, 13.0 ], [ 0.5, 13.0 ], [ 0.5, 13.5 ], [ 1.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 13.5 ], [ 1.5, 13.0 ], [ 1.0, 13.0 ], [ 1.0, 13.5 ], [ 1.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 13.5 ], [ 2.0, 13.0 ], [ 1.5, 13.0 ], [ 1.5, 13.5 ], [ 2.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 13.5 ], [ 2.5, 13.0 ], [ 2.0, 13.0 ], [ 2.0, 13.5 ], [ 2.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 13.5 ], [ 3.0, 13.0 ], [ 2.5, 13.0 ], [ 2.5, 13.5 ], [ 3.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 13.5 ], [ 3.5, 13.0 ], [ 3.0, 13.0 ], [ 3.0, 13.5 ], [ 3.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 13.5 ], [ 4.0, 13.0 ], [ 3.5, 13.0 ], [ 3.5, 13.5 ], [ 4.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 13.5 ], [ 4.5, 13.0 ], [ 4.0, 13.0 ], [ 4.0, 13.5 ], [ 4.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 13.5 ], [ 5.0, 13.0 ], [ 4.5, 13.0 ], [ 4.5, 13.5 ], [ 5.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 13.5 ], [ 5.5, 13.0 ], [ 5.0, 13.0 ], [ 5.0, 13.5 ], [ 5.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 13.5 ], [ 6.0, 13.0 ], [ 5.5, 13.0 ], [ 5.5, 13.5 ], [ 6.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 13.5 ], [ 6.5, 13.0 ], [ 6.0, 13.0 ], [ 6.0, 13.5 ], [ 6.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 13.5 ], [ 7.0, 13.0 ], [ 6.5, 13.0 ], [ 6.5, 13.5 ], [ 7.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 13.5 ], [ 7.5, 13.0 ], [ 7.0, 13.0 ], [ 7.0, 13.5 ], [ 7.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 13.5 ], [ 8.0, 13.0 ], [ 7.5, 13.0 ], [ 7.5, 13.5 ], [ 8.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 13.5 ], [ 8.5, 13.0 ], [ 8.0, 13.0 ], [ 8.0, 13.5 ], [ 8.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 13.5 ], [ 9.0, 13.0 ], [ 8.5, 13.0 ], [ 8.5, 13.5 ], [ 9.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 13.5 ], [ 9.5, 13.0 ], [ 9.0, 13.0 ], [ 9.0, 13.5 ], [ 9.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 13.5 ], [ 10.0, 13.0 ], [ 9.5, 13.0 ], [ 9.5, 13.5 ], [ 10.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 13.5 ], [ 10.5, 13.0 ], [ 10.0, 13.0 ], [ 10.0, 13.5 ], [ 10.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 13.5 ], [ 11.0, 13.0 ], [ 10.5, 13.0 ], [ 10.5, 13.5 ], [ 11.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 13.5 ], [ 11.5, 13.0 ], [ 11.0, 13.0 ], [ 11.0, 13.5 ], [ 11.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 13.5 ], [ 12.0, 13.0 ], [ 11.5, 13.0 ], [ 11.5, 13.5 ], [ 12.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 13.5 ], [ 12.5, 13.0 ], [ 12.0, 13.0 ], [ 12.0, 13.5 ], [ 12.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 13.5 ], [ 13.0, 13.0 ], [ 12.5, 13.0 ], [ 12.5, 13.5 ], [ 13.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 13.5 ], [ 13.5, 13.0 ], [ 13.0, 13.0 ], [ 13.0, 13.5 ], [ 13.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 13.5 ], [ 14.0, 13.0 ], [ 13.5, 13.0 ], [ 13.5, 13.5 ], [ 14.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 13.5 ], [ 14.5, 13.0 ], [ 14.0, 13.0 ], [ 14.0, 13.5 ], [ 14.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 13.5 ], [ 15.0, 13.0 ], [ 14.5, 13.0 ], [ 14.5, 13.5 ], [ 15.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 13.5 ], [ 15.5, 13.0 ], [ 15.0, 13.0 ], [ 15.0, 13.5 ], [ 15.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 13.5 ], [ 16.0, 13.0 ], [ 15.5, 13.0 ], [ 15.5, 13.5 ], [ 16.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 13.5 ], [ 16.5, 13.0 ], [ 16.0, 13.0 ], [ 16.0, 13.5 ], [ 16.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 13.5 ], [ 17.0, 13.0 ], [ 16.5, 13.0 ], [ 16.5, 13.5 ], [ 17.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 13.5 ], [ 17.5, 13.0 ], [ 17.0, 13.0 ], [ 17.0, 13.5 ], [ 17.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 13.5 ], [ 18.0, 13.0 ], [ 17.5, 13.0 ], [ 17.5, 13.5 ], [ 18.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 13.5 ], [ 18.5, 13.0 ], [ 18.0, 13.0 ], [ 18.0, 13.5 ], [ 18.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 13.5 ], [ 19.0, 13.0 ], [ 18.5, 13.0 ], [ 18.5, 13.5 ], [ 19.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 13.5 ], [ 19.5, 13.0 ], [ 19.0, 13.0 ], [ 19.0, 13.5 ], [ 19.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 13.5 ], [ 20.0, 13.0 ], [ 19.5, 13.0 ], [ 19.5, 13.5 ], [ 20.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 13.5 ], [ 20.5, 13.0 ], [ 20.0, 13.0 ], [ 20.0, 13.5 ], [ 20.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 13.5 ], [ 21.0, 13.0 ], [ 20.5, 13.0 ], [ 20.5, 13.5 ], [ 21.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 13.5 ], [ 21.5, 13.0 ], [ 21.0, 13.0 ], [ 21.0, 13.5 ], [ 21.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 13.5 ], [ 22.0, 13.0 ], [ 21.5, 13.0 ], [ 21.5, 13.5 ], [ 22.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 13.5 ], [ 22.5, 13.0 ], [ 22.0, 13.0 ], [ 22.0, 13.5 ], [ 22.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 13.5 ], [ 23.0, 13.0 ], [ 22.5, 13.0 ], [ 22.5, 13.5 ], [ 23.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 13.5 ], [ 23.5, 13.0 ], [ 23.0, 13.0 ], [ 23.0, 13.5 ], [ 23.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 13.5 ], [ 24.0, 13.0 ], [ 23.5, 13.0 ], [ 23.5, 13.5 ], [ 24.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 13.5 ], [ 24.5, 13.0 ], [ 24.0, 13.0 ], [ 24.0, 13.5 ], [ 24.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 13.5 ], [ 25.0, 13.0 ], [ 24.5, 13.0 ], [ 24.5, 13.5 ], [ 25.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 13.5 ], [ 25.5, 13.0 ], [ 25.0, 13.0 ], [ 25.0, 13.5 ], [ 25.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 13.5 ], [ 26.0, 13.0 ], [ 25.5, 13.0 ], [ 25.5, 13.5 ], [ 26.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 13.5 ], [ 26.5, 13.0 ], [ 26.0, 13.0 ], [ 26.0, 13.5 ], [ 26.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 13.5 ], [ 27.0, 13.0 ], [ 26.5, 13.0 ], [ 26.5, 13.5 ], [ 27.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 13.5 ], [ 27.5, 13.0 ], [ 27.0, 13.0 ], [ 27.0, 13.5 ], [ 27.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 13.5 ], [ 28.0, 13.0 ], [ 27.5, 13.0 ], [ 27.5, 13.5 ], [ 28.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 13.5 ], [ 28.5, 13.0 ], [ 28.0, 13.0 ], [ 28.0, 13.5 ], [ 28.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 13.5 ], [ 29.0, 13.0 ], [ 28.5, 13.0 ], [ 28.5, 13.5 ], [ 29.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 13.5 ], [ 29.5, 13.0 ], [ 29.0, 13.0 ], [ 29.0, 13.5 ], [ 29.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 13.5 ], [ 30.0, 13.0 ], [ 29.5, 13.0 ], [ 29.5, 13.5 ], [ 30.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 13.5 ], [ 30.5, 13.0 ], [ 30.0, 13.0 ], [ 30.0, 13.5 ], [ 30.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 13.5 ], [ 31.0, 13.0 ], [ 30.5, 13.0 ], [ 30.5, 13.5 ], [ 31.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 13.5 ], [ 31.5, 13.0 ], [ 31.0, 13.0 ], [ 31.0, 13.5 ], [ 31.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 13.5 ], [ 32.0, 13.0 ], [ 31.5, 13.0 ], [ 31.5, 13.5 ], [ 32.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 13.5 ], [ 32.5, 13.0 ], [ 32.0, 13.0 ], [ 32.0, 13.5 ], [ 32.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 13.5 ], [ 33.0, 13.0 ], [ 32.5, 13.0 ], [ 32.5, 13.5 ], [ 33.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 13.5 ], [ 33.5, 13.0 ], [ 33.0, 13.0 ], [ 33.0, 13.5 ], [ 33.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 13.5 ], [ 34.0, 13.0 ], [ 33.5, 13.0 ], [ 33.5, 13.5 ], [ 34.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 13.5 ], [ 34.5, 13.0 ], [ 34.0, 13.0 ], [ 34.0, 13.5 ], [ 34.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 13.5 ], [ 35.0, 13.0 ], [ 34.5, 13.0 ], [ 34.5, 13.5 ], [ 35.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 13.5 ], [ 35.5, 13.0 ], [ 35.0, 13.0 ], [ 35.0, 13.5 ], [ 35.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 13.5 ], [ 36.0, 13.0 ], [ 35.5, 13.0 ], [ 35.5, 13.5 ], [ 36.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 13.5 ], [ 36.5, 13.0 ], [ 36.0, 13.0 ], [ 36.0, 13.5 ], [ 36.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 13.5 ], [ 37.0, 13.0 ], [ 36.5, 13.0 ], [ 36.5, 13.5 ], [ 37.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 13.5 ], [ 37.5, 13.0 ], [ 37.0, 13.0 ], [ 37.0, 13.5 ], [ 37.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 13.5 ], [ 38.0, 13.0 ], [ 37.5, 13.0 ], [ 37.5, 13.5 ], [ 38.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 13.5 ], [ 38.5, 13.0 ], [ 38.0, 13.0 ], [ 38.0, 13.5 ], [ 38.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 13.5 ], [ 39.0, 13.0 ], [ 38.5, 13.0 ], [ 38.5, 13.5 ], [ 39.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 13.5 ], [ 39.5, 13.0 ], [ 39.0, 13.0 ], [ 39.0, 13.5 ], [ 39.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 13.5 ], [ 40.0, 13.0 ], [ 39.5, 13.0 ], [ 39.5, 13.5 ], [ 40.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 13.5 ], [ 40.5, 13.0 ], [ 40.0, 13.0 ], [ 40.0, 13.5 ], [ 40.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 13.5 ], [ 41.0, 13.0 ], [ 40.5, 13.0 ], [ 40.5, 13.5 ], [ 41.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 13.5 ], [ 41.5, 13.0 ], [ 41.0, 13.0 ], [ 41.0, 13.5 ], [ 41.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 13.5 ], [ 42.0, 13.0 ], [ 41.5, 13.0 ], [ 41.5, 13.5 ], [ 42.0, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.5, 13.5 ], [ 42.5, 13.0 ], [ 42.0, 13.0 ], [ 42.0, 13.5 ], [ 42.5, 13.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.0, 14.0 ], [ -16.0, 13.5 ], [ -16.5, 13.5 ], [ -16.5, 14.0 ], [ -16.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 14.0 ], [ -15.5, 13.5 ], [ -16.0, 13.5 ], [ -16.0, 14.0 ], [ -15.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 14.0 ], [ -15.0, 13.5 ], [ -15.5, 13.5 ], [ -15.5, 14.0 ], [ -15.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 14.0 ], [ -14.5, 13.5 ], [ -15.0, 13.5 ], [ -15.0, 14.0 ], [ -14.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 14.0 ], [ -14.0, 13.5 ], [ -14.5, 13.5 ], [ -14.5, 14.0 ], [ -14.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 14.0 ], [ -13.5, 13.5 ], [ -14.0, 13.5 ], [ -14.0, 14.0 ], [ -13.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 14.0 ], [ -13.0, 13.5 ], [ -13.5, 13.5 ], [ -13.5, 14.0 ], [ -13.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 14.0 ], [ -12.5, 13.5 ], [ -13.0, 13.5 ], [ -13.0, 14.0 ], [ -12.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 14.0 ], [ -12.0, 13.5 ], [ -12.5, 13.5 ], [ -12.5, 14.0 ], [ -12.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 14.0 ], [ -11.5, 13.5 ], [ -12.0, 13.5 ], [ -12.0, 14.0 ], [ -11.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 14.0 ], [ -11.0, 13.5 ], [ -11.5, 13.5 ], [ -11.5, 14.0 ], [ -11.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 14.0 ], [ -10.5, 13.5 ], [ -11.0, 13.5 ], [ -11.0, 14.0 ], [ -10.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 14.0 ], [ -10.0, 13.5 ], [ -10.5, 13.5 ], [ -10.5, 14.0 ], [ -10.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 14.0 ], [ -9.5, 13.5 ], [ -10.0, 13.5 ], [ -10.0, 14.0 ], [ -9.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 14.0 ], [ -9.0, 13.5 ], [ -9.5, 13.5 ], [ -9.5, 14.0 ], [ -9.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 14.0 ], [ -8.5, 13.5 ], [ -9.0, 13.5 ], [ -9.0, 14.0 ], [ -8.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 14.0 ], [ -8.0, 13.5 ], [ -8.5, 13.5 ], [ -8.5, 14.0 ], [ -8.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 14.0 ], [ -7.5, 13.5 ], [ -8.0, 13.5 ], [ -8.0, 14.0 ], [ -7.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 14.0 ], [ -7.0, 13.5 ], [ -7.5, 13.5 ], [ -7.5, 14.0 ], [ -7.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 14.0 ], [ -6.5, 13.5 ], [ -7.0, 13.5 ], [ -7.0, 14.0 ], [ -6.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 14.0 ], [ -6.0, 13.5 ], [ -6.5, 13.5 ], [ -6.5, 14.0 ], [ -6.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 14.0 ], [ -5.5, 13.5 ], [ -6.0, 13.5 ], [ -6.0, 14.0 ], [ -5.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 14.0 ], [ -5.0, 13.5 ], [ -5.5, 13.5 ], [ -5.5, 14.0 ], [ -5.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 14.0 ], [ -4.5, 13.5 ], [ -5.0, 13.5 ], [ -5.0, 14.0 ], [ -4.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 14.0 ], [ -4.0, 13.5 ], [ -4.5, 13.5 ], [ -4.5, 14.0 ], [ -4.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 14.0 ], [ -3.5, 13.5 ], [ -4.0, 13.5 ], [ -4.0, 14.0 ], [ -3.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 14.0 ], [ -3.0, 13.5 ], [ -3.5, 13.5 ], [ -3.5, 14.0 ], [ -3.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 14.0 ], [ -2.5, 13.5 ], [ -3.0, 13.5 ], [ -3.0, 14.0 ], [ -2.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 14.0 ], [ -2.0, 13.5 ], [ -2.5, 13.5 ], [ -2.5, 14.0 ], [ -2.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 14.0 ], [ -1.5, 13.5 ], [ -2.0, 13.5 ], [ -2.0, 14.0 ], [ -1.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 14.0 ], [ -1.0, 13.5 ], [ -1.5, 13.5 ], [ -1.5, 14.0 ], [ -1.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 14.0 ], [ -0.5, 13.5 ], [ -1.0, 13.5 ], [ -1.0, 14.0 ], [ -0.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 14.0 ], [ 0.0, 13.5 ], [ -0.5, 13.5 ], [ -0.5, 14.0 ], [ 0.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 14.0 ], [ 0.5, 13.5 ], [ 0.0, 13.5 ], [ 0.0, 14.0 ], [ 0.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 14.0 ], [ 1.0, 13.5 ], [ 0.5, 13.5 ], [ 0.5, 14.0 ], [ 1.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 14.0 ], [ 1.5, 13.5 ], [ 1.0, 13.5 ], [ 1.0, 14.0 ], [ 1.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 14.0 ], [ 2.0, 13.5 ], [ 1.5, 13.5 ], [ 1.5, 14.0 ], [ 2.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 14.0 ], [ 2.5, 13.5 ], [ 2.0, 13.5 ], [ 2.0, 14.0 ], [ 2.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 14.0 ], [ 3.0, 13.5 ], [ 2.5, 13.5 ], [ 2.5, 14.0 ], [ 3.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 14.0 ], [ 3.5, 13.5 ], [ 3.0, 13.5 ], [ 3.0, 14.0 ], [ 3.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 14.0 ], [ 4.0, 13.5 ], [ 3.5, 13.5 ], [ 3.5, 14.0 ], [ 4.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 14.0 ], [ 4.5, 13.5 ], [ 4.0, 13.5 ], [ 4.0, 14.0 ], [ 4.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 14.0 ], [ 5.0, 13.5 ], [ 4.5, 13.5 ], [ 4.5, 14.0 ], [ 5.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 14.0 ], [ 5.5, 13.5 ], [ 5.0, 13.5 ], [ 5.0, 14.0 ], [ 5.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 14.0 ], [ 6.0, 13.5 ], [ 5.5, 13.5 ], [ 5.5, 14.0 ], [ 6.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 14.0 ], [ 6.5, 13.5 ], [ 6.0, 13.5 ], [ 6.0, 14.0 ], [ 6.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 14.0 ], [ 7.0, 13.5 ], [ 6.5, 13.5 ], [ 6.5, 14.0 ], [ 7.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 14.0 ], [ 7.5, 13.5 ], [ 7.0, 13.5 ], [ 7.0, 14.0 ], [ 7.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 14.0 ], [ 8.0, 13.5 ], [ 7.5, 13.5 ], [ 7.5, 14.0 ], [ 8.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 14.0 ], [ 8.5, 13.5 ], [ 8.0, 13.5 ], [ 8.0, 14.0 ], [ 8.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 14.0 ], [ 9.0, 13.5 ], [ 8.5, 13.5 ], [ 8.5, 14.0 ], [ 9.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 14.0 ], [ 9.5, 13.5 ], [ 9.0, 13.5 ], [ 9.0, 14.0 ], [ 9.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 14.0 ], [ 10.0, 13.5 ], [ 9.5, 13.5 ], [ 9.5, 14.0 ], [ 10.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 14.0 ], [ 10.5, 13.5 ], [ 10.0, 13.5 ], [ 10.0, 14.0 ], [ 10.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 14.0 ], [ 11.0, 13.5 ], [ 10.5, 13.5 ], [ 10.5, 14.0 ], [ 11.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 14.0 ], [ 11.5, 13.5 ], [ 11.0, 13.5 ], [ 11.0, 14.0 ], [ 11.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 14.0 ], [ 12.0, 13.5 ], [ 11.5, 13.5 ], [ 11.5, 14.0 ], [ 12.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 14.0 ], [ 12.5, 13.5 ], [ 12.0, 13.5 ], [ 12.0, 14.0 ], [ 12.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 14.0 ], [ 13.0, 13.5 ], [ 12.5, 13.5 ], [ 12.5, 14.0 ], [ 13.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 14.0 ], [ 13.5, 13.5 ], [ 13.0, 13.5 ], [ 13.0, 14.0 ], [ 13.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 14.0 ], [ 14.0, 13.5 ], [ 13.5, 13.5 ], [ 13.5, 14.0 ], [ 14.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 14.0 ], [ 14.5, 13.5 ], [ 14.0, 13.5 ], [ 14.0, 14.0 ], [ 14.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 14.0 ], [ 15.0, 13.5 ], [ 14.5, 13.5 ], [ 14.5, 14.0 ], [ 15.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 14.0 ], [ 15.5, 13.5 ], [ 15.0, 13.5 ], [ 15.0, 14.0 ], [ 15.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 14.0 ], [ 16.0, 13.5 ], [ 15.5, 13.5 ], [ 15.5, 14.0 ], [ 16.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 14.0 ], [ 16.5, 13.5 ], [ 16.0, 13.5 ], [ 16.0, 14.0 ], [ 16.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 14.0 ], [ 17.0, 13.5 ], [ 16.5, 13.5 ], [ 16.5, 14.0 ], [ 17.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 14.0 ], [ 17.5, 13.5 ], [ 17.0, 13.5 ], [ 17.0, 14.0 ], [ 17.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 14.0 ], [ 18.0, 13.5 ], [ 17.5, 13.5 ], [ 17.5, 14.0 ], [ 18.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 14.0 ], [ 18.5, 13.5 ], [ 18.0, 13.5 ], [ 18.0, 14.0 ], [ 18.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 14.0 ], [ 19.0, 13.5 ], [ 18.5, 13.5 ], [ 18.5, 14.0 ], [ 19.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 14.0 ], [ 19.5, 13.5 ], [ 19.0, 13.5 ], [ 19.0, 14.0 ], [ 19.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 14.0 ], [ 20.0, 13.5 ], [ 19.5, 13.5 ], [ 19.5, 14.0 ], [ 20.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 14.0 ], [ 20.5, 13.5 ], [ 20.0, 13.5 ], [ 20.0, 14.0 ], [ 20.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 14.0 ], [ 21.0, 13.5 ], [ 20.5, 13.5 ], [ 20.5, 14.0 ], [ 21.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 14.0 ], [ 21.5, 13.5 ], [ 21.0, 13.5 ], [ 21.0, 14.0 ], [ 21.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 14.0 ], [ 22.0, 13.5 ], [ 21.5, 13.5 ], [ 21.5, 14.0 ], [ 22.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 14.0 ], [ 22.5, 13.5 ], [ 22.0, 13.5 ], [ 22.0, 14.0 ], [ 22.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 14.0 ], [ 23.0, 13.5 ], [ 22.5, 13.5 ], [ 22.5, 14.0 ], [ 23.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 14.0 ], [ 23.5, 13.5 ], [ 23.0, 13.5 ], [ 23.0, 14.0 ], [ 23.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 14.0 ], [ 24.0, 13.5 ], [ 23.5, 13.5 ], [ 23.5, 14.0 ], [ 24.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 14.0 ], [ 24.5, 13.5 ], [ 24.0, 13.5 ], [ 24.0, 14.0 ], [ 24.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 14.0 ], [ 25.0, 13.5 ], [ 24.5, 13.5 ], [ 24.5, 14.0 ], [ 25.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 14.0 ], [ 25.5, 13.5 ], [ 25.0, 13.5 ], [ 25.0, 14.0 ], [ 25.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 14.0 ], [ 26.0, 13.5 ], [ 25.5, 13.5 ], [ 25.5, 14.0 ], [ 26.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 14.0 ], [ 26.5, 13.5 ], [ 26.0, 13.5 ], [ 26.0, 14.0 ], [ 26.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 14.0 ], [ 27.0, 13.5 ], [ 26.5, 13.5 ], [ 26.5, 14.0 ], [ 27.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 14.0 ], [ 27.5, 13.5 ], [ 27.0, 13.5 ], [ 27.0, 14.0 ], [ 27.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 14.0 ], [ 28.0, 13.5 ], [ 27.5, 13.5 ], [ 27.5, 14.0 ], [ 28.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 14.0 ], [ 28.5, 13.5 ], [ 28.0, 13.5 ], [ 28.0, 14.0 ], [ 28.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 14.0 ], [ 29.0, 13.5 ], [ 28.5, 13.5 ], [ 28.5, 14.0 ], [ 29.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 14.0 ], [ 29.5, 13.5 ], [ 29.0, 13.5 ], [ 29.0, 14.0 ], [ 29.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 14.0 ], [ 30.0, 13.5 ], [ 29.5, 13.5 ], [ 29.5, 14.0 ], [ 30.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 14.0 ], [ 30.5, 13.5 ], [ 30.0, 13.5 ], [ 30.0, 14.0 ], [ 30.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 14.0 ], [ 31.0, 13.5 ], [ 30.5, 13.5 ], [ 30.5, 14.0 ], [ 31.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 14.0 ], [ 31.5, 13.5 ], [ 31.0, 13.5 ], [ 31.0, 14.0 ], [ 31.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 14.0 ], [ 32.0, 13.5 ], [ 31.5, 13.5 ], [ 31.5, 14.0 ], [ 32.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 14.0 ], [ 32.5, 13.5 ], [ 32.0, 13.5 ], [ 32.0, 14.0 ], [ 32.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 14.0 ], [ 33.0, 13.5 ], [ 32.5, 13.5 ], [ 32.5, 14.0 ], [ 33.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 14.0 ], [ 33.5, 13.5 ], [ 33.0, 13.5 ], [ 33.0, 14.0 ], [ 33.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 14.0 ], [ 34.0, 13.5 ], [ 33.5, 13.5 ], [ 33.5, 14.0 ], [ 34.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 14.0 ], [ 34.5, 13.5 ], [ 34.0, 13.5 ], [ 34.0, 14.0 ], [ 34.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 14.0 ], [ 35.0, 13.5 ], [ 34.5, 13.5 ], [ 34.5, 14.0 ], [ 35.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 14.0 ], [ 35.5, 13.5 ], [ 35.0, 13.5 ], [ 35.0, 14.0 ], [ 35.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 14.0 ], [ 36.0, 13.5 ], [ 35.5, 13.5 ], [ 35.5, 14.0 ], [ 36.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 14.0 ], [ 36.5, 13.5 ], [ 36.0, 13.5 ], [ 36.0, 14.0 ], [ 36.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 14.0 ], [ 37.0, 13.5 ], [ 36.5, 13.5 ], [ 36.5, 14.0 ], [ 37.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 14.0 ], [ 37.5, 13.5 ], [ 37.0, 13.5 ], [ 37.0, 14.0 ], [ 37.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 14.0 ], [ 38.0, 13.5 ], [ 37.5, 13.5 ], [ 37.5, 14.0 ], [ 38.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 14.0 ], [ 38.5, 13.5 ], [ 38.0, 13.5 ], [ 38.0, 14.0 ], [ 38.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 14.0 ], [ 39.0, 13.5 ], [ 38.5, 13.5 ], [ 38.5, 14.0 ], [ 39.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 14.0 ], [ 39.5, 13.5 ], [ 39.0, 13.5 ], [ 39.0, 14.0 ], [ 39.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 14.0 ], [ 40.0, 13.5 ], [ 39.5, 13.5 ], [ 39.5, 14.0 ], [ 40.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 14.0 ], [ 40.5, 13.5 ], [ 40.0, 13.5 ], [ 40.0, 14.0 ], [ 40.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 14.0 ], [ 41.0, 13.5 ], [ 40.5, 13.5 ], [ 40.5, 14.0 ], [ 41.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 14.0 ], [ 41.5, 13.5 ], [ 41.0, 13.5 ], [ 41.0, 14.0 ], [ 41.5, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.0, 14.0 ], [ 42.0, 13.5 ], [ 41.5, 13.5 ], [ 41.5, 14.0 ], [ 42.0, 14.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.5, 14.5 ], [ -16.5, 14.0 ], [ -17.0, 14.0 ], [ -17.0, 14.5 ], [ -16.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.0, 14.5 ], [ -16.0, 14.0 ], [ -16.5, 14.0 ], [ -16.5, 14.5 ], [ -16.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 14.5 ], [ -15.5, 14.0 ], [ -16.0, 14.0 ], [ -16.0, 14.5 ], [ -15.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 14.5 ], [ -15.0, 14.0 ], [ -15.5, 14.0 ], [ -15.5, 14.5 ], [ -15.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 14.5 ], [ -14.5, 14.0 ], [ -15.0, 14.0 ], [ -15.0, 14.5 ], [ -14.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 14.5 ], [ -14.0, 14.0 ], [ -14.5, 14.0 ], [ -14.5, 14.5 ], [ -14.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 14.5 ], [ -13.5, 14.0 ], [ -14.0, 14.0 ], [ -14.0, 14.5 ], [ -13.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 14.5 ], [ -13.0, 14.0 ], [ -13.5, 14.0 ], [ -13.5, 14.5 ], [ -13.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 14.5 ], [ -12.5, 14.0 ], [ -13.0, 14.0 ], [ -13.0, 14.5 ], [ -12.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 14.5 ], [ -12.0, 14.0 ], [ -12.5, 14.0 ], [ -12.5, 14.5 ], [ -12.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 14.5 ], [ -11.5, 14.0 ], [ -12.0, 14.0 ], [ -12.0, 14.5 ], [ -11.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 14.5 ], [ -11.0, 14.0 ], [ -11.5, 14.0 ], [ -11.5, 14.5 ], [ -11.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 14.5 ], [ -10.5, 14.0 ], [ -11.0, 14.0 ], [ -11.0, 14.5 ], [ -10.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 14.5 ], [ -10.0, 14.0 ], [ -10.5, 14.0 ], [ -10.5, 14.5 ], [ -10.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 14.5 ], [ -9.5, 14.0 ], [ -10.0, 14.0 ], [ -10.0, 14.5 ], [ -9.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 14.5 ], [ -9.0, 14.0 ], [ -9.5, 14.0 ], [ -9.5, 14.5 ], [ -9.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 14.5 ], [ -8.5, 14.0 ], [ -9.0, 14.0 ], [ -9.0, 14.5 ], [ -8.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 14.5 ], [ -8.0, 14.0 ], [ -8.5, 14.0 ], [ -8.5, 14.5 ], [ -8.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 14.5 ], [ -7.5, 14.0 ], [ -8.0, 14.0 ], [ -8.0, 14.5 ], [ -7.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 14.5 ], [ -7.0, 14.0 ], [ -7.5, 14.0 ], [ -7.5, 14.5 ], [ -7.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 14.5 ], [ -6.5, 14.0 ], [ -7.0, 14.0 ], [ -7.0, 14.5 ], [ -6.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 14.5 ], [ -6.0, 14.0 ], [ -6.5, 14.0 ], [ -6.5, 14.5 ], [ -6.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 14.5 ], [ -5.5, 14.0 ], [ -6.0, 14.0 ], [ -6.0, 14.5 ], [ -5.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 14.5 ], [ -5.0, 14.0 ], [ -5.5, 14.0 ], [ -5.5, 14.5 ], [ -5.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 14.5 ], [ -4.5, 14.0 ], [ -5.0, 14.0 ], [ -5.0, 14.5 ], [ -4.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 14.5 ], [ -4.0, 14.0 ], [ -4.5, 14.0 ], [ -4.5, 14.5 ], [ -4.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 14.5 ], [ -3.5, 14.0 ], [ -4.0, 14.0 ], [ -4.0, 14.5 ], [ -3.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 14.5 ], [ -3.0, 14.0 ], [ -3.5, 14.0 ], [ -3.5, 14.5 ], [ -3.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 14.5 ], [ -2.5, 14.0 ], [ -3.0, 14.0 ], [ -3.0, 14.5 ], [ -2.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 14.5 ], [ -2.0, 14.0 ], [ -2.5, 14.0 ], [ -2.5, 14.5 ], [ -2.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 14.5 ], [ -1.5, 14.0 ], [ -2.0, 14.0 ], [ -2.0, 14.5 ], [ -1.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 14.5 ], [ -1.0, 14.0 ], [ -1.5, 14.0 ], [ -1.5, 14.5 ], [ -1.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 14.5 ], [ -0.5, 14.0 ], [ -1.0, 14.0 ], [ -1.0, 14.5 ], [ -0.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 14.5 ], [ 0.0, 14.0 ], [ -0.5, 14.0 ], [ -0.5, 14.5 ], [ 0.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 14.5 ], [ 0.5, 14.0 ], [ 0.0, 14.0 ], [ 0.0, 14.5 ], [ 0.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 14.5 ], [ 1.0, 14.0 ], [ 0.5, 14.0 ], [ 0.5, 14.5 ], [ 1.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 14.5 ], [ 1.5, 14.0 ], [ 1.0, 14.0 ], [ 1.0, 14.5 ], [ 1.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 14.5 ], [ 2.0, 14.0 ], [ 1.5, 14.0 ], [ 1.5, 14.5 ], [ 2.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 14.5 ], [ 2.5, 14.0 ], [ 2.0, 14.0 ], [ 2.0, 14.5 ], [ 2.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 14.5 ], [ 3.0, 14.0 ], [ 2.5, 14.0 ], [ 2.5, 14.5 ], [ 3.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 14.5 ], [ 3.5, 14.0 ], [ 3.0, 14.0 ], [ 3.0, 14.5 ], [ 3.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 14.5 ], [ 4.0, 14.0 ], [ 3.5, 14.0 ], [ 3.5, 14.5 ], [ 4.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 14.5 ], [ 4.5, 14.0 ], [ 4.0, 14.0 ], [ 4.0, 14.5 ], [ 4.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 14.5 ], [ 5.0, 14.0 ], [ 4.5, 14.0 ], [ 4.5, 14.5 ], [ 5.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 14.5 ], [ 5.5, 14.0 ], [ 5.0, 14.0 ], [ 5.0, 14.5 ], [ 5.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 14.5 ], [ 6.0, 14.0 ], [ 5.5, 14.0 ], [ 5.5, 14.5 ], [ 6.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 14.5 ], [ 6.5, 14.0 ], [ 6.0, 14.0 ], [ 6.0, 14.5 ], [ 6.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 14.5 ], [ 7.0, 14.0 ], [ 6.5, 14.0 ], [ 6.5, 14.5 ], [ 7.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 14.5 ], [ 7.5, 14.0 ], [ 7.0, 14.0 ], [ 7.0, 14.5 ], [ 7.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 14.5 ], [ 8.0, 14.0 ], [ 7.5, 14.0 ], [ 7.5, 14.5 ], [ 8.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 14.5 ], [ 8.5, 14.0 ], [ 8.0, 14.0 ], [ 8.0, 14.5 ], [ 8.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 14.5 ], [ 9.0, 14.0 ], [ 8.5, 14.0 ], [ 8.5, 14.5 ], [ 9.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 14.5 ], [ 9.5, 14.0 ], [ 9.0, 14.0 ], [ 9.0, 14.5 ], [ 9.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 14.5 ], [ 10.0, 14.0 ], [ 9.5, 14.0 ], [ 9.5, 14.5 ], [ 10.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 14.5 ], [ 10.5, 14.0 ], [ 10.0, 14.0 ], [ 10.0, 14.5 ], [ 10.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 14.5 ], [ 11.0, 14.0 ], [ 10.5, 14.0 ], [ 10.5, 14.5 ], [ 11.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 14.5 ], [ 11.5, 14.0 ], [ 11.0, 14.0 ], [ 11.0, 14.5 ], [ 11.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 14.5 ], [ 12.0, 14.0 ], [ 11.5, 14.0 ], [ 11.5, 14.5 ], [ 12.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 14.5 ], [ 12.5, 14.0 ], [ 12.0, 14.0 ], [ 12.0, 14.5 ], [ 12.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 14.5 ], [ 13.0, 14.0 ], [ 12.5, 14.0 ], [ 12.5, 14.5 ], [ 13.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 14.5 ], [ 13.5, 14.0 ], [ 13.0, 14.0 ], [ 13.0, 14.5 ], [ 13.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 14.5 ], [ 14.0, 14.0 ], [ 13.5, 14.0 ], [ 13.5, 14.5 ], [ 14.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 14.5 ], [ 14.5, 14.0 ], [ 14.0, 14.0 ], [ 14.0, 14.5 ], [ 14.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 14.5 ], [ 15.0, 14.0 ], [ 14.5, 14.0 ], [ 14.5, 14.5 ], [ 15.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 14.5 ], [ 15.5, 14.0 ], [ 15.0, 14.0 ], [ 15.0, 14.5 ], [ 15.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 14.5 ], [ 16.0, 14.0 ], [ 15.5, 14.0 ], [ 15.5, 14.5 ], [ 16.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 14.5 ], [ 16.5, 14.0 ], [ 16.0, 14.0 ], [ 16.0, 14.5 ], [ 16.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 14.5 ], [ 17.0, 14.0 ], [ 16.5, 14.0 ], [ 16.5, 14.5 ], [ 17.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 14.5 ], [ 17.5, 14.0 ], [ 17.0, 14.0 ], [ 17.0, 14.5 ], [ 17.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 14.5 ], [ 18.0, 14.0 ], [ 17.5, 14.0 ], [ 17.5, 14.5 ], [ 18.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 14.5 ], [ 18.5, 14.0 ], [ 18.0, 14.0 ], [ 18.0, 14.5 ], [ 18.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 14.5 ], [ 19.0, 14.0 ], [ 18.5, 14.0 ], [ 18.5, 14.5 ], [ 19.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 14.5 ], [ 19.5, 14.0 ], [ 19.0, 14.0 ], [ 19.0, 14.5 ], [ 19.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 14.5 ], [ 20.0, 14.0 ], [ 19.5, 14.0 ], [ 19.5, 14.5 ], [ 20.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 14.5 ], [ 20.5, 14.0 ], [ 20.0, 14.0 ], [ 20.0, 14.5 ], [ 20.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 14.5 ], [ 21.0, 14.0 ], [ 20.5, 14.0 ], [ 20.5, 14.5 ], [ 21.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 14.5 ], [ 21.5, 14.0 ], [ 21.0, 14.0 ], [ 21.0, 14.5 ], [ 21.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 14.5 ], [ 22.0, 14.0 ], [ 21.5, 14.0 ], [ 21.5, 14.5 ], [ 22.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 14.5 ], [ 22.5, 14.0 ], [ 22.0, 14.0 ], [ 22.0, 14.5 ], [ 22.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 14.5 ], [ 23.0, 14.0 ], [ 22.5, 14.0 ], [ 22.5, 14.5 ], [ 23.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 14.5 ], [ 23.5, 14.0 ], [ 23.0, 14.0 ], [ 23.0, 14.5 ], [ 23.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 14.5 ], [ 24.0, 14.0 ], [ 23.5, 14.0 ], [ 23.5, 14.5 ], [ 24.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 14.5 ], [ 24.5, 14.0 ], [ 24.0, 14.0 ], [ 24.0, 14.5 ], [ 24.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 14.5 ], [ 25.0, 14.0 ], [ 24.5, 14.0 ], [ 24.5, 14.5 ], [ 25.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 14.5 ], [ 25.5, 14.0 ], [ 25.0, 14.0 ], [ 25.0, 14.5 ], [ 25.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 14.5 ], [ 26.0, 14.0 ], [ 25.5, 14.0 ], [ 25.5, 14.5 ], [ 26.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 14.5 ], [ 26.5, 14.0 ], [ 26.0, 14.0 ], [ 26.0, 14.5 ], [ 26.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 14.5 ], [ 27.0, 14.0 ], [ 26.5, 14.0 ], [ 26.5, 14.5 ], [ 27.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 14.5 ], [ 27.5, 14.0 ], [ 27.0, 14.0 ], [ 27.0, 14.5 ], [ 27.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 14.5 ], [ 28.0, 14.0 ], [ 27.5, 14.0 ], [ 27.5, 14.5 ], [ 28.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 14.5 ], [ 28.5, 14.0 ], [ 28.0, 14.0 ], [ 28.0, 14.5 ], [ 28.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 14.5 ], [ 29.0, 14.0 ], [ 28.5, 14.0 ], [ 28.5, 14.5 ], [ 29.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 14.5 ], [ 29.5, 14.0 ], [ 29.0, 14.0 ], [ 29.0, 14.5 ], [ 29.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 14.5 ], [ 30.0, 14.0 ], [ 29.5, 14.0 ], [ 29.5, 14.5 ], [ 30.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 14.5 ], [ 30.5, 14.0 ], [ 30.0, 14.0 ], [ 30.0, 14.5 ], [ 30.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 14.5 ], [ 31.0, 14.0 ], [ 30.5, 14.0 ], [ 30.5, 14.5 ], [ 31.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 14.5 ], [ 31.5, 14.0 ], [ 31.0, 14.0 ], [ 31.0, 14.5 ], [ 31.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 14.5 ], [ 32.0, 14.0 ], [ 31.5, 14.0 ], [ 31.5, 14.5 ], [ 32.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 14.5 ], [ 32.5, 14.0 ], [ 32.0, 14.0 ], [ 32.0, 14.5 ], [ 32.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 14.5 ], [ 33.0, 14.0 ], [ 32.5, 14.0 ], [ 32.5, 14.5 ], [ 33.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 14.5 ], [ 33.5, 14.0 ], [ 33.0, 14.0 ], [ 33.0, 14.5 ], [ 33.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 14.5 ], [ 34.0, 14.0 ], [ 33.5, 14.0 ], [ 33.5, 14.5 ], [ 34.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 14.5 ], [ 34.5, 14.0 ], [ 34.0, 14.0 ], [ 34.0, 14.5 ], [ 34.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 14.5 ], [ 35.0, 14.0 ], [ 34.5, 14.0 ], [ 34.5, 14.5 ], [ 35.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 14.5 ], [ 35.5, 14.0 ], [ 35.0, 14.0 ], [ 35.0, 14.5 ], [ 35.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 14.5 ], [ 36.0, 14.0 ], [ 35.5, 14.0 ], [ 35.5, 14.5 ], [ 36.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 14.5 ], [ 36.5, 14.0 ], [ 36.0, 14.0 ], [ 36.0, 14.5 ], [ 36.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 14.5 ], [ 37.0, 14.0 ], [ 36.5, 14.0 ], [ 36.5, 14.5 ], [ 37.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 14.5 ], [ 37.5, 14.0 ], [ 37.0, 14.0 ], [ 37.0, 14.5 ], [ 37.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 14.5 ], [ 38.0, 14.0 ], [ 37.5, 14.0 ], [ 37.5, 14.5 ], [ 38.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 14.5 ], [ 38.5, 14.0 ], [ 38.0, 14.0 ], [ 38.0, 14.5 ], [ 38.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 14.5 ], [ 39.0, 14.0 ], [ 38.5, 14.0 ], [ 38.5, 14.5 ], [ 39.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 14.5 ], [ 39.5, 14.0 ], [ 39.0, 14.0 ], [ 39.0, 14.5 ], [ 39.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 14.5 ], [ 40.0, 14.0 ], [ 39.5, 14.0 ], [ 39.5, 14.5 ], [ 40.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 14.5 ], [ 40.5, 14.0 ], [ 40.0, 14.0 ], [ 40.0, 14.5 ], [ 40.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 14.5 ], [ 41.0, 14.0 ], [ 40.5, 14.0 ], [ 40.5, 14.5 ], [ 41.0, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.5, 14.5 ], [ 41.5, 14.0 ], [ 41.0, 14.0 ], [ 41.0, 14.5 ], [ 41.5, 14.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -17.0, 15.0 ], [ -17.0, 14.5 ], [ -17.5, 14.5 ], [ -17.5, 15.0 ], [ -17.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.5, 15.0 ], [ -16.5, 14.5 ], [ -17.0, 14.5 ], [ -17.0, 15.0 ], [ -16.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.0, 15.0 ], [ -16.0, 14.5 ], [ -16.5, 14.5 ], [ -16.5, 15.0 ], [ -16.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 15.0 ], [ -15.5, 14.5 ], [ -16.0, 14.5 ], [ -16.0, 15.0 ], [ -15.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 15.0 ], [ -15.0, 14.5 ], [ -15.5, 14.5 ], [ -15.5, 15.0 ], [ -15.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 15.0 ], [ -14.5, 14.5 ], [ -15.0, 14.5 ], [ -15.0, 15.0 ], [ -14.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 15.0 ], [ -14.0, 14.5 ], [ -14.5, 14.5 ], [ -14.5, 15.0 ], [ -14.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 15.0 ], [ -13.5, 14.5 ], [ -14.0, 14.5 ], [ -14.0, 15.0 ], [ -13.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 15.0 ], [ -13.0, 14.5 ], [ -13.5, 14.5 ], [ -13.5, 15.0 ], [ -13.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 15.0 ], [ -12.5, 14.5 ], [ -13.0, 14.5 ], [ -13.0, 15.0 ], [ -12.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 15.0 ], [ -12.0, 14.5 ], [ -12.5, 14.5 ], [ -12.5, 15.0 ], [ -12.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 15.0 ], [ -11.5, 14.5 ], [ -12.0, 14.5 ], [ -12.0, 15.0 ], [ -11.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 15.0 ], [ -11.0, 14.5 ], [ -11.5, 14.5 ], [ -11.5, 15.0 ], [ -11.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 15.0 ], [ -10.5, 14.5 ], [ -11.0, 14.5 ], [ -11.0, 15.0 ], [ -10.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 15.0 ], [ -10.0, 14.5 ], [ -10.5, 14.5 ], [ -10.5, 15.0 ], [ -10.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 15.0 ], [ -9.5, 14.5 ], [ -10.0, 14.5 ], [ -10.0, 15.0 ], [ -9.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 15.0 ], [ -9.0, 14.5 ], [ -9.5, 14.5 ], [ -9.5, 15.0 ], [ -9.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 15.0 ], [ -8.5, 14.5 ], [ -9.0, 14.5 ], [ -9.0, 15.0 ], [ -8.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 15.0 ], [ -8.0, 14.5 ], [ -8.5, 14.5 ], [ -8.5, 15.0 ], [ -8.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 15.0 ], [ -7.5, 14.5 ], [ -8.0, 14.5 ], [ -8.0, 15.0 ], [ -7.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 15.0 ], [ -7.0, 14.5 ], [ -7.5, 14.5 ], [ -7.5, 15.0 ], [ -7.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 15.0 ], [ -6.5, 14.5 ], [ -7.0, 14.5 ], [ -7.0, 15.0 ], [ -6.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 15.0 ], [ -6.0, 14.5 ], [ -6.5, 14.5 ], [ -6.5, 15.0 ], [ -6.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 15.0 ], [ -5.5, 14.5 ], [ -6.0, 14.5 ], [ -6.0, 15.0 ], [ -5.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 15.0 ], [ -5.0, 14.5 ], [ -5.5, 14.5 ], [ -5.5, 15.0 ], [ -5.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 15.0 ], [ -4.5, 14.5 ], [ -5.0, 14.5 ], [ -5.0, 15.0 ], [ -4.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 15.0 ], [ -4.0, 14.5 ], [ -4.5, 14.5 ], [ -4.5, 15.0 ], [ -4.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 15.0 ], [ -3.5, 14.5 ], [ -4.0, 14.5 ], [ -4.0, 15.0 ], [ -3.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 15.0 ], [ -3.0, 14.5 ], [ -3.5, 14.5 ], [ -3.5, 15.0 ], [ -3.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 15.0 ], [ -2.5, 14.5 ], [ -3.0, 14.5 ], [ -3.0, 15.0 ], [ -2.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 15.0 ], [ -2.0, 14.5 ], [ -2.5, 14.5 ], [ -2.5, 15.0 ], [ -2.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 15.0 ], [ -1.5, 14.5 ], [ -2.0, 14.5 ], [ -2.0, 15.0 ], [ -1.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 15.0 ], [ -1.0, 14.5 ], [ -1.5, 14.5 ], [ -1.5, 15.0 ], [ -1.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 15.0 ], [ -0.5, 14.5 ], [ -1.0, 14.5 ], [ -1.0, 15.0 ], [ -0.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 15.0 ], [ 0.0, 14.5 ], [ -0.5, 14.5 ], [ -0.5, 15.0 ], [ 0.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 15.0 ], [ 0.5, 14.5 ], [ 0.0, 14.5 ], [ 0.0, 15.0 ], [ 0.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 15.0 ], [ 1.0, 14.5 ], [ 0.5, 14.5 ], [ 0.5, 15.0 ], [ 1.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 15.0 ], [ 1.5, 14.5 ], [ 1.0, 14.5 ], [ 1.0, 15.0 ], [ 1.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 15.0 ], [ 2.0, 14.5 ], [ 1.5, 14.5 ], [ 1.5, 15.0 ], [ 2.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 15.0 ], [ 2.5, 14.5 ], [ 2.0, 14.5 ], [ 2.0, 15.0 ], [ 2.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 15.0 ], [ 3.0, 14.5 ], [ 2.5, 14.5 ], [ 2.5, 15.0 ], [ 3.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 15.0 ], [ 3.5, 14.5 ], [ 3.0, 14.5 ], [ 3.0, 15.0 ], [ 3.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 15.0 ], [ 4.0, 14.5 ], [ 3.5, 14.5 ], [ 3.5, 15.0 ], [ 4.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 15.0 ], [ 4.5, 14.5 ], [ 4.0, 14.5 ], [ 4.0, 15.0 ], [ 4.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 15.0 ], [ 5.0, 14.5 ], [ 4.5, 14.5 ], [ 4.5, 15.0 ], [ 5.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 15.0 ], [ 5.5, 14.5 ], [ 5.0, 14.5 ], [ 5.0, 15.0 ], [ 5.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 15.0 ], [ 6.0, 14.5 ], [ 5.5, 14.5 ], [ 5.5, 15.0 ], [ 6.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 15.0 ], [ 6.5, 14.5 ], [ 6.0, 14.5 ], [ 6.0, 15.0 ], [ 6.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 15.0 ], [ 7.0, 14.5 ], [ 6.5, 14.5 ], [ 6.5, 15.0 ], [ 7.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 15.0 ], [ 7.5, 14.5 ], [ 7.0, 14.5 ], [ 7.0, 15.0 ], [ 7.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 15.0 ], [ 8.0, 14.5 ], [ 7.5, 14.5 ], [ 7.5, 15.0 ], [ 8.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 15.0 ], [ 8.5, 14.5 ], [ 8.0, 14.5 ], [ 8.0, 15.0 ], [ 8.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 15.0 ], [ 9.0, 14.5 ], [ 8.5, 14.5 ], [ 8.5, 15.0 ], [ 9.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 15.0 ], [ 9.5, 14.5 ], [ 9.0, 14.5 ], [ 9.0, 15.0 ], [ 9.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 15.0 ], [ 10.0, 14.5 ], [ 9.5, 14.5 ], [ 9.5, 15.0 ], [ 10.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 15.0 ], [ 10.5, 14.5 ], [ 10.0, 14.5 ], [ 10.0, 15.0 ], [ 10.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 15.0 ], [ 11.0, 14.5 ], [ 10.5, 14.5 ], [ 10.5, 15.0 ], [ 11.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 15.0 ], [ 11.5, 14.5 ], [ 11.0, 14.5 ], [ 11.0, 15.0 ], [ 11.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 15.0 ], [ 12.0, 14.5 ], [ 11.5, 14.5 ], [ 11.5, 15.0 ], [ 12.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 15.0 ], [ 12.5, 14.5 ], [ 12.0, 14.5 ], [ 12.0, 15.0 ], [ 12.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 15.0 ], [ 13.0, 14.5 ], [ 12.5, 14.5 ], [ 12.5, 15.0 ], [ 13.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 15.0 ], [ 13.5, 14.5 ], [ 13.0, 14.5 ], [ 13.0, 15.0 ], [ 13.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 15.0 ], [ 14.0, 14.5 ], [ 13.5, 14.5 ], [ 13.5, 15.0 ], [ 14.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 15.0 ], [ 14.5, 14.5 ], [ 14.0, 14.5 ], [ 14.0, 15.0 ], [ 14.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 15.0 ], [ 15.0, 14.5 ], [ 14.5, 14.5 ], [ 14.5, 15.0 ], [ 15.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 15.0 ], [ 15.5, 14.5 ], [ 15.0, 14.5 ], [ 15.0, 15.0 ], [ 15.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 15.0 ], [ 16.0, 14.5 ], [ 15.5, 14.5 ], [ 15.5, 15.0 ], [ 16.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 15.0 ], [ 16.5, 14.5 ], [ 16.0, 14.5 ], [ 16.0, 15.0 ], [ 16.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 15.0 ], [ 17.0, 14.5 ], [ 16.5, 14.5 ], [ 16.5, 15.0 ], [ 17.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 15.0 ], [ 17.5, 14.5 ], [ 17.0, 14.5 ], [ 17.0, 15.0 ], [ 17.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 15.0 ], [ 18.0, 14.5 ], [ 17.5, 14.5 ], [ 17.5, 15.0 ], [ 18.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 15.0 ], [ 18.5, 14.5 ], [ 18.0, 14.5 ], [ 18.0, 15.0 ], [ 18.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 15.0 ], [ 19.0, 14.5 ], [ 18.5, 14.5 ], [ 18.5, 15.0 ], [ 19.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 15.0 ], [ 19.5, 14.5 ], [ 19.0, 14.5 ], [ 19.0, 15.0 ], [ 19.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 15.0 ], [ 20.0, 14.5 ], [ 19.5, 14.5 ], [ 19.5, 15.0 ], [ 20.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 15.0 ], [ 20.5, 14.5 ], [ 20.0, 14.5 ], [ 20.0, 15.0 ], [ 20.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 15.0 ], [ 21.0, 14.5 ], [ 20.5, 14.5 ], [ 20.5, 15.0 ], [ 21.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 15.0 ], [ 21.5, 14.5 ], [ 21.0, 14.5 ], [ 21.0, 15.0 ], [ 21.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 15.0 ], [ 22.0, 14.5 ], [ 21.5, 14.5 ], [ 21.5, 15.0 ], [ 22.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 15.0 ], [ 22.5, 14.5 ], [ 22.0, 14.5 ], [ 22.0, 15.0 ], [ 22.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 15.0 ], [ 23.0, 14.5 ], [ 22.5, 14.5 ], [ 22.5, 15.0 ], [ 23.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 15.0 ], [ 23.5, 14.5 ], [ 23.0, 14.5 ], [ 23.0, 15.0 ], [ 23.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 15.0 ], [ 24.0, 14.5 ], [ 23.5, 14.5 ], [ 23.5, 15.0 ], [ 24.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 15.0 ], [ 24.5, 14.5 ], [ 24.0, 14.5 ], [ 24.0, 15.0 ], [ 24.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 15.0 ], [ 25.0, 14.5 ], [ 24.5, 14.5 ], [ 24.5, 15.0 ], [ 25.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 15.0 ], [ 25.5, 14.5 ], [ 25.0, 14.5 ], [ 25.0, 15.0 ], [ 25.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 15.0 ], [ 26.0, 14.5 ], [ 25.5, 14.5 ], [ 25.5, 15.0 ], [ 26.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 15.0 ], [ 26.5, 14.5 ], [ 26.0, 14.5 ], [ 26.0, 15.0 ], [ 26.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 15.0 ], [ 27.0, 14.5 ], [ 26.5, 14.5 ], [ 26.5, 15.0 ], [ 27.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 15.0 ], [ 27.5, 14.5 ], [ 27.0, 14.5 ], [ 27.0, 15.0 ], [ 27.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 15.0 ], [ 28.0, 14.5 ], [ 27.5, 14.5 ], [ 27.5, 15.0 ], [ 28.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 15.0 ], [ 28.5, 14.5 ], [ 28.0, 14.5 ], [ 28.0, 15.0 ], [ 28.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 15.0 ], [ 29.0, 14.5 ], [ 28.5, 14.5 ], [ 28.5, 15.0 ], [ 29.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 15.0 ], [ 29.5, 14.5 ], [ 29.0, 14.5 ], [ 29.0, 15.0 ], [ 29.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 15.0 ], [ 30.0, 14.5 ], [ 29.5, 14.5 ], [ 29.5, 15.0 ], [ 30.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 15.0 ], [ 30.5, 14.5 ], [ 30.0, 14.5 ], [ 30.0, 15.0 ], [ 30.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 15.0 ], [ 31.0, 14.5 ], [ 30.5, 14.5 ], [ 30.5, 15.0 ], [ 31.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 15.0 ], [ 31.5, 14.5 ], [ 31.0, 14.5 ], [ 31.0, 15.0 ], [ 31.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 15.0 ], [ 32.0, 14.5 ], [ 31.5, 14.5 ], [ 31.5, 15.0 ], [ 32.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 15.0 ], [ 32.5, 14.5 ], [ 32.0, 14.5 ], [ 32.0, 15.0 ], [ 32.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 15.0 ], [ 33.0, 14.5 ], [ 32.5, 14.5 ], [ 32.5, 15.0 ], [ 33.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 15.0 ], [ 33.5, 14.5 ], [ 33.0, 14.5 ], [ 33.0, 15.0 ], [ 33.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 15.0 ], [ 34.0, 14.5 ], [ 33.5, 14.5 ], [ 33.5, 15.0 ], [ 34.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 15.0 ], [ 34.5, 14.5 ], [ 34.0, 14.5 ], [ 34.0, 15.0 ], [ 34.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 15.0 ], [ 35.0, 14.5 ], [ 34.5, 14.5 ], [ 34.5, 15.0 ], [ 35.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 15.0 ], [ 35.5, 14.5 ], [ 35.0, 14.5 ], [ 35.0, 15.0 ], [ 35.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 15.0 ], [ 36.0, 14.5 ], [ 35.5, 14.5 ], [ 35.5, 15.0 ], [ 36.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 15.0 ], [ 36.5, 14.5 ], [ 36.0, 14.5 ], [ 36.0, 15.0 ], [ 36.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 15.0 ], [ 37.0, 14.5 ], [ 36.5, 14.5 ], [ 36.5, 15.0 ], [ 37.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 15.0 ], [ 37.5, 14.5 ], [ 37.0, 14.5 ], [ 37.0, 15.0 ], [ 37.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 15.0 ], [ 38.0, 14.5 ], [ 37.5, 14.5 ], [ 37.5, 15.0 ], [ 38.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 15.0 ], [ 38.5, 14.5 ], [ 38.0, 14.5 ], [ 38.0, 15.0 ], [ 38.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 15.0 ], [ 39.0, 14.5 ], [ 38.5, 14.5 ], [ 38.5, 15.0 ], [ 39.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 15.0 ], [ 39.5, 14.5 ], [ 39.0, 14.5 ], [ 39.0, 15.0 ], [ 39.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.0, 15.0 ], [ 40.0, 14.5 ], [ 39.5, 14.5 ], [ 39.5, 15.0 ], [ 40.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.5, 15.0 ], [ 40.5, 14.5 ], [ 40.0, 14.5 ], [ 40.0, 15.0 ], [ 40.5, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.0, 15.0 ], [ 41.0, 14.5 ], [ 40.5, 14.5 ], [ 40.5, 15.0 ], [ 41.0, 15.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.5, 15.5 ], [ -16.5, 15.0 ], [ -17.0, 15.0 ], [ -17.0, 15.5 ], [ -16.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.0, 15.5 ], [ -16.0, 15.0 ], [ -16.5, 15.0 ], [ -16.5, 15.5 ], [ -16.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 15.5 ], [ -15.5, 15.0 ], [ -16.0, 15.0 ], [ -16.0, 15.5 ], [ -15.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 15.5 ], [ -15.0, 15.0 ], [ -15.5, 15.0 ], [ -15.5, 15.5 ], [ -15.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 15.5 ], [ -14.5, 15.0 ], [ -15.0, 15.0 ], [ -15.0, 15.5 ], [ -14.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 15.5 ], [ -14.0, 15.0 ], [ -14.5, 15.0 ], [ -14.5, 15.5 ], [ -14.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 15.5 ], [ -13.5, 15.0 ], [ -14.0, 15.0 ], [ -14.0, 15.5 ], [ -13.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 15.5 ], [ -13.0, 15.0 ], [ -13.5, 15.0 ], [ -13.5, 15.5 ], [ -13.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 15.5 ], [ -12.5, 15.0 ], [ -13.0, 15.0 ], [ -13.0, 15.5 ], [ -12.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 15.5 ], [ -12.0, 15.0 ], [ -12.5, 15.0 ], [ -12.5, 15.5 ], [ -12.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 15.5 ], [ -11.5, 15.0 ], [ -12.0, 15.0 ], [ -12.0, 15.5 ], [ -11.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 15.5 ], [ -11.0, 15.0 ], [ -11.5, 15.0 ], [ -11.5, 15.5 ], [ -11.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 15.5 ], [ -10.5, 15.0 ], [ -11.0, 15.0 ], [ -11.0, 15.5 ], [ -10.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 15.5 ], [ -10.0, 15.0 ], [ -10.5, 15.0 ], [ -10.5, 15.5 ], [ -10.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 15.5 ], [ -9.5, 15.0 ], [ -10.0, 15.0 ], [ -10.0, 15.5 ], [ -9.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 15.5 ], [ -9.0, 15.0 ], [ -9.5, 15.0 ], [ -9.5, 15.5 ], [ -9.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 15.5 ], [ -8.5, 15.0 ], [ -9.0, 15.0 ], [ -9.0, 15.5 ], [ -8.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 15.5 ], [ -8.0, 15.0 ], [ -8.5, 15.0 ], [ -8.5, 15.5 ], [ -8.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 15.5 ], [ -7.5, 15.0 ], [ -8.0, 15.0 ], [ -8.0, 15.5 ], [ -7.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 15.5 ], [ -7.0, 15.0 ], [ -7.5, 15.0 ], [ -7.5, 15.5 ], [ -7.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 15.5 ], [ -6.5, 15.0 ], [ -7.0, 15.0 ], [ -7.0, 15.5 ], [ -6.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 15.5 ], [ -6.0, 15.0 ], [ -6.5, 15.0 ], [ -6.5, 15.5 ], [ -6.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 15.5 ], [ -5.5, 15.0 ], [ -6.0, 15.0 ], [ -6.0, 15.5 ], [ -5.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 15.5 ], [ -5.0, 15.0 ], [ -5.5, 15.0 ], [ -5.5, 15.5 ], [ -5.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 15.5 ], [ -4.5, 15.0 ], [ -5.0, 15.0 ], [ -5.0, 15.5 ], [ -4.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 15.5 ], [ -4.0, 15.0 ], [ -4.5, 15.0 ], [ -4.5, 15.5 ], [ -4.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 15.5 ], [ -3.5, 15.0 ], [ -4.0, 15.0 ], [ -4.0, 15.5 ], [ -3.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 15.5 ], [ -3.0, 15.0 ], [ -3.5, 15.0 ], [ -3.5, 15.5 ], [ -3.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 15.5 ], [ -2.5, 15.0 ], [ -3.0, 15.0 ], [ -3.0, 15.5 ], [ -2.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 15.5 ], [ -2.0, 15.0 ], [ -2.5, 15.0 ], [ -2.5, 15.5 ], [ -2.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 15.5 ], [ -1.5, 15.0 ], [ -2.0, 15.0 ], [ -2.0, 15.5 ], [ -1.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 15.5 ], [ -1.0, 15.0 ], [ -1.5, 15.0 ], [ -1.5, 15.5 ], [ -1.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 15.5 ], [ -0.5, 15.0 ], [ -1.0, 15.0 ], [ -1.0, 15.5 ], [ -0.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 15.5 ], [ 0.0, 15.0 ], [ -0.5, 15.0 ], [ -0.5, 15.5 ], [ 0.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 15.5 ], [ 0.5, 15.0 ], [ 0.0, 15.0 ], [ 0.0, 15.5 ], [ 0.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 15.5 ], [ 1.0, 15.0 ], [ 0.5, 15.0 ], [ 0.5, 15.5 ], [ 1.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 15.5 ], [ 1.5, 15.0 ], [ 1.0, 15.0 ], [ 1.0, 15.5 ], [ 1.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 15.5 ], [ 2.0, 15.0 ], [ 1.5, 15.0 ], [ 1.5, 15.5 ], [ 2.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 15.5 ], [ 2.5, 15.0 ], [ 2.0, 15.0 ], [ 2.0, 15.5 ], [ 2.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 15.5 ], [ 3.0, 15.0 ], [ 2.5, 15.0 ], [ 2.5, 15.5 ], [ 3.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 15.5 ], [ 3.5, 15.0 ], [ 3.0, 15.0 ], [ 3.0, 15.5 ], [ 3.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 15.5 ], [ 4.0, 15.0 ], [ 3.5, 15.0 ], [ 3.5, 15.5 ], [ 4.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 15.5 ], [ 4.5, 15.0 ], [ 4.0, 15.0 ], [ 4.0, 15.5 ], [ 4.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 15.5 ], [ 5.0, 15.0 ], [ 4.5, 15.0 ], [ 4.5, 15.5 ], [ 5.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 15.5 ], [ 5.5, 15.0 ], [ 5.0, 15.0 ], [ 5.0, 15.5 ], [ 5.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 15.5 ], [ 6.0, 15.0 ], [ 5.5, 15.0 ], [ 5.5, 15.5 ], [ 6.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 15.5 ], [ 6.5, 15.0 ], [ 6.0, 15.0 ], [ 6.0, 15.5 ], [ 6.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 15.5 ], [ 7.0, 15.0 ], [ 6.5, 15.0 ], [ 6.5, 15.5 ], [ 7.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 15.5 ], [ 7.5, 15.0 ], [ 7.0, 15.0 ], [ 7.0, 15.5 ], [ 7.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 15.5 ], [ 8.0, 15.0 ], [ 7.5, 15.0 ], [ 7.5, 15.5 ], [ 8.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 15.5 ], [ 8.5, 15.0 ], [ 8.0, 15.0 ], [ 8.0, 15.5 ], [ 8.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 15.5 ], [ 9.0, 15.0 ], [ 8.5, 15.0 ], [ 8.5, 15.5 ], [ 9.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 15.5 ], [ 9.5, 15.0 ], [ 9.0, 15.0 ], [ 9.0, 15.5 ], [ 9.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 15.5 ], [ 10.0, 15.0 ], [ 9.5, 15.0 ], [ 9.5, 15.5 ], [ 10.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 15.5 ], [ 10.5, 15.0 ], [ 10.0, 15.0 ], [ 10.0, 15.5 ], [ 10.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 15.5 ], [ 11.0, 15.0 ], [ 10.5, 15.0 ], [ 10.5, 15.5 ], [ 11.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 15.5 ], [ 11.5, 15.0 ], [ 11.0, 15.0 ], [ 11.0, 15.5 ], [ 11.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 15.5 ], [ 12.0, 15.0 ], [ 11.5, 15.0 ], [ 11.5, 15.5 ], [ 12.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 15.5 ], [ 12.5, 15.0 ], [ 12.0, 15.0 ], [ 12.0, 15.5 ], [ 12.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 15.5 ], [ 13.0, 15.0 ], [ 12.5, 15.0 ], [ 12.5, 15.5 ], [ 13.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 15.5 ], [ 13.5, 15.0 ], [ 13.0, 15.0 ], [ 13.0, 15.5 ], [ 13.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 15.5 ], [ 14.0, 15.0 ], [ 13.5, 15.0 ], [ 13.5, 15.5 ], [ 14.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 15.5 ], [ 14.5, 15.0 ], [ 14.0, 15.0 ], [ 14.0, 15.5 ], [ 14.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 15.5 ], [ 15.0, 15.0 ], [ 14.5, 15.0 ], [ 14.5, 15.5 ], [ 15.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 15.5 ], [ 15.5, 15.0 ], [ 15.0, 15.0 ], [ 15.0, 15.5 ], [ 15.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 15.5 ], [ 16.0, 15.0 ], [ 15.5, 15.0 ], [ 15.5, 15.5 ], [ 16.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 15.5 ], [ 16.5, 15.0 ], [ 16.0, 15.0 ], [ 16.0, 15.5 ], [ 16.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 15.5 ], [ 17.0, 15.0 ], [ 16.5, 15.0 ], [ 16.5, 15.5 ], [ 17.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 15.5 ], [ 17.5, 15.0 ], [ 17.0, 15.0 ], [ 17.0, 15.5 ], [ 17.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 15.5 ], [ 18.0, 15.0 ], [ 17.5, 15.0 ], [ 17.5, 15.5 ], [ 18.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 15.5 ], [ 18.5, 15.0 ], [ 18.0, 15.0 ], [ 18.0, 15.5 ], [ 18.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 15.5 ], [ 19.0, 15.0 ], [ 18.5, 15.0 ], [ 18.5, 15.5 ], [ 19.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 15.5 ], [ 19.5, 15.0 ], [ 19.0, 15.0 ], [ 19.0, 15.5 ], [ 19.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 15.5 ], [ 20.0, 15.0 ], [ 19.5, 15.0 ], [ 19.5, 15.5 ], [ 20.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 15.5 ], [ 20.5, 15.0 ], [ 20.0, 15.0 ], [ 20.0, 15.5 ], [ 20.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 15.5 ], [ 21.0, 15.0 ], [ 20.5, 15.0 ], [ 20.5, 15.5 ], [ 21.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 15.5 ], [ 21.5, 15.0 ], [ 21.0, 15.0 ], [ 21.0, 15.5 ], [ 21.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 15.5 ], [ 22.0, 15.0 ], [ 21.5, 15.0 ], [ 21.5, 15.5 ], [ 22.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 15.5 ], [ 22.5, 15.0 ], [ 22.0, 15.0 ], [ 22.0, 15.5 ], [ 22.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 15.5 ], [ 23.0, 15.0 ], [ 22.5, 15.0 ], [ 22.5, 15.5 ], [ 23.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 15.5 ], [ 23.5, 15.0 ], [ 23.0, 15.0 ], [ 23.0, 15.5 ], [ 23.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 15.5 ], [ 24.0, 15.0 ], [ 23.5, 15.0 ], [ 23.5, 15.5 ], [ 24.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 15.5 ], [ 24.5, 15.0 ], [ 24.0, 15.0 ], [ 24.0, 15.5 ], [ 24.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 15.5 ], [ 25.0, 15.0 ], [ 24.5, 15.0 ], [ 24.5, 15.5 ], [ 25.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 15.5 ], [ 25.5, 15.0 ], [ 25.0, 15.0 ], [ 25.0, 15.5 ], [ 25.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 15.5 ], [ 26.0, 15.0 ], [ 25.5, 15.0 ], [ 25.5, 15.5 ], [ 26.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 15.5 ], [ 26.5, 15.0 ], [ 26.0, 15.0 ], [ 26.0, 15.5 ], [ 26.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 15.5 ], [ 27.0, 15.0 ], [ 26.5, 15.0 ], [ 26.5, 15.5 ], [ 27.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 15.5 ], [ 27.5, 15.0 ], [ 27.0, 15.0 ], [ 27.0, 15.5 ], [ 27.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 15.5 ], [ 28.0, 15.0 ], [ 27.5, 15.0 ], [ 27.5, 15.5 ], [ 28.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 15.5 ], [ 28.5, 15.0 ], [ 28.0, 15.0 ], [ 28.0, 15.5 ], [ 28.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 15.5 ], [ 29.0, 15.0 ], [ 28.5, 15.0 ], [ 28.5, 15.5 ], [ 29.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 15.5 ], [ 29.5, 15.0 ], [ 29.0, 15.0 ], [ 29.0, 15.5 ], [ 29.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 15.5 ], [ 30.0, 15.0 ], [ 29.5, 15.0 ], [ 29.5, 15.5 ], [ 30.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 15.5 ], [ 30.5, 15.0 ], [ 30.0, 15.0 ], [ 30.0, 15.5 ], [ 30.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 15.5 ], [ 31.0, 15.0 ], [ 30.5, 15.0 ], [ 30.5, 15.5 ], [ 31.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 15.5 ], [ 31.5, 15.0 ], [ 31.0, 15.0 ], [ 31.0, 15.5 ], [ 31.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 15.5 ], [ 32.0, 15.0 ], [ 31.5, 15.0 ], [ 31.5, 15.5 ], [ 32.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 15.5 ], [ 32.5, 15.0 ], [ 32.0, 15.0 ], [ 32.0, 15.5 ], [ 32.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 15.5 ], [ 33.0, 15.0 ], [ 32.5, 15.0 ], [ 32.5, 15.5 ], [ 33.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 15.5 ], [ 33.5, 15.0 ], [ 33.0, 15.0 ], [ 33.0, 15.5 ], [ 33.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 15.5 ], [ 34.0, 15.0 ], [ 33.5, 15.0 ], [ 33.5, 15.5 ], [ 34.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 15.5 ], [ 34.5, 15.0 ], [ 34.0, 15.0 ], [ 34.0, 15.5 ], [ 34.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 15.5 ], [ 35.0, 15.0 ], [ 34.5, 15.0 ], [ 34.5, 15.5 ], [ 35.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 15.5 ], [ 35.5, 15.0 ], [ 35.0, 15.0 ], [ 35.0, 15.5 ], [ 35.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 15.5 ], [ 36.0, 15.0 ], [ 35.5, 15.0 ], [ 35.5, 15.5 ], [ 36.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 15.5 ], [ 36.5, 15.0 ], [ 36.0, 15.0 ], [ 36.0, 15.5 ], [ 36.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 15.5 ], [ 37.0, 15.0 ], [ 36.5, 15.0 ], [ 36.5, 15.5 ], [ 37.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 15.5 ], [ 37.5, 15.0 ], [ 37.0, 15.0 ], [ 37.0, 15.5 ], [ 37.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 15.5 ], [ 38.0, 15.0 ], [ 37.5, 15.0 ], [ 37.5, 15.5 ], [ 38.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 15.5 ], [ 38.5, 15.0 ], [ 38.0, 15.0 ], [ 38.0, 15.5 ], [ 38.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 15.5 ], [ 39.0, 15.0 ], [ 38.5, 15.0 ], [ 38.5, 15.5 ], [ 39.0, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 15.5 ], [ 39.5, 15.0 ], [ 39.0, 15.0 ], [ 39.0, 15.5 ], [ 39.5, 15.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.0, 16.0 ], [ -16.0, 15.5 ], [ -16.5, 15.5 ], [ -16.5, 16.0 ], [ -16.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 16.0 ], [ -15.5, 15.5 ], [ -16.0, 15.5 ], [ -16.0, 16.0 ], [ -15.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 16.0 ], [ -15.0, 15.5 ], [ -15.5, 15.5 ], [ -15.5, 16.0 ], [ -15.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 16.0 ], [ -14.5, 15.5 ], [ -15.0, 15.5 ], [ -15.0, 16.0 ], [ -14.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 16.0 ], [ -14.0, 15.5 ], [ -14.5, 15.5 ], [ -14.5, 16.0 ], [ -14.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 16.0 ], [ -13.5, 15.5 ], [ -14.0, 15.5 ], [ -14.0, 16.0 ], [ -13.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 16.0 ], [ -13.0, 15.5 ], [ -13.5, 15.5 ], [ -13.5, 16.0 ], [ -13.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 16.0 ], [ -12.5, 15.5 ], [ -13.0, 15.5 ], [ -13.0, 16.0 ], [ -12.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 16.0 ], [ -12.0, 15.5 ], [ -12.5, 15.5 ], [ -12.5, 16.0 ], [ -12.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 16.0 ], [ -11.5, 15.5 ], [ -12.0, 15.5 ], [ -12.0, 16.0 ], [ -11.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 16.0 ], [ -11.0, 15.5 ], [ -11.5, 15.5 ], [ -11.5, 16.0 ], [ -11.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 16.0 ], [ -10.5, 15.5 ], [ -11.0, 15.5 ], [ -11.0, 16.0 ], [ -10.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 16.0 ], [ -10.0, 15.5 ], [ -10.5, 15.5 ], [ -10.5, 16.0 ], [ -10.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 16.0 ], [ -9.5, 15.5 ], [ -10.0, 15.5 ], [ -10.0, 16.0 ], [ -9.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 16.0 ], [ -9.0, 15.5 ], [ -9.5, 15.5 ], [ -9.5, 16.0 ], [ -9.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 16.0 ], [ -8.5, 15.5 ], [ -9.0, 15.5 ], [ -9.0, 16.0 ], [ -8.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 16.0 ], [ -8.0, 15.5 ], [ -8.5, 15.5 ], [ -8.5, 16.0 ], [ -8.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 16.0 ], [ -7.5, 15.5 ], [ -8.0, 15.5 ], [ -8.0, 16.0 ], [ -7.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 16.0 ], [ -7.0, 15.5 ], [ -7.5, 15.5 ], [ -7.5, 16.0 ], [ -7.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 16.0 ], [ -6.5, 15.5 ], [ -7.0, 15.5 ], [ -7.0, 16.0 ], [ -6.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 16.0 ], [ -6.0, 15.5 ], [ -6.5, 15.5 ], [ -6.5, 16.0 ], [ -6.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 16.0 ], [ -5.5, 15.5 ], [ -6.0, 15.5 ], [ -6.0, 16.0 ], [ -5.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 16.0 ], [ -5.0, 15.5 ], [ -5.5, 15.5 ], [ -5.5, 16.0 ], [ -5.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 16.0 ], [ -4.5, 15.5 ], [ -5.0, 15.5 ], [ -5.0, 16.0 ], [ -4.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 16.0 ], [ -4.0, 15.5 ], [ -4.5, 15.5 ], [ -4.5, 16.0 ], [ -4.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 16.0 ], [ -3.5, 15.5 ], [ -4.0, 15.5 ], [ -4.0, 16.0 ], [ -3.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 16.0 ], [ -3.0, 15.5 ], [ -3.5, 15.5 ], [ -3.5, 16.0 ], [ -3.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 16.0 ], [ -2.5, 15.5 ], [ -3.0, 15.5 ], [ -3.0, 16.0 ], [ -2.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 16.0 ], [ -2.0, 15.5 ], [ -2.5, 15.5 ], [ -2.5, 16.0 ], [ -2.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 16.0 ], [ -1.5, 15.5 ], [ -2.0, 15.5 ], [ -2.0, 16.0 ], [ -1.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 16.0 ], [ -1.0, 15.5 ], [ -1.5, 15.5 ], [ -1.5, 16.0 ], [ -1.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 16.0 ], [ -0.5, 15.5 ], [ -1.0, 15.5 ], [ -1.0, 16.0 ], [ -0.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 16.0 ], [ 0.0, 15.5 ], [ -0.5, 15.5 ], [ -0.5, 16.0 ], [ 0.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 16.0 ], [ 0.5, 15.5 ], [ 0.0, 15.5 ], [ 0.0, 16.0 ], [ 0.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 16.0 ], [ 1.0, 15.5 ], [ 0.5, 15.5 ], [ 0.5, 16.0 ], [ 1.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 16.0 ], [ 1.5, 15.5 ], [ 1.0, 15.5 ], [ 1.0, 16.0 ], [ 1.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 16.0 ], [ 2.0, 15.5 ], [ 1.5, 15.5 ], [ 1.5, 16.0 ], [ 2.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 16.0 ], [ 2.5, 15.5 ], [ 2.0, 15.5 ], [ 2.0, 16.0 ], [ 2.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 16.0 ], [ 3.0, 15.5 ], [ 2.5, 15.5 ], [ 2.5, 16.0 ], [ 3.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 16.0 ], [ 3.5, 15.5 ], [ 3.0, 15.5 ], [ 3.0, 16.0 ], [ 3.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 16.0 ], [ 4.0, 15.5 ], [ 3.5, 15.5 ], [ 3.5, 16.0 ], [ 4.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 16.0 ], [ 4.5, 15.5 ], [ 4.0, 15.5 ], [ 4.0, 16.0 ], [ 4.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 16.0 ], [ 5.0, 15.5 ], [ 4.5, 15.5 ], [ 4.5, 16.0 ], [ 5.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 16.0 ], [ 5.5, 15.5 ], [ 5.0, 15.5 ], [ 5.0, 16.0 ], [ 5.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 16.0 ], [ 6.0, 15.5 ], [ 5.5, 15.5 ], [ 5.5, 16.0 ], [ 6.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 16.0 ], [ 6.5, 15.5 ], [ 6.0, 15.5 ], [ 6.0, 16.0 ], [ 6.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 16.0 ], [ 7.0, 15.5 ], [ 6.5, 15.5 ], [ 6.5, 16.0 ], [ 7.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 16.0 ], [ 7.5, 15.5 ], [ 7.0, 15.5 ], [ 7.0, 16.0 ], [ 7.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 16.0 ], [ 8.0, 15.5 ], [ 7.5, 15.5 ], [ 7.5, 16.0 ], [ 8.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 16.0 ], [ 8.5, 15.5 ], [ 8.0, 15.5 ], [ 8.0, 16.0 ], [ 8.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 16.0 ], [ 9.0, 15.5 ], [ 8.5, 15.5 ], [ 8.5, 16.0 ], [ 9.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 16.0 ], [ 9.5, 15.5 ], [ 9.0, 15.5 ], [ 9.0, 16.0 ], [ 9.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 16.0 ], [ 10.0, 15.5 ], [ 9.5, 15.5 ], [ 9.5, 16.0 ], [ 10.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 16.0 ], [ 10.5, 15.5 ], [ 10.0, 15.5 ], [ 10.0, 16.0 ], [ 10.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 16.0 ], [ 11.0, 15.5 ], [ 10.5, 15.5 ], [ 10.5, 16.0 ], [ 11.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 16.0 ], [ 11.5, 15.5 ], [ 11.0, 15.5 ], [ 11.0, 16.0 ], [ 11.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 16.0 ], [ 12.0, 15.5 ], [ 11.5, 15.5 ], [ 11.5, 16.0 ], [ 12.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 16.0 ], [ 12.5, 15.5 ], [ 12.0, 15.5 ], [ 12.0, 16.0 ], [ 12.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 16.0 ], [ 13.0, 15.5 ], [ 12.5, 15.5 ], [ 12.5, 16.0 ], [ 13.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 16.0 ], [ 13.5, 15.5 ], [ 13.0, 15.5 ], [ 13.0, 16.0 ], [ 13.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 16.0 ], [ 14.0, 15.5 ], [ 13.5, 15.5 ], [ 13.5, 16.0 ], [ 14.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 16.0 ], [ 14.5, 15.5 ], [ 14.0, 15.5 ], [ 14.0, 16.0 ], [ 14.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 16.0 ], [ 15.0, 15.5 ], [ 14.5, 15.5 ], [ 14.5, 16.0 ], [ 15.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 16.0 ], [ 15.5, 15.5 ], [ 15.0, 15.5 ], [ 15.0, 16.0 ], [ 15.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 16.0 ], [ 16.0, 15.5 ], [ 15.5, 15.5 ], [ 15.5, 16.0 ], [ 16.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 16.0 ], [ 16.5, 15.5 ], [ 16.0, 15.5 ], [ 16.0, 16.0 ], [ 16.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 16.0 ], [ 17.0, 15.5 ], [ 16.5, 15.5 ], [ 16.5, 16.0 ], [ 17.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 16.0 ], [ 17.5, 15.5 ], [ 17.0, 15.5 ], [ 17.0, 16.0 ], [ 17.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 16.0 ], [ 18.0, 15.5 ], [ 17.5, 15.5 ], [ 17.5, 16.0 ], [ 18.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 16.0 ], [ 18.5, 15.5 ], [ 18.0, 15.5 ], [ 18.0, 16.0 ], [ 18.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 16.0 ], [ 19.0, 15.5 ], [ 18.5, 15.5 ], [ 18.5, 16.0 ], [ 19.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 16.0 ], [ 19.5, 15.5 ], [ 19.0, 15.5 ], [ 19.0, 16.0 ], [ 19.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 16.0 ], [ 20.0, 15.5 ], [ 19.5, 15.5 ], [ 19.5, 16.0 ], [ 20.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 16.0 ], [ 20.5, 15.5 ], [ 20.0, 15.5 ], [ 20.0, 16.0 ], [ 20.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 16.0 ], [ 21.0, 15.5 ], [ 20.5, 15.5 ], [ 20.5, 16.0 ], [ 21.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 16.0 ], [ 21.5, 15.5 ], [ 21.0, 15.5 ], [ 21.0, 16.0 ], [ 21.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 16.0 ], [ 22.0, 15.5 ], [ 21.5, 15.5 ], [ 21.5, 16.0 ], [ 22.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 16.0 ], [ 22.5, 15.5 ], [ 22.0, 15.5 ], [ 22.0, 16.0 ], [ 22.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 16.0 ], [ 23.0, 15.5 ], [ 22.5, 15.5 ], [ 22.5, 16.0 ], [ 23.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 16.0 ], [ 23.5, 15.5 ], [ 23.0, 15.5 ], [ 23.0, 16.0 ], [ 23.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 16.0 ], [ 24.0, 15.5 ], [ 23.5, 15.5 ], [ 23.5, 16.0 ], [ 24.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 16.0 ], [ 24.5, 15.5 ], [ 24.0, 15.5 ], [ 24.0, 16.0 ], [ 24.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 16.0 ], [ 25.0, 15.5 ], [ 24.5, 15.5 ], [ 24.5, 16.0 ], [ 25.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 16.0 ], [ 25.5, 15.5 ], [ 25.0, 15.5 ], [ 25.0, 16.0 ], [ 25.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 16.0 ], [ 26.0, 15.5 ], [ 25.5, 15.5 ], [ 25.5, 16.0 ], [ 26.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 16.0 ], [ 26.5, 15.5 ], [ 26.0, 15.5 ], [ 26.0, 16.0 ], [ 26.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 16.0 ], [ 27.0, 15.5 ], [ 26.5, 15.5 ], [ 26.5, 16.0 ], [ 27.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 16.0 ], [ 27.5, 15.5 ], [ 27.0, 15.5 ], [ 27.0, 16.0 ], [ 27.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 16.0 ], [ 28.0, 15.5 ], [ 27.5, 15.5 ], [ 27.5, 16.0 ], [ 28.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 16.0 ], [ 28.5, 15.5 ], [ 28.0, 15.5 ], [ 28.0, 16.0 ], [ 28.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 16.0 ], [ 29.0, 15.5 ], [ 28.5, 15.5 ], [ 28.5, 16.0 ], [ 29.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 16.0 ], [ 29.5, 15.5 ], [ 29.0, 15.5 ], [ 29.0, 16.0 ], [ 29.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 16.0 ], [ 30.0, 15.5 ], [ 29.5, 15.5 ], [ 29.5, 16.0 ], [ 30.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 16.0 ], [ 30.5, 15.5 ], [ 30.0, 15.5 ], [ 30.0, 16.0 ], [ 30.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 16.0 ], [ 31.0, 15.5 ], [ 30.5, 15.5 ], [ 30.5, 16.0 ], [ 31.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 16.0 ], [ 31.5, 15.5 ], [ 31.0, 15.5 ], [ 31.0, 16.0 ], [ 31.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 16.0 ], [ 32.0, 15.5 ], [ 31.5, 15.5 ], [ 31.5, 16.0 ], [ 32.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 16.0 ], [ 32.5, 15.5 ], [ 32.0, 15.5 ], [ 32.0, 16.0 ], [ 32.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 16.0 ], [ 33.0, 15.5 ], [ 32.5, 15.5 ], [ 32.5, 16.0 ], [ 33.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 16.0 ], [ 33.5, 15.5 ], [ 33.0, 15.5 ], [ 33.0, 16.0 ], [ 33.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 16.0 ], [ 34.0, 15.5 ], [ 33.5, 15.5 ], [ 33.5, 16.0 ], [ 34.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 16.0 ], [ 34.5, 15.5 ], [ 34.0, 15.5 ], [ 34.0, 16.0 ], [ 34.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 16.0 ], [ 35.0, 15.5 ], [ 34.5, 15.5 ], [ 34.5, 16.0 ], [ 35.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 16.0 ], [ 35.5, 15.5 ], [ 35.0, 15.5 ], [ 35.0, 16.0 ], [ 35.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 16.0 ], [ 36.0, 15.5 ], [ 35.5, 15.5 ], [ 35.5, 16.0 ], [ 36.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 16.0 ], [ 36.5, 15.5 ], [ 36.0, 15.5 ], [ 36.0, 16.0 ], [ 36.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 16.0 ], [ 37.0, 15.5 ], [ 36.5, 15.5 ], [ 36.5, 16.0 ], [ 37.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 16.0 ], [ 37.5, 15.5 ], [ 37.0, 15.5 ], [ 37.0, 16.0 ], [ 37.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 16.0 ], [ 38.0, 15.5 ], [ 37.5, 15.5 ], [ 37.5, 16.0 ], [ 38.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 16.0 ], [ 38.5, 15.5 ], [ 38.0, 15.5 ], [ 38.0, 16.0 ], [ 38.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 16.0 ], [ 39.0, 15.5 ], [ 38.5, 15.5 ], [ 38.5, 16.0 ], [ 39.0, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.5, 16.0 ], [ 39.5, 15.5 ], [ 39.0, 15.5 ], [ 39.0, 16.0 ], [ 39.5, 16.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.0, 16.5 ], [ -16.0, 16.0 ], [ -16.5, 16.0 ], [ -16.5, 16.5 ], [ -16.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 16.5 ], [ -15.5, 16.0 ], [ -16.0, 16.0 ], [ -16.0, 16.5 ], [ -15.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 16.5 ], [ -15.0, 16.0 ], [ -15.5, 16.0 ], [ -15.5, 16.5 ], [ -15.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 16.5 ], [ -14.5, 16.0 ], [ -15.0, 16.0 ], [ -15.0, 16.5 ], [ -14.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 16.5 ], [ -14.0, 16.0 ], [ -14.5, 16.0 ], [ -14.5, 16.5 ], [ -14.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 16.5 ], [ -13.5, 16.0 ], [ -14.0, 16.0 ], [ -14.0, 16.5 ], [ -13.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 16.5 ], [ -13.0, 16.0 ], [ -13.5, 16.0 ], [ -13.5, 16.5 ], [ -13.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 16.5 ], [ -12.5, 16.0 ], [ -13.0, 16.0 ], [ -13.0, 16.5 ], [ -12.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 16.5 ], [ -12.0, 16.0 ], [ -12.5, 16.0 ], [ -12.5, 16.5 ], [ -12.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 16.5 ], [ -11.5, 16.0 ], [ -12.0, 16.0 ], [ -12.0, 16.5 ], [ -11.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 16.5 ], [ -11.0, 16.0 ], [ -11.5, 16.0 ], [ -11.5, 16.5 ], [ -11.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 16.5 ], [ -10.5, 16.0 ], [ -11.0, 16.0 ], [ -11.0, 16.5 ], [ -10.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 16.5 ], [ -10.0, 16.0 ], [ -10.5, 16.0 ], [ -10.5, 16.5 ], [ -10.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 16.5 ], [ -9.5, 16.0 ], [ -10.0, 16.0 ], [ -10.0, 16.5 ], [ -9.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 16.5 ], [ -9.0, 16.0 ], [ -9.5, 16.0 ], [ -9.5, 16.5 ], [ -9.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 16.5 ], [ -8.5, 16.0 ], [ -9.0, 16.0 ], [ -9.0, 16.5 ], [ -8.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 16.5 ], [ -8.0, 16.0 ], [ -8.5, 16.0 ], [ -8.5, 16.5 ], [ -8.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 16.5 ], [ -7.5, 16.0 ], [ -8.0, 16.0 ], [ -8.0, 16.5 ], [ -7.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 16.5 ], [ -7.0, 16.0 ], [ -7.5, 16.0 ], [ -7.5, 16.5 ], [ -7.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 16.5 ], [ -6.5, 16.0 ], [ -7.0, 16.0 ], [ -7.0, 16.5 ], [ -6.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 16.5 ], [ -6.0, 16.0 ], [ -6.5, 16.0 ], [ -6.5, 16.5 ], [ -6.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 16.5 ], [ -5.5, 16.0 ], [ -6.0, 16.0 ], [ -6.0, 16.5 ], [ -5.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 16.5 ], [ -5.0, 16.0 ], [ -5.5, 16.0 ], [ -5.5, 16.5 ], [ -5.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 16.5 ], [ -4.5, 16.0 ], [ -5.0, 16.0 ], [ -5.0, 16.5 ], [ -4.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 16.5 ], [ -4.0, 16.0 ], [ -4.5, 16.0 ], [ -4.5, 16.5 ], [ -4.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 16.5 ], [ -3.5, 16.0 ], [ -4.0, 16.0 ], [ -4.0, 16.5 ], [ -3.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 16.5 ], [ -3.0, 16.0 ], [ -3.5, 16.0 ], [ -3.5, 16.5 ], [ -3.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 16.5 ], [ -2.5, 16.0 ], [ -3.0, 16.0 ], [ -3.0, 16.5 ], [ -2.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 16.5 ], [ -2.0, 16.0 ], [ -2.5, 16.0 ], [ -2.5, 16.5 ], [ -2.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 16.5 ], [ -1.5, 16.0 ], [ -2.0, 16.0 ], [ -2.0, 16.5 ], [ -1.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 16.5 ], [ -1.0, 16.0 ], [ -1.5, 16.0 ], [ -1.5, 16.5 ], [ -1.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 16.5 ], [ -0.5, 16.0 ], [ -1.0, 16.0 ], [ -1.0, 16.5 ], [ -0.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 16.5 ], [ 0.0, 16.0 ], [ -0.5, 16.0 ], [ -0.5, 16.5 ], [ 0.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 16.5 ], [ 0.5, 16.0 ], [ 0.0, 16.0 ], [ 0.0, 16.5 ], [ 0.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 16.5 ], [ 1.0, 16.0 ], [ 0.5, 16.0 ], [ 0.5, 16.5 ], [ 1.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 16.5 ], [ 1.5, 16.0 ], [ 1.0, 16.0 ], [ 1.0, 16.5 ], [ 1.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 16.5 ], [ 2.0, 16.0 ], [ 1.5, 16.0 ], [ 1.5, 16.5 ], [ 2.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 16.5 ], [ 2.5, 16.0 ], [ 2.0, 16.0 ], [ 2.0, 16.5 ], [ 2.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 16.5 ], [ 3.0, 16.0 ], [ 2.5, 16.0 ], [ 2.5, 16.5 ], [ 3.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 16.5 ], [ 3.5, 16.0 ], [ 3.0, 16.0 ], [ 3.0, 16.5 ], [ 3.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 16.5 ], [ 4.0, 16.0 ], [ 3.5, 16.0 ], [ 3.5, 16.5 ], [ 4.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 16.5 ], [ 4.5, 16.0 ], [ 4.0, 16.0 ], [ 4.0, 16.5 ], [ 4.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 16.5 ], [ 5.0, 16.0 ], [ 4.5, 16.0 ], [ 4.5, 16.5 ], [ 5.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 16.5 ], [ 5.5, 16.0 ], [ 5.0, 16.0 ], [ 5.0, 16.5 ], [ 5.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 16.5 ], [ 6.0, 16.0 ], [ 5.5, 16.0 ], [ 5.5, 16.5 ], [ 6.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 16.5 ], [ 6.5, 16.0 ], [ 6.0, 16.0 ], [ 6.0, 16.5 ], [ 6.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 16.5 ], [ 7.0, 16.0 ], [ 6.5, 16.0 ], [ 6.5, 16.5 ], [ 7.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 16.5 ], [ 7.5, 16.0 ], [ 7.0, 16.0 ], [ 7.0, 16.5 ], [ 7.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 16.5 ], [ 8.0, 16.0 ], [ 7.5, 16.0 ], [ 7.5, 16.5 ], [ 8.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 16.5 ], [ 8.5, 16.0 ], [ 8.0, 16.0 ], [ 8.0, 16.5 ], [ 8.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 16.5 ], [ 9.0, 16.0 ], [ 8.5, 16.0 ], [ 8.5, 16.5 ], [ 9.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 16.5 ], [ 9.5, 16.0 ], [ 9.0, 16.0 ], [ 9.0, 16.5 ], [ 9.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 16.5 ], [ 10.0, 16.0 ], [ 9.5, 16.0 ], [ 9.5, 16.5 ], [ 10.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 16.5 ], [ 10.5, 16.0 ], [ 10.0, 16.0 ], [ 10.0, 16.5 ], [ 10.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 16.5 ], [ 11.0, 16.0 ], [ 10.5, 16.0 ], [ 10.5, 16.5 ], [ 11.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 16.5 ], [ 11.5, 16.0 ], [ 11.0, 16.0 ], [ 11.0, 16.5 ], [ 11.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 16.5 ], [ 12.0, 16.0 ], [ 11.5, 16.0 ], [ 11.5, 16.5 ], [ 12.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 16.5 ], [ 12.5, 16.0 ], [ 12.0, 16.0 ], [ 12.0, 16.5 ], [ 12.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 16.5 ], [ 13.0, 16.0 ], [ 12.5, 16.0 ], [ 12.5, 16.5 ], [ 13.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 16.5 ], [ 13.5, 16.0 ], [ 13.0, 16.0 ], [ 13.0, 16.5 ], [ 13.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 16.5 ], [ 14.0, 16.0 ], [ 13.5, 16.0 ], [ 13.5, 16.5 ], [ 14.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 16.5 ], [ 14.5, 16.0 ], [ 14.0, 16.0 ], [ 14.0, 16.5 ], [ 14.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 16.5 ], [ 15.0, 16.0 ], [ 14.5, 16.0 ], [ 14.5, 16.5 ], [ 15.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 16.5 ], [ 15.5, 16.0 ], [ 15.0, 16.0 ], [ 15.0, 16.5 ], [ 15.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 16.5 ], [ 16.0, 16.0 ], [ 15.5, 16.0 ], [ 15.5, 16.5 ], [ 16.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 16.5 ], [ 16.5, 16.0 ], [ 16.0, 16.0 ], [ 16.0, 16.5 ], [ 16.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 16.5 ], [ 17.0, 16.0 ], [ 16.5, 16.0 ], [ 16.5, 16.5 ], [ 17.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 16.5 ], [ 17.5, 16.0 ], [ 17.0, 16.0 ], [ 17.0, 16.5 ], [ 17.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 16.5 ], [ 18.0, 16.0 ], [ 17.5, 16.0 ], [ 17.5, 16.5 ], [ 18.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 16.5 ], [ 18.5, 16.0 ], [ 18.0, 16.0 ], [ 18.0, 16.5 ], [ 18.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 16.5 ], [ 19.0, 16.0 ], [ 18.5, 16.0 ], [ 18.5, 16.5 ], [ 19.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 16.5 ], [ 19.5, 16.0 ], [ 19.0, 16.0 ], [ 19.0, 16.5 ], [ 19.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 16.5 ], [ 20.0, 16.0 ], [ 19.5, 16.0 ], [ 19.5, 16.5 ], [ 20.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 16.5 ], [ 20.5, 16.0 ], [ 20.0, 16.0 ], [ 20.0, 16.5 ], [ 20.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 16.5 ], [ 21.0, 16.0 ], [ 20.5, 16.0 ], [ 20.5, 16.5 ], [ 21.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 16.5 ], [ 21.5, 16.0 ], [ 21.0, 16.0 ], [ 21.0, 16.5 ], [ 21.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 16.5 ], [ 22.0, 16.0 ], [ 21.5, 16.0 ], [ 21.5, 16.5 ], [ 22.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 16.5 ], [ 22.5, 16.0 ], [ 22.0, 16.0 ], [ 22.0, 16.5 ], [ 22.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 16.5 ], [ 23.0, 16.0 ], [ 22.5, 16.0 ], [ 22.5, 16.5 ], [ 23.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 16.5 ], [ 23.5, 16.0 ], [ 23.0, 16.0 ], [ 23.0, 16.5 ], [ 23.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 16.5 ], [ 24.0, 16.0 ], [ 23.5, 16.0 ], [ 23.5, 16.5 ], [ 24.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 16.5 ], [ 24.5, 16.0 ], [ 24.0, 16.0 ], [ 24.0, 16.5 ], [ 24.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 16.5 ], [ 25.0, 16.0 ], [ 24.5, 16.0 ], [ 24.5, 16.5 ], [ 25.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 16.5 ], [ 25.5, 16.0 ], [ 25.0, 16.0 ], [ 25.0, 16.5 ], [ 25.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 16.5 ], [ 26.0, 16.0 ], [ 25.5, 16.0 ], [ 25.5, 16.5 ], [ 26.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 16.5 ], [ 26.5, 16.0 ], [ 26.0, 16.0 ], [ 26.0, 16.5 ], [ 26.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 16.5 ], [ 27.0, 16.0 ], [ 26.5, 16.0 ], [ 26.5, 16.5 ], [ 27.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 16.5 ], [ 27.5, 16.0 ], [ 27.0, 16.0 ], [ 27.0, 16.5 ], [ 27.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 16.5 ], [ 28.0, 16.0 ], [ 27.5, 16.0 ], [ 27.5, 16.5 ], [ 28.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 16.5 ], [ 28.5, 16.0 ], [ 28.0, 16.0 ], [ 28.0, 16.5 ], [ 28.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 16.5 ], [ 29.0, 16.0 ], [ 28.5, 16.0 ], [ 28.5, 16.5 ], [ 29.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 16.5 ], [ 29.5, 16.0 ], [ 29.0, 16.0 ], [ 29.0, 16.5 ], [ 29.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 16.5 ], [ 30.0, 16.0 ], [ 29.5, 16.0 ], [ 29.5, 16.5 ], [ 30.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 16.5 ], [ 30.5, 16.0 ], [ 30.0, 16.0 ], [ 30.0, 16.5 ], [ 30.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 16.5 ], [ 31.0, 16.0 ], [ 30.5, 16.0 ], [ 30.5, 16.5 ], [ 31.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 16.5 ], [ 31.5, 16.0 ], [ 31.0, 16.0 ], [ 31.0, 16.5 ], [ 31.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 16.5 ], [ 32.0, 16.0 ], [ 31.5, 16.0 ], [ 31.5, 16.5 ], [ 32.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 16.5 ], [ 32.5, 16.0 ], [ 32.0, 16.0 ], [ 32.0, 16.5 ], [ 32.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 16.5 ], [ 33.0, 16.0 ], [ 32.5, 16.0 ], [ 32.5, 16.5 ], [ 33.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 16.5 ], [ 33.5, 16.0 ], [ 33.0, 16.0 ], [ 33.0, 16.5 ], [ 33.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 16.5 ], [ 34.0, 16.0 ], [ 33.5, 16.0 ], [ 33.5, 16.5 ], [ 34.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 16.5 ], [ 34.5, 16.0 ], [ 34.0, 16.0 ], [ 34.0, 16.5 ], [ 34.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 16.5 ], [ 35.0, 16.0 ], [ 34.5, 16.0 ], [ 34.5, 16.5 ], [ 35.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 16.5 ], [ 35.5, 16.0 ], [ 35.0, 16.0 ], [ 35.0, 16.5 ], [ 35.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 16.5 ], [ 36.0, 16.0 ], [ 35.5, 16.0 ], [ 35.5, 16.5 ], [ 36.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 16.5 ], [ 36.5, 16.0 ], [ 36.0, 16.0 ], [ 36.0, 16.5 ], [ 36.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 16.5 ], [ 37.0, 16.0 ], [ 36.5, 16.0 ], [ 36.5, 16.5 ], [ 37.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 16.5 ], [ 37.5, 16.0 ], [ 37.0, 16.0 ], [ 37.0, 16.5 ], [ 37.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 16.5 ], [ 38.0, 16.0 ], [ 37.5, 16.0 ], [ 37.5, 16.5 ], [ 38.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 16.5 ], [ 38.5, 16.0 ], [ 38.0, 16.0 ], [ 38.0, 16.5 ], [ 38.5, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 16.5 ], [ 39.0, 16.0 ], [ 38.5, 16.0 ], [ 38.5, 16.5 ], [ 39.0, 16.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.0, 17.0 ], [ -16.0, 16.5 ], [ -16.5, 16.5 ], [ -16.5, 17.0 ], [ -16.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 17.0 ], [ -15.5, 16.5 ], [ -16.0, 16.5 ], [ -16.0, 17.0 ], [ -15.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 17.0 ], [ -15.0, 16.5 ], [ -15.5, 16.5 ], [ -15.5, 17.0 ], [ -15.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 17.0 ], [ -14.5, 16.5 ], [ -15.0, 16.5 ], [ -15.0, 17.0 ], [ -14.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 17.0 ], [ -14.0, 16.5 ], [ -14.5, 16.5 ], [ -14.5, 17.0 ], [ -14.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 17.0 ], [ -13.5, 16.5 ], [ -14.0, 16.5 ], [ -14.0, 17.0 ], [ -13.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 17.0 ], [ -13.0, 16.5 ], [ -13.5, 16.5 ], [ -13.5, 17.0 ], [ -13.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 17.0 ], [ -12.5, 16.5 ], [ -13.0, 16.5 ], [ -13.0, 17.0 ], [ -12.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 17.0 ], [ -12.0, 16.5 ], [ -12.5, 16.5 ], [ -12.5, 17.0 ], [ -12.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 17.0 ], [ -11.5, 16.5 ], [ -12.0, 16.5 ], [ -12.0, 17.0 ], [ -11.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 17.0 ], [ -11.0, 16.5 ], [ -11.5, 16.5 ], [ -11.5, 17.0 ], [ -11.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 17.0 ], [ -10.5, 16.5 ], [ -11.0, 16.5 ], [ -11.0, 17.0 ], [ -10.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 17.0 ], [ -10.0, 16.5 ], [ -10.5, 16.5 ], [ -10.5, 17.0 ], [ -10.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 17.0 ], [ -9.5, 16.5 ], [ -10.0, 16.5 ], [ -10.0, 17.0 ], [ -9.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 17.0 ], [ -9.0, 16.5 ], [ -9.5, 16.5 ], [ -9.5, 17.0 ], [ -9.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 17.0 ], [ -8.5, 16.5 ], [ -9.0, 16.5 ], [ -9.0, 17.0 ], [ -8.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 17.0 ], [ -8.0, 16.5 ], [ -8.5, 16.5 ], [ -8.5, 17.0 ], [ -8.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 17.0 ], [ -7.5, 16.5 ], [ -8.0, 16.5 ], [ -8.0, 17.0 ], [ -7.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 17.0 ], [ -7.0, 16.5 ], [ -7.5, 16.5 ], [ -7.5, 17.0 ], [ -7.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 17.0 ], [ -6.5, 16.5 ], [ -7.0, 16.5 ], [ -7.0, 17.0 ], [ -6.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 17.0 ], [ -6.0, 16.5 ], [ -6.5, 16.5 ], [ -6.5, 17.0 ], [ -6.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 17.0 ], [ -5.5, 16.5 ], [ -6.0, 16.5 ], [ -6.0, 17.0 ], [ -5.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 17.0 ], [ -5.0, 16.5 ], [ -5.5, 16.5 ], [ -5.5, 17.0 ], [ -5.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 17.0 ], [ -4.5, 16.5 ], [ -5.0, 16.5 ], [ -5.0, 17.0 ], [ -4.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 17.0 ], [ -4.0, 16.5 ], [ -4.5, 16.5 ], [ -4.5, 17.0 ], [ -4.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 17.0 ], [ -3.5, 16.5 ], [ -4.0, 16.5 ], [ -4.0, 17.0 ], [ -3.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 17.0 ], [ -3.0, 16.5 ], [ -3.5, 16.5 ], [ -3.5, 17.0 ], [ -3.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 17.0 ], [ -2.5, 16.5 ], [ -3.0, 16.5 ], [ -3.0, 17.0 ], [ -2.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 17.0 ], [ -2.0, 16.5 ], [ -2.5, 16.5 ], [ -2.5, 17.0 ], [ -2.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 17.0 ], [ -1.5, 16.5 ], [ -2.0, 16.5 ], [ -2.0, 17.0 ], [ -1.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 17.0 ], [ -1.0, 16.5 ], [ -1.5, 16.5 ], [ -1.5, 17.0 ], [ -1.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 17.0 ], [ -0.5, 16.5 ], [ -1.0, 16.5 ], [ -1.0, 17.0 ], [ -0.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 17.0 ], [ 0.0, 16.5 ], [ -0.5, 16.5 ], [ -0.5, 17.0 ], [ 0.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 17.0 ], [ 0.5, 16.5 ], [ 0.0, 16.5 ], [ 0.0, 17.0 ], [ 0.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 17.0 ], [ 1.0, 16.5 ], [ 0.5, 16.5 ], [ 0.5, 17.0 ], [ 1.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 17.0 ], [ 1.5, 16.5 ], [ 1.0, 16.5 ], [ 1.0, 17.0 ], [ 1.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 17.0 ], [ 2.0, 16.5 ], [ 1.5, 16.5 ], [ 1.5, 17.0 ], [ 2.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 17.0 ], [ 2.5, 16.5 ], [ 2.0, 16.5 ], [ 2.0, 17.0 ], [ 2.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 17.0 ], [ 3.0, 16.5 ], [ 2.5, 16.5 ], [ 2.5, 17.0 ], [ 3.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 17.0 ], [ 3.5, 16.5 ], [ 3.0, 16.5 ], [ 3.0, 17.0 ], [ 3.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 17.0 ], [ 4.0, 16.5 ], [ 3.5, 16.5 ], [ 3.5, 17.0 ], [ 4.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 17.0 ], [ 4.5, 16.5 ], [ 4.0, 16.5 ], [ 4.0, 17.0 ], [ 4.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 17.0 ], [ 5.0, 16.5 ], [ 4.5, 16.5 ], [ 4.5, 17.0 ], [ 5.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 17.0 ], [ 5.5, 16.5 ], [ 5.0, 16.5 ], [ 5.0, 17.0 ], [ 5.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 17.0 ], [ 6.0, 16.5 ], [ 5.5, 16.5 ], [ 5.5, 17.0 ], [ 6.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 17.0 ], [ 6.5, 16.5 ], [ 6.0, 16.5 ], [ 6.0, 17.0 ], [ 6.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 17.0 ], [ 7.0, 16.5 ], [ 6.5, 16.5 ], [ 6.5, 17.0 ], [ 7.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 17.0 ], [ 7.5, 16.5 ], [ 7.0, 16.5 ], [ 7.0, 17.0 ], [ 7.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 17.0 ], [ 8.0, 16.5 ], [ 7.5, 16.5 ], [ 7.5, 17.0 ], [ 8.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 17.0 ], [ 8.5, 16.5 ], [ 8.0, 16.5 ], [ 8.0, 17.0 ], [ 8.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 17.0 ], [ 9.0, 16.5 ], [ 8.5, 16.5 ], [ 8.5, 17.0 ], [ 9.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 17.0 ], [ 9.5, 16.5 ], [ 9.0, 16.5 ], [ 9.0, 17.0 ], [ 9.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 17.0 ], [ 10.0, 16.5 ], [ 9.5, 16.5 ], [ 9.5, 17.0 ], [ 10.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 17.0 ], [ 10.5, 16.5 ], [ 10.0, 16.5 ], [ 10.0, 17.0 ], [ 10.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 17.0 ], [ 11.0, 16.5 ], [ 10.5, 16.5 ], [ 10.5, 17.0 ], [ 11.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 17.0 ], [ 11.5, 16.5 ], [ 11.0, 16.5 ], [ 11.0, 17.0 ], [ 11.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 17.0 ], [ 12.0, 16.5 ], [ 11.5, 16.5 ], [ 11.5, 17.0 ], [ 12.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 17.0 ], [ 12.5, 16.5 ], [ 12.0, 16.5 ], [ 12.0, 17.0 ], [ 12.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 17.0 ], [ 13.0, 16.5 ], [ 12.5, 16.5 ], [ 12.5, 17.0 ], [ 13.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 17.0 ], [ 13.5, 16.5 ], [ 13.0, 16.5 ], [ 13.0, 17.0 ], [ 13.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 17.0 ], [ 14.0, 16.5 ], [ 13.5, 16.5 ], [ 13.5, 17.0 ], [ 14.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 17.0 ], [ 14.5, 16.5 ], [ 14.0, 16.5 ], [ 14.0, 17.0 ], [ 14.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 17.0 ], [ 15.0, 16.5 ], [ 14.5, 16.5 ], [ 14.5, 17.0 ], [ 15.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 17.0 ], [ 15.5, 16.5 ], [ 15.0, 16.5 ], [ 15.0, 17.0 ], [ 15.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 17.0 ], [ 16.0, 16.5 ], [ 15.5, 16.5 ], [ 15.5, 17.0 ], [ 16.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 17.0 ], [ 16.5, 16.5 ], [ 16.0, 16.5 ], [ 16.0, 17.0 ], [ 16.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 17.0 ], [ 17.0, 16.5 ], [ 16.5, 16.5 ], [ 16.5, 17.0 ], [ 17.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 17.0 ], [ 17.5, 16.5 ], [ 17.0, 16.5 ], [ 17.0, 17.0 ], [ 17.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 17.0 ], [ 18.0, 16.5 ], [ 17.5, 16.5 ], [ 17.5, 17.0 ], [ 18.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 17.0 ], [ 18.5, 16.5 ], [ 18.0, 16.5 ], [ 18.0, 17.0 ], [ 18.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 17.0 ], [ 19.0, 16.5 ], [ 18.5, 16.5 ], [ 18.5, 17.0 ], [ 19.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 17.0 ], [ 19.5, 16.5 ], [ 19.0, 16.5 ], [ 19.0, 17.0 ], [ 19.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 17.0 ], [ 20.0, 16.5 ], [ 19.5, 16.5 ], [ 19.5, 17.0 ], [ 20.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 17.0 ], [ 20.5, 16.5 ], [ 20.0, 16.5 ], [ 20.0, 17.0 ], [ 20.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 17.0 ], [ 21.0, 16.5 ], [ 20.5, 16.5 ], [ 20.5, 17.0 ], [ 21.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 17.0 ], [ 21.5, 16.5 ], [ 21.0, 16.5 ], [ 21.0, 17.0 ], [ 21.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 17.0 ], [ 22.0, 16.5 ], [ 21.5, 16.5 ], [ 21.5, 17.0 ], [ 22.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 17.0 ], [ 22.5, 16.5 ], [ 22.0, 16.5 ], [ 22.0, 17.0 ], [ 22.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 17.0 ], [ 23.0, 16.5 ], [ 22.5, 16.5 ], [ 22.5, 17.0 ], [ 23.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 17.0 ], [ 23.5, 16.5 ], [ 23.0, 16.5 ], [ 23.0, 17.0 ], [ 23.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 17.0 ], [ 24.0, 16.5 ], [ 23.5, 16.5 ], [ 23.5, 17.0 ], [ 24.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 17.0 ], [ 24.5, 16.5 ], [ 24.0, 16.5 ], [ 24.0, 17.0 ], [ 24.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 17.0 ], [ 25.0, 16.5 ], [ 24.5, 16.5 ], [ 24.5, 17.0 ], [ 25.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 17.0 ], [ 25.5, 16.5 ], [ 25.0, 16.5 ], [ 25.0, 17.0 ], [ 25.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 17.0 ], [ 26.0, 16.5 ], [ 25.5, 16.5 ], [ 25.5, 17.0 ], [ 26.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 17.0 ], [ 26.5, 16.5 ], [ 26.0, 16.5 ], [ 26.0, 17.0 ], [ 26.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 17.0 ], [ 27.0, 16.5 ], [ 26.5, 16.5 ], [ 26.5, 17.0 ], [ 27.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 17.0 ], [ 27.5, 16.5 ], [ 27.0, 16.5 ], [ 27.0, 17.0 ], [ 27.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 17.0 ], [ 28.0, 16.5 ], [ 27.5, 16.5 ], [ 27.5, 17.0 ], [ 28.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 17.0 ], [ 28.5, 16.5 ], [ 28.0, 16.5 ], [ 28.0, 17.0 ], [ 28.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 17.0 ], [ 29.0, 16.5 ], [ 28.5, 16.5 ], [ 28.5, 17.0 ], [ 29.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 17.0 ], [ 29.5, 16.5 ], [ 29.0, 16.5 ], [ 29.0, 17.0 ], [ 29.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 17.0 ], [ 30.0, 16.5 ], [ 29.5, 16.5 ], [ 29.5, 17.0 ], [ 30.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 17.0 ], [ 30.5, 16.5 ], [ 30.0, 16.5 ], [ 30.0, 17.0 ], [ 30.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 17.0 ], [ 31.0, 16.5 ], [ 30.5, 16.5 ], [ 30.5, 17.0 ], [ 31.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 17.0 ], [ 31.5, 16.5 ], [ 31.0, 16.5 ], [ 31.0, 17.0 ], [ 31.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 17.0 ], [ 32.0, 16.5 ], [ 31.5, 16.5 ], [ 31.5, 17.0 ], [ 32.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 17.0 ], [ 32.5, 16.5 ], [ 32.0, 16.5 ], [ 32.0, 17.0 ], [ 32.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 17.0 ], [ 33.0, 16.5 ], [ 32.5, 16.5 ], [ 32.5, 17.0 ], [ 33.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 17.0 ], [ 33.5, 16.5 ], [ 33.0, 16.5 ], [ 33.0, 17.0 ], [ 33.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 17.0 ], [ 34.0, 16.5 ], [ 33.5, 16.5 ], [ 33.5, 17.0 ], [ 34.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 17.0 ], [ 34.5, 16.5 ], [ 34.0, 16.5 ], [ 34.0, 17.0 ], [ 34.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 17.0 ], [ 35.0, 16.5 ], [ 34.5, 16.5 ], [ 34.5, 17.0 ], [ 35.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 17.0 ], [ 35.5, 16.5 ], [ 35.0, 16.5 ], [ 35.0, 17.0 ], [ 35.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 17.0 ], [ 36.0, 16.5 ], [ 35.5, 16.5 ], [ 35.5, 17.0 ], [ 36.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 17.0 ], [ 36.5, 16.5 ], [ 36.0, 16.5 ], [ 36.0, 17.0 ], [ 36.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 17.0 ], [ 37.0, 16.5 ], [ 36.5, 16.5 ], [ 36.5, 17.0 ], [ 37.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 17.0 ], [ 37.5, 16.5 ], [ 37.0, 16.5 ], [ 37.0, 17.0 ], [ 37.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 17.0 ], [ 38.0, 16.5 ], [ 37.5, 16.5 ], [ 37.5, 17.0 ], [ 38.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 17.0 ], [ 38.5, 16.5 ], [ 38.0, 16.5 ], [ 38.0, 17.0 ], [ 38.5, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 17.0 ], [ 39.0, 16.5 ], [ 38.5, 16.5 ], [ 38.5, 17.0 ], [ 39.0, 17.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 17.5 ], [ -15.5, 17.0 ], [ -16.0, 17.0 ], [ -16.0, 17.5 ], [ -15.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 17.5 ], [ -15.0, 17.0 ], [ -15.5, 17.0 ], [ -15.5, 17.5 ], [ -15.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 17.5 ], [ -14.5, 17.0 ], [ -15.0, 17.0 ], [ -15.0, 17.5 ], [ -14.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 17.5 ], [ -14.0, 17.0 ], [ -14.5, 17.0 ], [ -14.5, 17.5 ], [ -14.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 17.5 ], [ -13.5, 17.0 ], [ -14.0, 17.0 ], [ -14.0, 17.5 ], [ -13.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 17.5 ], [ -13.0, 17.0 ], [ -13.5, 17.0 ], [ -13.5, 17.5 ], [ -13.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 17.5 ], [ -12.5, 17.0 ], [ -13.0, 17.0 ], [ -13.0, 17.5 ], [ -12.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 17.5 ], [ -12.0, 17.0 ], [ -12.5, 17.0 ], [ -12.5, 17.5 ], [ -12.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 17.5 ], [ -11.5, 17.0 ], [ -12.0, 17.0 ], [ -12.0, 17.5 ], [ -11.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 17.5 ], [ -11.0, 17.0 ], [ -11.5, 17.0 ], [ -11.5, 17.5 ], [ -11.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 17.5 ], [ -10.5, 17.0 ], [ -11.0, 17.0 ], [ -11.0, 17.5 ], [ -10.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 17.5 ], [ -10.0, 17.0 ], [ -10.5, 17.0 ], [ -10.5, 17.5 ], [ -10.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 17.5 ], [ -9.5, 17.0 ], [ -10.0, 17.0 ], [ -10.0, 17.5 ], [ -9.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 17.5 ], [ -9.0, 17.0 ], [ -9.5, 17.0 ], [ -9.5, 17.5 ], [ -9.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 17.5 ], [ -8.5, 17.0 ], [ -9.0, 17.0 ], [ -9.0, 17.5 ], [ -8.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 17.5 ], [ -8.0, 17.0 ], [ -8.5, 17.0 ], [ -8.5, 17.5 ], [ -8.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 17.5 ], [ -7.5, 17.0 ], [ -8.0, 17.0 ], [ -8.0, 17.5 ], [ -7.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 17.5 ], [ -7.0, 17.0 ], [ -7.5, 17.0 ], [ -7.5, 17.5 ], [ -7.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 17.5 ], [ -6.5, 17.0 ], [ -7.0, 17.0 ], [ -7.0, 17.5 ], [ -6.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 17.5 ], [ -6.0, 17.0 ], [ -6.5, 17.0 ], [ -6.5, 17.5 ], [ -6.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 17.5 ], [ -5.5, 17.0 ], [ -6.0, 17.0 ], [ -6.0, 17.5 ], [ -5.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 17.5 ], [ -5.0, 17.0 ], [ -5.5, 17.0 ], [ -5.5, 17.5 ], [ -5.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 17.5 ], [ -4.5, 17.0 ], [ -5.0, 17.0 ], [ -5.0, 17.5 ], [ -4.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 17.5 ], [ -4.0, 17.0 ], [ -4.5, 17.0 ], [ -4.5, 17.5 ], [ -4.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 17.5 ], [ -3.5, 17.0 ], [ -4.0, 17.0 ], [ -4.0, 17.5 ], [ -3.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 17.5 ], [ -3.0, 17.0 ], [ -3.5, 17.0 ], [ -3.5, 17.5 ], [ -3.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 17.5 ], [ -2.5, 17.0 ], [ -3.0, 17.0 ], [ -3.0, 17.5 ], [ -2.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 17.5 ], [ -2.0, 17.0 ], [ -2.5, 17.0 ], [ -2.5, 17.5 ], [ -2.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 17.5 ], [ -1.5, 17.0 ], [ -2.0, 17.0 ], [ -2.0, 17.5 ], [ -1.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 17.5 ], [ -1.0, 17.0 ], [ -1.5, 17.0 ], [ -1.5, 17.5 ], [ -1.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 17.5 ], [ -0.5, 17.0 ], [ -1.0, 17.0 ], [ -1.0, 17.5 ], [ -0.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 17.5 ], [ 0.0, 17.0 ], [ -0.5, 17.0 ], [ -0.5, 17.5 ], [ 0.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 17.5 ], [ 0.5, 17.0 ], [ 0.0, 17.0 ], [ 0.0, 17.5 ], [ 0.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 17.5 ], [ 1.0, 17.0 ], [ 0.5, 17.0 ], [ 0.5, 17.5 ], [ 1.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 17.5 ], [ 1.5, 17.0 ], [ 1.0, 17.0 ], [ 1.0, 17.5 ], [ 1.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 17.5 ], [ 2.0, 17.0 ], [ 1.5, 17.0 ], [ 1.5, 17.5 ], [ 2.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 17.5 ], [ 2.5, 17.0 ], [ 2.0, 17.0 ], [ 2.0, 17.5 ], [ 2.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 17.5 ], [ 3.0, 17.0 ], [ 2.5, 17.0 ], [ 2.5, 17.5 ], [ 3.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 17.5 ], [ 3.5, 17.0 ], [ 3.0, 17.0 ], [ 3.0, 17.5 ], [ 3.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 17.5 ], [ 4.0, 17.0 ], [ 3.5, 17.0 ], [ 3.5, 17.5 ], [ 4.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 17.5 ], [ 4.5, 17.0 ], [ 4.0, 17.0 ], [ 4.0, 17.5 ], [ 4.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 17.5 ], [ 5.0, 17.0 ], [ 4.5, 17.0 ], [ 4.5, 17.5 ], [ 5.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 17.5 ], [ 5.5, 17.0 ], [ 5.0, 17.0 ], [ 5.0, 17.5 ], [ 5.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 17.5 ], [ 6.0, 17.0 ], [ 5.5, 17.0 ], [ 5.5, 17.5 ], [ 6.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 17.5 ], [ 6.5, 17.0 ], [ 6.0, 17.0 ], [ 6.0, 17.5 ], [ 6.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 17.5 ], [ 7.0, 17.0 ], [ 6.5, 17.0 ], [ 6.5, 17.5 ], [ 7.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 17.5 ], [ 7.5, 17.0 ], [ 7.0, 17.0 ], [ 7.0, 17.5 ], [ 7.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 17.5 ], [ 8.0, 17.0 ], [ 7.5, 17.0 ], [ 7.5, 17.5 ], [ 8.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 17.5 ], [ 8.5, 17.0 ], [ 8.0, 17.0 ], [ 8.0, 17.5 ], [ 8.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 17.5 ], [ 9.0, 17.0 ], [ 8.5, 17.0 ], [ 8.5, 17.5 ], [ 9.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 17.5 ], [ 9.5, 17.0 ], [ 9.0, 17.0 ], [ 9.0, 17.5 ], [ 9.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 17.5 ], [ 10.0, 17.0 ], [ 9.5, 17.0 ], [ 9.5, 17.5 ], [ 10.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 17.5 ], [ 10.5, 17.0 ], [ 10.0, 17.0 ], [ 10.0, 17.5 ], [ 10.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 17.5 ], [ 11.0, 17.0 ], [ 10.5, 17.0 ], [ 10.5, 17.5 ], [ 11.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 17.5 ], [ 11.5, 17.0 ], [ 11.0, 17.0 ], [ 11.0, 17.5 ], [ 11.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 17.5 ], [ 12.0, 17.0 ], [ 11.5, 17.0 ], [ 11.5, 17.5 ], [ 12.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 17.5 ], [ 12.5, 17.0 ], [ 12.0, 17.0 ], [ 12.0, 17.5 ], [ 12.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 17.5 ], [ 13.0, 17.0 ], [ 12.5, 17.0 ], [ 12.5, 17.5 ], [ 13.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 17.5 ], [ 13.5, 17.0 ], [ 13.0, 17.0 ], [ 13.0, 17.5 ], [ 13.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 17.5 ], [ 14.0, 17.0 ], [ 13.5, 17.0 ], [ 13.5, 17.5 ], [ 14.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 17.5 ], [ 14.5, 17.0 ], [ 14.0, 17.0 ], [ 14.0, 17.5 ], [ 14.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 17.5 ], [ 15.0, 17.0 ], [ 14.5, 17.0 ], [ 14.5, 17.5 ], [ 15.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 17.5 ], [ 15.5, 17.0 ], [ 15.0, 17.0 ], [ 15.0, 17.5 ], [ 15.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 17.5 ], [ 16.0, 17.0 ], [ 15.5, 17.0 ], [ 15.5, 17.5 ], [ 16.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 17.5 ], [ 16.5, 17.0 ], [ 16.0, 17.0 ], [ 16.0, 17.5 ], [ 16.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 17.5 ], [ 17.0, 17.0 ], [ 16.5, 17.0 ], [ 16.5, 17.5 ], [ 17.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 17.5 ], [ 17.5, 17.0 ], [ 17.0, 17.0 ], [ 17.0, 17.5 ], [ 17.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 17.5 ], [ 18.0, 17.0 ], [ 17.5, 17.0 ], [ 17.5, 17.5 ], [ 18.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 17.5 ], [ 18.5, 17.0 ], [ 18.0, 17.0 ], [ 18.0, 17.5 ], [ 18.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 17.5 ], [ 19.0, 17.0 ], [ 18.5, 17.0 ], [ 18.5, 17.5 ], [ 19.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 17.5 ], [ 19.5, 17.0 ], [ 19.0, 17.0 ], [ 19.0, 17.5 ], [ 19.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 17.5 ], [ 20.0, 17.0 ], [ 19.5, 17.0 ], [ 19.5, 17.5 ], [ 20.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 17.5 ], [ 20.5, 17.0 ], [ 20.0, 17.0 ], [ 20.0, 17.5 ], [ 20.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 17.5 ], [ 21.0, 17.0 ], [ 20.5, 17.0 ], [ 20.5, 17.5 ], [ 21.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 17.5 ], [ 21.5, 17.0 ], [ 21.0, 17.0 ], [ 21.0, 17.5 ], [ 21.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 17.5 ], [ 22.0, 17.0 ], [ 21.5, 17.0 ], [ 21.5, 17.5 ], [ 22.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 17.5 ], [ 22.5, 17.0 ], [ 22.0, 17.0 ], [ 22.0, 17.5 ], [ 22.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 17.5 ], [ 23.0, 17.0 ], [ 22.5, 17.0 ], [ 22.5, 17.5 ], [ 23.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 17.5 ], [ 23.5, 17.0 ], [ 23.0, 17.0 ], [ 23.0, 17.5 ], [ 23.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 17.5 ], [ 24.0, 17.0 ], [ 23.5, 17.0 ], [ 23.5, 17.5 ], [ 24.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 17.5 ], [ 24.5, 17.0 ], [ 24.0, 17.0 ], [ 24.0, 17.5 ], [ 24.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 17.5 ], [ 25.0, 17.0 ], [ 24.5, 17.0 ], [ 24.5, 17.5 ], [ 25.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 17.5 ], [ 25.5, 17.0 ], [ 25.0, 17.0 ], [ 25.0, 17.5 ], [ 25.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 17.5 ], [ 26.0, 17.0 ], [ 25.5, 17.0 ], [ 25.5, 17.5 ], [ 26.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 17.5 ], [ 26.5, 17.0 ], [ 26.0, 17.0 ], [ 26.0, 17.5 ], [ 26.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 17.5 ], [ 27.0, 17.0 ], [ 26.5, 17.0 ], [ 26.5, 17.5 ], [ 27.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 17.5 ], [ 27.5, 17.0 ], [ 27.0, 17.0 ], [ 27.0, 17.5 ], [ 27.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 17.5 ], [ 28.0, 17.0 ], [ 27.5, 17.0 ], [ 27.5, 17.5 ], [ 28.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 17.5 ], [ 28.5, 17.0 ], [ 28.0, 17.0 ], [ 28.0, 17.5 ], [ 28.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 17.5 ], [ 29.0, 17.0 ], [ 28.5, 17.0 ], [ 28.5, 17.5 ], [ 29.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 17.5 ], [ 29.5, 17.0 ], [ 29.0, 17.0 ], [ 29.0, 17.5 ], [ 29.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 17.5 ], [ 30.0, 17.0 ], [ 29.5, 17.0 ], [ 29.5, 17.5 ], [ 30.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 17.5 ], [ 30.5, 17.0 ], [ 30.0, 17.0 ], [ 30.0, 17.5 ], [ 30.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 17.5 ], [ 31.0, 17.0 ], [ 30.5, 17.0 ], [ 30.5, 17.5 ], [ 31.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 17.5 ], [ 31.5, 17.0 ], [ 31.0, 17.0 ], [ 31.0, 17.5 ], [ 31.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 17.5 ], [ 32.0, 17.0 ], [ 31.5, 17.0 ], [ 31.5, 17.5 ], [ 32.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 17.5 ], [ 32.5, 17.0 ], [ 32.0, 17.0 ], [ 32.0, 17.5 ], [ 32.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 17.5 ], [ 33.0, 17.0 ], [ 32.5, 17.0 ], [ 32.5, 17.5 ], [ 33.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 17.5 ], [ 33.5, 17.0 ], [ 33.0, 17.0 ], [ 33.0, 17.5 ], [ 33.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 17.5 ], [ 34.0, 17.0 ], [ 33.5, 17.0 ], [ 33.5, 17.5 ], [ 34.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 17.5 ], [ 34.5, 17.0 ], [ 34.0, 17.0 ], [ 34.0, 17.5 ], [ 34.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 17.5 ], [ 35.0, 17.0 ], [ 34.5, 17.0 ], [ 34.5, 17.5 ], [ 35.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 17.5 ], [ 35.5, 17.0 ], [ 35.0, 17.0 ], [ 35.0, 17.5 ], [ 35.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 17.5 ], [ 36.0, 17.0 ], [ 35.5, 17.0 ], [ 35.5, 17.5 ], [ 36.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 17.5 ], [ 36.5, 17.0 ], [ 36.0, 17.0 ], [ 36.0, 17.5 ], [ 36.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 17.5 ], [ 37.0, 17.0 ], [ 36.5, 17.0 ], [ 36.5, 17.5 ], [ 37.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 17.5 ], [ 37.5, 17.0 ], [ 37.0, 17.0 ], [ 37.0, 17.5 ], [ 37.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 17.5 ], [ 38.0, 17.0 ], [ 37.5, 17.0 ], [ 37.5, 17.5 ], [ 38.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 17.5 ], [ 38.5, 17.0 ], [ 38.0, 17.0 ], [ 38.0, 17.5 ], [ 38.5, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.0, 17.5 ], [ 39.0, 17.0 ], [ 38.5, 17.0 ], [ 38.5, 17.5 ], [ 39.0, 17.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 18.0 ], [ -15.5, 17.5 ], [ -16.0, 17.5 ], [ -16.0, 18.0 ], [ -15.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 18.0 ], [ -15.0, 17.5 ], [ -15.5, 17.5 ], [ -15.5, 18.0 ], [ -15.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 18.0 ], [ -14.5, 17.5 ], [ -15.0, 17.5 ], [ -15.0, 18.0 ], [ -14.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 18.0 ], [ -14.0, 17.5 ], [ -14.5, 17.5 ], [ -14.5, 18.0 ], [ -14.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 18.0 ], [ -13.5, 17.5 ], [ -14.0, 17.5 ], [ -14.0, 18.0 ], [ -13.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 18.0 ], [ -13.0, 17.5 ], [ -13.5, 17.5 ], [ -13.5, 18.0 ], [ -13.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 18.0 ], [ -12.5, 17.5 ], [ -13.0, 17.5 ], [ -13.0, 18.0 ], [ -12.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 18.0 ], [ -12.0, 17.5 ], [ -12.5, 17.5 ], [ -12.5, 18.0 ], [ -12.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 18.0 ], [ -11.5, 17.5 ], [ -12.0, 17.5 ], [ -12.0, 18.0 ], [ -11.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 18.0 ], [ -11.0, 17.5 ], [ -11.5, 17.5 ], [ -11.5, 18.0 ], [ -11.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 18.0 ], [ -10.5, 17.5 ], [ -11.0, 17.5 ], [ -11.0, 18.0 ], [ -10.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 18.0 ], [ -10.0, 17.5 ], [ -10.5, 17.5 ], [ -10.5, 18.0 ], [ -10.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 18.0 ], [ -9.5, 17.5 ], [ -10.0, 17.5 ], [ -10.0, 18.0 ], [ -9.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 18.0 ], [ -9.0, 17.5 ], [ -9.5, 17.5 ], [ -9.5, 18.0 ], [ -9.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 18.0 ], [ -8.5, 17.5 ], [ -9.0, 17.5 ], [ -9.0, 18.0 ], [ -8.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 18.0 ], [ -8.0, 17.5 ], [ -8.5, 17.5 ], [ -8.5, 18.0 ], [ -8.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 18.0 ], [ -7.5, 17.5 ], [ -8.0, 17.5 ], [ -8.0, 18.0 ], [ -7.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 18.0 ], [ -7.0, 17.5 ], [ -7.5, 17.5 ], [ -7.5, 18.0 ], [ -7.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 18.0 ], [ -6.5, 17.5 ], [ -7.0, 17.5 ], [ -7.0, 18.0 ], [ -6.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 18.0 ], [ -6.0, 17.5 ], [ -6.5, 17.5 ], [ -6.5, 18.0 ], [ -6.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 18.0 ], [ -5.5, 17.5 ], [ -6.0, 17.5 ], [ -6.0, 18.0 ], [ -5.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 18.0 ], [ -5.0, 17.5 ], [ -5.5, 17.5 ], [ -5.5, 18.0 ], [ -5.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 18.0 ], [ -4.5, 17.5 ], [ -5.0, 17.5 ], [ -5.0, 18.0 ], [ -4.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 18.0 ], [ -4.0, 17.5 ], [ -4.5, 17.5 ], [ -4.5, 18.0 ], [ -4.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 18.0 ], [ -3.5, 17.5 ], [ -4.0, 17.5 ], [ -4.0, 18.0 ], [ -3.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 18.0 ], [ -3.0, 17.5 ], [ -3.5, 17.5 ], [ -3.5, 18.0 ], [ -3.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 18.0 ], [ -2.5, 17.5 ], [ -3.0, 17.5 ], [ -3.0, 18.0 ], [ -2.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 18.0 ], [ -2.0, 17.5 ], [ -2.5, 17.5 ], [ -2.5, 18.0 ], [ -2.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 18.0 ], [ -1.5, 17.5 ], [ -2.0, 17.5 ], [ -2.0, 18.0 ], [ -1.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 18.0 ], [ -1.0, 17.5 ], [ -1.5, 17.5 ], [ -1.5, 18.0 ], [ -1.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 18.0 ], [ -0.5, 17.5 ], [ -1.0, 17.5 ], [ -1.0, 18.0 ], [ -0.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 18.0 ], [ 0.0, 17.5 ], [ -0.5, 17.5 ], [ -0.5, 18.0 ], [ 0.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 18.0 ], [ 0.5, 17.5 ], [ 0.0, 17.5 ], [ 0.0, 18.0 ], [ 0.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 18.0 ], [ 1.0, 17.5 ], [ 0.5, 17.5 ], [ 0.5, 18.0 ], [ 1.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 18.0 ], [ 1.5, 17.5 ], [ 1.0, 17.5 ], [ 1.0, 18.0 ], [ 1.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 18.0 ], [ 2.0, 17.5 ], [ 1.5, 17.5 ], [ 1.5, 18.0 ], [ 2.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 18.0 ], [ 2.5, 17.5 ], [ 2.0, 17.5 ], [ 2.0, 18.0 ], [ 2.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 18.0 ], [ 3.0, 17.5 ], [ 2.5, 17.5 ], [ 2.5, 18.0 ], [ 3.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 18.0 ], [ 3.5, 17.5 ], [ 3.0, 17.5 ], [ 3.0, 18.0 ], [ 3.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 18.0 ], [ 4.0, 17.5 ], [ 3.5, 17.5 ], [ 3.5, 18.0 ], [ 4.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 18.0 ], [ 4.5, 17.5 ], [ 4.0, 17.5 ], [ 4.0, 18.0 ], [ 4.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 18.0 ], [ 5.0, 17.5 ], [ 4.5, 17.5 ], [ 4.5, 18.0 ], [ 5.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 18.0 ], [ 5.5, 17.5 ], [ 5.0, 17.5 ], [ 5.0, 18.0 ], [ 5.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 18.0 ], [ 6.0, 17.5 ], [ 5.5, 17.5 ], [ 5.5, 18.0 ], [ 6.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 18.0 ], [ 6.5, 17.5 ], [ 6.0, 17.5 ], [ 6.0, 18.0 ], [ 6.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 18.0 ], [ 7.0, 17.5 ], [ 6.5, 17.5 ], [ 6.5, 18.0 ], [ 7.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 18.0 ], [ 7.5, 17.5 ], [ 7.0, 17.5 ], [ 7.0, 18.0 ], [ 7.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 18.0 ], [ 8.0, 17.5 ], [ 7.5, 17.5 ], [ 7.5, 18.0 ], [ 8.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 18.0 ], [ 8.5, 17.5 ], [ 8.0, 17.5 ], [ 8.0, 18.0 ], [ 8.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 18.0 ], [ 9.0, 17.5 ], [ 8.5, 17.5 ], [ 8.5, 18.0 ], [ 9.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 18.0 ], [ 9.5, 17.5 ], [ 9.0, 17.5 ], [ 9.0, 18.0 ], [ 9.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 18.0 ], [ 10.0, 17.5 ], [ 9.5, 17.5 ], [ 9.5, 18.0 ], [ 10.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 18.0 ], [ 10.5, 17.5 ], [ 10.0, 17.5 ], [ 10.0, 18.0 ], [ 10.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 18.0 ], [ 11.0, 17.5 ], [ 10.5, 17.5 ], [ 10.5, 18.0 ], [ 11.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 18.0 ], [ 11.5, 17.5 ], [ 11.0, 17.5 ], [ 11.0, 18.0 ], [ 11.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 18.0 ], [ 12.0, 17.5 ], [ 11.5, 17.5 ], [ 11.5, 18.0 ], [ 12.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 18.0 ], [ 12.5, 17.5 ], [ 12.0, 17.5 ], [ 12.0, 18.0 ], [ 12.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 18.0 ], [ 13.0, 17.5 ], [ 12.5, 17.5 ], [ 12.5, 18.0 ], [ 13.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 18.0 ], [ 13.5, 17.5 ], [ 13.0, 17.5 ], [ 13.0, 18.0 ], [ 13.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 18.0 ], [ 14.0, 17.5 ], [ 13.5, 17.5 ], [ 13.5, 18.0 ], [ 14.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 18.0 ], [ 14.5, 17.5 ], [ 14.0, 17.5 ], [ 14.0, 18.0 ], [ 14.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 18.0 ], [ 15.0, 17.5 ], [ 14.5, 17.5 ], [ 14.5, 18.0 ], [ 15.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 18.0 ], [ 15.5, 17.5 ], [ 15.0, 17.5 ], [ 15.0, 18.0 ], [ 15.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 18.0 ], [ 16.0, 17.5 ], [ 15.5, 17.5 ], [ 15.5, 18.0 ], [ 16.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 18.0 ], [ 16.5, 17.5 ], [ 16.0, 17.5 ], [ 16.0, 18.0 ], [ 16.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 18.0 ], [ 17.0, 17.5 ], [ 16.5, 17.5 ], [ 16.5, 18.0 ], [ 17.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 18.0 ], [ 17.5, 17.5 ], [ 17.0, 17.5 ], [ 17.0, 18.0 ], [ 17.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 18.0 ], [ 18.0, 17.5 ], [ 17.5, 17.5 ], [ 17.5, 18.0 ], [ 18.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 18.0 ], [ 18.5, 17.5 ], [ 18.0, 17.5 ], [ 18.0, 18.0 ], [ 18.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 18.0 ], [ 19.0, 17.5 ], [ 18.5, 17.5 ], [ 18.5, 18.0 ], [ 19.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 18.0 ], [ 19.5, 17.5 ], [ 19.0, 17.5 ], [ 19.0, 18.0 ], [ 19.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 18.0 ], [ 20.0, 17.5 ], [ 19.5, 17.5 ], [ 19.5, 18.0 ], [ 20.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 18.0 ], [ 20.5, 17.5 ], [ 20.0, 17.5 ], [ 20.0, 18.0 ], [ 20.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 18.0 ], [ 21.0, 17.5 ], [ 20.5, 17.5 ], [ 20.5, 18.0 ], [ 21.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 18.0 ], [ 21.5, 17.5 ], [ 21.0, 17.5 ], [ 21.0, 18.0 ], [ 21.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 18.0 ], [ 22.0, 17.5 ], [ 21.5, 17.5 ], [ 21.5, 18.0 ], [ 22.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 18.0 ], [ 22.5, 17.5 ], [ 22.0, 17.5 ], [ 22.0, 18.0 ], [ 22.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 18.0 ], [ 23.0, 17.5 ], [ 22.5, 17.5 ], [ 22.5, 18.0 ], [ 23.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 18.0 ], [ 23.5, 17.5 ], [ 23.0, 17.5 ], [ 23.0, 18.0 ], [ 23.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 18.0 ], [ 24.0, 17.5 ], [ 23.5, 17.5 ], [ 23.5, 18.0 ], [ 24.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 18.0 ], [ 24.5, 17.5 ], [ 24.0, 17.5 ], [ 24.0, 18.0 ], [ 24.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 18.0 ], [ 25.0, 17.5 ], [ 24.5, 17.5 ], [ 24.5, 18.0 ], [ 25.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 18.0 ], [ 25.5, 17.5 ], [ 25.0, 17.5 ], [ 25.0, 18.0 ], [ 25.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 18.0 ], [ 26.0, 17.5 ], [ 25.5, 17.5 ], [ 25.5, 18.0 ], [ 26.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 18.0 ], [ 26.5, 17.5 ], [ 26.0, 17.5 ], [ 26.0, 18.0 ], [ 26.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 18.0 ], [ 27.0, 17.5 ], [ 26.5, 17.5 ], [ 26.5, 18.0 ], [ 27.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 18.0 ], [ 27.5, 17.5 ], [ 27.0, 17.5 ], [ 27.0, 18.0 ], [ 27.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 18.0 ], [ 28.0, 17.5 ], [ 27.5, 17.5 ], [ 27.5, 18.0 ], [ 28.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 18.0 ], [ 28.5, 17.5 ], [ 28.0, 17.5 ], [ 28.0, 18.0 ], [ 28.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 18.0 ], [ 29.0, 17.5 ], [ 28.5, 17.5 ], [ 28.5, 18.0 ], [ 29.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 18.0 ], [ 29.5, 17.5 ], [ 29.0, 17.5 ], [ 29.0, 18.0 ], [ 29.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 18.0 ], [ 30.0, 17.5 ], [ 29.5, 17.5 ], [ 29.5, 18.0 ], [ 30.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 18.0 ], [ 30.5, 17.5 ], [ 30.0, 17.5 ], [ 30.0, 18.0 ], [ 30.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 18.0 ], [ 31.0, 17.5 ], [ 30.5, 17.5 ], [ 30.5, 18.0 ], [ 31.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 18.0 ], [ 31.5, 17.5 ], [ 31.0, 17.5 ], [ 31.0, 18.0 ], [ 31.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 18.0 ], [ 32.0, 17.5 ], [ 31.5, 17.5 ], [ 31.5, 18.0 ], [ 32.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 18.0 ], [ 32.5, 17.5 ], [ 32.0, 17.5 ], [ 32.0, 18.0 ], [ 32.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 18.0 ], [ 33.0, 17.5 ], [ 32.5, 17.5 ], [ 32.5, 18.0 ], [ 33.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 18.0 ], [ 33.5, 17.5 ], [ 33.0, 17.5 ], [ 33.0, 18.0 ], [ 33.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 18.0 ], [ 34.0, 17.5 ], [ 33.5, 17.5 ], [ 33.5, 18.0 ], [ 34.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 18.0 ], [ 34.5, 17.5 ], [ 34.0, 17.5 ], [ 34.0, 18.0 ], [ 34.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 18.0 ], [ 35.0, 17.5 ], [ 34.5, 17.5 ], [ 34.5, 18.0 ], [ 35.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 18.0 ], [ 35.5, 17.5 ], [ 35.0, 17.5 ], [ 35.0, 18.0 ], [ 35.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 18.0 ], [ 36.0, 17.5 ], [ 35.5, 17.5 ], [ 35.5, 18.0 ], [ 36.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 18.0 ], [ 36.5, 17.5 ], [ 36.0, 17.5 ], [ 36.0, 18.0 ], [ 36.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 18.0 ], [ 37.0, 17.5 ], [ 36.5, 17.5 ], [ 36.5, 18.0 ], [ 37.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 18.0 ], [ 37.5, 17.5 ], [ 37.0, 17.5 ], [ 37.0, 18.0 ], [ 37.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 18.0 ], [ 38.0, 17.5 ], [ 37.5, 17.5 ], [ 37.5, 18.0 ], [ 38.0, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 18.0 ], [ 38.5, 17.5 ], [ 38.0, 17.5 ], [ 38.0, 18.0 ], [ 38.5, 18.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 18.5 ], [ -15.5, 18.0 ], [ -16.0, 18.0 ], [ -16.0, 18.5 ], [ -15.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 18.5 ], [ -15.0, 18.0 ], [ -15.5, 18.0 ], [ -15.5, 18.5 ], [ -15.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 18.5 ], [ -14.5, 18.0 ], [ -15.0, 18.0 ], [ -15.0, 18.5 ], [ -14.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 18.5 ], [ -14.0, 18.0 ], [ -14.5, 18.0 ], [ -14.5, 18.5 ], [ -14.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 18.5 ], [ -13.5, 18.0 ], [ -14.0, 18.0 ], [ -14.0, 18.5 ], [ -13.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 18.5 ], [ -13.0, 18.0 ], [ -13.5, 18.0 ], [ -13.5, 18.5 ], [ -13.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 18.5 ], [ -12.5, 18.0 ], [ -13.0, 18.0 ], [ -13.0, 18.5 ], [ -12.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 18.5 ], [ -12.0, 18.0 ], [ -12.5, 18.0 ], [ -12.5, 18.5 ], [ -12.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 18.5 ], [ -11.5, 18.0 ], [ -12.0, 18.0 ], [ -12.0, 18.5 ], [ -11.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 18.5 ], [ -11.0, 18.0 ], [ -11.5, 18.0 ], [ -11.5, 18.5 ], [ -11.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 18.5 ], [ -10.5, 18.0 ], [ -11.0, 18.0 ], [ -11.0, 18.5 ], [ -10.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 18.5 ], [ -10.0, 18.0 ], [ -10.5, 18.0 ], [ -10.5, 18.5 ], [ -10.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 18.5 ], [ -9.5, 18.0 ], [ -10.0, 18.0 ], [ -10.0, 18.5 ], [ -9.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 18.5 ], [ -9.0, 18.0 ], [ -9.5, 18.0 ], [ -9.5, 18.5 ], [ -9.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 18.5 ], [ -8.5, 18.0 ], [ -9.0, 18.0 ], [ -9.0, 18.5 ], [ -8.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 18.5 ], [ -8.0, 18.0 ], [ -8.5, 18.0 ], [ -8.5, 18.5 ], [ -8.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 18.5 ], [ -7.5, 18.0 ], [ -8.0, 18.0 ], [ -8.0, 18.5 ], [ -7.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 18.5 ], [ -7.0, 18.0 ], [ -7.5, 18.0 ], [ -7.5, 18.5 ], [ -7.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 18.5 ], [ -6.5, 18.0 ], [ -7.0, 18.0 ], [ -7.0, 18.5 ], [ -6.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 18.5 ], [ -6.0, 18.0 ], [ -6.5, 18.0 ], [ -6.5, 18.5 ], [ -6.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 18.5 ], [ -5.5, 18.0 ], [ -6.0, 18.0 ], [ -6.0, 18.5 ], [ -5.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 18.5 ], [ -5.0, 18.0 ], [ -5.5, 18.0 ], [ -5.5, 18.5 ], [ -5.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 18.5 ], [ -4.5, 18.0 ], [ -5.0, 18.0 ], [ -5.0, 18.5 ], [ -4.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 18.5 ], [ -4.0, 18.0 ], [ -4.5, 18.0 ], [ -4.5, 18.5 ], [ -4.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 18.5 ], [ -3.5, 18.0 ], [ -4.0, 18.0 ], [ -4.0, 18.5 ], [ -3.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 18.5 ], [ -3.0, 18.0 ], [ -3.5, 18.0 ], [ -3.5, 18.5 ], [ -3.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 18.5 ], [ -2.5, 18.0 ], [ -3.0, 18.0 ], [ -3.0, 18.5 ], [ -2.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 18.5 ], [ -2.0, 18.0 ], [ -2.5, 18.0 ], [ -2.5, 18.5 ], [ -2.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 18.5 ], [ -1.5, 18.0 ], [ -2.0, 18.0 ], [ -2.0, 18.5 ], [ -1.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 18.5 ], [ -1.0, 18.0 ], [ -1.5, 18.0 ], [ -1.5, 18.5 ], [ -1.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 18.5 ], [ -0.5, 18.0 ], [ -1.0, 18.0 ], [ -1.0, 18.5 ], [ -0.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 18.5 ], [ 0.0, 18.0 ], [ -0.5, 18.0 ], [ -0.5, 18.5 ], [ 0.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 18.5 ], [ 0.5, 18.0 ], [ 0.0, 18.0 ], [ 0.0, 18.5 ], [ 0.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 18.5 ], [ 1.0, 18.0 ], [ 0.5, 18.0 ], [ 0.5, 18.5 ], [ 1.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 18.5 ], [ 1.5, 18.0 ], [ 1.0, 18.0 ], [ 1.0, 18.5 ], [ 1.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 18.5 ], [ 2.0, 18.0 ], [ 1.5, 18.0 ], [ 1.5, 18.5 ], [ 2.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 18.5 ], [ 2.5, 18.0 ], [ 2.0, 18.0 ], [ 2.0, 18.5 ], [ 2.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 18.5 ], [ 3.0, 18.0 ], [ 2.5, 18.0 ], [ 2.5, 18.5 ], [ 3.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 18.5 ], [ 3.5, 18.0 ], [ 3.0, 18.0 ], [ 3.0, 18.5 ], [ 3.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 18.5 ], [ 4.0, 18.0 ], [ 3.5, 18.0 ], [ 3.5, 18.5 ], [ 4.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 18.5 ], [ 4.5, 18.0 ], [ 4.0, 18.0 ], [ 4.0, 18.5 ], [ 4.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 18.5 ], [ 5.0, 18.0 ], [ 4.5, 18.0 ], [ 4.5, 18.5 ], [ 5.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 18.5 ], [ 5.5, 18.0 ], [ 5.0, 18.0 ], [ 5.0, 18.5 ], [ 5.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 18.5 ], [ 6.0, 18.0 ], [ 5.5, 18.0 ], [ 5.5, 18.5 ], [ 6.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 18.5 ], [ 6.5, 18.0 ], [ 6.0, 18.0 ], [ 6.0, 18.5 ], [ 6.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 18.5 ], [ 7.0, 18.0 ], [ 6.5, 18.0 ], [ 6.5, 18.5 ], [ 7.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 18.5 ], [ 7.5, 18.0 ], [ 7.0, 18.0 ], [ 7.0, 18.5 ], [ 7.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 18.5 ], [ 8.0, 18.0 ], [ 7.5, 18.0 ], [ 7.5, 18.5 ], [ 8.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 18.5 ], [ 8.5, 18.0 ], [ 8.0, 18.0 ], [ 8.0, 18.5 ], [ 8.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 18.5 ], [ 9.0, 18.0 ], [ 8.5, 18.0 ], [ 8.5, 18.5 ], [ 9.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 18.5 ], [ 9.5, 18.0 ], [ 9.0, 18.0 ], [ 9.0, 18.5 ], [ 9.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 18.5 ], [ 10.0, 18.0 ], [ 9.5, 18.0 ], [ 9.5, 18.5 ], [ 10.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 18.5 ], [ 10.5, 18.0 ], [ 10.0, 18.0 ], [ 10.0, 18.5 ], [ 10.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 18.5 ], [ 11.0, 18.0 ], [ 10.5, 18.0 ], [ 10.5, 18.5 ], [ 11.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 18.5 ], [ 11.5, 18.0 ], [ 11.0, 18.0 ], [ 11.0, 18.5 ], [ 11.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 18.5 ], [ 12.0, 18.0 ], [ 11.5, 18.0 ], [ 11.5, 18.5 ], [ 12.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 18.5 ], [ 12.5, 18.0 ], [ 12.0, 18.0 ], [ 12.0, 18.5 ], [ 12.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 18.5 ], [ 13.0, 18.0 ], [ 12.5, 18.0 ], [ 12.5, 18.5 ], [ 13.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 18.5 ], [ 13.5, 18.0 ], [ 13.0, 18.0 ], [ 13.0, 18.5 ], [ 13.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 18.5 ], [ 14.0, 18.0 ], [ 13.5, 18.0 ], [ 13.5, 18.5 ], [ 14.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 18.5 ], [ 14.5, 18.0 ], [ 14.0, 18.0 ], [ 14.0, 18.5 ], [ 14.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 18.5 ], [ 15.0, 18.0 ], [ 14.5, 18.0 ], [ 14.5, 18.5 ], [ 15.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 18.5 ], [ 15.5, 18.0 ], [ 15.0, 18.0 ], [ 15.0, 18.5 ], [ 15.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 18.5 ], [ 16.0, 18.0 ], [ 15.5, 18.0 ], [ 15.5, 18.5 ], [ 16.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 18.5 ], [ 16.5, 18.0 ], [ 16.0, 18.0 ], [ 16.0, 18.5 ], [ 16.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 18.5 ], [ 17.0, 18.0 ], [ 16.5, 18.0 ], [ 16.5, 18.5 ], [ 17.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 18.5 ], [ 17.5, 18.0 ], [ 17.0, 18.0 ], [ 17.0, 18.5 ], [ 17.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 18.5 ], [ 18.0, 18.0 ], [ 17.5, 18.0 ], [ 17.5, 18.5 ], [ 18.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 18.5 ], [ 18.5, 18.0 ], [ 18.0, 18.0 ], [ 18.0, 18.5 ], [ 18.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 18.5 ], [ 19.0, 18.0 ], [ 18.5, 18.0 ], [ 18.5, 18.5 ], [ 19.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 18.5 ], [ 19.5, 18.0 ], [ 19.0, 18.0 ], [ 19.0, 18.5 ], [ 19.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 18.5 ], [ 20.0, 18.0 ], [ 19.5, 18.0 ], [ 19.5, 18.5 ], [ 20.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 18.5 ], [ 20.5, 18.0 ], [ 20.0, 18.0 ], [ 20.0, 18.5 ], [ 20.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 18.5 ], [ 21.0, 18.0 ], [ 20.5, 18.0 ], [ 20.5, 18.5 ], [ 21.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 18.5 ], [ 21.5, 18.0 ], [ 21.0, 18.0 ], [ 21.0, 18.5 ], [ 21.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 18.5 ], [ 22.0, 18.0 ], [ 21.5, 18.0 ], [ 21.5, 18.5 ], [ 22.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 18.5 ], [ 22.5, 18.0 ], [ 22.0, 18.0 ], [ 22.0, 18.5 ], [ 22.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 18.5 ], [ 23.0, 18.0 ], [ 22.5, 18.0 ], [ 22.5, 18.5 ], [ 23.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 18.5 ], [ 23.5, 18.0 ], [ 23.0, 18.0 ], [ 23.0, 18.5 ], [ 23.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 18.5 ], [ 24.0, 18.0 ], [ 23.5, 18.0 ], [ 23.5, 18.5 ], [ 24.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 18.5 ], [ 24.5, 18.0 ], [ 24.0, 18.0 ], [ 24.0, 18.5 ], [ 24.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 18.5 ], [ 25.0, 18.0 ], [ 24.5, 18.0 ], [ 24.5, 18.5 ], [ 25.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 18.5 ], [ 25.5, 18.0 ], [ 25.0, 18.0 ], [ 25.0, 18.5 ], [ 25.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 18.5 ], [ 26.0, 18.0 ], [ 25.5, 18.0 ], [ 25.5, 18.5 ], [ 26.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 18.5 ], [ 26.5, 18.0 ], [ 26.0, 18.0 ], [ 26.0, 18.5 ], [ 26.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 18.5 ], [ 27.0, 18.0 ], [ 26.5, 18.0 ], [ 26.5, 18.5 ], [ 27.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 18.5 ], [ 27.5, 18.0 ], [ 27.0, 18.0 ], [ 27.0, 18.5 ], [ 27.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 18.5 ], [ 28.0, 18.0 ], [ 27.5, 18.0 ], [ 27.5, 18.5 ], [ 28.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 18.5 ], [ 28.5, 18.0 ], [ 28.0, 18.0 ], [ 28.0, 18.5 ], [ 28.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 18.5 ], [ 29.0, 18.0 ], [ 28.5, 18.0 ], [ 28.5, 18.5 ], [ 29.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 18.5 ], [ 29.5, 18.0 ], [ 29.0, 18.0 ], [ 29.0, 18.5 ], [ 29.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 18.5 ], [ 30.0, 18.0 ], [ 29.5, 18.0 ], [ 29.5, 18.5 ], [ 30.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 18.5 ], [ 30.5, 18.0 ], [ 30.0, 18.0 ], [ 30.0, 18.5 ], [ 30.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 18.5 ], [ 31.0, 18.0 ], [ 30.5, 18.0 ], [ 30.5, 18.5 ], [ 31.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 18.5 ], [ 31.5, 18.0 ], [ 31.0, 18.0 ], [ 31.0, 18.5 ], [ 31.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 18.5 ], [ 32.0, 18.0 ], [ 31.5, 18.0 ], [ 31.5, 18.5 ], [ 32.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 18.5 ], [ 32.5, 18.0 ], [ 32.0, 18.0 ], [ 32.0, 18.5 ], [ 32.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 18.5 ], [ 33.0, 18.0 ], [ 32.5, 18.0 ], [ 32.5, 18.5 ], [ 33.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 18.5 ], [ 33.5, 18.0 ], [ 33.0, 18.0 ], [ 33.0, 18.5 ], [ 33.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 18.5 ], [ 34.0, 18.0 ], [ 33.5, 18.0 ], [ 33.5, 18.5 ], [ 34.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 18.5 ], [ 34.5, 18.0 ], [ 34.0, 18.0 ], [ 34.0, 18.5 ], [ 34.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 18.5 ], [ 35.0, 18.0 ], [ 34.5, 18.0 ], [ 34.5, 18.5 ], [ 35.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 18.5 ], [ 35.5, 18.0 ], [ 35.0, 18.0 ], [ 35.0, 18.5 ], [ 35.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 18.5 ], [ 36.0, 18.0 ], [ 35.5, 18.0 ], [ 35.5, 18.5 ], [ 36.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 18.5 ], [ 36.5, 18.0 ], [ 36.0, 18.0 ], [ 36.0, 18.5 ], [ 36.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 18.5 ], [ 37.0, 18.0 ], [ 36.5, 18.0 ], [ 36.5, 18.5 ], [ 37.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 18.5 ], [ 37.5, 18.0 ], [ 37.0, 18.0 ], [ 37.0, 18.5 ], [ 37.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.0, 18.5 ], [ 38.0, 18.0 ], [ 37.5, 18.0 ], [ 37.5, 18.5 ], [ 38.0, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.5, 18.5 ], [ 38.5, 18.0 ], [ 38.0, 18.0 ], [ 38.0, 18.5 ], [ 38.5, 18.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 19.0 ], [ -15.5, 18.5 ], [ -16.0, 18.5 ], [ -16.0, 19.0 ], [ -15.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 19.0 ], [ -15.0, 18.5 ], [ -15.5, 18.5 ], [ -15.5, 19.0 ], [ -15.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 19.0 ], [ -14.5, 18.5 ], [ -15.0, 18.5 ], [ -15.0, 19.0 ], [ -14.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 19.0 ], [ -14.0, 18.5 ], [ -14.5, 18.5 ], [ -14.5, 19.0 ], [ -14.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 19.0 ], [ -13.5, 18.5 ], [ -14.0, 18.5 ], [ -14.0, 19.0 ], [ -13.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 19.0 ], [ -13.0, 18.5 ], [ -13.5, 18.5 ], [ -13.5, 19.0 ], [ -13.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 19.0 ], [ -12.5, 18.5 ], [ -13.0, 18.5 ], [ -13.0, 19.0 ], [ -12.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 19.0 ], [ -12.0, 18.5 ], [ -12.5, 18.5 ], [ -12.5, 19.0 ], [ -12.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 19.0 ], [ -11.5, 18.5 ], [ -12.0, 18.5 ], [ -12.0, 19.0 ], [ -11.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 19.0 ], [ -11.0, 18.5 ], [ -11.5, 18.5 ], [ -11.5, 19.0 ], [ -11.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 19.0 ], [ -10.5, 18.5 ], [ -11.0, 18.5 ], [ -11.0, 19.0 ], [ -10.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 19.0 ], [ -10.0, 18.5 ], [ -10.5, 18.5 ], [ -10.5, 19.0 ], [ -10.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 19.0 ], [ -9.5, 18.5 ], [ -10.0, 18.5 ], [ -10.0, 19.0 ], [ -9.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 19.0 ], [ -9.0, 18.5 ], [ -9.5, 18.5 ], [ -9.5, 19.0 ], [ -9.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 19.0 ], [ -8.5, 18.5 ], [ -9.0, 18.5 ], [ -9.0, 19.0 ], [ -8.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 19.0 ], [ -8.0, 18.5 ], [ -8.5, 18.5 ], [ -8.5, 19.0 ], [ -8.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 19.0 ], [ -7.5, 18.5 ], [ -8.0, 18.5 ], [ -8.0, 19.0 ], [ -7.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 19.0 ], [ -7.0, 18.5 ], [ -7.5, 18.5 ], [ -7.5, 19.0 ], [ -7.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 19.0 ], [ -6.5, 18.5 ], [ -7.0, 18.5 ], [ -7.0, 19.0 ], [ -6.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 19.0 ], [ -6.0, 18.5 ], [ -6.5, 18.5 ], [ -6.5, 19.0 ], [ -6.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 19.0 ], [ -5.5, 18.5 ], [ -6.0, 18.5 ], [ -6.0, 19.0 ], [ -5.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 19.0 ], [ -5.0, 18.5 ], [ -5.5, 18.5 ], [ -5.5, 19.0 ], [ -5.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 19.0 ], [ -4.5, 18.5 ], [ -5.0, 18.5 ], [ -5.0, 19.0 ], [ -4.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 19.0 ], [ -4.0, 18.5 ], [ -4.5, 18.5 ], [ -4.5, 19.0 ], [ -4.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 19.0 ], [ -3.5, 18.5 ], [ -4.0, 18.5 ], [ -4.0, 19.0 ], [ -3.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 19.0 ], [ -3.0, 18.5 ], [ -3.5, 18.5 ], [ -3.5, 19.0 ], [ -3.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 19.0 ], [ -2.5, 18.5 ], [ -3.0, 18.5 ], [ -3.0, 19.0 ], [ -2.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 19.0 ], [ -2.0, 18.5 ], [ -2.5, 18.5 ], [ -2.5, 19.0 ], [ -2.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 19.0 ], [ -1.5, 18.5 ], [ -2.0, 18.5 ], [ -2.0, 19.0 ], [ -1.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 19.0 ], [ -1.0, 18.5 ], [ -1.5, 18.5 ], [ -1.5, 19.0 ], [ -1.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 19.0 ], [ -0.5, 18.5 ], [ -1.0, 18.5 ], [ -1.0, 19.0 ], [ -0.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 19.0 ], [ 0.0, 18.5 ], [ -0.5, 18.5 ], [ -0.5, 19.0 ], [ 0.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 19.0 ], [ 0.5, 18.5 ], [ 0.0, 18.5 ], [ 0.0, 19.0 ], [ 0.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 19.0 ], [ 1.0, 18.5 ], [ 0.5, 18.5 ], [ 0.5, 19.0 ], [ 1.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 19.0 ], [ 1.5, 18.5 ], [ 1.0, 18.5 ], [ 1.0, 19.0 ], [ 1.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 19.0 ], [ 2.0, 18.5 ], [ 1.5, 18.5 ], [ 1.5, 19.0 ], [ 2.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 19.0 ], [ 2.5, 18.5 ], [ 2.0, 18.5 ], [ 2.0, 19.0 ], [ 2.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 19.0 ], [ 3.0, 18.5 ], [ 2.5, 18.5 ], [ 2.5, 19.0 ], [ 3.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 19.0 ], [ 3.5, 18.5 ], [ 3.0, 18.5 ], [ 3.0, 19.0 ], [ 3.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 19.0 ], [ 4.0, 18.5 ], [ 3.5, 18.5 ], [ 3.5, 19.0 ], [ 4.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 19.0 ], [ 4.5, 18.5 ], [ 4.0, 18.5 ], [ 4.0, 19.0 ], [ 4.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 19.0 ], [ 5.0, 18.5 ], [ 4.5, 18.5 ], [ 4.5, 19.0 ], [ 5.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 19.0 ], [ 5.5, 18.5 ], [ 5.0, 18.5 ], [ 5.0, 19.0 ], [ 5.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 19.0 ], [ 6.0, 18.5 ], [ 5.5, 18.5 ], [ 5.5, 19.0 ], [ 6.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 19.0 ], [ 6.5, 18.5 ], [ 6.0, 18.5 ], [ 6.0, 19.0 ], [ 6.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 19.0 ], [ 7.0, 18.5 ], [ 6.5, 18.5 ], [ 6.5, 19.0 ], [ 7.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 19.0 ], [ 7.5, 18.5 ], [ 7.0, 18.5 ], [ 7.0, 19.0 ], [ 7.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 19.0 ], [ 8.0, 18.5 ], [ 7.5, 18.5 ], [ 7.5, 19.0 ], [ 8.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 19.0 ], [ 8.5, 18.5 ], [ 8.0, 18.5 ], [ 8.0, 19.0 ], [ 8.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 19.0 ], [ 9.0, 18.5 ], [ 8.5, 18.5 ], [ 8.5, 19.0 ], [ 9.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 19.0 ], [ 9.5, 18.5 ], [ 9.0, 18.5 ], [ 9.0, 19.0 ], [ 9.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 19.0 ], [ 10.0, 18.5 ], [ 9.5, 18.5 ], [ 9.5, 19.0 ], [ 10.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 19.0 ], [ 10.5, 18.5 ], [ 10.0, 18.5 ], [ 10.0, 19.0 ], [ 10.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 19.0 ], [ 11.0, 18.5 ], [ 10.5, 18.5 ], [ 10.5, 19.0 ], [ 11.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 19.0 ], [ 11.5, 18.5 ], [ 11.0, 18.5 ], [ 11.0, 19.0 ], [ 11.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 19.0 ], [ 12.0, 18.5 ], [ 11.5, 18.5 ], [ 11.5, 19.0 ], [ 12.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 19.0 ], [ 12.5, 18.5 ], [ 12.0, 18.5 ], [ 12.0, 19.0 ], [ 12.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 19.0 ], [ 13.0, 18.5 ], [ 12.5, 18.5 ], [ 12.5, 19.0 ], [ 13.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 19.0 ], [ 13.5, 18.5 ], [ 13.0, 18.5 ], [ 13.0, 19.0 ], [ 13.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 19.0 ], [ 14.0, 18.5 ], [ 13.5, 18.5 ], [ 13.5, 19.0 ], [ 14.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 19.0 ], [ 14.5, 18.5 ], [ 14.0, 18.5 ], [ 14.0, 19.0 ], [ 14.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 19.0 ], [ 15.0, 18.5 ], [ 14.5, 18.5 ], [ 14.5, 19.0 ], [ 15.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 19.0 ], [ 15.5, 18.5 ], [ 15.0, 18.5 ], [ 15.0, 19.0 ], [ 15.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 19.0 ], [ 16.0, 18.5 ], [ 15.5, 18.5 ], [ 15.5, 19.0 ], [ 16.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 19.0 ], [ 16.5, 18.5 ], [ 16.0, 18.5 ], [ 16.0, 19.0 ], [ 16.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 19.0 ], [ 17.0, 18.5 ], [ 16.5, 18.5 ], [ 16.5, 19.0 ], [ 17.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 19.0 ], [ 17.5, 18.5 ], [ 17.0, 18.5 ], [ 17.0, 19.0 ], [ 17.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 19.0 ], [ 18.0, 18.5 ], [ 17.5, 18.5 ], [ 17.5, 19.0 ], [ 18.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 19.0 ], [ 18.5, 18.5 ], [ 18.0, 18.5 ], [ 18.0, 19.0 ], [ 18.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 19.0 ], [ 19.0, 18.5 ], [ 18.5, 18.5 ], [ 18.5, 19.0 ], [ 19.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 19.0 ], [ 19.5, 18.5 ], [ 19.0, 18.5 ], [ 19.0, 19.0 ], [ 19.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 19.0 ], [ 20.0, 18.5 ], [ 19.5, 18.5 ], [ 19.5, 19.0 ], [ 20.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 19.0 ], [ 20.5, 18.5 ], [ 20.0, 18.5 ], [ 20.0, 19.0 ], [ 20.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 19.0 ], [ 21.0, 18.5 ], [ 20.5, 18.5 ], [ 20.5, 19.0 ], [ 21.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 19.0 ], [ 21.5, 18.5 ], [ 21.0, 18.5 ], [ 21.0, 19.0 ], [ 21.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 19.0 ], [ 22.0, 18.5 ], [ 21.5, 18.5 ], [ 21.5, 19.0 ], [ 22.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 19.0 ], [ 22.5, 18.5 ], [ 22.0, 18.5 ], [ 22.0, 19.0 ], [ 22.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 19.0 ], [ 23.0, 18.5 ], [ 22.5, 18.5 ], [ 22.5, 19.0 ], [ 23.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 19.0 ], [ 23.5, 18.5 ], [ 23.0, 18.5 ], [ 23.0, 19.0 ], [ 23.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 19.0 ], [ 24.0, 18.5 ], [ 23.5, 18.5 ], [ 23.5, 19.0 ], [ 24.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 19.0 ], [ 24.5, 18.5 ], [ 24.0, 18.5 ], [ 24.0, 19.0 ], [ 24.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 19.0 ], [ 25.0, 18.5 ], [ 24.5, 18.5 ], [ 24.5, 19.0 ], [ 25.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 19.0 ], [ 25.5, 18.5 ], [ 25.0, 18.5 ], [ 25.0, 19.0 ], [ 25.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 19.0 ], [ 26.0, 18.5 ], [ 25.5, 18.5 ], [ 25.5, 19.0 ], [ 26.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 19.0 ], [ 26.5, 18.5 ], [ 26.0, 18.5 ], [ 26.0, 19.0 ], [ 26.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 19.0 ], [ 27.0, 18.5 ], [ 26.5, 18.5 ], [ 26.5, 19.0 ], [ 27.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 19.0 ], [ 27.5, 18.5 ], [ 27.0, 18.5 ], [ 27.0, 19.0 ], [ 27.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 19.0 ], [ 28.0, 18.5 ], [ 27.5, 18.5 ], [ 27.5, 19.0 ], [ 28.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 19.0 ], [ 28.5, 18.5 ], [ 28.0, 18.5 ], [ 28.0, 19.0 ], [ 28.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 19.0 ], [ 29.0, 18.5 ], [ 28.5, 18.5 ], [ 28.5, 19.0 ], [ 29.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 19.0 ], [ 29.5, 18.5 ], [ 29.0, 18.5 ], [ 29.0, 19.0 ], [ 29.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 19.0 ], [ 30.0, 18.5 ], [ 29.5, 18.5 ], [ 29.5, 19.0 ], [ 30.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 19.0 ], [ 30.5, 18.5 ], [ 30.0, 18.5 ], [ 30.0, 19.0 ], [ 30.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 19.0 ], [ 31.0, 18.5 ], [ 30.5, 18.5 ], [ 30.5, 19.0 ], [ 31.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 19.0 ], [ 31.5, 18.5 ], [ 31.0, 18.5 ], [ 31.0, 19.0 ], [ 31.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 19.0 ], [ 32.0, 18.5 ], [ 31.5, 18.5 ], [ 31.5, 19.0 ], [ 32.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 19.0 ], [ 32.5, 18.5 ], [ 32.0, 18.5 ], [ 32.0, 19.0 ], [ 32.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 19.0 ], [ 33.0, 18.5 ], [ 32.5, 18.5 ], [ 32.5, 19.0 ], [ 33.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 19.0 ], [ 33.5, 18.5 ], [ 33.0, 18.5 ], [ 33.0, 19.0 ], [ 33.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 19.0 ], [ 34.0, 18.5 ], [ 33.5, 18.5 ], [ 33.5, 19.0 ], [ 34.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 19.0 ], [ 34.5, 18.5 ], [ 34.0, 18.5 ], [ 34.0, 19.0 ], [ 34.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 19.0 ], [ 35.0, 18.5 ], [ 34.5, 18.5 ], [ 34.5, 19.0 ], [ 35.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 19.0 ], [ 35.5, 18.5 ], [ 35.0, 18.5 ], [ 35.0, 19.0 ], [ 35.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 19.0 ], [ 36.0, 18.5 ], [ 35.5, 18.5 ], [ 35.5, 19.0 ], [ 36.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 19.0 ], [ 36.5, 18.5 ], [ 36.0, 18.5 ], [ 36.0, 19.0 ], [ 36.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 19.0 ], [ 37.0, 18.5 ], [ 36.5, 18.5 ], [ 36.5, 19.0 ], [ 37.0, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 19.0 ], [ 37.5, 18.5 ], [ 37.0, 18.5 ], [ 37.0, 19.0 ], [ 37.5, 19.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.0, 19.5 ], [ -16.0, 19.0 ], [ -16.5, 19.0 ], [ -16.5, 19.5 ], [ -16.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 19.5 ], [ -15.5, 19.0 ], [ -16.0, 19.0 ], [ -16.0, 19.5 ], [ -15.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 19.5 ], [ -15.0, 19.0 ], [ -15.5, 19.0 ], [ -15.5, 19.5 ], [ -15.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 19.5 ], [ -14.5, 19.0 ], [ -15.0, 19.0 ], [ -15.0, 19.5 ], [ -14.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 19.5 ], [ -14.0, 19.0 ], [ -14.5, 19.0 ], [ -14.5, 19.5 ], [ -14.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 19.5 ], [ -13.5, 19.0 ], [ -14.0, 19.0 ], [ -14.0, 19.5 ], [ -13.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 19.5 ], [ -13.0, 19.0 ], [ -13.5, 19.0 ], [ -13.5, 19.5 ], [ -13.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 19.5 ], [ -12.5, 19.0 ], [ -13.0, 19.0 ], [ -13.0, 19.5 ], [ -12.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 19.5 ], [ -12.0, 19.0 ], [ -12.5, 19.0 ], [ -12.5, 19.5 ], [ -12.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 19.5 ], [ -11.5, 19.0 ], [ -12.0, 19.0 ], [ -12.0, 19.5 ], [ -11.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 19.5 ], [ -11.0, 19.0 ], [ -11.5, 19.0 ], [ -11.5, 19.5 ], [ -11.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 19.5 ], [ -10.5, 19.0 ], [ -11.0, 19.0 ], [ -11.0, 19.5 ], [ -10.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 19.5 ], [ -10.0, 19.0 ], [ -10.5, 19.0 ], [ -10.5, 19.5 ], [ -10.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 19.5 ], [ -9.5, 19.0 ], [ -10.0, 19.0 ], [ -10.0, 19.5 ], [ -9.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 19.5 ], [ -9.0, 19.0 ], [ -9.5, 19.0 ], [ -9.5, 19.5 ], [ -9.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 19.5 ], [ -8.5, 19.0 ], [ -9.0, 19.0 ], [ -9.0, 19.5 ], [ -8.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 19.5 ], [ -8.0, 19.0 ], [ -8.5, 19.0 ], [ -8.5, 19.5 ], [ -8.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 19.5 ], [ -7.5, 19.0 ], [ -8.0, 19.0 ], [ -8.0, 19.5 ], [ -7.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 19.5 ], [ -7.0, 19.0 ], [ -7.5, 19.0 ], [ -7.5, 19.5 ], [ -7.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 19.5 ], [ -6.5, 19.0 ], [ -7.0, 19.0 ], [ -7.0, 19.5 ], [ -6.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 19.5 ], [ -6.0, 19.0 ], [ -6.5, 19.0 ], [ -6.5, 19.5 ], [ -6.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 19.5 ], [ -5.5, 19.0 ], [ -6.0, 19.0 ], [ -6.0, 19.5 ], [ -5.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 19.5 ], [ -5.0, 19.0 ], [ -5.5, 19.0 ], [ -5.5, 19.5 ], [ -5.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 19.5 ], [ -4.5, 19.0 ], [ -5.0, 19.0 ], [ -5.0, 19.5 ], [ -4.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 19.5 ], [ -4.0, 19.0 ], [ -4.5, 19.0 ], [ -4.5, 19.5 ], [ -4.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 19.5 ], [ -3.5, 19.0 ], [ -4.0, 19.0 ], [ -4.0, 19.5 ], [ -3.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 19.5 ], [ -3.0, 19.0 ], [ -3.5, 19.0 ], [ -3.5, 19.5 ], [ -3.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 19.5 ], [ -2.5, 19.0 ], [ -3.0, 19.0 ], [ -3.0, 19.5 ], [ -2.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 19.5 ], [ -2.0, 19.0 ], [ -2.5, 19.0 ], [ -2.5, 19.5 ], [ -2.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 19.5 ], [ -1.5, 19.0 ], [ -2.0, 19.0 ], [ -2.0, 19.5 ], [ -1.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 19.5 ], [ -1.0, 19.0 ], [ -1.5, 19.0 ], [ -1.5, 19.5 ], [ -1.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 19.5 ], [ -0.5, 19.0 ], [ -1.0, 19.0 ], [ -1.0, 19.5 ], [ -0.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 19.5 ], [ 0.0, 19.0 ], [ -0.5, 19.0 ], [ -0.5, 19.5 ], [ 0.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 19.5 ], [ 0.5, 19.0 ], [ 0.0, 19.0 ], [ 0.0, 19.5 ], [ 0.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 19.5 ], [ 1.0, 19.0 ], [ 0.5, 19.0 ], [ 0.5, 19.5 ], [ 1.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 19.5 ], [ 1.5, 19.0 ], [ 1.0, 19.0 ], [ 1.0, 19.5 ], [ 1.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 19.5 ], [ 2.0, 19.0 ], [ 1.5, 19.0 ], [ 1.5, 19.5 ], [ 2.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 19.5 ], [ 2.5, 19.0 ], [ 2.0, 19.0 ], [ 2.0, 19.5 ], [ 2.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 19.5 ], [ 3.0, 19.0 ], [ 2.5, 19.0 ], [ 2.5, 19.5 ], [ 3.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 19.5 ], [ 3.5, 19.0 ], [ 3.0, 19.0 ], [ 3.0, 19.5 ], [ 3.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 19.5 ], [ 4.0, 19.0 ], [ 3.5, 19.0 ], [ 3.5, 19.5 ], [ 4.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 19.5 ], [ 4.5, 19.0 ], [ 4.0, 19.0 ], [ 4.0, 19.5 ], [ 4.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 19.5 ], [ 5.0, 19.0 ], [ 4.5, 19.0 ], [ 4.5, 19.5 ], [ 5.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 19.5 ], [ 5.5, 19.0 ], [ 5.0, 19.0 ], [ 5.0, 19.5 ], [ 5.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 19.5 ], [ 6.0, 19.0 ], [ 5.5, 19.0 ], [ 5.5, 19.5 ], [ 6.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 19.5 ], [ 6.5, 19.0 ], [ 6.0, 19.0 ], [ 6.0, 19.5 ], [ 6.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 19.5 ], [ 7.0, 19.0 ], [ 6.5, 19.0 ], [ 6.5, 19.5 ], [ 7.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 19.5 ], [ 7.5, 19.0 ], [ 7.0, 19.0 ], [ 7.0, 19.5 ], [ 7.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 19.5 ], [ 8.0, 19.0 ], [ 7.5, 19.0 ], [ 7.5, 19.5 ], [ 8.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 19.5 ], [ 8.5, 19.0 ], [ 8.0, 19.0 ], [ 8.0, 19.5 ], [ 8.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 19.5 ], [ 9.0, 19.0 ], [ 8.5, 19.0 ], [ 8.5, 19.5 ], [ 9.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 19.5 ], [ 9.5, 19.0 ], [ 9.0, 19.0 ], [ 9.0, 19.5 ], [ 9.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 19.5 ], [ 10.0, 19.0 ], [ 9.5, 19.0 ], [ 9.5, 19.5 ], [ 10.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 19.5 ], [ 10.5, 19.0 ], [ 10.0, 19.0 ], [ 10.0, 19.5 ], [ 10.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 19.5 ], [ 11.0, 19.0 ], [ 10.5, 19.0 ], [ 10.5, 19.5 ], [ 11.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 19.5 ], [ 11.5, 19.0 ], [ 11.0, 19.0 ], [ 11.0, 19.5 ], [ 11.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 19.5 ], [ 12.0, 19.0 ], [ 11.5, 19.0 ], [ 11.5, 19.5 ], [ 12.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 19.5 ], [ 12.5, 19.0 ], [ 12.0, 19.0 ], [ 12.0, 19.5 ], [ 12.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 19.5 ], [ 13.0, 19.0 ], [ 12.5, 19.0 ], [ 12.5, 19.5 ], [ 13.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 19.5 ], [ 13.5, 19.0 ], [ 13.0, 19.0 ], [ 13.0, 19.5 ], [ 13.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 19.5 ], [ 14.0, 19.0 ], [ 13.5, 19.0 ], [ 13.5, 19.5 ], [ 14.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 19.5 ], [ 14.5, 19.0 ], [ 14.0, 19.0 ], [ 14.0, 19.5 ], [ 14.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 19.5 ], [ 15.0, 19.0 ], [ 14.5, 19.0 ], [ 14.5, 19.5 ], [ 15.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 19.5 ], [ 15.5, 19.0 ], [ 15.0, 19.0 ], [ 15.0, 19.5 ], [ 15.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 19.5 ], [ 16.0, 19.0 ], [ 15.5, 19.0 ], [ 15.5, 19.5 ], [ 16.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 19.5 ], [ 16.5, 19.0 ], [ 16.0, 19.0 ], [ 16.0, 19.5 ], [ 16.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 19.5 ], [ 17.0, 19.0 ], [ 16.5, 19.0 ], [ 16.5, 19.5 ], [ 17.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 19.5 ], [ 17.5, 19.0 ], [ 17.0, 19.0 ], [ 17.0, 19.5 ], [ 17.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 19.5 ], [ 18.0, 19.0 ], [ 17.5, 19.0 ], [ 17.5, 19.5 ], [ 18.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 19.5 ], [ 18.5, 19.0 ], [ 18.0, 19.0 ], [ 18.0, 19.5 ], [ 18.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 19.5 ], [ 19.0, 19.0 ], [ 18.5, 19.0 ], [ 18.5, 19.5 ], [ 19.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 19.5 ], [ 19.5, 19.0 ], [ 19.0, 19.0 ], [ 19.0, 19.5 ], [ 19.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 19.5 ], [ 20.0, 19.0 ], [ 19.5, 19.0 ], [ 19.5, 19.5 ], [ 20.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 19.5 ], [ 20.5, 19.0 ], [ 20.0, 19.0 ], [ 20.0, 19.5 ], [ 20.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 19.5 ], [ 21.0, 19.0 ], [ 20.5, 19.0 ], [ 20.5, 19.5 ], [ 21.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 19.5 ], [ 21.5, 19.0 ], [ 21.0, 19.0 ], [ 21.0, 19.5 ], [ 21.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 19.5 ], [ 22.0, 19.0 ], [ 21.5, 19.0 ], [ 21.5, 19.5 ], [ 22.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 19.5 ], [ 22.5, 19.0 ], [ 22.0, 19.0 ], [ 22.0, 19.5 ], [ 22.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 19.5 ], [ 23.0, 19.0 ], [ 22.5, 19.0 ], [ 22.5, 19.5 ], [ 23.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 19.5 ], [ 23.5, 19.0 ], [ 23.0, 19.0 ], [ 23.0, 19.5 ], [ 23.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 19.5 ], [ 24.0, 19.0 ], [ 23.5, 19.0 ], [ 23.5, 19.5 ], [ 24.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 19.5 ], [ 24.5, 19.0 ], [ 24.0, 19.0 ], [ 24.0, 19.5 ], [ 24.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 19.5 ], [ 25.0, 19.0 ], [ 24.5, 19.0 ], [ 24.5, 19.5 ], [ 25.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 19.5 ], [ 25.5, 19.0 ], [ 25.0, 19.0 ], [ 25.0, 19.5 ], [ 25.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 19.5 ], [ 26.0, 19.0 ], [ 25.5, 19.0 ], [ 25.5, 19.5 ], [ 26.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 19.5 ], [ 26.5, 19.0 ], [ 26.0, 19.0 ], [ 26.0, 19.5 ], [ 26.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 19.5 ], [ 27.0, 19.0 ], [ 26.5, 19.0 ], [ 26.5, 19.5 ], [ 27.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 19.5 ], [ 27.5, 19.0 ], [ 27.0, 19.0 ], [ 27.0, 19.5 ], [ 27.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 19.5 ], [ 28.0, 19.0 ], [ 27.5, 19.0 ], [ 27.5, 19.5 ], [ 28.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 19.5 ], [ 28.5, 19.0 ], [ 28.0, 19.0 ], [ 28.0, 19.5 ], [ 28.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 19.5 ], [ 29.0, 19.0 ], [ 28.5, 19.0 ], [ 28.5, 19.5 ], [ 29.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 19.5 ], [ 29.5, 19.0 ], [ 29.0, 19.0 ], [ 29.0, 19.5 ], [ 29.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 19.5 ], [ 30.0, 19.0 ], [ 29.5, 19.0 ], [ 29.5, 19.5 ], [ 30.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 19.5 ], [ 30.5, 19.0 ], [ 30.0, 19.0 ], [ 30.0, 19.5 ], [ 30.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 19.5 ], [ 31.0, 19.0 ], [ 30.5, 19.0 ], [ 30.5, 19.5 ], [ 31.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 19.5 ], [ 31.5, 19.0 ], [ 31.0, 19.0 ], [ 31.0, 19.5 ], [ 31.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 19.5 ], [ 32.0, 19.0 ], [ 31.5, 19.0 ], [ 31.5, 19.5 ], [ 32.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 19.5 ], [ 32.5, 19.0 ], [ 32.0, 19.0 ], [ 32.0, 19.5 ], [ 32.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 19.5 ], [ 33.0, 19.0 ], [ 32.5, 19.0 ], [ 32.5, 19.5 ], [ 33.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 19.5 ], [ 33.5, 19.0 ], [ 33.0, 19.0 ], [ 33.0, 19.5 ], [ 33.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 19.5 ], [ 34.0, 19.0 ], [ 33.5, 19.0 ], [ 33.5, 19.5 ], [ 34.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 19.5 ], [ 34.5, 19.0 ], [ 34.0, 19.0 ], [ 34.0, 19.5 ], [ 34.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 19.5 ], [ 35.0, 19.0 ], [ 34.5, 19.0 ], [ 34.5, 19.5 ], [ 35.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 19.5 ], [ 35.5, 19.0 ], [ 35.0, 19.0 ], [ 35.0, 19.5 ], [ 35.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 19.5 ], [ 36.0, 19.0 ], [ 35.5, 19.0 ], [ 35.5, 19.5 ], [ 36.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 19.5 ], [ 36.5, 19.0 ], [ 36.0, 19.0 ], [ 36.0, 19.5 ], [ 36.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 19.5 ], [ 37.0, 19.0 ], [ 36.5, 19.0 ], [ 36.5, 19.5 ], [ 37.0, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 19.5 ], [ 37.5, 19.0 ], [ 37.0, 19.0 ], [ 37.0, 19.5 ], [ 37.5, 19.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.0, 20.0 ], [ -16.0, 19.5 ], [ -16.5, 19.5 ], [ -16.5, 20.0 ], [ -16.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 20.0 ], [ -15.5, 19.5 ], [ -16.0, 19.5 ], [ -16.0, 20.0 ], [ -15.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 20.0 ], [ -15.0, 19.5 ], [ -15.5, 19.5 ], [ -15.5, 20.0 ], [ -15.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 20.0 ], [ -14.5, 19.5 ], [ -15.0, 19.5 ], [ -15.0, 20.0 ], [ -14.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 20.0 ], [ -14.0, 19.5 ], [ -14.5, 19.5 ], [ -14.5, 20.0 ], [ -14.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 20.0 ], [ -13.5, 19.5 ], [ -14.0, 19.5 ], [ -14.0, 20.0 ], [ -13.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 20.0 ], [ -13.0, 19.5 ], [ -13.5, 19.5 ], [ -13.5, 20.0 ], [ -13.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 20.0 ], [ -12.5, 19.5 ], [ -13.0, 19.5 ], [ -13.0, 20.0 ], [ -12.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 20.0 ], [ -12.0, 19.5 ], [ -12.5, 19.5 ], [ -12.5, 20.0 ], [ -12.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 20.0 ], [ -11.5, 19.5 ], [ -12.0, 19.5 ], [ -12.0, 20.0 ], [ -11.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 20.0 ], [ -11.0, 19.5 ], [ -11.5, 19.5 ], [ -11.5, 20.0 ], [ -11.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 20.0 ], [ -10.5, 19.5 ], [ -11.0, 19.5 ], [ -11.0, 20.0 ], [ -10.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 20.0 ], [ -10.0, 19.5 ], [ -10.5, 19.5 ], [ -10.5, 20.0 ], [ -10.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 20.0 ], [ -9.5, 19.5 ], [ -10.0, 19.5 ], [ -10.0, 20.0 ], [ -9.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 20.0 ], [ -9.0, 19.5 ], [ -9.5, 19.5 ], [ -9.5, 20.0 ], [ -9.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 20.0 ], [ -8.5, 19.5 ], [ -9.0, 19.5 ], [ -9.0, 20.0 ], [ -8.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 20.0 ], [ -8.0, 19.5 ], [ -8.5, 19.5 ], [ -8.5, 20.0 ], [ -8.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 20.0 ], [ -7.5, 19.5 ], [ -8.0, 19.5 ], [ -8.0, 20.0 ], [ -7.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 20.0 ], [ -7.0, 19.5 ], [ -7.5, 19.5 ], [ -7.5, 20.0 ], [ -7.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 20.0 ], [ -6.5, 19.5 ], [ -7.0, 19.5 ], [ -7.0, 20.0 ], [ -6.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 20.0 ], [ -6.0, 19.5 ], [ -6.5, 19.5 ], [ -6.5, 20.0 ], [ -6.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 20.0 ], [ -5.5, 19.5 ], [ -6.0, 19.5 ], [ -6.0, 20.0 ], [ -5.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 20.0 ], [ -5.0, 19.5 ], [ -5.5, 19.5 ], [ -5.5, 20.0 ], [ -5.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 20.0 ], [ -4.5, 19.5 ], [ -5.0, 19.5 ], [ -5.0, 20.0 ], [ -4.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 20.0 ], [ -4.0, 19.5 ], [ -4.5, 19.5 ], [ -4.5, 20.0 ], [ -4.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 20.0 ], [ -3.5, 19.5 ], [ -4.0, 19.5 ], [ -4.0, 20.0 ], [ -3.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 20.0 ], [ -3.0, 19.5 ], [ -3.5, 19.5 ], [ -3.5, 20.0 ], [ -3.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 20.0 ], [ -2.5, 19.5 ], [ -3.0, 19.5 ], [ -3.0, 20.0 ], [ -2.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 20.0 ], [ -2.0, 19.5 ], [ -2.5, 19.5 ], [ -2.5, 20.0 ], [ -2.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 20.0 ], [ -1.5, 19.5 ], [ -2.0, 19.5 ], [ -2.0, 20.0 ], [ -1.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 20.0 ], [ -1.0, 19.5 ], [ -1.5, 19.5 ], [ -1.5, 20.0 ], [ -1.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 20.0 ], [ -0.5, 19.5 ], [ -1.0, 19.5 ], [ -1.0, 20.0 ], [ -0.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 20.0 ], [ 0.0, 19.5 ], [ -0.5, 19.5 ], [ -0.5, 20.0 ], [ 0.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 20.0 ], [ 0.5, 19.5 ], [ 0.0, 19.5 ], [ 0.0, 20.0 ], [ 0.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 20.0 ], [ 1.0, 19.5 ], [ 0.5, 19.5 ], [ 0.5, 20.0 ], [ 1.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 20.0 ], [ 1.5, 19.5 ], [ 1.0, 19.5 ], [ 1.0, 20.0 ], [ 1.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 20.0 ], [ 2.0, 19.5 ], [ 1.5, 19.5 ], [ 1.5, 20.0 ], [ 2.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 20.0 ], [ 2.5, 19.5 ], [ 2.0, 19.5 ], [ 2.0, 20.0 ], [ 2.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 20.0 ], [ 3.0, 19.5 ], [ 2.5, 19.5 ], [ 2.5, 20.0 ], [ 3.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 20.0 ], [ 3.5, 19.5 ], [ 3.0, 19.5 ], [ 3.0, 20.0 ], [ 3.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 20.0 ], [ 4.0, 19.5 ], [ 3.5, 19.5 ], [ 3.5, 20.0 ], [ 4.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 20.0 ], [ 4.5, 19.5 ], [ 4.0, 19.5 ], [ 4.0, 20.0 ], [ 4.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 20.0 ], [ 5.0, 19.5 ], [ 4.5, 19.5 ], [ 4.5, 20.0 ], [ 5.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 20.0 ], [ 5.5, 19.5 ], [ 5.0, 19.5 ], [ 5.0, 20.0 ], [ 5.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 20.0 ], [ 6.0, 19.5 ], [ 5.5, 19.5 ], [ 5.5, 20.0 ], [ 6.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 20.0 ], [ 6.5, 19.5 ], [ 6.0, 19.5 ], [ 6.0, 20.0 ], [ 6.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 20.0 ], [ 7.0, 19.5 ], [ 6.5, 19.5 ], [ 6.5, 20.0 ], [ 7.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 20.0 ], [ 7.5, 19.5 ], [ 7.0, 19.5 ], [ 7.0, 20.0 ], [ 7.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 20.0 ], [ 8.0, 19.5 ], [ 7.5, 19.5 ], [ 7.5, 20.0 ], [ 8.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 20.0 ], [ 8.5, 19.5 ], [ 8.0, 19.5 ], [ 8.0, 20.0 ], [ 8.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 20.0 ], [ 9.0, 19.5 ], [ 8.5, 19.5 ], [ 8.5, 20.0 ], [ 9.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 20.0 ], [ 9.5, 19.5 ], [ 9.0, 19.5 ], [ 9.0, 20.0 ], [ 9.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 20.0 ], [ 10.0, 19.5 ], [ 9.5, 19.5 ], [ 9.5, 20.0 ], [ 10.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 20.0 ], [ 10.5, 19.5 ], [ 10.0, 19.5 ], [ 10.0, 20.0 ], [ 10.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 20.0 ], [ 11.0, 19.5 ], [ 10.5, 19.5 ], [ 10.5, 20.0 ], [ 11.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 20.0 ], [ 11.5, 19.5 ], [ 11.0, 19.5 ], [ 11.0, 20.0 ], [ 11.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 20.0 ], [ 12.0, 19.5 ], [ 11.5, 19.5 ], [ 11.5, 20.0 ], [ 12.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 20.0 ], [ 12.5, 19.5 ], [ 12.0, 19.5 ], [ 12.0, 20.0 ], [ 12.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 20.0 ], [ 13.0, 19.5 ], [ 12.5, 19.5 ], [ 12.5, 20.0 ], [ 13.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 20.0 ], [ 13.5, 19.5 ], [ 13.0, 19.5 ], [ 13.0, 20.0 ], [ 13.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 20.0 ], [ 14.0, 19.5 ], [ 13.5, 19.5 ], [ 13.5, 20.0 ], [ 14.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 20.0 ], [ 14.5, 19.5 ], [ 14.0, 19.5 ], [ 14.0, 20.0 ], [ 14.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 20.0 ], [ 15.0, 19.5 ], [ 14.5, 19.5 ], [ 14.5, 20.0 ], [ 15.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 20.0 ], [ 15.5, 19.5 ], [ 15.0, 19.5 ], [ 15.0, 20.0 ], [ 15.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 20.0 ], [ 16.0, 19.5 ], [ 15.5, 19.5 ], [ 15.5, 20.0 ], [ 16.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 20.0 ], [ 16.5, 19.5 ], [ 16.0, 19.5 ], [ 16.0, 20.0 ], [ 16.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 20.0 ], [ 17.0, 19.5 ], [ 16.5, 19.5 ], [ 16.5, 20.0 ], [ 17.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 20.0 ], [ 17.5, 19.5 ], [ 17.0, 19.5 ], [ 17.0, 20.0 ], [ 17.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 20.0 ], [ 18.0, 19.5 ], [ 17.5, 19.5 ], [ 17.5, 20.0 ], [ 18.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 20.0 ], [ 18.5, 19.5 ], [ 18.0, 19.5 ], [ 18.0, 20.0 ], [ 18.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 20.0 ], [ 19.0, 19.5 ], [ 18.5, 19.5 ], [ 18.5, 20.0 ], [ 19.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 20.0 ], [ 19.5, 19.5 ], [ 19.0, 19.5 ], [ 19.0, 20.0 ], [ 19.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 20.0 ], [ 20.0, 19.5 ], [ 19.5, 19.5 ], [ 19.5, 20.0 ], [ 20.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 20.0 ], [ 20.5, 19.5 ], [ 20.0, 19.5 ], [ 20.0, 20.0 ], [ 20.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 20.0 ], [ 21.0, 19.5 ], [ 20.5, 19.5 ], [ 20.5, 20.0 ], [ 21.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 20.0 ], [ 21.5, 19.5 ], [ 21.0, 19.5 ], [ 21.0, 20.0 ], [ 21.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 20.0 ], [ 22.0, 19.5 ], [ 21.5, 19.5 ], [ 21.5, 20.0 ], [ 22.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 20.0 ], [ 22.5, 19.5 ], [ 22.0, 19.5 ], [ 22.0, 20.0 ], [ 22.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 20.0 ], [ 23.0, 19.5 ], [ 22.5, 19.5 ], [ 22.5, 20.0 ], [ 23.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 20.0 ], [ 23.5, 19.5 ], [ 23.0, 19.5 ], [ 23.0, 20.0 ], [ 23.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 20.0 ], [ 24.0, 19.5 ], [ 23.5, 19.5 ], [ 23.5, 20.0 ], [ 24.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 20.0 ], [ 24.5, 19.5 ], [ 24.0, 19.5 ], [ 24.0, 20.0 ], [ 24.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 20.0 ], [ 25.0, 19.5 ], [ 24.5, 19.5 ], [ 24.5, 20.0 ], [ 25.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 20.0 ], [ 25.5, 19.5 ], [ 25.0, 19.5 ], [ 25.0, 20.0 ], [ 25.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 20.0 ], [ 26.0, 19.5 ], [ 25.5, 19.5 ], [ 25.5, 20.0 ], [ 26.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 20.0 ], [ 26.5, 19.5 ], [ 26.0, 19.5 ], [ 26.0, 20.0 ], [ 26.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 20.0 ], [ 27.0, 19.5 ], [ 26.5, 19.5 ], [ 26.5, 20.0 ], [ 27.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 20.0 ], [ 27.5, 19.5 ], [ 27.0, 19.5 ], [ 27.0, 20.0 ], [ 27.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 20.0 ], [ 28.0, 19.5 ], [ 27.5, 19.5 ], [ 27.5, 20.0 ], [ 28.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 20.0 ], [ 28.5, 19.5 ], [ 28.0, 19.5 ], [ 28.0, 20.0 ], [ 28.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 20.0 ], [ 29.0, 19.5 ], [ 28.5, 19.5 ], [ 28.5, 20.0 ], [ 29.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 20.0 ], [ 29.5, 19.5 ], [ 29.0, 19.5 ], [ 29.0, 20.0 ], [ 29.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 20.0 ], [ 30.0, 19.5 ], [ 29.5, 19.5 ], [ 29.5, 20.0 ], [ 30.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 20.0 ], [ 30.5, 19.5 ], [ 30.0, 19.5 ], [ 30.0, 20.0 ], [ 30.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 20.0 ], [ 31.0, 19.5 ], [ 30.5, 19.5 ], [ 30.5, 20.0 ], [ 31.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 20.0 ], [ 31.5, 19.5 ], [ 31.0, 19.5 ], [ 31.0, 20.0 ], [ 31.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 20.0 ], [ 32.0, 19.5 ], [ 31.5, 19.5 ], [ 31.5, 20.0 ], [ 32.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 20.0 ], [ 32.5, 19.5 ], [ 32.0, 19.5 ], [ 32.0, 20.0 ], [ 32.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 20.0 ], [ 33.0, 19.5 ], [ 32.5, 19.5 ], [ 32.5, 20.0 ], [ 33.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 20.0 ], [ 33.5, 19.5 ], [ 33.0, 19.5 ], [ 33.0, 20.0 ], [ 33.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 20.0 ], [ 34.0, 19.5 ], [ 33.5, 19.5 ], [ 33.5, 20.0 ], [ 34.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 20.0 ], [ 34.5, 19.5 ], [ 34.0, 19.5 ], [ 34.0, 20.0 ], [ 34.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 20.0 ], [ 35.0, 19.5 ], [ 34.5, 19.5 ], [ 34.5, 20.0 ], [ 35.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 20.0 ], [ 35.5, 19.5 ], [ 35.0, 19.5 ], [ 35.0, 20.0 ], [ 35.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 20.0 ], [ 36.0, 19.5 ], [ 35.5, 19.5 ], [ 35.5, 20.0 ], [ 36.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 20.0 ], [ 36.5, 19.5 ], [ 36.0, 19.5 ], [ 36.0, 20.0 ], [ 36.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 20.0 ], [ 37.0, 19.5 ], [ 36.5, 19.5 ], [ 36.5, 20.0 ], [ 37.0, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.5, 20.0 ], [ 37.5, 19.5 ], [ 37.0, 19.5 ], [ 37.0, 20.0 ], [ 37.5, 20.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 20.5 ], [ -15.5, 20.0 ], [ -16.0, 20.0 ], [ -16.0, 20.5 ], [ -15.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 20.5 ], [ -15.0, 20.0 ], [ -15.5, 20.0 ], [ -15.5, 20.5 ], [ -15.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 20.5 ], [ -14.5, 20.0 ], [ -15.0, 20.0 ], [ -15.0, 20.5 ], [ -14.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 20.5 ], [ -14.0, 20.0 ], [ -14.5, 20.0 ], [ -14.5, 20.5 ], [ -14.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 20.5 ], [ -13.5, 20.0 ], [ -14.0, 20.0 ], [ -14.0, 20.5 ], [ -13.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 20.5 ], [ -13.0, 20.0 ], [ -13.5, 20.0 ], [ -13.5, 20.5 ], [ -13.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 20.5 ], [ -12.5, 20.0 ], [ -13.0, 20.0 ], [ -13.0, 20.5 ], [ -12.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 20.5 ], [ -12.0, 20.0 ], [ -12.5, 20.0 ], [ -12.5, 20.5 ], [ -12.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 20.5 ], [ -11.5, 20.0 ], [ -12.0, 20.0 ], [ -12.0, 20.5 ], [ -11.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 20.5 ], [ -11.0, 20.0 ], [ -11.5, 20.0 ], [ -11.5, 20.5 ], [ -11.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 20.5 ], [ -10.5, 20.0 ], [ -11.0, 20.0 ], [ -11.0, 20.5 ], [ -10.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 20.5 ], [ -10.0, 20.0 ], [ -10.5, 20.0 ], [ -10.5, 20.5 ], [ -10.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 20.5 ], [ -9.5, 20.0 ], [ -10.0, 20.0 ], [ -10.0, 20.5 ], [ -9.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 20.5 ], [ -9.0, 20.0 ], [ -9.5, 20.0 ], [ -9.5, 20.5 ], [ -9.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 20.5 ], [ -8.5, 20.0 ], [ -9.0, 20.0 ], [ -9.0, 20.5 ], [ -8.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 20.5 ], [ -8.0, 20.0 ], [ -8.5, 20.0 ], [ -8.5, 20.5 ], [ -8.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 20.5 ], [ -7.5, 20.0 ], [ -8.0, 20.0 ], [ -8.0, 20.5 ], [ -7.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 20.5 ], [ -7.0, 20.0 ], [ -7.5, 20.0 ], [ -7.5, 20.5 ], [ -7.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 20.5 ], [ -6.5, 20.0 ], [ -7.0, 20.0 ], [ -7.0, 20.5 ], [ -6.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 20.5 ], [ -6.0, 20.0 ], [ -6.5, 20.0 ], [ -6.5, 20.5 ], [ -6.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 20.5 ], [ -5.5, 20.0 ], [ -6.0, 20.0 ], [ -6.0, 20.5 ], [ -5.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 20.5 ], [ -5.0, 20.0 ], [ -5.5, 20.0 ], [ -5.5, 20.5 ], [ -5.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 20.5 ], [ -4.5, 20.0 ], [ -5.0, 20.0 ], [ -5.0, 20.5 ], [ -4.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 20.5 ], [ -4.0, 20.0 ], [ -4.5, 20.0 ], [ -4.5, 20.5 ], [ -4.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 20.5 ], [ -3.5, 20.0 ], [ -4.0, 20.0 ], [ -4.0, 20.5 ], [ -3.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 20.5 ], [ -3.0, 20.0 ], [ -3.5, 20.0 ], [ -3.5, 20.5 ], [ -3.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 20.5 ], [ -2.5, 20.0 ], [ -3.0, 20.0 ], [ -3.0, 20.5 ], [ -2.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 20.5 ], [ -2.0, 20.0 ], [ -2.5, 20.0 ], [ -2.5, 20.5 ], [ -2.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 20.5 ], [ -1.5, 20.0 ], [ -2.0, 20.0 ], [ -2.0, 20.5 ], [ -1.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 20.5 ], [ -1.0, 20.0 ], [ -1.5, 20.0 ], [ -1.5, 20.5 ], [ -1.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 20.5 ], [ -0.5, 20.0 ], [ -1.0, 20.0 ], [ -1.0, 20.5 ], [ -0.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 20.5 ], [ 0.0, 20.0 ], [ -0.5, 20.0 ], [ -0.5, 20.5 ], [ 0.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 20.5 ], [ 0.5, 20.0 ], [ 0.0, 20.0 ], [ 0.0, 20.5 ], [ 0.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 20.5 ], [ 1.0, 20.0 ], [ 0.5, 20.0 ], [ 0.5, 20.5 ], [ 1.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 20.5 ], [ 1.5, 20.0 ], [ 1.0, 20.0 ], [ 1.0, 20.5 ], [ 1.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 20.5 ], [ 2.0, 20.0 ], [ 1.5, 20.0 ], [ 1.5, 20.5 ], [ 2.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 20.5 ], [ 2.5, 20.0 ], [ 2.0, 20.0 ], [ 2.0, 20.5 ], [ 2.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 20.5 ], [ 3.0, 20.0 ], [ 2.5, 20.0 ], [ 2.5, 20.5 ], [ 3.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 20.5 ], [ 3.5, 20.0 ], [ 3.0, 20.0 ], [ 3.0, 20.5 ], [ 3.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 20.5 ], [ 4.0, 20.0 ], [ 3.5, 20.0 ], [ 3.5, 20.5 ], [ 4.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 20.5 ], [ 4.5, 20.0 ], [ 4.0, 20.0 ], [ 4.0, 20.5 ], [ 4.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 20.5 ], [ 5.0, 20.0 ], [ 4.5, 20.0 ], [ 4.5, 20.5 ], [ 5.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 20.5 ], [ 5.5, 20.0 ], [ 5.0, 20.0 ], [ 5.0, 20.5 ], [ 5.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 20.5 ], [ 6.0, 20.0 ], [ 5.5, 20.0 ], [ 5.5, 20.5 ], [ 6.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 20.5 ], [ 6.5, 20.0 ], [ 6.0, 20.0 ], [ 6.0, 20.5 ], [ 6.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 20.5 ], [ 7.0, 20.0 ], [ 6.5, 20.0 ], [ 6.5, 20.5 ], [ 7.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 20.5 ], [ 7.5, 20.0 ], [ 7.0, 20.0 ], [ 7.0, 20.5 ], [ 7.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 20.5 ], [ 8.0, 20.0 ], [ 7.5, 20.0 ], [ 7.5, 20.5 ], [ 8.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 20.5 ], [ 8.5, 20.0 ], [ 8.0, 20.0 ], [ 8.0, 20.5 ], [ 8.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 20.5 ], [ 9.0, 20.0 ], [ 8.5, 20.0 ], [ 8.5, 20.5 ], [ 9.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 20.5 ], [ 9.5, 20.0 ], [ 9.0, 20.0 ], [ 9.0, 20.5 ], [ 9.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 20.5 ], [ 10.0, 20.0 ], [ 9.5, 20.0 ], [ 9.5, 20.5 ], [ 10.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 20.5 ], [ 10.5, 20.0 ], [ 10.0, 20.0 ], [ 10.0, 20.5 ], [ 10.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 20.5 ], [ 11.0, 20.0 ], [ 10.5, 20.0 ], [ 10.5, 20.5 ], [ 11.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 20.5 ], [ 11.5, 20.0 ], [ 11.0, 20.0 ], [ 11.0, 20.5 ], [ 11.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 20.5 ], [ 12.0, 20.0 ], [ 11.5, 20.0 ], [ 11.5, 20.5 ], [ 12.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 20.5 ], [ 12.5, 20.0 ], [ 12.0, 20.0 ], [ 12.0, 20.5 ], [ 12.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 20.5 ], [ 13.0, 20.0 ], [ 12.5, 20.0 ], [ 12.5, 20.5 ], [ 13.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 20.5 ], [ 13.5, 20.0 ], [ 13.0, 20.0 ], [ 13.0, 20.5 ], [ 13.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 20.5 ], [ 14.0, 20.0 ], [ 13.5, 20.0 ], [ 13.5, 20.5 ], [ 14.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 20.5 ], [ 14.5, 20.0 ], [ 14.0, 20.0 ], [ 14.0, 20.5 ], [ 14.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 20.5 ], [ 15.0, 20.0 ], [ 14.5, 20.0 ], [ 14.5, 20.5 ], [ 15.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 20.5 ], [ 15.5, 20.0 ], [ 15.0, 20.0 ], [ 15.0, 20.5 ], [ 15.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 20.5 ], [ 16.0, 20.0 ], [ 15.5, 20.0 ], [ 15.5, 20.5 ], [ 16.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 20.5 ], [ 16.5, 20.0 ], [ 16.0, 20.0 ], [ 16.0, 20.5 ], [ 16.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 20.5 ], [ 17.0, 20.0 ], [ 16.5, 20.0 ], [ 16.5, 20.5 ], [ 17.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 20.5 ], [ 17.5, 20.0 ], [ 17.0, 20.0 ], [ 17.0, 20.5 ], [ 17.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 20.5 ], [ 18.0, 20.0 ], [ 17.5, 20.0 ], [ 17.5, 20.5 ], [ 18.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 20.5 ], [ 18.5, 20.0 ], [ 18.0, 20.0 ], [ 18.0, 20.5 ], [ 18.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 20.5 ], [ 19.0, 20.0 ], [ 18.5, 20.0 ], [ 18.5, 20.5 ], [ 19.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 20.5 ], [ 19.5, 20.0 ], [ 19.0, 20.0 ], [ 19.0, 20.5 ], [ 19.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 20.5 ], [ 20.0, 20.0 ], [ 19.5, 20.0 ], [ 19.5, 20.5 ], [ 20.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 20.5 ], [ 20.5, 20.0 ], [ 20.0, 20.0 ], [ 20.0, 20.5 ], [ 20.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 20.5 ], [ 21.0, 20.0 ], [ 20.5, 20.0 ], [ 20.5, 20.5 ], [ 21.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 20.5 ], [ 21.5, 20.0 ], [ 21.0, 20.0 ], [ 21.0, 20.5 ], [ 21.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 20.5 ], [ 22.0, 20.0 ], [ 21.5, 20.0 ], [ 21.5, 20.5 ], [ 22.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 20.5 ], [ 22.5, 20.0 ], [ 22.0, 20.0 ], [ 22.0, 20.5 ], [ 22.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 20.5 ], [ 23.0, 20.0 ], [ 22.5, 20.0 ], [ 22.5, 20.5 ], [ 23.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 20.5 ], [ 23.5, 20.0 ], [ 23.0, 20.0 ], [ 23.0, 20.5 ], [ 23.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 20.5 ], [ 24.0, 20.0 ], [ 23.5, 20.0 ], [ 23.5, 20.5 ], [ 24.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 20.5 ], [ 24.5, 20.0 ], [ 24.0, 20.0 ], [ 24.0, 20.5 ], [ 24.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 20.5 ], [ 25.0, 20.0 ], [ 24.5, 20.0 ], [ 24.5, 20.5 ], [ 25.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 20.5 ], [ 25.5, 20.0 ], [ 25.0, 20.0 ], [ 25.0, 20.5 ], [ 25.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 20.5 ], [ 26.0, 20.0 ], [ 25.5, 20.0 ], [ 25.5, 20.5 ], [ 26.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 20.5 ], [ 26.5, 20.0 ], [ 26.0, 20.0 ], [ 26.0, 20.5 ], [ 26.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 20.5 ], [ 27.0, 20.0 ], [ 26.5, 20.0 ], [ 26.5, 20.5 ], [ 27.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 20.5 ], [ 27.5, 20.0 ], [ 27.0, 20.0 ], [ 27.0, 20.5 ], [ 27.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 20.5 ], [ 28.0, 20.0 ], [ 27.5, 20.0 ], [ 27.5, 20.5 ], [ 28.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 20.5 ], [ 28.5, 20.0 ], [ 28.0, 20.0 ], [ 28.0, 20.5 ], [ 28.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 20.5 ], [ 29.0, 20.0 ], [ 28.5, 20.0 ], [ 28.5, 20.5 ], [ 29.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 20.5 ], [ 29.5, 20.0 ], [ 29.0, 20.0 ], [ 29.0, 20.5 ], [ 29.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 20.5 ], [ 30.0, 20.0 ], [ 29.5, 20.0 ], [ 29.5, 20.5 ], [ 30.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 20.5 ], [ 30.5, 20.0 ], [ 30.0, 20.0 ], [ 30.0, 20.5 ], [ 30.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 20.5 ], [ 31.0, 20.0 ], [ 30.5, 20.0 ], [ 30.5, 20.5 ], [ 31.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 20.5 ], [ 31.5, 20.0 ], [ 31.0, 20.0 ], [ 31.0, 20.5 ], [ 31.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 20.5 ], [ 32.0, 20.0 ], [ 31.5, 20.0 ], [ 31.5, 20.5 ], [ 32.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 20.5 ], [ 32.5, 20.0 ], [ 32.0, 20.0 ], [ 32.0, 20.5 ], [ 32.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 20.5 ], [ 33.0, 20.0 ], [ 32.5, 20.0 ], [ 32.5, 20.5 ], [ 33.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 20.5 ], [ 33.5, 20.0 ], [ 33.0, 20.0 ], [ 33.0, 20.5 ], [ 33.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 20.5 ], [ 34.0, 20.0 ], [ 33.5, 20.0 ], [ 33.5, 20.5 ], [ 34.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 20.5 ], [ 34.5, 20.0 ], [ 34.0, 20.0 ], [ 34.0, 20.5 ], [ 34.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 20.5 ], [ 35.0, 20.0 ], [ 34.5, 20.0 ], [ 34.5, 20.5 ], [ 35.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 20.5 ], [ 35.5, 20.0 ], [ 35.0, 20.0 ], [ 35.0, 20.5 ], [ 35.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 20.5 ], [ 36.0, 20.0 ], [ 35.5, 20.0 ], [ 35.5, 20.5 ], [ 36.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 20.5 ], [ 36.5, 20.0 ], [ 36.0, 20.0 ], [ 36.0, 20.5 ], [ 36.5, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 20.5 ], [ 37.0, 20.0 ], [ 36.5, 20.0 ], [ 36.5, 20.5 ], [ 37.0, 20.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.0, 21.0 ], [ -16.0, 20.5 ], [ -16.5, 20.5 ], [ -16.5, 21.0 ], [ -16.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 21.0 ], [ -15.5, 20.5 ], [ -16.0, 20.5 ], [ -16.0, 21.0 ], [ -15.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 21.0 ], [ -15.0, 20.5 ], [ -15.5, 20.5 ], [ -15.5, 21.0 ], [ -15.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 21.0 ], [ -14.5, 20.5 ], [ -15.0, 20.5 ], [ -15.0, 21.0 ], [ -14.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 21.0 ], [ -14.0, 20.5 ], [ -14.5, 20.5 ], [ -14.5, 21.0 ], [ -14.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 21.0 ], [ -13.5, 20.5 ], [ -14.0, 20.5 ], [ -14.0, 21.0 ], [ -13.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 21.0 ], [ -13.0, 20.5 ], [ -13.5, 20.5 ], [ -13.5, 21.0 ], [ -13.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 21.0 ], [ -12.5, 20.5 ], [ -13.0, 20.5 ], [ -13.0, 21.0 ], [ -12.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 21.0 ], [ -12.0, 20.5 ], [ -12.5, 20.5 ], [ -12.5, 21.0 ], [ -12.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 21.0 ], [ -11.5, 20.5 ], [ -12.0, 20.5 ], [ -12.0, 21.0 ], [ -11.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 21.0 ], [ -11.0, 20.5 ], [ -11.5, 20.5 ], [ -11.5, 21.0 ], [ -11.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 21.0 ], [ -10.5, 20.5 ], [ -11.0, 20.5 ], [ -11.0, 21.0 ], [ -10.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 21.0 ], [ -10.0, 20.5 ], [ -10.5, 20.5 ], [ -10.5, 21.0 ], [ -10.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 21.0 ], [ -9.5, 20.5 ], [ -10.0, 20.5 ], [ -10.0, 21.0 ], [ -9.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 21.0 ], [ -9.0, 20.5 ], [ -9.5, 20.5 ], [ -9.5, 21.0 ], [ -9.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 21.0 ], [ -8.5, 20.5 ], [ -9.0, 20.5 ], [ -9.0, 21.0 ], [ -8.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 21.0 ], [ -8.0, 20.5 ], [ -8.5, 20.5 ], [ -8.5, 21.0 ], [ -8.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 21.0 ], [ -7.5, 20.5 ], [ -8.0, 20.5 ], [ -8.0, 21.0 ], [ -7.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 21.0 ], [ -7.0, 20.5 ], [ -7.5, 20.5 ], [ -7.5, 21.0 ], [ -7.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 21.0 ], [ -6.5, 20.5 ], [ -7.0, 20.5 ], [ -7.0, 21.0 ], [ -6.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 21.0 ], [ -6.0, 20.5 ], [ -6.5, 20.5 ], [ -6.5, 21.0 ], [ -6.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 21.0 ], [ -5.5, 20.5 ], [ -6.0, 20.5 ], [ -6.0, 21.0 ], [ -5.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 21.0 ], [ -5.0, 20.5 ], [ -5.5, 20.5 ], [ -5.5, 21.0 ], [ -5.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 21.0 ], [ -4.5, 20.5 ], [ -5.0, 20.5 ], [ -5.0, 21.0 ], [ -4.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 21.0 ], [ -4.0, 20.5 ], [ -4.5, 20.5 ], [ -4.5, 21.0 ], [ -4.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 21.0 ], [ -3.5, 20.5 ], [ -4.0, 20.5 ], [ -4.0, 21.0 ], [ -3.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 21.0 ], [ -3.0, 20.5 ], [ -3.5, 20.5 ], [ -3.5, 21.0 ], [ -3.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 21.0 ], [ -2.5, 20.5 ], [ -3.0, 20.5 ], [ -3.0, 21.0 ], [ -2.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 21.0 ], [ -2.0, 20.5 ], [ -2.5, 20.5 ], [ -2.5, 21.0 ], [ -2.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 21.0 ], [ -1.5, 20.5 ], [ -2.0, 20.5 ], [ -2.0, 21.0 ], [ -1.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 21.0 ], [ -1.0, 20.5 ], [ -1.5, 20.5 ], [ -1.5, 21.0 ], [ -1.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 21.0 ], [ -0.5, 20.5 ], [ -1.0, 20.5 ], [ -1.0, 21.0 ], [ -0.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 21.0 ], [ 0.0, 20.5 ], [ -0.5, 20.5 ], [ -0.5, 21.0 ], [ 0.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 21.0 ], [ 0.5, 20.5 ], [ 0.0, 20.5 ], [ 0.0, 21.0 ], [ 0.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 21.0 ], [ 1.0, 20.5 ], [ 0.5, 20.5 ], [ 0.5, 21.0 ], [ 1.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 21.0 ], [ 1.5, 20.5 ], [ 1.0, 20.5 ], [ 1.0, 21.0 ], [ 1.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 21.0 ], [ 2.0, 20.5 ], [ 1.5, 20.5 ], [ 1.5, 21.0 ], [ 2.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 21.0 ], [ 2.5, 20.5 ], [ 2.0, 20.5 ], [ 2.0, 21.0 ], [ 2.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 21.0 ], [ 3.0, 20.5 ], [ 2.5, 20.5 ], [ 2.5, 21.0 ], [ 3.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 21.0 ], [ 3.5, 20.5 ], [ 3.0, 20.5 ], [ 3.0, 21.0 ], [ 3.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 21.0 ], [ 4.0, 20.5 ], [ 3.5, 20.5 ], [ 3.5, 21.0 ], [ 4.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 21.0 ], [ 4.5, 20.5 ], [ 4.0, 20.5 ], [ 4.0, 21.0 ], [ 4.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 21.0 ], [ 5.0, 20.5 ], [ 4.5, 20.5 ], [ 4.5, 21.0 ], [ 5.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 21.0 ], [ 5.5, 20.5 ], [ 5.0, 20.5 ], [ 5.0, 21.0 ], [ 5.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 21.0 ], [ 6.0, 20.5 ], [ 5.5, 20.5 ], [ 5.5, 21.0 ], [ 6.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 21.0 ], [ 6.5, 20.5 ], [ 6.0, 20.5 ], [ 6.0, 21.0 ], [ 6.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 21.0 ], [ 7.0, 20.5 ], [ 6.5, 20.5 ], [ 6.5, 21.0 ], [ 7.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 21.0 ], [ 7.5, 20.5 ], [ 7.0, 20.5 ], [ 7.0, 21.0 ], [ 7.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 21.0 ], [ 8.0, 20.5 ], [ 7.5, 20.5 ], [ 7.5, 21.0 ], [ 8.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 21.0 ], [ 8.5, 20.5 ], [ 8.0, 20.5 ], [ 8.0, 21.0 ], [ 8.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 21.0 ], [ 9.0, 20.5 ], [ 8.5, 20.5 ], [ 8.5, 21.0 ], [ 9.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 21.0 ], [ 9.5, 20.5 ], [ 9.0, 20.5 ], [ 9.0, 21.0 ], [ 9.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 21.0 ], [ 10.0, 20.5 ], [ 9.5, 20.5 ], [ 9.5, 21.0 ], [ 10.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 21.0 ], [ 10.5, 20.5 ], [ 10.0, 20.5 ], [ 10.0, 21.0 ], [ 10.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 21.0 ], [ 11.0, 20.5 ], [ 10.5, 20.5 ], [ 10.5, 21.0 ], [ 11.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 21.0 ], [ 11.5, 20.5 ], [ 11.0, 20.5 ], [ 11.0, 21.0 ], [ 11.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 21.0 ], [ 12.0, 20.5 ], [ 11.5, 20.5 ], [ 11.5, 21.0 ], [ 12.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 21.0 ], [ 12.5, 20.5 ], [ 12.0, 20.5 ], [ 12.0, 21.0 ], [ 12.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 21.0 ], [ 13.0, 20.5 ], [ 12.5, 20.5 ], [ 12.5, 21.0 ], [ 13.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 21.0 ], [ 13.5, 20.5 ], [ 13.0, 20.5 ], [ 13.0, 21.0 ], [ 13.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 21.0 ], [ 14.0, 20.5 ], [ 13.5, 20.5 ], [ 13.5, 21.0 ], [ 14.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 21.0 ], [ 14.5, 20.5 ], [ 14.0, 20.5 ], [ 14.0, 21.0 ], [ 14.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 21.0 ], [ 15.0, 20.5 ], [ 14.5, 20.5 ], [ 14.5, 21.0 ], [ 15.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 21.0 ], [ 15.5, 20.5 ], [ 15.0, 20.5 ], [ 15.0, 21.0 ], [ 15.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 21.0 ], [ 16.0, 20.5 ], [ 15.5, 20.5 ], [ 15.5, 21.0 ], [ 16.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 21.0 ], [ 16.5, 20.5 ], [ 16.0, 20.5 ], [ 16.0, 21.0 ], [ 16.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 21.0 ], [ 17.0, 20.5 ], [ 16.5, 20.5 ], [ 16.5, 21.0 ], [ 17.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 21.0 ], [ 17.5, 20.5 ], [ 17.0, 20.5 ], [ 17.0, 21.0 ], [ 17.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 21.0 ], [ 18.0, 20.5 ], [ 17.5, 20.5 ], [ 17.5, 21.0 ], [ 18.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 21.0 ], [ 18.5, 20.5 ], [ 18.0, 20.5 ], [ 18.0, 21.0 ], [ 18.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 21.0 ], [ 19.0, 20.5 ], [ 18.5, 20.5 ], [ 18.5, 21.0 ], [ 19.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 21.0 ], [ 19.5, 20.5 ], [ 19.0, 20.5 ], [ 19.0, 21.0 ], [ 19.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 21.0 ], [ 20.0, 20.5 ], [ 19.5, 20.5 ], [ 19.5, 21.0 ], [ 20.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 21.0 ], [ 20.5, 20.5 ], [ 20.0, 20.5 ], [ 20.0, 21.0 ], [ 20.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 21.0 ], [ 21.0, 20.5 ], [ 20.5, 20.5 ], [ 20.5, 21.0 ], [ 21.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 21.0 ], [ 21.5, 20.5 ], [ 21.0, 20.5 ], [ 21.0, 21.0 ], [ 21.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 21.0 ], [ 22.0, 20.5 ], [ 21.5, 20.5 ], [ 21.5, 21.0 ], [ 22.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 21.0 ], [ 22.5, 20.5 ], [ 22.0, 20.5 ], [ 22.0, 21.0 ], [ 22.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 21.0 ], [ 23.0, 20.5 ], [ 22.5, 20.5 ], [ 22.5, 21.0 ], [ 23.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 21.0 ], [ 23.5, 20.5 ], [ 23.0, 20.5 ], [ 23.0, 21.0 ], [ 23.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 21.0 ], [ 24.0, 20.5 ], [ 23.5, 20.5 ], [ 23.5, 21.0 ], [ 24.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 21.0 ], [ 24.5, 20.5 ], [ 24.0, 20.5 ], [ 24.0, 21.0 ], [ 24.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 21.0 ], [ 25.0, 20.5 ], [ 24.5, 20.5 ], [ 24.5, 21.0 ], [ 25.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 21.0 ], [ 25.5, 20.5 ], [ 25.0, 20.5 ], [ 25.0, 21.0 ], [ 25.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 21.0 ], [ 26.0, 20.5 ], [ 25.5, 20.5 ], [ 25.5, 21.0 ], [ 26.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 21.0 ], [ 26.5, 20.5 ], [ 26.0, 20.5 ], [ 26.0, 21.0 ], [ 26.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 21.0 ], [ 27.0, 20.5 ], [ 26.5, 20.5 ], [ 26.5, 21.0 ], [ 27.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 21.0 ], [ 27.5, 20.5 ], [ 27.0, 20.5 ], [ 27.0, 21.0 ], [ 27.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 21.0 ], [ 28.0, 20.5 ], [ 27.5, 20.5 ], [ 27.5, 21.0 ], [ 28.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 21.0 ], [ 28.5, 20.5 ], [ 28.0, 20.5 ], [ 28.0, 21.0 ], [ 28.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 21.0 ], [ 29.0, 20.5 ], [ 28.5, 20.5 ], [ 28.5, 21.0 ], [ 29.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 21.0 ], [ 29.5, 20.5 ], [ 29.0, 20.5 ], [ 29.0, 21.0 ], [ 29.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 21.0 ], [ 30.0, 20.5 ], [ 29.5, 20.5 ], [ 29.5, 21.0 ], [ 30.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 21.0 ], [ 30.5, 20.5 ], [ 30.0, 20.5 ], [ 30.0, 21.0 ], [ 30.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 21.0 ], [ 31.0, 20.5 ], [ 30.5, 20.5 ], [ 30.5, 21.0 ], [ 31.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 21.0 ], [ 31.5, 20.5 ], [ 31.0, 20.5 ], [ 31.0, 21.0 ], [ 31.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 21.0 ], [ 32.0, 20.5 ], [ 31.5, 20.5 ], [ 31.5, 21.0 ], [ 32.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 21.0 ], [ 32.5, 20.5 ], [ 32.0, 20.5 ], [ 32.0, 21.0 ], [ 32.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 21.0 ], [ 33.0, 20.5 ], [ 32.5, 20.5 ], [ 32.5, 21.0 ], [ 33.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 21.0 ], [ 33.5, 20.5 ], [ 33.0, 20.5 ], [ 33.0, 21.0 ], [ 33.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 21.0 ], [ 34.0, 20.5 ], [ 33.5, 20.5 ], [ 33.5, 21.0 ], [ 34.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 21.0 ], [ 34.5, 20.5 ], [ 34.0, 20.5 ], [ 34.0, 21.0 ], [ 34.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 21.0 ], [ 35.0, 20.5 ], [ 34.5, 20.5 ], [ 34.5, 21.0 ], [ 35.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 21.0 ], [ 35.5, 20.5 ], [ 35.0, 20.5 ], [ 35.0, 21.0 ], [ 35.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 21.0 ], [ 36.0, 20.5 ], [ 35.5, 20.5 ], [ 35.5, 21.0 ], [ 36.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 21.0 ], [ 36.5, 20.5 ], [ 36.0, 20.5 ], [ 36.0, 21.0 ], [ 36.5, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 21.0 ], [ 37.0, 20.5 ], [ 36.5, 20.5 ], [ 36.5, 21.0 ], [ 37.0, 21.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.5, 21.5 ], [ -16.5, 21.0 ], [ -17.0, 21.0 ], [ -17.0, 21.5 ], [ -16.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.0, 21.5 ], [ -16.0, 21.0 ], [ -16.5, 21.0 ], [ -16.5, 21.5 ], [ -16.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 21.5 ], [ -15.5, 21.0 ], [ -16.0, 21.0 ], [ -16.0, 21.5 ], [ -15.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 21.5 ], [ -15.0, 21.0 ], [ -15.5, 21.0 ], [ -15.5, 21.5 ], [ -15.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 21.5 ], [ -14.5, 21.0 ], [ -15.0, 21.0 ], [ -15.0, 21.5 ], [ -14.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 21.5 ], [ -14.0, 21.0 ], [ -14.5, 21.0 ], [ -14.5, 21.5 ], [ -14.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 21.5 ], [ -13.5, 21.0 ], [ -14.0, 21.0 ], [ -14.0, 21.5 ], [ -13.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 21.5 ], [ -13.0, 21.0 ], [ -13.5, 21.0 ], [ -13.5, 21.5 ], [ -13.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 21.5 ], [ -12.5, 21.0 ], [ -13.0, 21.0 ], [ -13.0, 21.5 ], [ -12.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 21.5 ], [ -12.0, 21.0 ], [ -12.5, 21.0 ], [ -12.5, 21.5 ], [ -12.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 21.5 ], [ -11.5, 21.0 ], [ -12.0, 21.0 ], [ -12.0, 21.5 ], [ -11.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 21.5 ], [ -11.0, 21.0 ], [ -11.5, 21.0 ], [ -11.5, 21.5 ], [ -11.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 21.5 ], [ -10.5, 21.0 ], [ -11.0, 21.0 ], [ -11.0, 21.5 ], [ -10.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 21.5 ], [ -10.0, 21.0 ], [ -10.5, 21.0 ], [ -10.5, 21.5 ], [ -10.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 21.5 ], [ -9.5, 21.0 ], [ -10.0, 21.0 ], [ -10.0, 21.5 ], [ -9.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 21.5 ], [ -9.0, 21.0 ], [ -9.5, 21.0 ], [ -9.5, 21.5 ], [ -9.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 21.5 ], [ -8.5, 21.0 ], [ -9.0, 21.0 ], [ -9.0, 21.5 ], [ -8.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 21.5 ], [ -8.0, 21.0 ], [ -8.5, 21.0 ], [ -8.5, 21.5 ], [ -8.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 21.5 ], [ -7.5, 21.0 ], [ -8.0, 21.0 ], [ -8.0, 21.5 ], [ -7.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 21.5 ], [ -7.0, 21.0 ], [ -7.5, 21.0 ], [ -7.5, 21.5 ], [ -7.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 21.5 ], [ -6.5, 21.0 ], [ -7.0, 21.0 ], [ -7.0, 21.5 ], [ -6.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 21.5 ], [ -6.0, 21.0 ], [ -6.5, 21.0 ], [ -6.5, 21.5 ], [ -6.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 21.5 ], [ -5.5, 21.0 ], [ -6.0, 21.0 ], [ -6.0, 21.5 ], [ -5.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 21.5 ], [ -5.0, 21.0 ], [ -5.5, 21.0 ], [ -5.5, 21.5 ], [ -5.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 21.5 ], [ -4.5, 21.0 ], [ -5.0, 21.0 ], [ -5.0, 21.5 ], [ -4.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 21.5 ], [ -4.0, 21.0 ], [ -4.5, 21.0 ], [ -4.5, 21.5 ], [ -4.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 21.5 ], [ -3.5, 21.0 ], [ -4.0, 21.0 ], [ -4.0, 21.5 ], [ -3.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 21.5 ], [ -3.0, 21.0 ], [ -3.5, 21.0 ], [ -3.5, 21.5 ], [ -3.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 21.5 ], [ -2.5, 21.0 ], [ -3.0, 21.0 ], [ -3.0, 21.5 ], [ -2.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 21.5 ], [ -2.0, 21.0 ], [ -2.5, 21.0 ], [ -2.5, 21.5 ], [ -2.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 21.5 ], [ -1.5, 21.0 ], [ -2.0, 21.0 ], [ -2.0, 21.5 ], [ -1.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 21.5 ], [ -1.0, 21.0 ], [ -1.5, 21.0 ], [ -1.5, 21.5 ], [ -1.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 21.5 ], [ -0.5, 21.0 ], [ -1.0, 21.0 ], [ -1.0, 21.5 ], [ -0.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 21.5 ], [ 0.0, 21.0 ], [ -0.5, 21.0 ], [ -0.5, 21.5 ], [ 0.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 21.5 ], [ 0.5, 21.0 ], [ 0.0, 21.0 ], [ 0.0, 21.5 ], [ 0.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 21.5 ], [ 1.0, 21.0 ], [ 0.5, 21.0 ], [ 0.5, 21.5 ], [ 1.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 21.5 ], [ 1.5, 21.0 ], [ 1.0, 21.0 ], [ 1.0, 21.5 ], [ 1.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 21.5 ], [ 2.0, 21.0 ], [ 1.5, 21.0 ], [ 1.5, 21.5 ], [ 2.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 21.5 ], [ 2.5, 21.0 ], [ 2.0, 21.0 ], [ 2.0, 21.5 ], [ 2.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 21.5 ], [ 3.0, 21.0 ], [ 2.5, 21.0 ], [ 2.5, 21.5 ], [ 3.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 21.5 ], [ 3.5, 21.0 ], [ 3.0, 21.0 ], [ 3.0, 21.5 ], [ 3.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 21.5 ], [ 4.0, 21.0 ], [ 3.5, 21.0 ], [ 3.5, 21.5 ], [ 4.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 21.5 ], [ 4.5, 21.0 ], [ 4.0, 21.0 ], [ 4.0, 21.5 ], [ 4.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 21.5 ], [ 5.0, 21.0 ], [ 4.5, 21.0 ], [ 4.5, 21.5 ], [ 5.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 21.5 ], [ 5.5, 21.0 ], [ 5.0, 21.0 ], [ 5.0, 21.5 ], [ 5.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 21.5 ], [ 6.0, 21.0 ], [ 5.5, 21.0 ], [ 5.5, 21.5 ], [ 6.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 21.5 ], [ 6.5, 21.0 ], [ 6.0, 21.0 ], [ 6.0, 21.5 ], [ 6.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 21.5 ], [ 7.0, 21.0 ], [ 6.5, 21.0 ], [ 6.5, 21.5 ], [ 7.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 21.5 ], [ 7.5, 21.0 ], [ 7.0, 21.0 ], [ 7.0, 21.5 ], [ 7.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 21.5 ], [ 8.0, 21.0 ], [ 7.5, 21.0 ], [ 7.5, 21.5 ], [ 8.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 21.5 ], [ 8.5, 21.0 ], [ 8.0, 21.0 ], [ 8.0, 21.5 ], [ 8.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 21.5 ], [ 9.0, 21.0 ], [ 8.5, 21.0 ], [ 8.5, 21.5 ], [ 9.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 21.5 ], [ 9.5, 21.0 ], [ 9.0, 21.0 ], [ 9.0, 21.5 ], [ 9.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 21.5 ], [ 10.0, 21.0 ], [ 9.5, 21.0 ], [ 9.5, 21.5 ], [ 10.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 21.5 ], [ 10.5, 21.0 ], [ 10.0, 21.0 ], [ 10.0, 21.5 ], [ 10.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 21.5 ], [ 11.0, 21.0 ], [ 10.5, 21.0 ], [ 10.5, 21.5 ], [ 11.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 21.5 ], [ 11.5, 21.0 ], [ 11.0, 21.0 ], [ 11.0, 21.5 ], [ 11.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 21.5 ], [ 12.0, 21.0 ], [ 11.5, 21.0 ], [ 11.5, 21.5 ], [ 12.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 21.5 ], [ 12.5, 21.0 ], [ 12.0, 21.0 ], [ 12.0, 21.5 ], [ 12.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 21.5 ], [ 13.0, 21.0 ], [ 12.5, 21.0 ], [ 12.5, 21.5 ], [ 13.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 21.5 ], [ 13.5, 21.0 ], [ 13.0, 21.0 ], [ 13.0, 21.5 ], [ 13.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 21.5 ], [ 14.0, 21.0 ], [ 13.5, 21.0 ], [ 13.5, 21.5 ], [ 14.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 21.5 ], [ 14.5, 21.0 ], [ 14.0, 21.0 ], [ 14.0, 21.5 ], [ 14.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 21.5 ], [ 15.0, 21.0 ], [ 14.5, 21.0 ], [ 14.5, 21.5 ], [ 15.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 21.5 ], [ 15.5, 21.0 ], [ 15.0, 21.0 ], [ 15.0, 21.5 ], [ 15.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 21.5 ], [ 16.0, 21.0 ], [ 15.5, 21.0 ], [ 15.5, 21.5 ], [ 16.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 21.5 ], [ 16.5, 21.0 ], [ 16.0, 21.0 ], [ 16.0, 21.5 ], [ 16.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 21.5 ], [ 17.0, 21.0 ], [ 16.5, 21.0 ], [ 16.5, 21.5 ], [ 17.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 21.5 ], [ 17.5, 21.0 ], [ 17.0, 21.0 ], [ 17.0, 21.5 ], [ 17.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 21.5 ], [ 18.0, 21.0 ], [ 17.5, 21.0 ], [ 17.5, 21.5 ], [ 18.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 21.5 ], [ 18.5, 21.0 ], [ 18.0, 21.0 ], [ 18.0, 21.5 ], [ 18.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 21.5 ], [ 19.0, 21.0 ], [ 18.5, 21.0 ], [ 18.5, 21.5 ], [ 19.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 21.5 ], [ 19.5, 21.0 ], [ 19.0, 21.0 ], [ 19.0, 21.5 ], [ 19.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 21.5 ], [ 20.0, 21.0 ], [ 19.5, 21.0 ], [ 19.5, 21.5 ], [ 20.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 21.5 ], [ 20.5, 21.0 ], [ 20.0, 21.0 ], [ 20.0, 21.5 ], [ 20.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 21.5 ], [ 21.0, 21.0 ], [ 20.5, 21.0 ], [ 20.5, 21.5 ], [ 21.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 21.5 ], [ 21.5, 21.0 ], [ 21.0, 21.0 ], [ 21.0, 21.5 ], [ 21.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 21.5 ], [ 22.0, 21.0 ], [ 21.5, 21.0 ], [ 21.5, 21.5 ], [ 22.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 21.5 ], [ 22.5, 21.0 ], [ 22.0, 21.0 ], [ 22.0, 21.5 ], [ 22.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 21.5 ], [ 23.0, 21.0 ], [ 22.5, 21.0 ], [ 22.5, 21.5 ], [ 23.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 21.5 ], [ 23.5, 21.0 ], [ 23.0, 21.0 ], [ 23.0, 21.5 ], [ 23.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 21.5 ], [ 24.0, 21.0 ], [ 23.5, 21.0 ], [ 23.5, 21.5 ], [ 24.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 21.5 ], [ 24.5, 21.0 ], [ 24.0, 21.0 ], [ 24.0, 21.5 ], [ 24.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 21.5 ], [ 25.0, 21.0 ], [ 24.5, 21.0 ], [ 24.5, 21.5 ], [ 25.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 21.5 ], [ 25.5, 21.0 ], [ 25.0, 21.0 ], [ 25.0, 21.5 ], [ 25.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 21.5 ], [ 26.0, 21.0 ], [ 25.5, 21.0 ], [ 25.5, 21.5 ], [ 26.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 21.5 ], [ 26.5, 21.0 ], [ 26.0, 21.0 ], [ 26.0, 21.5 ], [ 26.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 21.5 ], [ 27.0, 21.0 ], [ 26.5, 21.0 ], [ 26.5, 21.5 ], [ 27.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 21.5 ], [ 27.5, 21.0 ], [ 27.0, 21.0 ], [ 27.0, 21.5 ], [ 27.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 21.5 ], [ 28.0, 21.0 ], [ 27.5, 21.0 ], [ 27.5, 21.5 ], [ 28.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 21.5 ], [ 28.5, 21.0 ], [ 28.0, 21.0 ], [ 28.0, 21.5 ], [ 28.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 21.5 ], [ 29.0, 21.0 ], [ 28.5, 21.0 ], [ 28.5, 21.5 ], [ 29.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 21.5 ], [ 29.5, 21.0 ], [ 29.0, 21.0 ], [ 29.0, 21.5 ], [ 29.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 21.5 ], [ 30.0, 21.0 ], [ 29.5, 21.0 ], [ 29.5, 21.5 ], [ 30.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 21.5 ], [ 30.5, 21.0 ], [ 30.0, 21.0 ], [ 30.0, 21.5 ], [ 30.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 21.5 ], [ 31.0, 21.0 ], [ 30.5, 21.0 ], [ 30.5, 21.5 ], [ 31.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 21.5 ], [ 31.5, 21.0 ], [ 31.0, 21.0 ], [ 31.0, 21.5 ], [ 31.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 21.5 ], [ 32.0, 21.0 ], [ 31.5, 21.0 ], [ 31.5, 21.5 ], [ 32.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 21.5 ], [ 32.5, 21.0 ], [ 32.0, 21.0 ], [ 32.0, 21.5 ], [ 32.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 21.5 ], [ 33.0, 21.0 ], [ 32.5, 21.0 ], [ 32.5, 21.5 ], [ 33.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 21.5 ], [ 33.5, 21.0 ], [ 33.0, 21.0 ], [ 33.0, 21.5 ], [ 33.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 21.5 ], [ 34.0, 21.0 ], [ 33.5, 21.0 ], [ 33.5, 21.5 ], [ 34.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 21.5 ], [ 34.5, 21.0 ], [ 34.0, 21.0 ], [ 34.0, 21.5 ], [ 34.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 21.5 ], [ 35.0, 21.0 ], [ 34.5, 21.0 ], [ 34.5, 21.5 ], [ 35.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 21.5 ], [ 35.5, 21.0 ], [ 35.0, 21.0 ], [ 35.0, 21.5 ], [ 35.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 21.5 ], [ 36.0, 21.0 ], [ 35.5, 21.0 ], [ 35.5, 21.5 ], [ 36.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 21.5 ], [ 36.5, 21.0 ], [ 36.0, 21.0 ], [ 36.0, 21.5 ], [ 36.5, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 21.5 ], [ 37.0, 21.0 ], [ 36.5, 21.0 ], [ 36.5, 21.5 ], [ 37.0, 21.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.5, 22.0 ], [ -16.5, 21.5 ], [ -17.0, 21.5 ], [ -17.0, 22.0 ], [ -16.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.0, 22.0 ], [ -16.0, 21.5 ], [ -16.5, 21.5 ], [ -16.5, 22.0 ], [ -16.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 22.0 ], [ -15.5, 21.5 ], [ -16.0, 21.5 ], [ -16.0, 22.0 ], [ -15.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 22.0 ], [ -15.0, 21.5 ], [ -15.5, 21.5 ], [ -15.5, 22.0 ], [ -15.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 22.0 ], [ -14.5, 21.5 ], [ -15.0, 21.5 ], [ -15.0, 22.0 ], [ -14.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 22.0 ], [ -14.0, 21.5 ], [ -14.5, 21.5 ], [ -14.5, 22.0 ], [ -14.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 22.0 ], [ -13.5, 21.5 ], [ -14.0, 21.5 ], [ -14.0, 22.0 ], [ -13.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 22.0 ], [ -13.0, 21.5 ], [ -13.5, 21.5 ], [ -13.5, 22.0 ], [ -13.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 22.0 ], [ -12.5, 21.5 ], [ -13.0, 21.5 ], [ -13.0, 22.0 ], [ -12.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 22.0 ], [ -12.0, 21.5 ], [ -12.5, 21.5 ], [ -12.5, 22.0 ], [ -12.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 22.0 ], [ -11.5, 21.5 ], [ -12.0, 21.5 ], [ -12.0, 22.0 ], [ -11.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 22.0 ], [ -11.0, 21.5 ], [ -11.5, 21.5 ], [ -11.5, 22.0 ], [ -11.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 22.0 ], [ -10.5, 21.5 ], [ -11.0, 21.5 ], [ -11.0, 22.0 ], [ -10.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 22.0 ], [ -10.0, 21.5 ], [ -10.5, 21.5 ], [ -10.5, 22.0 ], [ -10.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 22.0 ], [ -9.5, 21.5 ], [ -10.0, 21.5 ], [ -10.0, 22.0 ], [ -9.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 22.0 ], [ -9.0, 21.5 ], [ -9.5, 21.5 ], [ -9.5, 22.0 ], [ -9.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 22.0 ], [ -8.5, 21.5 ], [ -9.0, 21.5 ], [ -9.0, 22.0 ], [ -8.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 22.0 ], [ -8.0, 21.5 ], [ -8.5, 21.5 ], [ -8.5, 22.0 ], [ -8.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 22.0 ], [ -7.5, 21.5 ], [ -8.0, 21.5 ], [ -8.0, 22.0 ], [ -7.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 22.0 ], [ -7.0, 21.5 ], [ -7.5, 21.5 ], [ -7.5, 22.0 ], [ -7.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 22.0 ], [ -6.5, 21.5 ], [ -7.0, 21.5 ], [ -7.0, 22.0 ], [ -6.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 22.0 ], [ -6.0, 21.5 ], [ -6.5, 21.5 ], [ -6.5, 22.0 ], [ -6.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 22.0 ], [ -5.5, 21.5 ], [ -6.0, 21.5 ], [ -6.0, 22.0 ], [ -5.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 22.0 ], [ -5.0, 21.5 ], [ -5.5, 21.5 ], [ -5.5, 22.0 ], [ -5.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 22.0 ], [ -4.5, 21.5 ], [ -5.0, 21.5 ], [ -5.0, 22.0 ], [ -4.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 22.0 ], [ -4.0, 21.5 ], [ -4.5, 21.5 ], [ -4.5, 22.0 ], [ -4.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 22.0 ], [ -3.5, 21.5 ], [ -4.0, 21.5 ], [ -4.0, 22.0 ], [ -3.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 22.0 ], [ -3.0, 21.5 ], [ -3.5, 21.5 ], [ -3.5, 22.0 ], [ -3.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 22.0 ], [ -2.5, 21.5 ], [ -3.0, 21.5 ], [ -3.0, 22.0 ], [ -2.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 22.0 ], [ -2.0, 21.5 ], [ -2.5, 21.5 ], [ -2.5, 22.0 ], [ -2.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 22.0 ], [ -1.5, 21.5 ], [ -2.0, 21.5 ], [ -2.0, 22.0 ], [ -1.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 22.0 ], [ -1.0, 21.5 ], [ -1.5, 21.5 ], [ -1.5, 22.0 ], [ -1.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 22.0 ], [ -0.5, 21.5 ], [ -1.0, 21.5 ], [ -1.0, 22.0 ], [ -0.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 22.0 ], [ 0.0, 21.5 ], [ -0.5, 21.5 ], [ -0.5, 22.0 ], [ 0.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 22.0 ], [ 0.5, 21.5 ], [ 0.0, 21.5 ], [ 0.0, 22.0 ], [ 0.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 22.0 ], [ 1.0, 21.5 ], [ 0.5, 21.5 ], [ 0.5, 22.0 ], [ 1.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 22.0 ], [ 1.5, 21.5 ], [ 1.0, 21.5 ], [ 1.0, 22.0 ], [ 1.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 22.0 ], [ 2.0, 21.5 ], [ 1.5, 21.5 ], [ 1.5, 22.0 ], [ 2.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 22.0 ], [ 2.5, 21.5 ], [ 2.0, 21.5 ], [ 2.0, 22.0 ], [ 2.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 22.0 ], [ 3.0, 21.5 ], [ 2.5, 21.5 ], [ 2.5, 22.0 ], [ 3.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 22.0 ], [ 3.5, 21.5 ], [ 3.0, 21.5 ], [ 3.0, 22.0 ], [ 3.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 22.0 ], [ 4.0, 21.5 ], [ 3.5, 21.5 ], [ 3.5, 22.0 ], [ 4.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 22.0 ], [ 4.5, 21.5 ], [ 4.0, 21.5 ], [ 4.0, 22.0 ], [ 4.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 22.0 ], [ 5.0, 21.5 ], [ 4.5, 21.5 ], [ 4.5, 22.0 ], [ 5.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 22.0 ], [ 5.5, 21.5 ], [ 5.0, 21.5 ], [ 5.0, 22.0 ], [ 5.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 22.0 ], [ 6.0, 21.5 ], [ 5.5, 21.5 ], [ 5.5, 22.0 ], [ 6.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 22.0 ], [ 6.5, 21.5 ], [ 6.0, 21.5 ], [ 6.0, 22.0 ], [ 6.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 22.0 ], [ 7.0, 21.5 ], [ 6.5, 21.5 ], [ 6.5, 22.0 ], [ 7.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 22.0 ], [ 7.5, 21.5 ], [ 7.0, 21.5 ], [ 7.0, 22.0 ], [ 7.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 22.0 ], [ 8.0, 21.5 ], [ 7.5, 21.5 ], [ 7.5, 22.0 ], [ 8.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 22.0 ], [ 8.5, 21.5 ], [ 8.0, 21.5 ], [ 8.0, 22.0 ], [ 8.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 22.0 ], [ 9.0, 21.5 ], [ 8.5, 21.5 ], [ 8.5, 22.0 ], [ 9.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 22.0 ], [ 9.5, 21.5 ], [ 9.0, 21.5 ], [ 9.0, 22.0 ], [ 9.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 22.0 ], [ 10.0, 21.5 ], [ 9.5, 21.5 ], [ 9.5, 22.0 ], [ 10.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 22.0 ], [ 10.5, 21.5 ], [ 10.0, 21.5 ], [ 10.0, 22.0 ], [ 10.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 22.0 ], [ 11.0, 21.5 ], [ 10.5, 21.5 ], [ 10.5, 22.0 ], [ 11.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 22.0 ], [ 11.5, 21.5 ], [ 11.0, 21.5 ], [ 11.0, 22.0 ], [ 11.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 22.0 ], [ 12.0, 21.5 ], [ 11.5, 21.5 ], [ 11.5, 22.0 ], [ 12.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 22.0 ], [ 12.5, 21.5 ], [ 12.0, 21.5 ], [ 12.0, 22.0 ], [ 12.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 22.0 ], [ 13.0, 21.5 ], [ 12.5, 21.5 ], [ 12.5, 22.0 ], [ 13.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 22.0 ], [ 13.5, 21.5 ], [ 13.0, 21.5 ], [ 13.0, 22.0 ], [ 13.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 22.0 ], [ 14.0, 21.5 ], [ 13.5, 21.5 ], [ 13.5, 22.0 ], [ 14.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 22.0 ], [ 14.5, 21.5 ], [ 14.0, 21.5 ], [ 14.0, 22.0 ], [ 14.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 22.0 ], [ 15.0, 21.5 ], [ 14.5, 21.5 ], [ 14.5, 22.0 ], [ 15.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 22.0 ], [ 15.5, 21.5 ], [ 15.0, 21.5 ], [ 15.0, 22.0 ], [ 15.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 22.0 ], [ 16.0, 21.5 ], [ 15.5, 21.5 ], [ 15.5, 22.0 ], [ 16.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 22.0 ], [ 16.5, 21.5 ], [ 16.0, 21.5 ], [ 16.0, 22.0 ], [ 16.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 22.0 ], [ 17.0, 21.5 ], [ 16.5, 21.5 ], [ 16.5, 22.0 ], [ 17.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 22.0 ], [ 17.5, 21.5 ], [ 17.0, 21.5 ], [ 17.0, 22.0 ], [ 17.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 22.0 ], [ 18.0, 21.5 ], [ 17.5, 21.5 ], [ 17.5, 22.0 ], [ 18.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 22.0 ], [ 18.5, 21.5 ], [ 18.0, 21.5 ], [ 18.0, 22.0 ], [ 18.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 22.0 ], [ 19.0, 21.5 ], [ 18.5, 21.5 ], [ 18.5, 22.0 ], [ 19.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 22.0 ], [ 19.5, 21.5 ], [ 19.0, 21.5 ], [ 19.0, 22.0 ], [ 19.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 22.0 ], [ 20.0, 21.5 ], [ 19.5, 21.5 ], [ 19.5, 22.0 ], [ 20.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 22.0 ], [ 20.5, 21.5 ], [ 20.0, 21.5 ], [ 20.0, 22.0 ], [ 20.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 22.0 ], [ 21.0, 21.5 ], [ 20.5, 21.5 ], [ 20.5, 22.0 ], [ 21.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 22.0 ], [ 21.5, 21.5 ], [ 21.0, 21.5 ], [ 21.0, 22.0 ], [ 21.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 22.0 ], [ 22.0, 21.5 ], [ 21.5, 21.5 ], [ 21.5, 22.0 ], [ 22.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 22.0 ], [ 22.5, 21.5 ], [ 22.0, 21.5 ], [ 22.0, 22.0 ], [ 22.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 22.0 ], [ 23.0, 21.5 ], [ 22.5, 21.5 ], [ 22.5, 22.0 ], [ 23.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 22.0 ], [ 23.5, 21.5 ], [ 23.0, 21.5 ], [ 23.0, 22.0 ], [ 23.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 22.0 ], [ 24.0, 21.5 ], [ 23.5, 21.5 ], [ 23.5, 22.0 ], [ 24.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 22.0 ], [ 24.5, 21.5 ], [ 24.0, 21.5 ], [ 24.0, 22.0 ], [ 24.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 22.0 ], [ 25.0, 21.5 ], [ 24.5, 21.5 ], [ 24.5, 22.0 ], [ 25.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 22.0 ], [ 25.5, 21.5 ], [ 25.0, 21.5 ], [ 25.0, 22.0 ], [ 25.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 22.0 ], [ 26.0, 21.5 ], [ 25.5, 21.5 ], [ 25.5, 22.0 ], [ 26.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 22.0 ], [ 26.5, 21.5 ], [ 26.0, 21.5 ], [ 26.0, 22.0 ], [ 26.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 22.0 ], [ 27.0, 21.5 ], [ 26.5, 21.5 ], [ 26.5, 22.0 ], [ 27.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 22.0 ], [ 27.5, 21.5 ], [ 27.0, 21.5 ], [ 27.0, 22.0 ], [ 27.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 22.0 ], [ 28.0, 21.5 ], [ 27.5, 21.5 ], [ 27.5, 22.0 ], [ 28.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 22.0 ], [ 28.5, 21.5 ], [ 28.0, 21.5 ], [ 28.0, 22.0 ], [ 28.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 22.0 ], [ 29.0, 21.5 ], [ 28.5, 21.5 ], [ 28.5, 22.0 ], [ 29.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 22.0 ], [ 29.5, 21.5 ], [ 29.0, 21.5 ], [ 29.0, 22.0 ], [ 29.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 22.0 ], [ 30.0, 21.5 ], [ 29.5, 21.5 ], [ 29.5, 22.0 ], [ 30.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 22.0 ], [ 30.5, 21.5 ], [ 30.0, 21.5 ], [ 30.0, 22.0 ], [ 30.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 22.0 ], [ 31.0, 21.5 ], [ 30.5, 21.5 ], [ 30.5, 22.0 ], [ 31.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 22.0 ], [ 31.5, 21.5 ], [ 31.0, 21.5 ], [ 31.0, 22.0 ], [ 31.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 22.0 ], [ 32.0, 21.5 ], [ 31.5, 21.5 ], [ 31.5, 22.0 ], [ 32.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 22.0 ], [ 32.5, 21.5 ], [ 32.0, 21.5 ], [ 32.0, 22.0 ], [ 32.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 22.0 ], [ 33.0, 21.5 ], [ 32.5, 21.5 ], [ 32.5, 22.0 ], [ 33.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 22.0 ], [ 33.5, 21.5 ], [ 33.0, 21.5 ], [ 33.0, 22.0 ], [ 33.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 22.0 ], [ 34.0, 21.5 ], [ 33.5, 21.5 ], [ 33.5, 22.0 ], [ 34.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 22.0 ], [ 34.5, 21.5 ], [ 34.0, 21.5 ], [ 34.0, 22.0 ], [ 34.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 22.0 ], [ 35.0, 21.5 ], [ 34.5, 21.5 ], [ 34.5, 22.0 ], [ 35.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 22.0 ], [ 35.5, 21.5 ], [ 35.0, 21.5 ], [ 35.0, 22.0 ], [ 35.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 22.0 ], [ 36.0, 21.5 ], [ 35.5, 21.5 ], [ 35.5, 22.0 ], [ 36.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 22.0 ], [ 36.5, 21.5 ], [ 36.0, 21.5 ], [ 36.0, 22.0 ], [ 36.5, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.0, 22.0 ], [ 37.0, 21.5 ], [ 36.5, 21.5 ], [ 36.5, 22.0 ], [ 37.0, 22.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.0, 22.5 ], [ -16.0, 22.0 ], [ -16.5, 22.0 ], [ -16.5, 22.5 ], [ -16.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 22.5 ], [ -15.5, 22.0 ], [ -16.0, 22.0 ], [ -16.0, 22.5 ], [ -15.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 22.5 ], [ -15.0, 22.0 ], [ -15.5, 22.0 ], [ -15.5, 22.5 ], [ -15.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 22.5 ], [ -14.5, 22.0 ], [ -15.0, 22.0 ], [ -15.0, 22.5 ], [ -14.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 22.5 ], [ -14.0, 22.0 ], [ -14.5, 22.0 ], [ -14.5, 22.5 ], [ -14.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 22.5 ], [ -13.5, 22.0 ], [ -14.0, 22.0 ], [ -14.0, 22.5 ], [ -13.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 22.5 ], [ -13.0, 22.0 ], [ -13.5, 22.0 ], [ -13.5, 22.5 ], [ -13.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 22.5 ], [ -12.5, 22.0 ], [ -13.0, 22.0 ], [ -13.0, 22.5 ], [ -12.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 22.5 ], [ -12.0, 22.0 ], [ -12.5, 22.0 ], [ -12.5, 22.5 ], [ -12.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 22.5 ], [ -11.5, 22.0 ], [ -12.0, 22.0 ], [ -12.0, 22.5 ], [ -11.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 22.5 ], [ -11.0, 22.0 ], [ -11.5, 22.0 ], [ -11.5, 22.5 ], [ -11.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 22.5 ], [ -10.5, 22.0 ], [ -11.0, 22.0 ], [ -11.0, 22.5 ], [ -10.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 22.5 ], [ -10.0, 22.0 ], [ -10.5, 22.0 ], [ -10.5, 22.5 ], [ -10.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 22.5 ], [ -9.5, 22.0 ], [ -10.0, 22.0 ], [ -10.0, 22.5 ], [ -9.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 22.5 ], [ -9.0, 22.0 ], [ -9.5, 22.0 ], [ -9.5, 22.5 ], [ -9.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 22.5 ], [ -8.5, 22.0 ], [ -9.0, 22.0 ], [ -9.0, 22.5 ], [ -8.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 22.5 ], [ -8.0, 22.0 ], [ -8.5, 22.0 ], [ -8.5, 22.5 ], [ -8.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 22.5 ], [ -7.5, 22.0 ], [ -8.0, 22.0 ], [ -8.0, 22.5 ], [ -7.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 22.5 ], [ -7.0, 22.0 ], [ -7.5, 22.0 ], [ -7.5, 22.5 ], [ -7.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 22.5 ], [ -6.5, 22.0 ], [ -7.0, 22.0 ], [ -7.0, 22.5 ], [ -6.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 22.5 ], [ -6.0, 22.0 ], [ -6.5, 22.0 ], [ -6.5, 22.5 ], [ -6.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 22.5 ], [ -5.5, 22.0 ], [ -6.0, 22.0 ], [ -6.0, 22.5 ], [ -5.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 22.5 ], [ -5.0, 22.0 ], [ -5.5, 22.0 ], [ -5.5, 22.5 ], [ -5.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 22.5 ], [ -4.5, 22.0 ], [ -5.0, 22.0 ], [ -5.0, 22.5 ], [ -4.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 22.5 ], [ -4.0, 22.0 ], [ -4.5, 22.0 ], [ -4.5, 22.5 ], [ -4.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 22.5 ], [ -3.5, 22.0 ], [ -4.0, 22.0 ], [ -4.0, 22.5 ], [ -3.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 22.5 ], [ -3.0, 22.0 ], [ -3.5, 22.0 ], [ -3.5, 22.5 ], [ -3.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 22.5 ], [ -2.5, 22.0 ], [ -3.0, 22.0 ], [ -3.0, 22.5 ], [ -2.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 22.5 ], [ -2.0, 22.0 ], [ -2.5, 22.0 ], [ -2.5, 22.5 ], [ -2.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 22.5 ], [ -1.5, 22.0 ], [ -2.0, 22.0 ], [ -2.0, 22.5 ], [ -1.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 22.5 ], [ -1.0, 22.0 ], [ -1.5, 22.0 ], [ -1.5, 22.5 ], [ -1.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 22.5 ], [ -0.5, 22.0 ], [ -1.0, 22.0 ], [ -1.0, 22.5 ], [ -0.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 22.5 ], [ 0.0, 22.0 ], [ -0.5, 22.0 ], [ -0.5, 22.5 ], [ 0.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 22.5 ], [ 0.5, 22.0 ], [ 0.0, 22.0 ], [ 0.0, 22.5 ], [ 0.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 22.5 ], [ 1.0, 22.0 ], [ 0.5, 22.0 ], [ 0.5, 22.5 ], [ 1.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 22.5 ], [ 1.5, 22.0 ], [ 1.0, 22.0 ], [ 1.0, 22.5 ], [ 1.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 22.5 ], [ 2.0, 22.0 ], [ 1.5, 22.0 ], [ 1.5, 22.5 ], [ 2.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 22.5 ], [ 2.5, 22.0 ], [ 2.0, 22.0 ], [ 2.0, 22.5 ], [ 2.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 22.5 ], [ 3.0, 22.0 ], [ 2.5, 22.0 ], [ 2.5, 22.5 ], [ 3.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 22.5 ], [ 3.5, 22.0 ], [ 3.0, 22.0 ], [ 3.0, 22.5 ], [ 3.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 22.5 ], [ 4.0, 22.0 ], [ 3.5, 22.0 ], [ 3.5, 22.5 ], [ 4.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 22.5 ], [ 4.5, 22.0 ], [ 4.0, 22.0 ], [ 4.0, 22.5 ], [ 4.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 22.5 ], [ 5.0, 22.0 ], [ 4.5, 22.0 ], [ 4.5, 22.5 ], [ 5.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 22.5 ], [ 5.5, 22.0 ], [ 5.0, 22.0 ], [ 5.0, 22.5 ], [ 5.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 22.5 ], [ 6.0, 22.0 ], [ 5.5, 22.0 ], [ 5.5, 22.5 ], [ 6.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 22.5 ], [ 6.5, 22.0 ], [ 6.0, 22.0 ], [ 6.0, 22.5 ], [ 6.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 22.5 ], [ 7.0, 22.0 ], [ 6.5, 22.0 ], [ 6.5, 22.5 ], [ 7.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 22.5 ], [ 7.5, 22.0 ], [ 7.0, 22.0 ], [ 7.0, 22.5 ], [ 7.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 22.5 ], [ 8.0, 22.0 ], [ 7.5, 22.0 ], [ 7.5, 22.5 ], [ 8.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 22.5 ], [ 8.5, 22.0 ], [ 8.0, 22.0 ], [ 8.0, 22.5 ], [ 8.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 22.5 ], [ 9.0, 22.0 ], [ 8.5, 22.0 ], [ 8.5, 22.5 ], [ 9.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 22.5 ], [ 9.5, 22.0 ], [ 9.0, 22.0 ], [ 9.0, 22.5 ], [ 9.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 22.5 ], [ 10.0, 22.0 ], [ 9.5, 22.0 ], [ 9.5, 22.5 ], [ 10.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 22.5 ], [ 10.5, 22.0 ], [ 10.0, 22.0 ], [ 10.0, 22.5 ], [ 10.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 22.5 ], [ 11.0, 22.0 ], [ 10.5, 22.0 ], [ 10.5, 22.5 ], [ 11.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 22.5 ], [ 11.5, 22.0 ], [ 11.0, 22.0 ], [ 11.0, 22.5 ], [ 11.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 22.5 ], [ 12.0, 22.0 ], [ 11.5, 22.0 ], [ 11.5, 22.5 ], [ 12.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 22.5 ], [ 12.5, 22.0 ], [ 12.0, 22.0 ], [ 12.0, 22.5 ], [ 12.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 22.5 ], [ 13.0, 22.0 ], [ 12.5, 22.0 ], [ 12.5, 22.5 ], [ 13.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 22.5 ], [ 13.5, 22.0 ], [ 13.0, 22.0 ], [ 13.0, 22.5 ], [ 13.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 22.5 ], [ 14.0, 22.0 ], [ 13.5, 22.0 ], [ 13.5, 22.5 ], [ 14.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 22.5 ], [ 14.5, 22.0 ], [ 14.0, 22.0 ], [ 14.0, 22.5 ], [ 14.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 22.5 ], [ 15.0, 22.0 ], [ 14.5, 22.0 ], [ 14.5, 22.5 ], [ 15.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 22.5 ], [ 15.5, 22.0 ], [ 15.0, 22.0 ], [ 15.0, 22.5 ], [ 15.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 22.5 ], [ 16.0, 22.0 ], [ 15.5, 22.0 ], [ 15.5, 22.5 ], [ 16.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 22.5 ], [ 16.5, 22.0 ], [ 16.0, 22.0 ], [ 16.0, 22.5 ], [ 16.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 22.5 ], [ 17.0, 22.0 ], [ 16.5, 22.0 ], [ 16.5, 22.5 ], [ 17.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 22.5 ], [ 17.5, 22.0 ], [ 17.0, 22.0 ], [ 17.0, 22.5 ], [ 17.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 22.5 ], [ 18.0, 22.0 ], [ 17.5, 22.0 ], [ 17.5, 22.5 ], [ 18.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 22.5 ], [ 18.5, 22.0 ], [ 18.0, 22.0 ], [ 18.0, 22.5 ], [ 18.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 22.5 ], [ 19.0, 22.0 ], [ 18.5, 22.0 ], [ 18.5, 22.5 ], [ 19.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 22.5 ], [ 19.5, 22.0 ], [ 19.0, 22.0 ], [ 19.0, 22.5 ], [ 19.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 22.5 ], [ 20.0, 22.0 ], [ 19.5, 22.0 ], [ 19.5, 22.5 ], [ 20.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 22.5 ], [ 20.5, 22.0 ], [ 20.0, 22.0 ], [ 20.0, 22.5 ], [ 20.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 22.5 ], [ 21.0, 22.0 ], [ 20.5, 22.0 ], [ 20.5, 22.5 ], [ 21.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 22.5 ], [ 21.5, 22.0 ], [ 21.0, 22.0 ], [ 21.0, 22.5 ], [ 21.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 22.5 ], [ 22.0, 22.0 ], [ 21.5, 22.0 ], [ 21.5, 22.5 ], [ 22.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 22.5 ], [ 22.5, 22.0 ], [ 22.0, 22.0 ], [ 22.0, 22.5 ], [ 22.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 22.5 ], [ 23.0, 22.0 ], [ 22.5, 22.0 ], [ 22.5, 22.5 ], [ 23.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 22.5 ], [ 23.5, 22.0 ], [ 23.0, 22.0 ], [ 23.0, 22.5 ], [ 23.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 22.5 ], [ 24.0, 22.0 ], [ 23.5, 22.0 ], [ 23.5, 22.5 ], [ 24.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 22.5 ], [ 24.5, 22.0 ], [ 24.0, 22.0 ], [ 24.0, 22.5 ], [ 24.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 22.5 ], [ 25.0, 22.0 ], [ 24.5, 22.0 ], [ 24.5, 22.5 ], [ 25.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 22.5 ], [ 25.5, 22.0 ], [ 25.0, 22.0 ], [ 25.0, 22.5 ], [ 25.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 22.5 ], [ 26.0, 22.0 ], [ 25.5, 22.0 ], [ 25.5, 22.5 ], [ 26.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 22.5 ], [ 26.5, 22.0 ], [ 26.0, 22.0 ], [ 26.0, 22.5 ], [ 26.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 22.5 ], [ 27.0, 22.0 ], [ 26.5, 22.0 ], [ 26.5, 22.5 ], [ 27.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 22.5 ], [ 27.5, 22.0 ], [ 27.0, 22.0 ], [ 27.0, 22.5 ], [ 27.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 22.5 ], [ 28.0, 22.0 ], [ 27.5, 22.0 ], [ 27.5, 22.5 ], [ 28.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 22.5 ], [ 28.5, 22.0 ], [ 28.0, 22.0 ], [ 28.0, 22.5 ], [ 28.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 22.5 ], [ 29.0, 22.0 ], [ 28.5, 22.0 ], [ 28.5, 22.5 ], [ 29.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 22.5 ], [ 29.5, 22.0 ], [ 29.0, 22.0 ], [ 29.0, 22.5 ], [ 29.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 22.5 ], [ 30.0, 22.0 ], [ 29.5, 22.0 ], [ 29.5, 22.5 ], [ 30.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 22.5 ], [ 30.5, 22.0 ], [ 30.0, 22.0 ], [ 30.0, 22.5 ], [ 30.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 22.5 ], [ 31.0, 22.0 ], [ 30.5, 22.0 ], [ 30.5, 22.5 ], [ 31.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 22.5 ], [ 31.5, 22.0 ], [ 31.0, 22.0 ], [ 31.0, 22.5 ], [ 31.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 22.5 ], [ 32.0, 22.0 ], [ 31.5, 22.0 ], [ 31.5, 22.5 ], [ 32.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 22.5 ], [ 32.5, 22.0 ], [ 32.0, 22.0 ], [ 32.0, 22.5 ], [ 32.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 22.5 ], [ 33.0, 22.0 ], [ 32.5, 22.0 ], [ 32.5, 22.5 ], [ 33.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 22.5 ], [ 33.5, 22.0 ], [ 33.0, 22.0 ], [ 33.0, 22.5 ], [ 33.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 22.5 ], [ 34.0, 22.0 ], [ 33.5, 22.0 ], [ 33.5, 22.5 ], [ 34.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 22.5 ], [ 34.5, 22.0 ], [ 34.0, 22.0 ], [ 34.0, 22.5 ], [ 34.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 22.5 ], [ 35.0, 22.0 ], [ 34.5, 22.0 ], [ 34.5, 22.5 ], [ 35.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 22.5 ], [ 35.5, 22.0 ], [ 35.0, 22.0 ], [ 35.0, 22.5 ], [ 35.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 22.5 ], [ 36.0, 22.0 ], [ 35.5, 22.0 ], [ 35.5, 22.5 ], [ 36.0, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.5, 22.5 ], [ 36.5, 22.0 ], [ 36.0, 22.0 ], [ 36.0, 22.5 ], [ 36.5, 22.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.0, 23.0 ], [ -16.0, 22.5 ], [ -16.5, 22.5 ], [ -16.5, 23.0 ], [ -16.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 23.0 ], [ -15.5, 22.5 ], [ -16.0, 22.5 ], [ -16.0, 23.0 ], [ -15.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 23.0 ], [ -15.0, 22.5 ], [ -15.5, 22.5 ], [ -15.5, 23.0 ], [ -15.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 23.0 ], [ -14.5, 22.5 ], [ -15.0, 22.5 ], [ -15.0, 23.0 ], [ -14.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 23.0 ], [ -14.0, 22.5 ], [ -14.5, 22.5 ], [ -14.5, 23.0 ], [ -14.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 23.0 ], [ -13.5, 22.5 ], [ -14.0, 22.5 ], [ -14.0, 23.0 ], [ -13.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 23.0 ], [ -13.0, 22.5 ], [ -13.5, 22.5 ], [ -13.5, 23.0 ], [ -13.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 23.0 ], [ -12.5, 22.5 ], [ -13.0, 22.5 ], [ -13.0, 23.0 ], [ -12.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 23.0 ], [ -12.0, 22.5 ], [ -12.5, 22.5 ], [ -12.5, 23.0 ], [ -12.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 23.0 ], [ -11.5, 22.5 ], [ -12.0, 22.5 ], [ -12.0, 23.0 ], [ -11.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 23.0 ], [ -11.0, 22.5 ], [ -11.5, 22.5 ], [ -11.5, 23.0 ], [ -11.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 23.0 ], [ -10.5, 22.5 ], [ -11.0, 22.5 ], [ -11.0, 23.0 ], [ -10.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 23.0 ], [ -10.0, 22.5 ], [ -10.5, 22.5 ], [ -10.5, 23.0 ], [ -10.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 23.0 ], [ -9.5, 22.5 ], [ -10.0, 22.5 ], [ -10.0, 23.0 ], [ -9.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 23.0 ], [ -9.0, 22.5 ], [ -9.5, 22.5 ], [ -9.5, 23.0 ], [ -9.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 23.0 ], [ -8.5, 22.5 ], [ -9.0, 22.5 ], [ -9.0, 23.0 ], [ -8.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 23.0 ], [ -8.0, 22.5 ], [ -8.5, 22.5 ], [ -8.5, 23.0 ], [ -8.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 23.0 ], [ -7.5, 22.5 ], [ -8.0, 22.5 ], [ -8.0, 23.0 ], [ -7.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 23.0 ], [ -7.0, 22.5 ], [ -7.5, 22.5 ], [ -7.5, 23.0 ], [ -7.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 23.0 ], [ -6.5, 22.5 ], [ -7.0, 22.5 ], [ -7.0, 23.0 ], [ -6.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 23.0 ], [ -6.0, 22.5 ], [ -6.5, 22.5 ], [ -6.5, 23.0 ], [ -6.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 23.0 ], [ -5.5, 22.5 ], [ -6.0, 22.5 ], [ -6.0, 23.0 ], [ -5.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 23.0 ], [ -5.0, 22.5 ], [ -5.5, 22.5 ], [ -5.5, 23.0 ], [ -5.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 23.0 ], [ -4.5, 22.5 ], [ -5.0, 22.5 ], [ -5.0, 23.0 ], [ -4.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 23.0 ], [ -4.0, 22.5 ], [ -4.5, 22.5 ], [ -4.5, 23.0 ], [ -4.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 23.0 ], [ -3.5, 22.5 ], [ -4.0, 22.5 ], [ -4.0, 23.0 ], [ -3.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 23.0 ], [ -3.0, 22.5 ], [ -3.5, 22.5 ], [ -3.5, 23.0 ], [ -3.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 23.0 ], [ -2.5, 22.5 ], [ -3.0, 22.5 ], [ -3.0, 23.0 ], [ -2.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 23.0 ], [ -2.0, 22.5 ], [ -2.5, 22.5 ], [ -2.5, 23.0 ], [ -2.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 23.0 ], [ -1.5, 22.5 ], [ -2.0, 22.5 ], [ -2.0, 23.0 ], [ -1.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 23.0 ], [ -1.0, 22.5 ], [ -1.5, 22.5 ], [ -1.5, 23.0 ], [ -1.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 23.0 ], [ -0.5, 22.5 ], [ -1.0, 22.5 ], [ -1.0, 23.0 ], [ -0.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 23.0 ], [ 0.0, 22.5 ], [ -0.5, 22.5 ], [ -0.5, 23.0 ], [ 0.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 23.0 ], [ 0.5, 22.5 ], [ 0.0, 22.5 ], [ 0.0, 23.0 ], [ 0.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 23.0 ], [ 1.0, 22.5 ], [ 0.5, 22.5 ], [ 0.5, 23.0 ], [ 1.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 23.0 ], [ 1.5, 22.5 ], [ 1.0, 22.5 ], [ 1.0, 23.0 ], [ 1.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 23.0 ], [ 2.0, 22.5 ], [ 1.5, 22.5 ], [ 1.5, 23.0 ], [ 2.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 23.0 ], [ 2.5, 22.5 ], [ 2.0, 22.5 ], [ 2.0, 23.0 ], [ 2.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 23.0 ], [ 3.0, 22.5 ], [ 2.5, 22.5 ], [ 2.5, 23.0 ], [ 3.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 23.0 ], [ 3.5, 22.5 ], [ 3.0, 22.5 ], [ 3.0, 23.0 ], [ 3.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 23.0 ], [ 4.0, 22.5 ], [ 3.5, 22.5 ], [ 3.5, 23.0 ], [ 4.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 23.0 ], [ 4.5, 22.5 ], [ 4.0, 22.5 ], [ 4.0, 23.0 ], [ 4.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 23.0 ], [ 5.0, 22.5 ], [ 4.5, 22.5 ], [ 4.5, 23.0 ], [ 5.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 23.0 ], [ 5.5, 22.5 ], [ 5.0, 22.5 ], [ 5.0, 23.0 ], [ 5.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 23.0 ], [ 6.0, 22.5 ], [ 5.5, 22.5 ], [ 5.5, 23.0 ], [ 6.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 23.0 ], [ 6.5, 22.5 ], [ 6.0, 22.5 ], [ 6.0, 23.0 ], [ 6.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 23.0 ], [ 7.0, 22.5 ], [ 6.5, 22.5 ], [ 6.5, 23.0 ], [ 7.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 23.0 ], [ 7.5, 22.5 ], [ 7.0, 22.5 ], [ 7.0, 23.0 ], [ 7.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 23.0 ], [ 8.0, 22.5 ], [ 7.5, 22.5 ], [ 7.5, 23.0 ], [ 8.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 23.0 ], [ 8.5, 22.5 ], [ 8.0, 22.5 ], [ 8.0, 23.0 ], [ 8.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 23.0 ], [ 9.0, 22.5 ], [ 8.5, 22.5 ], [ 8.5, 23.0 ], [ 9.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 23.0 ], [ 9.5, 22.5 ], [ 9.0, 22.5 ], [ 9.0, 23.0 ], [ 9.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 23.0 ], [ 10.0, 22.5 ], [ 9.5, 22.5 ], [ 9.5, 23.0 ], [ 10.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 23.0 ], [ 10.5, 22.5 ], [ 10.0, 22.5 ], [ 10.0, 23.0 ], [ 10.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 23.0 ], [ 11.0, 22.5 ], [ 10.5, 22.5 ], [ 10.5, 23.0 ], [ 11.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 23.0 ], [ 11.5, 22.5 ], [ 11.0, 22.5 ], [ 11.0, 23.0 ], [ 11.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 23.0 ], [ 12.0, 22.5 ], [ 11.5, 22.5 ], [ 11.5, 23.0 ], [ 12.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 23.0 ], [ 12.5, 22.5 ], [ 12.0, 22.5 ], [ 12.0, 23.0 ], [ 12.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 23.0 ], [ 13.0, 22.5 ], [ 12.5, 22.5 ], [ 12.5, 23.0 ], [ 13.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 23.0 ], [ 13.5, 22.5 ], [ 13.0, 22.5 ], [ 13.0, 23.0 ], [ 13.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 23.0 ], [ 14.0, 22.5 ], [ 13.5, 22.5 ], [ 13.5, 23.0 ], [ 14.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 23.0 ], [ 14.5, 22.5 ], [ 14.0, 22.5 ], [ 14.0, 23.0 ], [ 14.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 23.0 ], [ 15.0, 22.5 ], [ 14.5, 22.5 ], [ 14.5, 23.0 ], [ 15.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 23.0 ], [ 15.5, 22.5 ], [ 15.0, 22.5 ], [ 15.0, 23.0 ], [ 15.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 23.0 ], [ 16.0, 22.5 ], [ 15.5, 22.5 ], [ 15.5, 23.0 ], [ 16.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 23.0 ], [ 16.5, 22.5 ], [ 16.0, 22.5 ], [ 16.0, 23.0 ], [ 16.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 23.0 ], [ 17.0, 22.5 ], [ 16.5, 22.5 ], [ 16.5, 23.0 ], [ 17.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 23.0 ], [ 17.5, 22.5 ], [ 17.0, 22.5 ], [ 17.0, 23.0 ], [ 17.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 23.0 ], [ 18.0, 22.5 ], [ 17.5, 22.5 ], [ 17.5, 23.0 ], [ 18.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 23.0 ], [ 18.5, 22.5 ], [ 18.0, 22.5 ], [ 18.0, 23.0 ], [ 18.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 23.0 ], [ 19.0, 22.5 ], [ 18.5, 22.5 ], [ 18.5, 23.0 ], [ 19.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 23.0 ], [ 19.5, 22.5 ], [ 19.0, 22.5 ], [ 19.0, 23.0 ], [ 19.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 23.0 ], [ 20.0, 22.5 ], [ 19.5, 22.5 ], [ 19.5, 23.0 ], [ 20.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 23.0 ], [ 20.5, 22.5 ], [ 20.0, 22.5 ], [ 20.0, 23.0 ], [ 20.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 23.0 ], [ 21.0, 22.5 ], [ 20.5, 22.5 ], [ 20.5, 23.0 ], [ 21.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 23.0 ], [ 21.5, 22.5 ], [ 21.0, 22.5 ], [ 21.0, 23.0 ], [ 21.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 23.0 ], [ 22.0, 22.5 ], [ 21.5, 22.5 ], [ 21.5, 23.0 ], [ 22.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 23.0 ], [ 22.5, 22.5 ], [ 22.0, 22.5 ], [ 22.0, 23.0 ], [ 22.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 23.0 ], [ 23.0, 22.5 ], [ 22.5, 22.5 ], [ 22.5, 23.0 ], [ 23.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 23.0 ], [ 23.5, 22.5 ], [ 23.0, 22.5 ], [ 23.0, 23.0 ], [ 23.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 23.0 ], [ 24.0, 22.5 ], [ 23.5, 22.5 ], [ 23.5, 23.0 ], [ 24.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 23.0 ], [ 24.5, 22.5 ], [ 24.0, 22.5 ], [ 24.0, 23.0 ], [ 24.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 23.0 ], [ 25.0, 22.5 ], [ 24.5, 22.5 ], [ 24.5, 23.0 ], [ 25.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 23.0 ], [ 25.5, 22.5 ], [ 25.0, 22.5 ], [ 25.0, 23.0 ], [ 25.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 23.0 ], [ 26.0, 22.5 ], [ 25.5, 22.5 ], [ 25.5, 23.0 ], [ 26.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 23.0 ], [ 26.5, 22.5 ], [ 26.0, 22.5 ], [ 26.0, 23.0 ], [ 26.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 23.0 ], [ 27.0, 22.5 ], [ 26.5, 22.5 ], [ 26.5, 23.0 ], [ 27.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 23.0 ], [ 27.5, 22.5 ], [ 27.0, 22.5 ], [ 27.0, 23.0 ], [ 27.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 23.0 ], [ 28.0, 22.5 ], [ 27.5, 22.5 ], [ 27.5, 23.0 ], [ 28.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 23.0 ], [ 28.5, 22.5 ], [ 28.0, 22.5 ], [ 28.0, 23.0 ], [ 28.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 23.0 ], [ 29.0, 22.5 ], [ 28.5, 22.5 ], [ 28.5, 23.0 ], [ 29.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 23.0 ], [ 29.5, 22.5 ], [ 29.0, 22.5 ], [ 29.0, 23.0 ], [ 29.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 23.0 ], [ 30.0, 22.5 ], [ 29.5, 22.5 ], [ 29.5, 23.0 ], [ 30.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 23.0 ], [ 30.5, 22.5 ], [ 30.0, 22.5 ], [ 30.0, 23.0 ], [ 30.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 23.0 ], [ 31.0, 22.5 ], [ 30.5, 22.5 ], [ 30.5, 23.0 ], [ 31.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 23.0 ], [ 31.5, 22.5 ], [ 31.0, 22.5 ], [ 31.0, 23.0 ], [ 31.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 23.0 ], [ 32.0, 22.5 ], [ 31.5, 22.5 ], [ 31.5, 23.0 ], [ 32.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 23.0 ], [ 32.5, 22.5 ], [ 32.0, 22.5 ], [ 32.0, 23.0 ], [ 32.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 23.0 ], [ 33.0, 22.5 ], [ 32.5, 22.5 ], [ 32.5, 23.0 ], [ 33.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 23.0 ], [ 33.5, 22.5 ], [ 33.0, 22.5 ], [ 33.0, 23.0 ], [ 33.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 23.0 ], [ 34.0, 22.5 ], [ 33.5, 22.5 ], [ 33.5, 23.0 ], [ 34.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 23.0 ], [ 34.5, 22.5 ], [ 34.0, 22.5 ], [ 34.0, 23.0 ], [ 34.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 23.0 ], [ 35.0, 22.5 ], [ 34.5, 22.5 ], [ 34.5, 23.0 ], [ 35.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 23.0 ], [ 35.5, 22.5 ], [ 35.0, 22.5 ], [ 35.0, 23.0 ], [ 35.5, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.0, 23.0 ], [ 36.0, 22.5 ], [ 35.5, 22.5 ], [ 35.5, 23.0 ], [ 36.0, 23.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 23.5 ], [ -15.5, 23.0 ], [ -16.0, 23.0 ], [ -16.0, 23.5 ], [ -15.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 23.5 ], [ -15.0, 23.0 ], [ -15.5, 23.0 ], [ -15.5, 23.5 ], [ -15.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 23.5 ], [ -14.5, 23.0 ], [ -15.0, 23.0 ], [ -15.0, 23.5 ], [ -14.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 23.5 ], [ -14.0, 23.0 ], [ -14.5, 23.0 ], [ -14.5, 23.5 ], [ -14.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 23.5 ], [ -13.5, 23.0 ], [ -14.0, 23.0 ], [ -14.0, 23.5 ], [ -13.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 23.5 ], [ -13.0, 23.0 ], [ -13.5, 23.0 ], [ -13.5, 23.5 ], [ -13.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 23.5 ], [ -12.5, 23.0 ], [ -13.0, 23.0 ], [ -13.0, 23.5 ], [ -12.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 23.5 ], [ -12.0, 23.0 ], [ -12.5, 23.0 ], [ -12.5, 23.5 ], [ -12.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 23.5 ], [ -11.5, 23.0 ], [ -12.0, 23.0 ], [ -12.0, 23.5 ], [ -11.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 23.5 ], [ -11.0, 23.0 ], [ -11.5, 23.0 ], [ -11.5, 23.5 ], [ -11.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 23.5 ], [ -10.5, 23.0 ], [ -11.0, 23.0 ], [ -11.0, 23.5 ], [ -10.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 23.5 ], [ -10.0, 23.0 ], [ -10.5, 23.0 ], [ -10.5, 23.5 ], [ -10.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 23.5 ], [ -9.5, 23.0 ], [ -10.0, 23.0 ], [ -10.0, 23.5 ], [ -9.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 23.5 ], [ -9.0, 23.0 ], [ -9.5, 23.0 ], [ -9.5, 23.5 ], [ -9.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 23.5 ], [ -8.5, 23.0 ], [ -9.0, 23.0 ], [ -9.0, 23.5 ], [ -8.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 23.5 ], [ -8.0, 23.0 ], [ -8.5, 23.0 ], [ -8.5, 23.5 ], [ -8.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 23.5 ], [ -7.5, 23.0 ], [ -8.0, 23.0 ], [ -8.0, 23.5 ], [ -7.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 23.5 ], [ -7.0, 23.0 ], [ -7.5, 23.0 ], [ -7.5, 23.5 ], [ -7.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 23.5 ], [ -6.5, 23.0 ], [ -7.0, 23.0 ], [ -7.0, 23.5 ], [ -6.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 23.5 ], [ -6.0, 23.0 ], [ -6.5, 23.0 ], [ -6.5, 23.5 ], [ -6.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 23.5 ], [ -5.5, 23.0 ], [ -6.0, 23.0 ], [ -6.0, 23.5 ], [ -5.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 23.5 ], [ -5.0, 23.0 ], [ -5.5, 23.0 ], [ -5.5, 23.5 ], [ -5.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 23.5 ], [ -4.5, 23.0 ], [ -5.0, 23.0 ], [ -5.0, 23.5 ], [ -4.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 23.5 ], [ -4.0, 23.0 ], [ -4.5, 23.0 ], [ -4.5, 23.5 ], [ -4.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 23.5 ], [ -3.5, 23.0 ], [ -4.0, 23.0 ], [ -4.0, 23.5 ], [ -3.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 23.5 ], [ -3.0, 23.0 ], [ -3.5, 23.0 ], [ -3.5, 23.5 ], [ -3.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 23.5 ], [ -2.5, 23.0 ], [ -3.0, 23.0 ], [ -3.0, 23.5 ], [ -2.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 23.5 ], [ -2.0, 23.0 ], [ -2.5, 23.0 ], [ -2.5, 23.5 ], [ -2.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 23.5 ], [ -1.5, 23.0 ], [ -2.0, 23.0 ], [ -2.0, 23.5 ], [ -1.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 23.5 ], [ -1.0, 23.0 ], [ -1.5, 23.0 ], [ -1.5, 23.5 ], [ -1.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 23.5 ], [ -0.5, 23.0 ], [ -1.0, 23.0 ], [ -1.0, 23.5 ], [ -0.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 23.5 ], [ 0.0, 23.0 ], [ -0.5, 23.0 ], [ -0.5, 23.5 ], [ 0.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 23.5 ], [ 0.5, 23.0 ], [ 0.0, 23.0 ], [ 0.0, 23.5 ], [ 0.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 23.5 ], [ 1.0, 23.0 ], [ 0.5, 23.0 ], [ 0.5, 23.5 ], [ 1.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 23.5 ], [ 1.5, 23.0 ], [ 1.0, 23.0 ], [ 1.0, 23.5 ], [ 1.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 23.5 ], [ 2.0, 23.0 ], [ 1.5, 23.0 ], [ 1.5, 23.5 ], [ 2.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 23.5 ], [ 2.5, 23.0 ], [ 2.0, 23.0 ], [ 2.0, 23.5 ], [ 2.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 23.5 ], [ 3.0, 23.0 ], [ 2.5, 23.0 ], [ 2.5, 23.5 ], [ 3.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 23.5 ], [ 3.5, 23.0 ], [ 3.0, 23.0 ], [ 3.0, 23.5 ], [ 3.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 23.5 ], [ 4.0, 23.0 ], [ 3.5, 23.0 ], [ 3.5, 23.5 ], [ 4.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 23.5 ], [ 4.5, 23.0 ], [ 4.0, 23.0 ], [ 4.0, 23.5 ], [ 4.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 23.5 ], [ 5.0, 23.0 ], [ 4.5, 23.0 ], [ 4.5, 23.5 ], [ 5.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 23.5 ], [ 5.5, 23.0 ], [ 5.0, 23.0 ], [ 5.0, 23.5 ], [ 5.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 23.5 ], [ 6.0, 23.0 ], [ 5.5, 23.0 ], [ 5.5, 23.5 ], [ 6.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 23.5 ], [ 6.5, 23.0 ], [ 6.0, 23.0 ], [ 6.0, 23.5 ], [ 6.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 23.5 ], [ 7.0, 23.0 ], [ 6.5, 23.0 ], [ 6.5, 23.5 ], [ 7.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 23.5 ], [ 7.5, 23.0 ], [ 7.0, 23.0 ], [ 7.0, 23.5 ], [ 7.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 23.5 ], [ 8.0, 23.0 ], [ 7.5, 23.0 ], [ 7.5, 23.5 ], [ 8.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 23.5 ], [ 8.5, 23.0 ], [ 8.0, 23.0 ], [ 8.0, 23.5 ], [ 8.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 23.5 ], [ 9.0, 23.0 ], [ 8.5, 23.0 ], [ 8.5, 23.5 ], [ 9.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 23.5 ], [ 9.5, 23.0 ], [ 9.0, 23.0 ], [ 9.0, 23.5 ], [ 9.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 23.5 ], [ 10.0, 23.0 ], [ 9.5, 23.0 ], [ 9.5, 23.5 ], [ 10.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 23.5 ], [ 10.5, 23.0 ], [ 10.0, 23.0 ], [ 10.0, 23.5 ], [ 10.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 23.5 ], [ 11.0, 23.0 ], [ 10.5, 23.0 ], [ 10.5, 23.5 ], [ 11.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 23.5 ], [ 11.5, 23.0 ], [ 11.0, 23.0 ], [ 11.0, 23.5 ], [ 11.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 23.5 ], [ 12.0, 23.0 ], [ 11.5, 23.0 ], [ 11.5, 23.5 ], [ 12.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 23.5 ], [ 12.5, 23.0 ], [ 12.0, 23.0 ], [ 12.0, 23.5 ], [ 12.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 23.5 ], [ 13.0, 23.0 ], [ 12.5, 23.0 ], [ 12.5, 23.5 ], [ 13.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 23.5 ], [ 13.5, 23.0 ], [ 13.0, 23.0 ], [ 13.0, 23.5 ], [ 13.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 23.5 ], [ 14.0, 23.0 ], [ 13.5, 23.0 ], [ 13.5, 23.5 ], [ 14.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 23.5 ], [ 14.5, 23.0 ], [ 14.0, 23.0 ], [ 14.0, 23.5 ], [ 14.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 23.5 ], [ 15.0, 23.0 ], [ 14.5, 23.0 ], [ 14.5, 23.5 ], [ 15.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 23.5 ], [ 15.5, 23.0 ], [ 15.0, 23.0 ], [ 15.0, 23.5 ], [ 15.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 23.5 ], [ 16.0, 23.0 ], [ 15.5, 23.0 ], [ 15.5, 23.5 ], [ 16.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 23.5 ], [ 16.5, 23.0 ], [ 16.0, 23.0 ], [ 16.0, 23.5 ], [ 16.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 23.5 ], [ 17.0, 23.0 ], [ 16.5, 23.0 ], [ 16.5, 23.5 ], [ 17.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 23.5 ], [ 17.5, 23.0 ], [ 17.0, 23.0 ], [ 17.0, 23.5 ], [ 17.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 23.5 ], [ 18.0, 23.0 ], [ 17.5, 23.0 ], [ 17.5, 23.5 ], [ 18.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 23.5 ], [ 18.5, 23.0 ], [ 18.0, 23.0 ], [ 18.0, 23.5 ], [ 18.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 23.5 ], [ 19.0, 23.0 ], [ 18.5, 23.0 ], [ 18.5, 23.5 ], [ 19.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 23.5 ], [ 19.5, 23.0 ], [ 19.0, 23.0 ], [ 19.0, 23.5 ], [ 19.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 23.5 ], [ 20.0, 23.0 ], [ 19.5, 23.0 ], [ 19.5, 23.5 ], [ 20.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 23.5 ], [ 20.5, 23.0 ], [ 20.0, 23.0 ], [ 20.0, 23.5 ], [ 20.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 23.5 ], [ 21.0, 23.0 ], [ 20.5, 23.0 ], [ 20.5, 23.5 ], [ 21.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 23.5 ], [ 21.5, 23.0 ], [ 21.0, 23.0 ], [ 21.0, 23.5 ], [ 21.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 23.5 ], [ 22.0, 23.0 ], [ 21.5, 23.0 ], [ 21.5, 23.5 ], [ 22.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 23.5 ], [ 22.5, 23.0 ], [ 22.0, 23.0 ], [ 22.0, 23.5 ], [ 22.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 23.5 ], [ 23.0, 23.0 ], [ 22.5, 23.0 ], [ 22.5, 23.5 ], [ 23.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 23.5 ], [ 23.5, 23.0 ], [ 23.0, 23.0 ], [ 23.0, 23.5 ], [ 23.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 23.5 ], [ 24.0, 23.0 ], [ 23.5, 23.0 ], [ 23.5, 23.5 ], [ 24.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 23.5 ], [ 24.5, 23.0 ], [ 24.0, 23.0 ], [ 24.0, 23.5 ], [ 24.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 23.5 ], [ 25.0, 23.0 ], [ 24.5, 23.0 ], [ 24.5, 23.5 ], [ 25.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 23.5 ], [ 25.5, 23.0 ], [ 25.0, 23.0 ], [ 25.0, 23.5 ], [ 25.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 23.5 ], [ 26.0, 23.0 ], [ 25.5, 23.0 ], [ 25.5, 23.5 ], [ 26.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 23.5 ], [ 26.5, 23.0 ], [ 26.0, 23.0 ], [ 26.0, 23.5 ], [ 26.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 23.5 ], [ 27.0, 23.0 ], [ 26.5, 23.0 ], [ 26.5, 23.5 ], [ 27.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 23.5 ], [ 27.5, 23.0 ], [ 27.0, 23.0 ], [ 27.0, 23.5 ], [ 27.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 23.5 ], [ 28.0, 23.0 ], [ 27.5, 23.0 ], [ 27.5, 23.5 ], [ 28.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 23.5 ], [ 28.5, 23.0 ], [ 28.0, 23.0 ], [ 28.0, 23.5 ], [ 28.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 23.5 ], [ 29.0, 23.0 ], [ 28.5, 23.0 ], [ 28.5, 23.5 ], [ 29.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 23.5 ], [ 29.5, 23.0 ], [ 29.0, 23.0 ], [ 29.0, 23.5 ], [ 29.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 23.5 ], [ 30.0, 23.0 ], [ 29.5, 23.0 ], [ 29.5, 23.5 ], [ 30.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 23.5 ], [ 30.5, 23.0 ], [ 30.0, 23.0 ], [ 30.0, 23.5 ], [ 30.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 23.5 ], [ 31.0, 23.0 ], [ 30.5, 23.0 ], [ 30.5, 23.5 ], [ 31.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 23.5 ], [ 31.5, 23.0 ], [ 31.0, 23.0 ], [ 31.0, 23.5 ], [ 31.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 23.5 ], [ 32.0, 23.0 ], [ 31.5, 23.0 ], [ 31.5, 23.5 ], [ 32.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 23.5 ], [ 32.5, 23.0 ], [ 32.0, 23.0 ], [ 32.0, 23.5 ], [ 32.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 23.5 ], [ 33.0, 23.0 ], [ 32.5, 23.0 ], [ 32.5, 23.5 ], [ 33.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 23.5 ], [ 33.5, 23.0 ], [ 33.0, 23.0 ], [ 33.0, 23.5 ], [ 33.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 23.5 ], [ 34.0, 23.0 ], [ 33.5, 23.0 ], [ 33.5, 23.5 ], [ 34.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 23.5 ], [ 34.5, 23.0 ], [ 34.0, 23.0 ], [ 34.0, 23.5 ], [ 34.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 23.5 ], [ 35.0, 23.0 ], [ 34.5, 23.0 ], [ 34.5, 23.5 ], [ 35.0, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 23.5 ], [ 35.5, 23.0 ], [ 35.0, 23.0 ], [ 35.0, 23.5 ], [ 35.5, 23.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.5, 24.0 ], [ -15.5, 23.5 ], [ -16.0, 23.5 ], [ -16.0, 24.0 ], [ -15.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 24.0 ], [ -15.0, 23.5 ], [ -15.5, 23.5 ], [ -15.5, 24.0 ], [ -15.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 24.0 ], [ -14.5, 23.5 ], [ -15.0, 23.5 ], [ -15.0, 24.0 ], [ -14.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 24.0 ], [ -14.0, 23.5 ], [ -14.5, 23.5 ], [ -14.5, 24.0 ], [ -14.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 24.0 ], [ -13.5, 23.5 ], [ -14.0, 23.5 ], [ -14.0, 24.0 ], [ -13.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 24.0 ], [ -13.0, 23.5 ], [ -13.5, 23.5 ], [ -13.5, 24.0 ], [ -13.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 24.0 ], [ -12.5, 23.5 ], [ -13.0, 23.5 ], [ -13.0, 24.0 ], [ -12.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 24.0 ], [ -12.0, 23.5 ], [ -12.5, 23.5 ], [ -12.5, 24.0 ], [ -12.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 24.0 ], [ -11.5, 23.5 ], [ -12.0, 23.5 ], [ -12.0, 24.0 ], [ -11.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 24.0 ], [ -11.0, 23.5 ], [ -11.5, 23.5 ], [ -11.5, 24.0 ], [ -11.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 24.0 ], [ -10.5, 23.5 ], [ -11.0, 23.5 ], [ -11.0, 24.0 ], [ -10.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 24.0 ], [ -10.0, 23.5 ], [ -10.5, 23.5 ], [ -10.5, 24.0 ], [ -10.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 24.0 ], [ -9.5, 23.5 ], [ -10.0, 23.5 ], [ -10.0, 24.0 ], [ -9.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 24.0 ], [ -9.0, 23.5 ], [ -9.5, 23.5 ], [ -9.5, 24.0 ], [ -9.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 24.0 ], [ -8.5, 23.5 ], [ -9.0, 23.5 ], [ -9.0, 24.0 ], [ -8.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 24.0 ], [ -8.0, 23.5 ], [ -8.5, 23.5 ], [ -8.5, 24.0 ], [ -8.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 24.0 ], [ -7.5, 23.5 ], [ -8.0, 23.5 ], [ -8.0, 24.0 ], [ -7.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 24.0 ], [ -7.0, 23.5 ], [ -7.5, 23.5 ], [ -7.5, 24.0 ], [ -7.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 24.0 ], [ -6.5, 23.5 ], [ -7.0, 23.5 ], [ -7.0, 24.0 ], [ -6.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 24.0 ], [ -6.0, 23.5 ], [ -6.5, 23.5 ], [ -6.5, 24.0 ], [ -6.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 24.0 ], [ -5.5, 23.5 ], [ -6.0, 23.5 ], [ -6.0, 24.0 ], [ -5.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 24.0 ], [ -5.0, 23.5 ], [ -5.5, 23.5 ], [ -5.5, 24.0 ], [ -5.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 24.0 ], [ -4.5, 23.5 ], [ -5.0, 23.5 ], [ -5.0, 24.0 ], [ -4.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 24.0 ], [ -4.0, 23.5 ], [ -4.5, 23.5 ], [ -4.5, 24.0 ], [ -4.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 24.0 ], [ -3.5, 23.5 ], [ -4.0, 23.5 ], [ -4.0, 24.0 ], [ -3.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 24.0 ], [ -3.0, 23.5 ], [ -3.5, 23.5 ], [ -3.5, 24.0 ], [ -3.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 24.0 ], [ -2.5, 23.5 ], [ -3.0, 23.5 ], [ -3.0, 24.0 ], [ -2.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 24.0 ], [ -2.0, 23.5 ], [ -2.5, 23.5 ], [ -2.5, 24.0 ], [ -2.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 24.0 ], [ -1.5, 23.5 ], [ -2.0, 23.5 ], [ -2.0, 24.0 ], [ -1.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 24.0 ], [ -1.0, 23.5 ], [ -1.5, 23.5 ], [ -1.5, 24.0 ], [ -1.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 24.0 ], [ -0.5, 23.5 ], [ -1.0, 23.5 ], [ -1.0, 24.0 ], [ -0.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 24.0 ], [ 0.0, 23.5 ], [ -0.5, 23.5 ], [ -0.5, 24.0 ], [ 0.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 24.0 ], [ 0.5, 23.5 ], [ 0.0, 23.5 ], [ 0.0, 24.0 ], [ 0.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 24.0 ], [ 1.0, 23.5 ], [ 0.5, 23.5 ], [ 0.5, 24.0 ], [ 1.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 24.0 ], [ 1.5, 23.5 ], [ 1.0, 23.5 ], [ 1.0, 24.0 ], [ 1.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 24.0 ], [ 2.0, 23.5 ], [ 1.5, 23.5 ], [ 1.5, 24.0 ], [ 2.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 24.0 ], [ 2.5, 23.5 ], [ 2.0, 23.5 ], [ 2.0, 24.0 ], [ 2.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 24.0 ], [ 3.0, 23.5 ], [ 2.5, 23.5 ], [ 2.5, 24.0 ], [ 3.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 24.0 ], [ 3.5, 23.5 ], [ 3.0, 23.5 ], [ 3.0, 24.0 ], [ 3.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 24.0 ], [ 4.0, 23.5 ], [ 3.5, 23.5 ], [ 3.5, 24.0 ], [ 4.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 24.0 ], [ 4.5, 23.5 ], [ 4.0, 23.5 ], [ 4.0, 24.0 ], [ 4.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 24.0 ], [ 5.0, 23.5 ], [ 4.5, 23.5 ], [ 4.5, 24.0 ], [ 5.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 24.0 ], [ 5.5, 23.5 ], [ 5.0, 23.5 ], [ 5.0, 24.0 ], [ 5.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 24.0 ], [ 6.0, 23.5 ], [ 5.5, 23.5 ], [ 5.5, 24.0 ], [ 6.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 24.0 ], [ 6.5, 23.5 ], [ 6.0, 23.5 ], [ 6.0, 24.0 ], [ 6.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 24.0 ], [ 7.0, 23.5 ], [ 6.5, 23.5 ], [ 6.5, 24.0 ], [ 7.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 24.0 ], [ 7.5, 23.5 ], [ 7.0, 23.5 ], [ 7.0, 24.0 ], [ 7.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 24.0 ], [ 8.0, 23.5 ], [ 7.5, 23.5 ], [ 7.5, 24.0 ], [ 8.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 24.0 ], [ 8.5, 23.5 ], [ 8.0, 23.5 ], [ 8.0, 24.0 ], [ 8.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 24.0 ], [ 9.0, 23.5 ], [ 8.5, 23.5 ], [ 8.5, 24.0 ], [ 9.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 24.0 ], [ 9.5, 23.5 ], [ 9.0, 23.5 ], [ 9.0, 24.0 ], [ 9.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 24.0 ], [ 10.0, 23.5 ], [ 9.5, 23.5 ], [ 9.5, 24.0 ], [ 10.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 24.0 ], [ 10.5, 23.5 ], [ 10.0, 23.5 ], [ 10.0, 24.0 ], [ 10.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 24.0 ], [ 11.0, 23.5 ], [ 10.5, 23.5 ], [ 10.5, 24.0 ], [ 11.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 24.0 ], [ 11.5, 23.5 ], [ 11.0, 23.5 ], [ 11.0, 24.0 ], [ 11.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 24.0 ], [ 12.0, 23.5 ], [ 11.5, 23.5 ], [ 11.5, 24.0 ], [ 12.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 24.0 ], [ 12.5, 23.5 ], [ 12.0, 23.5 ], [ 12.0, 24.0 ], [ 12.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 24.0 ], [ 13.0, 23.5 ], [ 12.5, 23.5 ], [ 12.5, 24.0 ], [ 13.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 24.0 ], [ 13.5, 23.5 ], [ 13.0, 23.5 ], [ 13.0, 24.0 ], [ 13.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 24.0 ], [ 14.0, 23.5 ], [ 13.5, 23.5 ], [ 13.5, 24.0 ], [ 14.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 24.0 ], [ 14.5, 23.5 ], [ 14.0, 23.5 ], [ 14.0, 24.0 ], [ 14.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 24.0 ], [ 15.0, 23.5 ], [ 14.5, 23.5 ], [ 14.5, 24.0 ], [ 15.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 24.0 ], [ 15.5, 23.5 ], [ 15.0, 23.5 ], [ 15.0, 24.0 ], [ 15.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 24.0 ], [ 16.0, 23.5 ], [ 15.5, 23.5 ], [ 15.5, 24.0 ], [ 16.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 24.0 ], [ 16.5, 23.5 ], [ 16.0, 23.5 ], [ 16.0, 24.0 ], [ 16.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 24.0 ], [ 17.0, 23.5 ], [ 16.5, 23.5 ], [ 16.5, 24.0 ], [ 17.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 24.0 ], [ 17.5, 23.5 ], [ 17.0, 23.5 ], [ 17.0, 24.0 ], [ 17.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 24.0 ], [ 18.0, 23.5 ], [ 17.5, 23.5 ], [ 17.5, 24.0 ], [ 18.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 24.0 ], [ 18.5, 23.5 ], [ 18.0, 23.5 ], [ 18.0, 24.0 ], [ 18.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 24.0 ], [ 19.0, 23.5 ], [ 18.5, 23.5 ], [ 18.5, 24.0 ], [ 19.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 24.0 ], [ 19.5, 23.5 ], [ 19.0, 23.5 ], [ 19.0, 24.0 ], [ 19.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 24.0 ], [ 20.0, 23.5 ], [ 19.5, 23.5 ], [ 19.5, 24.0 ], [ 20.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 24.0 ], [ 20.5, 23.5 ], [ 20.0, 23.5 ], [ 20.0, 24.0 ], [ 20.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 24.0 ], [ 21.0, 23.5 ], [ 20.5, 23.5 ], [ 20.5, 24.0 ], [ 21.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 24.0 ], [ 21.5, 23.5 ], [ 21.0, 23.5 ], [ 21.0, 24.0 ], [ 21.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 24.0 ], [ 22.0, 23.5 ], [ 21.5, 23.5 ], [ 21.5, 24.0 ], [ 22.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 24.0 ], [ 22.5, 23.5 ], [ 22.0, 23.5 ], [ 22.0, 24.0 ], [ 22.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 24.0 ], [ 23.0, 23.5 ], [ 22.5, 23.5 ], [ 22.5, 24.0 ], [ 23.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 24.0 ], [ 23.5, 23.5 ], [ 23.0, 23.5 ], [ 23.0, 24.0 ], [ 23.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 24.0 ], [ 24.0, 23.5 ], [ 23.5, 23.5 ], [ 23.5, 24.0 ], [ 24.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 24.0 ], [ 24.5, 23.5 ], [ 24.0, 23.5 ], [ 24.0, 24.0 ], [ 24.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 24.0 ], [ 25.0, 23.5 ], [ 24.5, 23.5 ], [ 24.5, 24.0 ], [ 25.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 24.0 ], [ 25.5, 23.5 ], [ 25.0, 23.5 ], [ 25.0, 24.0 ], [ 25.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 24.0 ], [ 26.0, 23.5 ], [ 25.5, 23.5 ], [ 25.5, 24.0 ], [ 26.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 24.0 ], [ 26.5, 23.5 ], [ 26.0, 23.5 ], [ 26.0, 24.0 ], [ 26.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 24.0 ], [ 27.0, 23.5 ], [ 26.5, 23.5 ], [ 26.5, 24.0 ], [ 27.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 24.0 ], [ 27.5, 23.5 ], [ 27.0, 23.5 ], [ 27.0, 24.0 ], [ 27.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 24.0 ], [ 28.0, 23.5 ], [ 27.5, 23.5 ], [ 27.5, 24.0 ], [ 28.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 24.0 ], [ 28.5, 23.5 ], [ 28.0, 23.5 ], [ 28.0, 24.0 ], [ 28.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 24.0 ], [ 29.0, 23.5 ], [ 28.5, 23.5 ], [ 28.5, 24.0 ], [ 29.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 24.0 ], [ 29.5, 23.5 ], [ 29.0, 23.5 ], [ 29.0, 24.0 ], [ 29.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 24.0 ], [ 30.0, 23.5 ], [ 29.5, 23.5 ], [ 29.5, 24.0 ], [ 30.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 24.0 ], [ 30.5, 23.5 ], [ 30.0, 23.5 ], [ 30.0, 24.0 ], [ 30.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 24.0 ], [ 31.0, 23.5 ], [ 30.5, 23.5 ], [ 30.5, 24.0 ], [ 31.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 24.0 ], [ 31.5, 23.5 ], [ 31.0, 23.5 ], [ 31.0, 24.0 ], [ 31.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 24.0 ], [ 32.0, 23.5 ], [ 31.5, 23.5 ], [ 31.5, 24.0 ], [ 32.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 24.0 ], [ 32.5, 23.5 ], [ 32.0, 23.5 ], [ 32.0, 24.0 ], [ 32.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 24.0 ], [ 33.0, 23.5 ], [ 32.5, 23.5 ], [ 32.5, 24.0 ], [ 33.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 24.0 ], [ 33.5, 23.5 ], [ 33.0, 23.5 ], [ 33.0, 24.0 ], [ 33.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 24.0 ], [ 34.0, 23.5 ], [ 33.5, 23.5 ], [ 33.5, 24.0 ], [ 34.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 24.0 ], [ 34.5, 23.5 ], [ 34.0, 23.5 ], [ 34.0, 24.0 ], [ 34.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 24.0 ], [ 35.0, 23.5 ], [ 34.5, 23.5 ], [ 34.5, 24.0 ], [ 35.0, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 24.0 ], [ 35.5, 23.5 ], [ 35.0, 23.5 ], [ 35.0, 24.0 ], [ 35.5, 24.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, 24.5 ], [ -15.0, 24.0 ], [ -15.5, 24.0 ], [ -15.5, 24.5 ], [ -15.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 24.5 ], [ -14.5, 24.0 ], [ -15.0, 24.0 ], [ -15.0, 24.5 ], [ -14.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 24.5 ], [ -14.0, 24.0 ], [ -14.5, 24.0 ], [ -14.5, 24.5 ], [ -14.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 24.5 ], [ -13.5, 24.0 ], [ -14.0, 24.0 ], [ -14.0, 24.5 ], [ -13.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 24.5 ], [ -13.0, 24.0 ], [ -13.5, 24.0 ], [ -13.5, 24.5 ], [ -13.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 24.5 ], [ -12.5, 24.0 ], [ -13.0, 24.0 ], [ -13.0, 24.5 ], [ -12.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 24.5 ], [ -12.0, 24.0 ], [ -12.5, 24.0 ], [ -12.5, 24.5 ], [ -12.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 24.5 ], [ -11.5, 24.0 ], [ -12.0, 24.0 ], [ -12.0, 24.5 ], [ -11.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 24.5 ], [ -11.0, 24.0 ], [ -11.5, 24.0 ], [ -11.5, 24.5 ], [ -11.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 24.5 ], [ -10.5, 24.0 ], [ -11.0, 24.0 ], [ -11.0, 24.5 ], [ -10.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 24.5 ], [ -10.0, 24.0 ], [ -10.5, 24.0 ], [ -10.5, 24.5 ], [ -10.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 24.5 ], [ -9.5, 24.0 ], [ -10.0, 24.0 ], [ -10.0, 24.5 ], [ -9.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 24.5 ], [ -9.0, 24.0 ], [ -9.5, 24.0 ], [ -9.5, 24.5 ], [ -9.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 24.5 ], [ -8.5, 24.0 ], [ -9.0, 24.0 ], [ -9.0, 24.5 ], [ -8.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 24.5 ], [ -8.0, 24.0 ], [ -8.5, 24.0 ], [ -8.5, 24.5 ], [ -8.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 24.5 ], [ -7.5, 24.0 ], [ -8.0, 24.0 ], [ -8.0, 24.5 ], [ -7.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 24.5 ], [ -7.0, 24.0 ], [ -7.5, 24.0 ], [ -7.5, 24.5 ], [ -7.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 24.5 ], [ -6.5, 24.0 ], [ -7.0, 24.0 ], [ -7.0, 24.5 ], [ -6.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 24.5 ], [ -6.0, 24.0 ], [ -6.5, 24.0 ], [ -6.5, 24.5 ], [ -6.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 24.5 ], [ -5.5, 24.0 ], [ -6.0, 24.0 ], [ -6.0, 24.5 ], [ -5.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 24.5 ], [ -5.0, 24.0 ], [ -5.5, 24.0 ], [ -5.5, 24.5 ], [ -5.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 24.5 ], [ -4.5, 24.0 ], [ -5.0, 24.0 ], [ -5.0, 24.5 ], [ -4.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 24.5 ], [ -4.0, 24.0 ], [ -4.5, 24.0 ], [ -4.5, 24.5 ], [ -4.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 24.5 ], [ -3.5, 24.0 ], [ -4.0, 24.0 ], [ -4.0, 24.5 ], [ -3.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 24.5 ], [ -3.0, 24.0 ], [ -3.5, 24.0 ], [ -3.5, 24.5 ], [ -3.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 24.5 ], [ -2.5, 24.0 ], [ -3.0, 24.0 ], [ -3.0, 24.5 ], [ -2.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 24.5 ], [ -2.0, 24.0 ], [ -2.5, 24.0 ], [ -2.5, 24.5 ], [ -2.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 24.5 ], [ -1.5, 24.0 ], [ -2.0, 24.0 ], [ -2.0, 24.5 ], [ -1.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 24.5 ], [ -1.0, 24.0 ], [ -1.5, 24.0 ], [ -1.5, 24.5 ], [ -1.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 24.5 ], [ -0.5, 24.0 ], [ -1.0, 24.0 ], [ -1.0, 24.5 ], [ -0.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 24.5 ], [ 0.0, 24.0 ], [ -0.5, 24.0 ], [ -0.5, 24.5 ], [ 0.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 24.5 ], [ 0.5, 24.0 ], [ 0.0, 24.0 ], [ 0.0, 24.5 ], [ 0.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 24.5 ], [ 1.0, 24.0 ], [ 0.5, 24.0 ], [ 0.5, 24.5 ], [ 1.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 24.5 ], [ 1.5, 24.0 ], [ 1.0, 24.0 ], [ 1.0, 24.5 ], [ 1.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 24.5 ], [ 2.0, 24.0 ], [ 1.5, 24.0 ], [ 1.5, 24.5 ], [ 2.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 24.5 ], [ 2.5, 24.0 ], [ 2.0, 24.0 ], [ 2.0, 24.5 ], [ 2.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 24.5 ], [ 3.0, 24.0 ], [ 2.5, 24.0 ], [ 2.5, 24.5 ], [ 3.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 24.5 ], [ 3.5, 24.0 ], [ 3.0, 24.0 ], [ 3.0, 24.5 ], [ 3.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 24.5 ], [ 4.0, 24.0 ], [ 3.5, 24.0 ], [ 3.5, 24.5 ], [ 4.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 24.5 ], [ 4.5, 24.0 ], [ 4.0, 24.0 ], [ 4.0, 24.5 ], [ 4.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 24.5 ], [ 5.0, 24.0 ], [ 4.5, 24.0 ], [ 4.5, 24.5 ], [ 5.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 24.5 ], [ 5.5, 24.0 ], [ 5.0, 24.0 ], [ 5.0, 24.5 ], [ 5.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 24.5 ], [ 6.0, 24.0 ], [ 5.5, 24.0 ], [ 5.5, 24.5 ], [ 6.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 24.5 ], [ 6.5, 24.0 ], [ 6.0, 24.0 ], [ 6.0, 24.5 ], [ 6.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 24.5 ], [ 7.0, 24.0 ], [ 6.5, 24.0 ], [ 6.5, 24.5 ], [ 7.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 24.5 ], [ 7.5, 24.0 ], [ 7.0, 24.0 ], [ 7.0, 24.5 ], [ 7.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 24.5 ], [ 8.0, 24.0 ], [ 7.5, 24.0 ], [ 7.5, 24.5 ], [ 8.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 24.5 ], [ 8.5, 24.0 ], [ 8.0, 24.0 ], [ 8.0, 24.5 ], [ 8.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 24.5 ], [ 9.0, 24.0 ], [ 8.5, 24.0 ], [ 8.5, 24.5 ], [ 9.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 24.5 ], [ 9.5, 24.0 ], [ 9.0, 24.0 ], [ 9.0, 24.5 ], [ 9.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 24.5 ], [ 10.0, 24.0 ], [ 9.5, 24.0 ], [ 9.5, 24.5 ], [ 10.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 24.5 ], [ 10.5, 24.0 ], [ 10.0, 24.0 ], [ 10.0, 24.5 ], [ 10.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 24.5 ], [ 11.0, 24.0 ], [ 10.5, 24.0 ], [ 10.5, 24.5 ], [ 11.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 24.5 ], [ 11.5, 24.0 ], [ 11.0, 24.0 ], [ 11.0, 24.5 ], [ 11.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 24.5 ], [ 12.0, 24.0 ], [ 11.5, 24.0 ], [ 11.5, 24.5 ], [ 12.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 24.5 ], [ 12.5, 24.0 ], [ 12.0, 24.0 ], [ 12.0, 24.5 ], [ 12.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 24.5 ], [ 13.0, 24.0 ], [ 12.5, 24.0 ], [ 12.5, 24.5 ], [ 13.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 24.5 ], [ 13.5, 24.0 ], [ 13.0, 24.0 ], [ 13.0, 24.5 ], [ 13.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 24.5 ], [ 14.0, 24.0 ], [ 13.5, 24.0 ], [ 13.5, 24.5 ], [ 14.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 24.5 ], [ 14.5, 24.0 ], [ 14.0, 24.0 ], [ 14.0, 24.5 ], [ 14.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 24.5 ], [ 15.0, 24.0 ], [ 14.5, 24.0 ], [ 14.5, 24.5 ], [ 15.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 24.5 ], [ 15.5, 24.0 ], [ 15.0, 24.0 ], [ 15.0, 24.5 ], [ 15.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 24.5 ], [ 16.0, 24.0 ], [ 15.5, 24.0 ], [ 15.5, 24.5 ], [ 16.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 24.5 ], [ 16.5, 24.0 ], [ 16.0, 24.0 ], [ 16.0, 24.5 ], [ 16.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 24.5 ], [ 17.0, 24.0 ], [ 16.5, 24.0 ], [ 16.5, 24.5 ], [ 17.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 24.5 ], [ 17.5, 24.0 ], [ 17.0, 24.0 ], [ 17.0, 24.5 ], [ 17.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 24.5 ], [ 18.0, 24.0 ], [ 17.5, 24.0 ], [ 17.5, 24.5 ], [ 18.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 24.5 ], [ 18.5, 24.0 ], [ 18.0, 24.0 ], [ 18.0, 24.5 ], [ 18.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 24.5 ], [ 19.0, 24.0 ], [ 18.5, 24.0 ], [ 18.5, 24.5 ], [ 19.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 24.5 ], [ 19.5, 24.0 ], [ 19.0, 24.0 ], [ 19.0, 24.5 ], [ 19.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 24.5 ], [ 20.0, 24.0 ], [ 19.5, 24.0 ], [ 19.5, 24.5 ], [ 20.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 24.5 ], [ 20.5, 24.0 ], [ 20.0, 24.0 ], [ 20.0, 24.5 ], [ 20.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 24.5 ], [ 21.0, 24.0 ], [ 20.5, 24.0 ], [ 20.5, 24.5 ], [ 21.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 24.5 ], [ 21.5, 24.0 ], [ 21.0, 24.0 ], [ 21.0, 24.5 ], [ 21.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 24.5 ], [ 22.0, 24.0 ], [ 21.5, 24.0 ], [ 21.5, 24.5 ], [ 22.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 24.5 ], [ 22.5, 24.0 ], [ 22.0, 24.0 ], [ 22.0, 24.5 ], [ 22.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 24.5 ], [ 23.0, 24.0 ], [ 22.5, 24.0 ], [ 22.5, 24.5 ], [ 23.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 24.5 ], [ 23.5, 24.0 ], [ 23.0, 24.0 ], [ 23.0, 24.5 ], [ 23.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 24.5 ], [ 24.0, 24.0 ], [ 23.5, 24.0 ], [ 23.5, 24.5 ], [ 24.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 24.5 ], [ 24.5, 24.0 ], [ 24.0, 24.0 ], [ 24.0, 24.5 ], [ 24.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 24.5 ], [ 25.0, 24.0 ], [ 24.5, 24.0 ], [ 24.5, 24.5 ], [ 25.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 24.5 ], [ 25.5, 24.0 ], [ 25.0, 24.0 ], [ 25.0, 24.5 ], [ 25.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 24.5 ], [ 26.0, 24.0 ], [ 25.5, 24.0 ], [ 25.5, 24.5 ], [ 26.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 24.5 ], [ 26.5, 24.0 ], [ 26.0, 24.0 ], [ 26.0, 24.5 ], [ 26.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 24.5 ], [ 27.0, 24.0 ], [ 26.5, 24.0 ], [ 26.5, 24.5 ], [ 27.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 24.5 ], [ 27.5, 24.0 ], [ 27.0, 24.0 ], [ 27.0, 24.5 ], [ 27.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 24.5 ], [ 28.0, 24.0 ], [ 27.5, 24.0 ], [ 27.5, 24.5 ], [ 28.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 24.5 ], [ 28.5, 24.0 ], [ 28.0, 24.0 ], [ 28.0, 24.5 ], [ 28.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 24.5 ], [ 29.0, 24.0 ], [ 28.5, 24.0 ], [ 28.5, 24.5 ], [ 29.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 24.5 ], [ 29.5, 24.0 ], [ 29.0, 24.0 ], [ 29.0, 24.5 ], [ 29.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 24.5 ], [ 30.0, 24.0 ], [ 29.5, 24.0 ], [ 29.5, 24.5 ], [ 30.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 24.5 ], [ 30.5, 24.0 ], [ 30.0, 24.0 ], [ 30.0, 24.5 ], [ 30.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 24.5 ], [ 31.0, 24.0 ], [ 30.5, 24.0 ], [ 30.5, 24.5 ], [ 31.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 24.5 ], [ 31.5, 24.0 ], [ 31.0, 24.0 ], [ 31.0, 24.5 ], [ 31.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 24.5 ], [ 32.0, 24.0 ], [ 31.5, 24.0 ], [ 31.5, 24.5 ], [ 32.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 24.5 ], [ 32.5, 24.0 ], [ 32.0, 24.0 ], [ 32.0, 24.5 ], [ 32.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 24.5 ], [ 33.0, 24.0 ], [ 32.5, 24.0 ], [ 32.5, 24.5 ], [ 33.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 24.5 ], [ 33.5, 24.0 ], [ 33.0, 24.0 ], [ 33.0, 24.5 ], [ 33.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 24.5 ], [ 34.0, 24.0 ], [ 33.5, 24.0 ], [ 33.5, 24.5 ], [ 34.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 24.5 ], [ 34.5, 24.0 ], [ 34.0, 24.0 ], [ 34.0, 24.5 ], [ 34.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 24.5 ], [ 35.0, 24.0 ], [ 34.5, 24.0 ], [ 34.5, 24.5 ], [ 35.0, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.5, 24.5 ], [ 35.5, 24.0 ], [ 35.0, 24.0 ], [ 35.0, 24.5 ], [ 35.5, 24.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.5, 25.0 ], [ -14.5, 24.5 ], [ -15.0, 24.5 ], [ -15.0, 25.0 ], [ -14.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 25.0 ], [ -14.0, 24.5 ], [ -14.5, 24.5 ], [ -14.5, 25.0 ], [ -14.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 25.0 ], [ -13.5, 24.5 ], [ -14.0, 24.5 ], [ -14.0, 25.0 ], [ -13.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 25.0 ], [ -13.0, 24.5 ], [ -13.5, 24.5 ], [ -13.5, 25.0 ], [ -13.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 25.0 ], [ -12.5, 24.5 ], [ -13.0, 24.5 ], [ -13.0, 25.0 ], [ -12.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 25.0 ], [ -12.0, 24.5 ], [ -12.5, 24.5 ], [ -12.5, 25.0 ], [ -12.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 25.0 ], [ -11.5, 24.5 ], [ -12.0, 24.5 ], [ -12.0, 25.0 ], [ -11.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 25.0 ], [ -11.0, 24.5 ], [ -11.5, 24.5 ], [ -11.5, 25.0 ], [ -11.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 25.0 ], [ -10.5, 24.5 ], [ -11.0, 24.5 ], [ -11.0, 25.0 ], [ -10.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 25.0 ], [ -10.0, 24.5 ], [ -10.5, 24.5 ], [ -10.5, 25.0 ], [ -10.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 25.0 ], [ -9.5, 24.5 ], [ -10.0, 24.5 ], [ -10.0, 25.0 ], [ -9.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 25.0 ], [ -9.0, 24.5 ], [ -9.5, 24.5 ], [ -9.5, 25.0 ], [ -9.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 25.0 ], [ -8.5, 24.5 ], [ -9.0, 24.5 ], [ -9.0, 25.0 ], [ -8.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 25.0 ], [ -8.0, 24.5 ], [ -8.5, 24.5 ], [ -8.5, 25.0 ], [ -8.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 25.0 ], [ -7.5, 24.5 ], [ -8.0, 24.5 ], [ -8.0, 25.0 ], [ -7.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 25.0 ], [ -7.0, 24.5 ], [ -7.5, 24.5 ], [ -7.5, 25.0 ], [ -7.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 25.0 ], [ -6.5, 24.5 ], [ -7.0, 24.5 ], [ -7.0, 25.0 ], [ -6.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 25.0 ], [ -6.0, 24.5 ], [ -6.5, 24.5 ], [ -6.5, 25.0 ], [ -6.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 25.0 ], [ -5.5, 24.5 ], [ -6.0, 24.5 ], [ -6.0, 25.0 ], [ -5.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 25.0 ], [ -5.0, 24.5 ], [ -5.5, 24.5 ], [ -5.5, 25.0 ], [ -5.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 25.0 ], [ -4.5, 24.5 ], [ -5.0, 24.5 ], [ -5.0, 25.0 ], [ -4.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 25.0 ], [ -4.0, 24.5 ], [ -4.5, 24.5 ], [ -4.5, 25.0 ], [ -4.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 25.0 ], [ -3.5, 24.5 ], [ -4.0, 24.5 ], [ -4.0, 25.0 ], [ -3.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 25.0 ], [ -3.0, 24.5 ], [ -3.5, 24.5 ], [ -3.5, 25.0 ], [ -3.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 25.0 ], [ -2.5, 24.5 ], [ -3.0, 24.5 ], [ -3.0, 25.0 ], [ -2.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 25.0 ], [ -2.0, 24.5 ], [ -2.5, 24.5 ], [ -2.5, 25.0 ], [ -2.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 25.0 ], [ -1.5, 24.5 ], [ -2.0, 24.5 ], [ -2.0, 25.0 ], [ -1.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 25.0 ], [ -1.0, 24.5 ], [ -1.5, 24.5 ], [ -1.5, 25.0 ], [ -1.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 25.0 ], [ -0.5, 24.5 ], [ -1.0, 24.5 ], [ -1.0, 25.0 ], [ -0.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 25.0 ], [ 0.0, 24.5 ], [ -0.5, 24.5 ], [ -0.5, 25.0 ], [ 0.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 25.0 ], [ 0.5, 24.5 ], [ 0.0, 24.5 ], [ 0.0, 25.0 ], [ 0.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 25.0 ], [ 1.0, 24.5 ], [ 0.5, 24.5 ], [ 0.5, 25.0 ], [ 1.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 25.0 ], [ 1.5, 24.5 ], [ 1.0, 24.5 ], [ 1.0, 25.0 ], [ 1.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 25.0 ], [ 2.0, 24.5 ], [ 1.5, 24.5 ], [ 1.5, 25.0 ], [ 2.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 25.0 ], [ 2.5, 24.5 ], [ 2.0, 24.5 ], [ 2.0, 25.0 ], [ 2.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 25.0 ], [ 3.0, 24.5 ], [ 2.5, 24.5 ], [ 2.5, 25.0 ], [ 3.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 25.0 ], [ 3.5, 24.5 ], [ 3.0, 24.5 ], [ 3.0, 25.0 ], [ 3.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 25.0 ], [ 4.0, 24.5 ], [ 3.5, 24.5 ], [ 3.5, 25.0 ], [ 4.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 25.0 ], [ 4.5, 24.5 ], [ 4.0, 24.5 ], [ 4.0, 25.0 ], [ 4.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 25.0 ], [ 5.0, 24.5 ], [ 4.5, 24.5 ], [ 4.5, 25.0 ], [ 5.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 25.0 ], [ 5.5, 24.5 ], [ 5.0, 24.5 ], [ 5.0, 25.0 ], [ 5.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 25.0 ], [ 6.0, 24.5 ], [ 5.5, 24.5 ], [ 5.5, 25.0 ], [ 6.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 25.0 ], [ 6.5, 24.5 ], [ 6.0, 24.5 ], [ 6.0, 25.0 ], [ 6.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 25.0 ], [ 7.0, 24.5 ], [ 6.5, 24.5 ], [ 6.5, 25.0 ], [ 7.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 25.0 ], [ 7.5, 24.5 ], [ 7.0, 24.5 ], [ 7.0, 25.0 ], [ 7.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 25.0 ], [ 8.0, 24.5 ], [ 7.5, 24.5 ], [ 7.5, 25.0 ], [ 8.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 25.0 ], [ 8.5, 24.5 ], [ 8.0, 24.5 ], [ 8.0, 25.0 ], [ 8.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 25.0 ], [ 9.0, 24.5 ], [ 8.5, 24.5 ], [ 8.5, 25.0 ], [ 9.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 25.0 ], [ 9.5, 24.5 ], [ 9.0, 24.5 ], [ 9.0, 25.0 ], [ 9.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 25.0 ], [ 10.0, 24.5 ], [ 9.5, 24.5 ], [ 9.5, 25.0 ], [ 10.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 25.0 ], [ 10.5, 24.5 ], [ 10.0, 24.5 ], [ 10.0, 25.0 ], [ 10.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 25.0 ], [ 11.0, 24.5 ], [ 10.5, 24.5 ], [ 10.5, 25.0 ], [ 11.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 25.0 ], [ 11.5, 24.5 ], [ 11.0, 24.5 ], [ 11.0, 25.0 ], [ 11.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 25.0 ], [ 12.0, 24.5 ], [ 11.5, 24.5 ], [ 11.5, 25.0 ], [ 12.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 25.0 ], [ 12.5, 24.5 ], [ 12.0, 24.5 ], [ 12.0, 25.0 ], [ 12.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 25.0 ], [ 13.0, 24.5 ], [ 12.5, 24.5 ], [ 12.5, 25.0 ], [ 13.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 25.0 ], [ 13.5, 24.5 ], [ 13.0, 24.5 ], [ 13.0, 25.0 ], [ 13.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 25.0 ], [ 14.0, 24.5 ], [ 13.5, 24.5 ], [ 13.5, 25.0 ], [ 14.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 25.0 ], [ 14.5, 24.5 ], [ 14.0, 24.5 ], [ 14.0, 25.0 ], [ 14.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 25.0 ], [ 15.0, 24.5 ], [ 14.5, 24.5 ], [ 14.5, 25.0 ], [ 15.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 25.0 ], [ 15.5, 24.5 ], [ 15.0, 24.5 ], [ 15.0, 25.0 ], [ 15.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 25.0 ], [ 16.0, 24.5 ], [ 15.5, 24.5 ], [ 15.5, 25.0 ], [ 16.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 25.0 ], [ 16.5, 24.5 ], [ 16.0, 24.5 ], [ 16.0, 25.0 ], [ 16.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 25.0 ], [ 17.0, 24.5 ], [ 16.5, 24.5 ], [ 16.5, 25.0 ], [ 17.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 25.0 ], [ 17.5, 24.5 ], [ 17.0, 24.5 ], [ 17.0, 25.0 ], [ 17.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 25.0 ], [ 18.0, 24.5 ], [ 17.5, 24.5 ], [ 17.5, 25.0 ], [ 18.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 25.0 ], [ 18.5, 24.5 ], [ 18.0, 24.5 ], [ 18.0, 25.0 ], [ 18.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 25.0 ], [ 19.0, 24.5 ], [ 18.5, 24.5 ], [ 18.5, 25.0 ], [ 19.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 25.0 ], [ 19.5, 24.5 ], [ 19.0, 24.5 ], [ 19.0, 25.0 ], [ 19.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 25.0 ], [ 20.0, 24.5 ], [ 19.5, 24.5 ], [ 19.5, 25.0 ], [ 20.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 25.0 ], [ 20.5, 24.5 ], [ 20.0, 24.5 ], [ 20.0, 25.0 ], [ 20.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 25.0 ], [ 21.0, 24.5 ], [ 20.5, 24.5 ], [ 20.5, 25.0 ], [ 21.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 25.0 ], [ 21.5, 24.5 ], [ 21.0, 24.5 ], [ 21.0, 25.0 ], [ 21.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 25.0 ], [ 22.0, 24.5 ], [ 21.5, 24.5 ], [ 21.5, 25.0 ], [ 22.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 25.0 ], [ 22.5, 24.5 ], [ 22.0, 24.5 ], [ 22.0, 25.0 ], [ 22.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 25.0 ], [ 23.0, 24.5 ], [ 22.5, 24.5 ], [ 22.5, 25.0 ], [ 23.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 25.0 ], [ 23.5, 24.5 ], [ 23.0, 24.5 ], [ 23.0, 25.0 ], [ 23.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 25.0 ], [ 24.0, 24.5 ], [ 23.5, 24.5 ], [ 23.5, 25.0 ], [ 24.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 25.0 ], [ 24.5, 24.5 ], [ 24.0, 24.5 ], [ 24.0, 25.0 ], [ 24.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 25.0 ], [ 25.0, 24.5 ], [ 24.5, 24.5 ], [ 24.5, 25.0 ], [ 25.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 25.0 ], [ 25.5, 24.5 ], [ 25.0, 24.5 ], [ 25.0, 25.0 ], [ 25.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 25.0 ], [ 26.0, 24.5 ], [ 25.5, 24.5 ], [ 25.5, 25.0 ], [ 26.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 25.0 ], [ 26.5, 24.5 ], [ 26.0, 24.5 ], [ 26.0, 25.0 ], [ 26.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 25.0 ], [ 27.0, 24.5 ], [ 26.5, 24.5 ], [ 26.5, 25.0 ], [ 27.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 25.0 ], [ 27.5, 24.5 ], [ 27.0, 24.5 ], [ 27.0, 25.0 ], [ 27.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 25.0 ], [ 28.0, 24.5 ], [ 27.5, 24.5 ], [ 27.5, 25.0 ], [ 28.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 25.0 ], [ 28.5, 24.5 ], [ 28.0, 24.5 ], [ 28.0, 25.0 ], [ 28.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 25.0 ], [ 29.0, 24.5 ], [ 28.5, 24.5 ], [ 28.5, 25.0 ], [ 29.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 25.0 ], [ 29.5, 24.5 ], [ 29.0, 24.5 ], [ 29.0, 25.0 ], [ 29.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 25.0 ], [ 30.0, 24.5 ], [ 29.5, 24.5 ], [ 29.5, 25.0 ], [ 30.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 25.0 ], [ 30.5, 24.5 ], [ 30.0, 24.5 ], [ 30.0, 25.0 ], [ 30.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 25.0 ], [ 31.0, 24.5 ], [ 30.5, 24.5 ], [ 30.5, 25.0 ], [ 31.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 25.0 ], [ 31.5, 24.5 ], [ 31.0, 24.5 ], [ 31.0, 25.0 ], [ 31.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 25.0 ], [ 32.0, 24.5 ], [ 31.5, 24.5 ], [ 31.5, 25.0 ], [ 32.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 25.0 ], [ 32.5, 24.5 ], [ 32.0, 24.5 ], [ 32.0, 25.0 ], [ 32.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 25.0 ], [ 33.0, 24.5 ], [ 32.5, 24.5 ], [ 32.5, 25.0 ], [ 33.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 25.0 ], [ 33.5, 24.5 ], [ 33.0, 24.5 ], [ 33.0, 25.0 ], [ 33.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 25.0 ], [ 34.0, 24.5 ], [ 33.5, 24.5 ], [ 33.5, 25.0 ], [ 34.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 25.0 ], [ 34.5, 24.5 ], [ 34.0, 24.5 ], [ 34.0, 25.0 ], [ 34.5, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 25.0 ], [ 35.0, 24.5 ], [ 34.5, 24.5 ], [ 34.5, 25.0 ], [ 35.0, 25.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 25.5 ], [ -14.0, 25.0 ], [ -14.5, 25.0 ], [ -14.5, 25.5 ], [ -14.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 25.5 ], [ -13.5, 25.0 ], [ -14.0, 25.0 ], [ -14.0, 25.5 ], [ -13.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 25.5 ], [ -13.0, 25.0 ], [ -13.5, 25.0 ], [ -13.5, 25.5 ], [ -13.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 25.5 ], [ -12.5, 25.0 ], [ -13.0, 25.0 ], [ -13.0, 25.5 ], [ -12.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 25.5 ], [ -12.0, 25.0 ], [ -12.5, 25.0 ], [ -12.5, 25.5 ], [ -12.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 25.5 ], [ -11.5, 25.0 ], [ -12.0, 25.0 ], [ -12.0, 25.5 ], [ -11.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 25.5 ], [ -11.0, 25.0 ], [ -11.5, 25.0 ], [ -11.5, 25.5 ], [ -11.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 25.5 ], [ -10.5, 25.0 ], [ -11.0, 25.0 ], [ -11.0, 25.5 ], [ -10.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 25.5 ], [ -10.0, 25.0 ], [ -10.5, 25.0 ], [ -10.5, 25.5 ], [ -10.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 25.5 ], [ -9.5, 25.0 ], [ -10.0, 25.0 ], [ -10.0, 25.5 ], [ -9.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 25.5 ], [ -9.0, 25.0 ], [ -9.5, 25.0 ], [ -9.5, 25.5 ], [ -9.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 25.5 ], [ -8.5, 25.0 ], [ -9.0, 25.0 ], [ -9.0, 25.5 ], [ -8.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 25.5 ], [ -8.0, 25.0 ], [ -8.5, 25.0 ], [ -8.5, 25.5 ], [ -8.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 25.5 ], [ -7.5, 25.0 ], [ -8.0, 25.0 ], [ -8.0, 25.5 ], [ -7.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 25.5 ], [ -7.0, 25.0 ], [ -7.5, 25.0 ], [ -7.5, 25.5 ], [ -7.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 25.5 ], [ -6.5, 25.0 ], [ -7.0, 25.0 ], [ -7.0, 25.5 ], [ -6.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 25.5 ], [ -6.0, 25.0 ], [ -6.5, 25.0 ], [ -6.5, 25.5 ], [ -6.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 25.5 ], [ -5.5, 25.0 ], [ -6.0, 25.0 ], [ -6.0, 25.5 ], [ -5.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 25.5 ], [ -5.0, 25.0 ], [ -5.5, 25.0 ], [ -5.5, 25.5 ], [ -5.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 25.5 ], [ -4.5, 25.0 ], [ -5.0, 25.0 ], [ -5.0, 25.5 ], [ -4.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 25.5 ], [ -4.0, 25.0 ], [ -4.5, 25.0 ], [ -4.5, 25.5 ], [ -4.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 25.5 ], [ -3.5, 25.0 ], [ -4.0, 25.0 ], [ -4.0, 25.5 ], [ -3.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 25.5 ], [ -3.0, 25.0 ], [ -3.5, 25.0 ], [ -3.5, 25.5 ], [ -3.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 25.5 ], [ -2.5, 25.0 ], [ -3.0, 25.0 ], [ -3.0, 25.5 ], [ -2.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 25.5 ], [ -2.0, 25.0 ], [ -2.5, 25.0 ], [ -2.5, 25.5 ], [ -2.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 25.5 ], [ -1.5, 25.0 ], [ -2.0, 25.0 ], [ -2.0, 25.5 ], [ -1.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 25.5 ], [ -1.0, 25.0 ], [ -1.5, 25.0 ], [ -1.5, 25.5 ], [ -1.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 25.5 ], [ -0.5, 25.0 ], [ -1.0, 25.0 ], [ -1.0, 25.5 ], [ -0.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 25.5 ], [ 0.0, 25.0 ], [ -0.5, 25.0 ], [ -0.5, 25.5 ], [ 0.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 25.5 ], [ 0.5, 25.0 ], [ 0.0, 25.0 ], [ 0.0, 25.5 ], [ 0.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 25.5 ], [ 1.0, 25.0 ], [ 0.5, 25.0 ], [ 0.5, 25.5 ], [ 1.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 25.5 ], [ 1.5, 25.0 ], [ 1.0, 25.0 ], [ 1.0, 25.5 ], [ 1.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 25.5 ], [ 2.0, 25.0 ], [ 1.5, 25.0 ], [ 1.5, 25.5 ], [ 2.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 25.5 ], [ 2.5, 25.0 ], [ 2.0, 25.0 ], [ 2.0, 25.5 ], [ 2.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 25.5 ], [ 3.0, 25.0 ], [ 2.5, 25.0 ], [ 2.5, 25.5 ], [ 3.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 25.5 ], [ 3.5, 25.0 ], [ 3.0, 25.0 ], [ 3.0, 25.5 ], [ 3.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 25.5 ], [ 4.0, 25.0 ], [ 3.5, 25.0 ], [ 3.5, 25.5 ], [ 4.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 25.5 ], [ 4.5, 25.0 ], [ 4.0, 25.0 ], [ 4.0, 25.5 ], [ 4.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 25.5 ], [ 5.0, 25.0 ], [ 4.5, 25.0 ], [ 4.5, 25.5 ], [ 5.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 25.5 ], [ 5.5, 25.0 ], [ 5.0, 25.0 ], [ 5.0, 25.5 ], [ 5.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 25.5 ], [ 6.0, 25.0 ], [ 5.5, 25.0 ], [ 5.5, 25.5 ], [ 6.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 25.5 ], [ 6.5, 25.0 ], [ 6.0, 25.0 ], [ 6.0, 25.5 ], [ 6.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 25.5 ], [ 7.0, 25.0 ], [ 6.5, 25.0 ], [ 6.5, 25.5 ], [ 7.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 25.5 ], [ 7.5, 25.0 ], [ 7.0, 25.0 ], [ 7.0, 25.5 ], [ 7.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 25.5 ], [ 8.0, 25.0 ], [ 7.5, 25.0 ], [ 7.5, 25.5 ], [ 8.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 25.5 ], [ 8.5, 25.0 ], [ 8.0, 25.0 ], [ 8.0, 25.5 ], [ 8.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 25.5 ], [ 9.0, 25.0 ], [ 8.5, 25.0 ], [ 8.5, 25.5 ], [ 9.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 25.5 ], [ 9.5, 25.0 ], [ 9.0, 25.0 ], [ 9.0, 25.5 ], [ 9.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 25.5 ], [ 10.0, 25.0 ], [ 9.5, 25.0 ], [ 9.5, 25.5 ], [ 10.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 25.5 ], [ 10.5, 25.0 ], [ 10.0, 25.0 ], [ 10.0, 25.5 ], [ 10.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 25.5 ], [ 11.0, 25.0 ], [ 10.5, 25.0 ], [ 10.5, 25.5 ], [ 11.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 25.5 ], [ 11.5, 25.0 ], [ 11.0, 25.0 ], [ 11.0, 25.5 ], [ 11.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 25.5 ], [ 12.0, 25.0 ], [ 11.5, 25.0 ], [ 11.5, 25.5 ], [ 12.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 25.5 ], [ 12.5, 25.0 ], [ 12.0, 25.0 ], [ 12.0, 25.5 ], [ 12.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 25.5 ], [ 13.0, 25.0 ], [ 12.5, 25.0 ], [ 12.5, 25.5 ], [ 13.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 25.5 ], [ 13.5, 25.0 ], [ 13.0, 25.0 ], [ 13.0, 25.5 ], [ 13.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 25.5 ], [ 14.0, 25.0 ], [ 13.5, 25.0 ], [ 13.5, 25.5 ], [ 14.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 25.5 ], [ 14.5, 25.0 ], [ 14.0, 25.0 ], [ 14.0, 25.5 ], [ 14.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 25.5 ], [ 15.0, 25.0 ], [ 14.5, 25.0 ], [ 14.5, 25.5 ], [ 15.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 25.5 ], [ 15.5, 25.0 ], [ 15.0, 25.0 ], [ 15.0, 25.5 ], [ 15.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 25.5 ], [ 16.0, 25.0 ], [ 15.5, 25.0 ], [ 15.5, 25.5 ], [ 16.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 25.5 ], [ 16.5, 25.0 ], [ 16.0, 25.0 ], [ 16.0, 25.5 ], [ 16.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 25.5 ], [ 17.0, 25.0 ], [ 16.5, 25.0 ], [ 16.5, 25.5 ], [ 17.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 25.5 ], [ 17.5, 25.0 ], [ 17.0, 25.0 ], [ 17.0, 25.5 ], [ 17.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 25.5 ], [ 18.0, 25.0 ], [ 17.5, 25.0 ], [ 17.5, 25.5 ], [ 18.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 25.5 ], [ 18.5, 25.0 ], [ 18.0, 25.0 ], [ 18.0, 25.5 ], [ 18.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 25.5 ], [ 19.0, 25.0 ], [ 18.5, 25.0 ], [ 18.5, 25.5 ], [ 19.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 25.5 ], [ 19.5, 25.0 ], [ 19.0, 25.0 ], [ 19.0, 25.5 ], [ 19.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 25.5 ], [ 20.0, 25.0 ], [ 19.5, 25.0 ], [ 19.5, 25.5 ], [ 20.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 25.5 ], [ 20.5, 25.0 ], [ 20.0, 25.0 ], [ 20.0, 25.5 ], [ 20.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 25.5 ], [ 21.0, 25.0 ], [ 20.5, 25.0 ], [ 20.5, 25.5 ], [ 21.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 25.5 ], [ 21.5, 25.0 ], [ 21.0, 25.0 ], [ 21.0, 25.5 ], [ 21.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 25.5 ], [ 22.0, 25.0 ], [ 21.5, 25.0 ], [ 21.5, 25.5 ], [ 22.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 25.5 ], [ 22.5, 25.0 ], [ 22.0, 25.0 ], [ 22.0, 25.5 ], [ 22.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 25.5 ], [ 23.0, 25.0 ], [ 22.5, 25.0 ], [ 22.5, 25.5 ], [ 23.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 25.5 ], [ 23.5, 25.0 ], [ 23.0, 25.0 ], [ 23.0, 25.5 ], [ 23.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 25.5 ], [ 24.0, 25.0 ], [ 23.5, 25.0 ], [ 23.5, 25.5 ], [ 24.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 25.5 ], [ 24.5, 25.0 ], [ 24.0, 25.0 ], [ 24.0, 25.5 ], [ 24.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 25.5 ], [ 25.0, 25.0 ], [ 24.5, 25.0 ], [ 24.5, 25.5 ], [ 25.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 25.5 ], [ 25.5, 25.0 ], [ 25.0, 25.0 ], [ 25.0, 25.5 ], [ 25.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 25.5 ], [ 26.0, 25.0 ], [ 25.5, 25.0 ], [ 25.5, 25.5 ], [ 26.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 25.5 ], [ 26.5, 25.0 ], [ 26.0, 25.0 ], [ 26.0, 25.5 ], [ 26.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 25.5 ], [ 27.0, 25.0 ], [ 26.5, 25.0 ], [ 26.5, 25.5 ], [ 27.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 25.5 ], [ 27.5, 25.0 ], [ 27.0, 25.0 ], [ 27.0, 25.5 ], [ 27.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 25.5 ], [ 28.0, 25.0 ], [ 27.5, 25.0 ], [ 27.5, 25.5 ], [ 28.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 25.5 ], [ 28.5, 25.0 ], [ 28.0, 25.0 ], [ 28.0, 25.5 ], [ 28.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 25.5 ], [ 29.0, 25.0 ], [ 28.5, 25.0 ], [ 28.5, 25.5 ], [ 29.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 25.5 ], [ 29.5, 25.0 ], [ 29.0, 25.0 ], [ 29.0, 25.5 ], [ 29.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 25.5 ], [ 30.0, 25.0 ], [ 29.5, 25.0 ], [ 29.5, 25.5 ], [ 30.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 25.5 ], [ 30.5, 25.0 ], [ 30.0, 25.0 ], [ 30.0, 25.5 ], [ 30.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 25.5 ], [ 31.0, 25.0 ], [ 30.5, 25.0 ], [ 30.5, 25.5 ], [ 31.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 25.5 ], [ 31.5, 25.0 ], [ 31.0, 25.0 ], [ 31.0, 25.5 ], [ 31.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 25.5 ], [ 32.0, 25.0 ], [ 31.5, 25.0 ], [ 31.5, 25.5 ], [ 32.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 25.5 ], [ 32.5, 25.0 ], [ 32.0, 25.0 ], [ 32.0, 25.5 ], [ 32.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 25.5 ], [ 33.0, 25.0 ], [ 32.5, 25.0 ], [ 32.5, 25.5 ], [ 33.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 25.5 ], [ 33.5, 25.0 ], [ 33.0, 25.0 ], [ 33.0, 25.5 ], [ 33.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 25.5 ], [ 34.0, 25.0 ], [ 33.5, 25.0 ], [ 33.5, 25.5 ], [ 34.0, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 25.5 ], [ 34.5, 25.0 ], [ 34.0, 25.0 ], [ 34.0, 25.5 ], [ 34.5, 25.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 26.0 ], [ -14.0, 25.5 ], [ -14.5, 25.5 ], [ -14.5, 26.0 ], [ -14.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 26.0 ], [ -13.5, 25.5 ], [ -14.0, 25.5 ], [ -14.0, 26.0 ], [ -13.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 26.0 ], [ -13.0, 25.5 ], [ -13.5, 25.5 ], [ -13.5, 26.0 ], [ -13.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 26.0 ], [ -12.5, 25.5 ], [ -13.0, 25.5 ], [ -13.0, 26.0 ], [ -12.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 26.0 ], [ -12.0, 25.5 ], [ -12.5, 25.5 ], [ -12.5, 26.0 ], [ -12.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 26.0 ], [ -11.5, 25.5 ], [ -12.0, 25.5 ], [ -12.0, 26.0 ], [ -11.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 26.0 ], [ -11.0, 25.5 ], [ -11.5, 25.5 ], [ -11.5, 26.0 ], [ -11.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 26.0 ], [ -10.5, 25.5 ], [ -11.0, 25.5 ], [ -11.0, 26.0 ], [ -10.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 26.0 ], [ -10.0, 25.5 ], [ -10.5, 25.5 ], [ -10.5, 26.0 ], [ -10.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 26.0 ], [ -9.5, 25.5 ], [ -10.0, 25.5 ], [ -10.0, 26.0 ], [ -9.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 26.0 ], [ -9.0, 25.5 ], [ -9.5, 25.5 ], [ -9.5, 26.0 ], [ -9.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 26.0 ], [ -8.5, 25.5 ], [ -9.0, 25.5 ], [ -9.0, 26.0 ], [ -8.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 26.0 ], [ -8.0, 25.5 ], [ -8.5, 25.5 ], [ -8.5, 26.0 ], [ -8.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 26.0 ], [ -7.5, 25.5 ], [ -8.0, 25.5 ], [ -8.0, 26.0 ], [ -7.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 26.0 ], [ -7.0, 25.5 ], [ -7.5, 25.5 ], [ -7.5, 26.0 ], [ -7.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 26.0 ], [ -6.5, 25.5 ], [ -7.0, 25.5 ], [ -7.0, 26.0 ], [ -6.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 26.0 ], [ -6.0, 25.5 ], [ -6.5, 25.5 ], [ -6.5, 26.0 ], [ -6.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 26.0 ], [ -5.5, 25.5 ], [ -6.0, 25.5 ], [ -6.0, 26.0 ], [ -5.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 26.0 ], [ -5.0, 25.5 ], [ -5.5, 25.5 ], [ -5.5, 26.0 ], [ -5.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 26.0 ], [ -4.5, 25.5 ], [ -5.0, 25.5 ], [ -5.0, 26.0 ], [ -4.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 26.0 ], [ -4.0, 25.5 ], [ -4.5, 25.5 ], [ -4.5, 26.0 ], [ -4.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 26.0 ], [ -3.5, 25.5 ], [ -4.0, 25.5 ], [ -4.0, 26.0 ], [ -3.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 26.0 ], [ -3.0, 25.5 ], [ -3.5, 25.5 ], [ -3.5, 26.0 ], [ -3.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 26.0 ], [ -2.5, 25.5 ], [ -3.0, 25.5 ], [ -3.0, 26.0 ], [ -2.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 26.0 ], [ -2.0, 25.5 ], [ -2.5, 25.5 ], [ -2.5, 26.0 ], [ -2.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 26.0 ], [ -1.5, 25.5 ], [ -2.0, 25.5 ], [ -2.0, 26.0 ], [ -1.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 26.0 ], [ -1.0, 25.5 ], [ -1.5, 25.5 ], [ -1.5, 26.0 ], [ -1.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 26.0 ], [ -0.5, 25.5 ], [ -1.0, 25.5 ], [ -1.0, 26.0 ], [ -0.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 26.0 ], [ 0.0, 25.5 ], [ -0.5, 25.5 ], [ -0.5, 26.0 ], [ 0.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 26.0 ], [ 0.5, 25.5 ], [ 0.0, 25.5 ], [ 0.0, 26.0 ], [ 0.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 26.0 ], [ 1.0, 25.5 ], [ 0.5, 25.5 ], [ 0.5, 26.0 ], [ 1.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 26.0 ], [ 1.5, 25.5 ], [ 1.0, 25.5 ], [ 1.0, 26.0 ], [ 1.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 26.0 ], [ 2.0, 25.5 ], [ 1.5, 25.5 ], [ 1.5, 26.0 ], [ 2.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 26.0 ], [ 2.5, 25.5 ], [ 2.0, 25.5 ], [ 2.0, 26.0 ], [ 2.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 26.0 ], [ 3.0, 25.5 ], [ 2.5, 25.5 ], [ 2.5, 26.0 ], [ 3.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 26.0 ], [ 3.5, 25.5 ], [ 3.0, 25.5 ], [ 3.0, 26.0 ], [ 3.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 26.0 ], [ 4.0, 25.5 ], [ 3.5, 25.5 ], [ 3.5, 26.0 ], [ 4.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 26.0 ], [ 4.5, 25.5 ], [ 4.0, 25.5 ], [ 4.0, 26.0 ], [ 4.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 26.0 ], [ 5.0, 25.5 ], [ 4.5, 25.5 ], [ 4.5, 26.0 ], [ 5.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 26.0 ], [ 5.5, 25.5 ], [ 5.0, 25.5 ], [ 5.0, 26.0 ], [ 5.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 26.0 ], [ 6.0, 25.5 ], [ 5.5, 25.5 ], [ 5.5, 26.0 ], [ 6.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 26.0 ], [ 6.5, 25.5 ], [ 6.0, 25.5 ], [ 6.0, 26.0 ], [ 6.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 26.0 ], [ 7.0, 25.5 ], [ 6.5, 25.5 ], [ 6.5, 26.0 ], [ 7.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 26.0 ], [ 7.5, 25.5 ], [ 7.0, 25.5 ], [ 7.0, 26.0 ], [ 7.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 26.0 ], [ 8.0, 25.5 ], [ 7.5, 25.5 ], [ 7.5, 26.0 ], [ 8.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 26.0 ], [ 8.5, 25.5 ], [ 8.0, 25.5 ], [ 8.0, 26.0 ], [ 8.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 26.0 ], [ 9.0, 25.5 ], [ 8.5, 25.5 ], [ 8.5, 26.0 ], [ 9.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 26.0 ], [ 9.5, 25.5 ], [ 9.0, 25.5 ], [ 9.0, 26.0 ], [ 9.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 26.0 ], [ 10.0, 25.5 ], [ 9.5, 25.5 ], [ 9.5, 26.0 ], [ 10.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 26.0 ], [ 10.5, 25.5 ], [ 10.0, 25.5 ], [ 10.0, 26.0 ], [ 10.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 26.0 ], [ 11.0, 25.5 ], [ 10.5, 25.5 ], [ 10.5, 26.0 ], [ 11.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 26.0 ], [ 11.5, 25.5 ], [ 11.0, 25.5 ], [ 11.0, 26.0 ], [ 11.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 26.0 ], [ 12.0, 25.5 ], [ 11.5, 25.5 ], [ 11.5, 26.0 ], [ 12.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 26.0 ], [ 12.5, 25.5 ], [ 12.0, 25.5 ], [ 12.0, 26.0 ], [ 12.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 26.0 ], [ 13.0, 25.5 ], [ 12.5, 25.5 ], [ 12.5, 26.0 ], [ 13.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 26.0 ], [ 13.5, 25.5 ], [ 13.0, 25.5 ], [ 13.0, 26.0 ], [ 13.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 26.0 ], [ 14.0, 25.5 ], [ 13.5, 25.5 ], [ 13.5, 26.0 ], [ 14.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 26.0 ], [ 14.5, 25.5 ], [ 14.0, 25.5 ], [ 14.0, 26.0 ], [ 14.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 26.0 ], [ 15.0, 25.5 ], [ 14.5, 25.5 ], [ 14.5, 26.0 ], [ 15.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 26.0 ], [ 15.5, 25.5 ], [ 15.0, 25.5 ], [ 15.0, 26.0 ], [ 15.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 26.0 ], [ 16.0, 25.5 ], [ 15.5, 25.5 ], [ 15.5, 26.0 ], [ 16.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 26.0 ], [ 16.5, 25.5 ], [ 16.0, 25.5 ], [ 16.0, 26.0 ], [ 16.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 26.0 ], [ 17.0, 25.5 ], [ 16.5, 25.5 ], [ 16.5, 26.0 ], [ 17.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 26.0 ], [ 17.5, 25.5 ], [ 17.0, 25.5 ], [ 17.0, 26.0 ], [ 17.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 26.0 ], [ 18.0, 25.5 ], [ 17.5, 25.5 ], [ 17.5, 26.0 ], [ 18.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 26.0 ], [ 18.5, 25.5 ], [ 18.0, 25.5 ], [ 18.0, 26.0 ], [ 18.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 26.0 ], [ 19.0, 25.5 ], [ 18.5, 25.5 ], [ 18.5, 26.0 ], [ 19.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 26.0 ], [ 19.5, 25.5 ], [ 19.0, 25.5 ], [ 19.0, 26.0 ], [ 19.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 26.0 ], [ 20.0, 25.5 ], [ 19.5, 25.5 ], [ 19.5, 26.0 ], [ 20.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 26.0 ], [ 20.5, 25.5 ], [ 20.0, 25.5 ], [ 20.0, 26.0 ], [ 20.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 26.0 ], [ 21.0, 25.5 ], [ 20.5, 25.5 ], [ 20.5, 26.0 ], [ 21.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 26.0 ], [ 21.5, 25.5 ], [ 21.0, 25.5 ], [ 21.0, 26.0 ], [ 21.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 26.0 ], [ 22.0, 25.5 ], [ 21.5, 25.5 ], [ 21.5, 26.0 ], [ 22.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 26.0 ], [ 22.5, 25.5 ], [ 22.0, 25.5 ], [ 22.0, 26.0 ], [ 22.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 26.0 ], [ 23.0, 25.5 ], [ 22.5, 25.5 ], [ 22.5, 26.0 ], [ 23.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 26.0 ], [ 23.5, 25.5 ], [ 23.0, 25.5 ], [ 23.0, 26.0 ], [ 23.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 26.0 ], [ 24.0, 25.5 ], [ 23.5, 25.5 ], [ 23.5, 26.0 ], [ 24.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 26.0 ], [ 24.5, 25.5 ], [ 24.0, 25.5 ], [ 24.0, 26.0 ], [ 24.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 26.0 ], [ 25.0, 25.5 ], [ 24.5, 25.5 ], [ 24.5, 26.0 ], [ 25.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 26.0 ], [ 25.5, 25.5 ], [ 25.0, 25.5 ], [ 25.0, 26.0 ], [ 25.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 26.0 ], [ 26.0, 25.5 ], [ 25.5, 25.5 ], [ 25.5, 26.0 ], [ 26.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 26.0 ], [ 26.5, 25.5 ], [ 26.0, 25.5 ], [ 26.0, 26.0 ], [ 26.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 26.0 ], [ 27.0, 25.5 ], [ 26.5, 25.5 ], [ 26.5, 26.0 ], [ 27.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 26.0 ], [ 27.5, 25.5 ], [ 27.0, 25.5 ], [ 27.0, 26.0 ], [ 27.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 26.0 ], [ 28.0, 25.5 ], [ 27.5, 25.5 ], [ 27.5, 26.0 ], [ 28.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 26.0 ], [ 28.5, 25.5 ], [ 28.0, 25.5 ], [ 28.0, 26.0 ], [ 28.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 26.0 ], [ 29.0, 25.5 ], [ 28.5, 25.5 ], [ 28.5, 26.0 ], [ 29.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 26.0 ], [ 29.5, 25.5 ], [ 29.0, 25.5 ], [ 29.0, 26.0 ], [ 29.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 26.0 ], [ 30.0, 25.5 ], [ 29.5, 25.5 ], [ 29.5, 26.0 ], [ 30.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 26.0 ], [ 30.5, 25.5 ], [ 30.0, 25.5 ], [ 30.0, 26.0 ], [ 30.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 26.0 ], [ 31.0, 25.5 ], [ 30.5, 25.5 ], [ 30.5, 26.0 ], [ 31.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 26.0 ], [ 31.5, 25.5 ], [ 31.0, 25.5 ], [ 31.0, 26.0 ], [ 31.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 26.0 ], [ 32.0, 25.5 ], [ 31.5, 25.5 ], [ 31.5, 26.0 ], [ 32.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 26.0 ], [ 32.5, 25.5 ], [ 32.0, 25.5 ], [ 32.0, 26.0 ], [ 32.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 26.0 ], [ 33.0, 25.5 ], [ 32.5, 25.5 ], [ 32.5, 26.0 ], [ 33.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 26.0 ], [ 33.5, 25.5 ], [ 33.0, 25.5 ], [ 33.0, 26.0 ], [ 33.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 26.0 ], [ 34.0, 25.5 ], [ 33.5, 25.5 ], [ 33.5, 26.0 ], [ 34.0, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 26.0 ], [ 34.5, 25.5 ], [ 34.0, 25.5 ], [ 34.0, 26.0 ], [ 34.5, 26.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 26.5 ], [ -14.0, 26.0 ], [ -14.5, 26.0 ], [ -14.5, 26.5 ], [ -14.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.5, 26.5 ], [ -13.5, 26.0 ], [ -14.0, 26.0 ], [ -14.0, 26.5 ], [ -13.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 26.5 ], [ -13.0, 26.0 ], [ -13.5, 26.0 ], [ -13.5, 26.5 ], [ -13.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 26.5 ], [ -12.5, 26.0 ], [ -13.0, 26.0 ], [ -13.0, 26.5 ], [ -12.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 26.5 ], [ -12.0, 26.0 ], [ -12.5, 26.0 ], [ -12.5, 26.5 ], [ -12.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 26.5 ], [ -11.5, 26.0 ], [ -12.0, 26.0 ], [ -12.0, 26.5 ], [ -11.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 26.5 ], [ -11.0, 26.0 ], [ -11.5, 26.0 ], [ -11.5, 26.5 ], [ -11.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 26.5 ], [ -10.5, 26.0 ], [ -11.0, 26.0 ], [ -11.0, 26.5 ], [ -10.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 26.5 ], [ -10.0, 26.0 ], [ -10.5, 26.0 ], [ -10.5, 26.5 ], [ -10.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 26.5 ], [ -9.5, 26.0 ], [ -10.0, 26.0 ], [ -10.0, 26.5 ], [ -9.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 26.5 ], [ -9.0, 26.0 ], [ -9.5, 26.0 ], [ -9.5, 26.5 ], [ -9.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 26.5 ], [ -8.5, 26.0 ], [ -9.0, 26.0 ], [ -9.0, 26.5 ], [ -8.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 26.5 ], [ -8.0, 26.0 ], [ -8.5, 26.0 ], [ -8.5, 26.5 ], [ -8.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 26.5 ], [ -7.5, 26.0 ], [ -8.0, 26.0 ], [ -8.0, 26.5 ], [ -7.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 26.5 ], [ -7.0, 26.0 ], [ -7.5, 26.0 ], [ -7.5, 26.5 ], [ -7.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 26.5 ], [ -6.5, 26.0 ], [ -7.0, 26.0 ], [ -7.0, 26.5 ], [ -6.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 26.5 ], [ -6.0, 26.0 ], [ -6.5, 26.0 ], [ -6.5, 26.5 ], [ -6.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 26.5 ], [ -5.5, 26.0 ], [ -6.0, 26.0 ], [ -6.0, 26.5 ], [ -5.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 26.5 ], [ -5.0, 26.0 ], [ -5.5, 26.0 ], [ -5.5, 26.5 ], [ -5.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 26.5 ], [ -4.5, 26.0 ], [ -5.0, 26.0 ], [ -5.0, 26.5 ], [ -4.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 26.5 ], [ -4.0, 26.0 ], [ -4.5, 26.0 ], [ -4.5, 26.5 ], [ -4.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 26.5 ], [ -3.5, 26.0 ], [ -4.0, 26.0 ], [ -4.0, 26.5 ], [ -3.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 26.5 ], [ -3.0, 26.0 ], [ -3.5, 26.0 ], [ -3.5, 26.5 ], [ -3.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 26.5 ], [ -2.5, 26.0 ], [ -3.0, 26.0 ], [ -3.0, 26.5 ], [ -2.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 26.5 ], [ -2.0, 26.0 ], [ -2.5, 26.0 ], [ -2.5, 26.5 ], [ -2.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 26.5 ], [ -1.5, 26.0 ], [ -2.0, 26.0 ], [ -2.0, 26.5 ], [ -1.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 26.5 ], [ -1.0, 26.0 ], [ -1.5, 26.0 ], [ -1.5, 26.5 ], [ -1.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 26.5 ], [ -0.5, 26.0 ], [ -1.0, 26.0 ], [ -1.0, 26.5 ], [ -0.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 26.5 ], [ 0.0, 26.0 ], [ -0.5, 26.0 ], [ -0.5, 26.5 ], [ 0.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 26.5 ], [ 0.5, 26.0 ], [ 0.0, 26.0 ], [ 0.0, 26.5 ], [ 0.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 26.5 ], [ 1.0, 26.0 ], [ 0.5, 26.0 ], [ 0.5, 26.5 ], [ 1.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 26.5 ], [ 1.5, 26.0 ], [ 1.0, 26.0 ], [ 1.0, 26.5 ], [ 1.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 26.5 ], [ 2.0, 26.0 ], [ 1.5, 26.0 ], [ 1.5, 26.5 ], [ 2.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 26.5 ], [ 2.5, 26.0 ], [ 2.0, 26.0 ], [ 2.0, 26.5 ], [ 2.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 26.5 ], [ 3.0, 26.0 ], [ 2.5, 26.0 ], [ 2.5, 26.5 ], [ 3.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 26.5 ], [ 3.5, 26.0 ], [ 3.0, 26.0 ], [ 3.0, 26.5 ], [ 3.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 26.5 ], [ 4.0, 26.0 ], [ 3.5, 26.0 ], [ 3.5, 26.5 ], [ 4.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 26.5 ], [ 4.5, 26.0 ], [ 4.0, 26.0 ], [ 4.0, 26.5 ], [ 4.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 26.5 ], [ 5.0, 26.0 ], [ 4.5, 26.0 ], [ 4.5, 26.5 ], [ 5.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 26.5 ], [ 5.5, 26.0 ], [ 5.0, 26.0 ], [ 5.0, 26.5 ], [ 5.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 26.5 ], [ 6.0, 26.0 ], [ 5.5, 26.0 ], [ 5.5, 26.5 ], [ 6.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 26.5 ], [ 6.5, 26.0 ], [ 6.0, 26.0 ], [ 6.0, 26.5 ], [ 6.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 26.5 ], [ 7.0, 26.0 ], [ 6.5, 26.0 ], [ 6.5, 26.5 ], [ 7.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 26.5 ], [ 7.5, 26.0 ], [ 7.0, 26.0 ], [ 7.0, 26.5 ], [ 7.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 26.5 ], [ 8.0, 26.0 ], [ 7.5, 26.0 ], [ 7.5, 26.5 ], [ 8.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 26.5 ], [ 8.5, 26.0 ], [ 8.0, 26.0 ], [ 8.0, 26.5 ], [ 8.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 26.5 ], [ 9.0, 26.0 ], [ 8.5, 26.0 ], [ 8.5, 26.5 ], [ 9.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 26.5 ], [ 9.5, 26.0 ], [ 9.0, 26.0 ], [ 9.0, 26.5 ], [ 9.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 26.5 ], [ 10.0, 26.0 ], [ 9.5, 26.0 ], [ 9.5, 26.5 ], [ 10.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 26.5 ], [ 10.5, 26.0 ], [ 10.0, 26.0 ], [ 10.0, 26.5 ], [ 10.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 26.5 ], [ 11.0, 26.0 ], [ 10.5, 26.0 ], [ 10.5, 26.5 ], [ 11.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 26.5 ], [ 11.5, 26.0 ], [ 11.0, 26.0 ], [ 11.0, 26.5 ], [ 11.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 26.5 ], [ 12.0, 26.0 ], [ 11.5, 26.0 ], [ 11.5, 26.5 ], [ 12.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 26.5 ], [ 12.5, 26.0 ], [ 12.0, 26.0 ], [ 12.0, 26.5 ], [ 12.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 26.5 ], [ 13.0, 26.0 ], [ 12.5, 26.0 ], [ 12.5, 26.5 ], [ 13.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 26.5 ], [ 13.5, 26.0 ], [ 13.0, 26.0 ], [ 13.0, 26.5 ], [ 13.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 26.5 ], [ 14.0, 26.0 ], [ 13.5, 26.0 ], [ 13.5, 26.5 ], [ 14.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 26.5 ], [ 14.5, 26.0 ], [ 14.0, 26.0 ], [ 14.0, 26.5 ], [ 14.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 26.5 ], [ 15.0, 26.0 ], [ 14.5, 26.0 ], [ 14.5, 26.5 ], [ 15.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 26.5 ], [ 15.5, 26.0 ], [ 15.0, 26.0 ], [ 15.0, 26.5 ], [ 15.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 26.5 ], [ 16.0, 26.0 ], [ 15.5, 26.0 ], [ 15.5, 26.5 ], [ 16.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 26.5 ], [ 16.5, 26.0 ], [ 16.0, 26.0 ], [ 16.0, 26.5 ], [ 16.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 26.5 ], [ 17.0, 26.0 ], [ 16.5, 26.0 ], [ 16.5, 26.5 ], [ 17.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 26.5 ], [ 17.5, 26.0 ], [ 17.0, 26.0 ], [ 17.0, 26.5 ], [ 17.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 26.5 ], [ 18.0, 26.0 ], [ 17.5, 26.0 ], [ 17.5, 26.5 ], [ 18.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 26.5 ], [ 18.5, 26.0 ], [ 18.0, 26.0 ], [ 18.0, 26.5 ], [ 18.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 26.5 ], [ 19.0, 26.0 ], [ 18.5, 26.0 ], [ 18.5, 26.5 ], [ 19.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 26.5 ], [ 19.5, 26.0 ], [ 19.0, 26.0 ], [ 19.0, 26.5 ], [ 19.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 26.5 ], [ 20.0, 26.0 ], [ 19.5, 26.0 ], [ 19.5, 26.5 ], [ 20.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 26.5 ], [ 20.5, 26.0 ], [ 20.0, 26.0 ], [ 20.0, 26.5 ], [ 20.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 26.5 ], [ 21.0, 26.0 ], [ 20.5, 26.0 ], [ 20.5, 26.5 ], [ 21.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 26.5 ], [ 21.5, 26.0 ], [ 21.0, 26.0 ], [ 21.0, 26.5 ], [ 21.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 26.5 ], [ 22.0, 26.0 ], [ 21.5, 26.0 ], [ 21.5, 26.5 ], [ 22.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 26.5 ], [ 22.5, 26.0 ], [ 22.0, 26.0 ], [ 22.0, 26.5 ], [ 22.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 26.5 ], [ 23.0, 26.0 ], [ 22.5, 26.0 ], [ 22.5, 26.5 ], [ 23.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 26.5 ], [ 23.5, 26.0 ], [ 23.0, 26.0 ], [ 23.0, 26.5 ], [ 23.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 26.5 ], [ 24.0, 26.0 ], [ 23.5, 26.0 ], [ 23.5, 26.5 ], [ 24.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 26.5 ], [ 24.5, 26.0 ], [ 24.0, 26.0 ], [ 24.0, 26.5 ], [ 24.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 26.5 ], [ 25.0, 26.0 ], [ 24.5, 26.0 ], [ 24.5, 26.5 ], [ 25.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 26.5 ], [ 25.5, 26.0 ], [ 25.0, 26.0 ], [ 25.0, 26.5 ], [ 25.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 26.5 ], [ 26.0, 26.0 ], [ 25.5, 26.0 ], [ 25.5, 26.5 ], [ 26.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 26.5 ], [ 26.5, 26.0 ], [ 26.0, 26.0 ], [ 26.0, 26.5 ], [ 26.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 26.5 ], [ 27.0, 26.0 ], [ 26.5, 26.0 ], [ 26.5, 26.5 ], [ 27.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 26.5 ], [ 27.5, 26.0 ], [ 27.0, 26.0 ], [ 27.0, 26.5 ], [ 27.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 26.5 ], [ 28.0, 26.0 ], [ 27.5, 26.0 ], [ 27.5, 26.5 ], [ 28.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 26.5 ], [ 28.5, 26.0 ], [ 28.0, 26.0 ], [ 28.0, 26.5 ], [ 28.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 26.5 ], [ 29.0, 26.0 ], [ 28.5, 26.0 ], [ 28.5, 26.5 ], [ 29.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 26.5 ], [ 29.5, 26.0 ], [ 29.0, 26.0 ], [ 29.0, 26.5 ], [ 29.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 26.5 ], [ 30.0, 26.0 ], [ 29.5, 26.0 ], [ 29.5, 26.5 ], [ 30.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 26.5 ], [ 30.5, 26.0 ], [ 30.0, 26.0 ], [ 30.0, 26.5 ], [ 30.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 26.5 ], [ 31.0, 26.0 ], [ 30.5, 26.0 ], [ 30.5, 26.5 ], [ 31.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 26.5 ], [ 31.5, 26.0 ], [ 31.0, 26.0 ], [ 31.0, 26.5 ], [ 31.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 26.5 ], [ 32.0, 26.0 ], [ 31.5, 26.0 ], [ 31.5, 26.5 ], [ 32.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 26.5 ], [ 32.5, 26.0 ], [ 32.0, 26.0 ], [ 32.0, 26.5 ], [ 32.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 26.5 ], [ 33.0, 26.0 ], [ 32.5, 26.0 ], [ 32.5, 26.5 ], [ 33.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 26.5 ], [ 33.5, 26.0 ], [ 33.0, 26.0 ], [ 33.0, 26.5 ], [ 33.5, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 26.5 ], [ 34.0, 26.0 ], [ 33.5, 26.0 ], [ 33.5, 26.5 ], [ 34.0, 26.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 27.0 ], [ -13.0, 26.5 ], [ -13.5, 26.5 ], [ -13.5, 27.0 ], [ -13.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 27.0 ], [ -12.5, 26.5 ], [ -13.0, 26.5 ], [ -13.0, 27.0 ], [ -12.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 27.0 ], [ -12.0, 26.5 ], [ -12.5, 26.5 ], [ -12.5, 27.0 ], [ -12.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 27.0 ], [ -11.5, 26.5 ], [ -12.0, 26.5 ], [ -12.0, 27.0 ], [ -11.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 27.0 ], [ -11.0, 26.5 ], [ -11.5, 26.5 ], [ -11.5, 27.0 ], [ -11.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 27.0 ], [ -10.5, 26.5 ], [ -11.0, 26.5 ], [ -11.0, 27.0 ], [ -10.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 27.0 ], [ -10.0, 26.5 ], [ -10.5, 26.5 ], [ -10.5, 27.0 ], [ -10.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 27.0 ], [ -9.5, 26.5 ], [ -10.0, 26.5 ], [ -10.0, 27.0 ], [ -9.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 27.0 ], [ -9.0, 26.5 ], [ -9.5, 26.5 ], [ -9.5, 27.0 ], [ -9.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 27.0 ], [ -8.5, 26.5 ], [ -9.0, 26.5 ], [ -9.0, 27.0 ], [ -8.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 27.0 ], [ -8.0, 26.5 ], [ -8.5, 26.5 ], [ -8.5, 27.0 ], [ -8.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 27.0 ], [ -7.5, 26.5 ], [ -8.0, 26.5 ], [ -8.0, 27.0 ], [ -7.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 27.0 ], [ -7.0, 26.5 ], [ -7.5, 26.5 ], [ -7.5, 27.0 ], [ -7.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 27.0 ], [ -6.5, 26.5 ], [ -7.0, 26.5 ], [ -7.0, 27.0 ], [ -6.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 27.0 ], [ -6.0, 26.5 ], [ -6.5, 26.5 ], [ -6.5, 27.0 ], [ -6.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 27.0 ], [ -5.5, 26.5 ], [ -6.0, 26.5 ], [ -6.0, 27.0 ], [ -5.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 27.0 ], [ -5.0, 26.5 ], [ -5.5, 26.5 ], [ -5.5, 27.0 ], [ -5.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 27.0 ], [ -4.5, 26.5 ], [ -5.0, 26.5 ], [ -5.0, 27.0 ], [ -4.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 27.0 ], [ -4.0, 26.5 ], [ -4.5, 26.5 ], [ -4.5, 27.0 ], [ -4.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 27.0 ], [ -3.5, 26.5 ], [ -4.0, 26.5 ], [ -4.0, 27.0 ], [ -3.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 27.0 ], [ -3.0, 26.5 ], [ -3.5, 26.5 ], [ -3.5, 27.0 ], [ -3.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 27.0 ], [ -2.5, 26.5 ], [ -3.0, 26.5 ], [ -3.0, 27.0 ], [ -2.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 27.0 ], [ -2.0, 26.5 ], [ -2.5, 26.5 ], [ -2.5, 27.0 ], [ -2.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 27.0 ], [ -1.5, 26.5 ], [ -2.0, 26.5 ], [ -2.0, 27.0 ], [ -1.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 27.0 ], [ -1.0, 26.5 ], [ -1.5, 26.5 ], [ -1.5, 27.0 ], [ -1.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 27.0 ], [ -0.5, 26.5 ], [ -1.0, 26.5 ], [ -1.0, 27.0 ], [ -0.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 27.0 ], [ 0.0, 26.5 ], [ -0.5, 26.5 ], [ -0.5, 27.0 ], [ 0.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 27.0 ], [ 0.5, 26.5 ], [ 0.0, 26.5 ], [ 0.0, 27.0 ], [ 0.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 27.0 ], [ 1.0, 26.5 ], [ 0.5, 26.5 ], [ 0.5, 27.0 ], [ 1.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 27.0 ], [ 1.5, 26.5 ], [ 1.0, 26.5 ], [ 1.0, 27.0 ], [ 1.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 27.0 ], [ 2.0, 26.5 ], [ 1.5, 26.5 ], [ 1.5, 27.0 ], [ 2.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 27.0 ], [ 2.5, 26.5 ], [ 2.0, 26.5 ], [ 2.0, 27.0 ], [ 2.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 27.0 ], [ 3.0, 26.5 ], [ 2.5, 26.5 ], [ 2.5, 27.0 ], [ 3.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 27.0 ], [ 3.5, 26.5 ], [ 3.0, 26.5 ], [ 3.0, 27.0 ], [ 3.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 27.0 ], [ 4.0, 26.5 ], [ 3.5, 26.5 ], [ 3.5, 27.0 ], [ 4.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 27.0 ], [ 4.5, 26.5 ], [ 4.0, 26.5 ], [ 4.0, 27.0 ], [ 4.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 27.0 ], [ 5.0, 26.5 ], [ 4.5, 26.5 ], [ 4.5, 27.0 ], [ 5.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 27.0 ], [ 5.5, 26.5 ], [ 5.0, 26.5 ], [ 5.0, 27.0 ], [ 5.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 27.0 ], [ 6.0, 26.5 ], [ 5.5, 26.5 ], [ 5.5, 27.0 ], [ 6.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 27.0 ], [ 6.5, 26.5 ], [ 6.0, 26.5 ], [ 6.0, 27.0 ], [ 6.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 27.0 ], [ 7.0, 26.5 ], [ 6.5, 26.5 ], [ 6.5, 27.0 ], [ 7.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 27.0 ], [ 7.5, 26.5 ], [ 7.0, 26.5 ], [ 7.0, 27.0 ], [ 7.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 27.0 ], [ 8.0, 26.5 ], [ 7.5, 26.5 ], [ 7.5, 27.0 ], [ 8.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 27.0 ], [ 8.5, 26.5 ], [ 8.0, 26.5 ], [ 8.0, 27.0 ], [ 8.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 27.0 ], [ 9.0, 26.5 ], [ 8.5, 26.5 ], [ 8.5, 27.0 ], [ 9.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 27.0 ], [ 9.5, 26.5 ], [ 9.0, 26.5 ], [ 9.0, 27.0 ], [ 9.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 27.0 ], [ 10.0, 26.5 ], [ 9.5, 26.5 ], [ 9.5, 27.0 ], [ 10.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 27.0 ], [ 10.5, 26.5 ], [ 10.0, 26.5 ], [ 10.0, 27.0 ], [ 10.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 27.0 ], [ 11.0, 26.5 ], [ 10.5, 26.5 ], [ 10.5, 27.0 ], [ 11.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 27.0 ], [ 11.5, 26.5 ], [ 11.0, 26.5 ], [ 11.0, 27.0 ], [ 11.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 27.0 ], [ 12.0, 26.5 ], [ 11.5, 26.5 ], [ 11.5, 27.0 ], [ 12.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 27.0 ], [ 12.5, 26.5 ], [ 12.0, 26.5 ], [ 12.0, 27.0 ], [ 12.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 27.0 ], [ 13.0, 26.5 ], [ 12.5, 26.5 ], [ 12.5, 27.0 ], [ 13.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 27.0 ], [ 13.5, 26.5 ], [ 13.0, 26.5 ], [ 13.0, 27.0 ], [ 13.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 27.0 ], [ 14.0, 26.5 ], [ 13.5, 26.5 ], [ 13.5, 27.0 ], [ 14.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 27.0 ], [ 14.5, 26.5 ], [ 14.0, 26.5 ], [ 14.0, 27.0 ], [ 14.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 27.0 ], [ 15.0, 26.5 ], [ 14.5, 26.5 ], [ 14.5, 27.0 ], [ 15.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 27.0 ], [ 15.5, 26.5 ], [ 15.0, 26.5 ], [ 15.0, 27.0 ], [ 15.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 27.0 ], [ 16.0, 26.5 ], [ 15.5, 26.5 ], [ 15.5, 27.0 ], [ 16.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 27.0 ], [ 16.5, 26.5 ], [ 16.0, 26.5 ], [ 16.0, 27.0 ], [ 16.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 27.0 ], [ 17.0, 26.5 ], [ 16.5, 26.5 ], [ 16.5, 27.0 ], [ 17.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 27.0 ], [ 17.5, 26.5 ], [ 17.0, 26.5 ], [ 17.0, 27.0 ], [ 17.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 27.0 ], [ 18.0, 26.5 ], [ 17.5, 26.5 ], [ 17.5, 27.0 ], [ 18.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 27.0 ], [ 18.5, 26.5 ], [ 18.0, 26.5 ], [ 18.0, 27.0 ], [ 18.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 27.0 ], [ 19.0, 26.5 ], [ 18.5, 26.5 ], [ 18.5, 27.0 ], [ 19.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 27.0 ], [ 19.5, 26.5 ], [ 19.0, 26.5 ], [ 19.0, 27.0 ], [ 19.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 27.0 ], [ 20.0, 26.5 ], [ 19.5, 26.5 ], [ 19.5, 27.0 ], [ 20.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 27.0 ], [ 20.5, 26.5 ], [ 20.0, 26.5 ], [ 20.0, 27.0 ], [ 20.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 27.0 ], [ 21.0, 26.5 ], [ 20.5, 26.5 ], [ 20.5, 27.0 ], [ 21.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 27.0 ], [ 21.5, 26.5 ], [ 21.0, 26.5 ], [ 21.0, 27.0 ], [ 21.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 27.0 ], [ 22.0, 26.5 ], [ 21.5, 26.5 ], [ 21.5, 27.0 ], [ 22.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 27.0 ], [ 22.5, 26.5 ], [ 22.0, 26.5 ], [ 22.0, 27.0 ], [ 22.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 27.0 ], [ 23.0, 26.5 ], [ 22.5, 26.5 ], [ 22.5, 27.0 ], [ 23.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 27.0 ], [ 23.5, 26.5 ], [ 23.0, 26.5 ], [ 23.0, 27.0 ], [ 23.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 27.0 ], [ 24.0, 26.5 ], [ 23.5, 26.5 ], [ 23.5, 27.0 ], [ 24.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 27.0 ], [ 24.5, 26.5 ], [ 24.0, 26.5 ], [ 24.0, 27.0 ], [ 24.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 27.0 ], [ 25.0, 26.5 ], [ 24.5, 26.5 ], [ 24.5, 27.0 ], [ 25.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 27.0 ], [ 25.5, 26.5 ], [ 25.0, 26.5 ], [ 25.0, 27.0 ], [ 25.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 27.0 ], [ 26.0, 26.5 ], [ 25.5, 26.5 ], [ 25.5, 27.0 ], [ 26.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 27.0 ], [ 26.5, 26.5 ], [ 26.0, 26.5 ], [ 26.0, 27.0 ], [ 26.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 27.0 ], [ 27.0, 26.5 ], [ 26.5, 26.5 ], [ 26.5, 27.0 ], [ 27.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 27.0 ], [ 27.5, 26.5 ], [ 27.0, 26.5 ], [ 27.0, 27.0 ], [ 27.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 27.0 ], [ 28.0, 26.5 ], [ 27.5, 26.5 ], [ 27.5, 27.0 ], [ 28.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 27.0 ], [ 28.5, 26.5 ], [ 28.0, 26.5 ], [ 28.0, 27.0 ], [ 28.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 27.0 ], [ 29.0, 26.5 ], [ 28.5, 26.5 ], [ 28.5, 27.0 ], [ 29.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 27.0 ], [ 29.5, 26.5 ], [ 29.0, 26.5 ], [ 29.0, 27.0 ], [ 29.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 27.0 ], [ 30.0, 26.5 ], [ 29.5, 26.5 ], [ 29.5, 27.0 ], [ 30.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 27.0 ], [ 30.5, 26.5 ], [ 30.0, 26.5 ], [ 30.0, 27.0 ], [ 30.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 27.0 ], [ 31.0, 26.5 ], [ 30.5, 26.5 ], [ 30.5, 27.0 ], [ 31.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 27.0 ], [ 31.5, 26.5 ], [ 31.0, 26.5 ], [ 31.0, 27.0 ], [ 31.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 27.0 ], [ 32.0, 26.5 ], [ 31.5, 26.5 ], [ 31.5, 27.0 ], [ 32.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 27.0 ], [ 32.5, 26.5 ], [ 32.0, 26.5 ], [ 32.0, 27.0 ], [ 32.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 27.0 ], [ 33.0, 26.5 ], [ 32.5, 26.5 ], [ 32.5, 27.0 ], [ 33.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 27.0 ], [ 33.5, 26.5 ], [ 33.0, 26.5 ], [ 33.0, 27.0 ], [ 33.5, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 27.0 ], [ 34.0, 26.5 ], [ 33.5, 26.5 ], [ 33.5, 27.0 ], [ 34.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.0, 27.5 ], [ -13.0, 27.0 ], [ -13.5, 27.0 ], [ -13.5, 27.5 ], [ -13.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 27.5 ], [ -12.5, 27.0 ], [ -13.0, 27.0 ], [ -13.0, 27.5 ], [ -12.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 27.5 ], [ -12.0, 27.0 ], [ -12.5, 27.0 ], [ -12.5, 27.5 ], [ -12.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 27.5 ], [ -11.5, 27.0 ], [ -12.0, 27.0 ], [ -12.0, 27.5 ], [ -11.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 27.5 ], [ -11.0, 27.0 ], [ -11.5, 27.0 ], [ -11.5, 27.5 ], [ -11.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 27.5 ], [ -10.5, 27.0 ], [ -11.0, 27.0 ], [ -11.0, 27.5 ], [ -10.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 27.5 ], [ -10.0, 27.0 ], [ -10.5, 27.0 ], [ -10.5, 27.5 ], [ -10.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 27.5 ], [ -9.5, 27.0 ], [ -10.0, 27.0 ], [ -10.0, 27.5 ], [ -9.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 27.5 ], [ -9.0, 27.0 ], [ -9.5, 27.0 ], [ -9.5, 27.5 ], [ -9.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 27.5 ], [ -8.5, 27.0 ], [ -9.0, 27.0 ], [ -9.0, 27.5 ], [ -8.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 27.5 ], [ -8.0, 27.0 ], [ -8.5, 27.0 ], [ -8.5, 27.5 ], [ -8.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 27.5 ], [ -7.5, 27.0 ], [ -8.0, 27.0 ], [ -8.0, 27.5 ], [ -7.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 27.5 ], [ -7.0, 27.0 ], [ -7.5, 27.0 ], [ -7.5, 27.5 ], [ -7.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 27.5 ], [ -6.5, 27.0 ], [ -7.0, 27.0 ], [ -7.0, 27.5 ], [ -6.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 27.5 ], [ -6.0, 27.0 ], [ -6.5, 27.0 ], [ -6.5, 27.5 ], [ -6.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 27.5 ], [ -5.5, 27.0 ], [ -6.0, 27.0 ], [ -6.0, 27.5 ], [ -5.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 27.5 ], [ -5.0, 27.0 ], [ -5.5, 27.0 ], [ -5.5, 27.5 ], [ -5.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 27.5 ], [ -4.5, 27.0 ], [ -5.0, 27.0 ], [ -5.0, 27.5 ], [ -4.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 27.5 ], [ -4.0, 27.0 ], [ -4.5, 27.0 ], [ -4.5, 27.5 ], [ -4.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 27.5 ], [ -3.5, 27.0 ], [ -4.0, 27.0 ], [ -4.0, 27.5 ], [ -3.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 27.5 ], [ -3.0, 27.0 ], [ -3.5, 27.0 ], [ -3.5, 27.5 ], [ -3.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 27.5 ], [ -2.5, 27.0 ], [ -3.0, 27.0 ], [ -3.0, 27.5 ], [ -2.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 27.5 ], [ -2.0, 27.0 ], [ -2.5, 27.0 ], [ -2.5, 27.5 ], [ -2.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 27.5 ], [ -1.5, 27.0 ], [ -2.0, 27.0 ], [ -2.0, 27.5 ], [ -1.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 27.5 ], [ -1.0, 27.0 ], [ -1.5, 27.0 ], [ -1.5, 27.5 ], [ -1.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 27.5 ], [ -0.5, 27.0 ], [ -1.0, 27.0 ], [ -1.0, 27.5 ], [ -0.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 27.5 ], [ 0.0, 27.0 ], [ -0.5, 27.0 ], [ -0.5, 27.5 ], [ 0.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 27.5 ], [ 0.5, 27.0 ], [ 0.0, 27.0 ], [ 0.0, 27.5 ], [ 0.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 27.5 ], [ 1.0, 27.0 ], [ 0.5, 27.0 ], [ 0.5, 27.5 ], [ 1.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 27.5 ], [ 1.5, 27.0 ], [ 1.0, 27.0 ], [ 1.0, 27.5 ], [ 1.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 27.5 ], [ 2.0, 27.0 ], [ 1.5, 27.0 ], [ 1.5, 27.5 ], [ 2.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 27.5 ], [ 2.5, 27.0 ], [ 2.0, 27.0 ], [ 2.0, 27.5 ], [ 2.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 27.5 ], [ 3.0, 27.0 ], [ 2.5, 27.0 ], [ 2.5, 27.5 ], [ 3.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 27.5 ], [ 3.5, 27.0 ], [ 3.0, 27.0 ], [ 3.0, 27.5 ], [ 3.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 27.5 ], [ 4.0, 27.0 ], [ 3.5, 27.0 ], [ 3.5, 27.5 ], [ 4.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 27.5 ], [ 4.5, 27.0 ], [ 4.0, 27.0 ], [ 4.0, 27.5 ], [ 4.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 27.5 ], [ 5.0, 27.0 ], [ 4.5, 27.0 ], [ 4.5, 27.5 ], [ 5.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 27.5 ], [ 5.5, 27.0 ], [ 5.0, 27.0 ], [ 5.0, 27.5 ], [ 5.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 27.5 ], [ 6.0, 27.0 ], [ 5.5, 27.0 ], [ 5.5, 27.5 ], [ 6.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 27.5 ], [ 6.5, 27.0 ], [ 6.0, 27.0 ], [ 6.0, 27.5 ], [ 6.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 27.5 ], [ 7.0, 27.0 ], [ 6.5, 27.0 ], [ 6.5, 27.5 ], [ 7.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 27.5 ], [ 7.5, 27.0 ], [ 7.0, 27.0 ], [ 7.0, 27.5 ], [ 7.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 27.5 ], [ 8.0, 27.0 ], [ 7.5, 27.0 ], [ 7.5, 27.5 ], [ 8.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 27.5 ], [ 8.5, 27.0 ], [ 8.0, 27.0 ], [ 8.0, 27.5 ], [ 8.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 27.5 ], [ 9.0, 27.0 ], [ 8.5, 27.0 ], [ 8.5, 27.5 ], [ 9.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 27.5 ], [ 9.5, 27.0 ], [ 9.0, 27.0 ], [ 9.0, 27.5 ], [ 9.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 27.5 ], [ 10.0, 27.0 ], [ 9.5, 27.0 ], [ 9.5, 27.5 ], [ 10.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 27.5 ], [ 10.5, 27.0 ], [ 10.0, 27.0 ], [ 10.0, 27.5 ], [ 10.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 27.5 ], [ 11.0, 27.0 ], [ 10.5, 27.0 ], [ 10.5, 27.5 ], [ 11.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 27.5 ], [ 11.5, 27.0 ], [ 11.0, 27.0 ], [ 11.0, 27.5 ], [ 11.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 27.5 ], [ 12.0, 27.0 ], [ 11.5, 27.0 ], [ 11.5, 27.5 ], [ 12.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 27.5 ], [ 12.5, 27.0 ], [ 12.0, 27.0 ], [ 12.0, 27.5 ], [ 12.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 27.5 ], [ 13.0, 27.0 ], [ 12.5, 27.0 ], [ 12.5, 27.5 ], [ 13.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 27.5 ], [ 13.5, 27.0 ], [ 13.0, 27.0 ], [ 13.0, 27.5 ], [ 13.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 27.5 ], [ 14.0, 27.0 ], [ 13.5, 27.0 ], [ 13.5, 27.5 ], [ 14.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 27.5 ], [ 14.5, 27.0 ], [ 14.0, 27.0 ], [ 14.0, 27.5 ], [ 14.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 27.5 ], [ 15.0, 27.0 ], [ 14.5, 27.0 ], [ 14.5, 27.5 ], [ 15.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 27.5 ], [ 15.5, 27.0 ], [ 15.0, 27.0 ], [ 15.0, 27.5 ], [ 15.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 27.5 ], [ 16.0, 27.0 ], [ 15.5, 27.0 ], [ 15.5, 27.5 ], [ 16.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 27.5 ], [ 16.5, 27.0 ], [ 16.0, 27.0 ], [ 16.0, 27.5 ], [ 16.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 27.5 ], [ 17.0, 27.0 ], [ 16.5, 27.0 ], [ 16.5, 27.5 ], [ 17.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 27.5 ], [ 17.5, 27.0 ], [ 17.0, 27.0 ], [ 17.0, 27.5 ], [ 17.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 27.5 ], [ 18.0, 27.0 ], [ 17.5, 27.0 ], [ 17.5, 27.5 ], [ 18.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 27.5 ], [ 18.5, 27.0 ], [ 18.0, 27.0 ], [ 18.0, 27.5 ], [ 18.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 27.5 ], [ 19.0, 27.0 ], [ 18.5, 27.0 ], [ 18.5, 27.5 ], [ 19.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 27.5 ], [ 19.5, 27.0 ], [ 19.0, 27.0 ], [ 19.0, 27.5 ], [ 19.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 27.5 ], [ 20.0, 27.0 ], [ 19.5, 27.0 ], [ 19.5, 27.5 ], [ 20.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 27.5 ], [ 20.5, 27.0 ], [ 20.0, 27.0 ], [ 20.0, 27.5 ], [ 20.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 27.5 ], [ 21.0, 27.0 ], [ 20.5, 27.0 ], [ 20.5, 27.5 ], [ 21.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 27.5 ], [ 21.5, 27.0 ], [ 21.0, 27.0 ], [ 21.0, 27.5 ], [ 21.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 27.5 ], [ 22.0, 27.0 ], [ 21.5, 27.0 ], [ 21.5, 27.5 ], [ 22.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 27.5 ], [ 22.5, 27.0 ], [ 22.0, 27.0 ], [ 22.0, 27.5 ], [ 22.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 27.5 ], [ 23.0, 27.0 ], [ 22.5, 27.0 ], [ 22.5, 27.5 ], [ 23.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 27.5 ], [ 23.5, 27.0 ], [ 23.0, 27.0 ], [ 23.0, 27.5 ], [ 23.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 27.5 ], [ 24.0, 27.0 ], [ 23.5, 27.0 ], [ 23.5, 27.5 ], [ 24.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 27.5 ], [ 24.5, 27.0 ], [ 24.0, 27.0 ], [ 24.0, 27.5 ], [ 24.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 27.5 ], [ 25.0, 27.0 ], [ 24.5, 27.0 ], [ 24.5, 27.5 ], [ 25.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 27.5 ], [ 25.5, 27.0 ], [ 25.0, 27.0 ], [ 25.0, 27.5 ], [ 25.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 27.5 ], [ 26.0, 27.0 ], [ 25.5, 27.0 ], [ 25.5, 27.5 ], [ 26.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 27.5 ], [ 26.5, 27.0 ], [ 26.0, 27.0 ], [ 26.0, 27.5 ], [ 26.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 27.5 ], [ 27.0, 27.0 ], [ 26.5, 27.0 ], [ 26.5, 27.5 ], [ 27.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 27.5 ], [ 27.5, 27.0 ], [ 27.0, 27.0 ], [ 27.0, 27.5 ], [ 27.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 27.5 ], [ 28.0, 27.0 ], [ 27.5, 27.0 ], [ 27.5, 27.5 ], [ 28.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 27.5 ], [ 28.5, 27.0 ], [ 28.0, 27.0 ], [ 28.0, 27.5 ], [ 28.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 27.5 ], [ 29.0, 27.0 ], [ 28.5, 27.0 ], [ 28.5, 27.5 ], [ 29.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 27.5 ], [ 29.5, 27.0 ], [ 29.0, 27.0 ], [ 29.0, 27.5 ], [ 29.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 27.5 ], [ 30.0, 27.0 ], [ 29.5, 27.0 ], [ 29.5, 27.5 ], [ 30.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 27.5 ], [ 30.5, 27.0 ], [ 30.0, 27.0 ], [ 30.0, 27.5 ], [ 30.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 27.5 ], [ 31.0, 27.0 ], [ 30.5, 27.0 ], [ 30.5, 27.5 ], [ 31.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 27.5 ], [ 31.5, 27.0 ], [ 31.0, 27.0 ], [ 31.0, 27.5 ], [ 31.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 27.5 ], [ 32.0, 27.0 ], [ 31.5, 27.0 ], [ 31.5, 27.5 ], [ 32.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 27.5 ], [ 32.5, 27.0 ], [ 32.0, 27.0 ], [ 32.0, 27.5 ], [ 32.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 27.5 ], [ 33.0, 27.0 ], [ 32.5, 27.0 ], [ 32.5, 27.5 ], [ 33.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 27.5 ], [ 33.5, 27.0 ], [ 33.0, 27.0 ], [ 33.0, 27.5 ], [ 33.5, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 27.5 ], [ 34.0, 27.0 ], [ 33.5, 27.0 ], [ 33.5, 27.5 ], [ 34.0, 27.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.5, 28.0 ], [ -12.5, 27.5 ], [ -13.0, 27.5 ], [ -13.0, 28.0 ], [ -12.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.0, 28.0 ], [ -12.0, 27.5 ], [ -12.5, 27.5 ], [ -12.5, 28.0 ], [ -12.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.5, 28.0 ], [ -11.5, 27.5 ], [ -12.0, 27.5 ], [ -12.0, 28.0 ], [ -11.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 28.0 ], [ -11.0, 27.5 ], [ -11.5, 27.5 ], [ -11.5, 28.0 ], [ -11.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 28.0 ], [ -10.5, 27.5 ], [ -11.0, 27.5 ], [ -11.0, 28.0 ], [ -10.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 28.0 ], [ -10.0, 27.5 ], [ -10.5, 27.5 ], [ -10.5, 28.0 ], [ -10.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 28.0 ], [ -9.5, 27.5 ], [ -10.0, 27.5 ], [ -10.0, 28.0 ], [ -9.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 28.0 ], [ -9.0, 27.5 ], [ -9.5, 27.5 ], [ -9.5, 28.0 ], [ -9.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 28.0 ], [ -8.5, 27.5 ], [ -9.0, 27.5 ], [ -9.0, 28.0 ], [ -8.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 28.0 ], [ -8.0, 27.5 ], [ -8.5, 27.5 ], [ -8.5, 28.0 ], [ -8.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 28.0 ], [ -7.5, 27.5 ], [ -8.0, 27.5 ], [ -8.0, 28.0 ], [ -7.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 28.0 ], [ -7.0, 27.5 ], [ -7.5, 27.5 ], [ -7.5, 28.0 ], [ -7.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 28.0 ], [ -6.5, 27.5 ], [ -7.0, 27.5 ], [ -7.0, 28.0 ], [ -6.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 28.0 ], [ -6.0, 27.5 ], [ -6.5, 27.5 ], [ -6.5, 28.0 ], [ -6.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 28.0 ], [ -5.5, 27.5 ], [ -6.0, 27.5 ], [ -6.0, 28.0 ], [ -5.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 28.0 ], [ -5.0, 27.5 ], [ -5.5, 27.5 ], [ -5.5, 28.0 ], [ -5.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 28.0 ], [ -4.5, 27.5 ], [ -5.0, 27.5 ], [ -5.0, 28.0 ], [ -4.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 28.0 ], [ -4.0, 27.5 ], [ -4.5, 27.5 ], [ -4.5, 28.0 ], [ -4.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 28.0 ], [ -3.5, 27.5 ], [ -4.0, 27.5 ], [ -4.0, 28.0 ], [ -3.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 28.0 ], [ -3.0, 27.5 ], [ -3.5, 27.5 ], [ -3.5, 28.0 ], [ -3.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 28.0 ], [ -2.5, 27.5 ], [ -3.0, 27.5 ], [ -3.0, 28.0 ], [ -2.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 28.0 ], [ -2.0, 27.5 ], [ -2.5, 27.5 ], [ -2.5, 28.0 ], [ -2.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 28.0 ], [ -1.5, 27.5 ], [ -2.0, 27.5 ], [ -2.0, 28.0 ], [ -1.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 28.0 ], [ -1.0, 27.5 ], [ -1.5, 27.5 ], [ -1.5, 28.0 ], [ -1.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 28.0 ], [ -0.5, 27.5 ], [ -1.0, 27.5 ], [ -1.0, 28.0 ], [ -0.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 28.0 ], [ 0.0, 27.5 ], [ -0.5, 27.5 ], [ -0.5, 28.0 ], [ 0.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 28.0 ], [ 0.5, 27.5 ], [ 0.0, 27.5 ], [ 0.0, 28.0 ], [ 0.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 28.0 ], [ 1.0, 27.5 ], [ 0.5, 27.5 ], [ 0.5, 28.0 ], [ 1.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 28.0 ], [ 1.5, 27.5 ], [ 1.0, 27.5 ], [ 1.0, 28.0 ], [ 1.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 28.0 ], [ 2.0, 27.5 ], [ 1.5, 27.5 ], [ 1.5, 28.0 ], [ 2.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 28.0 ], [ 2.5, 27.5 ], [ 2.0, 27.5 ], [ 2.0, 28.0 ], [ 2.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 28.0 ], [ 3.0, 27.5 ], [ 2.5, 27.5 ], [ 2.5, 28.0 ], [ 3.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 28.0 ], [ 3.5, 27.5 ], [ 3.0, 27.5 ], [ 3.0, 28.0 ], [ 3.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 28.0 ], [ 4.0, 27.5 ], [ 3.5, 27.5 ], [ 3.5, 28.0 ], [ 4.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 28.0 ], [ 4.5, 27.5 ], [ 4.0, 27.5 ], [ 4.0, 28.0 ], [ 4.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 28.0 ], [ 5.0, 27.5 ], [ 4.5, 27.5 ], [ 4.5, 28.0 ], [ 5.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 28.0 ], [ 5.5, 27.5 ], [ 5.0, 27.5 ], [ 5.0, 28.0 ], [ 5.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 28.0 ], [ 6.0, 27.5 ], [ 5.5, 27.5 ], [ 5.5, 28.0 ], [ 6.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 28.0 ], [ 6.5, 27.5 ], [ 6.0, 27.5 ], [ 6.0, 28.0 ], [ 6.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 28.0 ], [ 7.0, 27.5 ], [ 6.5, 27.5 ], [ 6.5, 28.0 ], [ 7.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 28.0 ], [ 7.5, 27.5 ], [ 7.0, 27.5 ], [ 7.0, 28.0 ], [ 7.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 28.0 ], [ 8.0, 27.5 ], [ 7.5, 27.5 ], [ 7.5, 28.0 ], [ 8.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 28.0 ], [ 8.5, 27.5 ], [ 8.0, 27.5 ], [ 8.0, 28.0 ], [ 8.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 28.0 ], [ 9.0, 27.5 ], [ 8.5, 27.5 ], [ 8.5, 28.0 ], [ 9.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 28.0 ], [ 9.5, 27.5 ], [ 9.0, 27.5 ], [ 9.0, 28.0 ], [ 9.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 28.0 ], [ 10.0, 27.5 ], [ 9.5, 27.5 ], [ 9.5, 28.0 ], [ 10.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 28.0 ], [ 10.5, 27.5 ], [ 10.0, 27.5 ], [ 10.0, 28.0 ], [ 10.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 28.0 ], [ 11.0, 27.5 ], [ 10.5, 27.5 ], [ 10.5, 28.0 ], [ 11.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 28.0 ], [ 11.5, 27.5 ], [ 11.0, 27.5 ], [ 11.0, 28.0 ], [ 11.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 28.0 ], [ 12.0, 27.5 ], [ 11.5, 27.5 ], [ 11.5, 28.0 ], [ 12.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 28.0 ], [ 12.5, 27.5 ], [ 12.0, 27.5 ], [ 12.0, 28.0 ], [ 12.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 28.0 ], [ 13.0, 27.5 ], [ 12.5, 27.5 ], [ 12.5, 28.0 ], [ 13.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 28.0 ], [ 13.5, 27.5 ], [ 13.0, 27.5 ], [ 13.0, 28.0 ], [ 13.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 28.0 ], [ 14.0, 27.5 ], [ 13.5, 27.5 ], [ 13.5, 28.0 ], [ 14.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 28.0 ], [ 14.5, 27.5 ], [ 14.0, 27.5 ], [ 14.0, 28.0 ], [ 14.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 28.0 ], [ 15.0, 27.5 ], [ 14.5, 27.5 ], [ 14.5, 28.0 ], [ 15.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 28.0 ], [ 15.5, 27.5 ], [ 15.0, 27.5 ], [ 15.0, 28.0 ], [ 15.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 28.0 ], [ 16.0, 27.5 ], [ 15.5, 27.5 ], [ 15.5, 28.0 ], [ 16.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 28.0 ], [ 16.5, 27.5 ], [ 16.0, 27.5 ], [ 16.0, 28.0 ], [ 16.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 28.0 ], [ 17.0, 27.5 ], [ 16.5, 27.5 ], [ 16.5, 28.0 ], [ 17.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 28.0 ], [ 17.5, 27.5 ], [ 17.0, 27.5 ], [ 17.0, 28.0 ], [ 17.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 28.0 ], [ 18.0, 27.5 ], [ 17.5, 27.5 ], [ 17.5, 28.0 ], [ 18.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 28.0 ], [ 18.5, 27.5 ], [ 18.0, 27.5 ], [ 18.0, 28.0 ], [ 18.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 28.0 ], [ 19.0, 27.5 ], [ 18.5, 27.5 ], [ 18.5, 28.0 ], [ 19.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 28.0 ], [ 19.5, 27.5 ], [ 19.0, 27.5 ], [ 19.0, 28.0 ], [ 19.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 28.0 ], [ 20.0, 27.5 ], [ 19.5, 27.5 ], [ 19.5, 28.0 ], [ 20.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 28.0 ], [ 20.5, 27.5 ], [ 20.0, 27.5 ], [ 20.0, 28.0 ], [ 20.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 28.0 ], [ 21.0, 27.5 ], [ 20.5, 27.5 ], [ 20.5, 28.0 ], [ 21.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 28.0 ], [ 21.5, 27.5 ], [ 21.0, 27.5 ], [ 21.0, 28.0 ], [ 21.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 28.0 ], [ 22.0, 27.5 ], [ 21.5, 27.5 ], [ 21.5, 28.0 ], [ 22.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 28.0 ], [ 22.5, 27.5 ], [ 22.0, 27.5 ], [ 22.0, 28.0 ], [ 22.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 28.0 ], [ 23.0, 27.5 ], [ 22.5, 27.5 ], [ 22.5, 28.0 ], [ 23.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 28.0 ], [ 23.5, 27.5 ], [ 23.0, 27.5 ], [ 23.0, 28.0 ], [ 23.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 28.0 ], [ 24.0, 27.5 ], [ 23.5, 27.5 ], [ 23.5, 28.0 ], [ 24.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 28.0 ], [ 24.5, 27.5 ], [ 24.0, 27.5 ], [ 24.0, 28.0 ], [ 24.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 28.0 ], [ 25.0, 27.5 ], [ 24.5, 27.5 ], [ 24.5, 28.0 ], [ 25.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 28.0 ], [ 25.5, 27.5 ], [ 25.0, 27.5 ], [ 25.0, 28.0 ], [ 25.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 28.0 ], [ 26.0, 27.5 ], [ 25.5, 27.5 ], [ 25.5, 28.0 ], [ 26.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 28.0 ], [ 26.5, 27.5 ], [ 26.0, 27.5 ], [ 26.0, 28.0 ], [ 26.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 28.0 ], [ 27.0, 27.5 ], [ 26.5, 27.5 ], [ 26.5, 28.0 ], [ 27.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 28.0 ], [ 27.5, 27.5 ], [ 27.0, 27.5 ], [ 27.0, 28.0 ], [ 27.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 28.0 ], [ 28.0, 27.5 ], [ 27.5, 27.5 ], [ 27.5, 28.0 ], [ 28.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 28.0 ], [ 28.5, 27.5 ], [ 28.0, 27.5 ], [ 28.0, 28.0 ], [ 28.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 28.0 ], [ 29.0, 27.5 ], [ 28.5, 27.5 ], [ 28.5, 28.0 ], [ 29.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 28.0 ], [ 29.5, 27.5 ], [ 29.0, 27.5 ], [ 29.0, 28.0 ], [ 29.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 28.0 ], [ 30.0, 27.5 ], [ 29.5, 27.5 ], [ 29.5, 28.0 ], [ 30.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 28.0 ], [ 30.5, 27.5 ], [ 30.0, 27.5 ], [ 30.0, 28.0 ], [ 30.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 28.0 ], [ 31.0, 27.5 ], [ 30.5, 27.5 ], [ 30.5, 28.0 ], [ 31.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 28.0 ], [ 31.5, 27.5 ], [ 31.0, 27.5 ], [ 31.0, 28.0 ], [ 31.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 28.0 ], [ 32.0, 27.5 ], [ 31.5, 27.5 ], [ 31.5, 28.0 ], [ 32.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 28.0 ], [ 32.5, 27.5 ], [ 32.0, 27.5 ], [ 32.0, 28.0 ], [ 32.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 28.0 ], [ 33.0, 27.5 ], [ 32.5, 27.5 ], [ 32.5, 28.0 ], [ 33.0, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 28.0 ], [ 33.5, 27.5 ], [ 33.0, 27.5 ], [ 33.0, 28.0 ], [ 33.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 28.0 ], [ 34.5, 27.5 ], [ 34.0, 27.5 ], [ 34.0, 28.0 ], [ 34.5, 28.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.5, 28.5 ], [ -16.5, 28.0 ], [ -17.0, 28.0 ], [ -17.0, 28.5 ], [ -16.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.0, 28.5 ], [ -14.0, 28.0 ], [ -14.5, 28.0 ], [ -14.5, 28.5 ], [ -14.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.0, 28.5 ], [ -11.0, 28.0 ], [ -11.5, 28.0 ], [ -11.5, 28.5 ], [ -11.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 28.5 ], [ -10.5, 28.0 ], [ -11.0, 28.0 ], [ -11.0, 28.5 ], [ -10.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 28.5 ], [ -10.0, 28.0 ], [ -10.5, 28.0 ], [ -10.5, 28.5 ], [ -10.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 28.5 ], [ -9.5, 28.0 ], [ -10.0, 28.0 ], [ -10.0, 28.5 ], [ -9.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 28.5 ], [ -9.0, 28.0 ], [ -9.5, 28.0 ], [ -9.5, 28.5 ], [ -9.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 28.5 ], [ -8.5, 28.0 ], [ -9.0, 28.0 ], [ -9.0, 28.5 ], [ -8.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 28.5 ], [ -8.0, 28.0 ], [ -8.5, 28.0 ], [ -8.5, 28.5 ], [ -8.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 28.5 ], [ -7.5, 28.0 ], [ -8.0, 28.0 ], [ -8.0, 28.5 ], [ -7.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 28.5 ], [ -7.0, 28.0 ], [ -7.5, 28.0 ], [ -7.5, 28.5 ], [ -7.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 28.5 ], [ -6.5, 28.0 ], [ -7.0, 28.0 ], [ -7.0, 28.5 ], [ -6.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 28.5 ], [ -6.0, 28.0 ], [ -6.5, 28.0 ], [ -6.5, 28.5 ], [ -6.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 28.5 ], [ -5.5, 28.0 ], [ -6.0, 28.0 ], [ -6.0, 28.5 ], [ -5.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 28.5 ], [ -5.0, 28.0 ], [ -5.5, 28.0 ], [ -5.5, 28.5 ], [ -5.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 28.5 ], [ -4.5, 28.0 ], [ -5.0, 28.0 ], [ -5.0, 28.5 ], [ -4.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 28.5 ], [ -4.0, 28.0 ], [ -4.5, 28.0 ], [ -4.5, 28.5 ], [ -4.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 28.5 ], [ -3.5, 28.0 ], [ -4.0, 28.0 ], [ -4.0, 28.5 ], [ -3.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 28.5 ], [ -3.0, 28.0 ], [ -3.5, 28.0 ], [ -3.5, 28.5 ], [ -3.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 28.5 ], [ -2.5, 28.0 ], [ -3.0, 28.0 ], [ -3.0, 28.5 ], [ -2.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 28.5 ], [ -2.0, 28.0 ], [ -2.5, 28.0 ], [ -2.5, 28.5 ], [ -2.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 28.5 ], [ -1.5, 28.0 ], [ -2.0, 28.0 ], [ -2.0, 28.5 ], [ -1.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 28.5 ], [ -1.0, 28.0 ], [ -1.5, 28.0 ], [ -1.5, 28.5 ], [ -1.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 28.5 ], [ -0.5, 28.0 ], [ -1.0, 28.0 ], [ -1.0, 28.5 ], [ -0.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 28.5 ], [ 0.0, 28.0 ], [ -0.5, 28.0 ], [ -0.5, 28.5 ], [ 0.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 28.5 ], [ 0.5, 28.0 ], [ 0.0, 28.0 ], [ 0.0, 28.5 ], [ 0.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 28.5 ], [ 1.0, 28.0 ], [ 0.5, 28.0 ], [ 0.5, 28.5 ], [ 1.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 28.5 ], [ 1.5, 28.0 ], [ 1.0, 28.0 ], [ 1.0, 28.5 ], [ 1.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 28.5 ], [ 2.0, 28.0 ], [ 1.5, 28.0 ], [ 1.5, 28.5 ], [ 2.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 28.5 ], [ 2.5, 28.0 ], [ 2.0, 28.0 ], [ 2.0, 28.5 ], [ 2.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 28.5 ], [ 3.0, 28.0 ], [ 2.5, 28.0 ], [ 2.5, 28.5 ], [ 3.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 28.5 ], [ 3.5, 28.0 ], [ 3.0, 28.0 ], [ 3.0, 28.5 ], [ 3.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 28.5 ], [ 4.0, 28.0 ], [ 3.5, 28.0 ], [ 3.5, 28.5 ], [ 4.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 28.5 ], [ 4.5, 28.0 ], [ 4.0, 28.0 ], [ 4.0, 28.5 ], [ 4.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 28.5 ], [ 5.0, 28.0 ], [ 4.5, 28.0 ], [ 4.5, 28.5 ], [ 5.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 28.5 ], [ 5.5, 28.0 ], [ 5.0, 28.0 ], [ 5.0, 28.5 ], [ 5.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 28.5 ], [ 6.0, 28.0 ], [ 5.5, 28.0 ], [ 5.5, 28.5 ], [ 6.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 28.5 ], [ 6.5, 28.0 ], [ 6.0, 28.0 ], [ 6.0, 28.5 ], [ 6.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 28.5 ], [ 7.0, 28.0 ], [ 6.5, 28.0 ], [ 6.5, 28.5 ], [ 7.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 28.5 ], [ 7.5, 28.0 ], [ 7.0, 28.0 ], [ 7.0, 28.5 ], [ 7.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 28.5 ], [ 8.0, 28.0 ], [ 7.5, 28.0 ], [ 7.5, 28.5 ], [ 8.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 28.5 ], [ 8.5, 28.0 ], [ 8.0, 28.0 ], [ 8.0, 28.5 ], [ 8.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 28.5 ], [ 9.0, 28.0 ], [ 8.5, 28.0 ], [ 8.5, 28.5 ], [ 9.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 28.5 ], [ 9.5, 28.0 ], [ 9.0, 28.0 ], [ 9.0, 28.5 ], [ 9.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 28.5 ], [ 10.0, 28.0 ], [ 9.5, 28.0 ], [ 9.5, 28.5 ], [ 10.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 28.5 ], [ 10.5, 28.0 ], [ 10.0, 28.0 ], [ 10.0, 28.5 ], [ 10.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 28.5 ], [ 11.0, 28.0 ], [ 10.5, 28.0 ], [ 10.5, 28.5 ], [ 11.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 28.5 ], [ 11.5, 28.0 ], [ 11.0, 28.0 ], [ 11.0, 28.5 ], [ 11.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 28.5 ], [ 12.0, 28.0 ], [ 11.5, 28.0 ], [ 11.5, 28.5 ], [ 12.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 28.5 ], [ 12.5, 28.0 ], [ 12.0, 28.0 ], [ 12.0, 28.5 ], [ 12.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 28.5 ], [ 13.0, 28.0 ], [ 12.5, 28.0 ], [ 12.5, 28.5 ], [ 13.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 28.5 ], [ 13.5, 28.0 ], [ 13.0, 28.0 ], [ 13.0, 28.5 ], [ 13.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 28.5 ], [ 14.0, 28.0 ], [ 13.5, 28.0 ], [ 13.5, 28.5 ], [ 14.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 28.5 ], [ 14.5, 28.0 ], [ 14.0, 28.0 ], [ 14.0, 28.5 ], [ 14.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 28.5 ], [ 15.0, 28.0 ], [ 14.5, 28.0 ], [ 14.5, 28.5 ], [ 15.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 28.5 ], [ 15.5, 28.0 ], [ 15.0, 28.0 ], [ 15.0, 28.5 ], [ 15.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 28.5 ], [ 16.0, 28.0 ], [ 15.5, 28.0 ], [ 15.5, 28.5 ], [ 16.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 28.5 ], [ 16.5, 28.0 ], [ 16.0, 28.0 ], [ 16.0, 28.5 ], [ 16.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 28.5 ], [ 17.0, 28.0 ], [ 16.5, 28.0 ], [ 16.5, 28.5 ], [ 17.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 28.5 ], [ 17.5, 28.0 ], [ 17.0, 28.0 ], [ 17.0, 28.5 ], [ 17.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 28.5 ], [ 18.0, 28.0 ], [ 17.5, 28.0 ], [ 17.5, 28.5 ], [ 18.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 28.5 ], [ 18.5, 28.0 ], [ 18.0, 28.0 ], [ 18.0, 28.5 ], [ 18.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 28.5 ], [ 19.0, 28.0 ], [ 18.5, 28.0 ], [ 18.5, 28.5 ], [ 19.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 28.5 ], [ 19.5, 28.0 ], [ 19.0, 28.0 ], [ 19.0, 28.5 ], [ 19.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 28.5 ], [ 20.0, 28.0 ], [ 19.5, 28.0 ], [ 19.5, 28.5 ], [ 20.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 28.5 ], [ 20.5, 28.0 ], [ 20.0, 28.0 ], [ 20.0, 28.5 ], [ 20.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 28.5 ], [ 21.0, 28.0 ], [ 20.5, 28.0 ], [ 20.5, 28.5 ], [ 21.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 28.5 ], [ 21.5, 28.0 ], [ 21.0, 28.0 ], [ 21.0, 28.5 ], [ 21.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 28.5 ], [ 22.0, 28.0 ], [ 21.5, 28.0 ], [ 21.5, 28.5 ], [ 22.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 28.5 ], [ 22.5, 28.0 ], [ 22.0, 28.0 ], [ 22.0, 28.5 ], [ 22.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 28.5 ], [ 23.0, 28.0 ], [ 22.5, 28.0 ], [ 22.5, 28.5 ], [ 23.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 28.5 ], [ 23.5, 28.0 ], [ 23.0, 28.0 ], [ 23.0, 28.5 ], [ 23.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 28.5 ], [ 24.0, 28.0 ], [ 23.5, 28.0 ], [ 23.5, 28.5 ], [ 24.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 28.5 ], [ 24.5, 28.0 ], [ 24.0, 28.0 ], [ 24.0, 28.5 ], [ 24.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 28.5 ], [ 25.0, 28.0 ], [ 24.5, 28.0 ], [ 24.5, 28.5 ], [ 25.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 28.5 ], [ 25.5, 28.0 ], [ 25.0, 28.0 ], [ 25.0, 28.5 ], [ 25.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 28.5 ], [ 26.0, 28.0 ], [ 25.5, 28.0 ], [ 25.5, 28.5 ], [ 26.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 28.5 ], [ 26.5, 28.0 ], [ 26.0, 28.0 ], [ 26.0, 28.5 ], [ 26.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 28.5 ], [ 27.0, 28.0 ], [ 26.5, 28.0 ], [ 26.5, 28.5 ], [ 27.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 28.5 ], [ 27.5, 28.0 ], [ 27.0, 28.0 ], [ 27.0, 28.5 ], [ 27.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 28.5 ], [ 28.0, 28.0 ], [ 27.5, 28.0 ], [ 27.5, 28.5 ], [ 28.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 28.5 ], [ 28.5, 28.0 ], [ 28.0, 28.0 ], [ 28.0, 28.5 ], [ 28.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 28.5 ], [ 29.0, 28.0 ], [ 28.5, 28.0 ], [ 28.5, 28.5 ], [ 29.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 28.5 ], [ 29.5, 28.0 ], [ 29.0, 28.0 ], [ 29.0, 28.5 ], [ 29.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 28.5 ], [ 30.0, 28.0 ], [ 29.5, 28.0 ], [ 29.5, 28.5 ], [ 30.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 28.5 ], [ 30.5, 28.0 ], [ 30.0, 28.0 ], [ 30.0, 28.5 ], [ 30.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 28.5 ], [ 31.0, 28.0 ], [ 30.5, 28.0 ], [ 30.5, 28.5 ], [ 31.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 28.5 ], [ 31.5, 28.0 ], [ 31.0, 28.0 ], [ 31.0, 28.5 ], [ 31.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 28.5 ], [ 32.0, 28.0 ], [ 31.5, 28.0 ], [ 31.5, 28.5 ], [ 32.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 28.5 ], [ 32.5, 28.0 ], [ 32.0, 28.0 ], [ 32.0, 28.5 ], [ 32.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 28.5 ], [ 33.0, 28.0 ], [ 32.5, 28.0 ], [ 32.5, 28.5 ], [ 33.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 28.5 ], [ 34.0, 28.0 ], [ 33.5, 28.0 ], [ 33.5, 28.5 ], [ 34.0, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 28.5 ], [ 34.5, 28.0 ], [ 34.0, 28.0 ], [ 34.0, 28.5 ], [ 34.5, 28.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -17.5, 29.0 ], [ -17.5, 28.5 ], [ -18.0, 28.5 ], [ -18.0, 29.0 ], [ -17.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.5, 29.0 ], [ -10.5, 28.5 ], [ -11.0, 28.5 ], [ -11.0, 29.0 ], [ -10.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 29.0 ], [ -10.0, 28.5 ], [ -10.5, 28.5 ], [ -10.5, 29.0 ], [ -10.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 29.0 ], [ -9.5, 28.5 ], [ -10.0, 28.5 ], [ -10.0, 29.0 ], [ -9.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 29.0 ], [ -9.0, 28.5 ], [ -9.5, 28.5 ], [ -9.5, 29.0 ], [ -9.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 29.0 ], [ -8.5, 28.5 ], [ -9.0, 28.5 ], [ -9.0, 29.0 ], [ -8.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 29.0 ], [ -8.0, 28.5 ], [ -8.5, 28.5 ], [ -8.5, 29.0 ], [ -8.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 29.0 ], [ -7.5, 28.5 ], [ -8.0, 28.5 ], [ -8.0, 29.0 ], [ -7.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 29.0 ], [ -7.0, 28.5 ], [ -7.5, 28.5 ], [ -7.5, 29.0 ], [ -7.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 29.0 ], [ -6.5, 28.5 ], [ -7.0, 28.5 ], [ -7.0, 29.0 ], [ -6.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 29.0 ], [ -6.0, 28.5 ], [ -6.5, 28.5 ], [ -6.5, 29.0 ], [ -6.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 29.0 ], [ -5.5, 28.5 ], [ -6.0, 28.5 ], [ -6.0, 29.0 ], [ -5.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 29.0 ], [ -5.0, 28.5 ], [ -5.5, 28.5 ], [ -5.5, 29.0 ], [ -5.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 29.0 ], [ -4.5, 28.5 ], [ -5.0, 28.5 ], [ -5.0, 29.0 ], [ -4.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 29.0 ], [ -4.0, 28.5 ], [ -4.5, 28.5 ], [ -4.5, 29.0 ], [ -4.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 29.0 ], [ -3.5, 28.5 ], [ -4.0, 28.5 ], [ -4.0, 29.0 ], [ -3.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 29.0 ], [ -3.0, 28.5 ], [ -3.5, 28.5 ], [ -3.5, 29.0 ], [ -3.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 29.0 ], [ -2.5, 28.5 ], [ -3.0, 28.5 ], [ -3.0, 29.0 ], [ -2.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 29.0 ], [ -2.0, 28.5 ], [ -2.5, 28.5 ], [ -2.5, 29.0 ], [ -2.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 29.0 ], [ -1.5, 28.5 ], [ -2.0, 28.5 ], [ -2.0, 29.0 ], [ -1.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 29.0 ], [ -1.0, 28.5 ], [ -1.5, 28.5 ], [ -1.5, 29.0 ], [ -1.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 29.0 ], [ -0.5, 28.5 ], [ -1.0, 28.5 ], [ -1.0, 29.0 ], [ -0.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 29.0 ], [ 0.0, 28.5 ], [ -0.5, 28.5 ], [ -0.5, 29.0 ], [ 0.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 29.0 ], [ 0.5, 28.5 ], [ 0.0, 28.5 ], [ 0.0, 29.0 ], [ 0.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 29.0 ], [ 1.0, 28.5 ], [ 0.5, 28.5 ], [ 0.5, 29.0 ], [ 1.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 29.0 ], [ 1.5, 28.5 ], [ 1.0, 28.5 ], [ 1.0, 29.0 ], [ 1.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 29.0 ], [ 2.0, 28.5 ], [ 1.5, 28.5 ], [ 1.5, 29.0 ], [ 2.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 29.0 ], [ 2.5, 28.5 ], [ 2.0, 28.5 ], [ 2.0, 29.0 ], [ 2.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 29.0 ], [ 3.0, 28.5 ], [ 2.5, 28.5 ], [ 2.5, 29.0 ], [ 3.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 29.0 ], [ 3.5, 28.5 ], [ 3.0, 28.5 ], [ 3.0, 29.0 ], [ 3.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 29.0 ], [ 4.0, 28.5 ], [ 3.5, 28.5 ], [ 3.5, 29.0 ], [ 4.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 29.0 ], [ 4.5, 28.5 ], [ 4.0, 28.5 ], [ 4.0, 29.0 ], [ 4.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 29.0 ], [ 5.0, 28.5 ], [ 4.5, 28.5 ], [ 4.5, 29.0 ], [ 5.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 29.0 ], [ 5.5, 28.5 ], [ 5.0, 28.5 ], [ 5.0, 29.0 ], [ 5.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 29.0 ], [ 6.0, 28.5 ], [ 5.5, 28.5 ], [ 5.5, 29.0 ], [ 6.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 29.0 ], [ 6.5, 28.5 ], [ 6.0, 28.5 ], [ 6.0, 29.0 ], [ 6.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 29.0 ], [ 7.0, 28.5 ], [ 6.5, 28.5 ], [ 6.5, 29.0 ], [ 7.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 29.0 ], [ 7.5, 28.5 ], [ 7.0, 28.5 ], [ 7.0, 29.0 ], [ 7.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 29.0 ], [ 8.0, 28.5 ], [ 7.5, 28.5 ], [ 7.5, 29.0 ], [ 8.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 29.0 ], [ 8.5, 28.5 ], [ 8.0, 28.5 ], [ 8.0, 29.0 ], [ 8.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 29.0 ], [ 9.0, 28.5 ], [ 8.5, 28.5 ], [ 8.5, 29.0 ], [ 9.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 29.0 ], [ 9.5, 28.5 ], [ 9.0, 28.5 ], [ 9.0, 29.0 ], [ 9.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 29.0 ], [ 10.0, 28.5 ], [ 9.5, 28.5 ], [ 9.5, 29.0 ], [ 10.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 29.0 ], [ 10.5, 28.5 ], [ 10.0, 28.5 ], [ 10.0, 29.0 ], [ 10.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 29.0 ], [ 11.0, 28.5 ], [ 10.5, 28.5 ], [ 10.5, 29.0 ], [ 11.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 29.0 ], [ 11.5, 28.5 ], [ 11.0, 28.5 ], [ 11.0, 29.0 ], [ 11.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 29.0 ], [ 12.0, 28.5 ], [ 11.5, 28.5 ], [ 11.5, 29.0 ], [ 12.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 29.0 ], [ 12.5, 28.5 ], [ 12.0, 28.5 ], [ 12.0, 29.0 ], [ 12.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 29.0 ], [ 13.0, 28.5 ], [ 12.5, 28.5 ], [ 12.5, 29.0 ], [ 13.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 29.0 ], [ 13.5, 28.5 ], [ 13.0, 28.5 ], [ 13.0, 29.0 ], [ 13.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 29.0 ], [ 14.0, 28.5 ], [ 13.5, 28.5 ], [ 13.5, 29.0 ], [ 14.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 29.0 ], [ 14.5, 28.5 ], [ 14.0, 28.5 ], [ 14.0, 29.0 ], [ 14.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 29.0 ], [ 15.0, 28.5 ], [ 14.5, 28.5 ], [ 14.5, 29.0 ], [ 15.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 29.0 ], [ 15.5, 28.5 ], [ 15.0, 28.5 ], [ 15.0, 29.0 ], [ 15.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 29.0 ], [ 16.0, 28.5 ], [ 15.5, 28.5 ], [ 15.5, 29.0 ], [ 16.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 29.0 ], [ 16.5, 28.5 ], [ 16.0, 28.5 ], [ 16.0, 29.0 ], [ 16.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 29.0 ], [ 17.0, 28.5 ], [ 16.5, 28.5 ], [ 16.5, 29.0 ], [ 17.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 29.0 ], [ 17.5, 28.5 ], [ 17.0, 28.5 ], [ 17.0, 29.0 ], [ 17.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 29.0 ], [ 18.0, 28.5 ], [ 17.5, 28.5 ], [ 17.5, 29.0 ], [ 18.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 29.0 ], [ 18.5, 28.5 ], [ 18.0, 28.5 ], [ 18.0, 29.0 ], [ 18.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 29.0 ], [ 19.0, 28.5 ], [ 18.5, 28.5 ], [ 18.5, 29.0 ], [ 19.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 29.0 ], [ 19.5, 28.5 ], [ 19.0, 28.5 ], [ 19.0, 29.0 ], [ 19.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 29.0 ], [ 20.0, 28.5 ], [ 19.5, 28.5 ], [ 19.5, 29.0 ], [ 20.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 29.0 ], [ 20.5, 28.5 ], [ 20.0, 28.5 ], [ 20.0, 29.0 ], [ 20.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 29.0 ], [ 21.0, 28.5 ], [ 20.5, 28.5 ], [ 20.5, 29.0 ], [ 21.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 29.0 ], [ 21.5, 28.5 ], [ 21.0, 28.5 ], [ 21.0, 29.0 ], [ 21.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 29.0 ], [ 22.0, 28.5 ], [ 21.5, 28.5 ], [ 21.5, 29.0 ], [ 22.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 29.0 ], [ 22.5, 28.5 ], [ 22.0, 28.5 ], [ 22.0, 29.0 ], [ 22.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 29.0 ], [ 23.0, 28.5 ], [ 22.5, 28.5 ], [ 22.5, 29.0 ], [ 23.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 29.0 ], [ 23.5, 28.5 ], [ 23.0, 28.5 ], [ 23.0, 29.0 ], [ 23.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 29.0 ], [ 24.0, 28.5 ], [ 23.5, 28.5 ], [ 23.5, 29.0 ], [ 24.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 29.0 ], [ 24.5, 28.5 ], [ 24.0, 28.5 ], [ 24.0, 29.0 ], [ 24.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 29.0 ], [ 25.0, 28.5 ], [ 24.5, 28.5 ], [ 24.5, 29.0 ], [ 25.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 29.0 ], [ 25.5, 28.5 ], [ 25.0, 28.5 ], [ 25.0, 29.0 ], [ 25.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 29.0 ], [ 26.0, 28.5 ], [ 25.5, 28.5 ], [ 25.5, 29.0 ], [ 26.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 29.0 ], [ 26.5, 28.5 ], [ 26.0, 28.5 ], [ 26.0, 29.0 ], [ 26.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 29.0 ], [ 27.0, 28.5 ], [ 26.5, 28.5 ], [ 26.5, 29.0 ], [ 27.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 29.0 ], [ 27.5, 28.5 ], [ 27.0, 28.5 ], [ 27.0, 29.0 ], [ 27.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 29.0 ], [ 28.0, 28.5 ], [ 27.5, 28.5 ], [ 27.5, 29.0 ], [ 28.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 29.0 ], [ 28.5, 28.5 ], [ 28.0, 28.5 ], [ 28.0, 29.0 ], [ 28.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 29.0 ], [ 29.0, 28.5 ], [ 28.5, 28.5 ], [ 28.5, 29.0 ], [ 29.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 29.0 ], [ 29.5, 28.5 ], [ 29.0, 28.5 ], [ 29.0, 29.0 ], [ 29.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 29.0 ], [ 30.0, 28.5 ], [ 29.5, 28.5 ], [ 29.5, 29.0 ], [ 30.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 29.0 ], [ 30.5, 28.5 ], [ 30.0, 28.5 ], [ 30.0, 29.0 ], [ 30.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 29.0 ], [ 31.0, 28.5 ], [ 30.5, 28.5 ], [ 30.5, 29.0 ], [ 31.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 29.0 ], [ 31.5, 28.5 ], [ 31.0, 28.5 ], [ 31.0, 29.0 ], [ 31.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 29.0 ], [ 32.0, 28.5 ], [ 31.5, 28.5 ], [ 31.5, 29.0 ], [ 32.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 29.0 ], [ 32.5, 28.5 ], [ 32.0, 28.5 ], [ 32.0, 29.0 ], [ 32.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 29.0 ], [ 33.0, 28.5 ], [ 32.5, 28.5 ], [ 32.5, 29.0 ], [ 33.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 29.0 ], [ 33.5, 28.5 ], [ 33.0, 28.5 ], [ 33.0, 29.0 ], [ 33.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 29.0 ], [ 34.0, 28.5 ], [ 33.5, 28.5 ], [ 33.5, 29.0 ], [ 34.0, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 29.0 ], [ 34.5, 28.5 ], [ 34.0, 28.5 ], [ 34.0, 29.0 ], [ 34.5, 29.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 29.5 ], [ -10.0, 29.0 ], [ -10.5, 29.0 ], [ -10.5, 29.5 ], [ -10.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 29.5 ], [ -9.5, 29.0 ], [ -10.0, 29.0 ], [ -10.0, 29.5 ], [ -9.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 29.5 ], [ -9.0, 29.0 ], [ -9.5, 29.0 ], [ -9.5, 29.5 ], [ -9.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 29.5 ], [ -8.5, 29.0 ], [ -9.0, 29.0 ], [ -9.0, 29.5 ], [ -8.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 29.5 ], [ -8.0, 29.0 ], [ -8.5, 29.0 ], [ -8.5, 29.5 ], [ -8.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 29.5 ], [ -7.5, 29.0 ], [ -8.0, 29.0 ], [ -8.0, 29.5 ], [ -7.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 29.5 ], [ -7.0, 29.0 ], [ -7.5, 29.0 ], [ -7.5, 29.5 ], [ -7.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 29.5 ], [ -6.5, 29.0 ], [ -7.0, 29.0 ], [ -7.0, 29.5 ], [ -6.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 29.5 ], [ -6.0, 29.0 ], [ -6.5, 29.0 ], [ -6.5, 29.5 ], [ -6.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 29.5 ], [ -5.5, 29.0 ], [ -6.0, 29.0 ], [ -6.0, 29.5 ], [ -5.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 29.5 ], [ -5.0, 29.0 ], [ -5.5, 29.0 ], [ -5.5, 29.5 ], [ -5.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 29.5 ], [ -4.5, 29.0 ], [ -5.0, 29.0 ], [ -5.0, 29.5 ], [ -4.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 29.5 ], [ -4.0, 29.0 ], [ -4.5, 29.0 ], [ -4.5, 29.5 ], [ -4.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 29.5 ], [ -3.5, 29.0 ], [ -4.0, 29.0 ], [ -4.0, 29.5 ], [ -3.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 29.5 ], [ -3.0, 29.0 ], [ -3.5, 29.0 ], [ -3.5, 29.5 ], [ -3.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 29.5 ], [ -2.5, 29.0 ], [ -3.0, 29.0 ], [ -3.0, 29.5 ], [ -2.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 29.5 ], [ -2.0, 29.0 ], [ -2.5, 29.0 ], [ -2.5, 29.5 ], [ -2.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 29.5 ], [ -1.5, 29.0 ], [ -2.0, 29.0 ], [ -2.0, 29.5 ], [ -1.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 29.5 ], [ -1.0, 29.0 ], [ -1.5, 29.0 ], [ -1.5, 29.5 ], [ -1.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 29.5 ], [ -0.5, 29.0 ], [ -1.0, 29.0 ], [ -1.0, 29.5 ], [ -0.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 29.5 ], [ 0.0, 29.0 ], [ -0.5, 29.0 ], [ -0.5, 29.5 ], [ 0.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 29.5 ], [ 0.5, 29.0 ], [ 0.0, 29.0 ], [ 0.0, 29.5 ], [ 0.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 29.5 ], [ 1.0, 29.0 ], [ 0.5, 29.0 ], [ 0.5, 29.5 ], [ 1.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 29.5 ], [ 1.5, 29.0 ], [ 1.0, 29.0 ], [ 1.0, 29.5 ], [ 1.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 29.5 ], [ 2.0, 29.0 ], [ 1.5, 29.0 ], [ 1.5, 29.5 ], [ 2.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 29.5 ], [ 2.5, 29.0 ], [ 2.0, 29.0 ], [ 2.0, 29.5 ], [ 2.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 29.5 ], [ 3.0, 29.0 ], [ 2.5, 29.0 ], [ 2.5, 29.5 ], [ 3.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 29.5 ], [ 3.5, 29.0 ], [ 3.0, 29.0 ], [ 3.0, 29.5 ], [ 3.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 29.5 ], [ 4.0, 29.0 ], [ 3.5, 29.0 ], [ 3.5, 29.5 ], [ 4.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 29.5 ], [ 4.5, 29.0 ], [ 4.0, 29.0 ], [ 4.0, 29.5 ], [ 4.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 29.5 ], [ 5.0, 29.0 ], [ 4.5, 29.0 ], [ 4.5, 29.5 ], [ 5.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 29.5 ], [ 5.5, 29.0 ], [ 5.0, 29.0 ], [ 5.0, 29.5 ], [ 5.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 29.5 ], [ 6.0, 29.0 ], [ 5.5, 29.0 ], [ 5.5, 29.5 ], [ 6.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 29.5 ], [ 6.5, 29.0 ], [ 6.0, 29.0 ], [ 6.0, 29.5 ], [ 6.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 29.5 ], [ 7.0, 29.0 ], [ 6.5, 29.0 ], [ 6.5, 29.5 ], [ 7.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 29.5 ], [ 7.5, 29.0 ], [ 7.0, 29.0 ], [ 7.0, 29.5 ], [ 7.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 29.5 ], [ 8.0, 29.0 ], [ 7.5, 29.0 ], [ 7.5, 29.5 ], [ 8.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 29.5 ], [ 8.5, 29.0 ], [ 8.0, 29.0 ], [ 8.0, 29.5 ], [ 8.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 29.5 ], [ 9.0, 29.0 ], [ 8.5, 29.0 ], [ 8.5, 29.5 ], [ 9.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 29.5 ], [ 9.5, 29.0 ], [ 9.0, 29.0 ], [ 9.0, 29.5 ], [ 9.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 29.5 ], [ 10.0, 29.0 ], [ 9.5, 29.0 ], [ 9.5, 29.5 ], [ 10.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 29.5 ], [ 10.5, 29.0 ], [ 10.0, 29.0 ], [ 10.0, 29.5 ], [ 10.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 29.5 ], [ 11.0, 29.0 ], [ 10.5, 29.0 ], [ 10.5, 29.5 ], [ 11.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 29.5 ], [ 11.5, 29.0 ], [ 11.0, 29.0 ], [ 11.0, 29.5 ], [ 11.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 29.5 ], [ 12.0, 29.0 ], [ 11.5, 29.0 ], [ 11.5, 29.5 ], [ 12.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 29.5 ], [ 12.5, 29.0 ], [ 12.0, 29.0 ], [ 12.0, 29.5 ], [ 12.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 29.5 ], [ 13.0, 29.0 ], [ 12.5, 29.0 ], [ 12.5, 29.5 ], [ 13.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 29.5 ], [ 13.5, 29.0 ], [ 13.0, 29.0 ], [ 13.0, 29.5 ], [ 13.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 29.5 ], [ 14.0, 29.0 ], [ 13.5, 29.0 ], [ 13.5, 29.5 ], [ 14.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 29.5 ], [ 14.5, 29.0 ], [ 14.0, 29.0 ], [ 14.0, 29.5 ], [ 14.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 29.5 ], [ 15.0, 29.0 ], [ 14.5, 29.0 ], [ 14.5, 29.5 ], [ 15.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 29.5 ], [ 15.5, 29.0 ], [ 15.0, 29.0 ], [ 15.0, 29.5 ], [ 15.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 29.5 ], [ 16.0, 29.0 ], [ 15.5, 29.0 ], [ 15.5, 29.5 ], [ 16.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 29.5 ], [ 16.5, 29.0 ], [ 16.0, 29.0 ], [ 16.0, 29.5 ], [ 16.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 29.5 ], [ 17.0, 29.0 ], [ 16.5, 29.0 ], [ 16.5, 29.5 ], [ 17.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 29.5 ], [ 17.5, 29.0 ], [ 17.0, 29.0 ], [ 17.0, 29.5 ], [ 17.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 29.5 ], [ 18.0, 29.0 ], [ 17.5, 29.0 ], [ 17.5, 29.5 ], [ 18.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 29.5 ], [ 18.5, 29.0 ], [ 18.0, 29.0 ], [ 18.0, 29.5 ], [ 18.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 29.5 ], [ 19.0, 29.0 ], [ 18.5, 29.0 ], [ 18.5, 29.5 ], [ 19.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 29.5 ], [ 19.5, 29.0 ], [ 19.0, 29.0 ], [ 19.0, 29.5 ], [ 19.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 29.5 ], [ 20.0, 29.0 ], [ 19.5, 29.0 ], [ 19.5, 29.5 ], [ 20.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 29.5 ], [ 20.5, 29.0 ], [ 20.0, 29.0 ], [ 20.0, 29.5 ], [ 20.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 29.5 ], [ 21.0, 29.0 ], [ 20.5, 29.0 ], [ 20.5, 29.5 ], [ 21.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 29.5 ], [ 21.5, 29.0 ], [ 21.0, 29.0 ], [ 21.0, 29.5 ], [ 21.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 29.5 ], [ 22.0, 29.0 ], [ 21.5, 29.0 ], [ 21.5, 29.5 ], [ 22.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 29.5 ], [ 22.5, 29.0 ], [ 22.0, 29.0 ], [ 22.0, 29.5 ], [ 22.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 29.5 ], [ 23.0, 29.0 ], [ 22.5, 29.0 ], [ 22.5, 29.5 ], [ 23.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 29.5 ], [ 23.5, 29.0 ], [ 23.0, 29.0 ], [ 23.0, 29.5 ], [ 23.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 29.5 ], [ 24.0, 29.0 ], [ 23.5, 29.0 ], [ 23.5, 29.5 ], [ 24.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 29.5 ], [ 24.5, 29.0 ], [ 24.0, 29.0 ], [ 24.0, 29.5 ], [ 24.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 29.5 ], [ 25.0, 29.0 ], [ 24.5, 29.0 ], [ 24.5, 29.5 ], [ 25.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 29.5 ], [ 25.5, 29.0 ], [ 25.0, 29.0 ], [ 25.0, 29.5 ], [ 25.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 29.5 ], [ 26.0, 29.0 ], [ 25.5, 29.0 ], [ 25.5, 29.5 ], [ 26.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 29.5 ], [ 26.5, 29.0 ], [ 26.0, 29.0 ], [ 26.0, 29.5 ], [ 26.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 29.5 ], [ 27.0, 29.0 ], [ 26.5, 29.0 ], [ 26.5, 29.5 ], [ 27.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 29.5 ], [ 27.5, 29.0 ], [ 27.0, 29.0 ], [ 27.0, 29.5 ], [ 27.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 29.5 ], [ 28.0, 29.0 ], [ 27.5, 29.0 ], [ 27.5, 29.5 ], [ 28.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 29.5 ], [ 28.5, 29.0 ], [ 28.0, 29.0 ], [ 28.0, 29.5 ], [ 28.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 29.5 ], [ 29.0, 29.0 ], [ 28.5, 29.0 ], [ 28.5, 29.5 ], [ 29.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 29.5 ], [ 29.5, 29.0 ], [ 29.0, 29.0 ], [ 29.0, 29.5 ], [ 29.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 29.5 ], [ 30.0, 29.0 ], [ 29.5, 29.0 ], [ 29.5, 29.5 ], [ 30.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 29.5 ], [ 30.5, 29.0 ], [ 30.0, 29.0 ], [ 30.0, 29.5 ], [ 30.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 29.5 ], [ 31.0, 29.0 ], [ 30.5, 29.0 ], [ 30.5, 29.5 ], [ 31.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 29.5 ], [ 31.5, 29.0 ], [ 31.0, 29.0 ], [ 31.0, 29.5 ], [ 31.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 29.5 ], [ 32.0, 29.0 ], [ 31.5, 29.0 ], [ 31.5, 29.5 ], [ 32.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 29.5 ], [ 32.5, 29.0 ], [ 32.0, 29.0 ], [ 32.0, 29.5 ], [ 32.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 29.5 ], [ 33.5, 29.0 ], [ 33.0, 29.0 ], [ 33.0, 29.5 ], [ 33.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 29.5 ], [ 34.0, 29.0 ], [ 33.5, 29.0 ], [ 33.5, 29.5 ], [ 34.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 29.5 ], [ 34.5, 29.0 ], [ 34.0, 29.0 ], [ 34.0, 29.5 ], [ 34.5, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 29.5 ], [ 35.0, 29.0 ], [ 34.5, 29.0 ], [ 34.5, 29.5 ], [ 35.0, 29.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 30.0 ], [ -9.5, 29.5 ], [ -10.0, 29.5 ], [ -10.0, 30.0 ], [ -9.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 30.0 ], [ -9.0, 29.5 ], [ -9.5, 29.5 ], [ -9.5, 30.0 ], [ -9.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 30.0 ], [ -8.5, 29.5 ], [ -9.0, 29.5 ], [ -9.0, 30.0 ], [ -8.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 30.0 ], [ -8.0, 29.5 ], [ -8.5, 29.5 ], [ -8.5, 30.0 ], [ -8.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 30.0 ], [ -7.5, 29.5 ], [ -8.0, 29.5 ], [ -8.0, 30.0 ], [ -7.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 30.0 ], [ -7.0, 29.5 ], [ -7.5, 29.5 ], [ -7.5, 30.0 ], [ -7.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 30.0 ], [ -6.5, 29.5 ], [ -7.0, 29.5 ], [ -7.0, 30.0 ], [ -6.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 30.0 ], [ -6.0, 29.5 ], [ -6.5, 29.5 ], [ -6.5, 30.0 ], [ -6.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 30.0 ], [ -5.5, 29.5 ], [ -6.0, 29.5 ], [ -6.0, 30.0 ], [ -5.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 30.0 ], [ -5.0, 29.5 ], [ -5.5, 29.5 ], [ -5.5, 30.0 ], [ -5.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 30.0 ], [ -4.5, 29.5 ], [ -5.0, 29.5 ], [ -5.0, 30.0 ], [ -4.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 30.0 ], [ -4.0, 29.5 ], [ -4.5, 29.5 ], [ -4.5, 30.0 ], [ -4.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 30.0 ], [ -3.5, 29.5 ], [ -4.0, 29.5 ], [ -4.0, 30.0 ], [ -3.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 30.0 ], [ -3.0, 29.5 ], [ -3.5, 29.5 ], [ -3.5, 30.0 ], [ -3.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 30.0 ], [ -2.5, 29.5 ], [ -3.0, 29.5 ], [ -3.0, 30.0 ], [ -2.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 30.0 ], [ -2.0, 29.5 ], [ -2.5, 29.5 ], [ -2.5, 30.0 ], [ -2.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 30.0 ], [ -1.5, 29.5 ], [ -2.0, 29.5 ], [ -2.0, 30.0 ], [ -1.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 30.0 ], [ -1.0, 29.5 ], [ -1.5, 29.5 ], [ -1.5, 30.0 ], [ -1.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 30.0 ], [ -0.5, 29.5 ], [ -1.0, 29.5 ], [ -1.0, 30.0 ], [ -0.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 30.0 ], [ 0.0, 29.5 ], [ -0.5, 29.5 ], [ -0.5, 30.0 ], [ 0.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 30.0 ], [ 0.5, 29.5 ], [ 0.0, 29.5 ], [ 0.0, 30.0 ], [ 0.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 30.0 ], [ 1.0, 29.5 ], [ 0.5, 29.5 ], [ 0.5, 30.0 ], [ 1.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 30.0 ], [ 1.5, 29.5 ], [ 1.0, 29.5 ], [ 1.0, 30.0 ], [ 1.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 30.0 ], [ 2.0, 29.5 ], [ 1.5, 29.5 ], [ 1.5, 30.0 ], [ 2.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 30.0 ], [ 2.5, 29.5 ], [ 2.0, 29.5 ], [ 2.0, 30.0 ], [ 2.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 30.0 ], [ 3.0, 29.5 ], [ 2.5, 29.5 ], [ 2.5, 30.0 ], [ 3.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 30.0 ], [ 3.5, 29.5 ], [ 3.0, 29.5 ], [ 3.0, 30.0 ], [ 3.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 30.0 ], [ 4.0, 29.5 ], [ 3.5, 29.5 ], [ 3.5, 30.0 ], [ 4.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 30.0 ], [ 4.5, 29.5 ], [ 4.0, 29.5 ], [ 4.0, 30.0 ], [ 4.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 30.0 ], [ 5.0, 29.5 ], [ 4.5, 29.5 ], [ 4.5, 30.0 ], [ 5.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 30.0 ], [ 5.5, 29.5 ], [ 5.0, 29.5 ], [ 5.0, 30.0 ], [ 5.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 30.0 ], [ 6.0, 29.5 ], [ 5.5, 29.5 ], [ 5.5, 30.0 ], [ 6.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 30.0 ], [ 6.5, 29.5 ], [ 6.0, 29.5 ], [ 6.0, 30.0 ], [ 6.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 30.0 ], [ 7.0, 29.5 ], [ 6.5, 29.5 ], [ 6.5, 30.0 ], [ 7.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 30.0 ], [ 7.5, 29.5 ], [ 7.0, 29.5 ], [ 7.0, 30.0 ], [ 7.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 30.0 ], [ 8.0, 29.5 ], [ 7.5, 29.5 ], [ 7.5, 30.0 ], [ 8.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 30.0 ], [ 8.5, 29.5 ], [ 8.0, 29.5 ], [ 8.0, 30.0 ], [ 8.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 30.0 ], [ 9.0, 29.5 ], [ 8.5, 29.5 ], [ 8.5, 30.0 ], [ 9.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 30.0 ], [ 9.5, 29.5 ], [ 9.0, 29.5 ], [ 9.0, 30.0 ], [ 9.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 30.0 ], [ 10.0, 29.5 ], [ 9.5, 29.5 ], [ 9.5, 30.0 ], [ 10.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 30.0 ], [ 10.5, 29.5 ], [ 10.0, 29.5 ], [ 10.0, 30.0 ], [ 10.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 30.0 ], [ 11.0, 29.5 ], [ 10.5, 29.5 ], [ 10.5, 30.0 ], [ 11.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 30.0 ], [ 11.5, 29.5 ], [ 11.0, 29.5 ], [ 11.0, 30.0 ], [ 11.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 30.0 ], [ 12.0, 29.5 ], [ 11.5, 29.5 ], [ 11.5, 30.0 ], [ 12.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 30.0 ], [ 12.5, 29.5 ], [ 12.0, 29.5 ], [ 12.0, 30.0 ], [ 12.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 30.0 ], [ 13.0, 29.5 ], [ 12.5, 29.5 ], [ 12.5, 30.0 ], [ 13.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 30.0 ], [ 13.5, 29.5 ], [ 13.0, 29.5 ], [ 13.0, 30.0 ], [ 13.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 30.0 ], [ 14.0, 29.5 ], [ 13.5, 29.5 ], [ 13.5, 30.0 ], [ 14.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 30.0 ], [ 14.5, 29.5 ], [ 14.0, 29.5 ], [ 14.0, 30.0 ], [ 14.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 30.0 ], [ 15.0, 29.5 ], [ 14.5, 29.5 ], [ 14.5, 30.0 ], [ 15.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 30.0 ], [ 15.5, 29.5 ], [ 15.0, 29.5 ], [ 15.0, 30.0 ], [ 15.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 30.0 ], [ 16.0, 29.5 ], [ 15.5, 29.5 ], [ 15.5, 30.0 ], [ 16.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 30.0 ], [ 16.5, 29.5 ], [ 16.0, 29.5 ], [ 16.0, 30.0 ], [ 16.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 30.0 ], [ 17.0, 29.5 ], [ 16.5, 29.5 ], [ 16.5, 30.0 ], [ 17.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 30.0 ], [ 17.5, 29.5 ], [ 17.0, 29.5 ], [ 17.0, 30.0 ], [ 17.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 30.0 ], [ 18.0, 29.5 ], [ 17.5, 29.5 ], [ 17.5, 30.0 ], [ 18.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 30.0 ], [ 18.5, 29.5 ], [ 18.0, 29.5 ], [ 18.0, 30.0 ], [ 18.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 30.0 ], [ 19.0, 29.5 ], [ 18.5, 29.5 ], [ 18.5, 30.0 ], [ 19.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 30.0 ], [ 19.5, 29.5 ], [ 19.0, 29.5 ], [ 19.0, 30.0 ], [ 19.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 30.0 ], [ 20.0, 29.5 ], [ 19.5, 29.5 ], [ 19.5, 30.0 ], [ 20.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 30.0 ], [ 20.5, 29.5 ], [ 20.0, 29.5 ], [ 20.0, 30.0 ], [ 20.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 30.0 ], [ 21.0, 29.5 ], [ 20.5, 29.5 ], [ 20.5, 30.0 ], [ 21.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 30.0 ], [ 21.5, 29.5 ], [ 21.0, 29.5 ], [ 21.0, 30.0 ], [ 21.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 30.0 ], [ 22.0, 29.5 ], [ 21.5, 29.5 ], [ 21.5, 30.0 ], [ 22.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 30.0 ], [ 22.5, 29.5 ], [ 22.0, 29.5 ], [ 22.0, 30.0 ], [ 22.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 30.0 ], [ 23.0, 29.5 ], [ 22.5, 29.5 ], [ 22.5, 30.0 ], [ 23.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 30.0 ], [ 23.5, 29.5 ], [ 23.0, 29.5 ], [ 23.0, 30.0 ], [ 23.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 30.0 ], [ 24.0, 29.5 ], [ 23.5, 29.5 ], [ 23.5, 30.0 ], [ 24.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 30.0 ], [ 24.5, 29.5 ], [ 24.0, 29.5 ], [ 24.0, 30.0 ], [ 24.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 30.0 ], [ 25.0, 29.5 ], [ 24.5, 29.5 ], [ 24.5, 30.0 ], [ 25.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 30.0 ], [ 25.5, 29.5 ], [ 25.0, 29.5 ], [ 25.0, 30.0 ], [ 25.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 30.0 ], [ 26.0, 29.5 ], [ 25.5, 29.5 ], [ 25.5, 30.0 ], [ 26.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 30.0 ], [ 26.5, 29.5 ], [ 26.0, 29.5 ], [ 26.0, 30.0 ], [ 26.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 30.0 ], [ 27.0, 29.5 ], [ 26.5, 29.5 ], [ 26.5, 30.0 ], [ 27.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 30.0 ], [ 27.5, 29.5 ], [ 27.0, 29.5 ], [ 27.0, 30.0 ], [ 27.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 30.0 ], [ 28.0, 29.5 ], [ 27.5, 29.5 ], [ 27.5, 30.0 ], [ 28.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 30.0 ], [ 28.5, 29.5 ], [ 28.0, 29.5 ], [ 28.0, 30.0 ], [ 28.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 30.0 ], [ 29.0, 29.5 ], [ 28.5, 29.5 ], [ 28.5, 30.0 ], [ 29.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 30.0 ], [ 29.5, 29.5 ], [ 29.0, 29.5 ], [ 29.0, 30.0 ], [ 29.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 30.0 ], [ 30.0, 29.5 ], [ 29.5, 29.5 ], [ 29.5, 30.0 ], [ 30.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 30.0 ], [ 30.5, 29.5 ], [ 30.0, 29.5 ], [ 30.0, 30.0 ], [ 30.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 30.0 ], [ 31.0, 29.5 ], [ 30.5, 29.5 ], [ 30.5, 30.0 ], [ 31.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 30.0 ], [ 31.5, 29.5 ], [ 31.0, 29.5 ], [ 31.0, 30.0 ], [ 31.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 30.0 ], [ 32.0, 29.5 ], [ 31.5, 29.5 ], [ 31.5, 30.0 ], [ 32.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 30.0 ], [ 32.5, 29.5 ], [ 32.0, 29.5 ], [ 32.0, 30.0 ], [ 32.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 30.0 ], [ 33.0, 29.5 ], [ 32.5, 29.5 ], [ 32.5, 30.0 ], [ 33.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 30.0 ], [ 33.5, 29.5 ], [ 33.0, 29.5 ], [ 33.0, 30.0 ], [ 33.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 30.0 ], [ 34.0, 29.5 ], [ 33.5, 29.5 ], [ 33.5, 30.0 ], [ 34.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 30.0 ], [ 34.5, 29.5 ], [ 34.0, 29.5 ], [ 34.0, 30.0 ], [ 34.5, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 30.0 ], [ 35.0, 29.5 ], [ 34.5, 29.5 ], [ 34.5, 30.0 ], [ 35.0, 30.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 30.5 ], [ -9.0, 30.0 ], [ -9.5, 30.0 ], [ -9.5, 30.5 ], [ -9.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 30.5 ], [ -8.5, 30.0 ], [ -9.0, 30.0 ], [ -9.0, 30.5 ], [ -8.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 30.5 ], [ -8.0, 30.0 ], [ -8.5, 30.0 ], [ -8.5, 30.5 ], [ -8.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 30.5 ], [ -7.5, 30.0 ], [ -8.0, 30.0 ], [ -8.0, 30.5 ], [ -7.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 30.5 ], [ -7.0, 30.0 ], [ -7.5, 30.0 ], [ -7.5, 30.5 ], [ -7.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 30.5 ], [ -6.5, 30.0 ], [ -7.0, 30.0 ], [ -7.0, 30.5 ], [ -6.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 30.5 ], [ -6.0, 30.0 ], [ -6.5, 30.0 ], [ -6.5, 30.5 ], [ -6.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 30.5 ], [ -5.5, 30.0 ], [ -6.0, 30.0 ], [ -6.0, 30.5 ], [ -5.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 30.5 ], [ -5.0, 30.0 ], [ -5.5, 30.0 ], [ -5.5, 30.5 ], [ -5.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 30.5 ], [ -4.5, 30.0 ], [ -5.0, 30.0 ], [ -5.0, 30.5 ], [ -4.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 30.5 ], [ -4.0, 30.0 ], [ -4.5, 30.0 ], [ -4.5, 30.5 ], [ -4.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 30.5 ], [ -3.5, 30.0 ], [ -4.0, 30.0 ], [ -4.0, 30.5 ], [ -3.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 30.5 ], [ -3.0, 30.0 ], [ -3.5, 30.0 ], [ -3.5, 30.5 ], [ -3.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 30.5 ], [ -2.5, 30.0 ], [ -3.0, 30.0 ], [ -3.0, 30.5 ], [ -2.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 30.5 ], [ -2.0, 30.0 ], [ -2.5, 30.0 ], [ -2.5, 30.5 ], [ -2.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 30.5 ], [ -1.5, 30.0 ], [ -2.0, 30.0 ], [ -2.0, 30.5 ], [ -1.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 30.5 ], [ -1.0, 30.0 ], [ -1.5, 30.0 ], [ -1.5, 30.5 ], [ -1.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 30.5 ], [ -0.5, 30.0 ], [ -1.0, 30.0 ], [ -1.0, 30.5 ], [ -0.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 30.5 ], [ 0.0, 30.0 ], [ -0.5, 30.0 ], [ -0.5, 30.5 ], [ 0.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 30.5 ], [ 0.5, 30.0 ], [ 0.0, 30.0 ], [ 0.0, 30.5 ], [ 0.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 30.5 ], [ 1.0, 30.0 ], [ 0.5, 30.0 ], [ 0.5, 30.5 ], [ 1.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 30.5 ], [ 1.5, 30.0 ], [ 1.0, 30.0 ], [ 1.0, 30.5 ], [ 1.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 30.5 ], [ 2.0, 30.0 ], [ 1.5, 30.0 ], [ 1.5, 30.5 ], [ 2.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 30.5 ], [ 2.5, 30.0 ], [ 2.0, 30.0 ], [ 2.0, 30.5 ], [ 2.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 30.5 ], [ 3.0, 30.0 ], [ 2.5, 30.0 ], [ 2.5, 30.5 ], [ 3.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 30.5 ], [ 3.5, 30.0 ], [ 3.0, 30.0 ], [ 3.0, 30.5 ], [ 3.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 30.5 ], [ 4.0, 30.0 ], [ 3.5, 30.0 ], [ 3.5, 30.5 ], [ 4.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 30.5 ], [ 4.5, 30.0 ], [ 4.0, 30.0 ], [ 4.0, 30.5 ], [ 4.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 30.5 ], [ 5.0, 30.0 ], [ 4.5, 30.0 ], [ 4.5, 30.5 ], [ 5.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 30.5 ], [ 5.5, 30.0 ], [ 5.0, 30.0 ], [ 5.0, 30.5 ], [ 5.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 30.5 ], [ 6.0, 30.0 ], [ 5.5, 30.0 ], [ 5.5, 30.5 ], [ 6.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 30.5 ], [ 6.5, 30.0 ], [ 6.0, 30.0 ], [ 6.0, 30.5 ], [ 6.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 30.5 ], [ 7.0, 30.0 ], [ 6.5, 30.0 ], [ 6.5, 30.5 ], [ 7.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 30.5 ], [ 7.5, 30.0 ], [ 7.0, 30.0 ], [ 7.0, 30.5 ], [ 7.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 30.5 ], [ 8.0, 30.0 ], [ 7.5, 30.0 ], [ 7.5, 30.5 ], [ 8.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 30.5 ], [ 8.5, 30.0 ], [ 8.0, 30.0 ], [ 8.0, 30.5 ], [ 8.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 30.5 ], [ 9.0, 30.0 ], [ 8.5, 30.0 ], [ 8.5, 30.5 ], [ 9.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 30.5 ], [ 9.5, 30.0 ], [ 9.0, 30.0 ], [ 9.0, 30.5 ], [ 9.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 30.5 ], [ 10.0, 30.0 ], [ 9.5, 30.0 ], [ 9.5, 30.5 ], [ 10.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 30.5 ], [ 10.5, 30.0 ], [ 10.0, 30.0 ], [ 10.0, 30.5 ], [ 10.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 30.5 ], [ 11.0, 30.0 ], [ 10.5, 30.0 ], [ 10.5, 30.5 ], [ 11.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 30.5 ], [ 11.5, 30.0 ], [ 11.0, 30.0 ], [ 11.0, 30.5 ], [ 11.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 30.5 ], [ 12.0, 30.0 ], [ 11.5, 30.0 ], [ 11.5, 30.5 ], [ 12.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 30.5 ], [ 12.5, 30.0 ], [ 12.0, 30.0 ], [ 12.0, 30.5 ], [ 12.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 30.5 ], [ 13.0, 30.0 ], [ 12.5, 30.0 ], [ 12.5, 30.5 ], [ 13.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 30.5 ], [ 13.5, 30.0 ], [ 13.0, 30.0 ], [ 13.0, 30.5 ], [ 13.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 30.5 ], [ 14.0, 30.0 ], [ 13.5, 30.0 ], [ 13.5, 30.5 ], [ 14.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 30.5 ], [ 14.5, 30.0 ], [ 14.0, 30.0 ], [ 14.0, 30.5 ], [ 14.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 30.5 ], [ 15.0, 30.0 ], [ 14.5, 30.0 ], [ 14.5, 30.5 ], [ 15.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 30.5 ], [ 15.5, 30.0 ], [ 15.0, 30.0 ], [ 15.0, 30.5 ], [ 15.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 30.5 ], [ 16.0, 30.0 ], [ 15.5, 30.0 ], [ 15.5, 30.5 ], [ 16.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 30.5 ], [ 16.5, 30.0 ], [ 16.0, 30.0 ], [ 16.0, 30.5 ], [ 16.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 30.5 ], [ 17.0, 30.0 ], [ 16.5, 30.0 ], [ 16.5, 30.5 ], [ 17.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 30.5 ], [ 17.5, 30.0 ], [ 17.0, 30.0 ], [ 17.0, 30.5 ], [ 17.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 30.5 ], [ 18.0, 30.0 ], [ 17.5, 30.0 ], [ 17.5, 30.5 ], [ 18.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.5, 30.5 ], [ 18.5, 30.0 ], [ 18.0, 30.0 ], [ 18.0, 30.5 ], [ 18.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0, 30.5 ], [ 19.0, 30.0 ], [ 18.5, 30.0 ], [ 18.5, 30.5 ], [ 19.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.5, 30.5 ], [ 19.5, 30.0 ], [ 19.0, 30.0 ], [ 19.0, 30.5 ], [ 19.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.0, 30.5 ], [ 20.0, 30.0 ], [ 19.5, 30.0 ], [ 19.5, 30.5 ], [ 20.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 30.5 ], [ 20.5, 30.0 ], [ 20.0, 30.0 ], [ 20.0, 30.5 ], [ 20.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 30.5 ], [ 21.0, 30.0 ], [ 20.5, 30.0 ], [ 20.5, 30.5 ], [ 21.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 30.5 ], [ 21.5, 30.0 ], [ 21.0, 30.0 ], [ 21.0, 30.5 ], [ 21.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 30.5 ], [ 22.0, 30.0 ], [ 21.5, 30.0 ], [ 21.5, 30.5 ], [ 22.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 30.5 ], [ 22.5, 30.0 ], [ 22.0, 30.0 ], [ 22.0, 30.5 ], [ 22.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 30.5 ], [ 23.0, 30.0 ], [ 22.5, 30.0 ], [ 22.5, 30.5 ], [ 23.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 30.5 ], [ 23.5, 30.0 ], [ 23.0, 30.0 ], [ 23.0, 30.5 ], [ 23.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 30.5 ], [ 24.0, 30.0 ], [ 23.5, 30.0 ], [ 23.5, 30.5 ], [ 24.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 30.5 ], [ 24.5, 30.0 ], [ 24.0, 30.0 ], [ 24.0, 30.5 ], [ 24.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 30.5 ], [ 25.0, 30.0 ], [ 24.5, 30.0 ], [ 24.5, 30.5 ], [ 25.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 30.5 ], [ 25.5, 30.0 ], [ 25.0, 30.0 ], [ 25.0, 30.5 ], [ 25.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 30.5 ], [ 26.0, 30.0 ], [ 25.5, 30.0 ], [ 25.5, 30.5 ], [ 26.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 30.5 ], [ 26.5, 30.0 ], [ 26.0, 30.0 ], [ 26.0, 30.5 ], [ 26.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 30.5 ], [ 27.0, 30.0 ], [ 26.5, 30.0 ], [ 26.5, 30.5 ], [ 27.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 30.5 ], [ 27.5, 30.0 ], [ 27.0, 30.0 ], [ 27.0, 30.5 ], [ 27.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 30.5 ], [ 28.0, 30.0 ], [ 27.5, 30.0 ], [ 27.5, 30.5 ], [ 28.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 30.5 ], [ 28.5, 30.0 ], [ 28.0, 30.0 ], [ 28.0, 30.5 ], [ 28.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 30.5 ], [ 29.0, 30.0 ], [ 28.5, 30.0 ], [ 28.5, 30.5 ], [ 29.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 30.5 ], [ 29.5, 30.0 ], [ 29.0, 30.0 ], [ 29.0, 30.5 ], [ 29.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 30.5 ], [ 30.0, 30.0 ], [ 29.5, 30.0 ], [ 29.5, 30.5 ], [ 30.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 30.5 ], [ 30.5, 30.0 ], [ 30.0, 30.0 ], [ 30.0, 30.5 ], [ 30.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 30.5 ], [ 31.0, 30.0 ], [ 30.5, 30.0 ], [ 30.5, 30.5 ], [ 31.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 30.5 ], [ 31.5, 30.0 ], [ 31.0, 30.0 ], [ 31.0, 30.5 ], [ 31.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 30.5 ], [ 32.0, 30.0 ], [ 31.5, 30.0 ], [ 31.5, 30.5 ], [ 32.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 30.5 ], [ 32.5, 30.0 ], [ 32.0, 30.0 ], [ 32.0, 30.5 ], [ 32.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 30.5 ], [ 33.0, 30.0 ], [ 32.5, 30.0 ], [ 32.5, 30.5 ], [ 33.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 30.5 ], [ 33.5, 30.0 ], [ 33.0, 30.0 ], [ 33.0, 30.5 ], [ 33.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 30.5 ], [ 34.0, 30.0 ], [ 33.5, 30.0 ], [ 33.5, 30.5 ], [ 34.0, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 30.5 ], [ 34.5, 30.0 ], [ 34.0, 30.0 ], [ 34.0, 30.5 ], [ 34.5, 30.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 31.0 ], [ -9.5, 30.5 ], [ -10.0, 30.5 ], [ -10.0, 31.0 ], [ -9.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 31.0 ], [ -9.0, 30.5 ], [ -9.5, 30.5 ], [ -9.5, 31.0 ], [ -9.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 31.0 ], [ -8.5, 30.5 ], [ -9.0, 30.5 ], [ -9.0, 31.0 ], [ -8.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 31.0 ], [ -8.0, 30.5 ], [ -8.5, 30.5 ], [ -8.5, 31.0 ], [ -8.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 31.0 ], [ -7.5, 30.5 ], [ -8.0, 30.5 ], [ -8.0, 31.0 ], [ -7.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 31.0 ], [ -7.0, 30.5 ], [ -7.5, 30.5 ], [ -7.5, 31.0 ], [ -7.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 31.0 ], [ -6.5, 30.5 ], [ -7.0, 30.5 ], [ -7.0, 31.0 ], [ -6.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 31.0 ], [ -6.0, 30.5 ], [ -6.5, 30.5 ], [ -6.5, 31.0 ], [ -6.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 31.0 ], [ -5.5, 30.5 ], [ -6.0, 30.5 ], [ -6.0, 31.0 ], [ -5.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 31.0 ], [ -5.0, 30.5 ], [ -5.5, 30.5 ], [ -5.5, 31.0 ], [ -5.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 31.0 ], [ -4.5, 30.5 ], [ -5.0, 30.5 ], [ -5.0, 31.0 ], [ -4.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 31.0 ], [ -4.0, 30.5 ], [ -4.5, 30.5 ], [ -4.5, 31.0 ], [ -4.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 31.0 ], [ -3.5, 30.5 ], [ -4.0, 30.5 ], [ -4.0, 31.0 ], [ -3.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 31.0 ], [ -3.0, 30.5 ], [ -3.5, 30.5 ], [ -3.5, 31.0 ], [ -3.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 31.0 ], [ -2.5, 30.5 ], [ -3.0, 30.5 ], [ -3.0, 31.0 ], [ -2.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 31.0 ], [ -2.0, 30.5 ], [ -2.5, 30.5 ], [ -2.5, 31.0 ], [ -2.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 31.0 ], [ -1.5, 30.5 ], [ -2.0, 30.5 ], [ -2.0, 31.0 ], [ -1.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 31.0 ], [ -1.0, 30.5 ], [ -1.5, 30.5 ], [ -1.5, 31.0 ], [ -1.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 31.0 ], [ -0.5, 30.5 ], [ -1.0, 30.5 ], [ -1.0, 31.0 ], [ -0.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 31.0 ], [ 0.0, 30.5 ], [ -0.5, 30.5 ], [ -0.5, 31.0 ], [ 0.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 31.0 ], [ 0.5, 30.5 ], [ 0.0, 30.5 ], [ 0.0, 31.0 ], [ 0.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 31.0 ], [ 1.0, 30.5 ], [ 0.5, 30.5 ], [ 0.5, 31.0 ], [ 1.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 31.0 ], [ 1.5, 30.5 ], [ 1.0, 30.5 ], [ 1.0, 31.0 ], [ 1.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 31.0 ], [ 2.0, 30.5 ], [ 1.5, 30.5 ], [ 1.5, 31.0 ], [ 2.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 31.0 ], [ 2.5, 30.5 ], [ 2.0, 30.5 ], [ 2.0, 31.0 ], [ 2.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 31.0 ], [ 3.0, 30.5 ], [ 2.5, 30.5 ], [ 2.5, 31.0 ], [ 3.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 31.0 ], [ 3.5, 30.5 ], [ 3.0, 30.5 ], [ 3.0, 31.0 ], [ 3.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 31.0 ], [ 4.0, 30.5 ], [ 3.5, 30.5 ], [ 3.5, 31.0 ], [ 4.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 31.0 ], [ 4.5, 30.5 ], [ 4.0, 30.5 ], [ 4.0, 31.0 ], [ 4.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 31.0 ], [ 5.0, 30.5 ], [ 4.5, 30.5 ], [ 4.5, 31.0 ], [ 5.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 31.0 ], [ 5.5, 30.5 ], [ 5.0, 30.5 ], [ 5.0, 31.0 ], [ 5.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 31.0 ], [ 6.0, 30.5 ], [ 5.5, 30.5 ], [ 5.5, 31.0 ], [ 6.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 31.0 ], [ 6.5, 30.5 ], [ 6.0, 30.5 ], [ 6.0, 31.0 ], [ 6.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 31.0 ], [ 7.0, 30.5 ], [ 6.5, 30.5 ], [ 6.5, 31.0 ], [ 7.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 31.0 ], [ 7.5, 30.5 ], [ 7.0, 30.5 ], [ 7.0, 31.0 ], [ 7.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 31.0 ], [ 8.0, 30.5 ], [ 7.5, 30.5 ], [ 7.5, 31.0 ], [ 8.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 31.0 ], [ 8.5, 30.5 ], [ 8.0, 30.5 ], [ 8.0, 31.0 ], [ 8.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 31.0 ], [ 9.0, 30.5 ], [ 8.5, 30.5 ], [ 8.5, 31.0 ], [ 9.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 31.0 ], [ 9.5, 30.5 ], [ 9.0, 30.5 ], [ 9.0, 31.0 ], [ 9.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 31.0 ], [ 10.0, 30.5 ], [ 9.5, 30.5 ], [ 9.5, 31.0 ], [ 10.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 31.0 ], [ 10.5, 30.5 ], [ 10.0, 30.5 ], [ 10.0, 31.0 ], [ 10.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 31.0 ], [ 11.0, 30.5 ], [ 10.5, 30.5 ], [ 10.5, 31.0 ], [ 11.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 31.0 ], [ 11.5, 30.5 ], [ 11.0, 30.5 ], [ 11.0, 31.0 ], [ 11.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 31.0 ], [ 12.0, 30.5 ], [ 11.5, 30.5 ], [ 11.5, 31.0 ], [ 12.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 31.0 ], [ 12.5, 30.5 ], [ 12.0, 30.5 ], [ 12.0, 31.0 ], [ 12.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 31.0 ], [ 13.0, 30.5 ], [ 12.5, 30.5 ], [ 12.5, 31.0 ], [ 13.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 31.0 ], [ 13.5, 30.5 ], [ 13.0, 30.5 ], [ 13.0, 31.0 ], [ 13.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 31.0 ], [ 14.0, 30.5 ], [ 13.5, 30.5 ], [ 13.5, 31.0 ], [ 14.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 31.0 ], [ 14.5, 30.5 ], [ 14.0, 30.5 ], [ 14.0, 31.0 ], [ 14.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 31.0 ], [ 15.0, 30.5 ], [ 14.5, 30.5 ], [ 14.5, 31.0 ], [ 15.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 31.0 ], [ 15.5, 30.5 ], [ 15.0, 30.5 ], [ 15.0, 31.0 ], [ 15.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 31.0 ], [ 16.0, 30.5 ], [ 15.5, 30.5 ], [ 15.5, 31.0 ], [ 16.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 31.0 ], [ 16.5, 30.5 ], [ 16.0, 30.5 ], [ 16.0, 31.0 ], [ 16.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 31.0 ], [ 17.0, 30.5 ], [ 16.5, 30.5 ], [ 16.5, 31.0 ], [ 17.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.5, 31.0 ], [ 17.5, 30.5 ], [ 17.0, 30.5 ], [ 17.0, 31.0 ], [ 17.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.0, 31.0 ], [ 18.0, 30.5 ], [ 17.5, 30.5 ], [ 17.5, 31.0 ], [ 18.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 31.0 ], [ 20.5, 30.5 ], [ 20.0, 30.5 ], [ 20.0, 31.0 ], [ 20.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 31.0 ], [ 21.0, 30.5 ], [ 20.5, 30.5 ], [ 20.5, 31.0 ], [ 21.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 31.0 ], [ 21.5, 30.5 ], [ 21.0, 30.5 ], [ 21.0, 31.0 ], [ 21.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 31.0 ], [ 22.0, 30.5 ], [ 21.5, 30.5 ], [ 21.5, 31.0 ], [ 22.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 31.0 ], [ 22.5, 30.5 ], [ 22.0, 30.5 ], [ 22.0, 31.0 ], [ 22.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 31.0 ], [ 23.0, 30.5 ], [ 22.5, 30.5 ], [ 22.5, 31.0 ], [ 23.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 31.0 ], [ 23.5, 30.5 ], [ 23.0, 30.5 ], [ 23.0, 31.0 ], [ 23.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 31.0 ], [ 24.0, 30.5 ], [ 23.5, 30.5 ], [ 23.5, 31.0 ], [ 24.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 31.0 ], [ 24.5, 30.5 ], [ 24.0, 30.5 ], [ 24.0, 31.0 ], [ 24.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 31.0 ], [ 25.0, 30.5 ], [ 24.5, 30.5 ], [ 24.5, 31.0 ], [ 25.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 31.0 ], [ 25.5, 30.5 ], [ 25.0, 30.5 ], [ 25.0, 31.0 ], [ 25.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 31.0 ], [ 26.0, 30.5 ], [ 25.5, 30.5 ], [ 25.5, 31.0 ], [ 26.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 31.0 ], [ 26.5, 30.5 ], [ 26.0, 30.5 ], [ 26.0, 31.0 ], [ 26.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 31.0 ], [ 27.0, 30.5 ], [ 26.5, 30.5 ], [ 26.5, 31.0 ], [ 27.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 31.0 ], [ 27.5, 30.5 ], [ 27.0, 30.5 ], [ 27.0, 31.0 ], [ 27.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.0, 31.0 ], [ 28.0, 30.5 ], [ 27.5, 30.5 ], [ 27.5, 31.0 ], [ 28.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.5, 31.0 ], [ 28.5, 30.5 ], [ 28.0, 30.5 ], [ 28.0, 31.0 ], [ 28.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.0, 31.0 ], [ 29.0, 30.5 ], [ 28.5, 30.5 ], [ 28.5, 31.0 ], [ 29.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.5, 31.0 ], [ 29.5, 30.5 ], [ 29.0, 30.5 ], [ 29.0, 31.0 ], [ 29.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.0, 31.0 ], [ 30.0, 30.5 ], [ 29.5, 30.5 ], [ 29.5, 31.0 ], [ 30.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 31.0 ], [ 30.5, 30.5 ], [ 30.0, 30.5 ], [ 30.0, 31.0 ], [ 30.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 31.0 ], [ 31.0, 30.5 ], [ 30.5, 30.5 ], [ 30.5, 31.0 ], [ 31.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 31.0 ], [ 31.5, 30.5 ], [ 31.0, 30.5 ], [ 31.0, 31.0 ], [ 31.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 31.0 ], [ 32.0, 30.5 ], [ 31.5, 30.5 ], [ 31.5, 31.0 ], [ 32.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 31.0 ], [ 32.5, 30.5 ], [ 32.0, 30.5 ], [ 32.0, 31.0 ], [ 32.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.0, 31.0 ], [ 33.0, 30.5 ], [ 32.5, 30.5 ], [ 32.5, 31.0 ], [ 33.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.5, 31.0 ], [ 33.5, 30.5 ], [ 33.0, 30.5 ], [ 33.0, 31.0 ], [ 33.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.0, 31.0 ], [ 34.0, 30.5 ], [ 33.5, 30.5 ], [ 33.5, 31.0 ], [ 34.0, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.5, 31.0 ], [ 34.5, 30.5 ], [ 34.0, 30.5 ], [ 34.0, 31.0 ], [ 34.5, 31.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.5, 31.5 ], [ -9.5, 31.0 ], [ -10.0, 31.0 ], [ -10.0, 31.5 ], [ -9.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 31.5 ], [ -9.0, 31.0 ], [ -9.5, 31.0 ], [ -9.5, 31.5 ], [ -9.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 31.5 ], [ -8.5, 31.0 ], [ -9.0, 31.0 ], [ -9.0, 31.5 ], [ -8.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 31.5 ], [ -8.0, 31.0 ], [ -8.5, 31.0 ], [ -8.5, 31.5 ], [ -8.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 31.5 ], [ -7.5, 31.0 ], [ -8.0, 31.0 ], [ -8.0, 31.5 ], [ -7.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 31.5 ], [ -7.0, 31.0 ], [ -7.5, 31.0 ], [ -7.5, 31.5 ], [ -7.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 31.5 ], [ -6.5, 31.0 ], [ -7.0, 31.0 ], [ -7.0, 31.5 ], [ -6.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 31.5 ], [ -6.0, 31.0 ], [ -6.5, 31.0 ], [ -6.5, 31.5 ], [ -6.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 31.5 ], [ -5.5, 31.0 ], [ -6.0, 31.0 ], [ -6.0, 31.5 ], [ -5.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 31.5 ], [ -5.0, 31.0 ], [ -5.5, 31.0 ], [ -5.5, 31.5 ], [ -5.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 31.5 ], [ -4.5, 31.0 ], [ -5.0, 31.0 ], [ -5.0, 31.5 ], [ -4.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 31.5 ], [ -4.0, 31.0 ], [ -4.5, 31.0 ], [ -4.5, 31.5 ], [ -4.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 31.5 ], [ -3.5, 31.0 ], [ -4.0, 31.0 ], [ -4.0, 31.5 ], [ -3.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 31.5 ], [ -3.0, 31.0 ], [ -3.5, 31.0 ], [ -3.5, 31.5 ], [ -3.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 31.5 ], [ -2.5, 31.0 ], [ -3.0, 31.0 ], [ -3.0, 31.5 ], [ -2.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 31.5 ], [ -2.0, 31.0 ], [ -2.5, 31.0 ], [ -2.5, 31.5 ], [ -2.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 31.5 ], [ -1.5, 31.0 ], [ -2.0, 31.0 ], [ -2.0, 31.5 ], [ -1.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 31.5 ], [ -1.0, 31.0 ], [ -1.5, 31.0 ], [ -1.5, 31.5 ], [ -1.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 31.5 ], [ -0.5, 31.0 ], [ -1.0, 31.0 ], [ -1.0, 31.5 ], [ -0.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 31.5 ], [ 0.0, 31.0 ], [ -0.5, 31.0 ], [ -0.5, 31.5 ], [ 0.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 31.5 ], [ 0.5, 31.0 ], [ 0.0, 31.0 ], [ 0.0, 31.5 ], [ 0.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 31.5 ], [ 1.0, 31.0 ], [ 0.5, 31.0 ], [ 0.5, 31.5 ], [ 1.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 31.5 ], [ 1.5, 31.0 ], [ 1.0, 31.0 ], [ 1.0, 31.5 ], [ 1.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 31.5 ], [ 2.0, 31.0 ], [ 1.5, 31.0 ], [ 1.5, 31.5 ], [ 2.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 31.5 ], [ 2.5, 31.0 ], [ 2.0, 31.0 ], [ 2.0, 31.5 ], [ 2.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 31.5 ], [ 3.0, 31.0 ], [ 2.5, 31.0 ], [ 2.5, 31.5 ], [ 3.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 31.5 ], [ 3.5, 31.0 ], [ 3.0, 31.0 ], [ 3.0, 31.5 ], [ 3.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 31.5 ], [ 4.0, 31.0 ], [ 3.5, 31.0 ], [ 3.5, 31.5 ], [ 4.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 31.5 ], [ 4.5, 31.0 ], [ 4.0, 31.0 ], [ 4.0, 31.5 ], [ 4.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 31.5 ], [ 5.0, 31.0 ], [ 4.5, 31.0 ], [ 4.5, 31.5 ], [ 5.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 31.5 ], [ 5.5, 31.0 ], [ 5.0, 31.0 ], [ 5.0, 31.5 ], [ 5.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 31.5 ], [ 6.0, 31.0 ], [ 5.5, 31.0 ], [ 5.5, 31.5 ], [ 6.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 31.5 ], [ 6.5, 31.0 ], [ 6.0, 31.0 ], [ 6.0, 31.5 ], [ 6.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 31.5 ], [ 7.0, 31.0 ], [ 6.5, 31.0 ], [ 6.5, 31.5 ], [ 7.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 31.5 ], [ 7.5, 31.0 ], [ 7.0, 31.0 ], [ 7.0, 31.5 ], [ 7.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 31.5 ], [ 8.0, 31.0 ], [ 7.5, 31.0 ], [ 7.5, 31.5 ], [ 8.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 31.5 ], [ 8.5, 31.0 ], [ 8.0, 31.0 ], [ 8.0, 31.5 ], [ 8.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 31.5 ], [ 9.0, 31.0 ], [ 8.5, 31.0 ], [ 8.5, 31.5 ], [ 9.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 31.5 ], [ 9.5, 31.0 ], [ 9.0, 31.0 ], [ 9.0, 31.5 ], [ 9.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 31.5 ], [ 10.0, 31.0 ], [ 9.5, 31.0 ], [ 9.5, 31.5 ], [ 10.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 31.5 ], [ 10.5, 31.0 ], [ 10.0, 31.0 ], [ 10.0, 31.5 ], [ 10.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 31.5 ], [ 11.0, 31.0 ], [ 10.5, 31.0 ], [ 10.5, 31.5 ], [ 11.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 31.5 ], [ 11.5, 31.0 ], [ 11.0, 31.0 ], [ 11.0, 31.5 ], [ 11.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 31.5 ], [ 12.0, 31.0 ], [ 11.5, 31.0 ], [ 11.5, 31.5 ], [ 12.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 31.5 ], [ 12.5, 31.0 ], [ 12.0, 31.0 ], [ 12.0, 31.5 ], [ 12.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 31.5 ], [ 13.0, 31.0 ], [ 12.5, 31.0 ], [ 12.5, 31.5 ], [ 13.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 31.5 ], [ 13.5, 31.0 ], [ 13.0, 31.0 ], [ 13.0, 31.5 ], [ 13.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 31.5 ], [ 14.0, 31.0 ], [ 13.5, 31.0 ], [ 13.5, 31.5 ], [ 14.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 31.5 ], [ 14.5, 31.0 ], [ 14.0, 31.0 ], [ 14.0, 31.5 ], [ 14.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 31.5 ], [ 15.0, 31.0 ], [ 14.5, 31.0 ], [ 14.5, 31.5 ], [ 15.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 31.5 ], [ 15.5, 31.0 ], [ 15.0, 31.0 ], [ 15.0, 31.5 ], [ 15.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0, 31.5 ], [ 16.0, 31.0 ], [ 15.5, 31.0 ], [ 15.5, 31.5 ], [ 16.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5, 31.5 ], [ 16.5, 31.0 ], [ 16.0, 31.0 ], [ 16.0, 31.5 ], [ 16.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 31.5 ], [ 20.5, 31.0 ], [ 20.0, 31.0 ], [ 20.0, 31.5 ], [ 20.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 31.5 ], [ 21.0, 31.0 ], [ 20.5, 31.0 ], [ 20.5, 31.5 ], [ 21.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 31.5 ], [ 21.5, 31.0 ], [ 21.0, 31.0 ], [ 21.0, 31.5 ], [ 21.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 31.5 ], [ 22.0, 31.0 ], [ 21.5, 31.0 ], [ 21.5, 31.5 ], [ 22.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 31.5 ], [ 22.5, 31.0 ], [ 22.0, 31.0 ], [ 22.0, 31.5 ], [ 22.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 31.5 ], [ 23.0, 31.0 ], [ 22.5, 31.0 ], [ 22.5, 31.5 ], [ 23.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 31.5 ], [ 23.5, 31.0 ], [ 23.0, 31.0 ], [ 23.0, 31.5 ], [ 23.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 31.5 ], [ 24.0, 31.0 ], [ 23.5, 31.0 ], [ 23.5, 31.5 ], [ 24.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 31.5 ], [ 24.5, 31.0 ], [ 24.0, 31.0 ], [ 24.0, 31.5 ], [ 24.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 31.5 ], [ 25.0, 31.0 ], [ 24.5, 31.0 ], [ 24.5, 31.5 ], [ 25.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.5, 31.5 ], [ 25.5, 31.0 ], [ 25.0, 31.0 ], [ 25.0, 31.5 ], [ 25.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0, 31.5 ], [ 26.0, 31.0 ], [ 25.5, 31.0 ], [ 25.5, 31.5 ], [ 26.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.5, 31.5 ], [ 26.5, 31.0 ], [ 26.0, 31.0 ], [ 26.0, 31.5 ], [ 26.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.0, 31.5 ], [ 27.0, 31.0 ], [ 26.5, 31.0 ], [ 26.5, 31.5 ], [ 27.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.5, 31.5 ], [ 27.5, 31.0 ], [ 27.0, 31.0 ], [ 27.0, 31.5 ], [ 27.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.5, 31.5 ], [ 30.5, 31.0 ], [ 30.0, 31.0 ], [ 30.0, 31.5 ], [ 30.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.0, 31.5 ], [ 31.0, 31.0 ], [ 30.5, 31.0 ], [ 30.5, 31.5 ], [ 31.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.5, 31.5 ], [ 31.5, 31.0 ], [ 31.0, 31.0 ], [ 31.0, 31.5 ], [ 31.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.0, 31.5 ], [ 32.0, 31.0 ], [ 31.5, 31.0 ], [ 31.5, 31.5 ], [ 32.0, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.5, 31.5 ], [ 32.5, 31.0 ], [ 32.0, 31.0 ], [ 32.0, 31.5 ], [ 32.5, 31.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 32.0 ], [ -9.0, 31.5 ], [ -9.5, 31.5 ], [ -9.5, 32.0 ], [ -9.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 32.0 ], [ -8.5, 31.5 ], [ -9.0, 31.5 ], [ -9.0, 32.0 ], [ -8.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 32.0 ], [ -8.0, 31.5 ], [ -8.5, 31.5 ], [ -8.5, 32.0 ], [ -8.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 32.0 ], [ -7.5, 31.5 ], [ -8.0, 31.5 ], [ -8.0, 32.0 ], [ -7.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 32.0 ], [ -7.0, 31.5 ], [ -7.5, 31.5 ], [ -7.5, 32.0 ], [ -7.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 32.0 ], [ -6.5, 31.5 ], [ -7.0, 31.5 ], [ -7.0, 32.0 ], [ -6.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 32.0 ], [ -6.0, 31.5 ], [ -6.5, 31.5 ], [ -6.5, 32.0 ], [ -6.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 32.0 ], [ -5.5, 31.5 ], [ -6.0, 31.5 ], [ -6.0, 32.0 ], [ -5.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 32.0 ], [ -5.0, 31.5 ], [ -5.5, 31.5 ], [ -5.5, 32.0 ], [ -5.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 32.0 ], [ -4.5, 31.5 ], [ -5.0, 31.5 ], [ -5.0, 32.0 ], [ -4.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 32.0 ], [ -4.0, 31.5 ], [ -4.5, 31.5 ], [ -4.5, 32.0 ], [ -4.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 32.0 ], [ -3.5, 31.5 ], [ -4.0, 31.5 ], [ -4.0, 32.0 ], [ -3.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 32.0 ], [ -3.0, 31.5 ], [ -3.5, 31.5 ], [ -3.5, 32.0 ], [ -3.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 32.0 ], [ -2.5, 31.5 ], [ -3.0, 31.5 ], [ -3.0, 32.0 ], [ -2.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 32.0 ], [ -2.0, 31.5 ], [ -2.5, 31.5 ], [ -2.5, 32.0 ], [ -2.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 32.0 ], [ -1.5, 31.5 ], [ -2.0, 31.5 ], [ -2.0, 32.0 ], [ -1.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 32.0 ], [ -1.0, 31.5 ], [ -1.5, 31.5 ], [ -1.5, 32.0 ], [ -1.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 32.0 ], [ -0.5, 31.5 ], [ -1.0, 31.5 ], [ -1.0, 32.0 ], [ -0.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 32.0 ], [ 0.0, 31.5 ], [ -0.5, 31.5 ], [ -0.5, 32.0 ], [ 0.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 32.0 ], [ 0.5, 31.5 ], [ 0.0, 31.5 ], [ 0.0, 32.0 ], [ 0.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 32.0 ], [ 1.0, 31.5 ], [ 0.5, 31.5 ], [ 0.5, 32.0 ], [ 1.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 32.0 ], [ 1.5, 31.5 ], [ 1.0, 31.5 ], [ 1.0, 32.0 ], [ 1.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 32.0 ], [ 2.0, 31.5 ], [ 1.5, 31.5 ], [ 1.5, 32.0 ], [ 2.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 32.0 ], [ 2.5, 31.5 ], [ 2.0, 31.5 ], [ 2.0, 32.0 ], [ 2.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 32.0 ], [ 3.0, 31.5 ], [ 2.5, 31.5 ], [ 2.5, 32.0 ], [ 3.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 32.0 ], [ 3.5, 31.5 ], [ 3.0, 31.5 ], [ 3.0, 32.0 ], [ 3.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 32.0 ], [ 4.0, 31.5 ], [ 3.5, 31.5 ], [ 3.5, 32.0 ], [ 4.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 32.0 ], [ 4.5, 31.5 ], [ 4.0, 31.5 ], [ 4.0, 32.0 ], [ 4.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 32.0 ], [ 5.0, 31.5 ], [ 4.5, 31.5 ], [ 4.5, 32.0 ], [ 5.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 32.0 ], [ 5.5, 31.5 ], [ 5.0, 31.5 ], [ 5.0, 32.0 ], [ 5.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 32.0 ], [ 6.0, 31.5 ], [ 5.5, 31.5 ], [ 5.5, 32.0 ], [ 6.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 32.0 ], [ 6.5, 31.5 ], [ 6.0, 31.5 ], [ 6.0, 32.0 ], [ 6.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 32.0 ], [ 7.0, 31.5 ], [ 6.5, 31.5 ], [ 6.5, 32.0 ], [ 7.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 32.0 ], [ 7.5, 31.5 ], [ 7.0, 31.5 ], [ 7.0, 32.0 ], [ 7.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 32.0 ], [ 8.0, 31.5 ], [ 7.5, 31.5 ], [ 7.5, 32.0 ], [ 8.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 32.0 ], [ 8.5, 31.5 ], [ 8.0, 31.5 ], [ 8.0, 32.0 ], [ 8.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 32.0 ], [ 9.0, 31.5 ], [ 8.5, 31.5 ], [ 8.5, 32.0 ], [ 9.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 32.0 ], [ 9.5, 31.5 ], [ 9.0, 31.5 ], [ 9.0, 32.0 ], [ 9.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 32.0 ], [ 10.0, 31.5 ], [ 9.5, 31.5 ], [ 9.5, 32.0 ], [ 10.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 32.0 ], [ 10.5, 31.5 ], [ 10.0, 31.5 ], [ 10.0, 32.0 ], [ 10.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 32.0 ], [ 11.0, 31.5 ], [ 10.5, 31.5 ], [ 10.5, 32.0 ], [ 11.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 32.0 ], [ 11.5, 31.5 ], [ 11.0, 31.5 ], [ 11.0, 32.0 ], [ 11.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 32.0 ], [ 12.0, 31.5 ], [ 11.5, 31.5 ], [ 11.5, 32.0 ], [ 12.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 32.0 ], [ 12.5, 31.5 ], [ 12.0, 31.5 ], [ 12.0, 32.0 ], [ 12.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 32.0 ], [ 13.0, 31.5 ], [ 12.5, 31.5 ], [ 12.5, 32.0 ], [ 13.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 32.0 ], [ 13.5, 31.5 ], [ 13.0, 31.5 ], [ 13.0, 32.0 ], [ 13.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 32.0 ], [ 14.0, 31.5 ], [ 13.5, 31.5 ], [ 13.5, 32.0 ], [ 14.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 32.0 ], [ 14.5, 31.5 ], [ 14.0, 31.5 ], [ 14.0, 32.0 ], [ 14.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 32.0 ], [ 15.0, 31.5 ], [ 14.5, 31.5 ], [ 14.5, 32.0 ], [ 15.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 32.0 ], [ 15.5, 31.5 ], [ 15.0, 31.5 ], [ 15.0, 32.0 ], [ 15.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 32.0 ], [ 20.5, 31.5 ], [ 20.0, 31.5 ], [ 20.0, 32.0 ], [ 20.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 32.0 ], [ 21.0, 31.5 ], [ 20.5, 31.5 ], [ 20.5, 32.0 ], [ 21.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 32.0 ], [ 21.5, 31.5 ], [ 21.0, 31.5 ], [ 21.0, 32.0 ], [ 21.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 32.0 ], [ 22.0, 31.5 ], [ 21.5, 31.5 ], [ 21.5, 32.0 ], [ 22.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 32.0 ], [ 22.5, 31.5 ], [ 22.0, 31.5 ], [ 22.0, 32.0 ], [ 22.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 32.0 ], [ 23.0, 31.5 ], [ 22.5, 31.5 ], [ 22.5, 32.0 ], [ 23.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5, 32.0 ], [ 23.5, 31.5 ], [ 23.0, 31.5 ], [ 23.0, 32.0 ], [ 23.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.0, 32.0 ], [ 24.0, 31.5 ], [ 23.5, 31.5 ], [ 23.5, 32.0 ], [ 24.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.5, 32.0 ], [ 24.5, 31.5 ], [ 24.0, 31.5 ], [ 24.0, 32.0 ], [ 24.5, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0, 32.0 ], [ 25.0, 31.5 ], [ 24.5, 31.5 ], [ 24.5, 32.0 ], [ 25.0, 32.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.0, 32.5 ], [ -9.0, 32.0 ], [ -9.5, 32.0 ], [ -9.5, 32.5 ], [ -9.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 32.5 ], [ -8.5, 32.0 ], [ -9.0, 32.0 ], [ -9.0, 32.5 ], [ -8.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 32.5 ], [ -8.0, 32.0 ], [ -8.5, 32.0 ], [ -8.5, 32.5 ], [ -8.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 32.5 ], [ -7.5, 32.0 ], [ -8.0, 32.0 ], [ -8.0, 32.5 ], [ -7.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 32.5 ], [ -7.0, 32.0 ], [ -7.5, 32.0 ], [ -7.5, 32.5 ], [ -7.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 32.5 ], [ -6.5, 32.0 ], [ -7.0, 32.0 ], [ -7.0, 32.5 ], [ -6.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 32.5 ], [ -6.0, 32.0 ], [ -6.5, 32.0 ], [ -6.5, 32.5 ], [ -6.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 32.5 ], [ -5.5, 32.0 ], [ -6.0, 32.0 ], [ -6.0, 32.5 ], [ -5.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 32.5 ], [ -5.0, 32.0 ], [ -5.5, 32.0 ], [ -5.5, 32.5 ], [ -5.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 32.5 ], [ -4.5, 32.0 ], [ -5.0, 32.0 ], [ -5.0, 32.5 ], [ -4.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 32.5 ], [ -4.0, 32.0 ], [ -4.5, 32.0 ], [ -4.5, 32.5 ], [ -4.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 32.5 ], [ -3.5, 32.0 ], [ -4.0, 32.0 ], [ -4.0, 32.5 ], [ -3.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 32.5 ], [ -3.0, 32.0 ], [ -3.5, 32.0 ], [ -3.5, 32.5 ], [ -3.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 32.5 ], [ -2.5, 32.0 ], [ -3.0, 32.0 ], [ -3.0, 32.5 ], [ -2.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 32.5 ], [ -2.0, 32.0 ], [ -2.5, 32.0 ], [ -2.5, 32.5 ], [ -2.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 32.5 ], [ -1.5, 32.0 ], [ -2.0, 32.0 ], [ -2.0, 32.5 ], [ -1.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 32.5 ], [ -1.0, 32.0 ], [ -1.5, 32.0 ], [ -1.5, 32.5 ], [ -1.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 32.5 ], [ -0.5, 32.0 ], [ -1.0, 32.0 ], [ -1.0, 32.5 ], [ -0.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 32.5 ], [ 0.0, 32.0 ], [ -0.5, 32.0 ], [ -0.5, 32.5 ], [ 0.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 32.5 ], [ 0.5, 32.0 ], [ 0.0, 32.0 ], [ 0.0, 32.5 ], [ 0.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 32.5 ], [ 1.0, 32.0 ], [ 0.5, 32.0 ], [ 0.5, 32.5 ], [ 1.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 32.5 ], [ 1.5, 32.0 ], [ 1.0, 32.0 ], [ 1.0, 32.5 ], [ 1.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 32.5 ], [ 2.0, 32.0 ], [ 1.5, 32.0 ], [ 1.5, 32.5 ], [ 2.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 32.5 ], [ 2.5, 32.0 ], [ 2.0, 32.0 ], [ 2.0, 32.5 ], [ 2.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 32.5 ], [ 3.0, 32.0 ], [ 2.5, 32.0 ], [ 2.5, 32.5 ], [ 3.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 32.5 ], [ 3.5, 32.0 ], [ 3.0, 32.0 ], [ 3.0, 32.5 ], [ 3.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 32.5 ], [ 4.0, 32.0 ], [ 3.5, 32.0 ], [ 3.5, 32.5 ], [ 4.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 32.5 ], [ 4.5, 32.0 ], [ 4.0, 32.0 ], [ 4.0, 32.5 ], [ 4.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 32.5 ], [ 5.0, 32.0 ], [ 4.5, 32.0 ], [ 4.5, 32.5 ], [ 5.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 32.5 ], [ 5.5, 32.0 ], [ 5.0, 32.0 ], [ 5.0, 32.5 ], [ 5.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 32.5 ], [ 6.0, 32.0 ], [ 5.5, 32.0 ], [ 5.5, 32.5 ], [ 6.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 32.5 ], [ 6.5, 32.0 ], [ 6.0, 32.0 ], [ 6.0, 32.5 ], [ 6.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 32.5 ], [ 7.0, 32.0 ], [ 6.5, 32.0 ], [ 6.5, 32.5 ], [ 7.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 32.5 ], [ 7.5, 32.0 ], [ 7.0, 32.0 ], [ 7.0, 32.5 ], [ 7.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 32.5 ], [ 8.0, 32.0 ], [ 7.5, 32.0 ], [ 7.5, 32.5 ], [ 8.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 32.5 ], [ 8.5, 32.0 ], [ 8.0, 32.0 ], [ 8.0, 32.5 ], [ 8.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 32.5 ], [ 9.0, 32.0 ], [ 8.5, 32.0 ], [ 8.5, 32.5 ], [ 9.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 32.5 ], [ 9.5, 32.0 ], [ 9.0, 32.0 ], [ 9.0, 32.5 ], [ 9.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 32.5 ], [ 10.0, 32.0 ], [ 9.5, 32.0 ], [ 9.5, 32.5 ], [ 10.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 32.5 ], [ 10.5, 32.0 ], [ 10.0, 32.0 ], [ 10.0, 32.5 ], [ 10.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 32.5 ], [ 11.0, 32.0 ], [ 10.5, 32.0 ], [ 10.5, 32.5 ], [ 11.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 32.5 ], [ 11.5, 32.0 ], [ 11.0, 32.0 ], [ 11.0, 32.5 ], [ 11.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 32.5 ], [ 12.0, 32.0 ], [ 11.5, 32.0 ], [ 11.5, 32.5 ], [ 12.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 32.5 ], [ 12.5, 32.0 ], [ 12.0, 32.0 ], [ 12.0, 32.5 ], [ 12.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 32.5 ], [ 13.0, 32.0 ], [ 12.5, 32.0 ], [ 12.5, 32.5 ], [ 13.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 32.5 ], [ 13.5, 32.0 ], [ 13.0, 32.0 ], [ 13.0, 32.5 ], [ 13.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 32.5 ], [ 14.0, 32.0 ], [ 13.5, 32.0 ], [ 13.5, 32.5 ], [ 14.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5, 32.5 ], [ 14.5, 32.0 ], [ 14.0, 32.0 ], [ 14.0, 32.5 ], [ 14.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.0, 32.5 ], [ 15.0, 32.0 ], [ 14.5, 32.0 ], [ 14.5, 32.5 ], [ 15.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.5, 32.5 ], [ 15.5, 32.0 ], [ 15.0, 32.0 ], [ 15.0, 32.5 ], [ 15.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.5, 32.5 ], [ 20.5, 32.0 ], [ 20.0, 32.0 ], [ 20.0, 32.5 ], [ 20.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.0, 32.5 ], [ 21.0, 32.0 ], [ 20.5, 32.0 ], [ 20.5, 32.5 ], [ 21.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 32.5 ], [ 21.5, 32.0 ], [ 21.0, 32.0 ], [ 21.0, 32.5 ], [ 21.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 32.5 ], [ 22.0, 32.0 ], [ 21.5, 32.0 ], [ 21.5, 32.5 ], [ 22.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 32.5 ], [ 22.5, 32.0 ], [ 22.0, 32.0 ], [ 22.0, 32.5 ], [ 22.5, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.0, 32.5 ], [ 23.0, 32.0 ], [ 22.5, 32.0 ], [ 22.5, 32.5 ], [ 23.0, 32.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.5, 33.0 ], [ -16.5, 32.5 ], [ -17.0, 32.5 ], [ -17.0, 33.0 ], [ -16.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.5, 33.0 ], [ -8.5, 32.5 ], [ -9.0, 32.5 ], [ -9.0, 33.0 ], [ -8.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 33.0 ], [ -8.0, 32.5 ], [ -8.5, 32.5 ], [ -8.5, 33.0 ], [ -8.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 33.0 ], [ -7.5, 32.5 ], [ -8.0, 32.5 ], [ -8.0, 33.0 ], [ -7.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 33.0 ], [ -7.0, 32.5 ], [ -7.5, 32.5 ], [ -7.5, 33.0 ], [ -7.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 33.0 ], [ -6.5, 32.5 ], [ -7.0, 32.5 ], [ -7.0, 33.0 ], [ -6.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 33.0 ], [ -6.0, 32.5 ], [ -6.5, 32.5 ], [ -6.5, 33.0 ], [ -6.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 33.0 ], [ -5.5, 32.5 ], [ -6.0, 32.5 ], [ -6.0, 33.0 ], [ -5.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 33.0 ], [ -5.0, 32.5 ], [ -5.5, 32.5 ], [ -5.5, 33.0 ], [ -5.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 33.0 ], [ -4.5, 32.5 ], [ -5.0, 32.5 ], [ -5.0, 33.0 ], [ -4.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 33.0 ], [ -4.0, 32.5 ], [ -4.5, 32.5 ], [ -4.5, 33.0 ], [ -4.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 33.0 ], [ -3.5, 32.5 ], [ -4.0, 32.5 ], [ -4.0, 33.0 ], [ -3.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 33.0 ], [ -3.0, 32.5 ], [ -3.5, 32.5 ], [ -3.5, 33.0 ], [ -3.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 33.0 ], [ -2.5, 32.5 ], [ -3.0, 32.5 ], [ -3.0, 33.0 ], [ -2.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 33.0 ], [ -2.0, 32.5 ], [ -2.5, 32.5 ], [ -2.5, 33.0 ], [ -2.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 33.0 ], [ -1.5, 32.5 ], [ -2.0, 32.5 ], [ -2.0, 33.0 ], [ -1.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 33.0 ], [ -1.0, 32.5 ], [ -1.5, 32.5 ], [ -1.5, 33.0 ], [ -1.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 33.0 ], [ -0.5, 32.5 ], [ -1.0, 32.5 ], [ -1.0, 33.0 ], [ -0.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 33.0 ], [ 0.0, 32.5 ], [ -0.5, 32.5 ], [ -0.5, 33.0 ], [ 0.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 33.0 ], [ 0.5, 32.5 ], [ 0.0, 32.5 ], [ 0.0, 33.0 ], [ 0.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 33.0 ], [ 1.0, 32.5 ], [ 0.5, 32.5 ], [ 0.5, 33.0 ], [ 1.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 33.0 ], [ 1.5, 32.5 ], [ 1.0, 32.5 ], [ 1.0, 33.0 ], [ 1.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 33.0 ], [ 2.0, 32.5 ], [ 1.5, 32.5 ], [ 1.5, 33.0 ], [ 2.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 33.0 ], [ 2.5, 32.5 ], [ 2.0, 32.5 ], [ 2.0, 33.0 ], [ 2.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 33.0 ], [ 3.0, 32.5 ], [ 2.5, 32.5 ], [ 2.5, 33.0 ], [ 3.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 33.0 ], [ 3.5, 32.5 ], [ 3.0, 32.5 ], [ 3.0, 33.0 ], [ 3.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 33.0 ], [ 4.0, 32.5 ], [ 3.5, 32.5 ], [ 3.5, 33.0 ], [ 4.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 33.0 ], [ 4.5, 32.5 ], [ 4.0, 32.5 ], [ 4.0, 33.0 ], [ 4.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 33.0 ], [ 5.0, 32.5 ], [ 4.5, 32.5 ], [ 4.5, 33.0 ], [ 5.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 33.0 ], [ 5.5, 32.5 ], [ 5.0, 32.5 ], [ 5.0, 33.0 ], [ 5.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 33.0 ], [ 6.0, 32.5 ], [ 5.5, 32.5 ], [ 5.5, 33.0 ], [ 6.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 33.0 ], [ 6.5, 32.5 ], [ 6.0, 32.5 ], [ 6.0, 33.0 ], [ 6.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 33.0 ], [ 7.0, 32.5 ], [ 6.5, 32.5 ], [ 6.5, 33.0 ], [ 7.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 33.0 ], [ 7.5, 32.5 ], [ 7.0, 32.5 ], [ 7.0, 33.0 ], [ 7.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 33.0 ], [ 8.0, 32.5 ], [ 7.5, 32.5 ], [ 7.5, 33.0 ], [ 8.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 33.0 ], [ 8.5, 32.5 ], [ 8.0, 32.5 ], [ 8.0, 33.0 ], [ 8.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 33.0 ], [ 9.0, 32.5 ], [ 8.5, 32.5 ], [ 8.5, 33.0 ], [ 9.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 33.0 ], [ 9.5, 32.5 ], [ 9.0, 32.5 ], [ 9.0, 33.0 ], [ 9.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 33.0 ], [ 10.0, 32.5 ], [ 9.5, 32.5 ], [ 9.5, 33.0 ], [ 10.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 33.0 ], [ 10.5, 32.5 ], [ 10.0, 32.5 ], [ 10.0, 33.0 ], [ 10.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 33.0 ], [ 11.0, 32.5 ], [ 10.5, 32.5 ], [ 10.5, 33.0 ], [ 11.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 33.0 ], [ 11.5, 32.5 ], [ 11.0, 32.5 ], [ 11.0, 33.0 ], [ 11.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.0, 33.0 ], [ 12.0, 32.5 ], [ 11.5, 32.5 ], [ 11.5, 33.0 ], [ 12.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.5, 33.0 ], [ 12.5, 32.5 ], [ 12.0, 32.5 ], [ 12.0, 33.0 ], [ 12.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.0, 33.0 ], [ 13.0, 32.5 ], [ 12.5, 32.5 ], [ 12.5, 33.0 ], [ 13.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.5, 33.0 ], [ 13.5, 32.5 ], [ 13.0, 32.5 ], [ 13.0, 33.0 ], [ 13.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.0, 33.0 ], [ 14.0, 32.5 ], [ 13.5, 32.5 ], [ 13.5, 33.0 ], [ 14.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.5, 33.0 ], [ 21.5, 32.5 ], [ 21.0, 32.5 ], [ 21.0, 33.0 ], [ 21.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.0, 33.0 ], [ 22.0, 32.5 ], [ 21.5, 32.5 ], [ 21.5, 33.0 ], [ 22.0, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.5, 33.0 ], [ 22.5, 32.5 ], [ 22.0, 32.5 ], [ 22.0, 33.0 ], [ 22.5, 33.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.0, 33.5 ], [ -8.0, 33.0 ], [ -8.5, 33.0 ], [ -8.5, 33.5 ], [ -8.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.5, 33.5 ], [ -7.5, 33.0 ], [ -8.0, 33.0 ], [ -8.0, 33.5 ], [ -7.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 33.5 ], [ -7.0, 33.0 ], [ -7.5, 33.0 ], [ -7.5, 33.5 ], [ -7.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 33.5 ], [ -6.5, 33.0 ], [ -7.0, 33.0 ], [ -7.0, 33.5 ], [ -6.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 33.5 ], [ -6.0, 33.0 ], [ -6.5, 33.0 ], [ -6.5, 33.5 ], [ -6.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 33.5 ], [ -5.5, 33.0 ], [ -6.0, 33.0 ], [ -6.0, 33.5 ], [ -5.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 33.5 ], [ -5.0, 33.0 ], [ -5.5, 33.0 ], [ -5.5, 33.5 ], [ -5.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 33.5 ], [ -4.5, 33.0 ], [ -5.0, 33.0 ], [ -5.0, 33.5 ], [ -4.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 33.5 ], [ -4.0, 33.0 ], [ -4.5, 33.0 ], [ -4.5, 33.5 ], [ -4.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 33.5 ], [ -3.5, 33.0 ], [ -4.0, 33.0 ], [ -4.0, 33.5 ], [ -3.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 33.5 ], [ -3.0, 33.0 ], [ -3.5, 33.0 ], [ -3.5, 33.5 ], [ -3.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 33.5 ], [ -2.5, 33.0 ], [ -3.0, 33.0 ], [ -3.0, 33.5 ], [ -2.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 33.5 ], [ -2.0, 33.0 ], [ -2.5, 33.0 ], [ -2.5, 33.5 ], [ -2.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 33.5 ], [ -1.5, 33.0 ], [ -2.0, 33.0 ], [ -2.0, 33.5 ], [ -1.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 33.5 ], [ -1.0, 33.0 ], [ -1.5, 33.0 ], [ -1.5, 33.5 ], [ -1.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 33.5 ], [ -0.5, 33.0 ], [ -1.0, 33.0 ], [ -1.0, 33.5 ], [ -0.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 33.5 ], [ 0.0, 33.0 ], [ -0.5, 33.0 ], [ -0.5, 33.5 ], [ 0.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 33.5 ], [ 0.5, 33.0 ], [ 0.0, 33.0 ], [ 0.0, 33.5 ], [ 0.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 33.5 ], [ 1.0, 33.0 ], [ 0.5, 33.0 ], [ 0.5, 33.5 ], [ 1.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 33.5 ], [ 1.5, 33.0 ], [ 1.0, 33.0 ], [ 1.0, 33.5 ], [ 1.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 33.5 ], [ 2.0, 33.0 ], [ 1.5, 33.0 ], [ 1.5, 33.5 ], [ 2.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 33.5 ], [ 2.5, 33.0 ], [ 2.0, 33.0 ], [ 2.0, 33.5 ], [ 2.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 33.5 ], [ 3.0, 33.0 ], [ 2.5, 33.0 ], [ 2.5, 33.5 ], [ 3.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 33.5 ], [ 3.5, 33.0 ], [ 3.0, 33.0 ], [ 3.0, 33.5 ], [ 3.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 33.5 ], [ 4.0, 33.0 ], [ 3.5, 33.0 ], [ 3.5, 33.5 ], [ 4.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 33.5 ], [ 4.5, 33.0 ], [ 4.0, 33.0 ], [ 4.0, 33.5 ], [ 4.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 33.5 ], [ 5.0, 33.0 ], [ 4.5, 33.0 ], [ 4.5, 33.5 ], [ 5.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 33.5 ], [ 5.5, 33.0 ], [ 5.0, 33.0 ], [ 5.0, 33.5 ], [ 5.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 33.5 ], [ 6.0, 33.0 ], [ 5.5, 33.0 ], [ 5.5, 33.5 ], [ 6.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 33.5 ], [ 6.5, 33.0 ], [ 6.0, 33.0 ], [ 6.0, 33.5 ], [ 6.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 33.5 ], [ 7.0, 33.0 ], [ 6.5, 33.0 ], [ 6.5, 33.5 ], [ 7.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 33.5 ], [ 7.5, 33.0 ], [ 7.0, 33.0 ], [ 7.0, 33.5 ], [ 7.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 33.5 ], [ 8.0, 33.0 ], [ 7.5, 33.0 ], [ 7.5, 33.5 ], [ 8.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 33.5 ], [ 8.5, 33.0 ], [ 8.0, 33.0 ], [ 8.0, 33.5 ], [ 8.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 33.5 ], [ 9.0, 33.0 ], [ 8.5, 33.0 ], [ 8.5, 33.5 ], [ 9.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 33.5 ], [ 9.5, 33.0 ], [ 9.0, 33.0 ], [ 9.0, 33.5 ], [ 9.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 33.5 ], [ 10.0, 33.0 ], [ 9.5, 33.0 ], [ 9.5, 33.5 ], [ 10.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 33.5 ], [ 10.5, 33.0 ], [ 10.0, 33.0 ], [ 10.0, 33.5 ], [ 10.5, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 33.5 ], [ 11.0, 33.0 ], [ 10.5, 33.0 ], [ 10.5, 33.5 ], [ 11.0, 33.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.0, 34.0 ], [ -7.0, 33.5 ], [ -7.5, 33.5 ], [ -7.5, 34.0 ], [ -7.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.5, 34.0 ], [ -6.5, 33.5 ], [ -7.0, 33.5 ], [ -7.0, 34.0 ], [ -6.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 34.0 ], [ -6.0, 33.5 ], [ -6.5, 33.5 ], [ -6.5, 34.0 ], [ -6.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 34.0 ], [ -5.5, 33.5 ], [ -6.0, 33.5 ], [ -6.0, 34.0 ], [ -5.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 34.0 ], [ -5.0, 33.5 ], [ -5.5, 33.5 ], [ -5.5, 34.0 ], [ -5.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 34.0 ], [ -4.5, 33.5 ], [ -5.0, 33.5 ], [ -5.0, 34.0 ], [ -4.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 34.0 ], [ -4.0, 33.5 ], [ -4.5, 33.5 ], [ -4.5, 34.0 ], [ -4.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 34.0 ], [ -3.5, 33.5 ], [ -4.0, 33.5 ], [ -4.0, 34.0 ], [ -3.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 34.0 ], [ -3.0, 33.5 ], [ -3.5, 33.5 ], [ -3.5, 34.0 ], [ -3.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 34.0 ], [ -2.5, 33.5 ], [ -3.0, 33.5 ], [ -3.0, 34.0 ], [ -2.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 34.0 ], [ -2.0, 33.5 ], [ -2.5, 33.5 ], [ -2.5, 34.0 ], [ -2.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 34.0 ], [ -1.5, 33.5 ], [ -2.0, 33.5 ], [ -2.0, 34.0 ], [ -1.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 34.0 ], [ -1.0, 33.5 ], [ -1.5, 33.5 ], [ -1.5, 34.0 ], [ -1.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 34.0 ], [ -0.5, 33.5 ], [ -1.0, 33.5 ], [ -1.0, 34.0 ], [ -0.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 34.0 ], [ 0.0, 33.5 ], [ -0.5, 33.5 ], [ -0.5, 34.0 ], [ 0.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 34.0 ], [ 0.5, 33.5 ], [ 0.0, 33.5 ], [ 0.0, 34.0 ], [ 0.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 34.0 ], [ 1.0, 33.5 ], [ 0.5, 33.5 ], [ 0.5, 34.0 ], [ 1.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 34.0 ], [ 1.5, 33.5 ], [ 1.0, 33.5 ], [ 1.0, 34.0 ], [ 1.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 34.0 ], [ 2.0, 33.5 ], [ 1.5, 33.5 ], [ 1.5, 34.0 ], [ 2.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 34.0 ], [ 2.5, 33.5 ], [ 2.0, 33.5 ], [ 2.0, 34.0 ], [ 2.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 34.0 ], [ 3.0, 33.5 ], [ 2.5, 33.5 ], [ 2.5, 34.0 ], [ 3.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 34.0 ], [ 3.5, 33.5 ], [ 3.0, 33.5 ], [ 3.0, 34.0 ], [ 3.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 34.0 ], [ 4.0, 33.5 ], [ 3.5, 33.5 ], [ 3.5, 34.0 ], [ 4.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 34.0 ], [ 4.5, 33.5 ], [ 4.0, 33.5 ], [ 4.0, 34.0 ], [ 4.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 34.0 ], [ 5.0, 33.5 ], [ 4.5, 33.5 ], [ 4.5, 34.0 ], [ 5.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 34.0 ], [ 5.5, 33.5 ], [ 5.0, 33.5 ], [ 5.0, 34.0 ], [ 5.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 34.0 ], [ 6.0, 33.5 ], [ 5.5, 33.5 ], [ 5.5, 34.0 ], [ 6.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 34.0 ], [ 6.5, 33.5 ], [ 6.0, 33.5 ], [ 6.0, 34.0 ], [ 6.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 34.0 ], [ 7.0, 33.5 ], [ 6.5, 33.5 ], [ 6.5, 34.0 ], [ 7.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 34.0 ], [ 7.5, 33.5 ], [ 7.0, 33.5 ], [ 7.0, 34.0 ], [ 7.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 34.0 ], [ 8.0, 33.5 ], [ 7.5, 33.5 ], [ 7.5, 34.0 ], [ 8.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 34.0 ], [ 8.5, 33.5 ], [ 8.0, 33.5 ], [ 8.0, 34.0 ], [ 8.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 34.0 ], [ 9.0, 33.5 ], [ 8.5, 33.5 ], [ 8.5, 34.0 ], [ 9.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 34.0 ], [ 9.5, 33.5 ], [ 9.0, 33.5 ], [ 9.0, 34.0 ], [ 9.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 34.0 ], [ 10.0, 33.5 ], [ 9.5, 33.5 ], [ 9.5, 34.0 ], [ 10.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 34.0 ], [ 10.5, 33.5 ], [ 10.0, 33.5 ], [ 10.0, 34.0 ], [ 10.5, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 34.0 ], [ 11.0, 33.5 ], [ 10.5, 33.5 ], [ 10.5, 34.0 ], [ 11.0, 34.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 34.5 ], [ -6.0, 34.0 ], [ -6.5, 34.0 ], [ -6.5, 34.5 ], [ -6.0, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 34.5 ], [ -5.5, 34.0 ], [ -6.0, 34.0 ], [ -6.0, 34.5 ], [ -5.5, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 34.5 ], [ -5.0, 34.0 ], [ -5.5, 34.0 ], [ -5.5, 34.5 ], [ -5.0, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 34.5 ], [ -4.5, 34.0 ], [ -5.0, 34.0 ], [ -5.0, 34.5 ], [ -4.5, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 34.5 ], [ -4.0, 34.0 ], [ -4.5, 34.0 ], [ -4.5, 34.5 ], [ -4.0, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 34.5 ], [ -3.5, 34.0 ], [ -4.0, 34.0 ], [ -4.0, 34.5 ], [ -3.5, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 34.5 ], [ -3.0, 34.0 ], [ -3.5, 34.0 ], [ -3.5, 34.5 ], [ -3.0, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 34.5 ], [ -2.5, 34.0 ], [ -3.0, 34.0 ], [ -3.0, 34.5 ], [ -2.5, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 34.5 ], [ -2.0, 34.0 ], [ -2.5, 34.0 ], [ -2.5, 34.5 ], [ -2.0, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 34.5 ], [ -1.5, 34.0 ], [ -2.0, 34.0 ], [ -2.0, 34.5 ], [ -1.5, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 34.5 ], [ -1.0, 34.0 ], [ -1.5, 34.0 ], [ -1.5, 34.5 ], [ -1.0, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 34.5 ], [ -0.5, 34.0 ], [ -1.0, 34.0 ], [ -1.0, 34.5 ], [ -0.5, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 34.5 ], [ 0.0, 34.0 ], [ -0.5, 34.0 ], [ -0.5, 34.5 ], [ 0.0, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 34.5 ], [ 0.5, 34.0 ], [ 0.0, 34.0 ], [ 0.0, 34.5 ], [ 0.5, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 34.5 ], [ 1.0, 34.0 ], [ 0.5, 34.0 ], [ 0.5, 34.5 ], [ 1.0, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 34.5 ], [ 1.5, 34.0 ], [ 1.0, 34.0 ], [ 1.0, 34.5 ], [ 1.5, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 34.5 ], [ 2.0, 34.0 ], [ 1.5, 34.0 ], [ 1.5, 34.5 ], [ 2.0, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 34.5 ], [ 2.5, 34.0 ], [ 2.0, 34.0 ], [ 2.0, 34.5 ], [ 2.5, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 34.5 ], [ 3.0, 34.0 ], [ 2.5, 34.0 ], [ 2.5, 34.5 ], [ 3.0, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 34.5 ], [ 3.5, 34.0 ], [ 3.0, 34.0 ], [ 3.0, 34.5 ], [ 3.5, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 34.5 ], [ 4.0, 34.0 ], [ 3.5, 34.0 ], [ 3.5, 34.5 ], [ 4.0, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 34.5 ], [ 4.5, 34.0 ], [ 4.0, 34.0 ], [ 4.0, 34.5 ], [ 4.5, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 34.5 ], [ 5.0, 34.0 ], [ 4.5, 34.0 ], [ 4.5, 34.5 ], [ 5.0, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 34.5 ], [ 5.5, 34.0 ], [ 5.0, 34.0 ], [ 5.0, 34.5 ], [ 5.5, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 34.5 ], [ 6.0, 34.0 ], [ 5.5, 34.0 ], [ 5.5, 34.5 ], [ 6.0, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 34.5 ], [ 6.5, 34.0 ], [ 6.0, 34.0 ], [ 6.0, 34.5 ], [ 6.5, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 34.5 ], [ 7.0, 34.0 ], [ 6.5, 34.0 ], [ 6.5, 34.5 ], [ 7.0, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 34.5 ], [ 7.5, 34.0 ], [ 7.0, 34.0 ], [ 7.0, 34.5 ], [ 7.5, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 34.5 ], [ 8.0, 34.0 ], [ 7.5, 34.0 ], [ 7.5, 34.5 ], [ 8.0, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 34.5 ], [ 8.5, 34.0 ], [ 8.0, 34.0 ], [ 8.0, 34.5 ], [ 8.5, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 34.5 ], [ 9.0, 34.0 ], [ 8.5, 34.0 ], [ 8.5, 34.5 ], [ 9.0, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 34.5 ], [ 9.5, 34.0 ], [ 9.0, 34.0 ], [ 9.0, 34.5 ], [ 9.5, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 34.5 ], [ 10.0, 34.0 ], [ 9.5, 34.0 ], [ 9.5, 34.5 ], [ 10.0, 34.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.0, 35.0 ], [ -6.0, 34.5 ], [ -6.5, 34.5 ], [ -6.5, 35.0 ], [ -6.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 35.0 ], [ -5.5, 34.5 ], [ -6.0, 34.5 ], [ -6.0, 35.0 ], [ -5.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 35.0 ], [ -5.0, 34.5 ], [ -5.5, 34.5 ], [ -5.5, 35.0 ], [ -5.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5, 35.0 ], [ -4.5, 34.5 ], [ -5.0, 34.5 ], [ -5.0, 35.0 ], [ -4.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.0, 35.0 ], [ -4.0, 34.5 ], [ -4.5, 34.5 ], [ -4.5, 35.0 ], [ -4.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.5, 35.0 ], [ -3.5, 34.5 ], [ -4.0, 34.5 ], [ -4.0, 35.0 ], [ -3.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.0, 35.0 ], [ -3.0, 34.5 ], [ -3.5, 34.5 ], [ -3.5, 35.0 ], [ -3.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5, 35.0 ], [ -2.5, 34.5 ], [ -3.0, 34.5 ], [ -3.0, 35.0 ], [ -2.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 35.0 ], [ -2.0, 34.5 ], [ -2.5, 34.5 ], [ -2.5, 35.0 ], [ -2.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.5, 35.0 ], [ -1.5, 34.5 ], [ -2.0, 34.5 ], [ -2.0, 35.0 ], [ -1.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 35.0 ], [ -1.0, 34.5 ], [ -1.5, 34.5 ], [ -1.5, 35.0 ], [ -1.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 35.0 ], [ -0.5, 34.5 ], [ -1.0, 34.5 ], [ -1.0, 35.0 ], [ -0.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 35.0 ], [ 0.0, 34.5 ], [ -0.5, 34.5 ], [ -0.5, 35.0 ], [ 0.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 35.0 ], [ 0.5, 34.5 ], [ 0.0, 34.5 ], [ 0.0, 35.0 ], [ 0.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 35.0 ], [ 1.0, 34.5 ], [ 0.5, 34.5 ], [ 0.5, 35.0 ], [ 1.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 35.0 ], [ 1.5, 34.5 ], [ 1.0, 34.5 ], [ 1.0, 35.0 ], [ 1.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 35.0 ], [ 2.0, 34.5 ], [ 1.5, 34.5 ], [ 1.5, 35.0 ], [ 2.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 35.0 ], [ 2.5, 34.5 ], [ 2.0, 34.5 ], [ 2.0, 35.0 ], [ 2.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 35.0 ], [ 3.0, 34.5 ], [ 2.5, 34.5 ], [ 2.5, 35.0 ], [ 3.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 35.0 ], [ 3.5, 34.5 ], [ 3.0, 34.5 ], [ 3.0, 35.0 ], [ 3.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 35.0 ], [ 4.0, 34.5 ], [ 3.5, 34.5 ], [ 3.5, 35.0 ], [ 4.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 35.0 ], [ 4.5, 34.5 ], [ 4.0, 34.5 ], [ 4.0, 35.0 ], [ 4.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 35.0 ], [ 5.0, 34.5 ], [ 4.5, 34.5 ], [ 4.5, 35.0 ], [ 5.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 35.0 ], [ 5.5, 34.5 ], [ 5.0, 34.5 ], [ 5.0, 35.0 ], [ 5.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 35.0 ], [ 6.0, 34.5 ], [ 5.5, 34.5 ], [ 5.5, 35.0 ], [ 6.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 35.0 ], [ 6.5, 34.5 ], [ 6.0, 34.5 ], [ 6.0, 35.0 ], [ 6.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 35.0 ], [ 7.0, 34.5 ], [ 6.5, 34.5 ], [ 6.5, 35.0 ], [ 7.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 35.0 ], [ 7.5, 34.5 ], [ 7.0, 34.5 ], [ 7.0, 35.0 ], [ 7.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 35.0 ], [ 8.0, 34.5 ], [ 7.5, 34.5 ], [ 7.5, 35.0 ], [ 8.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 35.0 ], [ 8.5, 34.5 ], [ 8.0, 34.5 ], [ 8.0, 35.0 ], [ 8.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 35.0 ], [ 9.0, 34.5 ], [ 8.5, 34.5 ], [ 8.5, 35.0 ], [ 9.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 35.0 ], [ 9.5, 34.5 ], [ 9.0, 34.5 ], [ 9.0, 35.0 ], [ 9.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 35.0 ], [ 10.0, 34.5 ], [ 9.5, 34.5 ], [ 9.5, 35.0 ], [ 10.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 35.0 ], [ 10.5, 34.5 ], [ 10.0, 34.5 ], [ 10.0, 35.0 ], [ 10.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 35.0 ], [ 11.0, 34.5 ], [ 10.5, 34.5 ], [ 10.5, 35.0 ], [ 11.0, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.5, 35.0 ], [ 11.5, 34.5 ], [ 11.0, 34.5 ], [ 11.0, 35.0 ], [ 11.5, 35.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 35.5 ], [ -5.5, 35.0 ], [ -6.0, 35.0 ], [ -6.0, 35.5 ], [ -5.5, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.0, 35.5 ], [ -5.0, 35.0 ], [ -5.5, 35.0 ], [ -5.5, 35.5 ], [ -5.0, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 35.5 ], [ -1.0, 35.0 ], [ -1.5, 35.0 ], [ -1.5, 35.5 ], [ -1.0, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 35.5 ], [ -0.5, 35.0 ], [ -1.0, 35.0 ], [ -1.0, 35.5 ], [ -0.5, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 35.5 ], [ 0.0, 35.0 ], [ -0.5, 35.0 ], [ -0.5, 35.5 ], [ 0.0, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 35.5 ], [ 0.5, 35.0 ], [ 0.0, 35.0 ], [ 0.0, 35.5 ], [ 0.5, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 35.5 ], [ 1.0, 35.0 ], [ 0.5, 35.0 ], [ 0.5, 35.5 ], [ 1.0, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 35.5 ], [ 1.5, 35.0 ], [ 1.0, 35.0 ], [ 1.0, 35.5 ], [ 1.5, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 35.5 ], [ 2.0, 35.0 ], [ 1.5, 35.0 ], [ 1.5, 35.5 ], [ 2.0, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 35.5 ], [ 2.5, 35.0 ], [ 2.0, 35.0 ], [ 2.0, 35.5 ], [ 2.5, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 35.5 ], [ 3.0, 35.0 ], [ 2.5, 35.0 ], [ 2.5, 35.5 ], [ 3.0, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 35.5 ], [ 3.5, 35.0 ], [ 3.0, 35.0 ], [ 3.0, 35.5 ], [ 3.5, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 35.5 ], [ 4.0, 35.0 ], [ 3.5, 35.0 ], [ 3.5, 35.5 ], [ 4.0, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 35.5 ], [ 4.5, 35.0 ], [ 4.0, 35.0 ], [ 4.0, 35.5 ], [ 4.5, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 35.5 ], [ 5.0, 35.0 ], [ 4.5, 35.0 ], [ 4.5, 35.5 ], [ 5.0, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 35.5 ], [ 5.5, 35.0 ], [ 5.0, 35.0 ], [ 5.0, 35.5 ], [ 5.5, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 35.5 ], [ 6.0, 35.0 ], [ 5.5, 35.0 ], [ 5.5, 35.5 ], [ 6.0, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 35.5 ], [ 6.5, 35.0 ], [ 6.0, 35.0 ], [ 6.0, 35.5 ], [ 6.5, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 35.5 ], [ 7.0, 35.0 ], [ 6.5, 35.0 ], [ 6.5, 35.5 ], [ 7.0, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 35.5 ], [ 7.5, 35.0 ], [ 7.0, 35.0 ], [ 7.0, 35.5 ], [ 7.5, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 35.5 ], [ 8.0, 35.0 ], [ 7.5, 35.0 ], [ 7.5, 35.5 ], [ 8.0, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 35.5 ], [ 8.5, 35.0 ], [ 8.0, 35.0 ], [ 8.0, 35.5 ], [ 8.5, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 35.5 ], [ 9.0, 35.0 ], [ 8.5, 35.0 ], [ 8.5, 35.5 ], [ 9.0, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 35.5 ], [ 9.5, 35.0 ], [ 9.0, 35.0 ], [ 9.0, 35.5 ], [ 9.5, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 35.5 ], [ 10.0, 35.0 ], [ 9.5, 35.0 ], [ 9.5, 35.5 ], [ 10.0, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 35.5 ], [ 10.5, 35.0 ], [ 10.0, 35.0 ], [ 10.0, 35.5 ], [ 10.5, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 35.5 ], [ 11.0, 35.0 ], [ 10.5, 35.0 ], [ 10.5, 35.5 ], [ 11.0, 35.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.5, 36.0 ], [ -5.5, 35.5 ], [ -6.0, 35.5 ], [ -6.0, 36.0 ], [ -5.5, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5, 36.0 ], [ -0.5, 35.5 ], [ -1.0, 35.5 ], [ -1.0, 36.0 ], [ -0.5, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 36.0 ], [ 0.0, 35.5 ], [ -0.5, 35.5 ], [ -0.5, 36.0 ], [ 0.0, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.5, 36.0 ], [ 0.5, 35.5 ], [ 0.0, 35.5 ], [ 0.0, 36.0 ], [ 0.5, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 36.0 ], [ 1.0, 35.5 ], [ 0.5, 35.5 ], [ 0.5, 36.0 ], [ 1.0, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 36.0 ], [ 1.5, 35.5 ], [ 1.0, 35.5 ], [ 1.0, 36.0 ], [ 1.5, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 36.0 ], [ 2.0, 35.5 ], [ 1.5, 35.5 ], [ 1.5, 36.0 ], [ 2.0, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 36.0 ], [ 2.5, 35.5 ], [ 2.0, 35.5 ], [ 2.0, 36.0 ], [ 2.5, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 36.0 ], [ 3.0, 35.5 ], [ 2.5, 35.5 ], [ 2.5, 36.0 ], [ 3.0, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 36.0 ], [ 3.5, 35.5 ], [ 3.0, 35.5 ], [ 3.0, 36.0 ], [ 3.5, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 36.0 ], [ 4.0, 35.5 ], [ 3.5, 35.5 ], [ 3.5, 36.0 ], [ 4.0, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 36.0 ], [ 4.5, 35.5 ], [ 4.0, 35.5 ], [ 4.0, 36.0 ], [ 4.5, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 36.0 ], [ 5.0, 35.5 ], [ 4.5, 35.5 ], [ 4.5, 36.0 ], [ 5.0, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 36.0 ], [ 5.5, 35.5 ], [ 5.0, 35.5 ], [ 5.0, 36.0 ], [ 5.5, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 36.0 ], [ 6.0, 35.5 ], [ 5.5, 35.5 ], [ 5.5, 36.0 ], [ 6.0, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 36.0 ], [ 6.5, 35.5 ], [ 6.0, 35.5 ], [ 6.0, 36.0 ], [ 6.5, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 36.0 ], [ 7.0, 35.5 ], [ 6.5, 35.5 ], [ 6.5, 36.0 ], [ 7.0, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 36.0 ], [ 7.5, 35.5 ], [ 7.0, 35.5 ], [ 7.0, 36.0 ], [ 7.5, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 36.0 ], [ 8.0, 35.5 ], [ 7.5, 35.5 ], [ 7.5, 36.0 ], [ 8.0, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 36.0 ], [ 8.5, 35.5 ], [ 8.0, 35.5 ], [ 8.0, 36.0 ], [ 8.5, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 36.0 ], [ 9.0, 35.5 ], [ 8.5, 35.5 ], [ 8.5, 36.0 ], [ 9.0, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 36.0 ], [ 9.5, 35.5 ], [ 9.0, 35.5 ], [ 9.0, 36.0 ], [ 9.5, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 36.0 ], [ 10.0, 35.5 ], [ 9.5, 35.5 ], [ 9.5, 36.0 ], [ 10.0, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 36.0 ], [ 10.5, 35.5 ], [ 10.0, 35.5 ], [ 10.0, 36.0 ], [ 10.5, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 36.0 ], [ 11.0, 35.5 ], [ 10.5, 35.5 ], [ 10.5, 36.0 ], [ 11.0, 36.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.0, 36.5 ], [ 1.0, 36.0 ], [ 0.5, 36.0 ], [ 0.5, 36.5 ], [ 1.0, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.5, 36.5 ], [ 1.5, 36.0 ], [ 1.0, 36.0 ], [ 1.0, 36.5 ], [ 1.5, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.0, 36.5 ], [ 2.0, 36.0 ], [ 1.5, 36.0 ], [ 1.5, 36.5 ], [ 2.0, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.5, 36.5 ], [ 2.5, 36.0 ], [ 2.0, 36.0 ], [ 2.0, 36.5 ], [ 2.5, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0, 36.5 ], [ 3.0, 36.0 ], [ 2.5, 36.0 ], [ 2.5, 36.5 ], [ 3.0, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 36.5 ], [ 3.5, 36.0 ], [ 3.0, 36.0 ], [ 3.0, 36.5 ], [ 3.5, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 36.5 ], [ 4.0, 36.0 ], [ 3.5, 36.0 ], [ 3.5, 36.5 ], [ 4.0, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 36.5 ], [ 4.5, 36.0 ], [ 4.0, 36.0 ], [ 4.0, 36.5 ], [ 4.5, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 36.5 ], [ 5.0, 36.0 ], [ 4.5, 36.0 ], [ 4.5, 36.5 ], [ 5.0, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5, 36.5 ], [ 5.5, 36.0 ], [ 5.0, 36.0 ], [ 5.0, 36.5 ], [ 5.5, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 36.5 ], [ 6.0, 36.0 ], [ 5.5, 36.0 ], [ 5.5, 36.5 ], [ 6.0, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 36.5 ], [ 6.5, 36.0 ], [ 6.0, 36.0 ], [ 6.0, 36.5 ], [ 6.5, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 36.5 ], [ 7.0, 36.0 ], [ 6.5, 36.0 ], [ 6.5, 36.5 ], [ 7.0, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 36.5 ], [ 7.5, 36.0 ], [ 7.0, 36.0 ], [ 7.0, 36.5 ], [ 7.5, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 36.5 ], [ 8.0, 36.0 ], [ 7.5, 36.0 ], [ 7.5, 36.5 ], [ 8.0, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 36.5 ], [ 8.5, 36.0 ], [ 8.0, 36.0 ], [ 8.0, 36.5 ], [ 8.5, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 36.5 ], [ 9.0, 36.0 ], [ 8.5, 36.0 ], [ 8.5, 36.5 ], [ 9.0, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 36.5 ], [ 9.5, 36.0 ], [ 9.0, 36.0 ], [ 9.0, 36.5 ], [ 9.5, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 36.5 ], [ 10.0, 36.0 ], [ 9.5, 36.0 ], [ 9.5, 36.5 ], [ 10.0, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 36.5 ], [ 10.5, 36.0 ], [ 10.0, 36.0 ], [ 10.0, 36.5 ], [ 10.5, 36.5 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.5, 37.0 ], [ 3.5, 36.5 ], [ 3.0, 36.5 ], [ 3.0, 37.0 ], [ 3.5, 37.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.0, 37.0 ], [ 4.0, 36.5 ], [ 3.5, 36.5 ], [ 3.5, 37.0 ], [ 4.0, 37.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.5, 37.0 ], [ 4.5, 36.5 ], [ 4.0, 36.5 ], [ 4.0, 37.0 ], [ 4.5, 37.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.0, 37.0 ], [ 5.0, 36.5 ], [ 4.5, 36.5 ], [ 4.5, 37.0 ], [ 5.0, 37.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0, 37.0 ], [ 6.0, 36.5 ], [ 5.5, 36.5 ], [ 5.5, 37.0 ], [ 6.0, 37.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.5, 37.0 ], [ 6.5, 36.5 ], [ 6.0, 36.5 ], [ 6.0, 37.0 ], [ 6.5, 37.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.0, 37.0 ], [ 7.0, 36.5 ], [ 6.5, 36.5 ], [ 6.5, 37.0 ], [ 7.0, 37.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.5, 37.0 ], [ 7.5, 36.5 ], [ 7.0, 36.5 ], [ 7.0, 37.0 ], [ 7.5, 37.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.0, 37.0 ], [ 8.0, 36.5 ], [ 7.5, 36.5 ], [ 7.5, 37.0 ], [ 8.0, 37.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 37.0 ], [ 8.5, 36.5 ], [ 8.0, 36.5 ], [ 8.0, 37.0 ], [ 8.5, 37.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.0, 37.0 ], [ 9.0, 36.5 ], [ 8.5, 36.5 ], [ 8.5, 37.0 ], [ 9.0, 37.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.5, 37.0 ], [ 9.5, 36.5 ], [ 9.0, 36.5 ], [ 9.0, 37.0 ], [ 9.5, 37.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 37.0 ], [ 10.0, 36.5 ], [ 9.5, 36.5 ], [ 9.5, 37.0 ], [ 10.0, 37.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.5, 37.0 ], [ 10.5, 36.5 ], [ 10.0, 36.5 ], [ 10.0, 37.0 ], [ 10.5, 37.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.0, 37.0 ], [ 11.0, 36.5 ], [ 10.5, 36.5 ], [ 10.5, 37.0 ], [ 11.0, 37.0 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.0, 37.5 ], [ 10.0, 37.0 ], [ 9.5, 37.0 ], [ 9.5, 37.5 ], [ 10.0, 37.5 ] ] ] } } +] +} diff --git a/main.js b/main.js index 5178e77..2dc0d55 100644 --- a/main.js +++ b/main.js @@ -239,9 +239,10 @@ for (const key in colorScheme) { map.on("load", () => { map.addSource("maize_hist-source", { type: "geojson", - data: "https://plotine-vacs.s3.us-east-2.amazonaws.com/maize_ratios.geojson", + data: "./data/synced-data/crop-yields-mean-models.geojson", // add id to features generateId: true, + Attribution: "AgMIP", }); map.addLayer( diff --git a/raster.html b/raster.html new file mode 100644 index 0000000..fe66921 --- /dev/null +++ b/raster.html @@ -0,0 +1,178 @@ + + + + + + Display a map on a webpage + + + + + + + +
+ + + + + + + \ No newline at end of file