diff --git a/api.py b/api.py
index 1fb0e46..b2f8a58 100644
--- a/api.py
+++ b/api.py
@@ -4,7 +4,7 @@
from fastapi import Body, FastAPI
from fastapi.responses import StreamingResponse
-from zeno.agents.layerfinder.utils.state import GraphState
+from zeno.agents.maingraph.utils.state import GraphState
from zeno.agents.maingraph.agent import graph
app = FastAPI()
@@ -13,23 +13,31 @@
# https://www.workfall.com/learning/blog/how-to-stream-json-data-using-server-sent-events-and-fastapi-in-python-over-http/
+def pack(data):
+ return json.dumps(data) + "\n"
+
+
# Streams the response from the graph
def event_stream(query: str):
+
initial_state = GraphState(question=query)
- for namespace, output in graph.stream(
+ for namespace, data in graph.stream(
initial_state, stream_mode="updates", subgraphs=True
):
- print(list(output.keys()))
- for node_name, node_results in output.items():
- for key, data in node_results.items():
- if key == "messages":
- msg = data[0].content
- if msg:
- yield (
- json.dumps({f"{namespace} | {node_name}": msg})
- + "\n"
- )
+ print(f"Namespace {namespace}")
+ for key, val in data.items():
+ print(f"Messager is {key}")
+ for key2, val2 in val.items():
+ if key2 == "messages":
+ for msg in val.get("messages", []):
+ yield pack({"message": msg.content})
+ if hasattr(msg, "tool_calls"):
+ yield pack({"tool_calls": msg.tool_calls})
+ if hasattr(msg, "artifact"):
+ yield pack({"artifact": msg.artifact})
+ else:
+ yield pack({key2: val2})
@app.post("/stream")
diff --git a/frontend/app.py b/frontend/app.py
index a546acc..4621be3 100644
--- a/frontend/app.py
+++ b/frontend/app.py
@@ -6,6 +6,9 @@
import streamlit as st
from streamlit_folium import st_folium
+from dotenv import load_dotenv
+
+_ = load_dotenv()
API_BASE_URL = os.environ["API_BASE_URL"]
@@ -24,16 +27,17 @@
"""
)
- st.subheader("Select a model:")
- available_models = requests.get(f"{API_BASE_URL}/models").json()["models"]
+ # st.subheader("Select a model:")
+ # available_models = requests.get(f"{API_BASE_URL}/models").json()["models"]
- model = st.selectbox(
- "Model", format_func=lambda x: x["model_name"], options=available_models
- )
+ # model = st.selectbox(
+ # "Model", format_func=lambda x: x["model_name"], options=available_models
+ # )
st.subheader("ð§ Try asking:")
st.write(
"""
+ - Provide data about disturbance alerts in Aveiro summarized by landcover
- What is happening with Gold Mining Deforestation?
- What do you know about Forest Protection in remote islands in Indonesia?
- How many users are using GFW and how long did it take to get there?
@@ -50,125 +54,124 @@
# done to enable the streaming response of the chat messages.
# =========== BEGIN STREAMING RESPONSE ===============
-# Chat input
-# if user_input := st.chat_input("Type your message here..."):
-# st.chat_message("user").write(user_input)
-# with requests.post(
-# f"{API_BASE_URL}/stream",
-# json=dict(query=user_input, model_id=model["model_id"]),
-# stream=True,
-# ) as stream:
-# for chunk in stream.iter_lines():
-# data = json.loads(chunk.decode("utf-8"))
-# st.write(data)
+if user_input := st.chat_input("Type your message here..."):
+ st.chat_message("user").write(user_input)
+ with requests.post(
+ f"{API_BASE_URL}/stream",
+ json=dict(query=user_input, model_id="gpt-4o-mini"),
+ stream=True,
+ ) as stream:
+ for chunk in stream.iter_lines():
+ data = json.loads(chunk.decode("utf-8"))
+ st.write(data)
# =========== /END STREAMING RESPONSE ===============
-# Initialize session state for messages and selected dataset
-if "messages" not in st.session_state:
- st.session_state["messages"] = []
-if "selected_dataset" not in st.session_state:
- st.session_state["selected_dataset"] = None
-if "route" not in st.session_state:
- st.session_state["route"] = None
-
-col1, col2 = st.columns([4, 6])
-
-
-def display_in_streamlit(base64_string):
- image_html = f'
'
- st.markdown(image_html, unsafe_allow_html=True)
-
-
-# Left column (40% width) - Chat Interface
-with col1:
- # User input and API call - only happens on new input
- user_input = st.text_input("You:", key="user_input")
- if user_input and user_input not in [
- msg.get("user", "") for msg in st.session_state["messages"]
- ]:
- response = requests.post(
- f"{API_BASE_URL}/query",
- json={"query": user_input, "model_id": model["model_id"]},
- )
- data = response.json()
- st.session_state["route"] = data["route"]
- print(data)
- # datasets = json.loads(data["messages"][0]["content"])
-
- try:
- st.session_state["messages"] = []
- st.session_state["messages"].append({"user": user_input})
- st.session_state["messages"].append({"bot": data})
- except Exception as e:
- st.error(f"Error processing response: {str(e)}")
-
- # Display conversation and dataset buttons
- for msg_idx, message in enumerate(st.session_state["messages"]):
- if "user" in message:
- st.write(f"**You**: {message['user']}")
- else:
- st.write("**Assistant**:")
- data = message["bot"]
- try:
- match st.session_state["route"]:
- case "layerfinder":
- datasets = json.loads(data["messages"][0]["content"])
- for idx, dataset in enumerate(datasets):
- st.write(f"**Dataset {idx+1}:** {dataset['explanation']}")
- st.write(f"**URL**: {dataset['uri']}")
-
- # Generate a unique key for each button that includes both message and dataset index
- button_key = f"dataset_{msg_idx}_{idx}"
- if st.button(f"Show Dataset {idx+1}", key=button_key):
- st.session_state["selected_dataset"] = dataset[
- "tilelayer"
- ]
- print(f"changed state to: {dataset['tilelayer']}")
- case "firealert":
- for msg in data["messages"]:
- if (
- msg["name"] != "barchart-tool"
- ): # Only print non-chart messages
- st.write(msg["content"])
- case "docfinder":
- for msg in data["messages"]:
- st.write(msg["content"])
- # st.write(data["messages"][0]["content"])
- case _:
- st.write("Unable to find an agent for task")
- except Exception as e:
- st.error(f"Error processing response: {str(e)}")
-
-# Right column (60% width) - Map Visualization
-with col2:
- if st.session_state["route"] == "layerfinder":
- st.header("Map Visualization")
- m = folium.Map(location=[0, 0], zoom_start=2)
-
- if st.session_state["selected_dataset"]:
- print("yes")
- folium.TileLayer(
- tiles=st.session_state["selected_dataset"],
- attr="Global Forest Watch",
- name="Selected Dataset",
- overlay=True,
- control=True,
- ).add_to(m)
-
- folium.LayerControl().add_to(m)
- st_folium(m, width=700, height=500)
- elif st.session_state["route"] == "firealert":
- st.header("Fire Alert Statistics")
- # Display barchart from the most recent message
- if st.session_state["messages"]:
- for message in reversed(st.session_state["messages"]):
- if "bot" in message:
- data = message["bot"]
- for msg in data["messages"]:
- if msg["name"] == "barchart-tool":
- display_in_streamlit(msg["content"])
- break
- break
- else:
- st.header("Visualization")
- st.write("Select a dataset or query to view visualization")
+# # Initialize session state for messages and selected dataset
+# if "messages" not in st.session_state:
+# st.session_state["messages"] = []
+# if "selected_dataset" not in st.session_state:
+# st.session_state["selected_dataset"] = None
+# if "route" not in st.session_state:
+# st.session_state["route"] = None
+
+# col1, col2 = st.columns([4, 6])
+
+
+# def display_in_streamlit(base64_string):
+# image_html = f'
'
+# st.markdown(image_html, unsafe_allow_html=True)
+
+
+# # Left column (40% width) - Chat Interface
+# with col1:
+# # User input and API call - only happens on new input
+# user_input = st.text_input("You:", key="user_input")
+# if user_input and user_input not in [
+# msg.get("user", "") for msg in st.session_state["messages"]
+# ]:
+# response = requests.post(
+# f"{API_BASE_URL}/query",
+# json={"query": user_input, "model_id": model["model_id"]},
+# )
+# data = response.json()
+# st.session_state["route"] = data["route"]
+# print(data)
+# # datasets = json.loads(data["messages"][0]["content"])
+
+# try:
+# st.session_state["messages"] = []
+# st.session_state["messages"].append({"user": user_input})
+# st.session_state["messages"].append({"bot": data})
+# except Exception as e:
+# st.error(f"Error processing response: {str(e)}")
+
+# # Display conversation and dataset buttons
+# for msg_idx, message in enumerate(st.session_state["messages"]):
+# if "user" in message:
+# st.write(f"**You**: {message['user']}")
+# else:
+# st.write("**Assistant**:")
+# data = message["bot"]
+# try:
+# match st.session_state["route"]:
+# case "layerfinder":
+# datasets = json.loads(data["messages"][0]["content"])
+# for idx, dataset in enumerate(datasets):
+# st.write(f"**Dataset {idx+1}:** {dataset['explanation']}")
+# st.write(f"**URL**: {dataset['uri']}")
+
+# # Generate a unique key for each button that includes both message and dataset index
+# button_key = f"dataset_{msg_idx}_{idx}"
+# if st.button(f"Show Dataset {idx+1}", key=button_key):
+# st.session_state["selected_dataset"] = dataset[
+# "tilelayer"
+# ]
+# print(f"changed state to: {dataset['tilelayer']}")
+# case "firealert":
+# for msg in data["messages"]:
+# if (
+# msg["name"] != "barchart-tool"
+# ): # Only print non-chart messages
+# st.write(msg["content"])
+# case "docfinder":
+# for msg in data["messages"]:
+# st.write(msg["content"])
+# # st.write(data["messages"][0]["content"])
+# case _:
+# st.write("Unable to find an agent for task")
+# except Exception as e:
+# st.error(f"Error processing response: {str(e)}")
+
+# # Right column (60% width) - Map Visualization
+# with col2:
+# if st.session_state["route"] == "layerfinder":
+# st.header("Map Visualization")
+# m = folium.Map(location=[0, 0], zoom_start=2)
+
+# if st.session_state["selected_dataset"]:
+# print("yes")
+# folium.TileLayer(
+# tiles=st.session_state["selected_dataset"],
+# attr="Global Forest Watch",
+# name="Selected Dataset",
+# overlay=True,
+# control=True,
+# ).add_to(m)
+
+# folium.LayerControl().add_to(m)
+# st_folium(m, width=700, height=500)
+# elif st.session_state["route"] == "firealert":
+# st.header("Fire Alert Statistics")
+# # Display barchart from the most recent message
+# if st.session_state["messages"]:
+# for message in reversed(st.session_state["messages"]):
+# if "bot" in message:
+# data = message["bot"]
+# for msg in data["messages"]:
+# if msg["name"] == "barchart-tool":
+# display_in_streamlit(msg["content"])
+# break
+# break
+# else:
+# st.header("Visualization")
+# st.write("Select a dataset or query to view visualization")
diff --git a/nbs/07_gee_zonal_stats.ipynb b/nbs/07_gee_zonal_stats.ipynb
new file mode 100644
index 0000000..a40e9c0
--- /dev/null
+++ b/nbs/07_gee_zonal_stats.ipynb
@@ -0,0 +1,935 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Zeno zonal statistics\n",
+ "Testing for the GEE driven agents"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "*** Earth Engine *** Share your feedback by taking our Annual Developer Satisfaction Survey: https://google.qualtrics.com/jfe/form/SV_0JLhFqfSY1uiEaW?source=Init\n"
+ ]
+ }
+ ],
+ "source": [
+ "import ee\n",
+ "import google.auth\n",
+ "from google.oauth2.service_account import Credentials\n",
+ "\n",
+ "# Path to the service account JSON key file\n",
+ "service_account_key = '../ee-wri-lcl-zeno-2599d0871370.json'\n",
+ "\n",
+ "# Specify the required OAuth scopes for Earth Engine\n",
+ "scopes = ['https://www.googleapis.com/auth/earthengine',\n",
+ " 'https://www.googleapis.com/auth/cloud-platform']\n",
+ "\n",
+ "# Create credentials with the specified scopes\n",
+ "credentials = Credentials.from_service_account_file(\n",
+ " service_account_key,\n",
+ " scopes=scopes\n",
+ ")\n",
+ "\n",
+ "# Initialize Earth Engine with the service account credentials\n",
+ "ee.Initialize(credentials)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Utils\n",
+ "For printing layer metadata"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def print_meta(layer):\n",
+ " # Get all metadata as a dictionary\n",
+ " metadata = layer.getInfo()\n",
+ "\n",
+ " # Print metadata\n",
+ " print(\"Image Metadata:\")\n",
+ " for key, value in metadata.items():\n",
+ " print(f\"{key}: {value}\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### GDAM data\n",
+ "For finding boundaries"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import geopandas as gpd\n",
+ "gadm = gpd.read_file(\"/Users/tam/Downloads/gadm_410.gpkg\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Natural lands\n",
+ "As reference land cover statistics"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Image Metadata:\n",
+ "type: Image\n",
+ "bands: [{'id': 'classification', 'data_type': {'type': 'PixelType', 'precision': 'int', 'min': 0, 'max': 255}, 'dimensions': [1439601, 540001], 'crs': 'EPSG:4326', 'crs_transform': [0.00025, 0, -179.9, 0, -0.00025, 75]}]\n",
+ "version: 1725397479424399\n",
+ "id: WRI/SBTN/naturalLands/v1/2020\n",
+ "properties: {'system:time_start': 1577836800000, 'classification_class_values': [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21], 'natural_class_values': [0, 1], 'system:footprint': {'type': 'LinearRing', 'coordinates': [[-180, -90], [180, -90], [180, 90], [-180, 90], [-180, -90]]}, 'system:time_end': 1609459200000, 'natural_class_palette': ['969696', 'A8DDB5'], 'system:asset_size': 20189186972, 'classification_class_palette': ['246E24', 'B9B91E', '6BAED6', '06A285', 'FEFECC', 'ACD1E8', '589558', '093D09', 'DBDB7B', '99991A', 'D3D3D3', 'D3D3D3', 'D3D3D3', 'D3D3D3', 'D3D3D3', 'D3D3D3', 'D3D3D3', 'D3D3D3', 'D3D3D3', 'D3D3D3'], 'system:index': '2020'}\n"
+ ]
+ }
+ ],
+ "source": [
+ "natural_lands = ee.Image(\"WRI/SBTN/naturalLands/v1/2020\").select(\"classification\")\n",
+ "print_meta(natural_lands)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### MODIS landcover\n",
+ "As an alternative classification source."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Image Metadata:\n",
+ "type: Image\n",
+ "bands: [{'id': 'Land_Cover_Type_1', 'data_type': {'type': 'PixelType', 'precision': 'int', 'min': 0, 'max': 255}, 'dimensions': [86400, 43200], 'crs': 'SR-ORG:6974', 'crs_transform': [463.3127165279165, 0, -20015109.353988, 0, -463.3127165274999, 10007554.676994]}]\n",
+ "version: 1507158666650252\n",
+ "id: MODIS/051/MCD12Q1/2001_01_01\n",
+ "properties: {'Land_Cover_Type_4_class_names': ['Water', 'Evergreen Needleleaf vegetation', 'Evergreen Broadleaf vegetation', 'Deciduous Needleleaf vegetation', 'Deciduous Broadleaf vegetation', 'Annual Broadleaf vegetation', 'Annual grass vegetation', 'Non-vegetated land', 'Urban', 'Unclassified'], 'Land_Cover_Type_5_class_names': ['Water', 'Evergreen Needleleaf trees', 'Evergreen Broadleaf trees', 'Deciduous Needleleaf trees', 'Deciduous Broadleaf trees', 'Shrub', 'Grass', 'Cereal crops', 'Broad-leaf crops', 'Urban and built-up', 'Snow and ice', 'Barren or sparse vegetation', 'Unclassified'], 'Land_Cover_Type_1_class_palette': ['aec3d6', '162103', '235123', '399b38', '38eb38', '39723b', '6a2424', 'c3a55f', 'b76124', 'd99125', '92af1f', '10104c', 'cdb400', 'cc0202', '332808', 'd7cdcc', 'f7e174', '743411'], 'Land_Cover_Type_2_class_palette': ['aec3d6', '162103', '235123', '399b38', '38eb38', '39723b', '6a2424', 'c3a55f', 'b76124', 'd99125', '92af1f', 'cdb400', 'cc0202', 'f7e174', '743411'], 'Land_Cover_Type_2_class_values': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 16, 254], 'Land_Cover_Type_3_class_names': ['Water', 'Grasses/Cereal crops', 'Shrubs', 'Broadleaf crops', 'Savanna', 'Evergreen Broadleaf forest', 'Deciduous Broadleaf forest', 'Evergreen Needleleaf forest', 'Deciduous Needleleaf forest', 'Non-vegetated', 'Urban', 'Unclassified'], 'system:time_end': 1009843200000, 'Land_Cover_Type_4_class_values': [0, 1, 2, 3, 4, 5, 6, 7, 8, 254], 'Land_Cover_Type_1_class_names': ['Water', 'Evergreen Needleleaf forest', 'Evergreen Broadleaf forest', 'Deciduous Needleleaf forest', 'Deciduous Broadleaf forest', 'Mixed forest', 'Closed shrublands', 'Open shrublands', 'Woody savannas', 'Savannas', 'Grasslands', 'Permanent wetlands', 'Croplands', 'Urban and built-up', 'Cropland/Natural vegetation mosaic', 'Snow and ice', 'Barren or sparsely vegetated', 'Unclassified'], 'Land_Cover_Type_3_class_values': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 254], 'Land_Cover_Type_3_class_palette': ['aec3d6', 'cdb400', 'c3a55f', '39723b', 'd99125', '235123', '38eb38', '162103', '399b38', 'f7e174', 'cc0202', '743411'], 'Land_Cover_Type_2_class_names': ['Water', 'Evergreen Needleleaf forest', 'Evergreen Broadleaf forest', 'Deciduous Needleleaf forest', 'Deciduous Broadleaf forest', 'Mixed forest', 'Closed shrublands', 'Open shrublands', 'Woody savannas', 'Savannas', 'Grasslands', 'Croplands', 'Urban and built-up', 'Barren or sparsely vegetated', 'Unclassified'], 'Land_Cover_Type_5_class_palette': ['aec3d6', '162103', '235123', '399b38', '38eb38', 'c3a55f', '92af1f', 'cdb400', '82cd00', 'cc0202', 'd7cdcc', 'f7e174', '743411'], 'Land_Cover_Type_5_class_values': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 254], 'system:time_start': 978307200000, 'Land_Cover_Type_4_class_palette': ['aec3d6', '162103', '235123', '399b38', '38eb38', '39723b', '92af1f', 'f7e174', 'cc0202', '743411'], 'system:footprint': {'type': 'LinearRing', 'coordinates': [[-180, -90], [180, -90], [180, 90], [-180, 90], [-180, -90]]}, 'Land_Cover_Type_1_class_values': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 254], 'system:asset_size': 1631995533, 'system:index': '2001_01_01'}\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Load MODIS land cover categories in 2001.\n",
+ "# Select the IGBP classification band.\n",
+ "modis_landcover = ee.Image('MODIS/051/MCD12Q1/2001_01_01').select('Land_Cover_Type_1')\n",
+ "\n",
+ "print_meta(modis_landcover)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### DIST Alerts\n",
+ "For the alerts themselves"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Image Metadata:\n",
+ "type: Image\n",
+ "bands: [{'id': 'b1', 'data_type': {'type': 'PixelType', 'precision': 'int', 'min': 0, 'max': 255}, 'crs': 'EPSG:4326', 'crs_transform': [1, 0, 0, 0, 1, 0]}]\n"
+ ]
+ }
+ ],
+ "source": [
+ "folder = \"projects/glad/HLSDIST/current\"\n",
+ "# // var alt_folder = \"projects/glad/HLSDIST/backend\"\n",
+ "VEGDISTSTATUS = ee.ImageCollection(folder+\"/VEG-DIST-STATUS\").mosaic()\n",
+ "VEGDISTDATE = ee.ImageCollection(folder+\"/VEG-DIST-DATE\").mosaic()\n",
+ "VEGDISTDUR = ee.ImageCollection(folder+\"/VEG-DIST-DUR\").mosaic()\n",
+ "VEGANOMMAX = ee.ImageCollection(folder+\"/VEG-ANOM-MAX\").mosaic()\n",
+ "VEGDISTCONF = ee.ImageCollection(folder+\"/VEG-DIST-CONF\").mosaic()\n",
+ "VEGDISTCOUNT = ee.ImageCollection(folder+\"/VEG-DIST-COUNT\").mosaic()\n",
+ "VEGIND = ee.ImageCollection(folder+\"/VEG-IND\").mosaic()\n",
+ "VEGANOM = ee.ImageCollection(folder+\"/VEG-ANOM\").mosaic()\n",
+ "VEGHIST = ee.ImageCollection(folder+\"/VEG-HIST\").mosaic()\n",
+ "VEGLASTDATE = ee.ImageCollection(folder+\"/VEG-LAST-DATE\").mosaic()\n",
+ "\n",
+ "GENDISTSTATUS = ee.ImageCollection(folder+\"/GEN-DIST-STATUS\").mosaic()\n",
+ "GENDISTDATE = ee.ImageCollection(folder+\"/GEN-DIST-DATE\").mosaic()\n",
+ "GENDISTDUR = ee.ImageCollection(folder+\"/GEN-DIST-DUR\").mosaic()\n",
+ "GENANOMMAX = ee.ImageCollection(folder+\"/GEN-ANOM-MAX\").mosaic()\n",
+ "GENDISTCONF = ee.ImageCollection(folder+\"/GEN-DIST-CONF\").mosaic()\n",
+ "GENDISTCOUNT = ee.ImageCollection(folder+\"/GEN-DIST-COUNT\").mosaic()\n",
+ "GENANOM = ee.ImageCollection(folder+\"/GEN-ANOM\").mosaic()\n",
+ "GENLASTDATE = ee.ImageCollection(folder+\"/GEN-LAST-DATE\").mosaic()\n",
+ "\n",
+ "print_meta(VEGDISTSTATUS)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Select GADM area\n",
+ "This will come from the user eventually, now its a random GADM."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " UID | \n",
+ " GID_0 | \n",
+ " NAME_0 | \n",
+ " VARNAME_0 | \n",
+ " GID_1 | \n",
+ " NAME_1 | \n",
+ " VARNAME_1 | \n",
+ " NL_NAME_1 | \n",
+ " ISO_1 | \n",
+ " HASC_1 | \n",
+ " ... | \n",
+ " ENGTYPE_5 | \n",
+ " GOVERNEDBY | \n",
+ " SOVEREIGN | \n",
+ " DISPUTEDBY | \n",
+ " REGION | \n",
+ " VARREGION | \n",
+ " COUNTRY | \n",
+ " CONTINENT | \n",
+ " SUBCONT | \n",
+ " geometry | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 | \n",
+ " 1 | \n",
+ " AFG | \n",
+ " Afghanistan | \n",
+ " | \n",
+ " AFG.1_1 | \n",
+ " Badakhshan | \n",
+ " Badahšan | \n",
+ " | \n",
+ " | \n",
+ " AF.BD | \n",
+ " ... | \n",
+ " | \n",
+ " | \n",
+ " Afghanistan | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " Afghanistan | \n",
+ " Asia | \n",
+ " | \n",
+ " MULTIPOLYGON (((71.41149 36.55717, 71.40954 36... | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " 2 | \n",
+ " AFG | \n",
+ " Afghanistan | \n",
+ " | \n",
+ " AFG.1_1 | \n",
+ " Badakhshan | \n",
+ " Badahšan | \n",
+ " | \n",
+ " | \n",
+ " AF.BD | \n",
+ " ... | \n",
+ " | \n",
+ " | \n",
+ " Afghanistan | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " Afghanistan | \n",
+ " Asia | \n",
+ " | \n",
+ " MULTIPOLYGON (((71.2762 38.00465, 71.27578 38.... | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " 3 | \n",
+ " AFG | \n",
+ " Afghanistan | \n",
+ " | \n",
+ " AFG.1_1 | \n",
+ " Badakhshan | \n",
+ " Badahšan | \n",
+ " | \n",
+ " | \n",
+ " AF.BD | \n",
+ " ... | \n",
+ " | \n",
+ " | \n",
+ " Afghanistan | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " Afghanistan | \n",
+ " Asia | \n",
+ " | \n",
+ " MULTIPOLYGON (((70.78272 37.27678, 70.78635 37... | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " 4 | \n",
+ " AFG | \n",
+ " Afghanistan | \n",
+ " | \n",
+ " AFG.1_1 | \n",
+ " Badakhshan | \n",
+ " Badahšan | \n",
+ " | \n",
+ " | \n",
+ " AF.BD | \n",
+ " ... | \n",
+ " | \n",
+ " | \n",
+ " Afghanistan | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " Afghanistan | \n",
+ " Asia | \n",
+ " | \n",
+ " MULTIPOLYGON (((71.41149 36.55717, 71.40091 36... | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " 5 | \n",
+ " AFG | \n",
+ " Afghanistan | \n",
+ " | \n",
+ " AFG.1_1 | \n",
+ " Badakhshan | \n",
+ " Badahšan | \n",
+ " | \n",
+ " | \n",
+ " AF.BD | \n",
+ " ... | \n",
+ " | \n",
+ " | \n",
+ " Afghanistan | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " Afghanistan | \n",
+ " Asia | \n",
+ " | \n",
+ " MULTIPOLYGON (((70.71236 37.07621, 70.73582 37... | \n",
+ "
\n",
+ " \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ "
\n",
+ " \n",
+ " 356503 | \n",
+ " 356504 | \n",
+ " ZWE | \n",
+ " Zimbabwe | \n",
+ " | \n",
+ " ZWE.10_1 | \n",
+ " Midlands | \n",
+ " | \n",
+ " | \n",
+ " ZW-MI | \n",
+ " ZW.MI | \n",
+ " ... | \n",
+ " | \n",
+ " | \n",
+ " Zimbabwe | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " Zimbabwe | \n",
+ " Africa | \n",
+ " | \n",
+ " MULTIPOLYGON (((29.75637 -20.33492, 29.75664 -... | \n",
+ "
\n",
+ " \n",
+ " 356504 | \n",
+ " 356505 | \n",
+ " ZWE | \n",
+ " Zimbabwe | \n",
+ " | \n",
+ " ZWE.10_1 | \n",
+ " Midlands | \n",
+ " | \n",
+ " | \n",
+ " ZW-MI | \n",
+ " ZW.MI | \n",
+ " ... | \n",
+ " | \n",
+ " | \n",
+ " Zimbabwe | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " Zimbabwe | \n",
+ " Africa | \n",
+ " | \n",
+ " MULTIPOLYGON (((29.84425 -20.10055, 29.84955 -... | \n",
+ "
\n",
+ " \n",
+ " 356505 | \n",
+ " 356506 | \n",
+ " ZWE | \n",
+ " Zimbabwe | \n",
+ " | \n",
+ " ZWE.10_1 | \n",
+ " Midlands | \n",
+ " | \n",
+ " | \n",
+ " ZW-MI | \n",
+ " ZW.MI | \n",
+ " ... | \n",
+ " | \n",
+ " | \n",
+ " Zimbabwe | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " Zimbabwe | \n",
+ " Africa | \n",
+ " | \n",
+ " MULTIPOLYGON (((30.03103 -20.27994, 30.03089 -... | \n",
+ "
\n",
+ " \n",
+ " 356506 | \n",
+ " 356507 | \n",
+ " ZWE | \n",
+ " Zimbabwe | \n",
+ " | \n",
+ " ZWE.10_1 | \n",
+ " Midlands | \n",
+ " | \n",
+ " | \n",
+ " ZW-MI | \n",
+ " ZW.MI | \n",
+ " ... | \n",
+ " | \n",
+ " | \n",
+ " Zimbabwe | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " Zimbabwe | \n",
+ " Africa | \n",
+ " | \n",
+ " MULTIPOLYGON (((30.08165 -20.19866, 30.0812 -2... | \n",
+ "
\n",
+ " \n",
+ " 356507 | \n",
+ " 356508 | \n",
+ " ZWE | \n",
+ " Zimbabwe | \n",
+ " | \n",
+ " ZWE.10_1 | \n",
+ " Midlands | \n",
+ " | \n",
+ " | \n",
+ " ZW-MI | \n",
+ " ZW.MI | \n",
+ " ... | \n",
+ " | \n",
+ " | \n",
+ " Zimbabwe | \n",
+ " | \n",
+ " | \n",
+ " | \n",
+ " Zimbabwe | \n",
+ " Africa | \n",
+ " | \n",
+ " MULTIPOLYGON (((30.18608 -20.07877, 30.18606 -... | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
356508 rows à 53 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " UID GID_0 NAME_0 VARNAME_0 GID_1 NAME_1 VARNAME_1 \\\n",
+ "0 1 AFG Afghanistan AFG.1_1 Badakhshan Badahšan \n",
+ "1 2 AFG Afghanistan AFG.1_1 Badakhshan Badahšan \n",
+ "2 3 AFG Afghanistan AFG.1_1 Badakhshan Badahšan \n",
+ "3 4 AFG Afghanistan AFG.1_1 Badakhshan Badahšan \n",
+ "4 5 AFG Afghanistan AFG.1_1 Badakhshan Badahšan \n",
+ "... ... ... ... ... ... ... ... \n",
+ "356503 356504 ZWE Zimbabwe ZWE.10_1 Midlands \n",
+ "356504 356505 ZWE Zimbabwe ZWE.10_1 Midlands \n",
+ "356505 356506 ZWE Zimbabwe ZWE.10_1 Midlands \n",
+ "356506 356507 ZWE Zimbabwe ZWE.10_1 Midlands \n",
+ "356507 356508 ZWE Zimbabwe ZWE.10_1 Midlands \n",
+ "\n",
+ " NL_NAME_1 ISO_1 HASC_1 ... ENGTYPE_5 GOVERNEDBY SOVEREIGN \\\n",
+ "0 AF.BD ... Afghanistan \n",
+ "1 AF.BD ... Afghanistan \n",
+ "2 AF.BD ... Afghanistan \n",
+ "3 AF.BD ... Afghanistan \n",
+ "4 AF.BD ... Afghanistan \n",
+ "... ... ... ... ... ... ... ... \n",
+ "356503 ZW-MI ZW.MI ... Zimbabwe \n",
+ "356504 ZW-MI ZW.MI ... Zimbabwe \n",
+ "356505 ZW-MI ZW.MI ... Zimbabwe \n",
+ "356506 ZW-MI ZW.MI ... Zimbabwe \n",
+ "356507 ZW-MI ZW.MI ... Zimbabwe \n",
+ "\n",
+ " DISPUTEDBY REGION VARREGION COUNTRY CONTINENT SUBCONT \\\n",
+ "0 Afghanistan Asia \n",
+ "1 Afghanistan Asia \n",
+ "2 Afghanistan Asia \n",
+ "3 Afghanistan Asia \n",
+ "4 Afghanistan Asia \n",
+ "... ... ... ... ... ... ... \n",
+ "356503 Zimbabwe Africa \n",
+ "356504 Zimbabwe Africa \n",
+ "356505 Zimbabwe Africa \n",
+ "356506 Zimbabwe Africa \n",
+ "356507 Zimbabwe Africa \n",
+ "\n",
+ " geometry \n",
+ "0 MULTIPOLYGON (((71.41149 36.55717, 71.40954 36... \n",
+ "1 MULTIPOLYGON (((71.2762 38.00465, 71.27578 38.... \n",
+ "2 MULTIPOLYGON (((70.78272 37.27678, 70.78635 37... \n",
+ "3 MULTIPOLYGON (((71.41149 36.55717, 71.40091 36... \n",
+ "4 MULTIPOLYGON (((70.71236 37.07621, 70.73582 37... \n",
+ "... ... \n",
+ "356503 MULTIPOLYGON (((29.75637 -20.33492, 29.75664 -... \n",
+ "356504 MULTIPOLYGON (((29.84425 -20.10055, 29.84955 -... \n",
+ "356505 MULTIPOLYGON (((30.03103 -20.27994, 30.03089 -... \n",
+ "356506 MULTIPOLYGON (((30.08165 -20.19866, 30.0812 -2... \n",
+ "356507 MULTIPOLYGON (((30.18608 -20.07877, 30.18606 -... \n",
+ "\n",
+ "[356508 rows x 53 columns]"
+ ]
+ },
+ "execution_count": 7,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "gadm"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "18905\n"
+ ]
+ },
+ {
+ "data": {
+ "image/svg+xml": [
+ ""
+ ],
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 8,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "aoi = gadm.iloc[18904]\n",
+ "print(aoi.UID)\n",
+ "aoi.geometry"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "coords = list(aoi.geometry.geoms[0].exterior.coords)\n",
+ "geom = ee.Geometry.Polygon(coords)\n",
+ "features = ee.FeatureCollection([ee.Feature(geom)])"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Create statistics\n",
+ "Compute statistics and vectorize"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "{'type': 'Projection',\n",
+ " 'crs': 'SR-ORG:6974',\n",
+ " 'transform': [463.3127165279165,\n",
+ " 0,\n",
+ " -20015109.353988,\n",
+ " 0,\n",
+ " -463.3127165274999,\n",
+ " 10007554.676994]}"
+ ]
+ },
+ "execution_count": 10,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "modis_landcover.projection().getInfo()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Image Metadata:\n",
+ "type: Image\n",
+ "bands: [{'id': 'b1', 'data_type': {'type': 'PixelType', 'precision': 'int', 'min': 0, 'max': 1}, 'crs': 'EPSG:4326', 'crs_transform': [1, 0, 0, 0, 1, 0]}]\n",
+ "Image Metadata:\n",
+ "type: Image\n",
+ "bands: [{'id': 'b1', 'data_type': {'type': 'PixelType', 'precision': 'int', 'min': 0, 'max': 1}, 'crs': 'EPSG:4326', 'crs_transform': [1, 0, 0, 0, 1, 0]}, {'id': 'classification', 'data_type': {'type': 'PixelType', 'precision': 'int', 'min': 0, 'max': 255}, 'dimensions': [1439601, 540001], 'crs': 'EPSG:4326', 'crs_transform': [0.00025, 0, -179.9, 0, -0.00025, 75]}]\n",
+ "{'groups': [{'classification': 2, 'sum': 15568070.67058823}, {'classification': 3, 'sum': 2535256.505882352}, {'classification': 4, 'sum': 4245.278431372549}, {'classification': 6, 'sum': 950.1686274509805}, {'classification': 8, 'sum': 1166988.8666666667}, {'classification': 9, 'sum': 46655.08235294118}, {'classification': 10, 'sum': 497857.60392156866}, {'classification': 11, 'sum': 95474.6}, {'classification': 12, 'sum': 268611.24705882353}, {'classification': 13, 'sum': 2635.007843137255}, {'classification': 15, 'sum': 898075.0980392157}, {'classification': 20, 'sum': 198}]}\n"
+ ]
+ }
+ ],
+ "source": [
+ "# privisional_50_or_better = VEGDISTSTATUS\n",
+ "provisional_50_or_better = ee.ImageCollection(folder+\"/VEG-DIST-STATUS\").mosaic().gte(5)#filter(ee.Filter.gte('b1', 5)).mosaic()\n",
+ "\n",
+ "print_meta(provisional_50_or_better)\n",
+ "\n",
+ "combo = provisional_50_or_better.addBands(natural_lands)\n",
+ "\n",
+ "print_meta(combo)\n",
+ "\n",
+ "zone_stats = combo.reduceRegions(\n",
+ " collection=features,\n",
+ " reducer=ee.Reducer.sum().group(groupField=1, groupName=\"classification\"),\n",
+ " scale=30,\n",
+ ").getInfo()\n",
+ "\n",
+ "for feat in zone_stats[\"features\"]:\n",
+ " print(feat[\"properties\"])"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Create vectors from dist alerts\n",
+ "Extract vectorized mask"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Vectorized Features Metadata:\n",
+ "{'type': 'FeatureCollection', 'columns': {'count': 'Long<0, 4294967295>', 'label': 'Short<0, 255>', 'system:index': 'String'}, 'features': [{'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.13984940477195, -13.780499529532293], [-62.130866251930755, -13.780499529532293], [-62.130866251930755, -13.771516376691096], [-62.13984940477195, -13.771516376691096], [-62.13984940477195, -13.780499529532293]]]}, 'id': '+13109+9882', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.13984940477195, -14.139825643180103], [-62.130866251930755, -14.139825643180103], [-62.130866251930755, -14.130842490338907], [-62.13984940477195, -14.130842490338907], [-62.13984940477195, -14.139825643180103]]]}, 'id': '+13109+9922', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.130866251930755, -13.7625332238499], [-62.12188309908956, -13.7625332238499], [-62.12188309908956, -13.753550071008718], [-62.130866251930755, -13.753550071008718], [-62.130866251930755, -13.7625332238499]]]}, 'id': '+13110+9880', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.13984940477195, -13.92422997499142], [-62.12188309908956, -13.92422997499142], [-62.12188309908956, -13.906263669309027], [-62.11289994624836, -13.906263669309027], [-62.11289994624836, -13.89728051646783], [-62.103916793407166, -13.89728051646783], [-62.103916793407166, -13.86134790510306], [-62.11289994624836, -13.86134790510306], [-62.11289994624836, -13.879314210785438], [-62.12188309908956, -13.879314210785438], [-62.12188309908956, -13.870331057944242], [-62.130866251930755, -13.870331057944242], [-62.130866251930755, -13.86134790510306], [-62.13984940477195, -13.86134790510306], [-62.13984940477195, -13.870331057944242], [-62.130866251930755, -13.870331057944242], [-62.130866251930755, -13.879314210785438], [-62.13984940477195, -13.879314210785438], [-62.13984940477195, -13.888297363626634], [-62.130866251930755, -13.888297363626634], [-62.130866251930755, -13.89728051646783], [-62.13984940477195, -13.89728051646783], [-62.13984940477195, -13.92422997499142]], [[-62.12188309908956, -13.888297363626634], [-62.12188309908956, -13.879314210785438], [-62.130866251930755, -13.879314210785438], [-62.130866251930755, -13.888297363626634], [-62.12188309908956, -13.888297363626634]], [[-62.12188309908956, -13.906263669309027], [-62.12188309908956, -13.89728051646783], [-62.130866251930755, -13.89728051646783], [-62.130866251930755, -13.906263669309027], [-62.12188309908956, -13.906263669309027]]]}, 'id': '+13110+9898', 'properties': {'count': 16, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.130866251930755, -14.041010961926958], [-62.12188309908956, -14.041010961926958], [-62.12188309908956, -14.032027809085761], [-62.130866251930755, -14.032027809085761], [-62.130866251930755, -14.041010961926958]]]}, 'id': '+13110+9911', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.12188309908956, -13.816432140897078], [-62.11289994624836, -13.816432140897078], [-62.11289994624836, -13.807448988055882], [-62.12188309908956, -13.807448988055882], [-62.12188309908956, -13.816432140897078]]]}, 'id': '+13111+9886', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.12188309908956, -14.094909878974136], [-62.11289994624836, -14.094909878974136], [-62.11289994624836, -14.08592672613294], [-62.12188309908956, -14.08592672613294], [-62.12188309908956, -14.094909878974136]]]}, 'id': '+13111+9917', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.12188309908956, -13.843381599420667], [-62.103916793407166, -13.843381599420667], [-62.103916793407166, -13.825415293738274], [-62.12188309908956, -13.825415293738274], [-62.12188309908956, -13.843381599420667]]]}, 'id': '+13112+9889', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.09493364056597, -13.843381599420667], [-62.08595048772477, -13.843381599420667], [-62.08595048772477, -13.83439844657947], [-62.067984182042395, -13.83439844657947], [-62.067984182042395, -13.825415293738274], [-62.0590010292012, -13.825415293738274], [-62.0590010292012, -13.816432140897078], [-62.07696733488358, -13.816432140897078], [-62.07696733488358, -13.825415293738274], [-62.08595048772477, -13.825415293738274], [-62.08595048772477, -13.816432140897078], [-62.09493364056597, -13.816432140897078], [-62.09493364056597, -13.843381599420667]]]}, 'id': '+13114+9889', 'properties': {'count': 7, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.09493364056597, -13.86134790510306], [-62.08595048772477, -13.86134790510306], [-62.08595048772477, -13.852364752261863], [-62.09493364056597, -13.852364752261863], [-62.09493364056597, -13.86134790510306]]]}, 'id': '+13114+9891', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.09493364056597, -14.193724560227281], [-62.08595048772477, -14.193724560227281], [-62.08595048772477, -14.184741407386085], [-62.09493364056597, -14.184741407386085], [-62.09493364056597, -14.193724560227281]]]}, 'id': '+13114+9928', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.09493364056597, -13.807448988055882], [-62.07696733488358, -13.807448988055882], [-62.07696733488358, -13.789482682373489], [-62.067984182042395, -13.789482682373489], [-62.067984182042395, -13.798465835214685], [-62.0590010292012, -13.798465835214685], [-62.0590010292012, -13.780499529532293], [-62.07696733488358, -13.780499529532293], [-62.07696733488358, -13.7625332238499], [-62.08595048772477, -13.7625332238499], [-62.08595048772477, -13.771516376691096], [-62.103916793407166, -13.771516376691096], [-62.103916793407166, -13.798465835214685], [-62.09493364056597, -13.798465835214685], [-62.09493364056597, -13.807448988055882]]]}, 'id': '+13115+9885', 'properties': {'count': 15, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.07696733488358, -13.852364752261863], [-62.067984182042395, -13.852364752261863], [-62.067984182042395, -13.843381599420667], [-62.07696733488358, -13.843381599420667], [-62.07696733488358, -13.852364752261863]]]}, 'id': '+13116+9890', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.067984182042395, -13.89728051646783], [-62.0590010292012, -13.89728051646783], [-62.0590010292012, -13.888297363626634], [-62.067984182042395, -13.888297363626634], [-62.067984182042395, -13.879314210785438], [-62.05001787636, -13.879314210785438], [-62.05001787636, -13.870331057944242], [-62.067984182042395, -13.870331057944242], [-62.067984182042395, -13.879314210785438], [-62.07696733488358, -13.879314210785438], [-62.07696733488358, -13.870331057944242], [-62.09493364056597, -13.870331057944242], [-62.09493364056597, -13.879314210785438], [-62.08595048772477, -13.879314210785438], [-62.08595048772477, -13.888297363626634], [-62.067984182042395, -13.888297363626634], [-62.067984182042395, -13.89728051646783]]]}, 'id': '+13117+9895', 'properties': {'count': 7, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.067984182042395, -14.05897726760935], [-62.0590010292012, -14.05897726760935], [-62.0590010292012, -14.049994114768154], [-62.067984182042395, -14.049994114768154], [-62.067984182042395, -14.05897726760935]]]}, 'id': '+13117+9913', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.0590010292012, -13.744566918167521], [-62.05001787636, -13.744566918167521], [-62.05001787636, -13.735583765326325], [-62.0590010292012, -13.735583765326325], [-62.0590010292012, -13.744566918167521]]]}, 'id': '+13118+9878', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.0590010292012, -14.032027809085761], [-62.05001787636, -14.032027809085761], [-62.05001787636, -14.023044656244565], [-62.0590010292012, -14.023044656244565], [-62.0590010292012, -14.032027809085761]]]}, 'id': '+13118+9910', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.05001787636, -13.843381599420667], [-62.041034723518806, -13.843381599420667], [-62.041034723518806, -13.83439844657947], [-62.05001787636, -13.83439844657947], [-62.05001787636, -13.843381599420667]]]}, 'id': '+13119+9889', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.067984182042395, -14.103893031815318], [-62.041034723518806, -14.103893031815318], [-62.041034723518806, -14.094909878974136], [-62.03205157067761, -14.094909878974136], [-62.03205157067761, -14.076943573291743], [-62.041034723518806, -14.076943573291743], [-62.041034723518806, -14.067960420450547], [-62.05001787636, -14.067960420450547], [-62.05001787636, -14.076943573291743], [-62.067984182042395, -14.076943573291743], [-62.067984182042395, -14.08592672613294], [-62.07696733488358, -14.08592672613294], [-62.07696733488358, -14.094909878974136], [-62.067984182042395, -14.094909878974136], [-62.067984182042395, -14.103893031815318]], [[-62.05001787636, -14.094909878974136], [-62.05001787636, -14.08592672613294], [-62.0590010292012, -14.08592672613294], [-62.0590010292012, -14.094909878974136], [-62.05001787636, -14.094909878974136]]]}, 'id': '+13119+9918', 'properties': {'count': 12, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.041034723518806, -13.7625332238499], [-62.03205157067761, -13.7625332238499], [-62.03205157067761, -13.744566918167521], [-62.02306841783641, -13.744566918167521], [-62.02306841783641, -13.735583765326325], [-62.041034723518806, -13.735583765326325], [-62.041034723518806, -13.7625332238499]]]}, 'id': '+13120+9880', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.041034723518806, -13.879314210785438], [-62.03205157067761, -13.879314210785438], [-62.03205157067761, -13.852364752261863], [-62.05001787636, -13.852364752261863], [-62.05001787636, -13.86134790510306], [-62.041034723518806, -13.86134790510306], [-62.041034723518806, -13.879314210785438]]]}, 'id': '+13120+9893', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.041034723518806, -14.229657171592052], [-62.03205157067761, -14.229657171592052], [-62.03205157067761, -14.220674018750856], [-62.01408526499522, -14.220674018750856], [-62.01408526499522, -14.202707713068477], [-62.02306841783641, -14.202707713068477], [-62.02306841783641, -14.193724560227281], [-62.03205157067761, -14.193724560227281], [-62.03205157067761, -14.202707713068477], [-62.05001787636, -14.202707713068477], [-62.05001787636, -14.184741407386085], [-62.0590010292012, -14.184741407386085], [-62.0590010292012, -14.202707713068477], [-62.05001787636, -14.202707713068477], [-62.05001787636, -14.211690865909674], [-62.041034723518806, -14.211690865909674], [-62.041034723518806, -14.229657171592052]], [[-62.02306841783641, -14.211690865909674], [-62.02306841783641, -14.202707713068477], [-62.03205157067761, -14.202707713068477], [-62.03205157067761, -14.211690865909674], [-62.02306841783641, -14.211690865909674]]]}, 'id': '+13120+9932', 'properties': {'count': 10, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.03205157067761, -13.83439844657947], [-62.02306841783641, -13.83439844657947], [-62.02306841783641, -13.825415293738274], [-62.03205157067761, -13.825415293738274], [-62.03205157067761, -13.816432140897078], [-62.00510211215402, -13.816432140897078], [-62.00510211215402, -13.807448988055882], [-62.01408526499522, -13.807448988055882], [-62.01408526499522, -13.798465835214685], [-62.02306841783641, -13.798465835214685], [-62.02306841783641, -13.807448988055882], [-62.03205157067761, -13.807448988055882], [-62.03205157067761, -13.816432140897078], [-62.041034723518806, -13.816432140897078], [-62.041034723518806, -13.825415293738274], [-62.03205157067761, -13.825415293738274], [-62.03205157067761, -13.83439844657947]]]}, 'id': '+13121+9888', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.03205157067761, -13.870331057944242], [-62.02306841783641, -13.870331057944242], [-62.02306841783641, -13.86134790510306], [-62.03205157067761, -13.86134790510306], [-62.03205157067761, -13.870331057944242]]]}, 'id': '+13121+9892', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.03205157067761, -14.139825643180103], [-62.02306841783641, -14.139825643180103], [-62.02306841783641, -14.130842490338907], [-62.03205157067761, -14.130842490338907], [-62.03205157067761, -14.139825643180103]]]}, 'id': '+13121+9922', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.02306841783641, -14.094909878974136], [-62.01408526499522, -14.094909878974136], [-62.01408526499522, -14.08592672613294], [-62.02306841783641, -14.08592672613294], [-62.02306841783641, -14.094909878974136]]]}, 'id': '+13122+9917', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.041034723518806, -13.789482682373489], [-62.00510211215402, -13.789482682373489], [-62.00510211215402, -13.780499529532293], [-62.01408526499522, -13.780499529532293], [-62.01408526499522, -13.7625332238499], [-62.02306841783641, -13.7625332238499], [-62.02306841783641, -13.771516376691096], [-62.03205157067761, -13.771516376691096], [-62.03205157067761, -13.780499529532293], [-62.041034723518806, -13.780499529532293], [-62.041034723518806, -13.789482682373489]]]}, 'id': '+13123+9883', 'properties': {'count': 7, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.01408526499522, -14.05897726760935], [-62.00510211215402, -14.05897726760935], [-62.00510211215402, -14.049994114768154], [-62.01408526499522, -14.049994114768154], [-62.01408526499522, -14.05897726760935]]]}, 'id': '+13123+9913', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.00510211215402, -14.023044656244565], [-61.996118959312824, -14.023044656244565], [-61.996118959312824, -14.014061503403369], [-62.00510211215402, -14.014061503403369], [-62.00510211215402, -14.023044656244565]]]}, 'id': '+13124+9909', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.00510211215402, -14.139825643180103], [-61.996118959312824, -14.139825643180103], [-61.996118959312824, -14.130842490338907], [-61.98713580647163, -14.130842490338907], [-61.98713580647163, -14.112876184656514], [-61.97815265363043, -14.112876184656514], [-61.97815265363043, -14.103893031815318], [-61.969169500789235, -14.103893031815318], [-61.969169500789235, -14.112876184656514], [-61.96018634794805, -14.112876184656514], [-61.96018634794805, -14.103893031815318], [-61.969169500789235, -14.103893031815318], [-61.969169500789235, -14.094909878974136], [-61.97815265363043, -14.094909878974136], [-61.97815265363043, -14.103893031815318], [-61.98713580647163, -14.103893031815318], [-61.98713580647163, -14.094909878974136], [-61.996118959312824, -14.094909878974136], [-61.996118959312824, -14.103893031815318], [-61.98713580647163, -14.103893031815318], [-61.98713580647163, -14.112876184656514], [-62.00510211215402, -14.112876184656514], [-62.00510211215402, -14.139825643180103]]]}, 'id': '+13124+9922', 'properties': {'count': 9, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.996118959312824, -14.041010961926958], [-61.98713580647163, -14.041010961926958], [-61.98713580647163, -14.032027809085761], [-61.996118959312824, -14.032027809085761], [-61.996118959312824, -14.041010961926958]]]}, 'id': '+13125+9911', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-62.00510211215402, -14.166775101703692], [-61.98713580647163, -14.166775101703692], [-61.98713580647163, -14.157791948862496], [-62.00510211215402, -14.157791948862496], [-62.00510211215402, -14.166775101703692]]]}, 'id': '+13125+9925', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.98713580647163, -13.843381599420667], [-61.97815265363043, -13.843381599420667], [-61.97815265363043, -13.83439844657947], [-61.98713580647163, -13.83439844657947], [-61.98713580647163, -13.843381599420667]]]}, 'id': '+13126+9889', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.98713580647163, -13.915246822150223], [-61.97815265363043, -13.915246822150223], [-61.97815265363043, -13.906263669309027], [-61.98713580647163, -13.906263669309027], [-61.98713580647163, -13.915246822150223]]]}, 'id': '+13126+9897', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.98713580647163, -14.014061503403369], [-61.97815265363043, -14.014061503403369], [-61.97815265363043, -14.005078350562172], [-61.98713580647163, -14.005078350562172], [-61.98713580647163, -14.014061503403369]]]}, 'id': '+13126+9908', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.98713580647163, -14.076943573291743], [-61.97815265363043, -14.076943573291743], [-61.97815265363043, -14.067960420450547], [-61.98713580647163, -14.067960420450547], [-61.98713580647163, -14.076943573291743]]]}, 'id': '+13126+9915', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.98713580647163, -14.1488087960213], [-61.97815265363043, -14.1488087960213], [-61.97815265363043, -14.139825643180103], [-61.98713580647163, -14.139825643180103], [-61.98713580647163, -14.1488087960213]]]}, 'id': '+13126+9923', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.98713580647163, -14.184741407386085], [-61.97815265363043, -14.184741407386085], [-61.97815265363043, -14.175758254544888], [-61.969169500789235, -14.175758254544888], [-61.969169500789235, -14.166775101703692], [-61.96018634794805, -14.166775101703692], [-61.96018634794805, -14.157791948862496], [-61.969169500789235, -14.157791948862496], [-61.969169500789235, -14.166775101703692], [-61.97815265363043, -14.166775101703692], [-61.97815265363043, -14.175758254544888], [-61.98713580647163, -14.175758254544888], [-61.98713580647163, -14.184741407386085]]]}, 'id': '+13126+9927', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.97815265363043, -14.328471852845198], [-61.969169500789235, -14.328471852845198], [-61.969169500789235, -14.319488700004015], [-61.97815265363043, -14.319488700004015], [-61.97815265363043, -14.328471852845198]]]}, 'id': '+13127+9943', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.96018634794805, -13.86134790510306], [-61.95120319510686, -13.86134790510306], [-61.95120319510686, -13.852364752261863], [-61.96018634794805, -13.852364752261863], [-61.96018634794805, -13.86134790510306]]]}, 'id': '+13129+9891', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.96018634794805, -13.879314210785438], [-61.95120319510686, -13.879314210785438], [-61.95120319510686, -13.870331057944242], [-61.96018634794805, -13.870331057944242], [-61.96018634794805, -13.879314210785438]]]}, 'id': '+13129+9893', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.96018634794805, -14.310505547162819], [-61.95120319510686, -14.310505547162819], [-61.95120319510686, -14.301522394321623], [-61.96018634794805, -14.301522394321623], [-61.96018634794805, -14.310505547162819]]]}, 'id': '+13129+9941', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.95120319510686, -14.005078350562172], [-61.94222004226566, -14.005078350562172], [-61.94222004226566, -13.996095197720976], [-61.95120319510686, -13.996095197720976], [-61.95120319510686, -14.005078350562172]]]}, 'id': '+13130+9907', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.96018634794805, -14.1488087960213], [-61.94222004226566, -14.1488087960213], [-61.94222004226566, -14.139825643180103], [-61.96018634794805, -14.139825643180103], [-61.96018634794805, -14.130842490338907], [-61.95120319510686, -14.130842490338907], [-61.95120319510686, -14.12185933749771], [-61.96018634794805, -14.12185933749771], [-61.96018634794805, -14.130842490338907], [-61.969169500789235, -14.130842490338907], [-61.969169500789235, -14.139825643180103], [-61.96018634794805, -14.139825643180103], [-61.96018634794805, -14.1488087960213]]]}, 'id': '+13130+9923', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.94222004226566, -13.807448988055882], [-61.933236889424464, -13.807448988055882], [-61.933236889424464, -13.798465835214685], [-61.94222004226566, -13.798465835214685], [-61.94222004226566, -13.807448988055882]]]}, 'id': '+13131+9885', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.94222004226566, -13.98711204487978], [-61.933236889424464, -13.98711204487978], [-61.933236889424464, -13.978128892038598], [-61.94222004226566, -13.978128892038598], [-61.94222004226566, -13.98711204487978]]]}, 'id': '+13131+9905', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.92425373658327, -14.041010961926958], [-61.91527058374207, -14.041010961926958], [-61.91527058374207, -14.032027809085761], [-61.92425373658327, -14.032027809085761], [-61.92425373658327, -14.041010961926958]]]}, 'id': '+13133+9911', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.91527058374207, -13.951179433515009], [-61.906287430900875, -13.951179433515009], [-61.906287430900875, -13.942196280673812], [-61.91527058374207, -13.942196280673812], [-61.91527058374207, -13.951179433515009]]]}, 'id': '+13134+9901', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.91527058374207, -13.98711204487978], [-61.906287430900875, -13.98711204487978], [-61.906287430900875, -13.969145739197401], [-61.91527058374207, -13.969145739197401], [-61.91527058374207, -13.960162586356205], [-61.92425373658327, -13.960162586356205], [-61.92425373658327, -13.969145739197401], [-61.91527058374207, -13.969145739197401], [-61.91527058374207, -13.98711204487978]]]}, 'id': '+13134+9905', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.906287430900875, -14.08592672613294], [-61.89730427805968, -14.08592672613294], [-61.89730427805968, -14.076943573291743], [-61.906287430900875, -14.076943573291743], [-61.906287430900875, -14.08592672613294]]]}, 'id': '+13135+9916', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.906287430900875, -14.112876184656514], [-61.89730427805968, -14.112876184656514], [-61.89730427805968, -14.103893031815318], [-61.906287430900875, -14.103893031815318], [-61.906287430900875, -14.112876184656514]]]}, 'id': '+13135+9919', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.91527058374207, -14.166775101703692], [-61.89730427805968, -14.166775101703692], [-61.89730427805968, -14.157791948862496], [-61.91527058374207, -14.157791948862496], [-61.91527058374207, -14.1488087960213], [-61.88832112521848, -14.1488087960213], [-61.88832112521848, -14.139825643180103], [-61.933236889424464, -14.139825643180103], [-61.933236889424464, -14.157791948862496], [-61.91527058374207, -14.157791948862496], [-61.91527058374207, -14.166775101703692]]]}, 'id': '+13135+9925', 'properties': {'count': 9, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.89730427805968, -14.130842490338907], [-61.88832112521848, -14.130842490338907], [-61.88832112521848, -14.12185933749771], [-61.89730427805968, -14.12185933749771], [-61.89730427805968, -14.130842490338907]]]}, 'id': '+13136+9921', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.89730427805968, -13.7625332238499], [-61.879337972377286, -13.7625332238499], [-61.879337972377286, -13.753550071008718], [-61.88832112521848, -13.753550071008718], [-61.88832112521848, -13.744566918167521], [-61.89730427805968, -13.744566918167521], [-61.89730427805968, -13.7625332238499]]]}, 'id': '+13137+9880', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.88832112521848, -13.870331057944242], [-61.879337972377286, -13.870331057944242], [-61.879337972377286, -13.86134790510306], [-61.88832112521848, -13.86134790510306], [-61.88832112521848, -13.870331057944242]]]}, 'id': '+13137+9892', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.88832112521848, -13.978128892038598], [-61.879337972377286, -13.978128892038598], [-61.879337972377286, -13.969145739197401], [-61.88832112521848, -13.969145739197401], [-61.88832112521848, -13.978128892038598]]]}, 'id': '+13137+9904', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.88832112521848, -14.103893031815318], [-61.879337972377286, -14.103893031815318], [-61.879337972377286, -14.08592672613294], [-61.88832112521848, -14.08592672613294], [-61.88832112521848, -14.103893031815318]]]}, 'id': '+13137+9918', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.879337972377286, -14.400337075574768], [-61.87035481953609, -14.400337075574768], [-61.87035481953609, -14.382370769892376], [-61.879337972377286, -14.382370769892376], [-61.879337972377286, -14.37338761705118], [-61.87035481953609, -14.37338761705118], [-61.87035481953609, -14.364404464209983], [-61.86137166669489, -14.364404464209983], [-61.86137166669489, -14.355421311368787], [-61.8523885138537, -14.355421311368787], [-61.8523885138537, -14.34643815852759], [-61.87035481953609, -14.34643815852759], [-61.87035481953609, -14.337455005686394], [-61.843405361012515, -14.337455005686394], [-61.843405361012515, -14.328471852845198], [-61.83442220817132, -14.328471852845198], [-61.83442220817132, -14.355421311368787], [-61.80747274964773, -14.355421311368787], [-61.80747274964773, -14.364404464209983], [-61.79848959680653, -14.364404464209983], [-61.79848959680653, -14.355421311368787], [-61.80747274964773, -14.355421311368787], [-61.80747274964773, -14.34643815852759], [-61.78950644396534, -14.34643815852759], [-61.78950644396534, -14.364404464209983], [-61.771540138282944, -14.364404464209983], [-61.771540138282944, -14.37338761705118], [-61.78052329112414, -14.37338761705118], [-61.78052329112414, -14.382370769892376], [-61.76255698544175, -14.382370769892376], [-61.76255698544175, -14.37338761705118], [-61.744590679759355, -14.37338761705118], [-61.744590679759355, -14.382370769892376], [-61.73560752691816, -14.382370769892376], [-61.73560752691816, -14.37338761705118], [-61.72662437407698, -14.37338761705118], [-61.72662437407698, -14.337455005686394], [-61.71764122123578, -14.337455005686394], [-61.71764122123578, -14.34643815852759], [-61.69967491555339, -14.34643815852759], [-61.69967491555339, -14.328471852845198], [-61.681708609870995, -14.328471852845198], [-61.681708609870995, -14.337455005686394], [-61.6727254570298, -14.337455005686394], [-61.6727254570298, -14.34643815852759], [-61.6637423041886, -14.34643815852759], [-61.6637423041886, -14.337455005686394], [-61.6727254570298, -14.337455005686394], [-61.6727254570298, -14.319488700004015], [-61.69069176271219, -14.319488700004015], [-61.69069176271219, -14.301522394321623], [-61.69967491555339, -14.301522394321623], [-61.69967491555339, -14.292539241480426], [-61.71764122123578, -14.292539241480426], [-61.71764122123578, -14.301522394321623], [-61.73560752691816, -14.301522394321623], [-61.73560752691816, -14.292539241480426], [-61.744590679759355, -14.292539241480426], [-61.744590679759355, -14.274572935798034], [-61.73560752691816, -14.274572935798034], [-61.73560752691816, -14.265589782956837], [-61.72662437407698, -14.265589782956837], [-61.72662437407698, -14.256606630115641], [-61.71764122123578, -14.256606630115641], [-61.71764122123578, -14.247623477274445], [-61.744590679759355, -14.247623477274445], [-61.744590679759355, -14.238640324433248], [-61.73560752691816, -14.238640324433248], [-61.73560752691816, -14.229657171592052], [-61.744590679759355, -14.229657171592052], [-61.744590679759355, -14.238640324433248], [-61.75357383260055, -14.238640324433248], [-61.75357383260055, -14.220674018750856], [-61.72662437407698, -14.220674018750856], [-61.72662437407698, -14.211690865909674], [-61.708658068394584, -14.211690865909674], [-61.708658068394584, -14.220674018750856], [-61.69967491555339, -14.220674018750856], [-61.69967491555339, -14.202707713068477], [-61.69069176271219, -14.202707713068477], [-61.69069176271219, -14.184741407386085], [-61.69967491555339, -14.184741407386085], [-61.69967491555339, -14.193724560227281], [-61.71764122123578, -14.193724560227281], [-61.71764122123578, -14.202707713068477], [-61.72662437407698, -14.202707713068477], [-61.72662437407698, -14.211690865909674], [-61.744590679759355, -14.211690865909674], [-61.744590679759355, -14.202707713068477], [-61.73560752691816, -14.202707713068477], [-61.73560752691816, -14.193724560227281], [-61.72662437407698, -14.193724560227281], [-61.72662437407698, -14.184741407386085], [-61.71764122123578, -14.184741407386085], [-61.71764122123578, -14.175758254544888], [-61.72662437407698, -14.175758254544888], [-61.72662437407698, -14.184741407386085], [-61.73560752691816, -14.184741407386085], [-61.73560752691816, -14.193724560227281], [-61.744590679759355, -14.193724560227281], [-61.744590679759355, -14.202707713068477], [-61.75357383260055, -14.202707713068477], [-61.75357383260055, -14.184741407386085], [-61.76255698544175, -14.184741407386085], [-61.76255698544175, -14.175758254544888], [-61.75357383260055, -14.175758254544888], [-61.75357383260055, -14.166775101703692], [-61.76255698544175, -14.166775101703692], [-61.76255698544175, -14.157791948862496], [-61.744590679759355, -14.157791948862496], [-61.744590679759355, -14.166775101703692], [-61.73560752691816, -14.166775101703692], [-61.73560752691816, -14.1488087960213], [-61.71764122123578, -14.1488087960213], [-61.71764122123578, -14.139825643180103], [-61.73560752691816, -14.139825643180103], [-61.73560752691816, -14.130842490338907], [-61.75357383260055, -14.130842490338907], [-61.75357383260055, -14.12185933749771], [-61.73560752691816, -14.12185933749771], [-61.73560752691816, -14.112876184656514], [-61.72662437407698, -14.112876184656514], [-61.72662437407698, -14.094909878974136], [-61.73560752691816, -14.094909878974136], [-61.73560752691816, -14.103893031815318], [-61.744590679759355, -14.103893031815318], [-61.744590679759355, -14.112876184656514], [-61.75357383260055, -14.112876184656514], [-61.75357383260055, -14.12185933749771], [-61.76255698544175, -14.12185933749771], [-61.76255698544175, -14.112876184656514], [-61.771540138282944, -14.112876184656514], [-61.771540138282944, -14.103893031815318], [-61.78052329112414, -14.103893031815318], [-61.78052329112414, -14.094909878974136], [-61.771540138282944, -14.094909878974136], [-61.771540138282944, -14.08592672613294], [-61.78052329112414, -14.08592672613294], [-61.78052329112414, -14.094909878974136], [-61.78950644396534, -14.094909878974136], [-61.78950644396534, -14.103893031815318], [-61.78052329112414, -14.103893031815318], [-61.78052329112414, -14.112876184656514], [-61.771540138282944, -14.112876184656514], [-61.771540138282944, -14.12185933749771], [-61.76255698544175, -14.12185933749771], [-61.76255698544175, -14.130842490338907], [-61.78052329112414, -14.130842490338907], [-61.78052329112414, -14.139825643180103], [-61.771540138282944, -14.139825643180103], [-61.771540138282944, -14.1488087960213], [-61.78950644396534, -14.1488087960213], [-61.78950644396534, -14.157791948862496], [-61.79848959680653, -14.157791948862496], [-61.79848959680653, -14.166775101703692], [-61.80747274964773, -14.166775101703692], [-61.80747274964773, -14.157791948862496], [-61.816455902488926, -14.157791948862496], [-61.816455902488926, -14.166775101703692], [-61.82543905533012, -14.166775101703692], [-61.82543905533012, -14.139825643180103], [-61.83442220817132, -14.139825643180103], [-61.83442220817132, -14.157791948862496], [-61.8523885138537, -14.157791948862496], [-61.8523885138537, -14.1488087960213], [-61.86137166669489, -14.1488087960213], [-61.86137166669489, -14.139825643180103], [-61.87035481953609, -14.139825643180103], [-61.87035481953609, -14.157791948862496], [-61.8523885138537, -14.157791948862496], [-61.8523885138537, -14.166775101703692], [-61.86137166669489, -14.166775101703692], [-61.86137166669489, -14.175758254544888], [-61.87035481953609, -14.175758254544888], [-61.87035481953609, -14.166775101703692], [-61.879337972377286, -14.166775101703692], [-61.879337972377286, -14.175758254544888], [-61.87035481953609, -14.175758254544888], [-61.87035481953609, -14.193724560227281], [-61.879337972377286, -14.193724560227281], [-61.879337972377286, -14.184741407386085], [-61.88832112521848, -14.184741407386085], [-61.88832112521848, -14.175758254544888], [-61.91527058374207, -14.175758254544888], [-61.91527058374207, -14.184741407386085], [-61.92425373658327, -14.184741407386085], [-61.92425373658327, -14.166775101703692], [-61.95120319510686, -14.166775101703692], [-61.95120319510686, -14.175758254544888], [-61.96018634794805, -14.175758254544888], [-61.96018634794805, -14.193724560227281], [-61.969169500789235, -14.193724560227281], [-61.969169500789235, -14.202707713068477], [-61.97815265363043, -14.202707713068477], [-61.97815265363043, -14.193724560227281], [-62.00510211215402, -14.193724560227281], [-62.00510211215402, -14.202707713068477], [-61.996118959312824, -14.202707713068477], [-61.996118959312824, -14.211690865909674], [-61.98713580647163, -14.211690865909674], [-61.98713580647163, -14.202707713068477], [-61.97815265363043, -14.202707713068477], [-61.97815265363043, -14.211690865909674], [-61.969169500789235, -14.211690865909674], [-61.969169500789235, -14.220674018750856], [-61.97815265363043, -14.220674018750856], [-61.97815265363043, -14.229657171592052], [-61.98713580647163, -14.229657171592052], [-61.98713580647163, -14.238640324433248], [-61.996118959312824, -14.238640324433248], [-61.996118959312824, -14.247623477274445], [-61.98713580647163, -14.247623477274445], [-61.98713580647163, -14.238640324433248], [-61.97815265363043, -14.238640324433248], [-61.97815265363043, -14.256606630115641], [-61.969169500789235, -14.256606630115641], [-61.969169500789235, -14.274572935798034], [-61.97815265363043, -14.274572935798034], [-61.97815265363043, -14.28355608863923], [-61.969169500789235, -14.28355608863923], [-61.969169500789235, -14.292539241480426], [-61.96018634794805, -14.292539241480426], [-61.96018634794805, -14.28355608863923], [-61.94222004226566, -14.28355608863923], [-61.94222004226566, -14.310505547162819], [-61.933236889424464, -14.310505547162819], [-61.933236889424464, -14.301522394321623], [-61.92425373658327, -14.301522394321623], [-61.92425373658327, -14.310505547162819], [-61.91527058374207, -14.310505547162819], [-61.91527058374207, -14.319488700004015], [-61.89730427805968, -14.319488700004015], [-61.89730427805968, -14.310505547162819], [-61.879337972377286, -14.310505547162819], [-61.879337972377286, -14.328471852845198], [-61.87035481953609, -14.328471852845198], [-61.87035481953609, -14.337455005686394], [-61.879337972377286, -14.337455005686394], [-61.879337972377286, -14.34643815852759], [-61.87035481953609, -14.34643815852759], [-61.87035481953609, -14.364404464209983], [-61.88832112521848, -14.364404464209983], [-61.88832112521848, -14.37338761705118], [-61.89730427805968, -14.37338761705118], [-61.89730427805968, -14.391353922733572], [-61.879337972377286, -14.391353922733572], [-61.879337972377286, -14.400337075574768]], [[-61.744590679759355, -14.1488087960213], [-61.744590679759355, -14.139825643180103], [-61.76255698544175, -14.139825643180103], [-61.76255698544175, -14.1488087960213], [-61.744590679759355, -14.1488087960213]], [[-61.933236889424464, -14.193724560227281], [-61.933236889424464, -14.184741407386085], [-61.94222004226566, -14.184741407386085], [-61.94222004226566, -14.193724560227281], [-61.933236889424464, -14.193724560227281]], [[-61.78052329112414, -14.193724560227281], [-61.78052329112414, -14.184741407386085], [-61.78950644396534, -14.184741407386085], [-61.78950644396534, -14.175758254544888], [-61.78052329112414, -14.175758254544888], [-61.78052329112414, -14.184741407386085], [-61.771540138282944, -14.184741407386085], [-61.771540138282944, -14.166775101703692], [-61.79848959680653, -14.166775101703692], [-61.79848959680653, -14.175758254544888], [-61.82543905533012, -14.175758254544888], [-61.82543905533012, -14.184741407386085], [-61.79848959680653, -14.184741407386085], [-61.79848959680653, -14.193724560227281], [-61.78052329112414, -14.193724560227281]], [[-61.91527058374207, -14.220674018750856], [-61.91527058374207, -14.211690865909674], [-61.92425373658327, -14.211690865909674], [-61.92425373658327, -14.220674018750856], [-61.91527058374207, -14.220674018750856]], [[-61.76255698544175, -14.220674018750856], [-61.76255698544175, -14.211690865909674], [-61.771540138282944, -14.211690865909674], [-61.771540138282944, -14.220674018750856], [-61.76255698544175, -14.220674018750856]], [[-61.95120319510686, -14.229657171592052], [-61.95120319510686, -14.220674018750856], [-61.969169500789235, -14.220674018750856], [-61.969169500789235, -14.229657171592052], [-61.95120319510686, -14.229657171592052]], [[-61.771540138282944, -14.229657171592052], [-61.771540138282944, -14.220674018750856], [-61.78052329112414, -14.220674018750856], [-61.78052329112414, -14.229657171592052], [-61.771540138282944, -14.229657171592052]], [[-61.96018634794805, -14.247623477274445], [-61.96018634794805, -14.238640324433248], [-61.969169500789235, -14.238640324433248], [-61.969169500789235, -14.247623477274445], [-61.96018634794805, -14.247623477274445]], [[-61.89730427805968, -14.256606630115641], [-61.89730427805968, -14.247623477274445], [-61.906287430900875, -14.247623477274445], [-61.906287430900875, -14.256606630115641], [-61.89730427805968, -14.256606630115641]], [[-61.82543905533012, -14.256606630115641], [-61.82543905533012, -14.247623477274445], [-61.83442220817132, -14.247623477274445], [-61.83442220817132, -14.256606630115641], [-61.82543905533012, -14.256606630115641]], [[-61.906287430900875, -14.265589782956837], [-61.906287430900875, -14.256606630115641], [-61.92425373658327, -14.256606630115641], [-61.92425373658327, -14.265589782956837], [-61.906287430900875, -14.265589782956837]], [[-61.879337972377286, -14.265589782956837], [-61.879337972377286, -14.238640324433248], [-61.88832112521848, -14.238640324433248], [-61.88832112521848, -14.265589782956837], [-61.879337972377286, -14.265589782956837]], [[-61.75357383260055, -14.265589782956837], [-61.75357383260055, -14.247623477274445], [-61.76255698544175, -14.247623477274445], [-61.76255698544175, -14.256606630115641], [-61.771540138282944, -14.256606630115641], [-61.771540138282944, -14.265589782956837], [-61.75357383260055, -14.265589782956837]], [[-61.87035481953609, -14.28355608863923], [-61.87035481953609, -14.265589782956837], [-61.879337972377286, -14.265589782956837], [-61.879337972377286, -14.28355608863923], [-61.87035481953609, -14.28355608863923]], [[-61.843405361012515, -14.328471852845198], [-61.843405361012515, -14.310505547162819], [-61.8523885138537, -14.310505547162819], [-61.8523885138537, -14.328471852845198], [-61.843405361012515, -14.328471852845198]], [[-61.76255698544175, -14.328471852845198], [-61.76255698544175, -14.319488700004015], [-61.771540138282944, -14.319488700004015], [-61.771540138282944, -14.328471852845198], [-61.76255698544175, -14.328471852845198]], [[-61.71764122123578, -14.328471852845198], [-61.71764122123578, -14.310505547162819], [-61.72662437407698, -14.310505547162819], [-61.72662437407698, -14.319488700004015], [-61.73560752691816, -14.319488700004015], [-61.73560752691816, -14.328471852845198], [-61.71764122123578, -14.328471852845198]]]}, 'id': '+13138+9951', 'properties': {'count': 533, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.87035481953609, -14.130842490338907], [-61.86137166669489, -14.130842490338907], [-61.86137166669489, -14.12185933749771], [-61.87035481953609, -14.12185933749771], [-61.87035481953609, -14.130842490338907]]]}, 'id': '+13139+9921', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.86137166669489, -13.708634306802736], [-61.8523885138537, -13.708634306802736], [-61.8523885138537, -13.69965115396154], [-61.86137166669489, -13.69965115396154], [-61.86137166669489, -13.708634306802736]]]}, 'id': '+13140+9874', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.87035481953609, -13.753550071008718], [-61.8523885138537, -13.753550071008718], [-61.8523885138537, -13.744566918167521], [-61.86137166669489, -13.744566918167521], [-61.86137166669489, -13.735583765326325], [-61.83442220817132, -13.735583765326325], [-61.83442220817132, -13.726600612485129], [-61.8523885138537, -13.726600612485129], [-61.8523885138537, -13.717617459643932], [-61.86137166669489, -13.717617459643932], [-61.86137166669489, -13.726600612485129], [-61.87035481953609, -13.726600612485129], [-61.87035481953609, -13.717617459643932], [-61.879337972377286, -13.717617459643932], [-61.879337972377286, -13.708634306802736], [-61.87035481953609, -13.708634306802736], [-61.87035481953609, -13.69965115396154], [-61.88832112521848, -13.69965115396154], [-61.88832112521848, -13.690668001120343], [-61.89730427805968, -13.690668001120343], [-61.89730427805968, -13.717617459643932], [-61.88832112521848, -13.717617459643932], [-61.88832112521848, -13.726600612485129], [-61.89730427805968, -13.726600612485129], [-61.89730427805968, -13.735583765326325], [-61.879337972377286, -13.735583765326325], [-61.879337972377286, -13.744566918167521], [-61.87035481953609, -13.744566918167521], [-61.87035481953609, -13.753550071008718]], [[-61.87035481953609, -13.735583765326325], [-61.87035481953609, -13.726600612485129], [-61.879337972377286, -13.726600612485129], [-61.879337972377286, -13.735583765326325], [-61.87035481953609, -13.735583765326325]]]}, 'id': '+13140+9879', 'properties': {'count': 19, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.87035481953609, -13.98711204487978], [-61.8523885138537, -13.98711204487978], [-61.8523885138537, -13.978128892038598], [-61.843405361012515, -13.978128892038598], [-61.843405361012515, -13.969145739197401], [-61.8523885138537, -13.969145739197401], [-61.8523885138537, -13.978128892038598], [-61.87035481953609, -13.978128892038598], [-61.87035481953609, -13.98711204487978]]]}, 'id': '+13140+9905', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.86137166669489, -13.825415293738274], [-61.843405361012515, -13.825415293738274], [-61.843405361012515, -13.816432140897078], [-61.83442220817132, -13.816432140897078], [-61.83442220817132, -13.807448988055882], [-61.86137166669489, -13.807448988055882], [-61.86137166669489, -13.825415293738274]]]}, 'id': '+13141+9887', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.8523885138537, -14.094909878974136], [-61.843405361012515, -14.094909878974136], [-61.843405361012515, -14.08592672613294], [-61.83442220817132, -14.08592672613294], [-61.83442220817132, -14.076943573291743], [-61.843405361012515, -14.076943573291743], [-61.843405361012515, -14.08592672613294], [-61.8523885138537, -14.08592672613294], [-61.8523885138537, -14.094909878974136]]]}, 'id': '+13141+9917', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.8523885138537, -14.139825643180103], [-61.843405361012515, -14.139825643180103], [-61.843405361012515, -14.130842490338907], [-61.83442220817132, -14.130842490338907], [-61.83442220817132, -14.12185933749771], [-61.8523885138537, -14.12185933749771], [-61.8523885138537, -14.139825643180103]]]}, 'id': '+13141+9922', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.843405361012515, -13.798465835214685], [-61.83442220817132, -13.798465835214685], [-61.83442220817132, -13.789482682373489], [-61.843405361012515, -13.789482682373489], [-61.843405361012515, -13.798465835214685]]]}, 'id': '+13142+9884', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.843405361012515, -13.843381599420667], [-61.83442220817132, -13.843381599420667], [-61.83442220817132, -13.83439844657947], [-61.843405361012515, -13.83439844657947], [-61.843405361012515, -13.843381599420667]]]}, 'id': '+13142+9889', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.843405361012515, -14.005078350562172], [-61.83442220817132, -14.005078350562172], [-61.83442220817132, -13.996095197720976], [-61.843405361012515, -13.996095197720976], [-61.843405361012515, -14.005078350562172]]]}, 'id': '+13142+9907', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.843405361012515, -14.400337075574768], [-61.83442220817132, -14.400337075574768], [-61.83442220817132, -14.391353922733572], [-61.843405361012515, -14.391353922733572], [-61.843405361012515, -14.400337075574768]]]}, 'id': '+13142+9951', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.83442220817132, -13.663718542596754], [-61.82543905533012, -13.663718542596754], [-61.82543905533012, -13.645752236914362], [-61.816455902488926, -13.645752236914362], [-61.816455902488926, -13.63676908407318], [-61.82543905533012, -13.63676908407318], [-61.82543905533012, -13.645752236914362], [-61.843405361012515, -13.645752236914362], [-61.843405361012515, -13.654735389755558], [-61.8523885138537, -13.654735389755558], [-61.8523885138537, -13.663718542596754], [-61.843405361012515, -13.663718542596754], [-61.843405361012515, -13.654735389755558], [-61.83442220817132, -13.654735389755558], [-61.83442220817132, -13.663718542596754]]]}, 'id': '+13143+9869', 'properties': {'count': 5, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.83442220817132, -13.67270169543795], [-61.82543905533012, -13.67270169543795], [-61.82543905533012, -13.663718542596754], [-61.83442220817132, -13.663718542596754], [-61.83442220817132, -13.67270169543795]]]}, 'id': '+13143+9870', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.83442220817132, -13.69965115396154], [-61.82543905533012, -13.69965115396154], [-61.82543905533012, -13.690668001120343], [-61.83442220817132, -13.690668001120343], [-61.83442220817132, -13.681684848279147], [-61.843405361012515, -13.681684848279147], [-61.843405361012515, -13.690668001120343], [-61.83442220817132, -13.690668001120343], [-61.83442220817132, -13.69965115396154]]]}, 'id': '+13143+9873', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.843405361012515, -13.726600612485129], [-61.82543905533012, -13.726600612485129], [-61.82543905533012, -13.717617459643932], [-61.843405361012515, -13.717617459643932], [-61.843405361012515, -13.726600612485129]]]}, 'id': '+13143+9876', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.83442220817132, -14.436269686939553], [-61.82543905533012, -14.436269686939553], [-61.82543905533012, -14.41830338125716], [-61.816455902488926, -14.41830338125716], [-61.816455902488926, -14.409320228415964], [-61.82543905533012, -14.409320228415964], [-61.82543905533012, -14.41830338125716], [-61.83442220817132, -14.41830338125716], [-61.83442220817132, -14.436269686939553]]]}, 'id': '+13143+9955', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.82543905533012, -13.969145739197401], [-61.816455902488926, -13.969145739197401], [-61.816455902488926, -13.960162586356205], [-61.82543905533012, -13.960162586356205], [-61.82543905533012, -13.969145739197401]]]}, 'id': '+13144+9903', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.816455902488926, -13.645752236914362], [-61.80747274964773, -13.645752236914362], [-61.80747274964773, -13.63676908407318], [-61.816455902488926, -13.63676908407318], [-61.816455902488926, -13.645752236914362]]]}, 'id': '+13145+9867', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.816455902488926, -13.690668001120343], [-61.80747274964773, -13.690668001120343], [-61.80747274964773, -13.681684848279147], [-61.816455902488926, -13.681684848279147], [-61.816455902488926, -13.690668001120343]]]}, 'id': '+13145+9872', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.80747274964773, -13.708634306802736], [-61.79848959680653, -13.708634306802736], [-61.79848959680653, -13.69965115396154], [-61.80747274964773, -13.69965115396154], [-61.80747274964773, -13.708634306802736]]]}, 'id': '+13146+9874', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.80747274964773, -13.852364752261863], [-61.79848959680653, -13.852364752261863], [-61.79848959680653, -13.843381599420667], [-61.80747274964773, -13.843381599420667], [-61.80747274964773, -13.852364752261863]]]}, 'id': '+13146+9890', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.816455902488926, -14.1488087960213], [-61.79848959680653, -14.1488087960213], [-61.79848959680653, -14.139825643180103], [-61.816455902488926, -14.139825643180103], [-61.816455902488926, -14.1488087960213]]]}, 'id': '+13146+9923', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.79848959680653, -13.888297363626634], [-61.78950644396534, -13.888297363626634], [-61.78950644396534, -13.879314210785438], [-61.79848959680653, -13.879314210785438], [-61.79848959680653, -13.888297363626634]]]}, 'id': '+13147+9894', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.79848959680653, -13.906263669309027], [-61.78950644396534, -13.906263669309027], [-61.78950644396534, -13.89728051646783], [-61.79848959680653, -13.89728051646783], [-61.79848959680653, -13.906263669309027]]]}, 'id': '+13147+9896', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.80747274964773, -14.130842490338907], [-61.78950644396534, -14.130842490338907], [-61.78950644396534, -14.12185933749771], [-61.80747274964773, -14.12185933749771], [-61.80747274964773, -14.112876184656514], [-61.79848959680653, -14.112876184656514], [-61.79848959680653, -14.103893031815318], [-61.80747274964773, -14.103893031815318], [-61.80747274964773, -14.112876184656514], [-61.816455902488926, -14.112876184656514], [-61.816455902488926, -14.12185933749771], [-61.82543905533012, -14.12185933749771], [-61.82543905533012, -14.130842490338907], [-61.816455902488926, -14.130842490338907], [-61.816455902488926, -14.12185933749771], [-61.80747274964773, -14.12185933749771], [-61.80747274964773, -14.130842490338907]]]}, 'id': '+13147+9921', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.79848959680653, -14.463219145463128], [-61.78950644396534, -14.463219145463128], [-61.78950644396534, -14.454235992621932], [-61.79848959680653, -14.454235992621932], [-61.79848959680653, -14.445252839780736], [-61.816455902488926, -14.445252839780736], [-61.816455902488926, -14.454235992621932], [-61.79848959680653, -14.454235992621932], [-61.79848959680653, -14.463219145463128]]]}, 'id': '+13147+9958', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.79848959680653, -13.67270169543795], [-61.78052329112414, -13.67270169543795], [-61.78052329112414, -13.654735389755558], [-61.771540138282944, -13.654735389755558], [-61.771540138282944, -13.663718542596754], [-61.76255698544175, -13.663718542596754], [-61.76255698544175, -13.654735389755558], [-61.75357383260055, -13.654735389755558], [-61.75357383260055, -13.645752236914362], [-61.76255698544175, -13.645752236914362], [-61.76255698544175, -13.627785931231983], [-61.771540138282944, -13.627785931231983], [-61.771540138282944, -13.63676908407318], [-61.79848959680653, -13.63676908407318], [-61.79848959680653, -13.654735389755558], [-61.80747274964773, -13.654735389755558], [-61.80747274964773, -13.663718542596754], [-61.79848959680653, -13.663718542596754], [-61.79848959680653, -13.67270169543795]], [[-61.78052329112414, -13.654735389755558], [-61.78052329112414, -13.645752236914362], [-61.78950644396534, -13.645752236914362], [-61.78950644396534, -13.654735389755558], [-61.78052329112414, -13.654735389755558]], [[-61.76255698544175, -13.654735389755558], [-61.76255698544175, -13.645752236914362], [-61.771540138282944, -13.645752236914362], [-61.771540138282944, -13.654735389755558], [-61.76255698544175, -13.654735389755558]]]}, 'id': '+13148+9870', 'properties': {'count': 14, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.78950644396534, -14.05897726760935], [-61.78052329112414, -14.05897726760935], [-61.78052329112414, -14.049994114768154], [-61.78950644396534, -14.049994114768154], [-61.78950644396534, -14.05897726760935]]]}, 'id': '+13148+9913', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.78950644396534, -14.436269686939553], [-61.78052329112414, -14.436269686939553], [-61.78052329112414, -14.427286534098357], [-61.78950644396534, -14.427286534098357], [-61.78950644396534, -14.436269686939553]]]}, 'id': '+13148+9955', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.78950644396534, -13.780499529532293], [-61.771540138282944, -13.780499529532293], [-61.771540138282944, -13.7625332238499], [-61.78950644396534, -13.7625332238499], [-61.78950644396534, -13.753550071008718], [-61.78052329112414, -13.753550071008718], [-61.78052329112414, -13.744566918167521], [-61.80747274964773, -13.744566918167521], [-61.80747274964773, -13.735583765326325], [-61.78950644396534, -13.735583765326325], [-61.78950644396534, -13.726600612485129], [-61.82543905533012, -13.726600612485129], [-61.82543905533012, -13.744566918167521], [-61.816455902488926, -13.744566918167521], [-61.816455902488926, -13.753550071008718], [-61.80747274964773, -13.753550071008718], [-61.80747274964773, -13.7625332238499], [-61.79848959680653, -13.7625332238499], [-61.79848959680653, -13.771516376691096], [-61.78950644396534, -13.771516376691096], [-61.78950644396534, -13.780499529532293]]]}, 'id': '+13149+9882', 'properties': {'count': 17, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.771540138282944, -13.753550071008718], [-61.76255698544175, -13.753550071008718], [-61.76255698544175, -13.735583765326325], [-61.771540138282944, -13.735583765326325], [-61.771540138282944, -13.753550071008718]]]}, 'id': '+13150+9879', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.771540138282944, -14.436269686939553], [-61.76255698544175, -14.436269686939553], [-61.76255698544175, -14.427286534098357], [-61.771540138282944, -14.427286534098357], [-61.771540138282944, -14.436269686939553]]]}, 'id': '+13150+9955', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.771540138282944, -14.463219145463128], [-61.76255698544175, -14.463219145463128], [-61.76255698544175, -14.454235992621932], [-61.75357383260055, -14.454235992621932], [-61.75357383260055, -14.445252839780736], [-61.744590679759355, -14.445252839780736], [-61.744590679759355, -14.454235992621932], [-61.73560752691816, -14.454235992621932], [-61.73560752691816, -14.436269686939553], [-61.72662437407698, -14.436269686939553], [-61.72662437407698, -14.445252839780736], [-61.71764122123578, -14.445252839780736], [-61.71764122123578, -14.436269686939553], [-61.708658068394584, -14.436269686939553], [-61.708658068394584, -14.427286534098357], [-61.744590679759355, -14.427286534098357], [-61.744590679759355, -14.436269686939553], [-61.75357383260055, -14.436269686939553], [-61.75357383260055, -14.445252839780736], [-61.76255698544175, -14.445252839780736], [-61.76255698544175, -14.454235992621932], [-61.771540138282944, -14.454235992621932], [-61.771540138282944, -14.445252839780736], [-61.78052329112414, -14.445252839780736], [-61.78052329112414, -14.454235992621932], [-61.771540138282944, -14.454235992621932], [-61.771540138282944, -14.463219145463128]]]}, 'id': '+13150+9958', 'properties': {'count': 11, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.76255698544175, -13.771516376691096], [-61.75357383260055, -13.771516376691096], [-61.75357383260055, -13.7625332238499], [-61.76255698544175, -13.7625332238499], [-61.76255698544175, -13.771516376691096]]]}, 'id': '+13151+9881', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.771540138282944, -13.807448988055882], [-61.75357383260055, -13.807448988055882], [-61.75357383260055, -13.798465835214685], [-61.76255698544175, -13.798465835214685], [-61.76255698544175, -13.789482682373489], [-61.771540138282944, -13.789482682373489], [-61.771540138282944, -13.807448988055882]]]}, 'id': '+13151+9885', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.75357383260055, -13.618802778390787], [-61.744590679759355, -13.618802778390787], [-61.744590679759355, -13.60981962554959], [-61.75357383260055, -13.60981962554959], [-61.75357383260055, -13.618802778390787]]]}, 'id': '+13152+9864', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.75357383260055, -13.627785931231983], [-61.744590679759355, -13.627785931231983], [-61.744590679759355, -13.618802778390787], [-61.75357383260055, -13.618802778390787], [-61.75357383260055, -13.627785931231983]]]}, 'id': '+13152+9865', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.76255698544175, -13.67270169543795], [-61.744590679759355, -13.67270169543795], [-61.744590679759355, -13.654735389755558], [-61.73560752691816, -13.654735389755558], [-61.73560752691816, -13.645752236914362], [-61.744590679759355, -13.645752236914362], [-61.744590679759355, -13.63676908407318], [-61.75357383260055, -13.63676908407318], [-61.75357383260055, -13.645752236914362], [-61.744590679759355, -13.645752236914362], [-61.744590679759355, -13.654735389755558], [-61.75357383260055, -13.654735389755558], [-61.75357383260055, -13.663718542596754], [-61.76255698544175, -13.663718542596754], [-61.76255698544175, -13.67270169543795]]]}, 'id': '+13152+9870', 'properties': {'count': 5, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.75357383260055, -14.05897726760935], [-61.744590679759355, -14.05897726760935], [-61.744590679759355, -14.049994114768154], [-61.75357383260055, -14.049994114768154], [-61.75357383260055, -14.05897726760935]]]}, 'id': '+13152+9913', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.75357383260055, -14.08592672613294], [-61.744590679759355, -14.08592672613294], [-61.744590679759355, -14.076943573291743], [-61.75357383260055, -14.076943573291743], [-61.75357383260055, -14.08592672613294]]]}, 'id': '+13152+9916', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.744590679759355, -13.645752236914362], [-61.73560752691816, -13.645752236914362], [-61.73560752691816, -13.63676908407318], [-61.744590679759355, -13.63676908407318], [-61.744590679759355, -13.627785931231983], [-61.75357383260055, -13.627785931231983], [-61.75357383260055, -13.63676908407318], [-61.744590679759355, -13.63676908407318], [-61.744590679759355, -13.645752236914362]]]}, 'id': '+13153+9867', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.744590679759355, -13.663718542596754], [-61.73560752691816, -13.663718542596754], [-61.73560752691816, -13.654735389755558], [-61.744590679759355, -13.654735389755558], [-61.744590679759355, -13.663718542596754]]]}, 'id': '+13153+9869', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.744590679759355, -13.798465835214685], [-61.73560752691816, -13.798465835214685], [-61.73560752691816, -13.789482682373489], [-61.744590679759355, -13.789482682373489], [-61.744590679759355, -13.798465835214685]]]}, 'id': '+13153+9884', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.744590679759355, -13.870331057944242], [-61.73560752691816, -13.870331057944242], [-61.73560752691816, -13.852364752261863], [-61.744590679759355, -13.852364752261863], [-61.744590679759355, -13.870331057944242]]]}, 'id': '+13153+9892', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.73560752691816, -13.618802778390787], [-61.72662437407698, -13.618802778390787], [-61.72662437407698, -13.60981962554959], [-61.71764122123578, -13.60981962554959], [-61.71764122123578, -13.600836472708394], [-61.72662437407698, -13.600836472708394], [-61.72662437407698, -13.60981962554959], [-61.73560752691816, -13.60981962554959], [-61.73560752691816, -13.618802778390787]]]}, 'id': '+13154+9864', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.73560752691816, -13.627785931231983], [-61.72662437407698, -13.627785931231983], [-61.72662437407698, -13.618802778390787], [-61.73560752691816, -13.618802778390787], [-61.73560752691816, -13.627785931231983]]]}, 'id': '+13154+9865', 'properties': {'count': 1, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.73560752691816, -13.726600612485129], [-61.72662437407698, -13.726600612485129], [-61.72662437407698, -13.717617459643932], [-61.73560752691816, -13.717617459643932], [-61.73560752691816, -13.69965115396154], [-61.744590679759355, -13.69965115396154], [-61.744590679759355, -13.717617459643932], [-61.73560752691816, -13.717617459643932], [-61.73560752691816, -13.726600612485129]]]}, 'id': '+13154+9876', 'properties': {'count': 3, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.73560752691816, -14.50813490966911], [-61.72662437407698, -14.50813490966911], [-61.72662437407698, -14.499151756827914], [-61.73560752691816, -14.499151756827914], [-61.73560752691816, -14.50813490966911]]]}, 'id': '+13154+9963', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.72662437407698, -13.735583765326325], [-61.71764122123578, -13.735583765326325], [-61.71764122123578, -13.708634306802736], [-61.72662437407698, -13.708634306802736], [-61.72662437407698, -13.69965115396154], [-61.73560752691816, -13.69965115396154], [-61.73560752691816, -13.690668001120343], [-61.744590679759355, -13.690668001120343], [-61.744590679759355, -13.67270169543795], [-61.75357383260055, -13.67270169543795], [-61.75357383260055, -13.69965115396154], [-61.73560752691816, -13.69965115396154], [-61.73560752691816, -13.717617459643932], [-61.72662437407698, -13.717617459643932], [-61.72662437407698, -13.735583765326325]]]}, 'id': '+13155+9877', 'properties': {'count': 9, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.73560752691816, -13.807448988055882], [-61.71764122123578, -13.807448988055882], [-61.71764122123578, -13.780499529532293], [-61.73560752691816, -13.780499529532293], [-61.73560752691816, -13.789482682373489], [-61.72662437407698, -13.789482682373489], [-61.72662437407698, -13.798465835214685], [-61.73560752691816, -13.798465835214685], [-61.73560752691816, -13.807448988055882]]]}, 'id': '+13155+9885', 'properties': {'count': 5, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.72662437407698, -14.481185451145521], [-61.71764122123578, -14.481185451145521], [-61.71764122123578, -14.463219145463128], [-61.72662437407698, -14.463219145463128], [-61.72662437407698, -14.481185451145521]]]}, 'id': '+13155+9960', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.72662437407698, -14.535084368192699], [-61.71764122123578, -14.535084368192699], [-61.71764122123578, -14.517118062510306], [-61.73560752691816, -14.517118062510306], [-61.73560752691816, -14.526101215351503], [-61.72662437407698, -14.526101215351503], [-61.72662437407698, -14.535084368192699]]]}, 'id': '+13155+9966', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.71764122123578, -13.60981962554959], [-61.708658068394584, -13.60981962554959], [-61.708658068394584, -13.600836472708394], [-61.71764122123578, -13.600836472708394], [-61.71764122123578, -13.60981962554959]]]}, 'id': '+13156+9863', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.71764122123578, -13.753550071008718], [-61.708658068394584, -13.753550071008718], [-61.708658068394584, -13.744566918167521], [-61.71764122123578, -13.744566918167521], [-61.71764122123578, -13.753550071008718]]]}, 'id': '+13156+9879', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.72662437407698, -13.89728051646783], [-61.708658068394584, -13.89728051646783], [-61.708658068394584, -13.888297363626634], [-61.69967491555339, -13.888297363626634], [-61.69967491555339, -13.879314210785438], [-61.708658068394584, -13.879314210785438], [-61.708658068394584, -13.870331057944242], [-61.71764122123578, -13.870331057944242], [-61.71764122123578, -13.879314210785438], [-61.72662437407698, -13.879314210785438], [-61.72662437407698, -13.89728051646783]], [[-61.708658068394584, -13.888297363626634], [-61.708658068394584, -13.879314210785438], [-61.71764122123578, -13.879314210785438], [-61.71764122123578, -13.888297363626634], [-61.708658068394584, -13.888297363626634]]]}, 'id': '+13156+9895', 'properties': {'count': 5, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.71764122123578, -14.12185933749771], [-61.708658068394584, -14.12185933749771], [-61.708658068394584, -14.112876184656514], [-61.71764122123578, -14.112876184656514], [-61.71764122123578, -14.12185933749771]]]}, 'id': '+13156+9920', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.71764122123578, -14.499151756827914], [-61.708658068394584, -14.499151756827914], [-61.708658068394584, -14.490168603986717], [-61.71764122123578, -14.490168603986717], [-61.71764122123578, -14.499151756827914]]]}, 'id': '+13156+9962', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.708658068394584, -13.67270169543795], [-61.69967491555339, -13.67270169543795], [-61.69967491555339, -13.663718542596754], [-61.6727254570298, -13.663718542596754], [-61.6727254570298, -13.654735389755558], [-61.681708609870995, -13.654735389755558], [-61.681708609870995, -13.645752236914362], [-61.69967491555339, -13.645752236914362], [-61.69967491555339, -13.63676908407318], [-61.6727254570298, -13.63676908407318], [-61.6727254570298, -13.627785931231983], [-61.654759151347406, -13.627785931231983], [-61.654759151347406, -13.618802778390787], [-61.6727254570298, -13.618802778390787], [-61.6727254570298, -13.600836472708394], [-61.681708609870995, -13.600836472708394], [-61.681708609870995, -13.618802778390787], [-61.708658068394584, -13.618802778390787], [-61.708658068394584, -13.627785931231983], [-61.73560752691816, -13.627785931231983], [-61.73560752691816, -13.63676908407318], [-61.71764122123578, -13.63676908407318], [-61.71764122123578, -13.645752236914362], [-61.72662437407698, -13.645752236914362], [-61.72662437407698, -13.663718542596754], [-61.708658068394584, -13.663718542596754], [-61.708658068394584, -13.67270169543795]], [[-61.6727254570298, -13.627785931231983], [-61.6727254570298, -13.618802778390787], [-61.681708609870995, -13.618802778390787], [-61.681708609870995, -13.627785931231983], [-61.6727254570298, -13.627785931231983]], [[-61.708658068394584, -13.654735389755558], [-61.708658068394584, -13.645752236914362], [-61.71764122123578, -13.645752236914362], [-61.71764122123578, -13.654735389755558], [-61.708658068394584, -13.654735389755558]], [[-61.69967491555339, -13.663718542596754], [-61.69967491555339, -13.654735389755558], [-61.708658068394584, -13.654735389755558], [-61.708658068394584, -13.663718542596754], [-61.69967491555339, -13.663718542596754]]]}, 'id': '+13157+9870', 'properties': {'count': 26, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.69967491555339, -16.268832866543377], [-61.69069176271219, -16.268832866543377], [-61.69069176271219, -16.25984971370218], [-61.681708609870995, -16.25984971370218], [-61.681708609870995, -16.250866560860985], [-61.69069176271219, -16.250866560860985], [-61.69069176271219, -16.25984971370218], [-61.69967491555339, -16.25984971370218], [-61.69967491555339, -16.268832866543377]]]}, 'id': '+13158+10159', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.69967491555339, -13.789482682373489], [-61.69069176271219, -13.789482682373489], [-61.69069176271219, -13.780499529532293], [-61.69967491555339, -13.780499529532293], [-61.69967491555339, -13.789482682373489]]]}, 'id': '+13158+9883', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.69967491555339, -13.83439844657947], [-61.69069176271219, -13.83439844657947], [-61.69069176271219, -13.825415293738274], [-61.69967491555339, -13.825415293738274], [-61.69967491555339, -13.816432140897078], [-61.708658068394584, -13.816432140897078], [-61.708658068394584, -13.825415293738274], [-61.71764122123578, -13.825415293738274], [-61.71764122123578, -13.83439844657947], [-61.708658068394584, -13.83439844657947], [-61.708658068394584, -13.825415293738274], [-61.69967491555339, -13.825415293738274], [-61.69967491555339, -13.83439844657947]]]}, 'id': '+13158+9888', 'properties': {'count': 3, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.69967491555339, -13.852364752261863], [-61.69069176271219, -13.852364752261863], [-61.69069176271219, -13.843381599420667], [-61.69967491555339, -13.843381599420667], [-61.69967491555339, -13.852364752261863]]]}, 'id': '+13158+9890', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.69967491555339, -13.870331057944242], [-61.69069176271219, -13.870331057944242], [-61.69069176271219, -13.86134790510306], [-61.69967491555339, -13.86134790510306], [-61.69967491555339, -13.870331057944242]]]}, 'id': '+13158+9892', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.69967491555339, -14.382370769892376], [-61.69069176271219, -14.382370769892376], [-61.69069176271219, -14.37338761705118], [-61.69967491555339, -14.37338761705118], [-61.69967491555339, -14.382370769892376]]]}, 'id': '+13158+9949', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.681708609870995, -13.717617459643932], [-61.6727254570298, -13.717617459643932], [-61.6727254570298, -13.708634306802736], [-61.681708609870995, -13.708634306802736], [-61.681708609870995, -13.717617459643932]]]}, 'id': '+13160+9875', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.69069176271219, -13.735583765326325], [-61.6727254570298, -13.735583765326325], [-61.6727254570298, -13.726600612485129], [-61.6637423041886, -13.726600612485129], [-61.6637423041886, -13.717617459643932], [-61.6727254570298, -13.717617459643932], [-61.6727254570298, -13.726600612485129], [-61.69069176271219, -13.726600612485129], [-61.69069176271219, -13.735583765326325]]]}, 'id': '+13160+9877', 'properties': {'count': 3, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.681708609870995, -13.744566918167521], [-61.6727254570298, -13.744566918167521], [-61.6727254570298, -13.735583765326325], [-61.681708609870995, -13.735583765326325], [-61.681708609870995, -13.744566918167521]]]}, 'id': '+13160+9878', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.681708609870995, -13.807448988055882], [-61.6727254570298, -13.807448988055882], [-61.6727254570298, -13.789482682373489], [-61.681708609870995, -13.789482682373489], [-61.681708609870995, -13.807448988055882]]]}, 'id': '+13160+9885', 'properties': {'count': 2, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.69069176271219, -13.83439844657947], [-61.6727254570298, -13.83439844657947], [-61.6727254570298, -13.825415293738274], [-61.681708609870995, -13.825415293738274], [-61.681708609870995, -13.780499529532293], [-61.69069176271219, -13.780499529532293], [-61.69069176271219, -13.771516376691096], [-61.681708609870995, -13.771516376691096], [-61.681708609870995, -13.753550071008718], [-61.6727254570298, -13.753550071008718], [-61.6727254570298, -13.744566918167521], [-61.69069176271219, -13.744566918167521], [-61.69069176271219, -13.7625332238499], [-61.69967491555339, -13.7625332238499], [-61.69967491555339, -13.780499529532293], [-61.69069176271219, -13.780499529532293], [-61.69069176271219, -13.83439844657947]]]}, 'id': '+13160+9888', 'properties': {'count': 13, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.681708609870995, -13.870331057944242], [-61.6727254570298, -13.870331057944242], [-61.6727254570298, -13.852364752261863], [-61.6637423041886, -13.852364752261863], [-61.6637423041886, -13.843381599420667], [-61.681708609870995, -13.843381599420667], [-61.681708609870995, -13.852364752261863], [-61.69069176271219, -13.852364752261863], [-61.69069176271219, -13.86134790510306], [-61.681708609870995, -13.86134790510306], [-61.681708609870995, -13.870331057944242]]]}, 'id': '+13160+9892', 'properties': {'count': 5, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.681708609870995, -13.906263669309027], [-61.6727254570298, -13.906263669309027], [-61.6727254570298, -13.89728051646783], [-61.681708609870995, -13.89728051646783], [-61.681708609870995, -13.906263669309027]]]}, 'id': '+13160+9896', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.69069176271219, -14.094909878974136], [-61.6727254570298, -14.094909878974136], [-61.6727254570298, -14.08592672613294], [-61.69069176271219, -14.08592672613294], [-61.69069176271219, -14.094909878974136]]]}, 'id': '+13160+9917', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.681708609870995, -14.220674018750856], [-61.6727254570298, -14.220674018750856], [-61.6727254570298, -14.211690865909674], [-61.681708609870995, -14.211690865909674], [-61.681708609870995, -14.220674018750856]]]}, 'id': '+13160+9931', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.681708609870995, -14.57101697955747], [-61.6727254570298, -14.57101697955747], [-61.6727254570298, -14.544067521033895], [-61.6637423041886, -14.544067521033895], [-61.6637423041886, -14.535084368192699], [-61.654759151347406, -14.535084368192699], [-61.654759151347406, -14.553050673875092], [-61.6637423041886, -14.553050673875092], [-61.6637423041886, -14.562033826716274], [-61.654759151347406, -14.562033826716274], [-61.654759151347406, -14.553050673875092], [-61.64577599850621, -14.553050673875092], [-61.64577599850621, -14.562033826716274], [-61.63679284566501, -14.562033826716274], [-61.63679284566501, -14.553050673875092], [-61.64577599850621, -14.553050673875092], [-61.64577599850621, -14.544067521033895], [-61.62780969282382, -14.544067521033895], [-61.62780969282382, -14.553050673875092], [-61.60984338714144, -14.553050673875092], [-61.60984338714144, -14.562033826716274], [-61.53797816441187, -14.562033826716274], [-61.53797816441187, -14.553050673875092], [-61.52899501157067, -14.553050673875092], [-61.52899501157067, -14.562033826716274], [-61.520011858729475, -14.562033826716274], [-61.520011858729475, -14.553050673875092], [-61.51102870588828, -14.553050673875092], [-61.51102870588828, -14.562033826716274], [-61.47509609452351, -14.562033826716274], [-61.47509609452351, -14.544067521033895], [-61.5020455530471, -14.544067521033895], [-61.5020455530471, -14.535084368192699], [-61.4930624002059, -14.535084368192699], [-61.4930624002059, -14.526101215351503], [-61.5020455530471, -14.526101215351503], [-61.5020455530471, -14.517118062510306], [-61.51102870588828, -14.517118062510306], [-61.51102870588828, -14.499151756827914], [-61.5020455530471, -14.499151756827914], [-61.5020455530471, -14.490168603986717], [-61.4930624002059, -14.490168603986717], [-61.4930624002059, -14.499151756827914], [-61.484079247364704, -14.499151756827914], [-61.484079247364704, -14.490168603986717], [-61.4930624002059, -14.490168603986717], [-61.4930624002059, -14.481185451145521], [-61.520011858729475, -14.481185451145521], [-61.520011858729475, -14.490168603986717], [-61.51102870588828, -14.490168603986717], [-61.51102870588828, -14.499151756827914], [-61.52899501157067, -14.499151756827914], [-61.52899501157067, -14.481185451145521], [-61.53797816441187, -14.481185451145521], [-61.53797816441187, -14.490168603986717], [-61.546961317253064, -14.490168603986717], [-61.546961317253064, -14.472202298304325], [-61.55594447009426, -14.472202298304325], [-61.55594447009426, -14.490168603986717], [-61.56492762293546, -14.490168603986717], [-61.56492762293546, -14.499151756827914], [-61.57391077577665, -14.499151756827914], [-61.57391077577665, -14.50813490966911], [-61.56492762293546, -14.50813490966911], [-61.56492762293546, -14.499151756827914], [-61.55594447009426, -14.499151756827914], [-61.55594447009426, -14.490168603986717], [-61.546961317253064, -14.490168603986717], [-61.546961317253064, -14.517118062510306], [-61.56492762293546, -14.517118062510306], [-61.56492762293546, -14.526101215351503], [-61.57391077577665, -14.526101215351503], [-61.57391077577665, -14.535084368192699], [-61.58289392861785, -14.535084368192699], [-61.58289392861785, -14.517118062510306], [-61.591877081459046, -14.517118062510306], [-61.591877081459046, -14.526101215351503], [-61.60086023430024, -14.526101215351503], [-61.60086023430024, -14.499151756827914], [-61.60984338714144, -14.499151756827914], [-61.60984338714144, -14.490168603986717], [-61.60086023430024, -14.490168603986717], [-61.60086023430024, -14.481185451145521], [-61.60984338714144, -14.481185451145521], [-61.60984338714144, -14.490168603986717], [-61.61882653998262, -14.490168603986717], [-61.61882653998262, -14.499151756827914], [-61.62780969282382, -14.499151756827914], [-61.62780969282382, -14.490168603986717], [-61.63679284566501, -14.490168603986717], [-61.63679284566501, -14.499151756827914], [-61.64577599850621, -14.499151756827914], [-61.64577599850621, -14.50813490966911], [-61.63679284566501, -14.50813490966911], [-61.63679284566501, -14.499151756827914], [-61.62780969282382, -14.499151756827914], [-61.62780969282382, -14.517118062510306], [-61.60984338714144, -14.517118062510306], [-61.60984338714144, -14.544067521033895], [-61.62780969282382, -14.544067521033895], [-61.62780969282382, -14.526101215351503], [-61.63679284566501, -14.526101215351503], [-61.63679284566501, -14.517118062510306], [-61.64577599850621, -14.517118062510306], [-61.64577599850621, -14.526101215351503], [-61.6637423041886, -14.526101215351503], [-61.6637423041886, -14.499151756827914], [-61.654759151347406, -14.499151756827914], [-61.654759151347406, -14.490168603986717], [-61.681708609870995, -14.490168603986717], [-61.681708609870995, -14.499151756827914], [-61.6727254570298, -14.499151756827914], [-61.6727254570298, -14.517118062510306], [-61.69967491555339, -14.517118062510306], [-61.69967491555339, -14.535084368192699], [-61.69069176271219, -14.535084368192699], [-61.69069176271219, -14.553050673875092], [-61.681708609870995, -14.553050673875092], [-61.681708609870995, -14.57101697955747]], [[-61.56492762293546, -14.544067521033895], [-61.56492762293546, -14.535084368192699], [-61.57391077577665, -14.535084368192699], [-61.57391077577665, -14.544067521033895], [-61.56492762293546, -14.544067521033895]], [[-61.591877081459046, -14.553050673875092], [-61.591877081459046, -14.535084368192699], [-61.60086023430024, -14.535084368192699], [-61.60086023430024, -14.553050673875092], [-61.591877081459046, -14.553050673875092]], [[-61.520011858729475, -14.553050673875092], [-61.520011858729475, -14.544067521033895], [-61.51102870588828, -14.544067521033895], [-61.51102870588828, -14.517118062510306], [-61.520011858729475, -14.517118062510306], [-61.520011858729475, -14.535084368192699], [-61.52899501157067, -14.535084368192699], [-61.52899501157067, -14.517118062510306], [-61.520011858729475, -14.517118062510306], [-61.520011858729475, -14.50813490966911], [-61.52899501157067, -14.50813490966911], [-61.52899501157067, -14.499151756827914], [-61.53797816441187, -14.499151756827914], [-61.53797816441187, -14.535084368192699], [-61.546961317253064, -14.535084368192699], [-61.546961317253064, -14.544067521033895], [-61.52899501157067, -14.544067521033895], [-61.52899501157067, -14.553050673875092], [-61.520011858729475, -14.553050673875092]]]}, 'id': '+13160+9970', 'properties': {'count': 109, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.6727254570298, -13.645752236914362], [-61.6637423041886, -13.645752236914362], [-61.6637423041886, -13.63676908407318], [-61.6727254570298, -13.63676908407318], [-61.6727254570298, -13.645752236914362]]]}, 'id': '+13161+9867', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.6727254570298, -13.67270169543795], [-61.6637423041886, -13.67270169543795], [-61.6637423041886, -13.654735389755558], [-61.6727254570298, -13.654735389755558], [-61.6727254570298, -13.67270169543795]]]}, 'id': '+13161+9870', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.6727254570298, -13.7625332238499], [-61.6637423041886, -13.7625332238499], [-61.6637423041886, -13.744566918167521], [-61.6727254570298, -13.744566918167521], [-61.6727254570298, -13.7625332238499]]]}, 'id': '+13161+9880', 'properties': {'count': 2, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.6727254570298, -13.807448988055882], [-61.6637423041886, -13.807448988055882], [-61.6637423041886, -13.789482682373489], [-61.654759151347406, -13.789482682373489], [-61.654759151347406, -13.780499529532293], [-61.6637423041886, -13.780499529532293], [-61.6637423041886, -13.789482682373489], [-61.6727254570298, -13.789482682373489], [-61.6727254570298, -13.807448988055882]]]}, 'id': '+13161+9885', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.681708609870995, -13.843381599420667], [-61.6637423041886, -13.843381599420667], [-61.6637423041886, -13.825415293738274], [-61.6727254570298, -13.825415293738274], [-61.6727254570298, -13.83439844657947], [-61.681708609870995, -13.83439844657947], [-61.681708609870995, -13.843381599420667]]]}, 'id': '+13161+9889', 'properties': {'count': 3, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.681708609870995, -13.888297363626634], [-61.6637423041886, -13.888297363626634], [-61.6637423041886, -13.870331057944242], [-61.6727254570298, -13.870331057944242], [-61.6727254570298, -13.879314210785438], [-61.681708609870995, -13.879314210785438], [-61.681708609870995, -13.888297363626634]]]}, 'id': '+13161+9894', 'properties': {'count': 3, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.681708609870995, -14.175758254544888], [-61.6637423041886, -14.175758254544888], [-61.6637423041886, -14.157791948862496], [-61.6727254570298, -14.157791948862496], [-61.6727254570298, -14.1488087960213], [-61.681708609870995, -14.1488087960213], [-61.681708609870995, -14.157791948862496], [-61.69069176271219, -14.157791948862496], [-61.69069176271219, -14.166775101703692], [-61.681708609870995, -14.166775101703692], [-61.681708609870995, -14.175758254544888]], [[-61.6727254570298, -14.166775101703692], [-61.6727254570298, -14.157791948862496], [-61.681708609870995, -14.157791948862496], [-61.681708609870995, -14.166775101703692], [-61.6727254570298, -14.166775101703692]]]}, 'id': '+13161+9926', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.6727254570298, -14.400337075574768], [-61.6637423041886, -14.400337075574768], [-61.6637423041886, -14.364404464209983], [-61.6727254570298, -14.364404464209983], [-61.6727254570298, -14.382370769892376], [-61.681708609870995, -14.382370769892376], [-61.681708609870995, -14.391353922733572], [-61.6727254570298, -14.391353922733572], [-61.6727254570298, -14.400337075574768]]]}, 'id': '+13161+9951', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.6637423041886, -13.771516376691096], [-61.654759151347406, -13.771516376691096], [-61.654759151347406, -13.7625332238499], [-61.6637423041886, -13.7625332238499], [-61.6637423041886, -13.771516376691096]]]}, 'id': '+13162+9881', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.6727254570298, -13.825415293738274], [-61.654759151347406, -13.825415293738274], [-61.654759151347406, -13.816432140897078], [-61.6727254570298, -13.816432140897078], [-61.6727254570298, -13.825415293738274]]]}, 'id': '+13162+9887', 'properties': {'count': 2, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.6637423041886, -13.83439844657947], [-61.654759151347406, -13.83439844657947], [-61.654759151347406, -13.825415293738274], [-61.6637423041886, -13.825415293738274], [-61.6637423041886, -13.83439844657947]]]}, 'id': '+13162+9888', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.6637423041886, -14.211690865909674], [-61.654759151347406, -14.211690865909674], [-61.654759151347406, -14.193724560227281], [-61.6637423041886, -14.193724560227281], [-61.6637423041886, -14.211690865909674]]]}, 'id': '+13162+9930', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.6727254570298, -14.624915896604648], [-61.654759151347406, -14.624915896604648], [-61.654759151347406, -14.606949590922255], [-61.6637423041886, -14.606949590922255], [-61.6637423041886, -14.615932743763452], [-61.6727254570298, -14.615932743763452], [-61.6727254570298, -14.624915896604648]]]}, 'id': '+13162+9976', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.654759151347406, -16.25984971370218], [-61.64577599850621, -16.25984971370218], [-61.64577599850621, -16.250866560860985], [-61.60984338714144, -16.250866560860985], [-61.60984338714144, -16.196967643813807], [-61.61882653998262, -16.196967643813807], [-61.61882653998262, -16.18798449097261], [-61.62780969282382, -16.18798449097261], [-61.62780969282382, -16.179001338131414], [-61.61882653998262, -16.179001338131414], [-61.61882653998262, -16.15205187960784], [-61.62780969282382, -16.15205187960784], [-61.62780969282382, -16.12510242108425], [-61.63679284566501, -16.12510242108425], [-61.63679284566501, -16.107136115401858], [-61.64577599850621, -16.107136115401858], [-61.64577599850621, -16.116119268243054], [-61.654759151347406, -16.116119268243054], [-61.654759151347406, -16.107136115401858], [-61.6637423041886, -16.107136115401858], [-61.6637423041886, -16.09815296256066], [-61.6727254570298, -16.09815296256066], [-61.6727254570298, -16.089169809719465], [-61.654759151347406, -16.089169809719465], [-61.654759151347406, -16.09815296256066], [-61.63679284566501, -16.09815296256066], [-61.63679284566501, -16.089169809719465], [-61.61882653998262, -16.089169809719465], [-61.61882653998262, -16.09815296256066], [-61.60086023430024, -16.09815296256066], [-61.60086023430024, -16.089169809719465], [-61.60984338714144, -16.089169809719465], [-61.60984338714144, -16.08018665687827], [-61.61882653998262, -16.08018665687827], [-61.61882653998262, -16.071203504037072], [-61.62780969282382, -16.071203504037072], [-61.62780969282382, -16.062220351195876], [-61.60984338714144, -16.062220351195876], [-61.60984338714144, -16.071203504037072], [-61.60086023430024, -16.071203504037072], [-61.60086023430024, -16.062220351195876], [-61.60984338714144, -16.062220351195876], [-61.60984338714144, -16.05323719835468], [-61.62780969282382, -16.05323719835468], [-61.62780969282382, -16.044254045513483], [-61.60086023430024, -16.044254045513483], [-61.60086023430024, -16.0352708926723], [-61.591877081459046, -16.0352708926723], [-61.591877081459046, -16.044254045513483], [-61.58289392861785, -16.044254045513483], [-61.58289392861785, -16.05323719835468], [-61.591877081459046, -16.05323719835468], [-61.591877081459046, -16.062220351195876], [-61.58289392861785, -16.062220351195876], [-61.58289392861785, -16.05323719835468], [-61.55594447009426, -16.05323719835468], [-61.55594447009426, -16.062220351195876], [-61.56492762293546, -16.062220351195876], [-61.56492762293546, -16.071203504037072], [-61.55594447009426, -16.071203504037072], [-61.55594447009426, -16.062220351195876], [-61.546961317253064, -16.062220351195876], [-61.546961317253064, -16.071203504037072], [-61.53797816441187, -16.071203504037072], [-61.53797816441187, -16.08018665687827], [-61.520011858729475, -16.08018665687827], [-61.520011858729475, -16.089169809719465], [-61.51102870588828, -16.089169809719465], [-61.51102870588828, -16.08018665687827], [-61.5020455530471, -16.08018665687827], [-61.5020455530471, -16.071203504037072], [-61.51102870588828, -16.071203504037072], [-61.51102870588828, -16.062220351195876], [-61.4930624002059, -16.062220351195876], [-61.4930624002059, -16.08018665687827], [-61.484079247364704, -16.08018665687827], [-61.484079247364704, -16.089169809719465], [-61.47509609452351, -16.089169809719465], [-61.47509609452351, -16.09815296256066], [-61.484079247364704, -16.09815296256066], [-61.484079247364704, -16.107136115401858], [-61.47509609452351, -16.107136115401858], [-61.47509609452351, -16.09815296256066], [-61.46611294168231, -16.09815296256066], [-61.46611294168231, -16.089169809719465], [-61.457129788841115, -16.089169809719465], [-61.457129788841115, -16.08018665687827], [-61.44814663599992, -16.08018665687827], [-61.44814663599992, -16.071203504037072], [-61.46611294168231, -16.071203504037072], [-61.46611294168231, -16.08018665687827], [-61.47509609452351, -16.08018665687827], [-61.47509609452351, -16.071203504037072], [-61.484079247364704, -16.071203504037072], [-61.484079247364704, -16.05323719835468], [-61.47509609452351, -16.05323719835468], [-61.47509609452351, -16.062220351195876], [-61.457129788841115, -16.062220351195876], [-61.457129788841115, -16.05323719835468], [-61.430180330317526, -16.05323719835468], [-61.430180330317526, -16.044254045513483], [-61.46611294168231, -16.044254045513483], [-61.46611294168231, -16.0352708926723], [-61.44814663599992, -16.0352708926723], [-61.44814663599992, -16.026287739831105], [-61.430180330317526, -16.026287739831105], [-61.430180330317526, -16.0352708926723], [-61.42119717747633, -16.0352708926723], [-61.42119717747633, -16.05323719835468], [-61.412214024635134, -16.05323719835468], [-61.412214024635134, -16.062220351195876], [-61.42119717747633, -16.062220351195876], [-61.42119717747633, -16.071203504037072], [-61.430180330317526, -16.071203504037072], [-61.430180330317526, -16.062220351195876], [-61.43916348315872, -16.062220351195876], [-61.43916348315872, -16.071203504037072], [-61.430180330317526, -16.071203504037072], [-61.430180330317526, -16.089169809719465], [-61.43916348315872, -16.089169809719465], [-61.43916348315872, -16.09815296256066], [-61.430180330317526, -16.09815296256066], [-61.430180330317526, -16.089169809719465], [-61.42119717747633, -16.089169809719465], [-61.42119717747633, -16.08018665687827], [-61.412214024635134, -16.08018665687827], [-61.412214024635134, -16.071203504037072], [-61.38526456611156, -16.071203504037072], [-61.38526456611156, -16.05323719835468], [-61.39424771895274, -16.05323719835468], [-61.39424771895274, -16.01730458698991], [-61.40323087179394, -16.01730458698991], [-61.40323087179394, -16.008321434148712], [-61.42119717747633, -16.008321434148712], [-61.42119717747633, -15.999338281307516], [-61.430180330317526, -15.999338281307516], [-61.430180330317526, -16.008321434148712], [-61.44814663599992, -16.008321434148712], [-61.44814663599992, -16.01730458698991], [-61.46611294168231, -16.01730458698991], [-61.46611294168231, -16.026287739831105], [-61.47509609452351, -16.026287739831105], [-61.47509609452351, -16.0352708926723], [-61.484079247364704, -16.0352708926723], [-61.484079247364704, -16.044254045513483], [-61.5020455530471, -16.044254045513483], [-61.5020455530471, -16.05323719835468], [-61.51102870588828, -16.05323719835468], [-61.51102870588828, -16.062220351195876], [-61.520011858729475, -16.062220351195876], [-61.520011858729475, -16.071203504037072], [-61.53797816441187, -16.071203504037072], [-61.53797816441187, -16.05323719835468], [-61.52899501157067, -16.05323719835468], [-61.52899501157067, -16.0352708926723], [-61.520011858729475, -16.0352708926723], [-61.520011858729475, -16.026287739831105], [-61.53797816441187, -16.026287739831105], [-61.53797816441187, -16.01730458698991], [-61.52899501157067, -16.01730458698991], [-61.52899501157067, -16.008321434148712], [-61.53797816441187, -16.008321434148712], [-61.53797816441187, -15.972388822783927], [-61.546961317253064, -15.972388822783927], [-61.546961317253064, -15.945439364260338], [-61.52899501157067, -15.945439364260338], [-61.52899501157067, -15.936456211419141], [-61.520011858729475, -15.936456211419141], [-61.520011858729475, -15.92747305857796], [-61.52899501157067, -15.92747305857796], [-61.52899501157067, -15.936456211419141], [-61.546961317253064, -15.936456211419141], [-61.546961317253064, -15.92747305857796], [-61.53797816441187, -15.92747305857796], [-61.53797816441187, -15.909506752895567], [-61.55594447009426, -15.909506752895567], [-61.55594447009426, -15.918489905736763], [-61.546961317253064, -15.918489905736763], [-61.546961317253064, -15.92747305857796], [-61.55594447009426, -15.92747305857796], [-61.55594447009426, -15.954422517101534], [-61.57391077577665, -15.954422517101534], [-61.57391077577665, -15.96340566994273], [-61.56492762293546, -15.96340566994273], [-61.56492762293546, -15.981371975625123], [-61.57391077577665, -15.981371975625123], [-61.57391077577665, -15.972388822783927], [-61.591877081459046, -15.972388822783927], [-61.591877081459046, -15.96340566994273], [-61.58289392861785, -15.96340566994273], [-61.58289392861785, -15.936456211419141], [-61.60086023430024, -15.936456211419141], [-61.60086023430024, -15.945439364260338], [-61.591877081459046, -15.945439364260338], [-61.591877081459046, -15.954422517101534], [-61.60086023430024, -15.954422517101534], [-61.60086023430024, -15.972388822783927], [-61.591877081459046, -15.972388822783927], [-61.591877081459046, -15.999338281307516], [-61.62780969282382, -15.999338281307516], [-61.62780969282382, -15.981371975625123], [-61.61882653998262, -15.981371975625123], [-61.61882653998262, -15.99035512846632], [-61.60984338714144, -15.99035512846632], [-61.60984338714144, -15.96340566994273], [-61.63679284566501, -15.96340566994273], [-61.63679284566501, -15.954422517101534], [-61.64577599850621, -15.954422517101534], [-61.64577599850621, -15.972388822783927], [-61.654759151347406, -15.972388822783927], [-61.654759151347406, -15.981371975625123], [-61.6637423041886, -15.981371975625123], [-61.6637423041886, -16.008321434148712], [-61.6727254570298, -16.008321434148712], [-61.6727254570298, -16.044254045513483], [-61.681708609870995, -16.044254045513483], [-61.681708609870995, -16.062220351195876], [-61.6637423041886, -16.062220351195876], [-61.6637423041886, -16.05323719835468], [-61.64577599850621, -16.05323719835468], [-61.64577599850621, -16.062220351195876], [-61.654759151347406, -16.062220351195876], [-61.654759151347406, -16.071203504037072], [-61.62780969282382, -16.071203504037072], [-61.62780969282382, -16.08018665687827], [-61.63679284566501, -16.08018665687827], [-61.63679284566501, -16.089169809719465], [-61.64577599850621, -16.089169809719465], [-61.64577599850621, -16.08018665687827], [-61.6637423041886, -16.08018665687827], [-61.6637423041886, -16.071203504037072], [-61.6727254570298, -16.071203504037072], [-61.6727254570298, -16.08018665687827], [-61.681708609870995, -16.08018665687827], [-61.681708609870995, -16.09815296256066], [-61.6727254570298, -16.09815296256066], [-61.6727254570298, -16.107136115401858], [-61.681708609870995, -16.107136115401858], [-61.681708609870995, -16.15205187960784], [-61.6727254570298, -16.15205187960784], [-61.6727254570298, -16.16103503244902], [-61.681708609870995, -16.16103503244902], [-61.681708609870995, -16.170018185290218], [-61.6727254570298, -16.170018185290218], [-61.6727254570298, -16.18798449097261], [-61.6637423041886, -16.18798449097261], [-61.6637423041886, -16.196967643813807], [-61.681708609870995, -16.196967643813807], [-61.681708609870995, -16.24188340801979], [-61.6637423041886, -16.24188340801979], [-61.6637423041886, -16.250866560860985], [-61.6727254570298, -16.250866560860985], [-61.6727254570298, -16.25984971370218], [-61.6637423041886, -16.25984971370218], [-61.6637423041886, -16.250866560860985], [-61.654759151347406, -16.250866560860985], [-61.654759151347406, -16.25984971370218]], [[-61.63679284566501, -15.981371975625123], [-61.63679284566501, -15.972388822783927], [-61.64577599850621, -15.972388822783927], [-61.64577599850621, -15.981371975625123], [-61.63679284566501, -15.981371975625123]], [[-61.58289392861785, -16.008321434148712], [-61.58289392861785, -15.999338281307516], [-61.591877081459046, -15.999338281307516], [-61.591877081459046, -16.008321434148712], [-61.58289392861785, -16.008321434148712]], [[-61.654759151347406, -16.01730458698991], [-61.654759151347406, -16.008321434148712], [-61.6637423041886, -16.008321434148712], [-61.6637423041886, -16.01730458698991], [-61.654759151347406, -16.01730458698991]], [[-61.61882653998262, -16.01730458698991], [-61.61882653998262, -16.008321434148712], [-61.62780969282382, -16.008321434148712], [-61.62780969282382, -16.01730458698991], [-61.61882653998262, -16.01730458698991]], [[-61.53797816441187, -16.01730458698991], [-61.53797816441187, -16.008321434148712], [-61.546961317253064, -16.008321434148712], [-61.546961317253064, -16.01730458698991], [-61.53797816441187, -16.01730458698991]], [[-61.63679284566501, -16.026287739831105], [-61.63679284566501, -16.01730458698991], [-61.654759151347406, -16.01730458698991], [-61.654759151347406, -16.026287739831105], [-61.63679284566501, -16.026287739831105]], [[-61.62780969282382, -16.0352708926723], [-61.62780969282382, -16.026287739831105], [-61.63679284566501, -16.026287739831105], [-61.63679284566501, -16.0352708926723], [-61.62780969282382, -16.0352708926723]], [[-61.60086023430024, -16.0352708926723], [-61.60086023430024, -16.026287739831105], [-61.60984338714144, -16.026287739831105], [-61.60984338714144, -16.0352708926723], [-61.60086023430024, -16.0352708926723]], [[-61.58289392861785, -16.0352708926723], [-61.58289392861785, -16.026287739831105], [-61.591877081459046, -16.026287739831105], [-61.591877081459046, -16.0352708926723], [-61.58289392861785, -16.0352708926723]], [[-61.546961317253064, -16.0352708926723], [-61.546961317253064, -16.01730458698991], [-61.55594447009426, -16.01730458698991], [-61.55594447009426, -16.0352708926723], [-61.546961317253064, -16.0352708926723]], [[-61.654759151347406, -16.044254045513483], [-61.654759151347406, -16.0352708926723], [-61.6637423041886, -16.0352708926723], [-61.6637423041886, -16.044254045513483], [-61.654759151347406, -16.044254045513483]], [[-61.63679284566501, -16.044254045513483], [-61.63679284566501, -16.0352708926723], [-61.64577599850621, -16.0352708926723], [-61.64577599850621, -16.044254045513483], [-61.63679284566501, -16.044254045513483]], [[-61.53797816441187, -16.044254045513483], [-61.53797816441187, -16.0352708926723], [-61.546961317253064, -16.0352708926723], [-61.546961317253064, -16.044254045513483], [-61.53797816441187, -16.044254045513483]], [[-61.40323087179394, -16.026287739831105], [-61.40323087179394, -16.01730458698991], [-61.412214024635134, -16.01730458698991], [-61.412214024635134, -16.026287739831105], [-61.40323087179394, -16.026287739831105]], [[-61.40323087179394, -16.044254045513483], [-61.40323087179394, -16.0352708926723], [-61.412214024635134, -16.0352708926723], [-61.412214024635134, -16.044254045513483], [-61.40323087179394, -16.044254045513483]], [[-61.39424771895274, -16.062220351195876], [-61.39424771895274, -16.05323719835468], [-61.40323087179394, -16.05323719835468], [-61.40323087179394, -16.062220351195876], [-61.39424771895274, -16.062220351195876]], [[-61.654759151347406, -16.12510242108425], [-61.654759151347406, -16.116119268243054], [-61.6637423041886, -16.116119268243054], [-61.6637423041886, -16.12510242108425], [-61.654759151347406, -16.12510242108425]], [[-61.6637423041886, -16.134085573925447], [-61.6637423041886, -16.12510242108425], [-61.6727254570298, -16.12510242108425], [-61.6727254570298, -16.134085573925447], [-61.6637423041886, -16.134085573925447]], [[-61.64577599850621, -16.143068726766643], [-61.64577599850621, -16.134085573925447], [-61.654759151347406, -16.134085573925447], [-61.654759151347406, -16.143068726766643], [-61.64577599850621, -16.143068726766643]], [[-61.63679284566501, -16.170018185290218], [-61.63679284566501, -16.16103503244902], [-61.62780969282382, -16.16103503244902], [-61.62780969282382, -16.15205187960784], [-61.654759151347406, -16.15205187960784], [-61.654759151347406, -16.16103503244902], [-61.64577599850621, -16.16103503244902], [-61.64577599850621, -16.170018185290218], [-61.63679284566501, -16.170018185290218]], [[-61.64577599850621, -16.18798449097261], [-61.64577599850621, -16.170018185290218], [-61.6637423041886, -16.170018185290218], [-61.6637423041886, -16.18798449097261], [-61.64577599850621, -16.18798449097261]], [[-61.63679284566501, -16.196967643813807], [-61.63679284566501, -16.18798449097261], [-61.64577599850621, -16.18798449097261], [-61.64577599850621, -16.196967643813807], [-61.63679284566501, -16.196967643813807]], [[-61.654759151347406, -16.24188340801979], [-61.654759151347406, -16.232900255178592], [-61.64577599850621, -16.232900255178592], [-61.64577599850621, -16.223917102337396], [-61.6637423041886, -16.223917102337396], [-61.6637423041886, -16.24188340801979], [-61.654759151347406, -16.24188340801979]]]}, 'id': '+13163+10158', 'properties': {'count': 316, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.654759151347406, -13.816432140897078], [-61.64577599850621, -13.816432140897078], [-61.64577599850621, -13.807448988055882], [-61.654759151347406, -13.807448988055882], [-61.654759151347406, -13.816432140897078]]]}, 'id': '+13163+9886', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.654759151347406, -13.870331057944242], [-61.64577599850621, -13.870331057944242], [-61.64577599850621, -13.86134790510306], [-61.654759151347406, -13.86134790510306], [-61.654759151347406, -13.870331057944242]]]}, 'id': '+13163+9892', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.654759151347406, -13.888297363626634], [-61.64577599850621, -13.888297363626634], [-61.64577599850621, -13.879314210785438], [-61.654759151347406, -13.879314210785438], [-61.654759151347406, -13.888297363626634]]]}, 'id': '+13163+9894', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.654759151347406, -14.238640324433248], [-61.64577599850621, -14.238640324433248], [-61.64577599850621, -14.229657171592052], [-61.654759151347406, -14.229657171592052], [-61.654759151347406, -14.238640324433248]]]}, 'id': '+13163+9933', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.654759151347406, -14.37338761705118], [-61.64577599850621, -14.37338761705118], [-61.64577599850621, -14.364404464209983], [-61.654759151347406, -14.364404464209983], [-61.654759151347406, -14.37338761705118]]]}, 'id': '+13163+9948', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.654759151347406, -14.651865355128237], [-61.64577599850621, -14.651865355128237], [-61.64577599850621, -14.64288220228704], [-61.63679284566501, -14.64288220228704], [-61.63679284566501, -14.633899049445844], [-61.64577599850621, -14.633899049445844], [-61.64577599850621, -14.64288220228704], [-61.654759151347406, -14.64288220228704], [-61.654759151347406, -14.651865355128237]]]}, 'id': '+13163+9979', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.64577599850621, -13.69965115396154], [-61.63679284566501, -13.69965115396154], [-61.63679284566501, -13.681684848279147], [-61.61882653998262, -13.681684848279147], [-61.61882653998262, -13.663718542596754], [-61.63679284566501, -13.663718542596754], [-61.63679284566501, -13.681684848279147], [-61.64577599850621, -13.681684848279147], [-61.64577599850621, -13.69965115396154]]]}, 'id': '+13164+9873', 'properties': {'count': 6, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.64577599850621, -13.735583765326325], [-61.63679284566501, -13.735583765326325], [-61.63679284566501, -13.726600612485129], [-61.64577599850621, -13.726600612485129], [-61.64577599850621, -13.735583765326325]]]}, 'id': '+13164+9877', 'properties': {'count': 1, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.64577599850621, -13.780499529532293], [-61.63679284566501, -13.780499529532293], [-61.63679284566501, -13.771516376691096], [-61.64577599850621, -13.771516376691096], [-61.64577599850621, -13.753550071008718], [-61.654759151347406, -13.753550071008718], [-61.654759151347406, -13.717617459643932], [-61.64577599850621, -13.717617459643932], [-61.64577599850621, -13.69965115396154], [-61.654759151347406, -13.69965115396154], [-61.654759151347406, -13.708634306802736], [-61.6727254570298, -13.708634306802736], [-61.6727254570298, -13.69965115396154], [-61.6637423041886, -13.69965115396154], [-61.6637423041886, -13.690668001120343], [-61.6727254570298, -13.690668001120343], [-61.6727254570298, -13.69965115396154], [-61.681708609870995, -13.69965115396154], [-61.681708609870995, -13.708634306802736], [-61.69069176271219, -13.708634306802736], [-61.69069176271219, -13.690668001120343], [-61.681708609870995, -13.690668001120343], [-61.681708609870995, -13.67270169543795], [-61.69069176271219, -13.67270169543795], [-61.69069176271219, -13.690668001120343], [-61.69967491555339, -13.690668001120343], [-61.69967491555339, -13.69965115396154], [-61.708658068394584, -13.69965115396154], [-61.708658068394584, -13.681684848279147], [-61.71764122123578, -13.681684848279147], [-61.71764122123578, -13.67270169543795], [-61.708658068394584, -13.67270169543795], [-61.708658068394584, -13.663718542596754], [-61.71764122123578, -13.663718542596754], [-61.71764122123578, -13.67270169543795], [-61.72662437407698, -13.67270169543795], [-61.72662437407698, -13.690668001120343], [-61.73560752691816, -13.690668001120343], [-61.73560752691816, -13.69965115396154], [-61.72662437407698, -13.69965115396154], [-61.72662437407698, -13.690668001120343], [-61.71764122123578, -13.690668001120343], [-61.71764122123578, -13.726600612485129], [-61.708658068394584, -13.726600612485129], [-61.708658068394584, -13.753550071008718], [-61.69967491555339, -13.753550071008718], [-61.69967491555339, -13.7625332238499], [-61.69069176271219, -13.7625332238499], [-61.69069176271219, -13.744566918167521], [-61.69967491555339, -13.744566918167521], [-61.69967491555339, -13.726600612485129], [-61.6727254570298, -13.726600612485129], [-61.6727254570298, -13.717617459643932], [-61.6637423041886, -13.717617459643932], [-61.6637423041886, -13.7625332238499], [-61.654759151347406, -13.7625332238499], [-61.654759151347406, -13.771516376691096], [-61.64577599850621, -13.771516376691096], [-61.64577599850621, -13.780499529532293]], [[-61.6727254570298, -13.717617459643932], [-61.6727254570298, -13.708634306802736], [-61.681708609870995, -13.708634306802736], [-61.681708609870995, -13.717617459643932], [-61.6727254570298, -13.717617459643932]]]}, 'id': '+13164+9882', 'properties': {'count': 40, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.64577599850621, -13.83439844657947], [-61.63679284566501, -13.83439844657947], [-61.63679284566501, -13.816432140897078], [-61.64577599850621, -13.816432140897078], [-61.64577599850621, -13.83439844657947]]]}, 'id': '+13164+9888', 'properties': {'count': 2, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.654759151347406, -13.89728051646783], [-61.63679284566501, -13.89728051646783], [-61.63679284566501, -13.888297363626634], [-61.654759151347406, -13.888297363626634], [-61.654759151347406, -13.879314210785438], [-61.6637423041886, -13.879314210785438], [-61.6637423041886, -13.888297363626634], [-61.654759151347406, -13.888297363626634], [-61.654759151347406, -13.89728051646783]]]}, 'id': '+13164+9895', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.6637423041886, -13.915246822150223], [-61.63679284566501, -13.915246822150223], [-61.63679284566501, -13.906263669309027], [-61.6637423041886, -13.906263669309027], [-61.6637423041886, -13.915246822150223]]]}, 'id': '+13164+9897', 'properties': {'count': 3, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.64577599850621, -14.193724560227281], [-61.63679284566501, -14.193724560227281], [-61.63679284566501, -14.184741407386085], [-61.64577599850621, -14.184741407386085], [-61.64577599850621, -14.193724560227281]]]}, 'id': '+13164+9928', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.654759151347406, -14.34643815852759], [-61.63679284566501, -14.34643815852759], [-61.63679284566501, -14.337455005686394], [-61.654759151347406, -14.337455005686394], [-61.654759151347406, -14.34643815852759]]]}, 'id': '+13164+9945', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.64577599850621, -13.92422997499142], [-61.62780969282382, -13.92422997499142], [-61.62780969282382, -13.915246822150223], [-61.64577599850621, -13.915246822150223], [-61.64577599850621, -13.92422997499142]]]}, 'id': '+13165+9898', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.63679284566501, -14.229657171592052], [-61.62780969282382, -14.229657171592052], [-61.62780969282382, -14.220674018750856], [-61.61882653998262, -14.220674018750856], [-61.61882653998262, -14.211690865909674], [-61.60984338714144, -14.211690865909674], [-61.60984338714144, -14.220674018750856], [-61.60086023430024, -14.220674018750856], [-61.60086023430024, -14.211690865909674], [-61.60984338714144, -14.211690865909674], [-61.60984338714144, -14.202707713068477], [-61.591877081459046, -14.202707713068477], [-61.591877081459046, -14.193724560227281], [-61.61882653998262, -14.193724560227281], [-61.61882653998262, -14.211690865909674], [-61.62780969282382, -14.211690865909674], [-61.62780969282382, -14.220674018750856], [-61.63679284566501, -14.220674018750856], [-61.63679284566501, -14.229657171592052]]]}, 'id': '+13165+9932', 'properties': {'count': 7, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.63679284566501, -14.66983166081063], [-61.62780969282382, -14.66983166081063], [-61.62780969282382, -14.651865355128237], [-61.63679284566501, -14.651865355128237], [-61.63679284566501, -14.66983166081063]]]}, 'id': '+13165+9981', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.62780969282382, -15.936456211419141], [-61.61882653998262, -15.936456211419141], [-61.61882653998262, -15.92747305857796], [-61.62780969282382, -15.92747305857796], [-61.62780969282382, -15.936456211419141]]]}, 'id': '+13166+10122', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.62780969282382, -16.116119268243054], [-61.61882653998262, -16.116119268243054], [-61.61882653998262, -16.107136115401858], [-61.62780969282382, -16.107136115401858], [-61.62780969282382, -16.116119268243054]]]}, 'id': '+13166+10142', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.62780969282382, -16.18798449097261], [-61.61882653998262, -16.18798449097261], [-61.61882653998262, -16.179001338131414], [-61.62780969282382, -16.179001338131414], [-61.62780969282382, -16.18798449097261]]]}, 'id': '+13166+10150', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.62780969282382, -13.708634306802736], [-61.61882653998262, -13.708634306802736], [-61.61882653998262, -13.69965115396154], [-61.62780969282382, -13.69965115396154], [-61.62780969282382, -13.708634306802736]]]}, 'id': '+13166+9874', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.62780969282382, -13.888297363626634], [-61.61882653998262, -13.888297363626634], [-61.61882653998262, -13.879314210785438], [-61.62780969282382, -13.879314210785438], [-61.62780969282382, -13.888297363626634]]]}, 'id': '+13166+9894', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.62780969282382, -13.92422997499142], [-61.61882653998262, -13.92422997499142], [-61.61882653998262, -13.915246822150223], [-61.62780969282382, -13.915246822150223], [-61.62780969282382, -13.92422997499142]]]}, 'id': '+13166+9898', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.62780969282382, -14.265589782956837], [-61.61882653998262, -14.265589782956837], [-61.61882653998262, -14.256606630115641], [-61.62780969282382, -14.256606630115641], [-61.62780969282382, -14.265589782956837]]]}, 'id': '+13166+9936', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.61882653998262, -16.12510242108425], [-61.60984338714144, -16.12510242108425], [-61.60984338714144, -16.116119268243054], [-61.61882653998262, -16.116119268243054], [-61.61882653998262, -16.12510242108425]]]}, 'id': '+13167+10143', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.61882653998262, -16.15205187960784], [-61.60984338714144, -16.15205187960784], [-61.60984338714144, -16.143068726766643], [-61.61882653998262, -16.143068726766643], [-61.61882653998262, -16.15205187960784]]]}, 'id': '+13167+10146', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.61882653998262, -13.852364752261863], [-61.60984338714144, -13.852364752261863], [-61.60984338714144, -13.843381599420667], [-61.591877081459046, -13.843381599420667], [-61.591877081459046, -13.816432140897078], [-61.60086023430024, -13.816432140897078], [-61.60086023430024, -13.83439844657947], [-61.60984338714144, -13.83439844657947], [-61.60984338714144, -13.825415293738274], [-61.61882653998262, -13.825415293738274], [-61.61882653998262, -13.83439844657947], [-61.60984338714144, -13.83439844657947], [-61.60984338714144, -13.843381599420667], [-61.61882653998262, -13.843381599420667], [-61.61882653998262, -13.852364752261863]]]}, 'id': '+13167+9890', 'properties': {'count': 6, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.61882653998262, -13.996095197720976], [-61.60984338714144, -13.996095197720976], [-61.60984338714144, -13.969145739197401], [-61.591877081459046, -13.969145739197401], [-61.591877081459046, -13.960162586356205], [-61.60086023430024, -13.960162586356205], [-61.60086023430024, -13.951179433515009], [-61.61882653998262, -13.951179433515009], [-61.61882653998262, -13.942196280673812], [-61.60984338714144, -13.942196280673812], [-61.60984338714144, -13.933213127832616], [-61.62780969282382, -13.933213127832616], [-61.62780969282382, -13.92422997499142], [-61.63679284566501, -13.92422997499142], [-61.63679284566501, -13.942196280673812], [-61.654759151347406, -13.942196280673812], [-61.654759151347406, -13.951179433515009], [-61.64577599850621, -13.951179433515009], [-61.64577599850621, -13.960162586356205], [-61.6637423041886, -13.960162586356205], [-61.6637423041886, -13.969145739197401], [-61.64577599850621, -13.969145739197401], [-61.64577599850621, -13.98711204487978], [-61.63679284566501, -13.98711204487978], [-61.63679284566501, -13.996095197720976], [-61.62780969282382, -13.996095197720976], [-61.62780969282382, -13.98711204487978], [-61.61882653998262, -13.98711204487978], [-61.61882653998262, -13.996095197720976]], [[-61.62780969282382, -13.98711204487978], [-61.62780969282382, -13.978128892038598], [-61.61882653998262, -13.978128892038598], [-61.61882653998262, -13.969145739197401], [-61.62780969282382, -13.969145739197401], [-61.62780969282382, -13.960162586356205], [-61.63679284566501, -13.960162586356205], [-61.63679284566501, -13.98711204487978], [-61.62780969282382, -13.98711204487978]]]}, 'id': '+13167+9906', 'properties': {'count': 27, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60984338714144, -15.972388822783927], [-61.60086023430024, -15.972388822783927], [-61.60086023430024, -15.936456211419141], [-61.58289392861785, -15.936456211419141], [-61.58289392861785, -15.945439364260338], [-61.57391077577665, -15.945439364260338], [-61.57391077577665, -15.936456211419141], [-61.58289392861785, -15.936456211419141], [-61.58289392861785, -15.92747305857796], [-61.60086023430024, -15.92747305857796], [-61.60086023430024, -15.936456211419141], [-61.60984338714144, -15.936456211419141], [-61.60984338714144, -15.972388822783927]]]}, 'id': '+13168+10126', 'properties': {'count': 7, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60984338714144, -16.134085573925447], [-61.60086023430024, -16.134085573925447], [-61.60086023430024, -16.116119268243054], [-61.60984338714144, -16.116119268243054], [-61.60984338714144, -16.134085573925447]]]}, 'id': '+13168+10144', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60984338714144, -16.196967643813807], [-61.60086023430024, -16.196967643813807], [-61.60086023430024, -16.18798449097261], [-61.60984338714144, -16.18798449097261], [-61.60984338714144, -16.196967643813807]]]}, 'id': '+13168+10151', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60984338714144, -16.2149339494962], [-61.60086023430024, -16.2149339494962], [-61.60086023430024, -16.205950796655003], [-61.591877081459046, -16.205950796655003], [-61.591877081459046, -16.18798449097261], [-61.60086023430024, -16.18798449097261], [-61.60086023430024, -16.196967643813807], [-61.60984338714144, -16.196967643813807], [-61.60984338714144, -16.2149339494962]]]}, 'id': '+13168+10153', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60984338714144, -13.63676908407318], [-61.60086023430024, -13.63676908407318], [-61.60086023430024, -13.627785931231983], [-61.60984338714144, -13.627785931231983], [-61.60984338714144, -13.63676908407318]]]}, 'id': '+13168+9866', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60984338714144, -13.717617459643932], [-61.60086023430024, -13.717617459643932], [-61.60086023430024, -13.69965115396154], [-61.60984338714144, -13.69965115396154], [-61.60984338714144, -13.717617459643932]]]}, 'id': '+13168+9875', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60984338714144, -13.89728051646783], [-61.60086023430024, -13.89728051646783], [-61.60086023430024, -13.888297363626634], [-61.60984338714144, -13.888297363626634], [-61.60984338714144, -13.89728051646783]]]}, 'id': '+13168+9895', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60984338714144, -14.472202298304325], [-61.60086023430024, -14.472202298304325], [-61.60086023430024, -14.454235992621932], [-61.60984338714144, -14.454235992621932], [-61.60984338714144, -14.472202298304325]]]}, 'id': '+13168+9959', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60984338714144, -14.7057642721754], [-61.60086023430024, -14.7057642721754], [-61.60086023430024, -14.687797966493008], [-61.60984338714144, -14.687797966493008], [-61.60984338714144, -14.7057642721754]]]}, 'id': '+13168+9985', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60086023430024, -15.783742613118832], [-61.591877081459046, -15.783742613118832], [-61.591877081459046, -15.774759460277636], [-61.60086023430024, -15.774759460277636], [-61.60086023430024, -15.76577630743644], [-61.60984338714144, -15.76577630743644], [-61.60984338714144, -15.774759460277636], [-61.60086023430024, -15.774759460277636], [-61.60086023430024, -15.783742613118832]]]}, 'id': '+13169+10105', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60984338714144, -15.92747305857796], [-61.591877081459046, -15.92747305857796], [-61.591877081459046, -15.918489905736763], [-61.60984338714144, -15.918489905736763], [-61.60984338714144, -15.92747305857796]]]}, 'id': '+13169+10121', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60086023430024, -16.18798449097261], [-61.591877081459046, -16.18798449097261], [-61.591877081459046, -16.179001338131414], [-61.60086023430024, -16.179001338131414], [-61.60086023430024, -16.18798449097261]]]}, 'id': '+13169+10150', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60086023430024, -16.24188340801979], [-61.591877081459046, -16.24188340801979], [-61.591877081459046, -16.232900255178592], [-61.60086023430024, -16.232900255178592], [-61.60086023430024, -16.24188340801979]]]}, 'id': '+13169+10156', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60086023430024, -13.60981962554959], [-61.591877081459046, -13.60981962554959], [-61.591877081459046, -13.600836472708394], [-61.60086023430024, -13.600836472708394], [-61.60086023430024, -13.60981962554959]]]}, 'id': '+13169+9863', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60086023430024, -13.681684848279147], [-61.591877081459046, -13.681684848279147], [-61.591877081459046, -13.67270169543795], [-61.60086023430024, -13.67270169543795], [-61.60086023430024, -13.681684848279147]]]}, 'id': '+13169+9871', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60086023430024, -13.708634306802736], [-61.591877081459046, -13.708634306802736], [-61.591877081459046, -13.69965115396154], [-61.60086023430024, -13.69965115396154], [-61.60086023430024, -13.708634306802736]]]}, 'id': '+13169+9874', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60086023430024, -13.735583765326325], [-61.591877081459046, -13.735583765326325], [-61.591877081459046, -13.717617459643932], [-61.61882653998262, -13.717617459643932], [-61.61882653998262, -13.708634306802736], [-61.60984338714144, -13.708634306802736], [-61.60984338714144, -13.69965115396154], [-61.60086023430024, -13.69965115396154], [-61.60086023430024, -13.690668001120343], [-61.60984338714144, -13.690668001120343], [-61.60984338714144, -13.681684848279147], [-61.63679284566501, -13.681684848279147], [-61.63679284566501, -13.663718542596754], [-61.64577599850621, -13.663718542596754], [-61.64577599850621, -13.654735389755558], [-61.654759151347406, -13.654735389755558], [-61.654759151347406, -13.645752236914362], [-61.6637423041886, -13.645752236914362], [-61.6637423041886, -13.681684848279147], [-61.681708609870995, -13.681684848279147], [-61.681708609870995, -13.690668001120343], [-61.654759151347406, -13.690668001120343], [-61.654759151347406, -13.69965115396154], [-61.64577599850621, -13.69965115396154], [-61.64577599850621, -13.717617459643932], [-61.63679284566501, -13.717617459643932], [-61.63679284566501, -13.726600612485129], [-61.60086023430024, -13.726600612485129], [-61.60086023430024, -13.735583765326325]], [[-61.63679284566501, -13.69965115396154], [-61.63679284566501, -13.681684848279147], [-61.64577599850621, -13.681684848279147], [-61.64577599850621, -13.69965115396154], [-61.63679284566501, -13.69965115396154]], [[-61.60984338714144, -13.69965115396154], [-61.60984338714144, -13.690668001120343], [-61.61882653998262, -13.690668001120343], [-61.61882653998262, -13.69965115396154], [-61.60984338714144, -13.69965115396154]], [[-61.61882653998262, -13.708634306802736], [-61.61882653998262, -13.69965115396154], [-61.62780969282382, -13.69965115396154], [-61.62780969282382, -13.708634306802736], [-61.61882653998262, -13.708634306802736]]]}, 'id': '+13169+9877', 'properties': {'count': 32, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60086023430024, -13.753550071008718], [-61.591877081459046, -13.753550071008718], [-61.591877081459046, -13.735583765326325], [-61.60086023430024, -13.735583765326325], [-61.60086023430024, -13.726600612485129], [-61.62780969282382, -13.726600612485129], [-61.62780969282382, -13.735583765326325], [-61.60086023430024, -13.735583765326325], [-61.60086023430024, -13.753550071008718]]]}, 'id': '+13169+9879', 'properties': {'count': 5, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60086023430024, -13.870331057944242], [-61.591877081459046, -13.870331057944242], [-61.591877081459046, -13.86134790510306], [-61.60086023430024, -13.86134790510306], [-61.60086023430024, -13.870331057944242]]]}, 'id': '+13169+9892', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60086023430024, -13.92422997499142], [-61.591877081459046, -13.92422997499142], [-61.591877081459046, -13.915246822150223], [-61.60086023430024, -13.915246822150223], [-61.60086023430024, -13.92422997499142]]]}, 'id': '+13169+9898', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.591877081459046, -15.918489905736763], [-61.58289392861785, -15.918489905736763], [-61.58289392861785, -15.90052360005437], [-61.57391077577665, -15.90052360005437], [-61.57391077577665, -15.909506752895567], [-61.546961317253064, -15.909506752895567], [-61.546961317253064, -15.90052360005437], [-61.53797816441187, -15.90052360005437], [-61.53797816441187, -15.909506752895567], [-61.520011858729475, -15.909506752895567], [-61.520011858729475, -15.873574141530781], [-61.53797816441187, -15.873574141530781], [-61.53797816441187, -15.864590988689585], [-61.546961317253064, -15.864590988689585], [-61.546961317253064, -15.873574141530781], [-61.55594447009426, -15.873574141530781], [-61.55594447009426, -15.891540447213174], [-61.546961317253064, -15.891540447213174], [-61.546961317253064, -15.90052360005437], [-61.56492762293546, -15.90052360005437], [-61.56492762293546, -15.891540447213174], [-61.57391077577665, -15.891540447213174], [-61.57391077577665, -15.882557294371978], [-61.58289392861785, -15.882557294371978], [-61.58289392861785, -15.90052360005437], [-61.591877081459046, -15.90052360005437], [-61.591877081459046, -15.918489905736763]], [[-61.52899501157067, -15.891540447213174], [-61.52899501157067, -15.882557294371978], [-61.546961317253064, -15.882557294371978], [-61.546961317253064, -15.891540447213174], [-61.52899501157067, -15.891540447213174]]]}, 'id': '+13170+10120', 'properties': {'count': 20, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.591877081459046, -16.071203504037072], [-61.58289392861785, -16.071203504037072], [-61.58289392861785, -16.062220351195876], [-61.55594447009426, -16.062220351195876], [-61.55594447009426, -16.05323719835468], [-61.58289392861785, -16.05323719835468], [-61.58289392861785, -16.062220351195876], [-61.591877081459046, -16.062220351195876], [-61.591877081459046, -16.071203504037072]]]}, 'id': '+13170+10137', 'properties': {'count': 4, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.591877081459046, -16.08018665687827], [-61.58289392861785, -16.08018665687827], [-61.58289392861785, -16.071203504037072], [-61.591877081459046, -16.071203504037072], [-61.591877081459046, -16.08018665687827]]]}, 'id': '+13170+10138', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.591877081459046, -16.143068726766643], [-61.58289392861785, -16.143068726766643], [-61.58289392861785, -16.134085573925447], [-61.591877081459046, -16.134085573925447], [-61.591877081459046, -16.143068726766643]]]}, 'id': '+13170+10145', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.591877081459046, -16.170018185290218], [-61.58289392861785, -16.170018185290218], [-61.58289392861785, -16.16103503244902], [-61.591877081459046, -16.16103503244902], [-61.591877081459046, -16.170018185290218]]]}, 'id': '+13170+10148', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.591877081459046, -16.205950796655003], [-61.58289392861785, -16.205950796655003], [-61.58289392861785, -16.196967643813807], [-61.591877081459046, -16.196967643813807], [-61.591877081459046, -16.205950796655003]]]}, 'id': '+13170+10152', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.591877081459046, -16.24188340801979], [-61.58289392861785, -16.24188340801979], [-61.58289392861785, -16.223917102337396], [-61.60086023430024, -16.223917102337396], [-61.60086023430024, -16.232900255178592], [-61.591877081459046, -16.232900255178592], [-61.591877081459046, -16.24188340801979]]]}, 'id': '+13170+10156', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.591877081459046, -13.771516376691096], [-61.58289392861785, -13.771516376691096], [-61.58289392861785, -13.744566918167521], [-61.57391077577665, -13.744566918167521], [-61.57391077577665, -13.735583765326325], [-61.58289392861785, -13.735583765326325], [-61.58289392861785, -13.744566918167521], [-61.591877081459046, -13.744566918167521], [-61.591877081459046, -13.753550071008718], [-61.60086023430024, -13.753550071008718], [-61.60086023430024, -13.744566918167521], [-61.60984338714144, -13.744566918167521], [-61.60984338714144, -13.753550071008718], [-61.60086023430024, -13.753550071008718], [-61.60086023430024, -13.7625332238499], [-61.591877081459046, -13.7625332238499], [-61.591877081459046, -13.771516376691096]]]}, 'id': '+13170+9881', 'properties': {'count': 6, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.591877081459046, -13.83439844657947], [-61.58289392861785, -13.83439844657947], [-61.58289392861785, -13.825415293738274], [-61.591877081459046, -13.825415293738274], [-61.591877081459046, -13.83439844657947]]]}, 'id': '+13170+9888', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.591877081459046, -13.843381599420667], [-61.58289392861785, -13.843381599420667], [-61.58289392861785, -13.83439844657947], [-61.591877081459046, -13.83439844657947], [-61.591877081459046, -13.843381599420667]]]}, 'id': '+13170+9889', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.591877081459046, -13.996095197720976], [-61.58289392861785, -13.996095197720976], [-61.58289392861785, -13.98711204487978], [-61.591877081459046, -13.98711204487978], [-61.591877081459046, -13.996095197720976]]]}, 'id': '+13170+9906', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.591877081459046, -14.202707713068477], [-61.58289392861785, -14.202707713068477], [-61.58289392861785, -14.193724560227281], [-61.591877081459046, -14.193724560227281], [-61.591877081459046, -14.202707713068477]]]}, 'id': '+13170+9929', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.60086023430024, -14.247623477274445], [-61.58289392861785, -14.247623477274445], [-61.58289392861785, -14.238640324433248], [-61.60086023430024, -14.238640324433248], [-61.60086023430024, -14.247623477274445]]]}, 'id': '+13170+9934', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.591877081459046, -14.7057642721754], [-61.58289392861785, -14.7057642721754], [-61.58289392861785, -14.696781119334204], [-61.57391077577665, -14.696781119334204], [-61.57391077577665, -14.687797966493008], [-61.56492762293546, -14.687797966493008], [-61.56492762293546, -14.678814813651812], [-61.57391077577665, -14.678814813651812], [-61.57391077577665, -14.687797966493008], [-61.58289392861785, -14.687797966493008], [-61.58289392861785, -14.696781119334204], [-61.591877081459046, -14.696781119334204], [-61.591877081459046, -14.7057642721754]]]}, 'id': '+13170+9985', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.58289392861785, -15.837641530165996], [-61.57391077577665, -15.837641530165996], [-61.57391077577665, -15.8286583773248], [-61.58289392861785, -15.8286583773248], [-61.58289392861785, -15.837641530165996]]]}, 'id': '+13171+10111', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.58289392861785, -15.882557294371978], [-61.57391077577665, -15.882557294371978], [-61.57391077577665, -15.873574141530781], [-61.58289392861785, -15.873574141530781], [-61.58289392861785, -15.882557294371978]]]}, 'id': '+13171+10116', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.58289392861785, -15.918489905736763], [-61.57391077577665, -15.918489905736763], [-61.57391077577665, -15.909506752895567], [-61.58289392861785, -15.909506752895567], [-61.58289392861785, -15.918489905736763]]]}, 'id': '+13171+10120', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.58289392861785, -15.972388822783927], [-61.57391077577665, -15.972388822783927], [-61.57391077577665, -15.96340566994273], [-61.58289392861785, -15.96340566994273], [-61.58289392861785, -15.972388822783927]]]}, 'id': '+13171+10126', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.58289392861785, -16.16103503244902], [-61.57391077577665, -16.16103503244902], [-61.57391077577665, -16.15205187960784], [-61.58289392861785, -16.15205187960784], [-61.58289392861785, -16.16103503244902]]]}, 'id': '+13171+10147', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.58289392861785, -13.906263669309027], [-61.57391077577665, -13.906263669309027], [-61.57391077577665, -13.89728051646783], [-61.58289392861785, -13.89728051646783], [-61.58289392861785, -13.906263669309027]]]}, 'id': '+13171+9896', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.58289392861785, -14.481185451145521], [-61.57391077577665, -14.481185451145521], [-61.57391077577665, -14.472202298304325], [-61.58289392861785, -14.472202298304325], [-61.58289392861785, -14.481185451145521]]]}, 'id': '+13171+9960', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.58289392861785, -14.66983166081063], [-61.57391077577665, -14.66983166081063], [-61.57391077577665, -14.660848507969433], [-61.58289392861785, -14.660848507969433], [-61.58289392861785, -14.66983166081063]]]}, 'id': '+13171+9981', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.57391077577665, -15.783742613118832], [-61.56492762293546, -15.783742613118832], [-61.56492762293546, -15.774759460277636], [-61.57391077577665, -15.774759460277636], [-61.57391077577665, -15.783742613118832]]]}, 'id': '+13172+10105', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.58289392861785, -15.810692071642421], [-61.56492762293546, -15.810692071642421], [-61.56492762293546, -15.801708918801225], [-61.58289392861785, -15.801708918801225], [-61.58289392861785, -15.810692071642421]]]}, 'id': '+13172+10108', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.57391077577665, -15.945439364260338], [-61.56492762293546, -15.945439364260338], [-61.56492762293546, -15.918489905736763], [-61.57391077577665, -15.918489905736763], [-61.57391077577665, -15.945439364260338]]]}, 'id': '+13172+10123', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.57391077577665, -16.09815296256066], [-61.56492762293546, -16.09815296256066], [-61.56492762293546, -16.089169809719465], [-61.57391077577665, -16.089169809719465], [-61.57391077577665, -16.09815296256066]]]}, 'id': '+13172+10140', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.57391077577665, -16.143068726766643], [-61.56492762293546, -16.143068726766643], [-61.56492762293546, -16.134085573925447], [-61.57391077577665, -16.134085573925447], [-61.57391077577665, -16.143068726766643]]]}, 'id': '+13172+10145', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.57391077577665, -16.179001338131414], [-61.56492762293546, -16.179001338131414], [-61.56492762293546, -16.170018185290218], [-61.57391077577665, -16.170018185290218], [-61.57391077577665, -16.179001338131414]]]}, 'id': '+13172+10149', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.57391077577665, -14.34643815852759], [-61.56492762293546, -14.34643815852759], [-61.56492762293546, -14.337455005686394], [-61.57391077577665, -14.337455005686394], [-61.57391077577665, -14.34643815852759]]]}, 'id': '+13172+9945', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.56492762293546, -15.864590988689585], [-61.55594447009426, -15.864590988689585], [-61.55594447009426, -15.855607835848389], [-61.56492762293546, -15.855607835848389], [-61.56492762293546, -15.864590988689585]]]}, 'id': '+13173+10114', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.56492762293546, -15.90052360005437], [-61.55594447009426, -15.90052360005437], [-61.55594447009426, -15.891540447213174], [-61.56492762293546, -15.891540447213174], [-61.56492762293546, -15.90052360005437]]]}, 'id': '+13173+10118', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.56492762293546, -15.936456211419141], [-61.55594447009426, -15.936456211419141], [-61.55594447009426, -15.92747305857796], [-61.56492762293546, -15.92747305857796], [-61.56492762293546, -15.936456211419141]]]}, 'id': '+13173+10122', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.56492762293546, -15.954422517101534], [-61.55594447009426, -15.954422517101534], [-61.55594447009426, -15.945439364260338], [-61.56492762293546, -15.945439364260338], [-61.56492762293546, -15.954422517101534]]]}, 'id': '+13173+10124', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.56492762293546, -16.09815296256066], [-61.55594447009426, -16.09815296256066], [-61.55594447009426, -16.089169809719465], [-61.56492762293546, -16.089169809719465], [-61.56492762293546, -16.09815296256066]]]}, 'id': '+13173+10140', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.56492762293546, -16.134085573925447], [-61.55594447009426, -16.134085573925447], [-61.55594447009426, -16.107136115401858], [-61.56492762293546, -16.107136115401858], [-61.56492762293546, -16.09815296256066], [-61.57391077577665, -16.09815296256066], [-61.57391077577665, -16.08018665687827], [-61.58289392861785, -16.08018665687827], [-61.58289392861785, -16.089169809719465], [-61.591877081459046, -16.089169809719465], [-61.591877081459046, -16.116119268243054], [-61.60086023430024, -16.116119268243054], [-61.60086023430024, -16.12510242108425], [-61.591877081459046, -16.12510242108425], [-61.591877081459046, -16.116119268243054], [-61.58289392861785, -16.116119268243054], [-61.58289392861785, -16.09815296256066], [-61.57391077577665, -16.09815296256066], [-61.57391077577665, -16.107136115401858], [-61.56492762293546, -16.107136115401858], [-61.56492762293546, -16.134085573925447]]]}, 'id': '+13173+10144', 'properties': {'count': 10, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.56492762293546, -16.205950796655003], [-61.55594447009426, -16.205950796655003], [-61.55594447009426, -16.196967643813807], [-61.56492762293546, -16.196967643813807], [-61.56492762293546, -16.205950796655003]]]}, 'id': '+13173+10152', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.56492762293546, -13.564903861343609], [-61.55594447009426, -13.564903861343609], [-61.55594447009426, -13.555920708502413], [-61.56492762293546, -13.555920708502413], [-61.56492762293546, -13.564903861343609]]]}, 'id': '+13173+9858', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.56492762293546, -13.798465835214685], [-61.55594447009426, -13.798465835214685], [-61.55594447009426, -13.789482682373489], [-61.56492762293546, -13.789482682373489], [-61.56492762293546, -13.798465835214685]]]}, 'id': '+13173+9884', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.56492762293546, -13.969145739197401], [-61.55594447009426, -13.969145739197401], [-61.55594447009426, -13.960162586356205], [-61.56492762293546, -13.960162586356205], [-61.56492762293546, -13.969145739197401]]]}, 'id': '+13173+9903', 'properties': {'count': 1, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.57391077577665, -13.996095197720976], [-61.55594447009426, -13.996095197720976], [-61.55594447009426, -13.978128892038598], [-61.56492762293546, -13.978128892038598], [-61.56492762293546, -13.98711204487978], [-61.57391077577665, -13.98711204487978], [-61.57391077577665, -13.978128892038598], [-61.58289392861785, -13.978128892038598], [-61.58289392861785, -13.960162586356205], [-61.591877081459046, -13.960162586356205], [-61.591877081459046, -13.98711204487978], [-61.57391077577665, -13.98711204487978], [-61.57391077577665, -13.996095197720976]]]}, 'id': '+13173+9906', 'properties': {'count': 7, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.56492762293546, -14.014061503403369], [-61.55594447009426, -14.014061503403369], [-61.55594447009426, -14.005078350562172], [-61.56492762293546, -14.005078350562172], [-61.56492762293546, -13.996095197720976], [-61.57391077577665, -13.996095197720976], [-61.57391077577665, -14.005078350562172], [-61.56492762293546, -14.005078350562172], [-61.56492762293546, -14.014061503403369]]]}, 'id': '+13173+9908', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.56492762293546, -14.310505547162819], [-61.55594447009426, -14.310505547162819], [-61.55594447009426, -14.301522394321623], [-61.56492762293546, -14.301522394321623], [-61.56492762293546, -14.310505547162819]]]}, 'id': '+13173+9941', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.56492762293546, -14.364404464209983], [-61.55594447009426, -14.364404464209983], [-61.55594447009426, -14.355421311368787], [-61.546961317253064, -14.355421311368787], [-61.546961317253064, -14.34643815852759], [-61.55594447009426, -14.34643815852759], [-61.55594447009426, -14.355421311368787], [-61.56492762293546, -14.355421311368787], [-61.56492762293546, -14.364404464209983]]]}, 'id': '+13173+9947', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.56492762293546, -14.427286534098357], [-61.55594447009426, -14.427286534098357], [-61.55594447009426, -14.41830338125716], [-61.56492762293546, -14.41830338125716], [-61.56492762293546, -14.427286534098357]]]}, 'id': '+13173+9954', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.55594447009426, -15.783742613118832], [-61.546961317253064, -15.783742613118832], [-61.546961317253064, -15.774759460277636], [-61.55594447009426, -15.774759460277636], [-61.55594447009426, -15.783742613118832]]]}, 'id': '+13174+10105', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.55594447009426, -15.810692071642421], [-61.546961317253064, -15.810692071642421], [-61.546961317253064, -15.801708918801225], [-61.55594447009426, -15.801708918801225], [-61.55594447009426, -15.810692071642421]]]}, 'id': '+13174+10108', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.56492762293546, -16.089169809719465], [-61.546961317253064, -16.089169809719465], [-61.546961317253064, -16.08018665687827], [-61.56492762293546, -16.08018665687827], [-61.56492762293546, -16.089169809719465]]]}, 'id': '+13174+10139', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.55594447009426, -13.60981962554959], [-61.546961317253064, -13.60981962554959], [-61.546961317253064, -13.600836472708394], [-61.55594447009426, -13.600836472708394], [-61.55594447009426, -13.60981962554959]]]}, 'id': '+13174+9863', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.55594447009426, -13.7625332238499], [-61.546961317253064, -13.7625332238499], [-61.546961317253064, -13.753550071008718], [-61.53797816441187, -13.753550071008718], [-61.53797816441187, -13.744566918167521], [-61.55594447009426, -13.744566918167521], [-61.55594447009426, -13.726600612485129], [-61.56492762293546, -13.726600612485129], [-61.56492762293546, -13.753550071008718], [-61.57391077577665, -13.753550071008718], [-61.57391077577665, -13.7625332238499], [-61.56492762293546, -13.7625332238499], [-61.56492762293546, -13.753550071008718], [-61.55594447009426, -13.753550071008718], [-61.55594447009426, -13.7625332238499]]]}, 'id': '+13174+9880', 'properties': {'count': 7, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.56492762293546, -13.816432140897078], [-61.546961317253064, -13.816432140897078], [-61.546961317253064, -13.807448988055882], [-61.56492762293546, -13.807448988055882], [-61.56492762293546, -13.816432140897078]]]}, 'id': '+13174+9886', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.55594447009426, -14.076943573291743], [-61.546961317253064, -14.076943573291743], [-61.546961317253064, -14.067960420450547], [-61.53797816441187, -14.067960420450547], [-61.53797816441187, -14.049994114768154], [-61.52899501157067, -14.049994114768154], [-61.52899501157067, -14.041010961926958], [-61.520011858729475, -14.041010961926958], [-61.520011858729475, -14.032027809085761], [-61.53797816441187, -14.032027809085761], [-61.53797816441187, -14.049994114768154], [-61.57391077577665, -14.049994114768154], [-61.57391077577665, -14.032027809085761], [-61.591877081459046, -14.032027809085761], [-61.591877081459046, -14.023044656244565], [-61.60984338714144, -14.023044656244565], [-61.60984338714144, -14.014061503403369], [-61.58289392861785, -14.014061503403369], [-61.58289392861785, -14.023044656244565], [-61.55594447009426, -14.023044656244565], [-61.55594447009426, -14.032027809085761], [-61.56492762293546, -14.032027809085761], [-61.56492762293546, -14.041010961926958], [-61.55594447009426, -14.041010961926958], [-61.55594447009426, -14.032027809085761], [-61.546961317253064, -14.032027809085761], [-61.546961317253064, -14.023044656244565], [-61.53797816441187, -14.023044656244565], [-61.53797816441187, -14.005078350562172], [-61.52899501157067, -14.005078350562172], [-61.52899501157067, -13.996095197720976], [-61.53797816441187, -13.996095197720976], [-61.53797816441187, -13.98711204487978], [-61.55594447009426, -13.98711204487978], [-61.55594447009426, -13.996095197720976], [-61.546961317253064, -13.996095197720976], [-61.546961317253064, -14.005078350562172], [-61.55594447009426, -14.005078350562172], [-61.55594447009426, -14.014061503403369], [-61.56492762293546, -14.014061503403369], [-61.56492762293546, -14.005078350562172], [-61.60984338714144, -14.005078350562172], [-61.60984338714144, -14.014061503403369], [-61.61882653998262, -14.014061503403369], [-61.61882653998262, -14.023044656244565], [-61.62780969282382, -14.023044656244565], [-61.62780969282382, -14.014061503403369], [-61.63679284566501, -14.014061503403369], [-61.63679284566501, -14.005078350562172], [-61.64577599850621, -14.005078350562172], [-61.64577599850621, -14.014061503403369], [-61.654759151347406, -14.014061503403369], [-61.654759151347406, -14.023044656244565], [-61.64577599850621, -14.023044656244565], [-61.64577599850621, -14.014061503403369], [-61.63679284566501, -14.014061503403369], [-61.63679284566501, -14.023044656244565], [-61.62780969282382, -14.023044656244565], [-61.62780969282382, -14.032027809085761], [-61.654759151347406, -14.032027809085761], [-61.654759151347406, -14.041010961926958], [-61.63679284566501, -14.041010961926958], [-61.63679284566501, -14.049994114768154], [-61.61882653998262, -14.049994114768154], [-61.61882653998262, -14.041010961926958], [-61.60086023430024, -14.041010961926958], [-61.60086023430024, -14.049994114768154], [-61.60984338714144, -14.049994114768154], [-61.60984338714144, -14.067960420450547], [-61.60086023430024, -14.067960420450547], [-61.60086023430024, -14.05897726760935], [-61.591877081459046, -14.05897726760935], [-61.591877081459046, -14.067960420450547], [-61.57391077577665, -14.067960420450547], [-61.57391077577665, -14.076943573291743], [-61.56492762293546, -14.076943573291743], [-61.56492762293546, -14.067960420450547], [-61.55594447009426, -14.067960420450547], [-61.55594447009426, -14.076943573291743]], [[-61.546961317253064, -14.023044656244565], [-61.546961317253064, -14.014061503403369], [-61.55594447009426, -14.014061503403369], [-61.55594447009426, -14.023044656244565], [-61.546961317253064, -14.023044656244565]], [[-61.60984338714144, -14.032027809085761], [-61.60984338714144, -14.023044656244565], [-61.61882653998262, -14.023044656244565], [-61.61882653998262, -14.032027809085761], [-61.60984338714144, -14.032027809085761]], [[-61.61882653998262, -14.041010961926958], [-61.61882653998262, -14.032027809085761], [-61.62780969282382, -14.032027809085761], [-61.62780969282382, -14.041010961926958], [-61.61882653998262, -14.041010961926958]], [[-61.591877081459046, -14.041010961926958], [-61.591877081459046, -14.032027809085761], [-61.60086023430024, -14.032027809085761], [-61.60086023430024, -14.041010961926958], [-61.591877081459046, -14.041010961926958]], [[-61.57391077577665, -14.05897726760935], [-61.57391077577665, -14.049994114768154], [-61.591877081459046, -14.049994114768154], [-61.591877081459046, -14.05897726760935], [-61.57391077577665, -14.05897726760935]], [[-61.546961317253064, -14.067960420450547], [-61.546961317253064, -14.05897726760935], [-61.55594447009426, -14.05897726760935], [-61.55594447009426, -14.067960420450547], [-61.546961317253064, -14.067960420450547]]]}, 'id': '+13174+9915', 'properties': {'count': 53, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.55594447009426, -14.265589782956837], [-61.546961317253064, -14.265589782956837], [-61.546961317253064, -14.256606630115641], [-61.55594447009426, -14.256606630115641], [-61.55594447009426, -14.265589782956837]]]}, 'id': '+13174+9936', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -15.810692071642421], [-61.53797816441187, -15.810692071642421], [-61.53797816441187, -15.801708918801225], [-61.546961317253064, -15.801708918801225], [-61.546961317253064, -15.792725765960029], [-61.55594447009426, -15.792725765960029], [-61.55594447009426, -15.801708918801225], [-61.546961317253064, -15.801708918801225], [-61.546961317253064, -15.810692071642421]]]}, 'id': '+13175+10108', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -15.936456211419141], [-61.53797816441187, -15.936456211419141], [-61.53797816441187, -15.92747305857796], [-61.546961317253064, -15.92747305857796], [-61.546961317253064, -15.936456211419141]]]}, 'id': '+13175+10122', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -15.954422517101534], [-61.53797816441187, -15.954422517101534], [-61.53797816441187, -15.945439364260338], [-61.546961317253064, -15.945439364260338], [-61.546961317253064, -15.954422517101534]]]}, 'id': '+13175+10124', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -16.16103503244902], [-61.53797816441187, -16.16103503244902], [-61.53797816441187, -16.15205187960784], [-61.546961317253064, -16.15205187960784], [-61.546961317253064, -16.16103503244902]]]}, 'id': '+13175+10147', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -16.179001338131414], [-61.53797816441187, -16.179001338131414], [-61.53797816441187, -16.170018185290218], [-61.52899501157067, -16.170018185290218], [-61.52899501157067, -16.16103503244902], [-61.520011858729475, -16.16103503244902], [-61.520011858729475, -16.170018185290218], [-61.5020455530471, -16.170018185290218], [-61.5020455530471, -16.15205187960784], [-61.4930624002059, -16.15205187960784], [-61.4930624002059, -16.134085573925447], [-61.47509609452351, -16.134085573925447], [-61.47509609452351, -16.12510242108425], [-61.4930624002059, -16.12510242108425], [-61.4930624002059, -16.134085573925447], [-61.51102870588828, -16.134085573925447], [-61.51102870588828, -16.143068726766643], [-61.53797816441187, -16.143068726766643], [-61.53797816441187, -16.134085573925447], [-61.520011858729475, -16.134085573925447], [-61.520011858729475, -16.107136115401858], [-61.51102870588828, -16.107136115401858], [-61.51102870588828, -16.116119268243054], [-61.5020455530471, -16.116119268243054], [-61.5020455530471, -16.107136115401858], [-61.51102870588828, -16.107136115401858], [-61.51102870588828, -16.09815296256066], [-61.520011858729475, -16.09815296256066], [-61.520011858729475, -16.107136115401858], [-61.53797816441187, -16.107136115401858], [-61.53797816441187, -16.116119268243054], [-61.52899501157067, -16.116119268243054], [-61.52899501157067, -16.12510242108425], [-61.546961317253064, -16.12510242108425], [-61.546961317253064, -16.143068726766643], [-61.53797816441187, -16.143068726766643], [-61.53797816441187, -16.16103503244902], [-61.55594447009426, -16.16103503244902], [-61.55594447009426, -16.170018185290218], [-61.546961317253064, -16.170018185290218], [-61.546961317253064, -16.179001338131414]], [[-61.5020455530471, -16.15205187960784], [-61.5020455530471, -16.143068726766643], [-61.51102870588828, -16.143068726766643], [-61.51102870588828, -16.15205187960784], [-61.5020455530471, -16.15205187960784]]]}, 'id': '+13175+10149', 'properties': {'count': 27, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -13.546937555661216], [-61.53797816441187, -13.546937555661216], [-61.53797816441187, -13.53795440282002], [-61.546961317253064, -13.53795440282002], [-61.546961317253064, -13.546937555661216]]]}, 'id': '+13175+9856', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -13.825415293738274], [-61.53797816441187, -13.825415293738274], [-61.53797816441187, -13.789482682373489], [-61.546961317253064, -13.789482682373489], [-61.546961317253064, -13.825415293738274]]]}, 'id': '+13175+9887', 'properties': {'count': 4, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -13.843381599420667], [-61.53797816441187, -13.843381599420667], [-61.53797816441187, -13.83439844657947], [-61.546961317253064, -13.83439844657947], [-61.546961317253064, -13.843381599420667]]]}, 'id': '+13175+9889', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -13.951179433515009], [-61.53797816441187, -13.951179433515009], [-61.53797816441187, -13.933213127832616], [-61.546961317253064, -13.933213127832616], [-61.546961317253064, -13.951179433515009]]]}, 'id': '+13175+9901', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -13.960162586356205], [-61.53797816441187, -13.960162586356205], [-61.53797816441187, -13.951179433515009], [-61.546961317253064, -13.951179433515009], [-61.546961317253064, -13.960162586356205]]]}, 'id': '+13175+9902', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -13.98711204487978], [-61.53797816441187, -13.98711204487978], [-61.53797816441187, -13.969145739197401], [-61.546961317253064, -13.969145739197401], [-61.546961317253064, -13.98711204487978]]]}, 'id': '+13175+9905', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -14.337455005686394], [-61.53797816441187, -14.337455005686394], [-61.53797816441187, -14.319488700004015], [-61.546961317253064, -14.319488700004015], [-61.546961317253064, -14.337455005686394]]]}, 'id': '+13175+9944', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -14.382370769892376], [-61.53797816441187, -14.382370769892376], [-61.53797816441187, -14.37338761705118], [-61.546961317253064, -14.37338761705118], [-61.546961317253064, -14.382370769892376]]]}, 'id': '+13175+9949', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -14.79559580058735], [-61.53797816441187, -14.79559580058735], [-61.53797816441187, -14.786612647746153], [-61.546961317253064, -14.786612647746153], [-61.546961317253064, -14.79559580058735]]]}, 'id': '+13175+9995', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.53797816441187, -15.76577630743644], [-61.52899501157067, -15.76577630743644], [-61.52899501157067, -15.756793154595243], [-61.520011858729475, -15.756793154595243], [-61.520011858729475, -15.747810001754047], [-61.52899501157067, -15.747810001754047], [-61.52899501157067, -15.756793154595243], [-61.53797816441187, -15.756793154595243], [-61.53797816441187, -15.76577630743644]]]}, 'id': '+13176+10103', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.53797816441187, -15.774759460277636], [-61.52899501157067, -15.774759460277636], [-61.52899501157067, -15.76577630743644], [-61.53797816441187, -15.76577630743644], [-61.53797816441187, -15.774759460277636]]]}, 'id': '+13176+10104', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.53797816441187, -15.981371975625123], [-61.52899501157067, -15.981371975625123], [-61.52899501157067, -15.972388822783927], [-61.53797816441187, -15.972388822783927], [-61.53797816441187, -15.981371975625123]]]}, 'id': '+13176+10127', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.53797816441187, -16.008321434148712], [-61.52899501157067, -16.008321434148712], [-61.52899501157067, -15.999338281307516], [-61.53797816441187, -15.999338281307516], [-61.53797816441187, -16.008321434148712]]]}, 'id': '+13176+10130', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -16.196967643813807], [-61.52899501157067, -16.196967643813807], [-61.52899501157067, -16.18798449097261], [-61.546961317253064, -16.18798449097261], [-61.546961317253064, -16.196967643813807]]]}, 'id': '+13176+10151', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -13.852364752261863], [-61.52899501157067, -13.852364752261863], [-61.52899501157067, -13.843381599420667], [-61.546961317253064, -13.843381599420667], [-61.546961317253064, -13.83439844657947], [-61.55594447009426, -13.83439844657947], [-61.55594447009426, -13.843381599420667], [-61.546961317253064, -13.843381599420667], [-61.546961317253064, -13.852364752261863]]]}, 'id': '+13176+9890', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.53797816441187, -13.98711204487978], [-61.52899501157067, -13.98711204487978], [-61.52899501157067, -13.978128892038598], [-61.520011858729475, -13.978128892038598], [-61.520011858729475, -13.960162586356205], [-61.53797816441187, -13.960162586356205], [-61.53797816441187, -13.969145739197401], [-61.52899501157067, -13.969145739197401], [-61.52899501157067, -13.978128892038598], [-61.53797816441187, -13.978128892038598], [-61.53797816441187, -13.98711204487978]]]}, 'id': '+13176+9905', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.53797816441187, -14.067960420450547], [-61.52899501157067, -14.067960420450547], [-61.52899501157067, -14.049994114768154], [-61.53797816441187, -14.049994114768154], [-61.53797816441187, -14.067960420450547]]]}, 'id': '+13176+9914', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.53797816441187, -14.094909878974136], [-61.52899501157067, -14.094909878974136], [-61.52899501157067, -14.08592672613294], [-61.53797816441187, -14.08592672613294], [-61.53797816441187, -14.094909878974136]]]}, 'id': '+13176+9917', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.53797816441187, -14.265589782956837], [-61.52899501157067, -14.265589782956837], [-61.52899501157067, -14.256606630115641], [-61.520011858729475, -14.256606630115641], [-61.520011858729475, -14.247623477274445], [-61.52899501157067, -14.247623477274445], [-61.52899501157067, -14.256606630115641], [-61.53797816441187, -14.256606630115641], [-61.53797816441187, -14.265589782956837]]]}, 'id': '+13176+9936', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.53797816441187, -14.624915896604648], [-61.52899501157067, -14.624915896604648], [-61.52899501157067, -14.615932743763452], [-61.53797816441187, -14.615932743763452], [-61.53797816441187, -14.624915896604648]]]}, 'id': '+13176+9976', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.53797816441187, -14.66983166081063], [-61.52899501157067, -14.66983166081063], [-61.52899501157067, -14.64288220228704], [-61.53797816441187, -14.64288220228704], [-61.53797816441187, -14.66983166081063]]]}, 'id': '+13176+9981', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.53797816441187, -14.714747425016597], [-61.52899501157067, -14.714747425016597], [-61.52899501157067, -14.7057642721754], [-61.53797816441187, -14.7057642721754], [-61.53797816441187, -14.714747425016597]]]}, 'id': '+13176+9986', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.52899501157067, -15.693911084706883], [-61.520011858729475, -15.693911084706883], [-61.520011858729475, -15.684927931865687], [-61.52899501157067, -15.684927931865687], [-61.52899501157067, -15.693911084706883]]]}, 'id': '+13177+10095', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.53797816441187, -15.711877390389262], [-61.520011858729475, -15.711877390389262], [-61.520011858729475, -15.702894237548065], [-61.53797816441187, -15.702894237548065], [-61.53797816441187, -15.711877390389262]]]}, 'id': '+13177+10097', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.52899501157067, -15.720860543230458], [-61.520011858729475, -15.720860543230458], [-61.520011858729475, -15.711877390389262], [-61.52899501157067, -15.711877390389262], [-61.52899501157067, -15.720860543230458]]]}, 'id': '+13177+10098', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -15.783742613118832], [-61.520011858729475, -15.783742613118832], [-61.520011858729475, -15.774759460277636], [-61.53797816441187, -15.774759460277636], [-61.53797816441187, -15.756793154595243], [-61.546961317253064, -15.756793154595243], [-61.546961317253064, -15.783742613118832]]]}, 'id': '+13177+10105', 'properties': {'count': 5, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.52899501157067, -15.96340566994273], [-61.520011858729475, -15.96340566994273], [-61.520011858729475, -15.945439364260338], [-61.52899501157067, -15.945439364260338], [-61.52899501157067, -15.96340566994273]]]}, 'id': '+13177+10125', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.52899501157067, -16.196967643813807], [-61.520011858729475, -16.196967643813807], [-61.520011858729475, -16.18798449097261], [-61.52899501157067, -16.18798449097261], [-61.52899501157067, -16.196967643813807]]]}, 'id': '+13177+10151', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.53797816441187, -13.753550071008718], [-61.520011858729475, -13.753550071008718], [-61.520011858729475, -13.744566918167521], [-61.52899501157067, -13.744566918167521], [-61.52899501157067, -13.735583765326325], [-61.53797816441187, -13.735583765326325], [-61.53797816441187, -13.753550071008718]]]}, 'id': '+13177+9879', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.52899501157067, -13.951179433515009], [-61.520011858729475, -13.951179433515009], [-61.520011858729475, -13.942196280673812], [-61.52899501157067, -13.942196280673812], [-61.52899501157067, -13.951179433515009]]]}, 'id': '+13177+9901', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.53797816441187, -14.202707713068477], [-61.520011858729475, -14.202707713068477], [-61.520011858729475, -14.193724560227281], [-61.53797816441187, -14.193724560227281], [-61.53797816441187, -14.202707713068477]]]}, 'id': '+13177+9929', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.52899501157067, -14.34643815852759], [-61.520011858729475, -14.34643815852759], [-61.520011858729475, -14.337455005686394], [-61.52899501157067, -14.337455005686394], [-61.52899501157067, -14.34643815852759]]]}, 'id': '+13177+9945', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.52899501157067, -14.472202298304325], [-61.520011858729475, -14.472202298304325], [-61.520011858729475, -14.436269686939553], [-61.52899501157067, -14.436269686939553], [-61.52899501157067, -14.472202298304325]]]}, 'id': '+13177+9959', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.546961317253064, -14.696781119334204], [-61.520011858729475, -14.696781119334204], [-61.520011858729475, -14.687797966493008], [-61.51102870588828, -14.687797966493008], [-61.51102870588828, -14.678814813651812], [-61.520011858729475, -14.678814813651812], [-61.520011858729475, -14.687797966493008], [-61.52899501157067, -14.687797966493008], [-61.52899501157067, -14.678814813651812], [-61.53797816441187, -14.678814813651812], [-61.53797816441187, -14.687797966493008], [-61.546961317253064, -14.687797966493008], [-61.546961317253064, -14.696781119334204]]]}, 'id': '+13177+9984', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.52899501157067, -14.79559580058735], [-61.520011858729475, -14.79559580058735], [-61.520011858729475, -14.777629494904971], [-61.52899501157067, -14.777629494904971], [-61.52899501157067, -14.79559580058735]]]}, 'id': '+13177+9995', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -15.595096403453724], [-61.51102870588828, -15.595096403453724], [-61.51102870588828, -15.586113250612527], [-61.520011858729475, -15.586113250612527], [-61.520011858729475, -15.595096403453724]]]}, 'id': '+13178+10084', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -15.747810001754047], [-61.51102870588828, -15.747810001754047], [-61.51102870588828, -15.729843696071654], [-61.5020455530471, -15.729843696071654], [-61.5020455530471, -15.720860543230458], [-61.4930624002059, -15.720860543230458], [-61.4930624002059, -15.711877390389262], [-61.47509609452351, -15.711877390389262], [-61.47509609452351, -15.702894237548065], [-61.5020455530471, -15.702894237548065], [-61.5020455530471, -15.711877390389262], [-61.51102870588828, -15.711877390389262], [-61.51102870588828, -15.729843696071654], [-61.520011858729475, -15.729843696071654], [-61.520011858729475, -15.747810001754047]]]}, 'id': '+13178+10101', 'properties': {'count': 8, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -15.756793154595243], [-61.51102870588828, -15.756793154595243], [-61.51102870588828, -15.747810001754047], [-61.520011858729475, -15.747810001754047], [-61.520011858729475, -15.720860543230458], [-61.52899501157067, -15.720860543230458], [-61.52899501157067, -15.73882684891285], [-61.53797816441187, -15.73882684891285], [-61.53797816441187, -15.756793154595243], [-61.52899501157067, -15.756793154595243], [-61.52899501157067, -15.747810001754047], [-61.520011858729475, -15.747810001754047], [-61.520011858729475, -15.756793154595243]]]}, 'id': '+13178+10102', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.52899501157067, -15.76577630743644], [-61.51102870588828, -15.76577630743644], [-61.51102870588828, -15.756793154595243], [-61.52899501157067, -15.756793154595243], [-61.52899501157067, -15.76577630743644]]]}, 'id': '+13178+10103', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -15.8286583773248], [-61.51102870588828, -15.8286583773248], [-61.51102870588828, -15.810692071642421], [-61.520011858729475, -15.810692071642421], [-61.520011858729475, -15.8286583773248]]]}, 'id': '+13178+10110', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -15.882557294371978], [-61.51102870588828, -15.882557294371978], [-61.51102870588828, -15.873574141530781], [-61.5020455530471, -15.873574141530781], [-61.5020455530471, -15.864590988689585], [-61.520011858729475, -15.864590988689585], [-61.520011858729475, -15.882557294371978]]]}, 'id': '+13178+10116', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -15.918489905736763], [-61.51102870588828, -15.918489905736763], [-61.51102870588828, -15.909506752895567], [-61.520011858729475, -15.909506752895567], [-61.520011858729475, -15.918489905736763]]]}, 'id': '+13178+10120', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -15.936456211419141], [-61.51102870588828, -15.936456211419141], [-61.51102870588828, -15.92747305857796], [-61.520011858729475, -15.92747305857796], [-61.520011858729475, -15.936456211419141]]]}, 'id': '+13178+10122', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -15.972388822783927], [-61.51102870588828, -15.972388822783927], [-61.51102870588828, -15.96340566994273], [-61.520011858729475, -15.96340566994273], [-61.520011858729475, -15.972388822783927]]]}, 'id': '+13178+10126', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -16.062220351195876], [-61.51102870588828, -16.062220351195876], [-61.51102870588828, -16.044254045513483], [-61.5020455530471, -16.044254045513483], [-61.5020455530471, -16.0352708926723], [-61.51102870588828, -16.0352708926723], [-61.51102870588828, -16.026287739831105], [-61.5020455530471, -16.026287739831105], [-61.5020455530471, -16.008321434148712], [-61.520011858729475, -16.008321434148712], [-61.520011858729475, -16.0352708926723], [-61.51102870588828, -16.0352708926723], [-61.51102870588828, -16.044254045513483], [-61.520011858729475, -16.044254045513483], [-61.520011858729475, -16.062220351195876]]]}, 'id': '+13178+10136', 'properties': {'count': 8, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -16.116119268243054], [-61.51102870588828, -16.116119268243054], [-61.51102870588828, -16.107136115401858], [-61.520011858729475, -16.107136115401858], [-61.520011858729475, -16.116119268243054]]]}, 'id': '+13178+10142', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -16.12510242108425], [-61.51102870588828, -16.12510242108425], [-61.51102870588828, -16.116119268243054], [-61.520011858729475, -16.116119268243054], [-61.520011858729475, -16.12510242108425]]]}, 'id': '+13178+10143', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -16.205950796655003], [-61.51102870588828, -16.205950796655003], [-61.51102870588828, -16.196967643813807], [-61.520011858729475, -16.196967643813807], [-61.520011858729475, -16.205950796655003]]]}, 'id': '+13178+10152', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -16.223917102337396], [-61.51102870588828, -16.223917102337396], [-61.51102870588828, -16.2149339494962], [-61.520011858729475, -16.2149339494962], [-61.520011858729475, -16.223917102337396]]]}, 'id': '+13178+10154', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -13.555920708502413], [-61.51102870588828, -13.555920708502413], [-61.51102870588828, -13.546937555661216], [-61.520011858729475, -13.546937555661216], [-61.520011858729475, -13.53795440282002], [-61.52899501157067, -13.53795440282002], [-61.52899501157067, -13.546937555661216], [-61.520011858729475, -13.546937555661216], [-61.520011858729475, -13.555920708502413]]]}, 'id': '+13178+9857', 'properties': {'count': 2, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -13.582870167026002], [-61.51102870588828, -13.582870167026002], [-61.51102870588828, -13.573887014184805], [-61.520011858729475, -13.573887014184805], [-61.520011858729475, -13.582870167026002]]]}, 'id': '+13178+9860', 'properties': {'count': 1, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -14.014061503403369], [-61.51102870588828, -14.014061503403369], [-61.51102870588828, -14.005078350562172], [-61.520011858729475, -14.005078350562172], [-61.520011858729475, -14.014061503403369]]]}, 'id': '+13178+9908', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -14.05897726760935], [-61.51102870588828, -14.05897726760935], [-61.51102870588828, -14.049994114768154], [-61.520011858729475, -14.049994114768154], [-61.520011858729475, -14.05897726760935]]]}, 'id': '+13178+9913', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -14.130842490338907], [-61.51102870588828, -14.130842490338907], [-61.51102870588828, -14.12185933749771], [-61.520011858729475, -14.12185933749771], [-61.520011858729475, -14.130842490338907]]]}, 'id': '+13178+9921', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -14.391353922733572], [-61.51102870588828, -14.391353922733572], [-61.51102870588828, -14.382370769892376], [-61.520011858729475, -14.382370769892376], [-61.520011858729475, -14.364404464209983], [-61.51102870588828, -14.364404464209983], [-61.51102870588828, -14.355421311368787], [-61.53797816441187, -14.355421311368787], [-61.53797816441187, -14.364404464209983], [-61.52899501157067, -14.364404464209983], [-61.52899501157067, -14.382370769892376], [-61.520011858729475, -14.382370769892376], [-61.520011858729475, -14.391353922733572]]]}, 'id': '+13178+9950', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -14.624915896604648], [-61.51102870588828, -14.624915896604648], [-61.51102870588828, -14.615932743763452], [-61.520011858729475, -14.615932743763452], [-61.520011858729475, -14.624915896604648]]]}, 'id': '+13178+9976', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -15.76577630743644], [-61.5020455530471, -15.76577630743644], [-61.5020455530471, -15.756793154595243], [-61.51102870588828, -15.756793154595243], [-61.51102870588828, -15.76577630743644]]]}, 'id': '+13179+10103', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -15.810692071642421], [-61.5020455530471, -15.810692071642421], [-61.5020455530471, -15.801708918801225], [-61.51102870588828, -15.801708918801225], [-61.51102870588828, -15.810692071642421]]]}, 'id': '+13179+10108', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -15.8286583773248], [-61.5020455530471, -15.8286583773248], [-61.5020455530471, -15.819675224483603], [-61.51102870588828, -15.819675224483603], [-61.51102870588828, -15.8286583773248]]]}, 'id': '+13179+10110', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -15.846624683007192], [-61.5020455530471, -15.846624683007192], [-61.5020455530471, -15.837641530165996], [-61.51102870588828, -15.837641530165996], [-61.51102870588828, -15.846624683007192]]]}, 'id': '+13179+10112', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -15.90052360005437], [-61.5020455530471, -15.90052360005437], [-61.5020455530471, -15.891540447213174], [-61.51102870588828, -15.891540447213174], [-61.51102870588828, -15.90052360005437]]]}, 'id': '+13179+10118', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -16.071203504037072], [-61.5020455530471, -16.071203504037072], [-61.5020455530471, -16.062220351195876], [-61.51102870588828, -16.062220351195876], [-61.51102870588828, -16.071203504037072]]]}, 'id': '+13179+10137', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -16.089169809719465], [-61.5020455530471, -16.089169809719465], [-61.5020455530471, -16.08018665687827], [-61.51102870588828, -16.08018665687827], [-61.51102870588828, -16.089169809719465]]]}, 'id': '+13179+10139', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -16.107136115401858], [-61.5020455530471, -16.107136115401858], [-61.5020455530471, -16.09815296256066], [-61.51102870588828, -16.09815296256066], [-61.51102870588828, -16.107136115401858]]]}, 'id': '+13179+10141', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -13.555920708502413], [-61.5020455530471, -13.555920708502413], [-61.5020455530471, -13.546937555661216], [-61.51102870588828, -13.546937555661216], [-61.51102870588828, -13.555920708502413]]]}, 'id': '+13179+9857', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -13.591853319867198], [-61.5020455530471, -13.591853319867198], [-61.5020455530471, -13.582870167026002], [-61.4930624002059, -13.582870167026002], [-61.4930624002059, -13.573887014184805], [-61.5020455530471, -13.573887014184805], [-61.5020455530471, -13.564903861343609], [-61.51102870588828, -13.564903861343609], [-61.51102870588828, -13.555920708502413], [-61.520011858729475, -13.555920708502413], [-61.520011858729475, -13.546937555661216], [-61.52899501157067, -13.546937555661216], [-61.52899501157067, -13.573887014184805], [-61.51102870588828, -13.573887014184805], [-61.51102870588828, -13.591853319867198]]]}, 'id': '+13179+9861', 'properties': {'count': 9, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -13.86134790510306], [-61.5020455530471, -13.86134790510306], [-61.5020455530471, -13.852364752261863], [-61.51102870588828, -13.852364752261863], [-61.51102870588828, -13.86134790510306]]]}, 'id': '+13179+9891', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -14.193724560227281], [-61.5020455530471, -14.193724560227281], [-61.5020455530471, -14.184741407386085], [-61.47509609452351, -14.184741407386085], [-61.47509609452351, -14.166775101703692], [-61.46611294168231, -14.166775101703692], [-61.46611294168231, -14.157791948862496], [-61.47509609452351, -14.157791948862496], [-61.47509609452351, -14.166775101703692], [-61.4930624002059, -14.166775101703692], [-61.4930624002059, -14.175758254544888], [-61.5020455530471, -14.175758254544888], [-61.5020455530471, -14.184741407386085], [-61.51102870588828, -14.184741407386085], [-61.51102870588828, -14.175758254544888], [-61.520011858729475, -14.175758254544888], [-61.520011858729475, -14.166775101703692], [-61.52899501157067, -14.166775101703692], [-61.52899501157067, -14.175758254544888], [-61.53797816441187, -14.175758254544888], [-61.53797816441187, -14.184741407386085], [-61.51102870588828, -14.184741407386085], [-61.51102870588828, -14.193724560227281]]]}, 'id': '+13179+9928', 'properties': {'count': 11, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -14.28355608863923], [-61.5020455530471, -14.28355608863923], [-61.5020455530471, -14.274572935798034], [-61.51102870588828, -14.274572935798034], [-61.51102870588828, -14.28355608863923]]]}, 'id': '+13179+9938', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -14.651865355128237], [-61.5020455530471, -14.651865355128237], [-61.5020455530471, -14.64288220228704], [-61.51102870588828, -14.64288220228704], [-61.51102870588828, -14.651865355128237]]]}, 'id': '+13179+9979', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -14.66983166081063], [-61.5020455530471, -14.66983166081063], [-61.5020455530471, -14.660848507969433], [-61.51102870588828, -14.660848507969433], [-61.51102870588828, -14.66983166081063]]]}, 'id': '+13179+9981', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.5020455530471, -15.505264875041775], [-61.4930624002059, -15.505264875041775], [-61.4930624002059, -15.496281722200578], [-61.5020455530471, -15.496281722200578], [-61.5020455530471, -15.505264875041775]]]}, 'id': '+13180+10074', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -15.523231180724167], [-61.4930624002059, -15.523231180724167], [-61.4930624002059, -15.51424802788297], [-61.51102870588828, -15.51424802788297], [-61.51102870588828, -15.523231180724167]]]}, 'id': '+13180+10076', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.5020455530471, -15.67594477902449], [-61.4930624002059, -15.67594477902449], [-61.4930624002059, -15.666961626183294], [-61.5020455530471, -15.666961626183294], [-61.5020455530471, -15.67594477902449]]]}, 'id': '+13180+10093', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.5020455530471, -15.819675224483603], [-61.4930624002059, -15.819675224483603], [-61.4930624002059, -15.810692071642421], [-61.484079247364704, -15.810692071642421], [-61.484079247364704, -15.801708918801225], [-61.5020455530471, -15.801708918801225], [-61.5020455530471, -15.819675224483603]]]}, 'id': '+13180+10109', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -15.882557294371978], [-61.4930624002059, -15.882557294371978], [-61.4930624002059, -15.873574141530781], [-61.51102870588828, -15.873574141530781], [-61.51102870588828, -15.882557294371978]]]}, 'id': '+13180+10116', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.5020455530471, -15.90052360005437], [-61.4930624002059, -15.90052360005437], [-61.4930624002059, -15.891540447213174], [-61.5020455530471, -15.891540447213174], [-61.5020455530471, -15.882557294371978], [-61.51102870588828, -15.882557294371978], [-61.51102870588828, -15.891540447213174], [-61.5020455530471, -15.891540447213174], [-61.5020455530471, -15.90052360005437]]]}, 'id': '+13180+10118', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.5020455530471, -15.909506752895567], [-61.4930624002059, -15.909506752895567], [-61.4930624002059, -15.90052360005437], [-61.5020455530471, -15.90052360005437], [-61.5020455530471, -15.909506752895567]]]}, 'id': '+13180+10119', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.5020455530471, -15.999338281307516], [-61.4930624002059, -15.999338281307516], [-61.4930624002059, -15.99035512846632], [-61.5020455530471, -15.99035512846632], [-61.5020455530471, -15.999338281307516]]]}, 'id': '+13180+10129', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.5020455530471, -16.196967643813807], [-61.4930624002059, -16.196967643813807], [-61.4930624002059, -16.18798449097261], [-61.5020455530471, -16.18798449097261], [-61.5020455530471, -16.196967643813807]]]}, 'id': '+13180+10151', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.5020455530471, -13.726600612485129], [-61.4930624002059, -13.726600612485129], [-61.4930624002059, -13.717617459643932], [-61.5020455530471, -13.717617459643932], [-61.5020455530471, -13.726600612485129]]]}, 'id': '+13180+9876', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.520011858729475, -13.960162586356205], [-61.4930624002059, -13.960162586356205], [-61.4930624002059, -13.933213127832616], [-61.5020455530471, -13.933213127832616], [-61.5020455530471, -13.92422997499142], [-61.520011858729475, -13.92422997499142], [-61.520011858729475, -13.933213127832616], [-61.51102870588828, -13.933213127832616], [-61.51102870588828, -13.951179433515009], [-61.520011858729475, -13.951179433515009], [-61.520011858729475, -13.960162586356205]]]}, 'id': '+13180+9902', 'properties': {'count': 9, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.51102870588828, -14.175758254544888], [-61.4930624002059, -14.175758254544888], [-61.4930624002059, -14.166775101703692], [-61.5020455530471, -14.166775101703692], [-61.5020455530471, -14.157791948862496], [-61.51102870588828, -14.157791948862496], [-61.51102870588828, -14.175758254544888]]]}, 'id': '+13180+9926', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.5020455530471, -14.28355608863923], [-61.4930624002059, -14.28355608863923], [-61.4930624002059, -14.265589782956837], [-61.520011858729475, -14.265589782956837], [-61.520011858729475, -14.274572935798034], [-61.5020455530471, -14.274572935798034], [-61.5020455530471, -14.28355608863923]]]}, 'id': '+13180+9938', 'properties': {'count': 4, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.5020455530471, -14.34643815852759], [-61.4930624002059, -14.34643815852759], [-61.4930624002059, -14.337455005686394], [-61.5020455530471, -14.337455005686394], [-61.5020455530471, -14.34643815852759]]]}, 'id': '+13180+9945', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.5020455530471, -14.786612647746153], [-61.4930624002059, -14.786612647746153], [-61.4930624002059, -14.777629494904971], [-61.5020455530471, -14.777629494904971], [-61.5020455530471, -14.786612647746153]]]}, 'id': '+13180+9994', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.4930624002059, -15.065090385823211], [-61.484079247364704, -15.065090385823211], [-61.484079247364704, -15.056107232982015], [-61.4930624002059, -15.056107232982015], [-61.4930624002059, -15.065090385823211]]]}, 'id': '+13181+10025', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.4930624002059, -15.226787136964731], [-61.484079247364704, -15.226787136964731], [-61.484079247364704, -15.217803984123535], [-61.4930624002059, -15.217803984123535], [-61.4930624002059, -15.226787136964731]]]}, 'id': '+13181+10043', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.4930624002059, -15.801708918801225], [-61.484079247364704, -15.801708918801225], [-61.484079247364704, -15.792725765960029], [-61.4930624002059, -15.792725765960029], [-61.4930624002059, -15.801708918801225]]]}, 'id': '+13181+10107', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.4930624002059, -15.846624683007192], [-61.484079247364704, -15.846624683007192], [-61.484079247364704, -15.837641530165996], [-61.4930624002059, -15.837641530165996], [-61.4930624002059, -15.846624683007192]]]}, 'id': '+13181+10112', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.4930624002059, -15.954422517101534], [-61.484079247364704, -15.954422517101534], [-61.484079247364704, -15.936456211419141], [-61.4930624002059, -15.936456211419141], [-61.4930624002059, -15.954422517101534]]]}, 'id': '+13181+10124', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.4930624002059, -16.026287739831105], [-61.484079247364704, -16.026287739831105], [-61.484079247364704, -16.01730458698991], [-61.4930624002059, -16.01730458698991], [-61.4930624002059, -16.026287739831105]]]}, 'id': '+13181+10132', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.4930624002059, -16.232900255178592], [-61.484079247364704, -16.232900255178592], [-61.484079247364704, -16.223917102337396], [-61.4930624002059, -16.223917102337396], [-61.4930624002059, -16.232900255178592]]]}, 'id': '+13181+10155', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.4930624002059, -13.753550071008718], [-61.484079247364704, -13.753550071008718], [-61.484079247364704, -13.744566918167521], [-61.4930624002059, -13.744566918167521], [-61.4930624002059, -13.753550071008718]]]}, 'id': '+13181+9879', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.4930624002059, -14.166775101703692], [-61.484079247364704, -14.166775101703692], [-61.484079247364704, -14.157791948862496], [-61.47509609452351, -14.157791948862496], [-61.47509609452351, -14.1488087960213], [-61.484079247364704, -14.1488087960213], [-61.484079247364704, -14.157791948862496], [-61.4930624002059, -14.157791948862496], [-61.4930624002059, -14.166775101703692]]]}, 'id': '+13181+9925', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.4930624002059, -14.211690865909674], [-61.484079247364704, -14.211690865909674], [-61.484079247364704, -14.202707713068477], [-61.4930624002059, -14.202707713068477], [-61.4930624002059, -14.211690865909674]]]}, 'id': '+13181+9930', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.4930624002059, -14.328471852845198], [-61.484079247364704, -14.328471852845198], [-61.484079247364704, -14.319488700004015], [-61.4930624002059, -14.319488700004015], [-61.4930624002059, -14.328471852845198]]]}, 'id': '+13181+9943', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.5020455530471, -14.364404464209983], [-61.484079247364704, -14.364404464209983], [-61.484079247364704, -14.355421311368787], [-61.5020455530471, -14.355421311368787], [-61.5020455530471, -14.364404464209983]]]}, 'id': '+13181+9947', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.4930624002059, -14.463219145463128], [-61.484079247364704, -14.463219145463128], [-61.484079247364704, -14.454235992621932], [-61.4930624002059, -14.454235992621932], [-61.4930624002059, -14.445252839780736], [-61.5020455530471, -14.445252839780736], [-61.5020455530471, -14.454235992621932], [-61.4930624002059, -14.454235992621932], [-61.4930624002059, -14.463219145463128]]]}, 'id': '+13181+9958', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.4930624002059, -14.651865355128237], [-61.484079247364704, -14.651865355128237], [-61.484079247364704, -14.64288220228704], [-61.4930624002059, -14.64288220228704], [-61.4930624002059, -14.651865355128237]]]}, 'id': '+13181+9979', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.484079247364704, -15.110006150029193], [-61.47509609452351, -15.110006150029193], [-61.47509609452351, -15.101022997187997], [-61.484079247364704, -15.101022997187997], [-61.484079247364704, -15.110006150029193]]]}, 'id': '+13182+10030', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.4930624002059, -15.172888219917553], [-61.47509609452351, -15.172888219917553], [-61.47509609452351, -15.163905067076357], [-61.4930624002059, -15.163905067076357], [-61.4930624002059, -15.172888219917553]]]}, 'id': '+13182+10037', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.484079247364704, -15.24475344264711], [-61.47509609452351, -15.24475344264711], [-61.47509609452351, -15.235770289805927], [-61.484079247364704, -15.235770289805927], [-61.484079247364704, -15.24475344264711]]]}, 'id': '+13182+10045', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.484079247364704, -15.343568123900269], [-61.47509609452351, -15.343568123900269], [-61.47509609452351, -15.334584971059073], [-61.484079247364704, -15.334584971059073], [-61.484079247364704, -15.343568123900269]]]}, 'id': '+13182+10056', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.4930624002059, -15.424416499471022], [-61.47509609452351, -15.424416499471022], [-61.47509609452351, -15.415433346629825], [-61.4930624002059, -15.415433346629825], [-61.4930624002059, -15.424416499471022]]]}, 'id': '+13182+10065', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.484079247364704, -15.810692071642421], [-61.47509609452351, -15.810692071642421], [-61.47509609452351, -15.792725765960029], [-61.484079247364704, -15.792725765960029], [-61.484079247364704, -15.810692071642421]]]}, 'id': '+13182+10108', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.484079247364704, -15.891540447213174], [-61.47509609452351, -15.891540447213174], [-61.47509609452351, -15.882557294371978], [-61.484079247364704, -15.882557294371978], [-61.484079247364704, -15.891540447213174]]]}, 'id': '+13182+10117', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.4930624002059, -15.972388822783927], [-61.47509609452351, -15.972388822783927], [-61.47509609452351, -15.92747305857796], [-61.5020455530471, -15.92747305857796], [-61.5020455530471, -15.936456211419141], [-61.484079247364704, -15.936456211419141], [-61.484079247364704, -15.954422517101534], [-61.4930624002059, -15.954422517101534], [-61.4930624002059, -15.972388822783927]]]}, 'id': '+13182+10126', 'properties': {'count': 9, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.484079247364704, -15.981371975625123], [-61.47509609452351, -15.981371975625123], [-61.47509609452351, -15.972388822783927], [-61.484079247364704, -15.972388822783927], [-61.484079247364704, -15.981371975625123]]]}, 'id': '+13182+10127', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.484079247364704, -16.01730458698991], [-61.47509609452351, -16.01730458698991], [-61.47509609452351, -15.999338281307516], [-61.5020455530471, -15.999338281307516], [-61.5020455530471, -15.99035512846632], [-61.51102870588828, -15.99035512846632], [-61.51102870588828, -15.981371975625123], [-61.520011858729475, -15.981371975625123], [-61.520011858729475, -15.99035512846632], [-61.52899501157067, -15.99035512846632], [-61.52899501157067, -15.999338281307516], [-61.51102870588828, -15.999338281307516], [-61.51102870588828, -16.008321434148712], [-61.484079247364704, -16.008321434148712], [-61.484079247364704, -16.01730458698991]]]}, 'id': '+13182+10131', 'properties': {'count': 9, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.484079247364704, -16.026287739831105], [-61.47509609452351, -16.026287739831105], [-61.47509609452351, -16.01730458698991], [-61.457129788841115, -16.01730458698991], [-61.457129788841115, -16.008321434148712], [-61.47509609452351, -16.008321434148712], [-61.47509609452351, -16.01730458698991], [-61.484079247364704, -16.01730458698991], [-61.484079247364704, -16.026287739831105]]]}, 'id': '+13182+10132', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.484079247364704, -16.062220351195876], [-61.47509609452351, -16.062220351195876], [-61.47509609452351, -16.05323719835468], [-61.484079247364704, -16.05323719835468], [-61.484079247364704, -16.062220351195876]]]}, 'id': '+13182+10136', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.4930624002059, -14.436269686939553], [-61.47509609452351, -14.436269686939553], [-61.47509609452351, -14.427286534098357], [-61.46611294168231, -14.427286534098357], [-61.46611294168231, -14.41830338125716], [-61.47509609452351, -14.41830338125716], [-61.47509609452351, -14.400337075574768], [-61.484079247364704, -14.400337075574768], [-61.484079247364704, -14.41830338125716], [-61.4930624002059, -14.41830338125716], [-61.4930624002059, -14.436269686939553]], [[-61.47509609452351, -14.427286534098357], [-61.47509609452351, -14.41830338125716], [-61.484079247364704, -14.41830338125716], [-61.484079247364704, -14.427286534098357], [-61.47509609452351, -14.427286534098357]]]}, 'id': '+13182+9955', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.47509609452351, -15.038140927299622], [-61.46611294168231, -15.038140927299622], [-61.46611294168231, -15.029157774458426], [-61.47509609452351, -15.029157774458426], [-61.47509609452351, -15.038140927299622]]]}, 'id': '+13183+10022', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.47509609452351, -15.361534429582647], [-61.46611294168231, -15.361534429582647], [-61.46611294168231, -15.352551276741465], [-61.47509609452351, -15.352551276741465], [-61.47509609452351, -15.361534429582647]]]}, 'id': '+13183+10058', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.47509609452351, -15.837641530165996], [-61.46611294168231, -15.837641530165996], [-61.46611294168231, -15.8286583773248], [-61.47509609452351, -15.8286583773248], [-61.47509609452351, -15.837641530165996]]]}, 'id': '+13183+10111', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.47509609452351, -15.855607835848389], [-61.46611294168231, -15.855607835848389], [-61.46611294168231, -15.846624683007192], [-61.457129788841115, -15.846624683007192], [-61.457129788841115, -15.837641530165996], [-61.43916348315872, -15.837641530165996], [-61.43916348315872, -15.8286583773248], [-61.44814663599992, -15.8286583773248], [-61.44814663599992, -15.819675224483603], [-61.457129788841115, -15.819675224483603], [-61.457129788841115, -15.8286583773248], [-61.46611294168231, -15.8286583773248], [-61.46611294168231, -15.819675224483603], [-61.47509609452351, -15.819675224483603], [-61.47509609452351, -15.8286583773248], [-61.484079247364704, -15.8286583773248], [-61.484079247364704, -15.837641530165996], [-61.47509609452351, -15.837641530165996], [-61.47509609452351, -15.855607835848389]], [[-61.46611294168231, -15.837641530165996], [-61.46611294168231, -15.8286583773248], [-61.47509609452351, -15.8286583773248], [-61.47509609452351, -15.837641530165996], [-61.46611294168231, -15.837641530165996]]]}, 'id': '+13183+10113', 'properties': {'count': 9, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.47509609452351, -16.2149339494962], [-61.46611294168231, -16.2149339494962], [-61.46611294168231, -16.179001338131414], [-61.47509609452351, -16.179001338131414], [-61.47509609452351, -16.170018185290218], [-61.44814663599992, -16.170018185290218], [-61.44814663599992, -16.196967643813807], [-61.43916348315872, -16.196967643813807], [-61.43916348315872, -16.170018185290218], [-61.430180330317526, -16.170018185290218], [-61.430180330317526, -16.16103503244902], [-61.43916348315872, -16.16103503244902], [-61.43916348315872, -16.15205187960784], [-61.42119717747633, -16.15205187960784], [-61.42119717747633, -16.170018185290218], [-61.40323087179394, -16.170018185290218], [-61.40323087179394, -16.16103503244902], [-61.39424771895274, -16.16103503244902], [-61.39424771895274, -16.15205187960784], [-61.40323087179394, -16.15205187960784], [-61.40323087179394, -16.143068726766643], [-61.430180330317526, -16.143068726766643], [-61.430180330317526, -16.134085573925447], [-61.42119717747633, -16.134085573925447], [-61.42119717747633, -16.12510242108425], [-61.430180330317526, -16.12510242108425], [-61.430180330317526, -16.134085573925447], [-61.43916348315872, -16.134085573925447], [-61.43916348315872, -16.12510242108425], [-61.44814663599992, -16.12510242108425], [-61.44814663599992, -16.134085573925447], [-61.43916348315872, -16.134085573925447], [-61.43916348315872, -16.143068726766643], [-61.457129788841115, -16.143068726766643], [-61.457129788841115, -16.134085573925447], [-61.46611294168231, -16.134085573925447], [-61.46611294168231, -16.143068726766643], [-61.47509609452351, -16.143068726766643], [-61.47509609452351, -16.15205187960784], [-61.484079247364704, -16.15205187960784], [-61.484079247364704, -16.16103503244902], [-61.4930624002059, -16.16103503244902], [-61.4930624002059, -16.170018185290218], [-61.484079247364704, -16.170018185290218], [-61.484079247364704, -16.179001338131414], [-61.47509609452351, -16.179001338131414], [-61.47509609452351, -16.18798449097261], [-61.484079247364704, -16.18798449097261], [-61.484079247364704, -16.205950796655003], [-61.47509609452351, -16.205950796655003], [-61.47509609452351, -16.2149339494962]], [[-61.47509609452351, -16.170018185290218], [-61.47509609452351, -16.16103503244902], [-61.484079247364704, -16.16103503244902], [-61.484079247364704, -16.170018185290218], [-61.47509609452351, -16.170018185290218]], [[-61.43916348315872, -16.170018185290218], [-61.43916348315872, -16.16103503244902], [-61.44814663599992, -16.16103503244902], [-61.44814663599992, -16.170018185290218], [-61.43916348315872, -16.170018185290218]]]}, 'id': '+13183+10153', 'properties': {'count': 37, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.47509609452351, -13.564903861343609], [-61.46611294168231, -13.564903861343609], [-61.46611294168231, -13.555920708502413], [-61.47509609452351, -13.555920708502413], [-61.47509609452351, -13.564903861343609]]]}, 'id': '+13183+9858', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.484079247364704, -13.726600612485129], [-61.46611294168231, -13.726600612485129], [-61.46611294168231, -13.717617459643932], [-61.457129788841115, -13.717617459643932], [-61.457129788841115, -13.708634306802736], [-61.47509609452351, -13.708634306802736], [-61.47509609452351, -13.717617459643932], [-61.484079247364704, -13.717617459643932], [-61.484079247364704, -13.726600612485129]]]}, 'id': '+13183+9876', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.47509609452351, -13.996095197720976], [-61.46611294168231, -13.996095197720976], [-61.46611294168231, -13.98711204487978], [-61.47509609452351, -13.98711204487978], [-61.47509609452351, -13.996095197720976]]]}, 'id': '+13183+9906', 'properties': {'count': 1, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.47509609452351, -14.067960420450547], [-61.46611294168231, -14.067960420450547], [-61.46611294168231, -14.049994114768154], [-61.484079247364704, -14.049994114768154], [-61.484079247364704, -14.032027809085761], [-61.46611294168231, -14.032027809085761], [-61.46611294168231, -14.041010961926958], [-61.457129788841115, -14.041010961926958], [-61.457129788841115, -14.023044656244565], [-61.44814663599992, -14.023044656244565], [-61.44814663599992, -14.032027809085761], [-61.43916348315872, -14.032027809085761], [-61.43916348315872, -14.023044656244565], [-61.44814663599992, -14.023044656244565], [-61.44814663599992, -14.014061503403369], [-61.457129788841115, -14.014061503403369], [-61.457129788841115, -14.005078350562172], [-61.46611294168231, -14.005078350562172], [-61.46611294168231, -13.996095197720976], [-61.47509609452351, -13.996095197720976], [-61.47509609452351, -13.98711204487978], [-61.484079247364704, -13.98711204487978], [-61.484079247364704, -13.978128892038598], [-61.46611294168231, -13.978128892038598], [-61.46611294168231, -13.969145739197401], [-61.484079247364704, -13.969145739197401], [-61.484079247364704, -13.960162586356205], [-61.47509609452351, -13.960162586356205], [-61.47509609452351, -13.951179433515009], [-61.484079247364704, -13.951179433515009], [-61.484079247364704, -13.960162586356205], [-61.4930624002059, -13.960162586356205], [-61.4930624002059, -13.969145739197401], [-61.5020455530471, -13.969145739197401], [-61.5020455530471, -13.98711204487978], [-61.51102870588828, -13.98711204487978], [-61.51102870588828, -13.960162586356205], [-61.520011858729475, -13.960162586356205], [-61.520011858729475, -13.951179433515009], [-61.51102870588828, -13.951179433515009], [-61.51102870588828, -13.942196280673812], [-61.520011858729475, -13.942196280673812], [-61.520011858729475, -13.933213127832616], [-61.52899501157067, -13.933213127832616], [-61.52899501157067, -13.942196280673812], [-61.520011858729475, -13.942196280673812], [-61.520011858729475, -13.951179433515009], [-61.52899501157067, -13.951179433515009], [-61.52899501157067, -13.960162586356205], [-61.520011858729475, -13.960162586356205], [-61.520011858729475, -13.978128892038598], [-61.52899501157067, -13.978128892038598], [-61.52899501157067, -13.996095197720976], [-61.5020455530471, -13.996095197720976], [-61.5020455530471, -14.005078350562172], [-61.4930624002059, -14.005078350562172], [-61.4930624002059, -14.014061503403369], [-61.484079247364704, -14.014061503403369], [-61.484079247364704, -14.005078350562172], [-61.47509609452351, -14.005078350562172], [-61.47509609452351, -14.014061503403369], [-61.46611294168231, -14.014061503403369], [-61.46611294168231, -14.023044656244565], [-61.484079247364704, -14.023044656244565], [-61.484079247364704, -14.032027809085761], [-61.5020455530471, -14.032027809085761], [-61.5020455530471, -14.023044656244565], [-61.520011858729475, -14.023044656244565], [-61.520011858729475, -14.032027809085761], [-61.51102870588828, -14.032027809085761], [-61.51102870588828, -14.041010961926958], [-61.4930624002059, -14.041010961926958], [-61.4930624002059, -14.05897726760935], [-61.47509609452351, -14.05897726760935], [-61.47509609452351, -14.067960420450547]]]}, 'id': '+13183+9914', 'properties': {'count': 45, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.484079247364704, -14.256606630115641], [-61.46611294168231, -14.256606630115641], [-61.46611294168231, -14.238640324433248], [-61.457129788841115, -14.238640324433248], [-61.457129788841115, -14.229657171592052], [-61.46611294168231, -14.229657171592052], [-61.46611294168231, -14.238640324433248], [-61.47509609452351, -14.238640324433248], [-61.47509609452351, -14.229657171592052], [-61.51102870588828, -14.229657171592052], [-61.51102870588828, -14.238640324433248], [-61.47509609452351, -14.238640324433248], [-61.47509609452351, -14.247623477274445], [-61.484079247364704, -14.247623477274445], [-61.484079247364704, -14.256606630115641]]]}, 'id': '+13183+9935', 'properties': {'count': 8, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.47509609452351, -14.34643815852759], [-61.46611294168231, -14.34643815852759], [-61.46611294168231, -14.337455005686394], [-61.457129788841115, -14.337455005686394], [-61.457129788841115, -14.328471852845198], [-61.46611294168231, -14.328471852845198], [-61.46611294168231, -14.337455005686394], [-61.47509609452351, -14.337455005686394], [-61.47509609452351, -14.34643815852759]]]}, 'id': '+13183+9945', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.47509609452351, -14.391353922733572], [-61.46611294168231, -14.391353922733572], [-61.46611294168231, -14.382370769892376], [-61.47509609452351, -14.382370769892376], [-61.47509609452351, -14.37338761705118], [-61.484079247364704, -14.37338761705118], [-61.484079247364704, -14.364404464209983], [-61.4930624002059, -14.364404464209983], [-61.4930624002059, -14.37338761705118], [-61.484079247364704, -14.37338761705118], [-61.484079247364704, -14.382370769892376], [-61.47509609452351, -14.382370769892376], [-61.47509609452351, -14.391353922733572]]]}, 'id': '+13183+9950', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.47509609452351, -14.64288220228704], [-61.46611294168231, -14.64288220228704], [-61.46611294168231, -14.633899049445844], [-61.47509609452351, -14.633899049445844], [-61.47509609452351, -14.64288220228704]]]}, 'id': '+13183+9978', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.46611294168231, -15.8286583773248], [-61.457129788841115, -15.8286583773248], [-61.457129788841115, -15.819675224483603], [-61.46611294168231, -15.819675224483603], [-61.46611294168231, -15.8286583773248]]]}, 'id': '+13184+10110', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.46611294168231, -15.918489905736763], [-61.457129788841115, -15.918489905736763], [-61.457129788841115, -15.909506752895567], [-61.46611294168231, -15.909506752895567], [-61.46611294168231, -15.918489905736763]]]}, 'id': '+13184+10120', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.47509609452351, -15.954422517101534], [-61.457129788841115, -15.954422517101534], [-61.457129788841115, -15.92747305857796], [-61.44814663599992, -15.92747305857796], [-61.44814663599992, -15.909506752895567], [-61.42119717747633, -15.909506752895567], [-61.42119717747633, -15.90052360005437], [-61.43916348315872, -15.90052360005437], [-61.43916348315872, -15.891540447213174], [-61.44814663599992, -15.891540447213174], [-61.44814663599992, -15.90052360005437], [-61.457129788841115, -15.90052360005437], [-61.457129788841115, -15.891540447213174], [-61.46611294168231, -15.891540447213174], [-61.46611294168231, -15.882557294371978], [-61.47509609452351, -15.882557294371978], [-61.47509609452351, -15.90052360005437], [-61.46611294168231, -15.90052360005437], [-61.46611294168231, -15.909506752895567], [-61.4930624002059, -15.909506752895567], [-61.4930624002059, -15.918489905736763], [-61.47509609452351, -15.918489905736763], [-61.47509609452351, -15.92747305857796], [-61.46611294168231, -15.92747305857796], [-61.46611294168231, -15.936456211419141], [-61.47509609452351, -15.936456211419141], [-61.47509609452351, -15.954422517101534]], [[-61.457129788841115, -15.918489905736763], [-61.457129788841115, -15.909506752895567], [-61.46611294168231, -15.909506752895567], [-61.46611294168231, -15.918489905736763], [-61.457129788841115, -15.918489905736763]]]}, 'id': '+13184+10124', 'properties': {'count': 21, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.46611294168231, -15.972388822783927], [-61.457129788841115, -15.972388822783927], [-61.457129788841115, -15.96340566994273], [-61.46611294168231, -15.96340566994273], [-61.46611294168231, -15.972388822783927]]]}, 'id': '+13184+10126', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.46611294168231, -16.071203504037072], [-61.457129788841115, -16.071203504037072], [-61.457129788841115, -16.062220351195876], [-61.46611294168231, -16.062220351195876], [-61.46611294168231, -16.071203504037072]]]}, 'id': '+13184+10137', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.46611294168231, -16.09815296256066], [-61.457129788841115, -16.09815296256066], [-61.457129788841115, -16.089169809719465], [-61.46611294168231, -16.089169809719465], [-61.46611294168231, -16.09815296256066]]]}, 'id': '+13184+10140', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.46611294168231, -16.196967643813807], [-61.457129788841115, -16.196967643813807], [-61.457129788841115, -16.18798449097261], [-61.46611294168231, -16.18798449097261], [-61.46611294168231, -16.196967643813807]]]}, 'id': '+13184+10151', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.46611294168231, -16.205950796655003], [-61.457129788841115, -16.205950796655003], [-61.457129788841115, -16.196967643813807], [-61.46611294168231, -16.196967643813807], [-61.46611294168231, -16.205950796655003]]]}, 'id': '+13184+10152', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.46611294168231, -13.690668001120343], [-61.457129788841115, -13.690668001120343], [-61.457129788841115, -13.681684848279147], [-61.46611294168231, -13.681684848279147], [-61.46611294168231, -13.690668001120343]]]}, 'id': '+13184+9872', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.46611294168231, -14.094909878974136], [-61.457129788841115, -14.094909878974136], [-61.457129788841115, -14.08592672613294], [-61.46611294168231, -14.08592672613294], [-61.46611294168231, -14.076943573291743], [-61.47509609452351, -14.076943573291743], [-61.47509609452351, -14.08592672613294], [-61.46611294168231, -14.08592672613294], [-61.46611294168231, -14.094909878974136]]]}, 'id': '+13184+9917', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.457129788841115, -15.217803984123535], [-61.44814663599992, -15.217803984123535], [-61.44814663599992, -15.208820831282338], [-61.457129788841115, -15.208820831282338], [-61.457129788841115, -15.217803984123535]]]}, 'id': '+13185+10042', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.457129788841115, -15.424416499471022], [-61.44814663599992, -15.424416499471022], [-61.44814663599992, -15.40645019378863], [-61.457129788841115, -15.40645019378863], [-61.457129788841115, -15.424416499471022]]]}, 'id': '+13185+10065', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.457129788841115, -15.693911084706883], [-61.44814663599992, -15.693911084706883], [-61.44814663599992, -15.684927931865687], [-61.457129788841115, -15.684927931865687], [-61.457129788841115, -15.693911084706883]]]}, 'id': '+13185+10095', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.46611294168231, -15.774759460277636], [-61.44814663599992, -15.774759460277636], [-61.44814663599992, -15.76577630743644], [-61.46611294168231, -15.76577630743644], [-61.46611294168231, -15.774759460277636]]]}, 'id': '+13185+10104', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.457129788841115, -16.044254045513483], [-61.44814663599992, -16.044254045513483], [-61.44814663599992, -16.0352708926723], [-61.457129788841115, -16.0352708926723], [-61.457129788841115, -16.044254045513483]]]}, 'id': '+13185+10134', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.457129788841115, -16.089169809719465], [-61.44814663599992, -16.089169809719465], [-61.44814663599992, -16.08018665687827], [-61.457129788841115, -16.08018665687827], [-61.457129788841115, -16.089169809719465]]]}, 'id': '+13185+10139', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.47509609452351, -16.12510242108425], [-61.44814663599992, -16.12510242108425], [-61.44814663599992, -16.116119268243054], [-61.457129788841115, -16.116119268243054], [-61.457129788841115, -16.107136115401858], [-61.46611294168231, -16.107136115401858], [-61.46611294168231, -16.116119268243054], [-61.47509609452351, -16.116119268243054], [-61.47509609452351, -16.12510242108425]]]}, 'id': '+13185+10143', 'properties': {'count': 4, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.457129788841115, -13.555920708502413], [-61.44814663599992, -13.555920708502413], [-61.44814663599992, -13.546937555661216], [-61.457129788841115, -13.546937555661216], [-61.457129788841115, -13.555920708502413]]]}, 'id': '+13185+9857', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.457129788841115, -13.753550071008718], [-61.44814663599992, -13.753550071008718], [-61.44814663599992, -13.744566918167521], [-61.457129788841115, -13.744566918167521], [-61.457129788841115, -13.753550071008718]]]}, 'id': '+13185+9879', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.457129788841115, -14.409320228415964], [-61.44814663599992, -14.409320228415964], [-61.44814663599992, -14.400337075574768], [-61.457129788841115, -14.400337075574768], [-61.457129788841115, -14.409320228415964]]]}, 'id': '+13185+9952', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.457129788841115, -14.553050673875092], [-61.44814663599992, -14.553050673875092], [-61.44814663599992, -14.526101215351503], [-61.43916348315872, -14.526101215351503], [-61.43916348315872, -14.50813490966911], [-61.430180330317526, -14.50813490966911], [-61.430180330317526, -14.499151756827914], [-61.43916348315872, -14.499151756827914], [-61.43916348315872, -14.481185451145521], [-61.44814663599992, -14.481185451145521], [-61.44814663599992, -14.499151756827914], [-61.46611294168231, -14.499151756827914], [-61.46611294168231, -14.535084368192699], [-61.457129788841115, -14.535084368192699], [-61.457129788841115, -14.553050673875092]], [[-61.44814663599992, -14.517118062510306], [-61.44814663599992, -14.50813490966911], [-61.457129788841115, -14.50813490966911], [-61.457129788841115, -14.517118062510306], [-61.44814663599992, -14.517118062510306]]]}, 'id': '+13185+9968', 'properties': {'count': 15, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.44814663599992, -15.45136595799461], [-61.43916348315872, -15.45136595799461], [-61.43916348315872, -15.442382805153414], [-61.44814663599992, -15.442382805153414], [-61.44814663599992, -15.45136595799461]]]}, 'id': '+13186+10068', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.44814663599992, -15.505264875041775], [-61.43916348315872, -15.505264875041775], [-61.43916348315872, -15.496281722200578], [-61.44814663599992, -15.496281722200578], [-61.44814663599992, -15.487298569359382], [-61.43916348315872, -15.487298569359382], [-61.43916348315872, -15.478315416518186], [-61.44814663599992, -15.478315416518186], [-61.44814663599992, -15.469332263677003], [-61.457129788841115, -15.469332263677003], [-61.457129788841115, -15.460349110835807], [-61.46611294168231, -15.460349110835807], [-61.46611294168231, -15.469332263677003], [-61.457129788841115, -15.469332263677003], [-61.457129788841115, -15.478315416518186], [-61.44814663599992, -15.478315416518186], [-61.44814663599992, -15.487298569359382], [-61.457129788841115, -15.487298569359382], [-61.457129788841115, -15.496281722200578], [-61.46611294168231, -15.496281722200578], [-61.46611294168231, -15.505264875041775], [-61.457129788841115, -15.505264875041775], [-61.457129788841115, -15.496281722200578], [-61.44814663599992, -15.496281722200578], [-61.44814663599992, -15.505264875041775]]]}, 'id': '+13186+10074', 'properties': {'count': 6, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.44814663599992, -15.67594477902449], [-61.43916348315872, -15.67594477902449], [-61.43916348315872, -15.666961626183294], [-61.44814663599992, -15.666961626183294], [-61.44814663599992, -15.67594477902449]]]}, 'id': '+13186+10093', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.44814663599992, -15.756793154595243], [-61.43916348315872, -15.756793154595243], [-61.43916348315872, -15.73882684891285], [-61.44814663599992, -15.73882684891285], [-61.44814663599992, -15.756793154595243]]]}, 'id': '+13186+10102', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.44814663599992, -15.801708918801225], [-61.43916348315872, -15.801708918801225], [-61.43916348315872, -15.792725765960029], [-61.44814663599992, -15.792725765960029], [-61.44814663599992, -15.801708918801225]]]}, 'id': '+13186+10107', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.44814663599992, -15.864590988689585], [-61.43916348315872, -15.864590988689585], [-61.43916348315872, -15.846624683007192], [-61.44814663599992, -15.846624683007192], [-61.44814663599992, -15.864590988689585]]]}, 'id': '+13186+10114', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.46611294168231, -15.891540447213174], [-61.43916348315872, -15.891540447213174], [-61.43916348315872, -15.882557294371978], [-61.457129788841115, -15.882557294371978], [-61.457129788841115, -15.873574141530781], [-61.47509609452351, -15.873574141530781], [-61.47509609452351, -15.864590988689585], [-61.46611294168231, -15.864590988689585], [-61.46611294168231, -15.855607835848389], [-61.4930624002059, -15.855607835848389], [-61.4930624002059, -15.882557294371978], [-61.5020455530471, -15.882557294371978], [-61.5020455530471, -15.891540447213174], [-61.484079247364704, -15.891540447213174], [-61.484079247364704, -15.882557294371978], [-61.46611294168231, -15.882557294371978], [-61.46611294168231, -15.891540447213174]]]}, 'id': '+13186+10117', 'properties': {'count': 14, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.457129788841115, -15.936456211419141], [-61.43916348315872, -15.936456211419141], [-61.43916348315872, -15.918489905736763], [-61.44814663599992, -15.918489905736763], [-61.44814663599992, -15.92747305857796], [-61.457129788841115, -15.92747305857796], [-61.457129788841115, -15.936456211419141]]]}, 'id': '+13186+10122', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.44814663599992, -15.972388822783927], [-61.43916348315872, -15.972388822783927], [-61.43916348315872, -15.954422517101534], [-61.44814663599992, -15.954422517101534], [-61.44814663599992, -15.936456211419141], [-61.457129788841115, -15.936456211419141], [-61.457129788841115, -15.954422517101534], [-61.44814663599992, -15.954422517101534], [-61.44814663599992, -15.972388822783927]]]}, 'id': '+13186+10126', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.44814663599992, -15.99035512846632], [-61.43916348315872, -15.99035512846632], [-61.43916348315872, -15.981371975625123], [-61.44814663599992, -15.981371975625123], [-61.44814663599992, -15.99035512846632]]]}, 'id': '+13186+10128', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.44814663599992, -16.09815296256066], [-61.43916348315872, -16.09815296256066], [-61.43916348315872, -16.089169809719465], [-61.44814663599992, -16.089169809719465], [-61.44814663599992, -16.09815296256066]]]}, 'id': '+13186+10140', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.44814663599992, -16.12510242108425], [-61.43916348315872, -16.12510242108425], [-61.43916348315872, -16.116119268243054], [-61.44814663599992, -16.116119268243054], [-61.44814663599992, -16.12510242108425]]]}, 'id': '+13186+10143', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.44814663599992, -14.005078350562172], [-61.43916348315872, -14.005078350562172], [-61.43916348315872, -13.996095197720976], [-61.44814663599992, -13.996095197720976], [-61.44814663599992, -14.005078350562172]]]}, 'id': '+13186+9907', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.44814663599992, -14.041010961926958], [-61.43916348315872, -14.041010961926958], [-61.43916348315872, -14.032027809085761], [-61.44814663599992, -14.032027809085761], [-61.44814663599992, -14.041010961926958]]]}, 'id': '+13186+9911', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.457129788841115, -14.076943573291743], [-61.43916348315872, -14.076943573291743], [-61.43916348315872, -14.067960420450547], [-61.44814663599992, -14.067960420450547], [-61.44814663599992, -14.05897726760935], [-61.457129788841115, -14.05897726760935], [-61.457129788841115, -14.076943573291743]]]}, 'id': '+13186+9915', 'properties': {'count': 3, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.44814663599992, -14.08592672613294], [-61.43916348315872, -14.08592672613294], [-61.43916348315872, -14.076943573291743], [-61.44814663599992, -14.076943573291743], [-61.44814663599992, -14.08592672613294]]]}, 'id': '+13186+9916', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.44814663599992, -14.328471852845198], [-61.43916348315872, -14.328471852845198], [-61.43916348315872, -14.319488700004015], [-61.44814663599992, -14.319488700004015], [-61.44814663599992, -14.328471852845198]]]}, 'id': '+13186+9943', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.43916348315872, -15.253736595488306], [-61.430180330317526, -15.253736595488306], [-61.430180330317526, -15.24475344264711], [-61.43916348315872, -15.24475344264711], [-61.43916348315872, -15.253736595488306]]]}, 'id': '+13187+10046', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.43916348315872, -15.666961626183294], [-61.430180330317526, -15.666961626183294], [-61.430180330317526, -15.657978473342098], [-61.43916348315872, -15.657978473342098], [-61.43916348315872, -15.666961626183294]]]}, 'id': '+13187+10092', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.43916348315872, -15.819675224483603], [-61.430180330317526, -15.819675224483603], [-61.430180330317526, -15.810692071642421], [-61.43916348315872, -15.810692071642421], [-61.43916348315872, -15.819675224483603]]]}, 'id': '+13187+10109', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.43916348315872, -15.855607835848389], [-61.430180330317526, -15.855607835848389], [-61.430180330317526, -15.846624683007192], [-61.43916348315872, -15.846624683007192], [-61.43916348315872, -15.855607835848389]]]}, 'id': '+13187+10113', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.43916348315872, -15.918489905736763], [-61.430180330317526, -15.918489905736763], [-61.430180330317526, -15.909506752895567], [-61.43916348315872, -15.909506752895567], [-61.43916348315872, -15.918489905736763]]]}, 'id': '+13187+10120', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.43916348315872, -15.936456211419141], [-61.430180330317526, -15.936456211419141], [-61.430180330317526, -15.918489905736763], [-61.43916348315872, -15.918489905736763], [-61.43916348315872, -15.936456211419141]]]}, 'id': '+13187+10122', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.43916348315872, -15.945439364260338], [-61.430180330317526, -15.945439364260338], [-61.430180330317526, -15.936456211419141], [-61.42119717747633, -15.936456211419141], [-61.42119717747633, -15.92747305857796], [-61.430180330317526, -15.92747305857796], [-61.430180330317526, -15.936456211419141], [-61.43916348315872, -15.936456211419141], [-61.43916348315872, -15.945439364260338]]]}, 'id': '+13187+10123', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.43916348315872, -16.08018665687827], [-61.430180330317526, -16.08018665687827], [-61.430180330317526, -16.071203504037072], [-61.43916348315872, -16.071203504037072], [-61.43916348315872, -16.062220351195876], [-61.44814663599992, -16.062220351195876], [-61.44814663599992, -16.071203504037072], [-61.43916348315872, -16.071203504037072], [-61.43916348315872, -16.08018665687827]]]}, 'id': '+13187+10138', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.44814663599992, -14.023044656244565], [-61.430180330317526, -14.023044656244565], [-61.430180330317526, -14.014061503403369], [-61.43916348315872, -14.014061503403369], [-61.43916348315872, -14.005078350562172], [-61.44814663599992, -14.005078350562172], [-61.44814663599992, -13.996095197720976], [-61.457129788841115, -13.996095197720976], [-61.457129788841115, -14.005078350562172], [-61.44814663599992, -14.005078350562172], [-61.44814663599992, -14.023044656244565]]]}, 'id': '+13187+9909', 'properties': {'count': 4, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.43916348315872, -14.103893031815318], [-61.430180330317526, -14.103893031815318], [-61.430180330317526, -14.094909878974136], [-61.42119717747633, -14.094909878974136], [-61.42119717747633, -14.08592672613294], [-61.430180330317526, -14.08592672613294], [-61.430180330317526, -14.076943573291743], [-61.43916348315872, -14.076943573291743], [-61.43916348315872, -14.08592672613294], [-61.430180330317526, -14.08592672613294], [-61.430180330317526, -14.094909878974136], [-61.43916348315872, -14.094909878974136], [-61.43916348315872, -14.103893031815318]]]}, 'id': '+13187+9918', 'properties': {'count': 3, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.43916348315872, -14.12185933749771], [-61.430180330317526, -14.12185933749771], [-61.430180330317526, -14.112876184656514], [-61.43916348315872, -14.112876184656514], [-61.43916348315872, -14.12185933749771]]]}, 'id': '+13187+9920', 'properties': {'count': 1, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.43916348315872, -14.1488087960213], [-61.430180330317526, -14.1488087960213], [-61.430180330317526, -14.139825643180103], [-61.43916348315872, -14.139825643180103], [-61.43916348315872, -14.130842490338907], [-61.430180330317526, -14.130842490338907], [-61.430180330317526, -14.12185933749771], [-61.43916348315872, -14.12185933749771], [-61.43916348315872, -14.112876184656514], [-61.44814663599992, -14.112876184656514], [-61.44814663599992, -14.103893031815318], [-61.457129788841115, -14.103893031815318], [-61.457129788841115, -14.112876184656514], [-61.47509609452351, -14.112876184656514], [-61.47509609452351, -14.12185933749771], [-61.457129788841115, -14.12185933749771], [-61.457129788841115, -14.130842490338907], [-61.46611294168231, -14.130842490338907], [-61.46611294168231, -14.139825643180103], [-61.43916348315872, -14.139825643180103], [-61.43916348315872, -14.1488087960213]]]}, 'id': '+13187+9923', 'properties': {'count': 12, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.43916348315872, -14.382370769892376], [-61.430180330317526, -14.382370769892376], [-61.430180330317526, -14.37338761705118], [-61.43916348315872, -14.37338761705118], [-61.43916348315872, -14.382370769892376]]]}, 'id': '+13187+9949', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -15.783742613118832], [-61.42119717747633, -15.783742613118832], [-61.42119717747633, -15.774759460277636], [-61.430180330317526, -15.774759460277636], [-61.430180330317526, -15.783742613118832]]]}, 'id': '+13188+10105', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -15.873574141530781], [-61.42119717747633, -15.873574141530781], [-61.42119717747633, -15.864590988689585], [-61.430180330317526, -15.864590988689585], [-61.430180330317526, -15.873574141530781]]]}, 'id': '+13188+10115', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -15.90052360005437], [-61.42119717747633, -15.90052360005437], [-61.42119717747633, -15.891540447213174], [-61.412214024635134, -15.891540447213174], [-61.412214024635134, -15.882557294371978], [-61.42119717747633, -15.882557294371978], [-61.42119717747633, -15.891540447213174], [-61.430180330317526, -15.891540447213174], [-61.430180330317526, -15.90052360005437]]]}, 'id': '+13188+10118', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -15.92747305857796], [-61.42119717747633, -15.92747305857796], [-61.42119717747633, -15.918489905736763], [-61.430180330317526, -15.918489905736763], [-61.430180330317526, -15.92747305857796]]]}, 'id': '+13188+10121', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.43916348315872, -15.99035512846632], [-61.42119717747633, -15.99035512846632], [-61.42119717747633, -15.981371975625123], [-61.43916348315872, -15.981371975625123], [-61.43916348315872, -15.99035512846632]]]}, 'id': '+13188+10128', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -16.107136115401858], [-61.42119717747633, -16.107136115401858], [-61.42119717747633, -16.09815296256066], [-61.430180330317526, -16.09815296256066], [-61.430180330317526, -16.107136115401858]]]}, 'id': '+13188+10141', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -16.116119268243054], [-61.42119717747633, -16.116119268243054], [-61.42119717747633, -16.107136115401858], [-61.430180330317526, -16.107136115401858], [-61.430180330317526, -16.116119268243054]]]}, 'id': '+13188+10142', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -16.12510242108425], [-61.42119717747633, -16.12510242108425], [-61.42119717747633, -16.116119268243054], [-61.430180330317526, -16.116119268243054], [-61.430180330317526, -16.12510242108425]]]}, 'id': '+13188+10143', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -16.223917102337396], [-61.42119717747633, -16.223917102337396], [-61.42119717747633, -16.2149339494962], [-61.430180330317526, -16.2149339494962], [-61.430180330317526, -16.223917102337396]]]}, 'id': '+13188+10154', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -13.564903861343609], [-61.42119717747633, -13.564903861343609], [-61.42119717747633, -13.546937555661216], [-61.430180330317526, -13.546937555661216], [-61.430180330317526, -13.564903861343609]]]}, 'id': '+13188+9858', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -14.014061503403369], [-61.42119717747633, -14.014061503403369], [-61.42119717747633, -14.005078350562172], [-61.430180330317526, -14.005078350562172], [-61.430180330317526, -14.014061503403369]]]}, 'id': '+13188+9908', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -14.049994114768154], [-61.42119717747633, -14.049994114768154], [-61.42119717747633, -14.041010961926958], [-61.430180330317526, -14.041010961926958], [-61.430180330317526, -14.049994114768154]]]}, 'id': '+13188+9912', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -14.067960420450547], [-61.42119717747633, -14.067960420450547], [-61.42119717747633, -14.049994114768154], [-61.430180330317526, -14.049994114768154], [-61.430180330317526, -14.041010961926958], [-61.43916348315872, -14.041010961926958], [-61.43916348315872, -14.05897726760935], [-61.44814663599992, -14.05897726760935], [-61.44814663599992, -14.067960420450547], [-61.43916348315872, -14.067960420450547], [-61.43916348315872, -14.05897726760935], [-61.430180330317526, -14.05897726760935], [-61.430180330317526, -14.067960420450547]]]}, 'id': '+13188+9914', 'properties': {'count': 5, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -14.319488700004015], [-61.42119717747633, -14.319488700004015], [-61.42119717747633, -14.310505547162819], [-61.412214024635134, -14.310505547162819], [-61.412214024635134, -14.301522394321623], [-61.42119717747633, -14.301522394321623], [-61.42119717747633, -14.310505547162819], [-61.430180330317526, -14.310505547162819], [-61.430180330317526, -14.319488700004015]]]}, 'id': '+13188+9942', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -14.355421311368787], [-61.42119717747633, -14.355421311368787], [-61.42119717747633, -14.34643815852759], [-61.430180330317526, -14.34643815852759], [-61.430180330317526, -14.355421311368787]]]}, 'id': '+13188+9946', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -14.400337075574768], [-61.42119717747633, -14.400337075574768], [-61.42119717747633, -14.391353922733572], [-61.430180330317526, -14.391353922733572], [-61.430180330317526, -14.400337075574768]]]}, 'id': '+13188+9951', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.43916348315872, -14.463219145463128], [-61.42119717747633, -14.463219145463128], [-61.42119717747633, -14.454235992621932], [-61.430180330317526, -14.454235992621932], [-61.430180330317526, -14.436269686939553], [-61.44814663599992, -14.436269686939553], [-61.44814663599992, -14.454235992621932], [-61.43916348315872, -14.454235992621932], [-61.43916348315872, -14.463219145463128]]]}, 'id': '+13188+9958', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -14.553050673875092], [-61.42119717747633, -14.553050673875092], [-61.42119717747633, -14.544067521033895], [-61.430180330317526, -14.544067521033895], [-61.430180330317526, -14.553050673875092]]]}, 'id': '+13188+9968', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -14.660848507969433], [-61.42119717747633, -14.660848507969433], [-61.42119717747633, -14.651865355128237], [-61.430180330317526, -14.651865355128237], [-61.430180330317526, -14.660848507969433]]]}, 'id': '+13188+9980', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.42119717747633, -15.280686054011895], [-61.412214024635134, -15.280686054011895], [-61.412214024635134, -15.271702901170698], [-61.42119717747633, -15.271702901170698], [-61.42119717747633, -15.280686054011895]]]}, 'id': '+13189+10049', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.42119717747633, -15.8286583773248], [-61.412214024635134, -15.8286583773248], [-61.412214024635134, -15.819675224483603], [-61.42119717747633, -15.819675224483603], [-61.42119717747633, -15.8286583773248]]]}, 'id': '+13189+10110', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.42119717747633, -15.909506752895567], [-61.412214024635134, -15.909506752895567], [-61.412214024635134, -15.90052360005437], [-61.42119717747633, -15.90052360005437], [-61.42119717747633, -15.909506752895567]]]}, 'id': '+13189+10119', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.430180330317526, -13.546937555661216], [-61.412214024635134, -13.546937555661216], [-61.412214024635134, -13.53795440282002], [-61.430180330317526, -13.53795440282002], [-61.430180330317526, -13.546937555661216]]]}, 'id': '+13189+9856', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.42119717747633, -13.7625332238499], [-61.412214024635134, -13.7625332238499], [-61.412214024635134, -13.753550071008718], [-61.42119717747633, -13.753550071008718], [-61.42119717747633, -13.7625332238499]]]}, 'id': '+13189+9880', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.42119717747633, -14.032027809085761], [-61.412214024635134, -14.032027809085761], [-61.412214024635134, -14.023044656244565], [-61.42119717747633, -14.023044656244565], [-61.42119717747633, -14.032027809085761]]]}, 'id': '+13189+9910', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.42119717747633, -14.157791948862496], [-61.412214024635134, -14.157791948862496], [-61.412214024635134, -14.130842490338907], [-61.42119717747633, -14.130842490338907], [-61.42119717747633, -14.157791948862496]]]}, 'id': '+13189+9924', 'properties': {'count': 3, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.42119717747633, -14.238640324433248], [-61.412214024635134, -14.238640324433248], [-61.412214024635134, -14.229657171592052], [-61.42119717747633, -14.229657171592052], [-61.42119717747633, -14.238640324433248]]]}, 'id': '+13189+9933', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -15.67594477902449], [-61.40323087179394, -15.67594477902449], [-61.40323087179394, -15.657978473342098], [-61.430180330317526, -15.657978473342098], [-61.430180330317526, -15.648995320500902], [-61.42119717747633, -15.648995320500902], [-61.42119717747633, -15.631029014818509], [-61.43916348315872, -15.631029014818509], [-61.43916348315872, -15.640012167659705], [-61.44814663599992, -15.640012167659705], [-61.44814663599992, -15.648995320500902], [-61.43916348315872, -15.648995320500902], [-61.43916348315872, -15.657978473342098], [-61.430180330317526, -15.657978473342098], [-61.430180330317526, -15.67594477902449], [-61.42119717747633, -15.67594477902449], [-61.42119717747633, -15.666961626183294], [-61.412214024635134, -15.666961626183294], [-61.412214024635134, -15.67594477902449]]]}, 'id': '+13190+10093', 'properties': {'count': 11, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -15.92747305857796], [-61.40323087179394, -15.92747305857796], [-61.40323087179394, -15.918489905736763], [-61.412214024635134, -15.918489905736763], [-61.412214024635134, -15.92747305857796]]]}, 'id': '+13190+10121', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -15.972388822783927], [-61.40323087179394, -15.972388822783927], [-61.40323087179394, -15.954422517101534], [-61.39424771895274, -15.954422517101534], [-61.39424771895274, -15.96340566994273], [-61.38526456611156, -15.96340566994273], [-61.38526456611156, -15.945439364260338], [-61.39424771895274, -15.945439364260338], [-61.39424771895274, -15.936456211419141], [-61.412214024635134, -15.936456211419141], [-61.412214024635134, -15.954422517101534], [-61.430180330317526, -15.954422517101534], [-61.430180330317526, -15.972388822783927], [-61.42119717747633, -15.972388822783927], [-61.42119717747633, -15.96340566994273], [-61.412214024635134, -15.96340566994273], [-61.412214024635134, -15.972388822783927]]]}, 'id': '+13190+10126', 'properties': {'count': 11, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -16.008321434148712], [-61.40323087179394, -16.008321434148712], [-61.40323087179394, -15.999338281307516], [-61.412214024635134, -15.999338281307516], [-61.412214024635134, -16.008321434148712]]]}, 'id': '+13190+10130', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -16.026287739831105], [-61.40323087179394, -16.026287739831105], [-61.40323087179394, -16.01730458698991], [-61.412214024635134, -16.01730458698991], [-61.412214024635134, -16.026287739831105]]]}, 'id': '+13190+10132', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -16.044254045513483], [-61.40323087179394, -16.044254045513483], [-61.40323087179394, -16.0352708926723], [-61.412214024635134, -16.0352708926723], [-61.412214024635134, -16.044254045513483]]]}, 'id': '+13190+10134', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -16.116119268243054], [-61.40323087179394, -16.116119268243054], [-61.40323087179394, -16.107136115401858], [-61.412214024635134, -16.107136115401858], [-61.412214024635134, -16.116119268243054]]]}, 'id': '+13190+10142', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -13.753550071008718], [-61.40323087179394, -13.753550071008718], [-61.40323087179394, -13.744566918167521], [-61.39424771895274, -13.744566918167521], [-61.39424771895274, -13.726600612485129], [-61.37628141327036, -13.726600612485129], [-61.37628141327036, -13.717617459643932], [-61.35831510758797, -13.717617459643932], [-61.35831510758797, -13.69965115396154], [-61.37628141327036, -13.69965115396154], [-61.37628141327036, -13.690668001120343], [-61.35831510758797, -13.690668001120343], [-61.35831510758797, -13.681684848279147], [-61.367298260429166, -13.681684848279147], [-61.367298260429166, -13.67270169543795], [-61.39424771895274, -13.67270169543795], [-61.39424771895274, -13.690668001120343], [-61.38526456611156, -13.690668001120343], [-61.38526456611156, -13.708634306802736], [-61.39424771895274, -13.708634306802736], [-61.39424771895274, -13.69965115396154], [-61.42119717747633, -13.69965115396154], [-61.42119717747633, -13.690668001120343], [-61.412214024635134, -13.690668001120343], [-61.412214024635134, -13.67270169543795], [-61.40323087179394, -13.67270169543795], [-61.40323087179394, -13.663718542596754], [-61.430180330317526, -13.663718542596754], [-61.430180330317526, -13.67270169543795], [-61.42119717747633, -13.67270169543795], [-61.42119717747633, -13.690668001120343], [-61.44814663599992, -13.690668001120343], [-61.44814663599992, -13.681684848279147], [-61.457129788841115, -13.681684848279147], [-61.457129788841115, -13.690668001120343], [-61.44814663599992, -13.690668001120343], [-61.44814663599992, -13.69965115396154], [-61.43916348315872, -13.69965115396154], [-61.43916348315872, -13.717617459643932], [-61.44814663599992, -13.717617459643932], [-61.44814663599992, -13.726600612485129], [-61.43916348315872, -13.726600612485129], [-61.43916348315872, -13.717617459643932], [-61.430180330317526, -13.717617459643932], [-61.430180330317526, -13.735583765326325], [-61.412214024635134, -13.735583765326325], [-61.412214024635134, -13.726600612485129], [-61.42119717747633, -13.726600612485129], [-61.42119717747633, -13.717617459643932], [-61.430180330317526, -13.717617459643932], [-61.430180330317526, -13.708634306802736], [-61.412214024635134, -13.708634306802736], [-61.412214024635134, -13.717617459643932], [-61.40323087179394, -13.717617459643932], [-61.40323087179394, -13.744566918167521], [-61.412214024635134, -13.744566918167521], [-61.412214024635134, -13.753550071008718]]]}, 'id': '+13190+9879', 'properties': {'count': 42, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -13.7625332238499], [-61.40323087179394, -13.7625332238499], [-61.40323087179394, -13.753550071008718], [-61.412214024635134, -13.753550071008718], [-61.412214024635134, -13.7625332238499]]]}, 'id': '+13190+9880', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -13.86134790510306], [-61.40323087179394, -13.86134790510306], [-61.40323087179394, -13.852364752261863], [-61.412214024635134, -13.852364752261863], [-61.412214024635134, -13.86134790510306]]]}, 'id': '+13190+9891', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -14.023044656244565], [-61.40323087179394, -14.023044656244565], [-61.40323087179394, -14.014061503403369], [-61.412214024635134, -14.014061503403369], [-61.412214024635134, -14.023044656244565]]]}, 'id': '+13190+9909', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -14.05897726760935], [-61.40323087179394, -14.05897726760935], [-61.40323087179394, -14.049994114768154], [-61.412214024635134, -14.049994114768154], [-61.412214024635134, -14.05897726760935]]]}, 'id': '+13190+9913', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -14.175758254544888], [-61.40323087179394, -14.175758254544888], [-61.40323087179394, -14.166775101703692], [-61.412214024635134, -14.166775101703692], [-61.412214024635134, -14.157791948862496], [-61.42119717747633, -14.157791948862496], [-61.42119717747633, -14.166775101703692], [-61.412214024635134, -14.166775101703692], [-61.412214024635134, -14.175758254544888]]]}, 'id': '+13190+9926', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -14.391353922733572], [-61.40323087179394, -14.391353922733572], [-61.40323087179394, -14.382370769892376], [-61.412214024635134, -14.382370769892376], [-61.412214024635134, -14.37338761705118], [-61.42119717747633, -14.37338761705118], [-61.42119717747633, -14.382370769892376], [-61.412214024635134, -14.382370769892376], [-61.412214024635134, -14.391353922733572]]]}, 'id': '+13190+9950', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.40323087179394, -15.163905067076357], [-61.39424771895274, -15.163905067076357], [-61.39424771895274, -15.15492191423516], [-61.40323087179394, -15.15492191423516], [-61.40323087179394, -15.163905067076357]]]}, 'id': '+13191+10036', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.40323087179394, -15.271702901170698], [-61.39424771895274, -15.271702901170698], [-61.39424771895274, -15.262719748329502], [-61.40323087179394, -15.262719748329502], [-61.40323087179394, -15.271702901170698]]]}, 'id': '+13191+10048', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.40323087179394, -15.837641530165996], [-61.39424771895274, -15.837641530165996], [-61.39424771895274, -15.8286583773248], [-61.38526456611156, -15.8286583773248], [-61.38526456611156, -15.819675224483603], [-61.40323087179394, -15.819675224483603], [-61.40323087179394, -15.837641530165996]]]}, 'id': '+13191+10111', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.40323087179394, -15.909506752895567], [-61.39424771895274, -15.909506752895567], [-61.39424771895274, -15.90052360005437], [-61.40323087179394, -15.90052360005437], [-61.40323087179394, -15.909506752895567]]]}, 'id': '+13191+10119', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.40323087179394, -15.96340566994273], [-61.39424771895274, -15.96340566994273], [-61.39424771895274, -15.954422517101534], [-61.40323087179394, -15.954422517101534], [-61.40323087179394, -15.96340566994273]]]}, 'id': '+13191+10125', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.40323087179394, -16.01730458698991], [-61.39424771895274, -16.01730458698991], [-61.39424771895274, -16.008321434148712], [-61.40323087179394, -16.008321434148712], [-61.40323087179394, -16.01730458698991]]]}, 'id': '+13191+10131', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -16.107136115401858], [-61.39424771895274, -16.107136115401858], [-61.39424771895274, -16.09815296256066], [-61.412214024635134, -16.09815296256066], [-61.412214024635134, -16.107136115401858]]]}, 'id': '+13191+10141', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.40323087179394, -16.15205187960784], [-61.39424771895274, -16.15205187960784], [-61.39424771895274, -16.143068726766643], [-61.40323087179394, -16.143068726766643], [-61.40323087179394, -16.15205187960784]]]}, 'id': '+13191+10146', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.40323087179394, -16.170018185290218], [-61.39424771895274, -16.170018185290218], [-61.39424771895274, -16.16103503244902], [-61.40323087179394, -16.16103503244902], [-61.40323087179394, -16.170018185290218]]]}, 'id': '+13191+10148', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.40323087179394, -13.53795440282002], [-61.39424771895274, -13.53795440282002], [-61.39424771895274, -13.528971249978824], [-61.40323087179394, -13.528971249978824], [-61.40323087179394, -13.53795440282002]]]}, 'id': '+13191+9855', 'properties': {'count': 1, 'label': 4}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.40323087179394, -14.05897726760935], [-61.39424771895274, -14.05897726760935], [-61.39424771895274, -14.049994114768154], [-61.40323087179394, -14.049994114768154], [-61.40323087179394, -14.05897726760935]]]}, 'id': '+13191+9913', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -14.12185933749771], [-61.39424771895274, -14.12185933749771], [-61.39424771895274, -14.112876184656514], [-61.40323087179394, -14.112876184656514], [-61.40323087179394, -14.103893031815318], [-61.412214024635134, -14.103893031815318], [-61.412214024635134, -14.12185933749771]]]}, 'id': '+13191+9920', 'properties': {'count': 3, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.40323087179394, -14.139825643180103], [-61.39424771895274, -14.139825643180103], [-61.39424771895274, -14.130842490338907], [-61.40323087179394, -14.130842490338907], [-61.40323087179394, -14.139825643180103]]]}, 'id': '+13191+9922', 'properties': {'count': 1, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.40323087179394, -14.364404464209983], [-61.39424771895274, -14.364404464209983], [-61.39424771895274, -14.355421311368787], [-61.40323087179394, -14.355421311368787], [-61.40323087179394, -14.364404464209983]]]}, 'id': '+13191+9947', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.40323087179394, -14.472202298304325], [-61.39424771895274, -14.472202298304325], [-61.39424771895274, -14.463219145463128], [-61.40323087179394, -14.463219145463128], [-61.40323087179394, -14.472202298304325]]]}, 'id': '+13191+9959', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.40323087179394, -14.50813490966911], [-61.39424771895274, -14.50813490966911], [-61.39424771895274, -14.490168603986717], [-61.40323087179394, -14.490168603986717], [-61.40323087179394, -14.50813490966911]]]}, 'id': '+13191+9963', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.39424771895274, -15.31661866537668], [-61.38526456611156, -15.31661866537668], [-61.38526456611156, -15.307635512535484], [-61.39424771895274, -15.307635512535484], [-61.39424771895274, -15.31661866537668]]]}, 'id': '+13192+10053', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.39424771895274, -15.801708918801225], [-61.38526456611156, -15.801708918801225], [-61.38526456611156, -15.792725765960029], [-61.39424771895274, -15.792725765960029], [-61.39424771895274, -15.801708918801225]]]}, 'id': '+13192+10107', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.39424771895274, -15.837641530165996], [-61.38526456611156, -15.837641530165996], [-61.38526456611156, -15.8286583773248], [-61.39424771895274, -15.8286583773248], [-61.39424771895274, -15.837641530165996]]]}, 'id': '+13192+10111', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -15.891540447213174], [-61.38526456611156, -15.891540447213174], [-61.38526456611156, -15.882557294371978], [-61.412214024635134, -15.882557294371978], [-61.412214024635134, -15.864590988689585], [-61.42119717747633, -15.864590988689585], [-61.42119717747633, -15.873574141530781], [-61.43916348315872, -15.873574141530781], [-61.43916348315872, -15.882557294371978], [-61.412214024635134, -15.882557294371978], [-61.412214024635134, -15.891540447213174]]]}, 'id': '+13192+10117', 'properties': {'count': 7, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.39424771895274, -15.92747305857796], [-61.38526456611156, -15.92747305857796], [-61.38526456611156, -15.909506752895567], [-61.39424771895274, -15.909506752895567], [-61.39424771895274, -15.92747305857796]]]}, 'id': '+13192+10121', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.39424771895274, -16.0352708926723], [-61.38526456611156, -16.0352708926723], [-61.38526456611156, -16.026287739831105], [-61.39424771895274, -16.026287739831105], [-61.39424771895274, -16.0352708926723]]]}, 'id': '+13192+10133', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.39424771895274, -16.089169809719465], [-61.38526456611156, -16.089169809719465], [-61.38526456611156, -16.08018665687827], [-61.39424771895274, -16.08018665687827], [-61.39424771895274, -16.089169809719465]]]}, 'id': '+13192+10139', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.39424771895274, -16.196967643813807], [-61.38526456611156, -16.196967643813807], [-61.38526456611156, -16.18798449097261], [-61.39424771895274, -16.18798449097261], [-61.39424771895274, -16.196967643813807]]]}, 'id': '+13192+10151', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.39424771895274, -16.205950796655003], [-61.38526456611156, -16.205950796655003], [-61.38526456611156, -16.196967643813807], [-61.39424771895274, -16.196967643813807], [-61.39424771895274, -16.205950796655003]]]}, 'id': '+13192+10152', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.39424771895274, -16.2149339494962], [-61.38526456611156, -16.2149339494962], [-61.38526456611156, -16.205950796655003], [-61.39424771895274, -16.205950796655003], [-61.39424771895274, -16.2149339494962]]]}, 'id': '+13192+10153', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.39424771895274, -13.708634306802736], [-61.38526456611156, -13.708634306802736], [-61.38526456611156, -13.690668001120343], [-61.39424771895274, -13.690668001120343], [-61.39424771895274, -13.67270169543795], [-61.412214024635134, -13.67270169543795], [-61.412214024635134, -13.690668001120343], [-61.42119717747633, -13.690668001120343], [-61.42119717747633, -13.69965115396154], [-61.39424771895274, -13.69965115396154], [-61.39424771895274, -13.708634306802736]]]}, 'id': '+13192+9874', 'properties': {'count': 9, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.39424771895274, -14.041010961926958], [-61.38526456611156, -14.041010961926958], [-61.38526456611156, -14.032027809085761], [-61.39424771895274, -14.032027809085761], [-61.39424771895274, -14.041010961926958]]]}, 'id': '+13192+9911', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.412214024635134, -14.076943573291743], [-61.38526456611156, -14.076943573291743], [-61.38526456611156, -14.067960420450547], [-61.367298260429166, -14.067960420450547], [-61.367298260429166, -14.05897726760935], [-61.38526456611156, -14.05897726760935], [-61.38526456611156, -14.067960420450547], [-61.39424771895274, -14.067960420450547], [-61.39424771895274, -14.05897726760935], [-61.40323087179394, -14.05897726760935], [-61.40323087179394, -14.067960420450547], [-61.412214024635134, -14.067960420450547], [-61.412214024635134, -14.076943573291743]]]}, 'id': '+13192+9915', 'properties': {'count': 6, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.39424771895274, -14.094909878974136], [-61.38526456611156, -14.094909878974136], [-61.38526456611156, -14.08592672613294], [-61.39424771895274, -14.08592672613294], [-61.39424771895274, -14.094909878974136]]]}, 'id': '+13192+9917', 'properties': {'count': 1, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.39424771895274, -14.112876184656514], [-61.38526456611156, -14.112876184656514], [-61.38526456611156, -14.103893031815318], [-61.39424771895274, -14.103893031815318], [-61.39424771895274, -14.08592672613294], [-61.412214024635134, -14.08592672613294], [-61.412214024635134, -14.103893031815318], [-61.39424771895274, -14.103893031815318], [-61.39424771895274, -14.112876184656514]]]}, 'id': '+13192+9919', 'properties': {'count': 5, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.39424771895274, -14.193724560227281], [-61.38526456611156, -14.193724560227281], [-61.38526456611156, -14.175758254544888], [-61.37628141327036, -14.175758254544888], [-61.37628141327036, -14.184741407386085], [-61.367298260429166, -14.184741407386085], [-61.367298260429166, -14.175758254544888], [-61.37628141327036, -14.175758254544888], [-61.37628141327036, -14.166775101703692], [-61.40323087179394, -14.166775101703692], [-61.40323087179394, -14.175758254544888], [-61.412214024635134, -14.175758254544888], [-61.412214024635134, -14.166775101703692], [-61.430180330317526, -14.166775101703692], [-61.430180330317526, -14.157791948862496], [-61.43916348315872, -14.157791948862496], [-61.43916348315872, -14.166775101703692], [-61.44814663599992, -14.166775101703692], [-61.44814663599992, -14.157791948862496], [-61.457129788841115, -14.157791948862496], [-61.457129788841115, -14.166775101703692], [-61.44814663599992, -14.166775101703692], [-61.44814663599992, -14.175758254544888], [-61.43916348315872, -14.175758254544888], [-61.43916348315872, -14.193724560227281], [-61.430180330317526, -14.193724560227281], [-61.430180330317526, -14.184741407386085], [-61.42119717747633, -14.184741407386085], [-61.42119717747633, -14.175758254544888], [-61.412214024635134, -14.175758254544888], [-61.412214024635134, -14.184741407386085], [-61.40323087179394, -14.184741407386085], [-61.40323087179394, -14.175758254544888], [-61.39424771895274, -14.175758254544888], [-61.39424771895274, -14.193724560227281]]]}, 'id': '+13192+9928', 'properties': {'count': 16, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.39424771895274, -14.229657171592052], [-61.38526456611156, -14.229657171592052], [-61.38526456611156, -14.220674018750856], [-61.39424771895274, -14.220674018750856], [-61.39424771895274, -14.229657171592052]]]}, 'id': '+13192+9932', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.39424771895274, -14.427286534098357], [-61.38526456611156, -14.427286534098357], [-61.38526456611156, -14.41830338125716], [-61.39424771895274, -14.41830338125716], [-61.39424771895274, -14.427286534098357]]]}, 'id': '+13192+9954', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.40323087179394, -14.445252839780736], [-61.38526456611156, -14.445252839780736], [-61.38526456611156, -14.436269686939553], [-61.40323087179394, -14.436269686939553], [-61.40323087179394, -14.427286534098357], [-61.39424771895274, -14.427286534098357], [-61.39424771895274, -14.41830338125716], [-61.38526456611156, -14.41830338125716], [-61.38526456611156, -14.409320228415964], [-61.39424771895274, -14.409320228415964], [-61.39424771895274, -14.400337075574768], [-61.40323087179394, -14.400337075574768], [-61.40323087179394, -14.41830338125716], [-61.412214024635134, -14.41830338125716], [-61.412214024635134, -14.436269686939553], [-61.40323087179394, -14.436269686939553], [-61.40323087179394, -14.445252839780736]]]}, 'id': '+13192+9956', 'properties': {'count': 8, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.39424771895274, -14.562033826716274], [-61.38526456611156, -14.562033826716274], [-61.38526456611156, -14.553050673875092], [-61.39424771895274, -14.553050673875092], [-61.39424771895274, -14.562033826716274]]]}, 'id': '+13192+9969', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.38526456611156, -14.876444176158117], [-61.37628141327036, -14.876444176158117], [-61.37628141327036, -14.849494717634528], [-61.38526456611156, -14.849494717634528], [-61.38526456611156, -14.831528411952135], [-61.39424771895274, -14.831528411952135], [-61.39424771895274, -14.840511564793331], [-61.40323087179394, -14.840511564793331], [-61.40323087179394, -14.86746102331692], [-61.38526456611156, -14.86746102331692], [-61.38526456611156, -14.876444176158117]]]}, 'id': '+13193+10004', 'properties': {'count': 10, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.38526456611156, -15.496281722200578], [-61.37628141327036, -15.496281722200578], [-61.37628141327036, -15.487298569359382], [-61.38526456611156, -15.487298569359382], [-61.38526456611156, -15.496281722200578]]]}, 'id': '+13193+10073', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.38526456611156, -15.954422517101534], [-61.37628141327036, -15.954422517101534], [-61.37628141327036, -15.945439364260338], [-61.38526456611156, -15.945439364260338], [-61.38526456611156, -15.954422517101534]]]}, 'id': '+13193+10124', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.38526456611156, -16.116119268243054], [-61.37628141327036, -16.116119268243054], [-61.37628141327036, -16.107136115401858], [-61.38526456611156, -16.107136115401858], [-61.38526456611156, -16.116119268243054]]]}, 'id': '+13193+10142', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.38526456611156, -16.16103503244902], [-61.37628141327036, -16.16103503244902], [-61.37628141327036, -16.15205187960784], [-61.38526456611156, -16.15205187960784], [-61.38526456611156, -16.16103503244902]]]}, 'id': '+13193+10147', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.38526456611156, -16.18798449097261], [-61.37628141327036, -16.18798449097261], [-61.37628141327036, -16.179001338131414], [-61.38526456611156, -16.179001338131414], [-61.38526456611156, -16.18798449097261]]]}, 'id': '+13193+10150', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.38526456611156, -13.528971249978824], [-61.37628141327036, -13.528971249978824], [-61.37628141327036, -13.519988097137642], [-61.38526456611156, -13.519988097137642], [-61.38526456611156, -13.528971249978824]]]}, 'id': '+13193+9854', 'properties': {'count': 1, 'label': 4}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.38526456611156, -13.735583765326325], [-61.37628141327036, -13.735583765326325], [-61.37628141327036, -13.726600612485129], [-61.367298260429166, -13.726600612485129], [-61.367298260429166, -13.717617459643932], [-61.37628141327036, -13.717617459643932], [-61.37628141327036, -13.726600612485129], [-61.38526456611156, -13.726600612485129], [-61.38526456611156, -13.735583765326325]]]}, 'id': '+13193+9877', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.38526456611156, -13.753550071008718], [-61.37628141327036, -13.753550071008718], [-61.37628141327036, -13.744566918167521], [-61.38526456611156, -13.744566918167521], [-61.38526456611156, -13.753550071008718]]]}, 'id': '+13193+9879', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.38526456611156, -14.049994114768154], [-61.37628141327036, -14.049994114768154], [-61.37628141327036, -14.041010961926958], [-61.38526456611156, -14.041010961926958], [-61.38526456611156, -14.049994114768154]]]}, 'id': '+13193+9912', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.38526456611156, -14.337455005686394], [-61.37628141327036, -14.337455005686394], [-61.37628141327036, -14.328471852845198], [-61.38526456611156, -14.328471852845198], [-61.38526456611156, -14.337455005686394]]]}, 'id': '+13193+9944', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.37628141327036, -15.783742613118832], [-61.367298260429166, -15.783742613118832], [-61.367298260429166, -15.774759460277636], [-61.37628141327036, -15.774759460277636], [-61.37628141327036, -15.783742613118832]]]}, 'id': '+13194+10105', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.37628141327036, -15.801708918801225], [-61.367298260429166, -15.801708918801225], [-61.367298260429166, -15.792725765960029], [-61.37628141327036, -15.792725765960029], [-61.37628141327036, -15.801708918801225]]]}, 'id': '+13194+10107', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.37628141327036, -15.90052360005437], [-61.367298260429166, -15.90052360005437], [-61.367298260429166, -15.882557294371978], [-61.37628141327036, -15.882557294371978], [-61.37628141327036, -15.90052360005437]]]}, 'id': '+13194+10118', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.37628141327036, -15.972388822783927], [-61.367298260429166, -15.972388822783927], [-61.367298260429166, -15.96340566994273], [-61.37628141327036, -15.96340566994273], [-61.37628141327036, -15.972388822783927]]]}, 'id': '+13194+10126', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.37628141327036, -16.026287739831105], [-61.367298260429166, -16.026287739831105], [-61.367298260429166, -16.01730458698991], [-61.37628141327036, -16.01730458698991], [-61.37628141327036, -16.026287739831105]]]}, 'id': '+13194+10132', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.37628141327036, -13.69965115396154], [-61.367298260429166, -13.69965115396154], [-61.367298260429166, -13.690668001120343], [-61.37628141327036, -13.690668001120343], [-61.37628141327036, -13.69965115396154]]]}, 'id': '+13194+9873', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.38526456611156, -14.041010961926958], [-61.367298260429166, -14.041010961926958], [-61.367298260429166, -14.032027809085761], [-61.38526456611156, -14.032027809085761], [-61.38526456611156, -14.041010961926958]]]}, 'id': '+13194+9911', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.37628141327036, -14.355421311368787], [-61.367298260429166, -14.355421311368787], [-61.367298260429166, -14.34643815852759], [-61.37628141327036, -14.34643815852759], [-61.37628141327036, -14.355421311368787]]]}, 'id': '+13194+9946', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.37628141327036, -14.463219145463128], [-61.367298260429166, -14.463219145463128], [-61.367298260429166, -14.454235992621932], [-61.35831510758797, -14.454235992621932], [-61.35831510758797, -14.445252839780736], [-61.367298260429166, -14.445252839780736], [-61.367298260429166, -14.454235992621932], [-61.37628141327036, -14.454235992621932], [-61.37628141327036, -14.463219145463128]]]}, 'id': '+13194+9958', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.367298260429166, -15.298652359694287], [-61.35831510758797, -15.298652359694287], [-61.35831510758797, -15.289669206853091], [-61.367298260429166, -15.289669206853091], [-61.367298260429166, -15.298652359694287]]]}, 'id': '+13195+10051', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.367298260429166, -15.559163792088953], [-61.35831510758797, -15.559163792088953], [-61.35831510758797, -15.550180639247756], [-61.367298260429166, -15.550180639247756], [-61.367298260429166, -15.559163792088953]]]}, 'id': '+13195+10080', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.367298260429166, -15.76577630743644], [-61.35831510758797, -15.76577630743644], [-61.35831510758797, -15.756793154595243], [-61.367298260429166, -15.756793154595243], [-61.367298260429166, -15.76577630743644]]]}, 'id': '+13195+10103', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.367298260429166, -15.810692071642421], [-61.35831510758797, -15.810692071642421], [-61.35831510758797, -15.801708918801225], [-61.34933195474677, -15.801708918801225], [-61.34933195474677, -15.792725765960029], [-61.35831510758797, -15.792725765960029], [-61.35831510758797, -15.801708918801225], [-61.367298260429166, -15.801708918801225], [-61.367298260429166, -15.810692071642421]]]}, 'id': '+13195+10108', 'properties': {'count': 2, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.367298260429166, -15.882557294371978], [-61.35831510758797, -15.882557294371978], [-61.35831510758797, -15.873574141530781], [-61.367298260429166, -15.873574141530781], [-61.367298260429166, -15.882557294371978]]]}, 'id': '+13195+10116', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.37628141327036, -16.01730458698991], [-61.35831510758797, -16.01730458698991], [-61.35831510758797, -16.008321434148712], [-61.37628141327036, -16.008321434148712], [-61.37628141327036, -16.01730458698991]]]}, 'id': '+13195+10131', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.37628141327036, -16.05323719835468], [-61.35831510758797, -16.05323719835468], [-61.35831510758797, -16.044254045513483], [-61.37628141327036, -16.044254045513483], [-61.37628141327036, -16.05323719835468]]]}, 'id': '+13195+10135', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.367298260429166, -16.071203504037072], [-61.35831510758797, -16.071203504037072], [-61.35831510758797, -16.062220351195876], [-61.367298260429166, -16.062220351195876], [-61.367298260429166, -16.071203504037072]]]}, 'id': '+13195+10137', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.367298260429166, -16.12510242108425], [-61.35831510758797, -16.12510242108425], [-61.35831510758797, -16.116119268243054], [-61.367298260429166, -16.116119268243054], [-61.367298260429166, -16.12510242108425]]]}, 'id': '+13195+10143', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.367298260429166, -16.205950796655003], [-61.35831510758797, -16.205950796655003], [-61.35831510758797, -16.196967643813807], [-61.367298260429166, -16.196967643813807], [-61.367298260429166, -16.205950796655003]]]}, 'id': '+13195+10152', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.367298260429166, -13.726600612485129], [-61.35831510758797, -13.726600612485129], [-61.35831510758797, -13.717617459643932], [-61.367298260429166, -13.717617459643932], [-61.367298260429166, -13.726600612485129]]]}, 'id': '+13195+9876', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.367298260429166, -14.076943573291743], [-61.35831510758797, -14.076943573291743], [-61.35831510758797, -14.067960420450547], [-61.367298260429166, -14.067960420450547], [-61.367298260429166, -14.076943573291743]]]}, 'id': '+13195+9915', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.367298260429166, -14.175758254544888], [-61.35831510758797, -14.175758254544888], [-61.35831510758797, -14.166775101703692], [-61.367298260429166, -14.166775101703692], [-61.367298260429166, -14.157791948862496], [-61.37628141327036, -14.157791948862496], [-61.37628141327036, -14.139825643180103], [-61.38526456611156, -14.139825643180103], [-61.38526456611156, -14.130842490338907], [-61.37628141327036, -14.130842490338907], [-61.37628141327036, -14.12185933749771], [-61.367298260429166, -14.12185933749771], [-61.367298260429166, -14.112876184656514], [-61.37628141327036, -14.112876184656514], [-61.37628141327036, -14.103893031815318], [-61.38526456611156, -14.103893031815318], [-61.38526456611156, -14.112876184656514], [-61.39424771895274, -14.112876184656514], [-61.39424771895274, -14.103893031815318], [-61.40323087179394, -14.103893031815318], [-61.40323087179394, -14.112876184656514], [-61.39424771895274, -14.112876184656514], [-61.39424771895274, -14.12185933749771], [-61.40323087179394, -14.12185933749771], [-61.40323087179394, -14.130842490338907], [-61.39424771895274, -14.130842490338907], [-61.39424771895274, -14.1488087960213], [-61.38526456611156, -14.1488087960213], [-61.38526456611156, -14.157791948862496], [-61.37628141327036, -14.157791948862496], [-61.37628141327036, -14.166775101703692], [-61.367298260429166, -14.166775101703692], [-61.367298260429166, -14.175758254544888]]]}, 'id': '+13195+9926', 'properties': {'count': 14, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.367298260429166, -14.184741407386085], [-61.35831510758797, -14.184741407386085], [-61.35831510758797, -14.175758254544888], [-61.367298260429166, -14.175758254544888], [-61.367298260429166, -14.184741407386085]]]}, 'id': '+13195+9927', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.367298260429166, -14.535084368192699], [-61.35831510758797, -14.535084368192699], [-61.35831510758797, -14.526101215351503], [-61.367298260429166, -14.526101215351503], [-61.367298260429166, -14.517118062510306], [-61.37628141327036, -14.517118062510306], [-61.37628141327036, -14.526101215351503], [-61.367298260429166, -14.526101215351503], [-61.367298260429166, -14.535084368192699]]]}, 'id': '+13195+9966', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.35831510758797, -15.873574141530781], [-61.34933195474677, -15.873574141530781], [-61.34933195474677, -15.864590988689585], [-61.35831510758797, -15.864590988689585], [-61.35831510758797, -15.855607835848389], [-61.322382496223184, -15.855607835848389], [-61.322382496223184, -15.864590988689585], [-61.31339934338199, -15.864590988689585], [-61.31339934338199, -15.855607835848389], [-61.322382496223184, -15.855607835848389], [-61.322382496223184, -15.846624683007192], [-61.34933195474677, -15.846624683007192], [-61.34933195474677, -15.801708918801225], [-61.35831510758797, -15.801708918801225], [-61.35831510758797, -15.810692071642421], [-61.367298260429166, -15.810692071642421], [-61.367298260429166, -15.819675224483603], [-61.37628141327036, -15.819675224483603], [-61.37628141327036, -15.8286583773248], [-61.38526456611156, -15.8286583773248], [-61.38526456611156, -15.837641530165996], [-61.40323087179394, -15.837641530165996], [-61.40323087179394, -15.855607835848389], [-61.412214024635134, -15.855607835848389], [-61.412214024635134, -15.873574141530781], [-61.40323087179394, -15.873574141530781], [-61.40323087179394, -15.864590988689585], [-61.35831510758797, -15.864590988689585], [-61.35831510758797, -15.873574141530781]], [[-61.35831510758797, -15.8286583773248], [-61.35831510758797, -15.819675224483603], [-61.367298260429166, -15.819675224483603], [-61.367298260429166, -15.8286583773248], [-61.35831510758797, -15.8286583773248]], [[-61.37628141327036, -15.855607835848389], [-61.37628141327036, -15.846624683007192], [-61.38526456611156, -15.846624683007192], [-61.38526456611156, -15.855607835848389], [-61.37628141327036, -15.855607835848389]]]}, 'id': '+13196+10115', 'properties': {'count': 32, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.35831510758797, -16.071203504037072], [-61.34933195474677, -16.071203504037072], [-61.34933195474677, -16.062220351195876], [-61.35831510758797, -16.062220351195876], [-61.35831510758797, -16.071203504037072]]]}, 'id': '+13196+10137', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.35831510758797, -16.170018185290218], [-61.34933195474677, -16.170018185290218], [-61.34933195474677, -16.16103503244902], [-61.35831510758797, -16.16103503244902], [-61.35831510758797, -16.170018185290218]]]}, 'id': '+13196+10148', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.35831510758797, -13.564903861343609], [-61.34933195474677, -13.564903861343609], [-61.34933195474677, -13.555920708502413], [-61.35831510758797, -13.555920708502413], [-61.35831510758797, -13.564903861343609]]]}, 'id': '+13196+9858', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.35831510758797, -13.690668001120343], [-61.34933195474677, -13.690668001120343], [-61.34933195474677, -13.681684848279147], [-61.35831510758797, -13.681684848279147], [-61.35831510758797, -13.67270169543795], [-61.367298260429166, -13.67270169543795], [-61.367298260429166, -13.681684848279147], [-61.35831510758797, -13.681684848279147], [-61.35831510758797, -13.690668001120343]]]}, 'id': '+13196+9872', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.35831510758797, -13.708634306802736], [-61.34933195474677, -13.708634306802736], [-61.34933195474677, -13.69965115396154], [-61.35831510758797, -13.69965115396154], [-61.35831510758797, -13.708634306802736]]]}, 'id': '+13196+9874', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.367298260429166, -14.12185933749771], [-61.34933195474677, -14.12185933749771], [-61.34933195474677, -14.112876184656514], [-61.367298260429166, -14.112876184656514], [-61.367298260429166, -14.12185933749771]]]}, 'id': '+13196+9920', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.367298260429166, -14.130842490338907], [-61.34933195474677, -14.130842490338907], [-61.34933195474677, -14.12185933749771], [-61.367298260429166, -14.12185933749771], [-61.367298260429166, -14.130842490338907]]]}, 'id': '+13196+9921', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.35831510758797, -14.157791948862496], [-61.34933195474677, -14.157791948862496], [-61.34933195474677, -14.1488087960213], [-61.35831510758797, -14.1488087960213], [-61.35831510758797, -14.157791948862496]]]}, 'id': '+13196+9924', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.35831510758797, -14.184741407386085], [-61.34933195474677, -14.184741407386085], [-61.34933195474677, -14.175758254544888], [-61.35831510758797, -14.175758254544888], [-61.35831510758797, -14.184741407386085]]]}, 'id': '+13196+9927', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.35831510758797, -14.328471852845198], [-61.34933195474677, -14.328471852845198], [-61.34933195474677, -14.319488700004015], [-61.35831510758797, -14.319488700004015], [-61.35831510758797, -14.328471852845198]]]}, 'id': '+13196+9943', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.35831510758797, -14.364404464209983], [-61.34933195474677, -14.364404464209983], [-61.34933195474677, -14.355421311368787], [-61.35831510758797, -14.355421311368787], [-61.35831510758797, -14.364404464209983]]]}, 'id': '+13196+9947', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.35831510758797, -14.64288220228704], [-61.34933195474677, -14.64288220228704], [-61.34933195474677, -14.633899049445844], [-61.35831510758797, -14.633899049445844], [-61.35831510758797, -14.64288220228704]]]}, 'id': '+13196+9978', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34933195474677, -15.101022997187997], [-61.34034880190558, -15.101022997187997], [-61.34034880190558, -15.0920398443468], [-61.34933195474677, -15.0920398443468], [-61.34933195474677, -15.101022997187997]]]}, 'id': '+13197+10029', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34933195474677, -15.792725765960029], [-61.34034880190558, -15.792725765960029], [-61.34034880190558, -15.783742613118832], [-61.33136564906438, -15.783742613118832], [-61.33136564906438, -15.774759460277636], [-61.34933195474677, -15.774759460277636], [-61.34933195474677, -15.792725765960029]]]}, 'id': '+13197+10106', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34933195474677, -15.92747305857796], [-61.34034880190558, -15.92747305857796], [-61.34034880190558, -15.918489905736763], [-61.34933195474677, -15.918489905736763], [-61.34933195474677, -15.92747305857796]]]}, 'id': '+13197+10121', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34933195474677, -16.01730458698991], [-61.34034880190558, -16.01730458698991], [-61.34034880190558, -16.008321434148712], [-61.34933195474677, -16.008321434148712], [-61.34933195474677, -16.01730458698991]]]}, 'id': '+13197+10131', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34933195474677, -13.717617459643932], [-61.34034880190558, -13.717617459643932], [-61.34034880190558, -13.708634306802736], [-61.34933195474677, -13.708634306802736], [-61.34933195474677, -13.717617459643932]]]}, 'id': '+13197+9875', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34933195474677, -13.726600612485129], [-61.34034880190558, -13.726600612485129], [-61.34034880190558, -13.717617459643932], [-61.34933195474677, -13.717617459643932], [-61.34933195474677, -13.726600612485129]]]}, 'id': '+13197+9876', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34933195474677, -14.139825643180103], [-61.34034880190558, -14.139825643180103], [-61.34034880190558, -14.130842490338907], [-61.34933195474677, -14.130842490338907], [-61.34933195474677, -14.139825643180103]]]}, 'id': '+13197+9922', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34933195474677, -14.184741407386085], [-61.34034880190558, -14.184741407386085], [-61.34034880190558, -14.166775101703692], [-61.33136564906438, -14.166775101703692], [-61.33136564906438, -14.175758254544888], [-61.322382496223184, -14.175758254544888], [-61.322382496223184, -14.1488087960213], [-61.33136564906438, -14.1488087960213], [-61.33136564906438, -14.157791948862496], [-61.34034880190558, -14.157791948862496], [-61.34034880190558, -14.166775101703692], [-61.34933195474677, -14.166775101703692], [-61.34933195474677, -14.157791948862496], [-61.35831510758797, -14.157791948862496], [-61.35831510758797, -14.166775101703692], [-61.34933195474677, -14.166775101703692], [-61.34933195474677, -14.184741407386085]]]}, 'id': '+13197+9927', 'properties': {'count': 7, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34933195474677, -14.301522394321623], [-61.34034880190558, -14.301522394321623], [-61.34034880190558, -14.292539241480426], [-61.34933195474677, -14.292539241480426], [-61.34933195474677, -14.301522394321623]]]}, 'id': '+13197+9940', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34933195474677, -14.436269686939553], [-61.34034880190558, -14.436269686939553], [-61.34034880190558, -14.427286534098357], [-61.34933195474677, -14.427286534098357], [-61.34933195474677, -14.436269686939553]]]}, 'id': '+13197+9955', 'properties': {'count': 1, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34933195474677, -14.463219145463128], [-61.34034880190558, -14.463219145463128], [-61.34034880190558, -14.445252839780736], [-61.33136564906438, -14.445252839780736], [-61.33136564906438, -14.436269686939553], [-61.34034880190558, -14.436269686939553], [-61.34034880190558, -14.445252839780736], [-61.34933195474677, -14.445252839780736], [-61.34933195474677, -14.463219145463128]]]}, 'id': '+13197+9958', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34933195474677, -14.526101215351503], [-61.34034880190558, -14.526101215351503], [-61.34034880190558, -14.517118062510306], [-61.34933195474677, -14.517118062510306], [-61.34933195474677, -14.526101215351503]]]}, 'id': '+13197+9965', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34933195474677, -14.714747425016597], [-61.34034880190558, -14.714747425016597], [-61.34034880190558, -14.7057642721754], [-61.34933195474677, -14.7057642721754], [-61.34933195474677, -14.714747425016597]]]}, 'id': '+13197+9986', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34034880190558, -15.801708918801225], [-61.33136564906438, -15.801708918801225], [-61.33136564906438, -15.792725765960029], [-61.34034880190558, -15.792725765960029], [-61.34034880190558, -15.801708918801225]]]}, 'id': '+13198+10107', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34034880190558, -15.810692071642421], [-61.33136564906438, -15.810692071642421], [-61.33136564906438, -15.801708918801225], [-61.34034880190558, -15.801708918801225], [-61.34034880190558, -15.810692071642421]]]}, 'id': '+13198+10108', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34933195474677, -15.882557294371978], [-61.33136564906438, -15.882557294371978], [-61.33136564906438, -15.873574141530781], [-61.34933195474677, -15.873574141530781], [-61.34933195474677, -15.882557294371978]]]}, 'id': '+13198+10116', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34034880190558, -16.044254045513483], [-61.33136564906438, -16.044254045513483], [-61.33136564906438, -16.01730458698991], [-61.34034880190558, -16.01730458698991], [-61.34034880190558, -16.044254045513483]]]}, 'id': '+13198+10134', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34034880190558, -16.16103503244902], [-61.33136564906438, -16.16103503244902], [-61.33136564906438, -16.15205187960784], [-61.34034880190558, -16.15205187960784], [-61.34034880190558, -16.16103503244902]]]}, 'id': '+13198+10147', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34034880190558, -13.511004944296445], [-61.33136564906438, -13.511004944296445], [-61.33136564906438, -13.502021791455249], [-61.34034880190558, -13.502021791455249], [-61.34034880190558, -13.511004944296445]]]}, 'id': '+13198+9852', 'properties': {'count': 1, 'label': 4}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34933195474677, -14.112876184656514], [-61.33136564906438, -14.112876184656514], [-61.33136564906438, -14.094909878974136], [-61.34034880190558, -14.094909878974136], [-61.34034880190558, -14.08592672613294], [-61.34933195474677, -14.08592672613294], [-61.34933195474677, -14.094909878974136], [-61.35831510758797, -14.094909878974136], [-61.35831510758797, -14.103893031815318], [-61.34933195474677, -14.103893031815318], [-61.34933195474677, -14.112876184656514]]]}, 'id': '+13198+9919', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34034880190558, -14.34643815852759], [-61.33136564906438, -14.34643815852759], [-61.33136564906438, -14.337455005686394], [-61.34034880190558, -14.337455005686394], [-61.34034880190558, -14.34643815852759]]]}, 'id': '+13198+9945', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34034880190558, -14.37338761705118], [-61.33136564906438, -14.37338761705118], [-61.33136564906438, -14.364404464209983], [-61.34034880190558, -14.364404464209983], [-61.34034880190558, -14.37338761705118]]]}, 'id': '+13198+9948', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34034880190558, -14.409320228415964], [-61.33136564906438, -14.409320228415964], [-61.33136564906438, -14.391353922733572], [-61.34034880190558, -14.391353922733572], [-61.34034880190558, -14.409320228415964]]]}, 'id': '+13198+9952', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34034880190558, -14.472202298304325], [-61.33136564906438, -14.472202298304325], [-61.33136564906438, -14.463219145463128], [-61.322382496223184, -14.463219145463128], [-61.322382496223184, -14.454235992621932], [-61.33136564906438, -14.454235992621932], [-61.33136564906438, -14.463219145463128], [-61.34034880190558, -14.463219145463128], [-61.34034880190558, -14.472202298304325]]]}, 'id': '+13198+9959', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34034880190558, -14.64288220228704], [-61.33136564906438, -14.64288220228704], [-61.33136564906438, -14.633899049445844], [-61.34034880190558, -14.633899049445844], [-61.34034880190558, -14.64288220228704]]]}, 'id': '+13198+9978', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.33136564906438, -15.24475344264711], [-61.322382496223184, -15.24475344264711], [-61.322382496223184, -15.235770289805927], [-61.33136564906438, -15.235770289805927], [-61.33136564906438, -15.24475344264711]]]}, 'id': '+13199+10045', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.33136564906438, -15.76577630743644], [-61.322382496223184, -15.76577630743644], [-61.322382496223184, -15.756793154595243], [-61.33136564906438, -15.756793154595243], [-61.33136564906438, -15.76577630743644]]]}, 'id': '+13199+10103', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.33136564906438, -15.873574141530781], [-61.322382496223184, -15.873574141530781], [-61.322382496223184, -15.864590988689585], [-61.33136564906438, -15.864590988689585], [-61.33136564906438, -15.873574141530781]]]}, 'id': '+13199+10115', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.33136564906438, -15.909506752895567], [-61.322382496223184, -15.909506752895567], [-61.322382496223184, -15.90052360005437], [-61.33136564906438, -15.90052360005437], [-61.33136564906438, -15.909506752895567]]]}, 'id': '+13199+10119', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.33136564906438, -16.008321434148712], [-61.322382496223184, -16.008321434148712], [-61.322382496223184, -15.999338281307516], [-61.31339934338199, -15.999338281307516], [-61.31339934338199, -15.99035512846632], [-61.33136564906438, -15.99035512846632], [-61.33136564906438, -16.008321434148712]]]}, 'id': '+13199+10130', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.33136564906438, -16.062220351195876], [-61.322382496223184, -16.062220351195876], [-61.322382496223184, -16.05323719835468], [-61.33136564906438, -16.05323719835468], [-61.33136564906438, -16.062220351195876]]]}, 'id': '+13199+10136', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.33136564906438, -16.179001338131414], [-61.322382496223184, -16.179001338131414], [-61.322382496223184, -16.16103503244902], [-61.33136564906438, -16.16103503244902], [-61.33136564906438, -16.179001338131414]]]}, 'id': '+13199+10149', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.33136564906438, -16.196967643813807], [-61.322382496223184, -16.196967643813807], [-61.322382496223184, -16.18798449097261], [-61.33136564906438, -16.18798449097261], [-61.33136564906438, -16.179001338131414], [-61.34034880190558, -16.179001338131414], [-61.34034880190558, -16.18798449097261], [-61.34933195474677, -16.18798449097261], [-61.34933195474677, -16.196967643813807], [-61.34034880190558, -16.196967643813807], [-61.34034880190558, -16.18798449097261], [-61.33136564906438, -16.18798449097261], [-61.33136564906438, -16.196967643813807]]]}, 'id': '+13199+10151', 'properties': {'count': 3, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.33136564906438, -13.627785931231983], [-61.322382496223184, -13.627785931231983], [-61.322382496223184, -13.618802778390787], [-61.33136564906438, -13.618802778390787], [-61.33136564906438, -13.627785931231983]]]}, 'id': '+13199+9865', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.33136564906438, -13.789482682373489], [-61.322382496223184, -13.789482682373489], [-61.322382496223184, -13.780499529532293], [-61.33136564906438, -13.780499529532293], [-61.33136564906438, -13.789482682373489]]]}, 'id': '+13199+9883', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.33136564906438, -13.92422997499142], [-61.322382496223184, -13.92422997499142], [-61.322382496223184, -13.915246822150223], [-61.33136564906438, -13.915246822150223], [-61.33136564906438, -13.92422997499142]]]}, 'id': '+13199+9898', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34933195474677, -14.05897726760935], [-61.322382496223184, -14.05897726760935], [-61.322382496223184, -14.049994114768154], [-61.34933195474677, -14.049994114768154], [-61.34933195474677, -14.05897726760935]]]}, 'id': '+13199+9913', 'properties': {'count': 3, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34034880190558, -14.076943573291743], [-61.322382496223184, -14.076943573291743], [-61.322382496223184, -14.067960420450547], [-61.34034880190558, -14.067960420450547], [-61.34034880190558, -14.076943573291743]]]}, 'id': '+13199+9915', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34034880190558, -14.094909878974136], [-61.322382496223184, -14.094909878974136], [-61.322382496223184, -14.08592672613294], [-61.34034880190558, -14.08592672613294], [-61.34034880190558, -14.094909878974136]]]}, 'id': '+13199+9917', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.33136564906438, -14.130842490338907], [-61.322382496223184, -14.130842490338907], [-61.322382496223184, -14.12185933749771], [-61.33136564906438, -14.12185933749771], [-61.33136564906438, -14.130842490338907]]]}, 'id': '+13199+9921', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.33136564906438, -14.1488087960213], [-61.322382496223184, -14.1488087960213], [-61.322382496223184, -14.139825643180103], [-61.33136564906438, -14.139825643180103], [-61.33136564906438, -14.1488087960213]]]}, 'id': '+13199+9923', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.33136564906438, -14.256606630115641], [-61.322382496223184, -14.256606630115641], [-61.322382496223184, -14.247623477274445], [-61.33136564906438, -14.247623477274445], [-61.33136564906438, -14.256606630115641]]]}, 'id': '+13199+9935', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.33136564906438, -14.28355608863923], [-61.322382496223184, -14.28355608863923], [-61.322382496223184, -14.274572935798034], [-61.33136564906438, -14.274572935798034], [-61.33136564906438, -14.265589782956837], [-61.34034880190558, -14.265589782956837], [-61.34034880190558, -14.274572935798034], [-61.33136564906438, -14.274572935798034], [-61.33136564906438, -14.28355608863923]]]}, 'id': '+13199+9938', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34034880190558, -14.544067521033895], [-61.322382496223184, -14.544067521033895], [-61.322382496223184, -14.535084368192699], [-61.33136564906438, -14.535084368192699], [-61.33136564906438, -14.517118062510306], [-61.34034880190558, -14.517118062510306], [-61.34034880190558, -14.544067521033895]]]}, 'id': '+13199+9967', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.322382496223184, -15.199837678441142], [-61.31339934338199, -15.199837678441142], [-61.31339934338199, -15.190854525599946], [-61.322382496223184, -15.190854525599946], [-61.322382496223184, -15.199837678441142]]]}, 'id': '+13200+10040', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.322382496223184, -15.801708918801225], [-61.31339934338199, -15.801708918801225], [-61.31339934338199, -15.783742613118832], [-61.322382496223184, -15.783742613118832], [-61.322382496223184, -15.801708918801225]]]}, 'id': '+13200+10107', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.322382496223184, -15.855607835848389], [-61.31339934338199, -15.855607835848389], [-61.31339934338199, -15.846624683007192], [-61.322382496223184, -15.846624683007192], [-61.322382496223184, -15.855607835848389]]]}, 'id': '+13200+10113', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.322382496223184, -15.882557294371978], [-61.31339934338199, -15.882557294371978], [-61.31339934338199, -15.864590988689585], [-61.322382496223184, -15.864590988689585], [-61.322382496223184, -15.882557294371978]]]}, 'id': '+13200+10116', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.322382496223184, -15.918489905736763], [-61.31339934338199, -15.918489905736763], [-61.31339934338199, -15.909506752895567], [-61.322382496223184, -15.909506752895567], [-61.322382496223184, -15.918489905736763]]]}, 'id': '+13200+10120', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.322382496223184, -15.92747305857796], [-61.31339934338199, -15.92747305857796], [-61.31339934338199, -15.918489905736763], [-61.322382496223184, -15.918489905736763], [-61.322382496223184, -15.92747305857796]]]}, 'id': '+13200+10121', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.322382496223184, -15.99035512846632], [-61.31339934338199, -15.99035512846632], [-61.31339934338199, -15.981371975625123], [-61.322382496223184, -15.981371975625123], [-61.322382496223184, -15.99035512846632]]]}, 'id': '+13200+10128', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.34034880190558, -16.134085573925447], [-61.31339934338199, -16.134085573925447], [-61.31339934338199, -16.12510242108425], [-61.34034880190558, -16.12510242108425], [-61.34034880190558, -16.134085573925447]]]}, 'id': '+13200+10144', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.322382496223184, -13.591853319867198], [-61.31339934338199, -13.591853319867198], [-61.31339934338199, -13.582870167026002], [-61.322382496223184, -13.582870167026002], [-61.322382496223184, -13.591853319867198]]]}, 'id': '+13200+9861', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.322382496223184, -14.526101215351503], [-61.31339934338199, -14.526101215351503], [-61.31339934338199, -14.499151756827914], [-61.322382496223184, -14.499151756827914], [-61.322382496223184, -14.526101215351503]]]}, 'id': '+13200+9965', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.33136564906438, -14.750680036381382], [-61.31339934338199, -14.750680036381382], [-61.31339934338199, -14.741696883540186], [-61.30441619054079, -14.741696883540186], [-61.30441619054079, -14.73271373069899], [-61.322382496223184, -14.73271373069899], [-61.322382496223184, -14.723730577857793], [-61.31339934338199, -14.723730577857793], [-61.31339934338199, -14.714747425016597], [-61.322382496223184, -14.714747425016597], [-61.322382496223184, -14.723730577857793], [-61.34034880190558, -14.723730577857793], [-61.34034880190558, -14.741696883540186], [-61.33136564906438, -14.741696883540186], [-61.33136564906438, -14.750680036381382]]]}, 'id': '+13200+9990', 'properties': {'count': 9, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.31339934338199, -15.837641530165996], [-61.30441619054079, -15.837641530165996], [-61.30441619054079, -15.819675224483603], [-61.31339934338199, -15.819675224483603], [-61.31339934338199, -15.837641530165996]]]}, 'id': '+13201+10111', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.31339934338199, -15.882557294371978], [-61.30441619054079, -15.882557294371978], [-61.30441619054079, -15.873574141530781], [-61.31339934338199, -15.873574141530781], [-61.31339934338199, -15.882557294371978]]]}, 'id': '+13201+10116', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.31339934338199, -15.909506752895567], [-61.30441619054079, -15.909506752895567], [-61.30441619054079, -15.90052360005437], [-61.31339934338199, -15.90052360005437], [-61.31339934338199, -15.909506752895567]]]}, 'id': '+13201+10119', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.31339934338199, -15.936456211419141], [-61.30441619054079, -15.936456211419141], [-61.30441619054079, -15.92747305857796], [-61.31339934338199, -15.92747305857796], [-61.31339934338199, -15.936456211419141]]]}, 'id': '+13201+10122', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.322382496223184, -16.12510242108425], [-61.30441619054079, -16.12510242108425], [-61.30441619054079, -16.116119268243054], [-61.295433037699596, -16.116119268243054], [-61.295433037699596, -16.107136115401858], [-61.30441619054079, -16.107136115401858], [-61.30441619054079, -16.09815296256066], [-61.322382496223184, -16.09815296256066], [-61.322382496223184, -16.089169809719465], [-61.31339934338199, -16.089169809719465], [-61.31339934338199, -16.08018665687827], [-61.33136564906438, -16.08018665687827], [-61.33136564906438, -16.09815296256066], [-61.34034880190558, -16.09815296256066], [-61.34034880190558, -16.107136115401858], [-61.33136564906438, -16.107136115401858], [-61.33136564906438, -16.116119268243054], [-61.34933195474677, -16.116119268243054], [-61.34933195474677, -16.12510242108425], [-61.33136564906438, -16.12510242108425], [-61.33136564906438, -16.116119268243054], [-61.322382496223184, -16.116119268243054], [-61.322382496223184, -16.12510242108425]], [[-61.31339934338199, -16.116119268243054], [-61.31339934338199, -16.107136115401858], [-61.322382496223184, -16.107136115401858], [-61.322382496223184, -16.116119268243054], [-61.31339934338199, -16.116119268243054]]]}, 'id': '+13201+10143', 'properties': {'count': 14, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.31339934338199, -16.18798449097261], [-61.30441619054079, -16.18798449097261], [-61.30441619054079, -16.16103503244902], [-61.31339934338199, -16.16103503244902], [-61.31339934338199, -16.18798449097261]]]}, 'id': '+13201+10150', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.31339934338199, -16.196967643813807], [-61.30441619054079, -16.196967643813807], [-61.30441619054079, -16.18798449097261], [-61.31339934338199, -16.18798449097261], [-61.31339934338199, -16.196967643813807]]]}, 'id': '+13201+10151', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.31339934338199, -14.014061503403369], [-61.30441619054079, -14.014061503403369], [-61.30441619054079, -14.005078350562172], [-61.31339934338199, -14.005078350562172], [-61.31339934338199, -14.014061503403369]]]}, 'id': '+13201+9908', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.31339934338199, -14.067960420450547], [-61.30441619054079, -14.067960420450547], [-61.30441619054079, -14.05897726760935], [-61.31339934338199, -14.05897726760935], [-61.31339934338199, -14.067960420450547]]]}, 'id': '+13201+9914', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.31339934338199, -14.08592672613294], [-61.30441619054079, -14.08592672613294], [-61.30441619054079, -14.067960420450547], [-61.322382496223184, -14.067960420450547], [-61.322382496223184, -14.076943573291743], [-61.31339934338199, -14.076943573291743], [-61.31339934338199, -14.08592672613294]]]}, 'id': '+13201+9916', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.322382496223184, -14.103893031815318], [-61.30441619054079, -14.103893031815318], [-61.30441619054079, -14.094909878974136], [-61.31339934338199, -14.094909878974136], [-61.31339934338199, -14.076943573291743], [-61.322382496223184, -14.076943573291743], [-61.322382496223184, -14.103893031815318]]]}, 'id': '+13201+9918', 'properties': {'count': 4, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.31339934338199, -14.220674018750856], [-61.30441619054079, -14.220674018750856], [-61.30441619054079, -14.211690865909674], [-61.31339934338199, -14.211690865909674], [-61.31339934338199, -14.220674018750856]]]}, 'id': '+13201+9931', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.322382496223184, -14.445252839780736], [-61.30441619054079, -14.445252839780736], [-61.30441619054079, -14.436269686939553], [-61.322382496223184, -14.436269686939553], [-61.322382496223184, -14.445252839780736]]]}, 'id': '+13201+9956', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.31339934338199, -14.463219145463128], [-61.30441619054079, -14.463219145463128], [-61.30441619054079, -14.454235992621932], [-61.31339934338199, -14.454235992621932], [-61.31339934338199, -14.463219145463128]]]}, 'id': '+13201+9958', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.31339934338199, -14.606949590922255], [-61.30441619054079, -14.606949590922255], [-61.30441619054079, -14.588983285239863], [-61.31339934338199, -14.588983285239863], [-61.31339934338199, -14.606949590922255]]]}, 'id': '+13201+9974', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.31339934338199, -14.723730577857793], [-61.30441619054079, -14.723730577857793], [-61.30441619054079, -14.714747425016597], [-61.31339934338199, -14.714747425016597], [-61.31339934338199, -14.723730577857793]]]}, 'id': '+13201+9987', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.30441619054079, -15.262719748329502], [-61.295433037699596, -15.262719748329502], [-61.295433037699596, -15.253736595488306], [-61.30441619054079, -15.253736595488306], [-61.30441619054079, -15.262719748329502]]]}, 'id': '+13202+10047', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.30441619054079, -15.729843696071654], [-61.295433037699596, -15.729843696071654], [-61.295433037699596, -15.720860543230458], [-61.30441619054079, -15.720860543230458], [-61.30441619054079, -15.729843696071654]]]}, 'id': '+13202+10099', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.30441619054079, -15.945439364260338], [-61.295433037699596, -15.945439364260338], [-61.295433037699596, -15.936456211419141], [-61.30441619054079, -15.936456211419141], [-61.30441619054079, -15.945439364260338]]]}, 'id': '+13202+10123', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.30441619054079, -16.08018665687827], [-61.295433037699596, -16.08018665687827], [-61.295433037699596, -16.05323719835468], [-61.30441619054079, -16.05323719835468], [-61.30441619054079, -16.044254045513483], [-61.31339934338199, -16.044254045513483], [-61.31339934338199, -16.071203504037072], [-61.30441619054079, -16.071203504037072], [-61.30441619054079, -16.08018665687827]]]}, 'id': '+13202+10138', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.30441619054079, -13.825415293738274], [-61.295433037699596, -13.825415293738274], [-61.295433037699596, -13.798465835214685], [-61.30441619054079, -13.798465835214685], [-61.30441619054079, -13.780499529532293], [-61.31339934338199, -13.780499529532293], [-61.31339934338199, -13.816432140897078], [-61.30441619054079, -13.816432140897078], [-61.30441619054079, -13.825415293738274]]]}, 'id': '+13202+9887', 'properties': {'count': 7, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.30441619054079, -13.86134790510306], [-61.295433037699596, -13.86134790510306], [-61.295433037699596, -13.843381599420667], [-61.30441619054079, -13.843381599420667], [-61.30441619054079, -13.86134790510306]]]}, 'id': '+13202+9891', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.31339934338199, -13.888297363626634], [-61.295433037699596, -13.888297363626634], [-61.295433037699596, -13.879314210785438], [-61.2864498848584, -13.879314210785438], [-61.2864498848584, -13.870331057944242], [-61.295433037699596, -13.870331057944242], [-61.295433037699596, -13.879314210785438], [-61.31339934338199, -13.879314210785438], [-61.31339934338199, -13.888297363626634]]]}, 'id': '+13202+9894', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.30441619054079, -13.951179433515009], [-61.295433037699596, -13.951179433515009], [-61.295433037699596, -13.942196280673812], [-61.30441619054079, -13.942196280673812], [-61.30441619054079, -13.951179433515009]]]}, 'id': '+13202+9901', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.30441619054079, -14.005078350562172], [-61.295433037699596, -14.005078350562172], [-61.295433037699596, -13.996095197720976], [-61.30441619054079, -13.996095197720976], [-61.30441619054079, -14.005078350562172]]]}, 'id': '+13202+9907', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.30441619054079, -14.094909878974136], [-61.295433037699596, -14.094909878974136], [-61.295433037699596, -14.08592672613294], [-61.30441619054079, -14.08592672613294], [-61.30441619054079, -14.094909878974136]]]}, 'id': '+13202+9917', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.30441619054079, -14.166775101703692], [-61.295433037699596, -14.166775101703692], [-61.295433037699596, -14.157791948862496], [-61.30441619054079, -14.157791948862496], [-61.30441619054079, -14.1488087960213], [-61.31339934338199, -14.1488087960213], [-61.31339934338199, -14.157791948862496], [-61.30441619054079, -14.157791948862496], [-61.30441619054079, -14.166775101703692]]]}, 'id': '+13202+9925', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.30441619054079, -14.211690865909674], [-61.295433037699596, -14.211690865909674], [-61.295433037699596, -14.202707713068477], [-61.30441619054079, -14.202707713068477], [-61.30441619054079, -14.184741407386085], [-61.322382496223184, -14.184741407386085], [-61.322382496223184, -14.193724560227281], [-61.31339934338199, -14.193724560227281], [-61.31339934338199, -14.202707713068477], [-61.30441619054079, -14.202707713068477], [-61.30441619054079, -14.211690865909674]]]}, 'id': '+13202+9930', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.295433037699596, -15.289669206853091], [-61.2864498848584, -15.289669206853091], [-61.2864498848584, -15.280686054011895], [-61.295433037699596, -15.280686054011895], [-61.295433037699596, -15.289669206853091]]]}, 'id': '+13203+10050', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.295433037699596, -16.08018665687827], [-61.2864498848584, -16.08018665687827], [-61.2864498848584, -16.071203504037072], [-61.295433037699596, -16.071203504037072], [-61.295433037699596, -16.08018665687827]]]}, 'id': '+13203+10138', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.295433037699596, -16.170018185290218], [-61.2864498848584, -16.170018185290218], [-61.2864498848584, -16.16103503244902], [-61.295433037699596, -16.16103503244902], [-61.295433037699596, -16.170018185290218]]]}, 'id': '+13203+10148', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.295433037699596, -13.502021791455249], [-61.2864498848584, -13.502021791455249], [-61.2864498848584, -13.493038638614053], [-61.295433037699596, -13.493038638614053], [-61.295433037699596, -13.502021791455249]]]}, 'id': '+13203+9851', 'properties': {'count': 1, 'label': 4}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.295433037699596, -13.519988097137642], [-61.2864498848584, -13.519988097137642], [-61.2864498848584, -13.511004944296445], [-61.295433037699596, -13.511004944296445], [-61.295433037699596, -13.519988097137642]]]}, 'id': '+13203+9853', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.295433037699596, -14.094909878974136], [-61.2864498848584, -14.094909878974136], [-61.2864498848584, -14.076943573291743], [-61.295433037699596, -14.076943573291743], [-61.295433037699596, -14.094909878974136]]]}, 'id': '+13203+9917', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.295433037699596, -14.499151756827914], [-61.2864498848584, -14.499151756827914], [-61.2864498848584, -14.490168603986717], [-61.2774667320172, -14.490168603986717], [-61.2774667320172, -14.481185451145521], [-61.2864498848584, -14.481185451145521], [-61.2864498848584, -14.472202298304325], [-61.295433037699596, -14.472202298304325], [-61.295433037699596, -14.481185451145521], [-61.30441619054079, -14.481185451145521], [-61.30441619054079, -14.490168603986717], [-61.295433037699596, -14.490168603986717], [-61.295433037699596, -14.499151756827914]], [[-61.2864498848584, -14.490168603986717], [-61.2864498848584, -14.481185451145521], [-61.295433037699596, -14.481185451145521], [-61.295433037699596, -14.490168603986717], [-61.2864498848584, -14.490168603986717]]]}, 'id': '+13203+9962', 'properties': {'count': 4, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.295433037699596, -14.606949590922255], [-61.2864498848584, -14.606949590922255], [-61.2864498848584, -14.597966438081059], [-61.295433037699596, -14.597966438081059], [-61.295433037699596, -14.606949590922255]]]}, 'id': '+13203+9974', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.31339934338199, -14.660848507969433], [-61.2864498848584, -14.660848507969433], [-61.2864498848584, -14.633899049445844], [-61.295433037699596, -14.633899049445844], [-61.295433037699596, -14.615932743763452], [-61.30441619054079, -14.615932743763452], [-61.30441619054079, -14.633899049445844], [-61.295433037699596, -14.633899049445844], [-61.295433037699596, -14.64288220228704], [-61.31339934338199, -14.64288220228704], [-61.31339934338199, -14.633899049445844], [-61.322382496223184, -14.633899049445844], [-61.322382496223184, -14.64288220228704], [-61.31339934338199, -14.64288220228704], [-61.31339934338199, -14.660848507969433]]]}, 'id': '+13203+9980', 'properties': {'count': 10, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.295433037699596, -16.044254045513483], [-61.2774667320172, -16.044254045513483], [-61.2774667320172, -16.0352708926723], [-61.26848357917602, -16.0352708926723], [-61.26848357917602, -16.026287739831105], [-61.2864498848584, -16.026287739831105], [-61.2864498848584, -16.0352708926723], [-61.295433037699596, -16.0352708926723], [-61.295433037699596, -16.044254045513483]]]}, 'id': '+13204+10134', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.295433037699596, -16.071203504037072], [-61.2774667320172, -16.071203504037072], [-61.2774667320172, -16.062220351195876], [-61.26848357917602, -16.062220351195876], [-61.26848357917602, -16.05323719835468], [-61.2864498848584, -16.05323719835468], [-61.2864498848584, -16.044254045513483], [-61.295433037699596, -16.044254045513483], [-61.295433037699596, -16.071203504037072]]]}, 'id': '+13204+10137', 'properties': {'count': 6, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2864498848584, -16.16103503244902], [-61.2774667320172, -16.16103503244902], [-61.2774667320172, -16.15205187960784], [-61.2864498848584, -16.15205187960784], [-61.2864498848584, -16.143068726766643], [-61.295433037699596, -16.143068726766643], [-61.295433037699596, -16.15205187960784], [-61.2864498848584, -16.15205187960784], [-61.2864498848584, -16.16103503244902]]]}, 'id': '+13204+10147', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2864498848584, -13.969145739197401], [-61.2774667320172, -13.969145739197401], [-61.2774667320172, -13.960162586356205], [-61.2864498848584, -13.960162586356205], [-61.2864498848584, -13.969145739197401]]]}, 'id': '+13204+9903', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2864498848584, -13.996095197720976], [-61.2774667320172, -13.996095197720976], [-61.2774667320172, -13.98711204487978], [-61.2864498848584, -13.98711204487978], [-61.2864498848584, -13.996095197720976]]]}, 'id': '+13204+9906', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2864498848584, -14.032027809085761], [-61.2774667320172, -14.032027809085761], [-61.2774667320172, -14.023044656244565], [-61.2864498848584, -14.023044656244565], [-61.2864498848584, -14.014061503403369], [-61.295433037699596, -14.014061503403369], [-61.295433037699596, -14.023044656244565], [-61.2864498848584, -14.023044656244565], [-61.2864498848584, -14.032027809085761]]]}, 'id': '+13204+9910', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.295433037699596, -14.05897726760935], [-61.2774667320172, -14.05897726760935], [-61.2774667320172, -14.049994114768154], [-61.295433037699596, -14.049994114768154], [-61.295433037699596, -14.05897726760935]]]}, 'id': '+13204+9913', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2864498848584, -14.454235992621932], [-61.2774667320172, -14.454235992621932], [-61.2774667320172, -14.445252839780736], [-61.2864498848584, -14.445252839780736], [-61.2864498848584, -14.454235992621932]]]}, 'id': '+13204+9957', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2864498848584, -14.660848507969433], [-61.2774667320172, -14.660848507969433], [-61.2774667320172, -14.651865355128237], [-61.259500426334824, -14.651865355128237], [-61.259500426334824, -14.64288220228704], [-61.2774667320172, -14.64288220228704], [-61.2774667320172, -14.633899049445844], [-61.2864498848584, -14.633899049445844], [-61.2864498848584, -14.64288220228704], [-61.2774667320172, -14.64288220228704], [-61.2774667320172, -14.651865355128237], [-61.2864498848584, -14.651865355128237], [-61.2864498848584, -14.660848507969433]]]}, 'id': '+13204+9980', 'properties': {'count': 4, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2864498848584, -16.134085573925447], [-61.26848357917602, -16.134085573925447], [-61.26848357917602, -16.12510242108425], [-61.259500426334824, -16.12510242108425], [-61.259500426334824, -16.09815296256066], [-61.24153412065243, -16.09815296256066], [-61.24153412065243, -16.107136115401858], [-61.22356781497004, -16.107136115401858], [-61.22356781497004, -16.116119268243054], [-61.21458466212884, -16.116119268243054], [-61.21458466212884, -16.107136115401858], [-61.22356781497004, -16.107136115401858], [-61.22356781497004, -16.09815296256066], [-61.232550967811235, -16.09815296256066], [-61.232550967811235, -16.089169809719465], [-61.25051727349363, -16.089169809719465], [-61.25051727349363, -16.08018665687827], [-61.259500426334824, -16.08018665687827], [-61.259500426334824, -16.071203504037072], [-61.25051727349363, -16.071203504037072], [-61.25051727349363, -16.062220351195876], [-61.24153412065243, -16.062220351195876], [-61.24153412065243, -16.05323719835468], [-61.232550967811235, -16.05323719835468], [-61.232550967811235, -16.044254045513483], [-61.24153412065243, -16.044254045513483], [-61.24153412065243, -16.05323719835468], [-61.25051727349363, -16.05323719835468], [-61.25051727349363, -16.062220351195876], [-61.2774667320172, -16.062220351195876], [-61.2774667320172, -16.071203504037072], [-61.2864498848584, -16.071203504037072], [-61.2864498848584, -16.089169809719465], [-61.295433037699596, -16.089169809719465], [-61.295433037699596, -16.09815296256066], [-61.2864498848584, -16.09815296256066], [-61.2864498848584, -16.107136115401858], [-61.2774667320172, -16.107136115401858], [-61.2774667320172, -16.116119268243054], [-61.2864498848584, -16.116119268243054], [-61.2864498848584, -16.134085573925447]], [[-61.2774667320172, -16.09815296256066], [-61.2774667320172, -16.089169809719465], [-61.2864498848584, -16.089169809719465], [-61.2864498848584, -16.09815296256066], [-61.2774667320172, -16.09815296256066]], [[-61.26848357917602, -16.12510242108425], [-61.26848357917602, -16.116119268243054], [-61.2774667320172, -16.116119268243054], [-61.2774667320172, -16.12510242108425], [-61.26848357917602, -16.12510242108425]]]}, 'id': '+13205+10144', 'properties': {'count': 30, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2774667320172, -16.18798449097261], [-61.26848357917602, -16.18798449097261], [-61.26848357917602, -16.170018185290218], [-61.2864498848584, -16.170018185290218], [-61.2864498848584, -16.179001338131414], [-61.2774667320172, -16.179001338131414], [-61.2774667320172, -16.18798449097261]]]}, 'id': '+13205+10150', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2864498848584, -16.2149339494962], [-61.26848357917602, -16.2149339494962], [-61.26848357917602, -16.205950796655003], [-61.2864498848584, -16.205950796655003], [-61.2864498848584, -16.2149339494962]]]}, 'id': '+13205+10153', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2774667320172, -16.24188340801979], [-61.26848357917602, -16.24188340801979], [-61.26848357917602, -16.232900255178592], [-61.2774667320172, -16.232900255178592], [-61.2774667320172, -16.24188340801979]]]}, 'id': '+13205+10156', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2774667320172, -13.645752236914362], [-61.26848357917602, -13.645752236914362], [-61.26848357917602, -13.63676908407318], [-61.2774667320172, -13.63676908407318], [-61.2774667320172, -13.645752236914362]]]}, 'id': '+13205+9867', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2774667320172, -14.076943573291743], [-61.26848357917602, -14.076943573291743], [-61.26848357917602, -14.067960420450547], [-61.2774667320172, -14.067960420450547], [-61.2774667320172, -14.076943573291743]]]}, 'id': '+13205+9915', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2774667320172, -14.1488087960213], [-61.26848357917602, -14.1488087960213], [-61.26848357917602, -14.139825643180103], [-61.2774667320172, -14.139825643180103], [-61.2774667320172, -14.1488087960213]]]}, 'id': '+13205+9923', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2774667320172, -14.553050673875092], [-61.26848357917602, -14.553050673875092], [-61.26848357917602, -14.535084368192699], [-61.2774667320172, -14.535084368192699], [-61.2774667320172, -14.517118062510306], [-61.2864498848584, -14.517118062510306], [-61.2864498848584, -14.544067521033895], [-61.2774667320172, -14.544067521033895], [-61.2774667320172, -14.553050673875092]]]}, 'id': '+13205+9968', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2774667320172, -14.580000132398666], [-61.26848357917602, -14.580000132398666], [-61.26848357917602, -14.57101697955747], [-61.259500426334824, -14.57101697955747], [-61.259500426334824, -14.562033826716274], [-61.26848357917602, -14.562033826716274], [-61.26848357917602, -14.57101697955747], [-61.2774667320172, -14.57101697955747], [-61.2774667320172, -14.580000132398666]]]}, 'id': '+13205+9971', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2774667320172, -14.633899049445844], [-61.26848357917602, -14.633899049445844], [-61.26848357917602, -14.624915896604648], [-61.2774667320172, -14.624915896604648], [-61.2774667320172, -14.615932743763452], [-61.2864498848584, -14.615932743763452], [-61.2864498848584, -14.624915896604648], [-61.2774667320172, -14.624915896604648], [-61.2774667320172, -14.633899049445844]]]}, 'id': '+13205+9977', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2774667320172, -14.714747425016597], [-61.26848357917602, -14.714747425016597], [-61.26848357917602, -14.7057642721754], [-61.2774667320172, -14.7057642721754], [-61.2774667320172, -14.714747425016597]]]}, 'id': '+13205+9986', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.26848357917602, -16.2149339494962], [-61.259500426334824, -16.2149339494962], [-61.259500426334824, -16.205950796655003], [-61.26848357917602, -16.205950796655003], [-61.26848357917602, -16.2149339494962]]]}, 'id': '+13206+10153', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.26848357917602, -13.681684848279147], [-61.259500426334824, -13.681684848279147], [-61.259500426334824, -13.67270169543795], [-61.26848357917602, -13.67270169543795], [-61.26848357917602, -13.681684848279147]]]}, 'id': '+13206+9871', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.26848357917602, -13.726600612485129], [-61.259500426334824, -13.726600612485129], [-61.259500426334824, -13.717617459643932], [-61.26848357917602, -13.717617459643932], [-61.26848357917602, -13.726600612485129]]]}, 'id': '+13206+9876', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.26848357917602, -14.184741407386085], [-61.259500426334824, -14.184741407386085], [-61.259500426334824, -14.175758254544888], [-61.26848357917602, -14.175758254544888], [-61.26848357917602, -14.184741407386085]]]}, 'id': '+13206+9927', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.2774667320172, -14.382370769892376], [-61.259500426334824, -14.382370769892376], [-61.259500426334824, -14.37338761705118], [-61.2774667320172, -14.37338761705118], [-61.2774667320172, -14.382370769892376]]]}, 'id': '+13206+9949', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.26848357917602, -14.481185451145521], [-61.259500426334824, -14.481185451145521], [-61.259500426334824, -14.463219145463128], [-61.26848357917602, -14.463219145463128], [-61.26848357917602, -14.481185451145521]]]}, 'id': '+13206+9960', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.26848357917602, -14.804578953428546], [-61.259500426334824, -14.804578953428546], [-61.259500426334824, -14.79559580058735], [-61.26848357917602, -14.79559580058735], [-61.26848357917602, -14.804578953428546]]]}, 'id': '+13206+9996', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.259500426334824, -15.262719748329502], [-61.25051727349363, -15.262719748329502], [-61.25051727349363, -15.253736595488306], [-61.259500426334824, -15.253736595488306], [-61.259500426334824, -15.262719748329502]]]}, 'id': '+13207+10047', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.259500426334824, -15.523231180724167], [-61.25051727349363, -15.523231180724167], [-61.25051727349363, -15.51424802788297], [-61.259500426334824, -15.51424802788297], [-61.259500426334824, -15.523231180724167]]]}, 'id': '+13207+10076', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.259500426334824, -15.918489905736763], [-61.25051727349363, -15.918489905736763], [-61.25051727349363, -15.909506752895567], [-61.259500426334824, -15.909506752895567], [-61.259500426334824, -15.918489905736763]]]}, 'id': '+13207+10120', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.26848357917602, -16.026287739831105], [-61.25051727349363, -16.026287739831105], [-61.25051727349363, -16.01730458698991], [-61.259500426334824, -16.01730458698991], [-61.259500426334824, -16.008321434148712], [-61.26848357917602, -16.008321434148712], [-61.26848357917602, -16.026287739831105]]]}, 'id': '+13207+10132', 'properties': {'count': 3, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.259500426334824, -16.0352708926723], [-61.25051727349363, -16.0352708926723], [-61.25051727349363, -16.026287739831105], [-61.259500426334824, -16.026287739831105], [-61.259500426334824, -16.0352708926723]]]}, 'id': '+13207+10133', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.259500426334824, -16.05323719835468], [-61.25051727349363, -16.05323719835468], [-61.25051727349363, -16.044254045513483], [-61.259500426334824, -16.044254045513483], [-61.259500426334824, -16.05323719835468]]]}, 'id': '+13207+10135', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.259500426334824, -16.2149339494962], [-61.25051727349363, -16.2149339494962], [-61.25051727349363, -16.205950796655003], [-61.259500426334824, -16.205950796655003], [-61.259500426334824, -16.2149339494962]]]}, 'id': '+13207+10153', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.259500426334824, -16.250866560860985], [-61.25051727349363, -16.250866560860985], [-61.25051727349363, -16.24188340801979], [-61.259500426334824, -16.24188340801979], [-61.259500426334824, -16.250866560860985]]]}, 'id': '+13207+10157', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.259500426334824, -13.519988097137642], [-61.25051727349363, -13.519988097137642], [-61.25051727349363, -13.502021791455249], [-61.259500426334824, -13.502021791455249], [-61.259500426334824, -13.519988097137642]]]}, 'id': '+13207+9853', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.259500426334824, -13.816432140897078], [-61.25051727349363, -13.816432140897078], [-61.25051727349363, -13.789482682373489], [-61.24153412065243, -13.789482682373489], [-61.24153412065243, -13.798465835214685], [-61.22356781497004, -13.798465835214685], [-61.22356781497004, -13.789482682373489], [-61.205601509287646, -13.789482682373489], [-61.205601509287646, -13.780499529532293], [-61.21458466212884, -13.780499529532293], [-61.21458466212884, -13.7625332238499], [-61.22356781497004, -13.7625332238499], [-61.22356781497004, -13.789482682373489], [-61.232550967811235, -13.789482682373489], [-61.232550967811235, -13.780499529532293], [-61.25051727349363, -13.780499529532293], [-61.25051727349363, -13.771516376691096], [-61.232550967811235, -13.771516376691096], [-61.232550967811235, -13.7625332238499], [-61.25051727349363, -13.7625332238499], [-61.25051727349363, -13.771516376691096], [-61.26848357917602, -13.771516376691096], [-61.26848357917602, -13.789482682373489], [-61.259500426334824, -13.789482682373489], [-61.259500426334824, -13.816432140897078]], [[-61.25051727349363, -13.789482682373489], [-61.25051727349363, -13.780499529532293], [-61.259500426334824, -13.780499529532293], [-61.259500426334824, -13.789482682373489], [-61.25051727349363, -13.789482682373489]]]}, 'id': '+13207+9886', 'properties': {'count': 16, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.259500426334824, -14.005078350562172], [-61.25051727349363, -14.005078350562172], [-61.25051727349363, -13.996095197720976], [-61.259500426334824, -13.996095197720976], [-61.259500426334824, -14.005078350562172]]]}, 'id': '+13207+9907', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.259500426334824, -14.831528411952135], [-61.25051727349363, -14.831528411952135], [-61.25051727349363, -14.822545259110939], [-61.24153412065243, -14.822545259110939], [-61.24153412065243, -14.813562106269742], [-61.25051727349363, -14.813562106269742], [-61.25051727349363, -14.822545259110939], [-61.259500426334824, -14.822545259110939], [-61.259500426334824, -14.831528411952135]]]}, 'id': '+13207+9999', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.25051727349363, -15.981371975625123], [-61.24153412065243, -15.981371975625123], [-61.24153412065243, -15.972388822783927], [-61.232550967811235, -15.972388822783927], [-61.232550967811235, -15.96340566994273], [-61.24153412065243, -15.96340566994273], [-61.24153412065243, -15.972388822783927], [-61.25051727349363, -15.972388822783927], [-61.25051727349363, -15.981371975625123]]]}, 'id': '+13208+10127', 'properties': {'count': 2, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.25051727349363, -15.99035512846632], [-61.24153412065243, -15.99035512846632], [-61.24153412065243, -15.981371975625123], [-61.25051727349363, -15.981371975625123], [-61.25051727349363, -15.972388822783927], [-61.259500426334824, -15.972388822783927], [-61.259500426334824, -15.981371975625123], [-61.25051727349363, -15.981371975625123], [-61.25051727349363, -15.99035512846632]]]}, 'id': '+13208+10128', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.25051727349363, -16.223917102337396], [-61.24153412065243, -16.223917102337396], [-61.24153412065243, -16.2149339494962], [-61.25051727349363, -16.2149339494962], [-61.25051727349363, -16.223917102337396]]]}, 'id': '+13208+10154', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.25051727349363, -13.86134790510306], [-61.24153412065243, -13.86134790510306], [-61.24153412065243, -13.843381599420667], [-61.25051727349363, -13.843381599420667], [-61.25051727349363, -13.83439844657947], [-61.259500426334824, -13.83439844657947], [-61.259500426334824, -13.843381599420667], [-61.25051727349363, -13.843381599420667], [-61.25051727349363, -13.86134790510306]]]}, 'id': '+13208+9891', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.25051727349363, -14.12185933749771], [-61.24153412065243, -14.12185933749771], [-61.24153412065243, -14.112876184656514], [-61.25051727349363, -14.112876184656514], [-61.25051727349363, -14.12185933749771]]]}, 'id': '+13208+9920', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.25051727349363, -14.1488087960213], [-61.24153412065243, -14.1488087960213], [-61.24153412065243, -14.139825643180103], [-61.25051727349363, -14.139825643180103], [-61.25051727349363, -14.1488087960213]]]}, 'id': '+13208+9923', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.25051727349363, -14.211690865909674], [-61.24153412065243, -14.211690865909674], [-61.24153412065243, -14.202707713068477], [-61.232550967811235, -14.202707713068477], [-61.232550967811235, -14.193724560227281], [-61.24153412065243, -14.193724560227281], [-61.24153412065243, -14.202707713068477], [-61.25051727349363, -14.202707713068477], [-61.25051727349363, -14.211690865909674]]]}, 'id': '+13208+9930', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.25051727349363, -14.355421311368787], [-61.24153412065243, -14.355421311368787], [-61.24153412065243, -14.34643815852759], [-61.25051727349363, -14.34643815852759], [-61.25051727349363, -14.337455005686394], [-61.259500426334824, -14.337455005686394], [-61.259500426334824, -14.34643815852759], [-61.25051727349363, -14.34643815852759], [-61.25051727349363, -14.355421311368787]]]}, 'id': '+13208+9946', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.25051727349363, -14.37338761705118], [-61.24153412065243, -14.37338761705118], [-61.24153412065243, -14.364404464209983], [-61.25051727349363, -14.364404464209983], [-61.25051727349363, -14.37338761705118]]]}, 'id': '+13208+9948', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.25051727349363, -14.409320228415964], [-61.24153412065243, -14.409320228415964], [-61.24153412065243, -14.400337075574768], [-61.25051727349363, -14.400337075574768], [-61.25051727349363, -14.409320228415964]]]}, 'id': '+13208+9952', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.259500426334824, -14.517118062510306], [-61.24153412065243, -14.517118062510306], [-61.24153412065243, -14.50813490966911], [-61.259500426334824, -14.50813490966911], [-61.259500426334824, -14.517118062510306]]]}, 'id': '+13208+9964', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.24153412065243, -16.008321434148712], [-61.232550967811235, -16.008321434148712], [-61.232550967811235, -15.999338281307516], [-61.22356781497004, -15.999338281307516], [-61.22356781497004, -15.99035512846632], [-61.232550967811235, -15.99035512846632], [-61.232550967811235, -15.999338281307516], [-61.24153412065243, -15.999338281307516], [-61.24153412065243, -15.99035512846632], [-61.25051727349363, -15.99035512846632], [-61.25051727349363, -15.999338281307516], [-61.24153412065243, -15.999338281307516], [-61.24153412065243, -16.008321434148712]]]}, 'id': '+13209+10130', 'properties': {'count': 3, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.24153412065243, -16.01730458698991], [-61.232550967811235, -16.01730458698991], [-61.232550967811235, -16.008321434148712], [-61.24153412065243, -16.008321434148712], [-61.24153412065243, -16.01730458698991]]]}, 'id': '+13209+10131', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.24153412065243, -16.196967643813807], [-61.232550967811235, -16.196967643813807], [-61.232550967811235, -16.170018185290218], [-61.21458466212884, -16.170018185290218], [-61.21458466212884, -16.16103503244902], [-61.205601509287646, -16.16103503244902], [-61.205601509287646, -16.15205187960784], [-61.22356781497004, -16.15205187960784], [-61.22356781497004, -16.143068726766643], [-61.232550967811235, -16.143068726766643], [-61.232550967811235, -16.134085573925447], [-61.24153412065243, -16.134085573925447], [-61.24153412065243, -16.12510242108425], [-61.25051727349363, -16.12510242108425], [-61.25051727349363, -16.134085573925447], [-61.259500426334824, -16.134085573925447], [-61.259500426334824, -16.143068726766643], [-61.26848357917602, -16.143068726766643], [-61.26848357917602, -16.16103503244902], [-61.259500426334824, -16.16103503244902], [-61.259500426334824, -16.179001338131414], [-61.25051727349363, -16.179001338131414], [-61.25051727349363, -16.170018185290218], [-61.24153412065243, -16.170018185290218], [-61.24153412065243, -16.196967643813807]], [[-61.232550967811235, -16.170018185290218], [-61.232550967811235, -16.16103503244902], [-61.22356781497004, -16.16103503244902], [-61.22356781497004, -16.15205187960784], [-61.232550967811235, -16.15205187960784], [-61.232550967811235, -16.143068726766643], [-61.24153412065243, -16.143068726766643], [-61.24153412065243, -16.134085573925447], [-61.25051727349363, -16.134085573925447], [-61.25051727349363, -16.143068726766643], [-61.259500426334824, -16.143068726766643], [-61.259500426334824, -16.15205187960784], [-61.25051727349363, -16.15205187960784], [-61.25051727349363, -16.16103503244902], [-61.24153412065243, -16.16103503244902], [-61.24153412065243, -16.170018185290218], [-61.232550967811235, -16.170018185290218]]]}, 'id': '+13209+10151', 'properties': {'count': 17, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.24153412065243, -16.223917102337396], [-61.232550967811235, -16.223917102337396], [-61.232550967811235, -16.2149339494962], [-61.24153412065243, -16.2149339494962], [-61.24153412065243, -16.223917102337396]]]}, 'id': '+13209+10154', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.24153412065243, -13.978128892038598], [-61.232550967811235, -13.978128892038598], [-61.232550967811235, -13.969145739197401], [-61.24153412065243, -13.969145739197401], [-61.24153412065243, -13.978128892038598]]]}, 'id': '+13209+9904', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.24153412065243, -14.12185933749771], [-61.232550967811235, -14.12185933749771], [-61.232550967811235, -14.112876184656514], [-61.24153412065243, -14.112876184656514], [-61.24153412065243, -14.12185933749771]]]}, 'id': '+13209+9920', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.24153412065243, -14.319488700004015], [-61.232550967811235, -14.319488700004015], [-61.232550967811235, -14.310505547162819], [-61.24153412065243, -14.310505547162819], [-61.24153412065243, -14.319488700004015]]]}, 'id': '+13209+9942', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.24153412065243, -14.490168603986717], [-61.232550967811235, -14.490168603986717], [-61.232550967811235, -14.481185451145521], [-61.24153412065243, -14.481185451145521], [-61.24153412065243, -14.490168603986717]]]}, 'id': '+13209+9961', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.24153412065243, -14.606949590922255], [-61.232550967811235, -14.606949590922255], [-61.232550967811235, -14.597966438081059], [-61.24153412065243, -14.597966438081059], [-61.24153412065243, -14.606949590922255]]]}, 'id': '+13209+9974', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.24153412065243, -14.64288220228704], [-61.232550967811235, -14.64288220228704], [-61.232550967811235, -14.624915896604648], [-61.24153412065243, -14.624915896604648], [-61.24153412065243, -14.64288220228704]]]}, 'id': '+13209+9978', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.24153412065243, -14.660848507969433], [-61.232550967811235, -14.660848507969433], [-61.232550967811235, -14.651865355128237], [-61.24153412065243, -14.651865355128237], [-61.24153412065243, -14.660848507969433]]]}, 'id': '+13209+9980', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.232550967811235, -13.53795440282002], [-61.22356781497004, -13.53795440282002], [-61.22356781497004, -13.528971249978824], [-61.232550967811235, -13.528971249978824], [-61.232550967811235, -13.53795440282002]]]}, 'id': '+13210+9855', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.232550967811235, -13.600836472708394], [-61.22356781497004, -13.600836472708394], [-61.22356781497004, -13.591853319867198], [-61.232550967811235, -13.591853319867198], [-61.232550967811235, -13.600836472708394]]]}, 'id': '+13210+9862', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.232550967811235, -13.681684848279147], [-61.22356781497004, -13.681684848279147], [-61.22356781497004, -13.67270169543795], [-61.232550967811235, -13.67270169543795], [-61.232550967811235, -13.681684848279147]]]}, 'id': '+13210+9871', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.232550967811235, -14.166775101703692], [-61.22356781497004, -14.166775101703692], [-61.22356781497004, -14.157791948862496], [-61.205601509287646, -14.157791948862496], [-61.205601509287646, -14.1488087960213], [-61.22356781497004, -14.1488087960213], [-61.22356781497004, -14.157791948862496], [-61.232550967811235, -14.157791948862496], [-61.232550967811235, -14.166775101703692]]]}, 'id': '+13210+9925', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.25051727349363, -14.391353922733572], [-61.22356781497004, -14.391353922733572], [-61.22356781497004, -14.364404464209983], [-61.24153412065243, -14.364404464209983], [-61.24153412065243, -14.382370769892376], [-61.25051727349363, -14.382370769892376], [-61.25051727349363, -14.391353922733572]]]}, 'id': '+13210+9950', 'properties': {'count': 7, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.232550967811235, -14.463219145463128], [-61.22356781497004, -14.463219145463128], [-61.22356781497004, -14.454235992621932], [-61.232550967811235, -14.454235992621932], [-61.232550967811235, -14.463219145463128]]]}, 'id': '+13210+9958', 'properties': {'count': 1, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.22356781497004, -14.849494717634528], [-61.21458466212884, -14.849494717634528], [-61.21458466212884, -14.840511564793331], [-61.22356781497004, -14.840511564793331], [-61.22356781497004, -14.849494717634528]]]}, 'id': '+13211+10001', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.22356781497004, -15.18187137275875], [-61.21458466212884, -15.18187137275875], [-61.21458466212884, -15.172888219917553], [-61.22356781497004, -15.172888219917553], [-61.22356781497004, -15.18187137275875]]]}, 'id': '+13211+10038', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.22356781497004, -15.999338281307516], [-61.21458466212884, -15.999338281307516], [-61.21458466212884, -15.99035512846632], [-61.22356781497004, -15.99035512846632], [-61.22356781497004, -15.999338281307516]]]}, 'id': '+13211+10129', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.22356781497004, -16.01730458698991], [-61.21458466212884, -16.01730458698991], [-61.21458466212884, -16.008321434148712], [-61.22356781497004, -16.008321434148712], [-61.22356781497004, -16.01730458698991]]]}, 'id': '+13211+10131', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.22356781497004, -16.18798449097261], [-61.21458466212884, -16.18798449097261], [-61.21458466212884, -16.179001338131414], [-61.22356781497004, -16.179001338131414], [-61.22356781497004, -16.18798449097261]]]}, 'id': '+13211+10150', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.22356781497004, -16.331714936431737], [-61.21458466212884, -16.331714936431737], [-61.21458466212884, -16.32273178359054], [-61.22356781497004, -16.32273178359054], [-61.22356781497004, -16.331714936431737]]]}, 'id': '+13211+10166', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.22356781497004, -16.367647547796523], [-61.21458466212884, -16.367647547796523], [-61.21458466212884, -16.358664394955326], [-61.22356781497004, -16.358664394955326], [-61.22356781497004, -16.367647547796523]]]}, 'id': '+13211+10170', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.232550967811235, -13.582870167026002], [-61.21458466212884, -13.582870167026002], [-61.21458466212884, -13.573887014184805], [-61.205601509287646, -13.573887014184805], [-61.205601509287646, -13.564903861343609], [-61.21458466212884, -13.564903861343609], [-61.21458466212884, -13.555920708502413], [-61.22356781497004, -13.555920708502413], [-61.22356781497004, -13.564903861343609], [-61.21458466212884, -13.564903861343609], [-61.21458466212884, -13.573887014184805], [-61.232550967811235, -13.573887014184805], [-61.232550967811235, -13.582870167026002]]]}, 'id': '+13211+9860', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.22356781497004, -14.094909878974136], [-61.21458466212884, -14.094909878974136], [-61.21458466212884, -14.08592672613294], [-61.22356781497004, -14.08592672613294], [-61.22356781497004, -14.094909878974136]]]}, 'id': '+13211+9917', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.22356781497004, -14.184741407386085], [-61.21458466212884, -14.184741407386085], [-61.21458466212884, -14.157791948862496], [-61.22356781497004, -14.157791948862496], [-61.22356781497004, -14.184741407386085]]]}, 'id': '+13211+9927', 'properties': {'count': 3, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.22356781497004, -14.37338761705118], [-61.21458466212884, -14.37338761705118], [-61.21458466212884, -14.364404464209983], [-61.22356781497004, -14.364404464209983], [-61.22356781497004, -14.37338761705118]]]}, 'id': '+13211+9948', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.21458466212884, -16.09815296256066], [-61.205601509287646, -16.09815296256066], [-61.205601509287646, -16.08018665687827], [-61.21458466212884, -16.08018665687827], [-61.21458466212884, -16.071203504037072], [-61.205601509287646, -16.071203504037072], [-61.205601509287646, -16.05323719835468], [-61.21458466212884, -16.05323719835468], [-61.21458466212884, -16.044254045513483], [-61.22356781497004, -16.044254045513483], [-61.22356781497004, -16.062220351195876], [-61.232550967811235, -16.062220351195876], [-61.232550967811235, -16.071203504037072], [-61.24153412065243, -16.071203504037072], [-61.24153412065243, -16.08018665687827], [-61.21458466212884, -16.08018665687827], [-61.21458466212884, -16.09815296256066]], [[-61.21458466212884, -16.071203504037072], [-61.21458466212884, -16.062220351195876], [-61.22356781497004, -16.062220351195876], [-61.22356781497004, -16.071203504037072], [-61.21458466212884, -16.071203504037072]]]}, 'id': '+13212+10140', 'properties': {'count': 10, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.21458466212884, -16.143068726766643], [-61.205601509287646, -16.143068726766643], [-61.205601509287646, -16.134085573925447], [-61.19661835644645, -16.134085573925447], [-61.19661835644645, -16.12510242108425], [-61.205601509287646, -16.12510242108425], [-61.205601509287646, -16.134085573925447], [-61.21458466212884, -16.134085573925447], [-61.21458466212884, -16.143068726766643]]]}, 'id': '+13212+10145', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.21458466212884, -13.726600612485129], [-61.205601509287646, -13.726600612485129], [-61.205601509287646, -13.717617459643932], [-61.21458466212884, -13.717617459643932], [-61.21458466212884, -13.726600612485129]]]}, 'id': '+13212+9876', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.21458466212884, -14.175758254544888], [-61.205601509287646, -14.175758254544888], [-61.205601509287646, -14.157791948862496], [-61.21458466212884, -14.157791948862496], [-61.21458466212884, -14.175758254544888]]]}, 'id': '+13212+9926', 'properties': {'count': 2, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.21458466212884, -14.193724560227281], [-61.205601509287646, -14.193724560227281], [-61.205601509287646, -14.184741407386085], [-61.21458466212884, -14.184741407386085], [-61.21458466212884, -14.193724560227281]]]}, 'id': '+13212+9928', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.21458466212884, -14.624915896604648], [-61.205601509287646, -14.624915896604648], [-61.205601509287646, -14.615932743763452], [-61.21458466212884, -14.615932743763452], [-61.21458466212884, -14.624915896604648]]]}, 'id': '+13212+9976', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.21458466212884, -14.64288220228704], [-61.205601509287646, -14.64288220228704], [-61.205601509287646, -14.633899049445844], [-61.21458466212884, -14.633899049445844], [-61.21458466212884, -14.64288220228704]]]}, 'id': '+13212+9978', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.21458466212884, -14.696781119334204], [-61.205601509287646, -14.696781119334204], [-61.205601509287646, -14.678814813651812], [-61.19661835644645, -14.678814813651812], [-61.19661835644645, -14.660848507969433], [-61.205601509287646, -14.660848507969433], [-61.205601509287646, -14.651865355128237], [-61.21458466212884, -14.651865355128237], [-61.21458466212884, -14.660848507969433], [-61.205601509287646, -14.660848507969433], [-61.205601509287646, -14.678814813651812], [-61.22356781497004, -14.678814813651812], [-61.22356781497004, -14.687797966493008], [-61.21458466212884, -14.687797966493008], [-61.21458466212884, -14.696781119334204]]]}, 'id': '+13212+9984', 'properties': {'count': 6, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.22356781497004, -14.831528411952135], [-61.205601509287646, -14.831528411952135], [-61.205601509287646, -14.822545259110939], [-61.22356781497004, -14.822545259110939], [-61.22356781497004, -14.831528411952135]]]}, 'id': '+13212+9999', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.205601509287646, -14.858477870475724], [-61.19661835644645, -14.858477870475724], [-61.19661835644645, -14.840511564793331], [-61.205601509287646, -14.840511564793331], [-61.205601509287646, -14.858477870475724]]]}, 'id': '+13213+10002', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.205601509287646, -15.999338281307516], [-61.19661835644645, -15.999338281307516], [-61.19661835644645, -15.99035512846632], [-61.205601509287646, -15.99035512846632], [-61.205601509287646, -15.999338281307516]]]}, 'id': '+13213+10129', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.205601509287646, -16.008321434148712], [-61.19661835644645, -16.008321434148712], [-61.19661835644645, -15.999338281307516], [-61.205601509287646, -15.999338281307516], [-61.205601509287646, -16.008321434148712]]]}, 'id': '+13213+10130', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.205601509287646, -16.107136115401858], [-61.19661835644645, -16.107136115401858], [-61.19661835644645, -16.09815296256066], [-61.205601509287646, -16.09815296256066], [-61.205601509287646, -16.107136115401858]]]}, 'id': '+13213+10141', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.205601509287646, -16.196967643813807], [-61.19661835644645, -16.196967643813807], [-61.19661835644645, -16.18798449097261], [-61.205601509287646, -16.18798449097261], [-61.205601509287646, -16.196967643813807]]]}, 'id': '+13213+10151', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.205601509287646, -16.24188340801979], [-61.19661835644645, -16.24188340801979], [-61.19661835644645, -16.232900255178592], [-61.187635203605254, -16.232900255178592], [-61.187635203605254, -16.223917102337396], [-61.19661835644645, -16.223917102337396], [-61.19661835644645, -16.2149339494962], [-61.205601509287646, -16.2149339494962], [-61.205601509287646, -16.205950796655003], [-61.19661835644645, -16.205950796655003], [-61.19661835644645, -16.196967643813807], [-61.205601509287646, -16.196967643813807], [-61.205601509287646, -16.205950796655003], [-61.21458466212884, -16.205950796655003], [-61.21458466212884, -16.196967643813807], [-61.22356781497004, -16.196967643813807], [-61.22356781497004, -16.2149339494962], [-61.232550967811235, -16.2149339494962], [-61.232550967811235, -16.223917102337396], [-61.22356781497004, -16.223917102337396], [-61.22356781497004, -16.2149339494962], [-61.205601509287646, -16.2149339494962], [-61.205601509287646, -16.223917102337396], [-61.19661835644645, -16.223917102337396], [-61.19661835644645, -16.232900255178592], [-61.205601509287646, -16.232900255178592], [-61.205601509287646, -16.24188340801979]]]}, 'id': '+13213+10156', 'properties': {'count': 8, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.205601509287646, -13.60981962554959], [-61.19661835644645, -13.60981962554959], [-61.19661835644645, -13.600836472708394], [-61.205601509287646, -13.600836472708394], [-61.205601509287646, -13.60981962554959]]]}, 'id': '+13213+9863', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.205601509287646, -14.202707713068477], [-61.19661835644645, -14.202707713068477], [-61.19661835644645, -14.193724560227281], [-61.187635203605254, -14.193724560227281], [-61.187635203605254, -14.184741407386085], [-61.19661835644645, -14.184741407386085], [-61.19661835644645, -14.193724560227281], [-61.205601509287646, -14.193724560227281], [-61.205601509287646, -14.202707713068477]]]}, 'id': '+13213+9929', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.205601509287646, -14.265589782956837], [-61.19661835644645, -14.265589782956837], [-61.19661835644645, -14.256606630115641], [-61.205601509287646, -14.256606630115641], [-61.205601509287646, -14.265589782956837]]]}, 'id': '+13213+9936', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.205601509287646, -14.597966438081059], [-61.19661835644645, -14.597966438081059], [-61.19661835644645, -14.588983285239863], [-61.205601509287646, -14.588983285239863], [-61.205601509287646, -14.597966438081059]]]}, 'id': '+13213+9973', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.19661835644645, -16.026287739831105], [-61.187635203605254, -16.026287739831105], [-61.187635203605254, -16.01730458698991], [-61.19661835644645, -16.01730458698991], [-61.19661835644645, -16.026287739831105]]]}, 'id': '+13214+10132', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.19661835644645, -16.089169809719465], [-61.187635203605254, -16.089169809719465], [-61.187635203605254, -16.08018665687827], [-61.19661835644645, -16.08018665687827], [-61.19661835644645, -16.089169809719465]]]}, 'id': '+13214+10139', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.19661835644645, -16.116119268243054], [-61.187635203605254, -16.116119268243054], [-61.187635203605254, -16.107136115401858], [-61.19661835644645, -16.107136115401858], [-61.19661835644645, -16.116119268243054]]]}, 'id': '+13214+10142', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.19661835644645, -16.41256331200249], [-61.187635203605254, -16.41256331200249], [-61.187635203605254, -16.403580159161294], [-61.19661835644645, -16.403580159161294], [-61.19661835644645, -16.41256331200249]]]}, 'id': '+13214+10175', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.19661835644645, -13.663718542596754], [-61.187635203605254, -13.663718542596754], [-61.187635203605254, -13.654735389755558], [-61.19661835644645, -13.654735389755558], [-61.19661835644645, -13.663718542596754]]]}, 'id': '+13214+9869', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.19661835644645, -13.717617459643932], [-61.187635203605254, -13.717617459643932], [-61.187635203605254, -13.708634306802736], [-61.19661835644645, -13.708634306802736], [-61.19661835644645, -13.717617459643932]]]}, 'id': '+13214+9875', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.19661835644645, -14.08592672613294], [-61.187635203605254, -14.08592672613294], [-61.187635203605254, -14.076943573291743], [-61.19661835644645, -14.076943573291743], [-61.19661835644645, -14.08592672613294]]]}, 'id': '+13214+9916', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.21458466212884, -14.41830338125716], [-61.187635203605254, -14.41830338125716], [-61.187635203605254, -14.409320228415964], [-61.17865205076406, -14.409320228415964], [-61.17865205076406, -14.400337075574768], [-61.187635203605254, -14.400337075574768], [-61.187635203605254, -14.409320228415964], [-61.21458466212884, -14.409320228415964], [-61.21458466212884, -14.41830338125716]]]}, 'id': '+13214+9953', 'properties': {'count': 4, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.19661835644645, -14.831528411952135], [-61.187635203605254, -14.831528411952135], [-61.187635203605254, -14.822545259110939], [-61.19661835644645, -14.822545259110939], [-61.19661835644645, -14.804578953428546], [-61.187635203605254, -14.804578953428546], [-61.187635203605254, -14.813562106269742], [-61.17865205076406, -14.813562106269742], [-61.17865205076406, -14.804578953428546], [-61.16966889792286, -14.804578953428546], [-61.16966889792286, -14.79559580058735], [-61.17865205076406, -14.79559580058735], [-61.17865205076406, -14.804578953428546], [-61.187635203605254, -14.804578953428546], [-61.187635203605254, -14.777629494904971], [-61.16966889792286, -14.777629494904971], [-61.16966889792286, -14.768646342063775], [-61.17865205076406, -14.768646342063775], [-61.17865205076406, -14.759663189222579], [-61.16966889792286, -14.759663189222579], [-61.16966889792286, -14.750680036381382], [-61.187635203605254, -14.750680036381382], [-61.187635203605254, -14.759663189222579], [-61.205601509287646, -14.759663189222579], [-61.205601509287646, -14.73271373069899], [-61.22356781497004, -14.73271373069899], [-61.22356781497004, -14.723730577857793], [-61.232550967811235, -14.723730577857793], [-61.232550967811235, -14.750680036381382], [-61.24153412065243, -14.750680036381382], [-61.24153412065243, -14.759663189222579], [-61.232550967811235, -14.759663189222579], [-61.232550967811235, -14.768646342063775], [-61.24153412065243, -14.768646342063775], [-61.24153412065243, -14.777629494904971], [-61.232550967811235, -14.777629494904971], [-61.232550967811235, -14.786612647746153], [-61.22356781497004, -14.786612647746153], [-61.22356781497004, -14.804578953428546], [-61.232550967811235, -14.804578953428546], [-61.232550967811235, -14.822545259110939], [-61.21458466212884, -14.822545259110939], [-61.21458466212884, -14.813562106269742], [-61.205601509287646, -14.813562106269742], [-61.205601509287646, -14.822545259110939], [-61.19661835644645, -14.822545259110939], [-61.19661835644645, -14.831528411952135]], [[-61.187635203605254, -14.777629494904971], [-61.187635203605254, -14.768646342063775], [-61.21458466212884, -14.768646342063775], [-61.21458466212884, -14.777629494904971], [-61.187635203605254, -14.777629494904971]]]}, 'id': '+13214+9999', 'properties': {'count': 47, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.187635203605254, -15.96340566994273], [-61.17865205076406, -15.96340566994273], [-61.17865205076406, -15.954422517101534], [-61.187635203605254, -15.954422517101534], [-61.187635203605254, -15.96340566994273]]]}, 'id': '+13215+10125', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.187635203605254, -16.008321434148712], [-61.17865205076406, -16.008321434148712], [-61.17865205076406, -15.999338281307516], [-61.187635203605254, -15.999338281307516], [-61.187635203605254, -16.008321434148712]]]}, 'id': '+13215+10130', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.187635203605254, -16.071203504037072], [-61.17865205076406, -16.071203504037072], [-61.17865205076406, -16.062220351195876], [-61.187635203605254, -16.062220351195876], [-61.187635203605254, -16.05323719835468], [-61.19661835644645, -16.05323719835468], [-61.19661835644645, -16.044254045513483], [-61.205601509287646, -16.044254045513483], [-61.205601509287646, -16.05323719835468], [-61.19661835644645, -16.05323719835468], [-61.19661835644645, -16.062220351195876], [-61.187635203605254, -16.062220351195876], [-61.187635203605254, -16.071203504037072]]]}, 'id': '+13215+10137', 'properties': {'count': 3, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.187635203605254, -16.232900255178592], [-61.17865205076406, -16.232900255178592], [-61.17865205076406, -16.223917102337396], [-61.187635203605254, -16.223917102337396], [-61.187635203605254, -16.232900255178592]]]}, 'id': '+13215+10155', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.187635203605254, -16.250866560860985], [-61.17865205076406, -16.250866560860985], [-61.17865205076406, -16.24188340801979], [-61.187635203605254, -16.24188340801979], [-61.187635203605254, -16.250866560860985]]]}, 'id': '+13215+10157', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.187635203605254, -14.05897726760935], [-61.17865205076406, -14.05897726760935], [-61.17865205076406, -14.049994114768154], [-61.187635203605254, -14.049994114768154], [-61.187635203605254, -14.05897726760935]]]}, 'id': '+13215+9913', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.187635203605254, -14.175758254544888], [-61.17865205076406, -14.175758254544888], [-61.17865205076406, -14.166775101703692], [-61.187635203605254, -14.166775101703692], [-61.187635203605254, -14.175758254544888]]]}, 'id': '+13215+9926', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.187635203605254, -14.238640324433248], [-61.17865205076406, -14.238640324433248], [-61.17865205076406, -14.229657171592052], [-61.187635203605254, -14.229657171592052], [-61.187635203605254, -14.238640324433248]]]}, 'id': '+13215+9933', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.187635203605254, -14.588983285239863], [-61.17865205076406, -14.588983285239863], [-61.17865205076406, -14.580000132398666], [-61.16966889792286, -14.580000132398666], [-61.16966889792286, -14.57101697955747], [-61.19661835644645, -14.57101697955747], [-61.19661835644645, -14.580000132398666], [-61.187635203605254, -14.580000132398666], [-61.187635203605254, -14.588983285239863]]]}, 'id': '+13215+9972', 'properties': {'count': 4, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.187635203605254, -14.615932743763452], [-61.17865205076406, -14.615932743763452], [-61.17865205076406, -14.606949590922255], [-61.187635203605254, -14.606949590922255], [-61.187635203605254, -14.615932743763452]]]}, 'id': '+13215+9975', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.187635203605254, -14.66983166081063], [-61.17865205076406, -14.66983166081063], [-61.17865205076406, -14.660848507969433], [-61.187635203605254, -14.660848507969433], [-61.187635203605254, -14.66983166081063]]]}, 'id': '+13215+9981', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.17865205076406, -14.840511564793331], [-61.16966889792286, -14.840511564793331], [-61.16966889792286, -14.831528411952135], [-61.17865205076406, -14.831528411952135], [-61.17865205076406, -14.822545259110939], [-61.187635203605254, -14.822545259110939], [-61.187635203605254, -14.831528411952135], [-61.17865205076406, -14.831528411952135], [-61.17865205076406, -14.840511564793331]]]}, 'id': '+13216+10000', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.17865205076406, -15.40645019378863], [-61.16966889792286, -15.40645019378863], [-61.16966889792286, -15.397467040947433], [-61.17865205076406, -15.397467040947433], [-61.17865205076406, -15.40645019378863]]]}, 'id': '+13216+10063', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.17865205076406, -15.945439364260338], [-61.16966889792286, -15.945439364260338], [-61.16966889792286, -15.92747305857796], [-61.17865205076406, -15.92747305857796], [-61.17865205076406, -15.945439364260338]]]}, 'id': '+13216+10123', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.17865205076406, -16.430529617684883], [-61.16966889792286, -16.430529617684883], [-61.16966889792286, -16.421546464843686], [-61.17865205076406, -16.421546464843686], [-61.17865205076406, -16.430529617684883]]]}, 'id': '+13216+10177', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.17865205076406, -13.519988097137642], [-61.16966889792286, -13.519988097137642], [-61.16966889792286, -13.511004944296445], [-61.17865205076406, -13.511004944296445], [-61.17865205076406, -13.502021791455249], [-61.187635203605254, -13.502021791455249], [-61.187635203605254, -13.511004944296445], [-61.17865205076406, -13.511004944296445], [-61.17865205076406, -13.519988097137642]]]}, 'id': '+13216+9853', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.17865205076406, -13.555920708502413], [-61.16966889792286, -13.555920708502413], [-61.16966889792286, -13.53795440282002], [-61.160685745081665, -13.53795440282002], [-61.160685745081665, -13.546937555661216], [-61.142719439399286, -13.546937555661216], [-61.142719439399286, -13.528971249978824], [-61.160685745081665, -13.528971249978824], [-61.160685745081665, -13.519988097137642], [-61.16966889792286, -13.519988097137642], [-61.16966889792286, -13.528971249978824], [-61.187635203605254, -13.528971249978824], [-61.187635203605254, -13.546937555661216], [-61.17865205076406, -13.546937555661216], [-61.17865205076406, -13.555920708502413]]]}, 'id': '+13216+9857', 'properties': {'count': 11, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.17865205076406, -14.094909878974136], [-61.16966889792286, -14.094909878974136], [-61.16966889792286, -14.08592672613294], [-61.160685745081665, -14.08592672613294], [-61.160685745081665, -14.076943573291743], [-61.16966889792286, -14.076943573291743], [-61.16966889792286, -14.08592672613294], [-61.17865205076406, -14.08592672613294], [-61.17865205076406, -14.094909878974136]]]}, 'id': '+13216+9917', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.17865205076406, -14.202707713068477], [-61.16966889792286, -14.202707713068477], [-61.16966889792286, -14.193724560227281], [-61.17865205076406, -14.193724560227281], [-61.17865205076406, -14.202707713068477]]]}, 'id': '+13216+9929', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.17865205076406, -14.355421311368787], [-61.16966889792286, -14.355421311368787], [-61.16966889792286, -14.34643815852759], [-61.17865205076406, -14.34643815852759], [-61.17865205076406, -14.355421311368787]]]}, 'id': '+13216+9946', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.17865205076406, -14.382370769892376], [-61.16966889792286, -14.382370769892376], [-61.16966889792286, -14.364404464209983], [-61.187635203605254, -14.364404464209983], [-61.187635203605254, -14.37338761705118], [-61.19661835644645, -14.37338761705118], [-61.19661835644645, -14.364404464209983], [-61.205601509287646, -14.364404464209983], [-61.205601509287646, -14.382370769892376], [-61.187635203605254, -14.382370769892376], [-61.187635203605254, -14.37338761705118], [-61.17865205076406, -14.37338761705118], [-61.17865205076406, -14.382370769892376]]]}, 'id': '+13216+9949', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.17865205076406, -14.651865355128237], [-61.16966889792286, -14.651865355128237], [-61.16966889792286, -14.64288220228704], [-61.17865205076406, -14.64288220228704], [-61.17865205076406, -14.651865355128237]]]}, 'id': '+13216+9979', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.17865205076406, -14.813562106269742], [-61.16966889792286, -14.813562106269742], [-61.16966889792286, -14.804578953428546], [-61.17865205076406, -14.804578953428546], [-61.17865205076406, -14.813562106269742]]]}, 'id': '+13216+9997', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.16966889792286, -14.876444176158117], [-61.160685745081665, -14.876444176158117], [-61.160685745081665, -14.858477870475724], [-61.16966889792286, -14.858477870475724], [-61.16966889792286, -14.876444176158117]]]}, 'id': '+13217+10004', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.17865205076406, -15.388483888106236], [-61.160685745081665, -15.388483888106236], [-61.160685745081665, -15.37950073526504], [-61.17865205076406, -15.37950073526504], [-61.17865205076406, -15.388483888106236]]]}, 'id': '+13217+10061', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.16966889792286, -16.026287739831105], [-61.160685745081665, -16.026287739831105], [-61.160685745081665, -16.01730458698991], [-61.16966889792286, -16.01730458698991], [-61.16966889792286, -16.026287739831105]]]}, 'id': '+13217+10132', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.16966889792286, -16.0352708926723], [-61.160685745081665, -16.0352708926723], [-61.160685745081665, -16.026287739831105], [-61.16966889792286, -16.026287739831105], [-61.16966889792286, -16.0352708926723]]]}, 'id': '+13217+10133', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.16966889792286, -16.170018185290218], [-61.160685745081665, -16.170018185290218], [-61.160685745081665, -16.16103503244902], [-61.16966889792286, -16.16103503244902], [-61.16966889792286, -16.170018185290218]]]}, 'id': '+13217+10148', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.16966889792286, -16.18798449097261], [-61.160685745081665, -16.18798449097261], [-61.160685745081665, -16.179001338131414], [-61.16966889792286, -16.179001338131414], [-61.16966889792286, -16.16103503244902], [-61.187635203605254, -16.16103503244902], [-61.187635203605254, -16.15205187960784], [-61.19661835644645, -16.15205187960784], [-61.19661835644645, -16.143068726766643], [-61.21458466212884, -16.143068726766643], [-61.21458466212884, -16.15205187960784], [-61.205601509287646, -16.15205187960784], [-61.205601509287646, -16.16103503244902], [-61.21458466212884, -16.16103503244902], [-61.21458466212884, -16.179001338131414], [-61.205601509287646, -16.179001338131414], [-61.205601509287646, -16.170018185290218], [-61.19661835644645, -16.170018185290218], [-61.19661835644645, -16.179001338131414], [-61.187635203605254, -16.179001338131414], [-61.187635203605254, -16.18798449097261], [-61.17865205076406, -16.18798449097261], [-61.17865205076406, -16.179001338131414], [-61.16966889792286, -16.179001338131414], [-61.16966889792286, -16.18798449097261]], [[-61.187635203605254, -16.170018185290218], [-61.187635203605254, -16.16103503244902], [-61.19661835644645, -16.16103503244902], [-61.19661835644645, -16.170018185290218], [-61.187635203605254, -16.170018185290218]]]}, 'id': '+13217+10150', 'properties': {'count': 14, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.16966889792286, -16.385613853478915], [-61.160685745081665, -16.385613853478915], [-61.160685745081665, -16.37663070063772], [-61.16966889792286, -16.37663070063772], [-61.16966889792286, -16.385613853478915]]]}, 'id': '+13217+10172', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.16966889792286, -14.265589782956837], [-61.160685745081665, -14.265589782956837], [-61.160685745081665, -14.256606630115641], [-61.16966889792286, -14.256606630115641], [-61.16966889792286, -14.265589782956837]]]}, 'id': '+13217+9936', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.160685745081665, -14.840511564793331], [-61.15170259224048, -14.840511564793331], [-61.15170259224048, -14.831528411952135], [-61.142719439399286, -14.831528411952135], [-61.142719439399286, -14.822545259110939], [-61.15170259224048, -14.822545259110939], [-61.15170259224048, -14.831528411952135], [-61.160685745081665, -14.831528411952135], [-61.160685745081665, -14.840511564793331]]]}, 'id': '+13218+10000', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.160685745081665, -15.370517582423844], [-61.15170259224048, -15.370517582423844], [-61.15170259224048, -15.361534429582647], [-61.160685745081665, -15.361534429582647], [-61.160685745081665, -15.370517582423844]]]}, 'id': '+13218+10059', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.160685745081665, -16.0352708926723], [-61.15170259224048, -16.0352708926723], [-61.15170259224048, -16.01730458698991], [-61.160685745081665, -16.01730458698991], [-61.160685745081665, -16.0352708926723]]]}, 'id': '+13218+10133', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.16966889792286, -16.08018665687827], [-61.15170259224048, -16.08018665687827], [-61.15170259224048, -16.071203504037072], [-61.13373628655809, -16.071203504037072], [-61.13373628655809, -16.062220351195876], [-61.124753133716894, -16.062220351195876], [-61.124753133716894, -16.044254045513483], [-61.13373628655809, -16.044254045513483], [-61.13373628655809, -16.05323719835468], [-61.142719439399286, -16.05323719835468], [-61.142719439399286, -16.062220351195876], [-61.15170259224048, -16.062220351195876], [-61.15170259224048, -16.05323719835468], [-61.160685745081665, -16.05323719835468], [-61.160685745081665, -16.044254045513483], [-61.142719439399286, -16.044254045513483], [-61.142719439399286, -16.026287739831105], [-61.13373628655809, -16.026287739831105], [-61.13373628655809, -16.01730458698991], [-61.142719439399286, -16.01730458698991], [-61.142719439399286, -15.99035512846632], [-61.124753133716894, -15.99035512846632], [-61.124753133716894, -15.999338281307516], [-61.13373628655809, -15.999338281307516], [-61.13373628655809, -16.008321434148712], [-61.124753133716894, -16.008321434148712], [-61.124753133716894, -15.999338281307516], [-61.1157699808757, -15.999338281307516], [-61.1157699808757, -15.99035512846632], [-61.124753133716894, -15.99035512846632], [-61.124753133716894, -15.981371975625123], [-61.1067868280345, -15.981371975625123], [-61.1067868280345, -15.999338281307516], [-61.097803675193305, -15.999338281307516], [-61.097803675193305, -15.972388822783927], [-61.124753133716894, -15.972388822783927], [-61.124753133716894, -15.96340566994273], [-61.097803675193305, -15.96340566994273], [-61.097803675193305, -15.954422517101534], [-61.070854216669716, -15.954422517101534], [-61.070854216669716, -15.945439364260338], [-61.07983736951091, -15.945439364260338], [-61.07983736951091, -15.92747305857796], [-61.070854216669716, -15.92747305857796], [-61.070854216669716, -15.909506752895567], [-61.06187106382852, -15.909506752895567], [-61.06187106382852, -15.90052360005437], [-61.05288791098732, -15.90052360005437], [-61.05288791098732, -15.891540447213174], [-61.04390475814614, -15.891540447213174], [-61.04390475814614, -15.882557294371978], [-61.034921605304945, -15.882557294371978], [-61.034921605304945, -15.891540447213174], [-61.02593845246375, -15.891540447213174], [-61.02593845246375, -15.909506752895567], [-61.01695529962255, -15.909506752895567], [-61.01695529962255, -15.918489905736763], [-60.99898899394016, -15.918489905736763], [-60.99898899394016, -15.92747305857796], [-60.98102268825777, -15.92747305857796], [-60.98102268825777, -15.945439364260338], [-60.97203953541657, -15.945439364260338], [-60.97203953541657, -15.936456211419141], [-60.9271237712106, -15.936456211419141], [-60.9271237712106, -15.945439364260338], [-60.91814061836941, -15.945439364260338], [-60.91814061836941, -15.936456211419141], [-60.90915746552821, -15.936456211419141], [-60.90915746552821, -15.92747305857796], [-60.900174312687014, -15.92747305857796], [-60.900174312687014, -15.936456211419141], [-60.873224854163425, -15.936456211419141], [-60.873224854163425, -15.945439364260338], [-60.86424170132223, -15.945439364260338], [-60.86424170132223, -15.954422517101534], [-60.873224854163425, -15.954422517101534], [-60.873224854163425, -15.96340566994273], [-60.86424170132223, -15.96340566994273], [-60.86424170132223, -15.954422517101534], [-60.85525854848103, -15.954422517101534], [-60.85525854848103, -15.945439364260338], [-60.86424170132223, -15.945439364260338], [-60.86424170132223, -15.92747305857796], [-60.873224854163425, -15.92747305857796], [-60.873224854163425, -15.909506752895567], [-60.89119115984582, -15.909506752895567], [-60.89119115984582, -15.882557294371978], [-60.90915746552821, -15.882557294371978], [-60.90915746552821, -15.864590988689585], [-60.89119115984582, -15.864590988689585], [-60.89119115984582, -15.873574141530781], [-60.88220800700462, -15.873574141530781], [-60.88220800700462, -15.891540447213174], [-60.873224854163425, -15.891540447213174], [-60.873224854163425, -15.882557294371978], [-60.86424170132223, -15.882557294371978], [-60.86424170132223, -15.891540447213174], [-60.85525854848103, -15.891540447213174], [-60.85525854848103, -15.90052360005437], [-60.846275395639836, -15.90052360005437], [-60.846275395639836, -15.909506752895567], [-60.85525854848103, -15.909506752895567], [-60.85525854848103, -15.918489905736763], [-60.82830908995744, -15.918489905736763], [-60.82830908995744, -15.92747305857796], [-60.81932593711625, -15.92747305857796], [-60.81932593711625, -15.936456211419141], [-60.810342784275065, -15.936456211419141], [-60.810342784275065, -15.945439364260338], [-60.80135963143387, -15.945439364260338], [-60.80135963143387, -15.936456211419141], [-60.79237647859267, -15.936456211419141], [-60.79237647859267, -15.945439364260338], [-60.783393325751476, -15.945439364260338], [-60.783393325751476, -15.936456211419141], [-60.77441017291028, -15.936456211419141], [-60.77441017291028, -15.954422517101534], [-60.783393325751476, -15.954422517101534], [-60.783393325751476, -15.972388822783927], [-60.77441017291028, -15.972388822783927], [-60.77441017291028, -15.954422517101534], [-60.76542702006908, -15.954422517101534], [-60.76542702006908, -15.96340566994273], [-60.75644386722789, -15.96340566994273], [-60.75644386722789, -15.936456211419141], [-60.77441017291028, -15.936456211419141], [-60.77441017291028, -15.92747305857796], [-60.783393325751476, -15.92747305857796], [-60.783393325751476, -15.936456211419141], [-60.79237647859267, -15.936456211419141], [-60.79237647859267, -15.92747305857796], [-60.80135963143387, -15.92747305857796], [-60.80135963143387, -15.936456211419141], [-60.810342784275065, -15.936456211419141], [-60.810342784275065, -15.918489905736763], [-60.81932593711625, -15.918489905736763], [-60.81932593711625, -15.909506752895567], [-60.810342784275065, -15.909506752895567], [-60.810342784275065, -15.891540447213174], [-60.81932593711625, -15.891540447213174], [-60.81932593711625, -15.882557294371978], [-60.79237647859267, -15.882557294371978], [-60.79237647859267, -15.891540447213174], [-60.80135963143387, -15.891540447213174], [-60.80135963143387, -15.918489905736763], [-60.79237647859267, -15.918489905736763], [-60.79237647859267, -15.891540447213174], [-60.783393325751476, -15.891540447213174], [-60.783393325751476, -15.90052360005437], [-60.74746071438669, -15.90052360005437], [-60.74746071438669, -15.909506752895567], [-60.7294944087043, -15.909506752895567], [-60.7294944087043, -15.90052360005437], [-60.738477561545494, -15.90052360005437], [-60.738477561545494, -15.882557294371978], [-60.7294944087043, -15.882557294371978], [-60.7294944087043, -15.873574141530781], [-60.7205112558631, -15.873574141530781], [-60.7205112558631, -15.864590988689585], [-60.711528103021905, -15.864590988689585], [-60.711528103021905, -15.873574141530781], [-60.70254495018071, -15.873574141530781], [-60.70254495018071, -15.864590988689585], [-60.711528103021905, -15.864590988689585], [-60.711528103021905, -15.855607835848389], [-60.70254495018071, -15.855607835848389], [-60.70254495018071, -15.846624683007192], [-60.69356179733953, -15.846624683007192], [-60.69356179733953, -15.8286583773248], [-60.711528103021905, -15.8286583773248], [-60.711528103021905, -15.837641530165996], [-60.7205112558631, -15.837641530165996], [-60.7205112558631, -15.8286583773248], [-60.738477561545494, -15.8286583773248], [-60.738477561545494, -15.819675224483603], [-60.74746071438669, -15.819675224483603], [-60.74746071438669, -15.801708918801225], [-60.75644386722789, -15.801708918801225], [-60.75644386722789, -15.819675224483603], [-60.76542702006908, -15.819675224483603], [-60.76542702006908, -15.8286583773248], [-60.75644386722789, -15.8286583773248], [-60.75644386722789, -15.819675224483603], [-60.74746071438669, -15.819675224483603], [-60.74746071438669, -15.8286583773248], [-60.738477561545494, -15.8286583773248], [-60.738477561545494, -15.837641530165996], [-60.76542702006908, -15.837641530165996], [-60.76542702006908, -15.855607835848389], [-60.77441017291028, -15.855607835848389], [-60.77441017291028, -15.882557294371978], [-60.76542702006908, -15.882557294371978], [-60.76542702006908, -15.873574141530781], [-60.75644386722789, -15.873574141530781], [-60.75644386722789, -15.882557294371978], [-60.74746071438669, -15.882557294371978], [-60.74746071438669, -15.891540447213174], [-60.783393325751476, -15.891540447213174], [-60.783393325751476, -15.882557294371978], [-60.79237647859267, -15.882557294371978], [-60.79237647859267, -15.873574141530781], [-60.810342784275065, -15.873574141530781], [-60.810342784275065, -15.864590988689585], [-60.82830908995744, -15.864590988689585], [-60.82830908995744, -15.855607835848389], [-60.83729224279864, -15.855607835848389], [-60.83729224279864, -15.846624683007192], [-60.85525854848103, -15.846624683007192], [-60.85525854848103, -15.819675224483603], [-60.846275395639836, -15.819675224483603], [-60.846275395639836, -15.810692071642421], [-60.81932593711625, -15.810692071642421], [-60.81932593711625, -15.801708918801225], [-60.810342784275065, -15.801708918801225], [-60.810342784275065, -15.792725765960029], [-60.83729224279864, -15.792725765960029], [-60.83729224279864, -15.783742613118832], [-60.81932593711625, -15.783742613118832], [-60.81932593711625, -15.774759460277636], [-60.810342784275065, -15.774759460277636], [-60.810342784275065, -15.783742613118832], [-60.79237647859267, -15.783742613118832], [-60.79237647859267, -15.747810001754047], [-60.783393325751476, -15.747810001754047], [-60.783393325751476, -15.729843696071654], [-60.77441017291028, -15.729843696071654], [-60.77441017291028, -15.711877390389262], [-60.783393325751476, -15.711877390389262], [-60.783393325751476, -15.67594477902449], [-60.79237647859267, -15.67594477902449], [-60.79237647859267, -15.684927931865687], [-60.80135963143387, -15.684927931865687], [-60.80135963143387, -15.67594477902449], [-60.810342784275065, -15.67594477902449], [-60.810342784275065, -15.666961626183294], [-60.783393325751476, -15.666961626183294], [-60.783393325751476, -15.657978473342098], [-60.77441017291028, -15.657978473342098], [-60.77441017291028, -15.67594477902449], [-60.76542702006908, -15.67594477902449], [-60.76542702006908, -15.666961626183294], [-60.75644386722789, -15.666961626183294], [-60.75644386722789, -15.657978473342098], [-60.76542702006908, -15.657978473342098], [-60.76542702006908, -15.640012167659705], [-60.783393325751476, -15.640012167659705], [-60.783393325751476, -15.60407955629492], [-60.77441017291028, -15.60407955629492], [-60.77441017291028, -15.595096403453724], [-60.76542702006908, -15.595096403453724], [-60.76542702006908, -15.622045861977313], [-60.77441017291028, -15.622045861977313], [-60.77441017291028, -15.631029014818509], [-60.76542702006908, -15.631029014818509], [-60.76542702006908, -15.622045861977313], [-60.75644386722789, -15.622045861977313], [-60.75644386722789, -15.640012167659705], [-60.74746071438669, -15.640012167659705], [-60.74746071438669, -15.648995320500902], [-60.738477561545494, -15.648995320500902], [-60.738477561545494, -15.640012167659705], [-60.74746071438669, -15.640012167659705], [-60.74746071438669, -15.631029014818509], [-60.7294944087043, -15.631029014818509], [-60.7294944087043, -15.640012167659705], [-60.7205112558631, -15.640012167659705], [-60.7205112558631, -15.613062709136116], [-60.711528103021905, -15.613062709136116], [-60.711528103021905, -15.60407955629492], [-60.69356179733953, -15.60407955629492], [-60.69356179733953, -15.595096403453724], [-60.711528103021905, -15.595096403453724], [-60.711528103021905, -15.60407955629492], [-60.7205112558631, -15.60407955629492], [-60.7205112558631, -15.595096403453724], [-60.7294944087043, -15.595096403453724], [-60.7294944087043, -15.586113250612527], [-60.74746071438669, -15.586113250612527], [-60.74746071438669, -15.595096403453724], [-60.7294944087043, -15.595096403453724], [-60.7294944087043, -15.60407955629492], [-60.738477561545494, -15.60407955629492], [-60.738477561545494, -15.613062709136116], [-60.7294944087043, -15.613062709136116], [-60.7294944087043, -15.622045861977313], [-60.75644386722789, -15.622045861977313], [-60.75644386722789, -15.577130097771345], [-60.76542702006908, -15.577130097771345], [-60.76542702006908, -15.568146944930149], [-60.75644386722789, -15.568146944930149], [-60.75644386722789, -15.559163792088953], [-60.74746071438669, -15.559163792088953], [-60.74746071438669, -15.550180639247756], [-60.75644386722789, -15.550180639247756], [-60.75644386722789, -15.559163792088953], [-60.76542702006908, -15.559163792088953], [-60.76542702006908, -15.532214333565364], [-60.77441017291028, -15.532214333565364], [-60.77441017291028, -15.523231180724167], [-60.74746071438669, -15.523231180724167], [-60.74746071438669, -15.505264875041775], [-60.738477561545494, -15.505264875041775], [-60.738477561545494, -15.496281722200578], [-60.76542702006908, -15.496281722200578], [-60.76542702006908, -15.505264875041775], [-60.77441017291028, -15.505264875041775], [-60.77441017291028, -15.487298569359382], [-60.76542702006908, -15.487298569359382], [-60.76542702006908, -15.469332263677003], [-60.738477561545494, -15.469332263677003], [-60.738477561545494, -15.478315416518186], [-60.7205112558631, -15.478315416518186], [-60.7205112558631, -15.469332263677003], [-60.738477561545494, -15.469332263677003], [-60.738477561545494, -15.460349110835807], [-60.76542702006908, -15.460349110835807], [-60.76542702006908, -15.469332263677003], [-60.79237647859267, -15.469332263677003], [-60.79237647859267, -15.478315416518186], [-60.80135963143387, -15.478315416518186], [-60.80135963143387, -15.469332263677003], [-60.810342784275065, -15.469332263677003], [-60.810342784275065, -15.496281722200578], [-60.80135963143387, -15.496281722200578], [-60.80135963143387, -15.51424802788297], [-60.810342784275065, -15.51424802788297], [-60.810342784275065, -15.532214333565364], [-60.80135963143387, -15.532214333565364], [-60.80135963143387, -15.51424802788297], [-60.79237647859267, -15.51424802788297], [-60.79237647859267, -15.523231180724167], [-60.783393325751476, -15.523231180724167], [-60.783393325751476, -15.54119748640656], [-60.79237647859267, -15.54119748640656], [-60.79237647859267, -15.550180639247756], [-60.783393325751476, -15.550180639247756], [-60.783393325751476, -15.568146944930149], [-60.79237647859267, -15.568146944930149], [-60.79237647859267, -15.559163792088953], [-60.80135963143387, -15.559163792088953], [-60.80135963143387, -15.550180639247756], [-60.810342784275065, -15.550180639247756], [-60.810342784275065, -15.54119748640656], [-60.81932593711625, -15.54119748640656], [-60.81932593711625, -15.523231180724167], [-60.82830908995744, -15.523231180724167], [-60.82830908995744, -15.51424802788297], [-60.81932593711625, -15.51424802788297], [-60.81932593711625, -15.505264875041775], [-60.82830908995744, -15.505264875041775], [-60.82830908995744, -15.496281722200578], [-60.83729224279864, -15.496281722200578], [-60.83729224279864, -15.478315416518186], [-60.82830908995744, -15.478315416518186], [-60.82830908995744, -15.469332263677003], [-60.846275395639836, -15.469332263677003], [-60.846275395639836, -15.487298569359382], [-60.85525854848103, -15.487298569359382], [-60.85525854848103, -15.478315416518186], [-60.86424170132223, -15.478315416518186], [-60.86424170132223, -15.496281722200578], [-60.88220800700462, -15.496281722200578], [-60.88220800700462, -15.51424802788297], [-60.900174312687014, -15.51424802788297], [-60.900174312687014, -15.505264875041775], [-60.89119115984582, -15.505264875041775], [-60.89119115984582, -15.487298569359382], [-60.873224854163425, -15.487298569359382], [-60.873224854163425, -15.478315416518186], [-60.88220800700462, -15.478315416518186], [-60.88220800700462, -15.469332263677003], [-60.89119115984582, -15.469332263677003], [-60.89119115984582, -15.460349110835807], [-60.900174312687014, -15.460349110835807], [-60.900174312687014, -15.469332263677003], [-60.89119115984582, -15.469332263677003], [-60.89119115984582, -15.487298569359382], [-60.900174312687014, -15.487298569359382], [-60.900174312687014, -15.505264875041775], [-60.90915746552821, -15.505264875041775], [-60.90915746552821, -15.51424802788297], [-60.91814061836941, -15.51424802788297], [-60.91814061836941, -15.496281722200578], [-60.936106924051785, -15.496281722200578], [-60.936106924051785, -15.487298569359382], [-60.94509007689298, -15.487298569359382], [-60.94509007689298, -15.469332263677003], [-60.936106924051785, -15.469332263677003], [-60.936106924051785, -15.460349110835807], [-60.9271237712106, -15.460349110835807], [-60.9271237712106, -15.442382805153414], [-60.91814061836941, -15.442382805153414], [-60.91814061836941, -15.424416499471022], [-60.9271237712106, -15.424416499471022], [-60.9271237712106, -15.442382805153414], [-60.94509007689298, -15.442382805153414], [-60.94509007689298, -15.45136595799461], [-60.936106924051785, -15.45136595799461], [-60.936106924051785, -15.460349110835807], [-60.94509007689298, -15.460349110835807], [-60.94509007689298, -15.469332263677003], [-60.95407322973418, -15.469332263677003], [-60.95407322973418, -15.460349110835807], [-60.963056382575374, -15.460349110835807], [-60.963056382575374, -15.469332263677003], [-60.95407322973418, -15.469332263677003], [-60.95407322973418, -15.487298569359382], [-60.963056382575374, -15.487298569359382], [-60.963056382575374, -15.496281722200578], [-60.97203953541657, -15.496281722200578], [-60.97203953541657, -15.460349110835807], [-60.99898899394016, -15.460349110835807], [-60.99898899394016, -15.45136595799461], [-60.99000584109896, -15.45136595799461], [-60.99000584109896, -15.442382805153414], [-60.99898899394016, -15.442382805153414], [-60.99898899394016, -15.424416499471022], [-60.99000584109896, -15.424416499471022], [-60.99000584109896, -15.388483888106236], [-60.98102268825777, -15.388483888106236], [-60.98102268825777, -15.40645019378863], [-60.97203953541657, -15.40645019378863], [-60.97203953541657, -15.415433346629825], [-60.963056382575374, -15.415433346629825], [-60.963056382575374, -15.397467040947433], [-60.95407322973418, -15.397467040947433], [-60.95407322973418, -15.37950073526504], [-60.963056382575374, -15.37950073526504], [-60.963056382575374, -15.397467040947433], [-60.97203953541657, -15.397467040947433], [-60.97203953541657, -15.361534429582647], [-60.98102268825777, -15.361534429582647], [-60.98102268825777, -15.352551276741465], [-60.97203953541657, -15.352551276741465], [-60.97203953541657, -15.343568123900269], [-61.007972146781356, -15.343568123900269], [-61.007972146781356, -15.352551276741465], [-61.01695529962255, -15.352551276741465], [-61.01695529962255, -15.343568123900269], [-61.02593845246375, -15.343568123900269], [-61.02593845246375, -15.334584971059073], [-61.007972146781356, -15.334584971059073], [-61.007972146781356, -15.325601818217876], [-60.99000584109896, -15.325601818217876], [-60.99000584109896, -15.31661866537668], [-60.99898899394016, -15.31661866537668], [-60.99898899394016, -15.298652359694287], [-60.99000584109896, -15.298652359694287], [-60.99000584109896, -15.307635512535484], [-60.98102268825777, -15.307635512535484], [-60.98102268825777, -15.289669206853091], [-60.99000584109896, -15.289669206853091], [-60.99000584109896, -15.280686054011895], [-61.02593845246375, -15.280686054011895], [-61.02593845246375, -15.298652359694287], [-61.034921605304945, -15.298652359694287], [-61.034921605304945, -15.289669206853091], [-61.04390475814614, -15.289669206853091], [-61.04390475814614, -15.298652359694287], [-61.05288791098732, -15.298652359694287], [-61.05288791098732, -15.280686054011895], [-61.04390475814614, -15.280686054011895], [-61.04390475814614, -15.271702901170698], [-61.05288791098732, -15.271702901170698], [-61.05288791098732, -15.253736595488306], [-61.04390475814614, -15.253736595488306], [-61.04390475814614, -15.262719748329502], [-61.034921605304945, -15.262719748329502], [-61.034921605304945, -15.253736595488306], [-61.04390475814614, -15.253736595488306], [-61.04390475814614, -15.235770289805927], [-61.007972146781356, -15.235770289805927], [-61.007972146781356, -15.253736595488306], [-60.99898899394016, -15.253736595488306], [-60.99898899394016, -15.226787136964731], [-61.007972146781356, -15.226787136964731], [-61.007972146781356, -15.217803984123535], [-61.01695529962255, -15.217803984123535], [-61.01695529962255, -15.208820831282338], [-61.007972146781356, -15.208820831282338], [-61.007972146781356, -15.199837678441142], [-61.01695529962255, -15.199837678441142], [-61.01695529962255, -15.208820831282338], [-61.02593845246375, -15.208820831282338], [-61.02593845246375, -15.190854525599946], [-61.034921605304945, -15.190854525599946], [-61.034921605304945, -15.18187137275875], [-61.04390475814614, -15.18187137275875], [-61.04390475814614, -15.172888219917553], [-61.05288791098732, -15.172888219917553], [-61.05288791098732, -15.145938761393964], [-61.07983736951091, -15.145938761393964], [-61.07983736951091, -15.136955608552768], [-61.08882052235211, -15.136955608552768], [-61.08882052235211, -15.127972455711571], [-61.07983736951091, -15.127972455711571], [-61.07983736951091, -15.110006150029193], [-61.08882052235211, -15.110006150029193], [-61.08882052235211, -15.101022997187997], [-61.097803675193305, -15.101022997187997], [-61.097803675193305, -15.074073538664408], [-61.13373628655809, -15.074073538664408], [-61.13373628655809, -15.065090385823211], [-61.124753133716894, -15.065090385823211], [-61.124753133716894, -15.056107232982015], [-61.13373628655809, -15.056107232982015], [-61.13373628655809, -15.029157774458426], [-61.142719439399286, -15.029157774458426], [-61.142719439399286, -15.02017462161723], [-61.13373628655809, -15.02017462161723], [-61.13373628655809, -15.011191468776047], [-61.142719439399286, -15.011191468776047], [-61.142719439399286, -15.002208315934851], [-61.160685745081665, -15.002208315934851], [-61.160685745081665, -14.993225163093655], [-61.142719439399286, -14.993225163093655], [-61.142719439399286, -14.966275704570066], [-61.13373628655809, -14.966275704570066], [-61.13373628655809, -14.975258857411262], [-61.124753133716894, -14.975258857411262], [-61.124753133716894, -14.966275704570066], [-61.13373628655809, -14.966275704570066], [-61.13373628655809, -14.948309398887673], [-61.15170259224048, -14.948309398887673], [-61.15170259224048, -14.93034309320528], [-61.187635203605254, -14.93034309320528], [-61.187635203605254, -14.939326246046477], [-61.17865205076406, -14.939326246046477], [-61.17865205076406, -14.948309398887673], [-61.19661835644645, -14.948309398887673], [-61.19661835644645, -14.95729255172887], [-61.205601509287646, -14.95729255172887], [-61.205601509287646, -14.948309398887673], [-61.21458466212884, -14.948309398887673], [-61.21458466212884, -14.921359940364084], [-61.22356781497004, -14.921359940364084], [-61.22356781497004, -14.912376787522888], [-61.25051727349363, -14.912376787522888], [-61.25051727349363, -14.903393634681692], [-61.26848357917602, -14.903393634681692], [-61.26848357917602, -14.912376787522888], [-61.2774667320172, -14.912376787522888], [-61.2774667320172, -14.876444176158117], [-61.26848357917602, -14.876444176158117], [-61.26848357917602, -14.885427328999313], [-61.259500426334824, -14.885427328999313], [-61.259500426334824, -14.876444176158117], [-61.25051727349363, -14.876444176158117], [-61.25051727349363, -14.86746102331692], [-61.26848357917602, -14.86746102331692], [-61.26848357917602, -14.849494717634528], [-61.2774667320172, -14.849494717634528], [-61.2774667320172, -14.831528411952135], [-61.2864498848584, -14.831528411952135], [-61.2864498848584, -14.840511564793331], [-61.295433037699596, -14.840511564793331], [-61.295433037699596, -14.831528411952135], [-61.30441619054079, -14.831528411952135], [-61.30441619054079, -14.849494717634528], [-61.2774667320172, -14.849494717634528], [-61.2774667320172, -14.876444176158117], [-61.2864498848584, -14.876444176158117], [-61.2864498848584, -14.89441048184051], [-61.295433037699596, -14.89441048184051], [-61.295433037699596, -14.885427328999313], [-61.31339934338199, -14.885427328999313], [-61.31339934338199, -14.876444176158117], [-61.295433037699596, -14.876444176158117], [-61.295433037699596, -14.86746102331692], [-61.31339934338199, -14.86746102331692], [-61.31339934338199, -14.849494717634528], [-61.34933195474677, -14.849494717634528], [-61.34933195474677, -14.858477870475724], [-61.367298260429166, -14.858477870475724], [-61.367298260429166, -14.849494717634528], [-61.35831510758797, -14.849494717634528], [-61.35831510758797, -14.840511564793331], [-61.322382496223184, -14.840511564793331], [-61.322382496223184, -14.831528411952135], [-61.31339934338199, -14.831528411952135], [-61.31339934338199, -14.822545259110939], [-61.33136564906438, -14.822545259110939], [-61.33136564906438, -14.831528411952135], [-61.34933195474677, -14.831528411952135], [-61.34933195474677, -14.813562106269742], [-61.33136564906438, -14.813562106269742], [-61.33136564906438, -14.804578953428546], [-61.322382496223184, -14.804578953428546], [-61.322382496223184, -14.813562106269742], [-61.31339934338199, -14.813562106269742], [-61.31339934338199, -14.786612647746153], [-61.30441619054079, -14.786612647746153], [-61.30441619054079, -14.777629494904971], [-61.31339934338199, -14.777629494904971], [-61.31339934338199, -14.750680036381382], [-61.33136564906438, -14.750680036381382], [-61.33136564906438, -14.741696883540186], [-61.34034880190558, -14.741696883540186], [-61.34034880190558, -14.73271373069899], [-61.34933195474677, -14.73271373069899], [-61.34933195474677, -14.741696883540186], [-61.35831510758797, -14.741696883540186], [-61.35831510758797, -14.750680036381382], [-61.367298260429166, -14.750680036381382], [-61.367298260429166, -14.7057642721754], [-61.35831510758797, -14.7057642721754], [-61.35831510758797, -14.696781119334204], [-61.367298260429166, -14.696781119334204], [-61.367298260429166, -14.7057642721754], [-61.38526456611156, -14.7057642721754], [-61.38526456611156, -14.696781119334204], [-61.39424771895274, -14.696781119334204], [-61.39424771895274, -14.7057642721754], [-61.40323087179394, -14.7057642721754], [-61.40323087179394, -14.696781119334204], [-61.42119717747633, -14.696781119334204], [-61.42119717747633, -14.7057642721754], [-61.430180330317526, -14.7057642721754], [-61.430180330317526, -14.687797966493008], [-61.43916348315872, -14.687797966493008], [-61.43916348315872, -14.678814813651812], [-61.457129788841115, -14.678814813651812], [-61.457129788841115, -14.687797966493008], [-61.46611294168231, -14.687797966493008], [-61.46611294168231, -14.7057642721754], [-61.44814663599992, -14.7057642721754], [-61.44814663599992, -14.723730577857793], [-61.484079247364704, -14.723730577857793], [-61.484079247364704, -14.714747425016597], [-61.4930624002059, -14.714747425016597], [-61.4930624002059, -14.741696883540186], [-61.5020455530471, -14.741696883540186], [-61.5020455530471, -14.73271373069899], [-61.520011858729475, -14.73271373069899], [-61.520011858729475, -14.723730577857793], [-61.52899501157067, -14.723730577857793], [-61.52899501157067, -14.73271373069899], [-61.55594447009426, -14.73271373069899], [-61.55594447009426, -14.714747425016597], [-61.56492762293546, -14.714747425016597], [-61.56492762293546, -14.7057642721754], [-61.55594447009426, -14.7057642721754], [-61.55594447009426, -14.696781119334204], [-61.56492762293546, -14.696781119334204], [-61.56492762293546, -14.7057642721754], [-61.57391077577665, -14.7057642721754], [-61.57391077577665, -14.714747425016597], [-61.58289392861785, -14.714747425016597], [-61.58289392861785, -14.723730577857793], [-61.56492762293546, -14.723730577857793], [-61.56492762293546, -14.73271373069899], [-61.55594447009426, -14.73271373069899], [-61.55594447009426, -14.750680036381382], [-61.546961317253064, -14.750680036381382], [-61.546961317253064, -14.759663189222579], [-61.53797816441187, -14.759663189222579], [-61.53797816441187, -14.750680036381382], [-61.520011858729475, -14.750680036381382], [-61.520011858729475, -14.759663189222579], [-61.52899501157067, -14.759663189222579], [-61.52899501157067, -14.768646342063775], [-61.51102870588828, -14.768646342063775], [-61.51102870588828, -14.786612647746153], [-61.5020455530471, -14.786612647746153], [-61.5020455530471, -14.79559580058735], [-61.51102870588828, -14.79559580058735], [-61.51102870588828, -14.813562106269742], [-61.520011858729475, -14.813562106269742], [-61.520011858729475, -14.804578953428546], [-61.52899501157067, -14.804578953428546], [-61.52899501157067, -14.822545259110939], [-61.51102870588828, -14.822545259110939], [-61.51102870588828, -14.831528411952135], [-61.520011858729475, -14.831528411952135], [-61.520011858729475, -14.89441048184051], [-61.51102870588828, -14.89441048184051], [-61.51102870588828, -14.912376787522888], [-61.5020455530471, -14.912376787522888], [-61.5020455530471, -14.921359940364084], [-61.4930624002059, -14.921359940364084], [-61.4930624002059, -14.993225163093655], [-61.484079247364704, -14.993225163093655], [-61.484079247364704, -15.002208315934851], [-61.4930624002059, -15.002208315934851], [-61.4930624002059, -15.011191468776047], [-61.484079247364704, -15.011191468776047], [-61.484079247364704, -15.02017462161723], [-61.4930624002059, -15.02017462161723], [-61.4930624002059, -15.029157774458426], [-61.484079247364704, -15.029157774458426], [-61.484079247364704, -15.02017462161723], [-61.457129788841115, -15.02017462161723], [-61.457129788841115, -15.047124080140819], [-61.44814663599992, -15.047124080140819], [-61.44814663599992, -15.065090385823211], [-61.43916348315872, -15.065090385823211], [-61.43916348315872, -15.074073538664408], [-61.42119717747633, -15.074073538664408], [-61.42119717747633, -15.083056691505604], [-61.40323087179394, -15.083056691505604], [-61.40323087179394, -15.074073538664408], [-61.37628141327036, -15.074073538664408], [-61.37628141327036, -15.056107232982015], [-61.367298260429166, -15.056107232982015], [-61.367298260429166, -15.065090385823211], [-61.35831510758797, -15.065090385823211], [-61.35831510758797, -15.074073538664408], [-61.34933195474677, -15.074073538664408], [-61.34933195474677, -15.083056691505604], [-61.322382496223184, -15.083056691505604], [-61.322382496223184, -15.101022997187997], [-61.33136564906438, -15.101022997187997], [-61.33136564906438, -15.110006150029193], [-61.34933195474677, -15.110006150029193], [-61.34933195474677, -15.127972455711571], [-61.367298260429166, -15.127972455711571], [-61.367298260429166, -15.110006150029193], [-61.37628141327036, -15.110006150029193], [-61.37628141327036, -15.101022997187997], [-61.39424771895274, -15.101022997187997], [-61.39424771895274, -15.0920398443468], [-61.38526456611156, -15.0920398443468], [-61.38526456611156, -15.083056691505604], [-61.39424771895274, -15.083056691505604], [-61.39424771895274, -15.0920398443468], [-61.412214024635134, -15.0920398443468], [-61.412214024635134, -15.110006150029193], [-61.39424771895274, -15.110006150029193], [-61.39424771895274, -15.127972455711571], [-61.40323087179394, -15.127972455711571], [-61.40323087179394, -15.136955608552768], [-61.39424771895274, -15.136955608552768], [-61.39424771895274, -15.145938761393964], [-61.38526456611156, -15.145938761393964], [-61.38526456611156, -15.15492191423516], [-61.37628141327036, -15.15492191423516], [-61.37628141327036, -15.163905067076357], [-61.38526456611156, -15.163905067076357], [-61.38526456611156, -15.172888219917553], [-61.412214024635134, -15.172888219917553], [-61.412214024635134, -15.163905067076357], [-61.42119717747633, -15.163905067076357], [-61.42119717747633, -15.15492191423516], [-61.430180330317526, -15.15492191423516], [-61.430180330317526, -15.136955608552768], [-61.42119717747633, -15.136955608552768], [-61.42119717747633, -15.145938761393964], [-61.412214024635134, -15.145938761393964], [-61.412214024635134, -15.136955608552768], [-61.42119717747633, -15.136955608552768], [-61.42119717747633, -15.127972455711571], [-61.412214024635134, -15.127972455711571], [-61.412214024635134, -15.11898930287039], [-61.430180330317526, -15.11898930287039], [-61.430180330317526, -15.136955608552768], [-61.43916348315872, -15.136955608552768], [-61.43916348315872, -15.11898930287039], [-61.44814663599992, -15.11898930287039], [-61.44814663599992, -15.110006150029193], [-61.430180330317526, -15.110006150029193], [-61.430180330317526, -15.101022997187997], [-61.42119717747633, -15.101022997187997], [-61.42119717747633, -15.0920398443468], [-61.430180330317526, -15.0920398443468], [-61.430180330317526, -15.101022997187997], [-61.44814663599992, -15.101022997187997], [-61.44814663599992, -15.074073538664408], [-61.457129788841115, -15.074073538664408], [-61.457129788841115, -15.101022997187997], [-61.46611294168231, -15.101022997187997], [-61.46611294168231, -15.074073538664408], [-61.47509609452351, -15.074073538664408], [-61.47509609452351, -15.083056691505604], [-61.484079247364704, -15.083056691505604], [-61.484079247364704, -15.074073538664408], [-61.4930624002059, -15.074073538664408], [-61.4930624002059, -15.0920398443468], [-61.47509609452351, -15.0920398443468], [-61.47509609452351, -15.101022997187997], [-61.46611294168231, -15.101022997187997], [-61.46611294168231, -15.110006150029193], [-61.47509609452351, -15.110006150029193], [-61.47509609452351, -15.11898930287039], [-61.46611294168231, -15.11898930287039], [-61.46611294168231, -15.136955608552768], [-61.44814663599992, -15.136955608552768], [-61.44814663599992, -15.145938761393964], [-61.43916348315872, -15.145938761393964], [-61.43916348315872, -15.15492191423516], [-61.457129788841115, -15.15492191423516], [-61.457129788841115, -15.145938761393964], [-61.46611294168231, -15.145938761393964], [-61.46611294168231, -15.15492191423516], [-61.484079247364704, -15.15492191423516], [-61.484079247364704, -15.163905067076357], [-61.47509609452351, -15.163905067076357], [-61.47509609452351, -15.172888219917553], [-61.484079247364704, -15.172888219917553], [-61.484079247364704, -15.18187137275875], [-61.457129788841115, -15.18187137275875], [-61.457129788841115, -15.190854525599946], [-61.47509609452351, -15.190854525599946], [-61.47509609452351, -15.199837678441142], [-61.484079247364704, -15.199837678441142], [-61.484079247364704, -15.217803984123535], [-61.47509609452351, -15.217803984123535], [-61.47509609452351, -15.199837678441142], [-61.46611294168231, -15.199837678441142], [-61.46611294168231, -15.208820831282338], [-61.457129788841115, -15.208820831282338], [-61.457129788841115, -15.199837678441142], [-61.44814663599992, -15.199837678441142], [-61.44814663599992, -15.217803984123535], [-61.430180330317526, -15.217803984123535], [-61.430180330317526, -15.208820831282338], [-61.39424771895274, -15.208820831282338], [-61.39424771895274, -15.235770289805927], [-61.38526456611156, -15.235770289805927], [-61.38526456611156, -15.24475344264711], [-61.37628141327036, -15.24475344264711], [-61.37628141327036, -15.262719748329502], [-61.38526456611156, -15.262719748329502], [-61.38526456611156, -15.271702901170698], [-61.37628141327036, -15.271702901170698], [-61.37628141327036, -15.280686054011895], [-61.367298260429166, -15.280686054011895], [-61.367298260429166, -15.271702901170698], [-61.34034880190558, -15.271702901170698], [-61.34034880190558, -15.280686054011895], [-61.34933195474677, -15.280686054011895], [-61.34933195474677, -15.307635512535484], [-61.34034880190558, -15.307635512535484], [-61.34034880190558, -15.289669206853091], [-61.33136564906438, -15.289669206853091], [-61.33136564906438, -15.307635512535484], [-61.31339934338199, -15.307635512535484], [-61.31339934338199, -15.31661866537668], [-61.33136564906438, -15.31661866537668], [-61.33136564906438, -15.334584971059073], [-61.34034880190558, -15.334584971059073], [-61.34034880190558, -15.343568123900269], [-61.367298260429166, -15.343568123900269], [-61.367298260429166, -15.352551276741465], [-61.37628141327036, -15.352551276741465], [-61.37628141327036, -15.325601818217876], [-61.367298260429166, -15.325601818217876], [-61.367298260429166, -15.31661866537668], [-61.37628141327036, -15.31661866537668], [-61.37628141327036, -15.325601818217876], [-61.39424771895274, -15.325601818217876], [-61.39424771895274, -15.334584971059073], [-61.40323087179394, -15.334584971059073], [-61.40323087179394, -15.325601818217876], [-61.412214024635134, -15.325601818217876], [-61.412214024635134, -15.334584971059073], [-61.40323087179394, -15.334584971059073], [-61.40323087179394, -15.343568123900269], [-61.38526456611156, -15.343568123900269], [-61.38526456611156, -15.352551276741465], [-61.40323087179394, -15.352551276741465], [-61.40323087179394, -15.370517582423844], [-61.412214024635134, -15.370517582423844], [-61.412214024635134, -15.361534429582647], [-61.42119717747633, -15.361534429582647], [-61.42119717747633, -15.370517582423844], [-61.412214024635134, -15.370517582423844], [-61.412214024635134, -15.37950073526504], [-61.40323087179394, -15.37950073526504], [-61.40323087179394, -15.370517582423844], [-61.37628141327036, -15.370517582423844], [-61.37628141327036, -15.37950073526504], [-61.367298260429166, -15.37950073526504], [-61.367298260429166, -15.388483888106236], [-61.35831510758797, -15.388483888106236], [-61.35831510758797, -15.37950073526504], [-61.367298260429166, -15.37950073526504], [-61.367298260429166, -15.370517582423844], [-61.35831510758797, -15.370517582423844], [-61.35831510758797, -15.361534429582647], [-61.34933195474677, -15.361534429582647], [-61.34933195474677, -15.37950073526504], [-61.34034880190558, -15.37950073526504], [-61.34034880190558, -15.388483888106236], [-61.34933195474677, -15.388483888106236], [-61.34933195474677, -15.397467040947433], [-61.35831510758797, -15.397467040947433], [-61.35831510758797, -15.40645019378863], [-61.367298260429166, -15.40645019378863], [-61.367298260429166, -15.397467040947433], [-61.40323087179394, -15.397467040947433], [-61.40323087179394, -15.40645019378863], [-61.412214024635134, -15.40645019378863], [-61.412214024635134, -15.397467040947433], [-61.42119717747633, -15.397467040947433], [-61.42119717747633, -15.388483888106236], [-61.430180330317526, -15.388483888106236], [-61.430180330317526, -15.370517582423844], [-61.43916348315872, -15.370517582423844], [-61.43916348315872, -15.352551276741465], [-61.457129788841115, -15.352551276741465], [-61.457129788841115, -15.361534429582647], [-61.44814663599992, -15.361534429582647], [-61.44814663599992, -15.370517582423844], [-61.46611294168231, -15.370517582423844], [-61.46611294168231, -15.37950073526504], [-61.47509609452351, -15.37950073526504], [-61.47509609452351, -15.388483888106236], [-61.484079247364704, -15.388483888106236], [-61.484079247364704, -15.397467040947433], [-61.4930624002059, -15.397467040947433], [-61.4930624002059, -15.40645019378863], [-61.484079247364704, -15.40645019378863], [-61.484079247364704, -15.397467040947433], [-61.457129788841115, -15.397467040947433], [-61.457129788841115, -15.37950073526504], [-61.44814663599992, -15.37950073526504], [-61.44814663599992, -15.388483888106236], [-61.43916348315872, -15.388483888106236], [-61.43916348315872, -15.397467040947433], [-61.44814663599992, -15.397467040947433], [-61.44814663599992, -15.424416499471022], [-61.46611294168231, -15.424416499471022], [-61.46611294168231, -15.45136595799461], [-61.457129788841115, -15.45136595799461], [-61.457129788841115, -15.433399652312218], [-61.44814663599992, -15.433399652312218], [-61.44814663599992, -15.442382805153414], [-61.43916348315872, -15.442382805153414], [-61.43916348315872, -15.460349110835807], [-61.430180330317526, -15.460349110835807], [-61.430180330317526, -15.469332263677003], [-61.44814663599992, -15.469332263677003], [-61.44814663599992, -15.478315416518186], [-61.43916348315872, -15.478315416518186], [-61.43916348315872, -15.487298569359382], [-61.430180330317526, -15.487298569359382], [-61.430180330317526, -15.505264875041775], [-61.43916348315872, -15.505264875041775], [-61.43916348315872, -15.523231180724167], [-61.44814663599992, -15.523231180724167], [-61.44814663599992, -15.505264875041775], [-61.46611294168231, -15.505264875041775], [-61.46611294168231, -15.496281722200578], [-61.457129788841115, -15.496281722200578], [-61.457129788841115, -15.478315416518186], [-61.46611294168231, -15.478315416518186], [-61.46611294168231, -15.460349110835807], [-61.47509609452351, -15.460349110835807], [-61.47509609452351, -15.478315416518186], [-61.484079247364704, -15.478315416518186], [-61.484079247364704, -15.469332263677003], [-61.4930624002059, -15.469332263677003], [-61.4930624002059, -15.45136595799461], [-61.484079247364704, -15.45136595799461], [-61.484079247364704, -15.424416499471022], [-61.4930624002059, -15.424416499471022], [-61.4930624002059, -15.415433346629825], [-61.5020455530471, -15.415433346629825], [-61.5020455530471, -15.424416499471022], [-61.4930624002059, -15.424416499471022], [-61.4930624002059, -15.442382805153414], [-61.5020455530471, -15.442382805153414], [-61.5020455530471, -15.496281722200578], [-61.4930624002059, -15.496281722200578], [-61.4930624002059, -15.523231180724167], [-61.51102870588828, -15.523231180724167], [-61.51102870588828, -15.54119748640656], [-61.5020455530471, -15.54119748640656], [-61.5020455530471, -15.550180639247756], [-61.51102870588828, -15.550180639247756], [-61.51102870588828, -15.559163792088953], [-61.5020455530471, -15.559163792088953], [-61.5020455530471, -15.568146944930149], [-61.51102870588828, -15.568146944930149], [-61.51102870588828, -15.577130097771345], [-61.5020455530471, -15.577130097771345], [-61.5020455530471, -15.568146944930149], [-61.4930624002059, -15.568146944930149], [-61.4930624002059, -15.577130097771345], [-61.47509609452351, -15.577130097771345], [-61.47509609452351, -15.586113250612527], [-61.5020455530471, -15.586113250612527], [-61.5020455530471, -15.595096403453724], [-61.520011858729475, -15.595096403453724], [-61.520011858729475, -15.657978473342098], [-61.52899501157067, -15.657978473342098], [-61.52899501157067, -15.67594477902449], [-61.520011858729475, -15.67594477902449], [-61.520011858729475, -15.657978473342098], [-61.4930624002059, -15.657978473342098], [-61.4930624002059, -15.648995320500902], [-61.46611294168231, -15.648995320500902], [-61.46611294168231, -15.666961626183294], [-61.4930624002059, -15.666961626183294], [-61.4930624002059, -15.67594477902449], [-61.5020455530471, -15.67594477902449], [-61.5020455530471, -15.666961626183294], [-61.51102870588828, -15.666961626183294], [-61.51102870588828, -15.684927931865687], [-61.520011858729475, -15.684927931865687], [-61.520011858729475, -15.693911084706883], [-61.5020455530471, -15.693911084706883], [-61.5020455530471, -15.702894237548065], [-61.47509609452351, -15.702894237548065], [-61.47509609452351, -15.711877390389262], [-61.484079247364704, -15.711877390389262], [-61.484079247364704, -15.729843696071654], [-61.46611294168231, -15.729843696071654], [-61.46611294168231, -15.73882684891285], [-61.47509609452351, -15.73882684891285], [-61.47509609452351, -15.747810001754047], [-61.4930624002059, -15.747810001754047], [-61.4930624002059, -15.76577630743644], [-61.484079247364704, -15.76577630743644], [-61.484079247364704, -15.774759460277636], [-61.5020455530471, -15.774759460277636], [-61.5020455530471, -15.76577630743644], [-61.51102870588828, -15.76577630743644], [-61.51102870588828, -15.774759460277636], [-61.520011858729475, -15.774759460277636], [-61.520011858729475, -15.783742613118832], [-61.52899501157067, -15.783742613118832], [-61.52899501157067, -15.792725765960029], [-61.546961317253064, -15.792725765960029], [-61.546961317253064, -15.783742613118832], [-61.57391077577665, -15.783742613118832], [-61.57391077577665, -15.76577630743644], [-61.60086023430024, -15.76577630743644], [-61.60086023430024, -15.774759460277636], [-61.591877081459046, -15.774759460277636], [-61.591877081459046, -15.783742613118832], [-61.60086023430024, -15.783742613118832], [-61.60086023430024, -15.792725765960029], [-61.591877081459046, -15.792725765960029], [-61.591877081459046, -15.819675224483603], [-61.58289392861785, -15.819675224483603], [-61.58289392861785, -15.8286583773248], [-61.57391077577665, -15.8286583773248], [-61.57391077577665, -15.846624683007192], [-61.56492762293546, -15.846624683007192], [-61.56492762293546, -15.855607835848389], [-61.55594447009426, -15.855607835848389], [-61.55594447009426, -15.846624683007192], [-61.546961317253064, -15.846624683007192], [-61.546961317253064, -15.855607835848389], [-61.5020455530471, -15.855607835848389], [-61.5020455530471, -15.846624683007192], [-61.520011858729475, -15.846624683007192], [-61.520011858729475, -15.837641530165996], [-61.51102870588828, -15.837641530165996], [-61.51102870588828, -15.8286583773248], [-61.520011858729475, -15.8286583773248], [-61.520011858729475, -15.810692071642421], [-61.52899501157067, -15.810692071642421], [-61.52899501157067, -15.801708918801225], [-61.520011858729475, -15.801708918801225], [-61.520011858729475, -15.792725765960029], [-61.51102870588828, -15.792725765960029], [-61.51102870588828, -15.783742613118832], [-61.5020455530471, -15.783742613118832], [-61.5020455530471, -15.792725765960029], [-61.47509609452351, -15.792725765960029], [-61.47509609452351, -15.810692071642421], [-61.46611294168231, -15.810692071642421], [-61.46611294168231, -15.819675224483603], [-61.44814663599992, -15.819675224483603], [-61.44814663599992, -15.8286583773248], [-61.43916348315872, -15.8286583773248], [-61.43916348315872, -15.837641530165996], [-61.42119717747633, -15.837641530165996], [-61.42119717747633, -15.8286583773248], [-61.430180330317526, -15.8286583773248], [-61.430180330317526, -15.819675224483603], [-61.43916348315872, -15.819675224483603], [-61.43916348315872, -15.810692071642421], [-61.39424771895274, -15.810692071642421], [-61.39424771895274, -15.819675224483603], [-61.38526456611156, -15.819675224483603], [-61.38526456611156, -15.810692071642421], [-61.37628141327036, -15.810692071642421], [-61.37628141327036, -15.792725765960029], [-61.38526456611156, -15.792725765960029], [-61.38526456611156, -15.783742613118832], [-61.37628141327036, -15.783742613118832], [-61.37628141327036, -15.774759460277636], [-61.38526456611156, -15.774759460277636], [-61.38526456611156, -15.76577630743644], [-61.367298260429166, -15.76577630743644], [-61.367298260429166, -15.747810001754047], [-61.35831510758797, -15.747810001754047], [-61.35831510758797, -15.711877390389262], [-61.34933195474677, -15.711877390389262], [-61.34933195474677, -15.729843696071654], [-61.34034880190558, -15.729843696071654], [-61.34034880190558, -15.73882684891285], [-61.34933195474677, -15.73882684891285], [-61.34933195474677, -15.756793154595243], [-61.35831510758797, -15.756793154595243], [-61.35831510758797, -15.76577630743644], [-61.34034880190558, -15.76577630743644], [-61.34034880190558, -15.774759460277636], [-61.33136564906438, -15.774759460277636], [-61.33136564906438, -15.756793154595243], [-61.30441619054079, -15.756793154595243], [-61.30441619054079, -15.783742613118832], [-61.295433037699596, -15.783742613118832], [-61.295433037699596, -15.792725765960029], [-61.30441619054079, -15.792725765960029], [-61.30441619054079, -15.801708918801225], [-61.322382496223184, -15.801708918801225], [-61.322382496223184, -15.819675224483603], [-61.30441619054079, -15.819675224483603], [-61.30441619054079, -15.8286583773248], [-61.2864498848584, -15.8286583773248], [-61.2864498848584, -15.837641530165996], [-61.295433037699596, -15.837641530165996], [-61.295433037699596, -15.846624683007192], [-61.30441619054079, -15.846624683007192], [-61.30441619054079, -15.837641530165996], [-61.31339934338199, -15.837641530165996], [-61.31339934338199, -15.846624683007192], [-61.30441619054079, -15.846624683007192], [-61.30441619054079, -15.855607835848389], [-61.2864498848584, -15.855607835848389], [-61.2864498848584, -15.864590988689585], [-61.295433037699596, -15.864590988689585], [-61.295433037699596, -15.873574141530781], [-61.30441619054079, -15.873574141530781], [-61.30441619054079, -15.882557294371978], [-61.31339934338199, -15.882557294371978], [-61.31339934338199, -15.891540447213174], [-61.30441619054079, -15.891540447213174], [-61.30441619054079, -15.918489905736763], [-61.295433037699596, -15.918489905736763], [-61.295433037699596, -15.92747305857796], [-61.2864498848584, -15.92747305857796], [-61.2864498848584, -15.918489905736763], [-61.2774667320172, -15.918489905736763], [-61.2774667320172, -15.936456211419141], [-61.2864498848584, -15.936456211419141], [-61.2864498848584, -15.945439364260338], [-61.2774667320172, -15.945439364260338], [-61.2774667320172, -15.936456211419141], [-61.26848357917602, -15.936456211419141], [-61.26848357917602, -15.96340566994273], [-61.2774667320172, -15.96340566994273], [-61.2774667320172, -15.954422517101534], [-61.2864498848584, -15.954422517101534], [-61.2864498848584, -15.96340566994273], [-61.295433037699596, -15.96340566994273], [-61.295433037699596, -15.954422517101534], [-61.31339934338199, -15.954422517101534], [-61.31339934338199, -15.945439364260338], [-61.322382496223184, -15.945439364260338], [-61.322382496223184, -15.936456211419141], [-61.33136564906438, -15.936456211419141], [-61.33136564906438, -15.92747305857796], [-61.34034880190558, -15.92747305857796], [-61.34034880190558, -15.936456211419141], [-61.33136564906438, -15.936456211419141], [-61.33136564906438, -15.945439364260338], [-61.322382496223184, -15.945439364260338], [-61.322382496223184, -15.954422517101534], [-61.33136564906438, -15.954422517101534], [-61.33136564906438, -15.972388822783927], [-61.322382496223184, -15.972388822783927], [-61.322382496223184, -15.954422517101534], [-61.31339934338199, -15.954422517101534], [-61.31339934338199, -15.96340566994273], [-61.30441619054079, -15.96340566994273], [-61.30441619054079, -15.999338281307516], [-61.31339934338199, -15.999338281307516], [-61.31339934338199, -16.026287739831105], [-61.322382496223184, -16.026287739831105], [-61.322382496223184, -16.0352708926723], [-61.2864498848584, -16.0352708926723], [-61.2864498848584, -16.026287739831105], [-61.2774667320172, -16.026287739831105], [-61.2774667320172, -16.01730458698991], [-61.2864498848584, -16.01730458698991], [-61.2864498848584, -16.008321434148712], [-61.26848357917602, -16.008321434148712], [-61.26848357917602, -15.96340566994273], [-61.25051727349363, -15.96340566994273], [-61.25051727349363, -15.954422517101534], [-61.259500426334824, -15.954422517101534], [-61.259500426334824, -15.945439364260338], [-61.205601509287646, -15.945439364260338], [-61.205601509287646, -15.954422517101534], [-61.19661835644645, -15.954422517101534], [-61.19661835644645, -15.945439364260338], [-61.205601509287646, -15.945439364260338], [-61.205601509287646, -15.936456211419141], [-61.21458466212884, -15.936456211419141], [-61.21458466212884, -15.92747305857796], [-61.205601509287646, -15.92747305857796], [-61.205601509287646, -15.918489905736763], [-61.19661835644645, -15.918489905736763], [-61.19661835644645, -15.92747305857796], [-61.17865205076406, -15.92747305857796], [-61.17865205076406, -15.918489905736763], [-61.19661835644645, -15.918489905736763], [-61.19661835644645, -15.909506752895567], [-61.187635203605254, -15.909506752895567], [-61.187635203605254, -15.891540447213174], [-61.160685745081665, -15.891540447213174], [-61.160685745081665, -15.90052360005437], [-61.15170259224048, -15.90052360005437], [-61.15170259224048, -15.909506752895567], [-61.142719439399286, -15.909506752895567], [-61.142719439399286, -15.90052360005437], [-61.124753133716894, -15.90052360005437], [-61.124753133716894, -15.909506752895567], [-61.13373628655809, -15.909506752895567], [-61.13373628655809, -15.936456211419141], [-61.15170259224048, -15.936456211419141], [-61.15170259224048, -15.92747305857796], [-61.142719439399286, -15.92747305857796], [-61.142719439399286, -15.918489905736763], [-61.160685745081665, -15.918489905736763], [-61.160685745081665, -15.92747305857796], [-61.16966889792286, -15.92747305857796], [-61.16966889792286, -15.945439364260338], [-61.187635203605254, -15.945439364260338], [-61.187635203605254, -15.954422517101534], [-61.17865205076406, -15.954422517101534], [-61.17865205076406, -15.972388822783927], [-61.19661835644645, -15.972388822783927], [-61.19661835644645, -15.99035512846632], [-61.187635203605254, -15.99035512846632], [-61.187635203605254, -15.999338281307516], [-61.17865205076406, -15.999338281307516], [-61.17865205076406, -16.008321434148712], [-61.187635203605254, -16.008321434148712], [-61.187635203605254, -16.01730458698991], [-61.15170259224048, -16.01730458698991], [-61.15170259224048, -16.0352708926723], [-61.16966889792286, -16.0352708926723], [-61.16966889792286, -16.026287739831105], [-61.17865205076406, -16.026287739831105], [-61.17865205076406, -16.0352708926723], [-61.16966889792286, -16.0352708926723], [-61.16966889792286, -16.044254045513483], [-61.187635203605254, -16.044254045513483], [-61.187635203605254, -16.05323719835468], [-61.17865205076406, -16.05323719835468], [-61.17865205076406, -16.062220351195876], [-61.16966889792286, -16.062220351195876], [-61.16966889792286, -16.08018665687827]], [[-61.070854216669716, -15.397467040947433], [-61.070854216669716, -15.388483888106236], [-61.07983736951091, -15.388483888106236], [-61.07983736951091, -15.397467040947433], [-61.070854216669716, -15.397467040947433]], [[-61.06187106382852, -15.40645019378863], [-61.06187106382852, -15.397467040947433], [-61.070854216669716, -15.397467040947433], [-61.070854216669716, -15.40645019378863], [-61.06187106382852, -15.40645019378863]], [[-61.44814663599992, -15.110006150029193], [-61.44814663599992, -15.101022997187997], [-61.457129788841115, -15.101022997187997], [-61.457129788841115, -15.110006150029193], [-61.44814663599992, -15.110006150029193]], [[-61.44814663599992, -14.696781119334204], [-61.44814663599992, -14.687797966493008], [-61.457129788841115, -14.687797966493008], [-61.457129788841115, -14.696781119334204], [-61.44814663599992, -14.696781119334204]], [[-61.37628141327036, -14.723730577857793], [-61.37628141327036, -14.714747425016597], [-61.38526456611156, -14.714747425016597], [-61.38526456611156, -14.723730577857793], [-61.37628141327036, -14.723730577857793]], [[-61.430180330317526, -14.73271373069899], [-61.430180330317526, -14.723730577857793], [-61.43916348315872, -14.723730577857793], [-61.43916348315872, -14.73271373069899], [-61.430180330317526, -14.73271373069899]], [[-61.412214024635134, -14.73271373069899], [-61.412214024635134, -14.723730577857793], [-61.42119717747633, -14.723730577857793], [-61.42119717747633, -14.73271373069899], [-61.412214024635134, -14.73271373069899]], [[-61.37628141327036, -14.750680036381382], [-61.37628141327036, -14.741696883540186], [-61.38526456611156, -14.741696883540186], [-61.38526456611156, -14.750680036381382], [-61.37628141327036, -14.750680036381382]], [[-61.430180330317526, -14.759663189222579], [-61.430180330317526, -14.741696883540186], [-61.46611294168231, -14.741696883540186], [-61.46611294168231, -14.73271373069899], [-61.47509609452351, -14.73271373069899], [-61.47509609452351, -14.759663189222579], [-61.44814663599992, -14.759663189222579], [-61.44814663599992, -14.750680036381382], [-61.43916348315872, -14.750680036381382], [-61.43916348315872, -14.759663189222579], [-61.430180330317526, -14.759663189222579]], [[-61.39424771895274, -14.768646342063775], [-61.39424771895274, -14.750680036381382], [-61.40323087179394, -14.750680036381382], [-61.40323087179394, -14.759663189222579], [-61.412214024635134, -14.759663189222579], [-61.412214024635134, -14.768646342063775], [-61.39424771895274, -14.768646342063775]], [[-61.38526456611156, -14.777629494904971], [-61.38526456611156, -14.768646342063775], [-61.39424771895274, -14.768646342063775], [-61.39424771895274, -14.777629494904971], [-61.38526456611156, -14.777629494904971]], [[-61.4930624002059, -14.786612647746153], [-61.4930624002059, -14.759663189222579], [-61.5020455530471, -14.759663189222579], [-61.5020455530471, -14.750680036381382], [-61.51102870588828, -14.750680036381382], [-61.51102870588828, -14.768646342063775], [-61.5020455530471, -14.768646342063775], [-61.5020455530471, -14.786612647746153], [-61.4930624002059, -14.786612647746153]], [[-61.457129788841115, -14.786612647746153], [-61.457129788841115, -14.777629494904971], [-61.46611294168231, -14.777629494904971], [-61.46611294168231, -14.768646342063775], [-61.47509609452351, -14.768646342063775], [-61.47509609452351, -14.777629494904971], [-61.484079247364704, -14.777629494904971], [-61.484079247364704, -14.786612647746153], [-61.457129788841115, -14.786612647746153]], [[-61.484079247364704, -14.79559580058735], [-61.484079247364704, -14.786612647746153], [-61.4930624002059, -14.786612647746153], [-61.4930624002059, -14.79559580058735], [-61.484079247364704, -14.79559580058735]], [[-61.44814663599992, -14.79559580058735], [-61.44814663599992, -14.786612647746153], [-61.457129788841115, -14.786612647746153], [-61.457129788841115, -14.79559580058735], [-61.44814663599992, -14.79559580058735]], [[-61.38526456611156, -14.804578953428546], [-61.38526456611156, -14.79559580058735], [-61.39424771895274, -14.79559580058735], [-61.39424771895274, -14.804578953428546], [-61.38526456611156, -14.804578953428546]], [[-61.34034880190558, -14.804578953428546], [-61.34034880190558, -14.786612647746153], [-61.34933195474677, -14.786612647746153], [-61.34933195474677, -14.777629494904971], [-61.33136564906438, -14.777629494904971], [-61.33136564906438, -14.786612647746153], [-61.322382496223184, -14.786612647746153], [-61.322382496223184, -14.768646342063775], [-61.34933195474677, -14.768646342063775], [-61.34933195474677, -14.759663189222579], [-61.367298260429166, -14.759663189222579], [-61.367298260429166, -14.777629494904971], [-61.35831510758797, -14.777629494904971], [-61.35831510758797, -14.79559580058735], [-61.34933195474677, -14.79559580058735], [-61.34933195474677, -14.804578953428546], [-61.34034880190558, -14.804578953428546]], [[-61.4930624002059, -14.813562106269742], [-61.4930624002059, -14.804578953428546], [-61.5020455530471, -14.804578953428546], [-61.5020455530471, -14.813562106269742], [-61.4930624002059, -14.813562106269742]], [[-61.37628141327036, -14.813562106269742], [-61.37628141327036, -14.804578953428546], [-61.38526456611156, -14.804578953428546], [-61.38526456611156, -14.813562106269742], [-61.37628141327036, -14.813562106269742]], [[-61.35831510758797, -14.813562106269742], [-61.35831510758797, -14.79559580058735], [-61.367298260429166, -14.79559580058735], [-61.367298260429166, -14.786612647746153], [-61.38526456611156, -14.786612647746153], [-61.38526456611156, -14.79559580058735], [-61.37628141327036, -14.79559580058735], [-61.37628141327036, -14.804578953428546], [-61.367298260429166, -14.804578953428546], [-61.367298260429166, -14.813562106269742], [-61.35831510758797, -14.813562106269742]], [[-61.412214024635134, -14.831528411952135], [-61.412214024635134, -14.822545259110939], [-61.42119717747633, -14.822545259110939], [-61.42119717747633, -14.831528411952135], [-61.412214024635134, -14.831528411952135]], [[-61.47509609452351, -14.86746102331692], [-61.47509609452351, -14.858477870475724], [-61.484079247364704, -14.858477870475724], [-61.484079247364704, -14.86746102331692], [-61.47509609452351, -14.86746102331692]], [[-61.43916348315872, -14.86746102331692], [-61.43916348315872, -14.858477870475724], [-61.44814663599992, -14.858477870475724], [-61.44814663599992, -14.86746102331692], [-61.43916348315872, -14.86746102331692]], [[-61.44814663599992, -14.876444176158117], [-61.44814663599992, -14.86746102331692], [-61.457129788841115, -14.86746102331692], [-61.457129788841115, -14.876444176158117], [-61.44814663599992, -14.876444176158117]], [[-61.37628141327036, -14.876444176158117], [-61.37628141327036, -14.849494717634528], [-61.38526456611156, -14.849494717634528], [-61.38526456611156, -14.831528411952135], [-61.39424771895274, -14.831528411952135], [-61.39424771895274, -14.840511564793331], [-61.40323087179394, -14.840511564793331], [-61.40323087179394, -14.831528411952135], [-61.412214024635134, -14.831528411952135], [-61.412214024635134, -14.849494717634528], [-61.40323087179394, -14.849494717634528], [-61.40323087179394, -14.858477870475724], [-61.42119717747633, -14.858477870475724], [-61.42119717747633, -14.840511564793331], [-61.430180330317526, -14.840511564793331], [-61.430180330317526, -14.849494717634528], [-61.43916348315872, -14.849494717634528], [-61.43916348315872, -14.858477870475724], [-61.430180330317526, -14.858477870475724], [-61.430180330317526, -14.86746102331692], [-61.38526456611156, -14.86746102331692], [-61.38526456611156, -14.876444176158117], [-61.37628141327036, -14.876444176158117]], [[-61.31339934338199, -14.876444176158117], [-61.31339934338199, -14.86746102331692], [-61.322382496223184, -14.86746102331692], [-61.322382496223184, -14.876444176158117], [-61.31339934338199, -14.876444176158117]], [[-61.37628141327036, -14.89441048184051], [-61.37628141327036, -14.885427328999313], [-61.38526456611156, -14.885427328999313], [-61.38526456611156, -14.89441048184051], [-61.37628141327036, -14.89441048184051]], [[-61.43916348315872, -14.903393634681692], [-61.43916348315872, -14.89441048184051], [-61.44814663599992, -14.89441048184051], [-61.44814663599992, -14.903393634681692], [-61.43916348315872, -14.903393634681692]], [[-61.484079247364704, -14.912376787522888], [-61.484079247364704, -14.903393634681692], [-61.4930624002059, -14.903393634681692], [-61.4930624002059, -14.912376787522888], [-61.484079247364704, -14.912376787522888]], [[-61.44814663599992, -14.912376787522888], [-61.44814663599992, -14.903393634681692], [-61.46611294168231, -14.903393634681692], [-61.46611294168231, -14.912376787522888], [-61.44814663599992, -14.912376787522888]], [[-61.412214024635134, -14.912376787522888], [-61.412214024635134, -14.903393634681692], [-61.42119717747633, -14.903393634681692], [-61.42119717747633, -14.912376787522888], [-61.412214024635134, -14.912376787522888]], [[-61.43916348315872, -14.93034309320528], [-61.43916348315872, -14.921359940364084], [-61.457129788841115, -14.921359940364084], [-61.457129788841115, -14.93034309320528], [-61.43916348315872, -14.93034309320528]], [[-61.259500426334824, -14.93034309320528], [-61.259500426334824, -14.912376787522888], [-61.26848357917602, -14.912376787522888], [-61.26848357917602, -14.93034309320528], [-61.259500426334824, -14.93034309320528]], [[-61.47509609452351, -14.948309398887673], [-61.47509609452351, -14.939326246046477], [-61.484079247364704, -14.939326246046477], [-61.484079247364704, -14.948309398887673], [-61.47509609452351, -14.948309398887673]], [[-61.43916348315872, -14.95729255172887], [-61.43916348315872, -14.939326246046477], [-61.44814663599992, -14.939326246046477], [-61.44814663599992, -14.948309398887673], [-61.457129788841115, -14.948309398887673], [-61.457129788841115, -14.95729255172887], [-61.43916348315872, -14.95729255172887]], [[-61.26848357917602, -14.966275704570066], [-61.26848357917602, -14.95729255172887], [-61.2774667320172, -14.95729255172887], [-61.2774667320172, -14.966275704570066], [-61.26848357917602, -14.966275704570066]], [[-61.35831510758797, -14.984242010252458], [-61.35831510758797, -14.975258857411262], [-61.367298260429166, -14.975258857411262], [-61.367298260429166, -14.984242010252458], [-61.35831510758797, -14.984242010252458]], [[-61.205601509287646, -14.984242010252458], [-61.205601509287646, -14.975258857411262], [-61.19661835644645, -14.975258857411262], [-61.19661835644645, -14.966275704570066], [-61.21458466212884, -14.966275704570066], [-61.21458466212884, -14.975258857411262], [-61.22356781497004, -14.975258857411262], [-61.22356781497004, -14.984242010252458], [-61.205601509287646, -14.984242010252458]], [[-61.15170259224048, -14.984242010252458], [-61.15170259224048, -14.975258857411262], [-61.160685745081665, -14.975258857411262], [-61.160685745081665, -14.984242010252458], [-61.15170259224048, -14.984242010252458]], [[-61.2864498848584, -14.993225163093655], [-61.2864498848584, -14.984242010252458], [-61.295433037699596, -14.984242010252458], [-61.295433037699596, -14.993225163093655], [-61.2864498848584, -14.993225163093655]], [[-61.430180330317526, -15.002208315934851], [-61.430180330317526, -14.984242010252458], [-61.44814663599992, -14.984242010252458], [-61.44814663599992, -15.002208315934851], [-61.430180330317526, -15.002208315934851]], [[-61.39424771895274, -15.002208315934851], [-61.39424771895274, -14.975258857411262], [-61.40323087179394, -14.975258857411262], [-61.40323087179394, -15.002208315934851], [-61.39424771895274, -15.002208315934851]], [[-61.40323087179394, -15.011191468776047], [-61.40323087179394, -15.002208315934851], [-61.412214024635134, -15.002208315934851], [-61.412214024635134, -15.011191468776047], [-61.40323087179394, -15.011191468776047]], [[-61.34034880190558, -15.011191468776047], [-61.34034880190558, -15.002208315934851], [-61.34933195474677, -15.002208315934851], [-61.34933195474677, -15.011191468776047], [-61.34034880190558, -15.011191468776047]], [[-61.26848357917602, -15.011191468776047], [-61.26848357917602, -15.002208315934851], [-61.2774667320172, -15.002208315934851], [-61.2774667320172, -15.011191468776047], [-61.26848357917602, -15.011191468776047]], [[-61.24153412065243, -15.011191468776047], [-61.24153412065243, -15.002208315934851], [-61.25051727349363, -15.002208315934851], [-61.25051727349363, -15.011191468776047], [-61.24153412065243, -15.011191468776047]], [[-61.2774667320172, -15.02017462161723], [-61.2774667320172, -15.011191468776047], [-61.2864498848584, -15.011191468776047], [-61.2864498848584, -15.02017462161723], [-61.2774667320172, -15.02017462161723]], [[-61.430180330317526, -15.029157774458426], [-61.430180330317526, -15.011191468776047], [-61.43916348315872, -15.011191468776047], [-61.43916348315872, -15.029157774458426], [-61.430180330317526, -15.029157774458426]], [[-61.37628141327036, -15.029157774458426], [-61.37628141327036, -15.002208315934851], [-61.39424771895274, -15.002208315934851], [-61.39424771895274, -15.02017462161723], [-61.38526456611156, -15.02017462161723], [-61.38526456611156, -15.029157774458426], [-61.37628141327036, -15.029157774458426]], [[-61.34034880190558, -15.029157774458426], [-61.34034880190558, -15.02017462161723], [-61.34933195474677, -15.02017462161723], [-61.34933195474677, -15.011191468776047], [-61.35831510758797, -15.011191468776047], [-61.35831510758797, -15.02017462161723], [-61.367298260429166, -15.02017462161723], [-61.367298260429166, -15.029157774458426], [-61.34034880190558, -15.029157774458426]], [[-61.21458466212884, -15.029157774458426], [-61.21458466212884, -15.02017462161723], [-61.22356781497004, -15.02017462161723], [-61.22356781497004, -15.029157774458426], [-61.21458466212884, -15.029157774458426]], [[-61.17865205076406, -15.029157774458426], [-61.17865205076406, -15.011191468776047], [-61.16966889792286, -15.011191468776047], [-61.16966889792286, -15.002208315934851], [-61.187635203605254, -15.002208315934851], [-61.187635203605254, -15.029157774458426], [-61.17865205076406, -15.029157774458426]], [[-61.39424771895274, -15.038140927299622], [-61.39424771895274, -15.029157774458426], [-61.412214024635134, -15.029157774458426], [-61.412214024635134, -15.038140927299622], [-61.39424771895274, -15.038140927299622]], [[-61.322382496223184, -15.038140927299622], [-61.322382496223184, -15.029157774458426], [-61.33136564906438, -15.029157774458426], [-61.33136564906438, -15.038140927299622], [-61.322382496223184, -15.038140927299622]], [[-61.25051727349363, -15.038140927299622], [-61.25051727349363, -15.029157774458426], [-61.259500426334824, -15.029157774458426], [-61.259500426334824, -15.038140927299622], [-61.25051727349363, -15.038140927299622]], [[-61.205601509287646, -15.038140927299622], [-61.205601509287646, -15.029157774458426], [-61.21458466212884, -15.029157774458426], [-61.21458466212884, -15.038140927299622], [-61.205601509287646, -15.038140927299622]], [[-61.16966889792286, -15.038140927299622], [-61.16966889792286, -15.029157774458426], [-61.17865205076406, -15.029157774458426], [-61.17865205076406, -15.038140927299622], [-61.16966889792286, -15.038140927299622]], [[-61.142719439399286, -15.038140927299622], [-61.142719439399286, -15.029157774458426], [-61.15170259224048, -15.029157774458426], [-61.15170259224048, -15.038140927299622], [-61.142719439399286, -15.038140927299622]], [[-61.43916348315872, -15.047124080140819], [-61.43916348315872, -15.038140927299622], [-61.44814663599992, -15.038140927299622], [-61.44814663599992, -15.047124080140819], [-61.43916348315872, -15.047124080140819]], [[-61.2774667320172, -15.047124080140819], [-61.2774667320172, -15.038140927299622], [-61.26848357917602, -15.038140927299622], [-61.26848357917602, -15.029157774458426], [-61.2864498848584, -15.029157774458426], [-61.2864498848584, -15.047124080140819], [-61.2774667320172, -15.047124080140819]], [[-61.259500426334824, -15.047124080140819], [-61.259500426334824, -15.038140927299622], [-61.26848357917602, -15.038140927299622], [-61.26848357917602, -15.047124080140819], [-61.259500426334824, -15.047124080140819]], [[-61.15170259224048, -15.047124080140819], [-61.15170259224048, -15.038140927299622], [-61.160685745081665, -15.038140927299622], [-61.160685745081665, -15.047124080140819], [-61.15170259224048, -15.047124080140819]], [[-61.412214024635134, -15.056107232982015], [-61.412214024635134, -15.047124080140819], [-61.42119717747633, -15.047124080140819], [-61.42119717747633, -15.056107232982015], [-61.412214024635134, -15.056107232982015]], [[-61.30441619054079, -15.056107232982015], [-61.30441619054079, -15.047124080140819], [-61.295433037699596, -15.047124080140819], [-61.295433037699596, -15.038140927299622], [-61.31339934338199, -15.038140927299622], [-61.31339934338199, -15.056107232982015], [-61.30441619054079, -15.056107232982015]], [[-61.187635203605254, -15.056107232982015], [-61.187635203605254, -15.047124080140819], [-61.19661835644645, -15.047124080140819], [-61.19661835644645, -15.056107232982015], [-61.187635203605254, -15.056107232982015]], [[-61.160685745081665, -15.056107232982015], [-61.160685745081665, -15.047124080140819], [-61.16966889792286, -15.047124080140819], [-61.16966889792286, -15.056107232982015], [-61.160685745081665, -15.056107232982015]], [[-61.38526456611156, -15.065090385823211], [-61.38526456611156, -15.038140927299622], [-61.39424771895274, -15.038140927299622], [-61.39424771895274, -15.047124080140819], [-61.40323087179394, -15.047124080140819], [-61.40323087179394, -15.056107232982015], [-61.39424771895274, -15.056107232982015], [-61.39424771895274, -15.065090385823211], [-61.38526456611156, -15.065090385823211]], [[-61.295433037699596, -15.065090385823211], [-61.295433037699596, -15.056107232982015], [-61.30441619054079, -15.056107232982015], [-61.30441619054079, -15.065090385823211], [-61.295433037699596, -15.065090385823211]], [[-61.2774667320172, -15.065090385823211], [-61.2774667320172, -15.056107232982015], [-61.2864498848584, -15.056107232982015], [-61.2864498848584, -15.065090385823211], [-61.2774667320172, -15.065090385823211]], [[-61.21458466212884, -15.065090385823211], [-61.21458466212884, -15.056107232982015], [-61.232550967811235, -15.056107232982015], [-61.232550967811235, -15.065090385823211], [-61.21458466212884, -15.065090385823211]], [[-61.17865205076406, -15.065090385823211], [-61.17865205076406, -15.056107232982015], [-61.187635203605254, -15.056107232982015], [-61.187635203605254, -15.065090385823211], [-61.17865205076406, -15.065090385823211]], [[-61.142719439399286, -15.065090385823211], [-61.142719439399286, -15.056107232982015], [-61.15170259224048, -15.056107232982015], [-61.15170259224048, -15.065090385823211], [-61.142719439399286, -15.065090385823211]], [[-61.40323087179394, -15.074073538664408], [-61.40323087179394, -15.065090385823211], [-61.42119717747633, -15.065090385823211], [-61.42119717747633, -15.074073538664408], [-61.40323087179394, -15.074073538664408]], [[-61.33136564906438, -15.074073538664408], [-61.33136564906438, -15.038140927299622], [-61.34034880190558, -15.038140927299622], [-61.34034880190558, -15.056107232982015], [-61.34933195474677, -15.056107232982015], [-61.34933195474677, -15.047124080140819], [-61.35831510758797, -15.047124080140819], [-61.35831510758797, -15.065090385823211], [-61.34933195474677, -15.065090385823211], [-61.34933195474677, -15.074073538664408], [-61.33136564906438, -15.074073538664408]], [[-61.31339934338199, -15.074073538664408], [-61.31339934338199, -15.056107232982015], [-61.322382496223184, -15.056107232982015], [-61.322382496223184, -15.074073538664408], [-61.31339934338199, -15.074073538664408]], [[-61.25051727349363, -15.083056691505604], [-61.25051727349363, -15.074073538664408], [-61.259500426334824, -15.074073538664408], [-61.259500426334824, -15.065090385823211], [-61.26848357917602, -15.065090385823211], [-61.26848357917602, -15.083056691505604], [-61.25051727349363, -15.083056691505604]], [[-61.142719439399286, -15.083056691505604], [-61.142719439399286, -15.074073538664408], [-61.15170259224048, -15.074073538664408], [-61.15170259224048, -15.083056691505604], [-61.142719439399286, -15.083056691505604]], [[-61.2774667320172, -15.0920398443468], [-61.2774667320172, -15.083056691505604], [-61.2864498848584, -15.083056691505604], [-61.2864498848584, -15.0920398443468], [-61.2774667320172, -15.0920398443468]], [[-61.15170259224048, -15.0920398443468], [-61.15170259224048, -15.083056691505604], [-61.160685745081665, -15.083056691505604], [-61.160685745081665, -15.0920398443468], [-61.15170259224048, -15.0920398443468]], [[-61.232550967811235, -15.101022997187997], [-61.232550967811235, -15.083056691505604], [-61.24153412065243, -15.083056691505604], [-61.24153412065243, -15.101022997187997], [-61.232550967811235, -15.101022997187997]], [[-61.30441619054079, -15.110006150029193], [-61.30441619054079, -15.101022997187997], [-61.322382496223184, -15.101022997187997], [-61.322382496223184, -15.110006150029193], [-61.30441619054079, -15.110006150029193]], [[-61.1067868280345, -15.110006150029193], [-61.1067868280345, -15.101022997187997], [-61.1157699808757, -15.101022997187997], [-61.1157699808757, -15.110006150029193], [-61.1067868280345, -15.110006150029193]], [[-61.295433037699596, -15.11898930287039], [-61.295433037699596, -15.110006150029193], [-61.30441619054079, -15.110006150029193], [-61.30441619054079, -15.11898930287039], [-61.295433037699596, -15.11898930287039]], [[-61.322382496223184, -15.127972455711571], [-61.322382496223184, -15.110006150029193], [-61.33136564906438, -15.110006150029193], [-61.33136564906438, -15.127972455711571], [-61.322382496223184, -15.127972455711571]], [[-61.2774667320172, -15.127972455711571], [-61.2774667320172, -15.11898930287039], [-61.2864498848584, -15.11898930287039], [-61.2864498848584, -15.127972455711571], [-61.2774667320172, -15.127972455711571]], [[-61.259500426334824, -15.127972455711571], [-61.259500426334824, -15.11898930287039], [-61.26848357917602, -15.11898930287039], [-61.26848357917602, -15.127972455711571], [-61.259500426334824, -15.127972455711571]], [[-61.22356781497004, -15.127972455711571], [-61.22356781497004, -15.101022997187997], [-61.232550967811235, -15.101022997187997], [-61.232550967811235, -15.127972455711571], [-61.22356781497004, -15.127972455711571]], [[-61.1067868280345, -15.127972455711571], [-61.1067868280345, -15.11898930287039], [-61.1157699808757, -15.11898930287039], [-61.1157699808757, -15.127972455711571], [-61.1067868280345, -15.127972455711571]], [[-61.33136564906438, -15.136955608552768], [-61.33136564906438, -15.127972455711571], [-61.34034880190558, -15.127972455711571], [-61.34034880190558, -15.136955608552768], [-61.33136564906438, -15.136955608552768]], [[-61.26848357917602, -15.136955608552768], [-61.26848357917602, -15.127972455711571], [-61.2774667320172, -15.127972455711571], [-61.2774667320172, -15.136955608552768], [-61.26848357917602, -15.136955608552768]], [[-61.19661835644645, -15.136955608552768], [-61.19661835644645, -15.127972455711571], [-61.205601509287646, -15.127972455711571], [-61.205601509287646, -15.136955608552768], [-61.19661835644645, -15.136955608552768]], [[-61.1157699808757, -15.136955608552768], [-61.1157699808757, -15.127972455711571], [-61.124753133716894, -15.127972455711571], [-61.124753133716894, -15.136955608552768], [-61.1157699808757, -15.136955608552768]], [[-61.2864498848584, -15.145938761393964], [-61.2864498848584, -15.127972455711571], [-61.30441619054079, -15.127972455711571], [-61.30441619054079, -15.11898930287039], [-61.31339934338199, -15.11898930287039], [-61.31339934338199, -15.127972455711571], [-61.322382496223184, -15.127972455711571], [-61.322382496223184, -15.145938761393964], [-61.31339934338199, -15.145938761393964], [-61.31339934338199, -15.136955608552768], [-61.295433037699596, -15.136955608552768], [-61.295433037699596, -15.145938761393964], [-61.2864498848584, -15.145938761393964]], [[-61.25051727349363, -15.145938761393964], [-61.25051727349363, -15.136955608552768], [-61.259500426334824, -15.136955608552768], [-61.259500426334824, -15.145938761393964], [-61.25051727349363, -15.145938761393964]], [[-61.21458466212884, -15.145938761393964], [-61.21458466212884, -15.136955608552768], [-61.22356781497004, -15.136955608552768], [-61.22356781497004, -15.145938761393964], [-61.21458466212884, -15.145938761393964]], [[-61.160685745081665, -15.145938761393964], [-61.160685745081665, -15.136955608552768], [-61.16966889792286, -15.136955608552768], [-61.16966889792286, -15.145938761393964], [-61.160685745081665, -15.145938761393964]], [[-61.33136564906438, -15.15492191423516], [-61.33136564906438, -15.145938761393964], [-61.34034880190558, -15.145938761393964], [-61.34034880190558, -15.15492191423516], [-61.33136564906438, -15.15492191423516]], [[-61.30441619054079, -15.15492191423516], [-61.30441619054079, -15.145938761393964], [-61.31339934338199, -15.145938761393964], [-61.31339934338199, -15.15492191423516], [-61.30441619054079, -15.15492191423516]], [[-61.22356781497004, -15.15492191423516], [-61.22356781497004, -15.145938761393964], [-61.232550967811235, -15.145938761393964], [-61.232550967811235, -15.15492191423516], [-61.22356781497004, -15.15492191423516]], [[-61.1067868280345, -15.15492191423516], [-61.1067868280345, -15.145938761393964], [-61.1157699808757, -15.145938761393964], [-61.1157699808757, -15.15492191423516], [-61.1067868280345, -15.15492191423516]], [[-61.07983736951091, -15.15492191423516], [-61.07983736951091, -15.145938761393964], [-61.08882052235211, -15.145938761393964], [-61.08882052235211, -15.15492191423516], [-61.07983736951091, -15.15492191423516]], [[-61.295433037699596, -15.163905067076357], [-61.295433037699596, -15.15492191423516], [-61.30441619054079, -15.15492191423516], [-61.30441619054079, -15.163905067076357], [-61.295433037699596, -15.163905067076357]], [[-61.16966889792286, -15.163905067076357], [-61.16966889792286, -15.145938761393964], [-61.17865205076406, -15.145938761393964], [-61.17865205076406, -15.136955608552768], [-61.19661835644645, -15.136955608552768], [-61.19661835644645, -15.145938761393964], [-61.187635203605254, -15.145938761393964], [-61.187635203605254, -15.15492191423516], [-61.19661835644645, -15.15492191423516], [-61.19661835644645, -15.163905067076357], [-61.16966889792286, -15.163905067076357]], [[-61.42119717747633, -15.172888219917553], [-61.42119717747633, -15.163905067076357], [-61.430180330317526, -15.163905067076357], [-61.430180330317526, -15.172888219917553], [-61.42119717747633, -15.172888219917553]], [[-61.26848357917602, -15.172888219917553], [-61.26848357917602, -15.163905067076357], [-61.2774667320172, -15.163905067076357], [-61.2774667320172, -15.15492191423516], [-61.2864498848584, -15.15492191423516], [-61.2864498848584, -15.172888219917553], [-61.26848357917602, -15.172888219917553]], [[-61.097803675193305, -15.172888219917553], [-61.097803675193305, -15.163905067076357], [-61.1067868280345, -15.163905067076357], [-61.1067868280345, -15.172888219917553], [-61.097803675193305, -15.172888219917553]], [[-61.44814663599992, -15.18187137275875], [-61.44814663599992, -15.172888219917553], [-61.457129788841115, -15.172888219917553], [-61.457129788841115, -15.18187137275875], [-61.44814663599992, -15.18187137275875]], [[-61.35831510758797, -15.18187137275875], [-61.35831510758797, -15.172888219917553], [-61.33136564906438, -15.172888219917553], [-61.33136564906438, -15.163905067076357], [-61.367298260429166, -15.163905067076357], [-61.367298260429166, -15.18187137275875], [-61.35831510758797, -15.18187137275875]], [[-61.1067868280345, -15.18187137275875], [-61.1067868280345, -15.172888219917553], [-61.1157699808757, -15.172888219917553], [-61.1157699808757, -15.18187137275875], [-61.1067868280345, -15.18187137275875]], [[-61.05288791098732, -15.18187137275875], [-61.05288791098732, -15.172888219917553], [-61.06187106382852, -15.172888219917553], [-61.06187106382852, -15.18187137275875], [-61.05288791098732, -15.18187137275875]], [[-61.43916348315872, -15.190854525599946], [-61.43916348315872, -15.18187137275875], [-61.44814663599992, -15.18187137275875], [-61.44814663599992, -15.190854525599946], [-61.43916348315872, -15.190854525599946]], [[-61.412214024635134, -15.190854525599946], [-61.412214024635134, -15.18187137275875], [-61.430180330317526, -15.18187137275875], [-61.430180330317526, -15.190854525599946], [-61.412214024635134, -15.190854525599946]], [[-61.38526456611156, -15.190854525599946], [-61.38526456611156, -15.18187137275875], [-61.40323087179394, -15.18187137275875], [-61.40323087179394, -15.190854525599946], [-61.38526456611156, -15.190854525599946]], [[-61.259500426334824, -15.190854525599946], [-61.259500426334824, -15.18187137275875], [-61.26848357917602, -15.18187137275875], [-61.26848357917602, -15.190854525599946], [-61.259500426334824, -15.190854525599946]], [[-61.13373628655809, -15.190854525599946], [-61.13373628655809, -15.18187137275875], [-61.142719439399286, -15.18187137275875], [-61.142719439399286, -15.190854525599946], [-61.13373628655809, -15.190854525599946]], [[-61.08882052235211, -15.190854525599946], [-61.08882052235211, -15.18187137275875], [-61.1067868280345, -15.18187137275875], [-61.1067868280345, -15.190854525599946], [-61.08882052235211, -15.190854525599946]], [[-61.06187106382852, -15.190854525599946], [-61.06187106382852, -15.18187137275875], [-61.070854216669716, -15.18187137275875], [-61.070854216669716, -15.190854525599946], [-61.06187106382852, -15.190854525599946]], [[-61.232550967811235, -15.199837678441142], [-61.232550967811235, -15.190854525599946], [-61.24153412065243, -15.190854525599946], [-61.24153412065243, -15.199837678441142], [-61.232550967811235, -15.199837678441142]], [[-61.21458466212884, -15.199837678441142], [-61.21458466212884, -15.190854525599946], [-61.19661835644645, -15.190854525599946], [-61.19661835644645, -15.18187137275875], [-61.187635203605254, -15.18187137275875], [-61.187635203605254, -15.172888219917553], [-61.205601509287646, -15.172888219917553], [-61.205601509287646, -15.163905067076357], [-61.21458466212884, -15.163905067076357], [-61.21458466212884, -15.15492191423516], [-61.22356781497004, -15.15492191423516], [-61.22356781497004, -15.163905067076357], [-61.24153412065243, -15.163905067076357], [-61.24153412065243, -15.172888219917553], [-61.232550967811235, -15.172888219917553], [-61.232550967811235, -15.190854525599946], [-61.22356781497004, -15.190854525599946], [-61.22356781497004, -15.199837678441142], [-61.21458466212884, -15.199837678441142]], [[-61.160685745081665, -15.199837678441142], [-61.160685745081665, -15.190854525599946], [-61.16966889792286, -15.190854525599946], [-61.16966889792286, -15.18187137275875], [-61.160685745081665, -15.18187137275875], [-61.160685745081665, -15.172888219917553], [-61.15170259224048, -15.172888219917553], [-61.15170259224048, -15.163905067076357], [-61.16966889792286, -15.163905067076357], [-61.16966889792286, -15.172888219917553], [-61.17865205076406, -15.172888219917553], [-61.17865205076406, -15.18187137275875], [-61.187635203605254, -15.18187137275875], [-61.187635203605254, -15.190854525599946], [-61.17865205076406, -15.190854525599946], [-61.17865205076406, -15.199837678441142], [-61.160685745081665, -15.199837678441142]], [[-61.1067868280345, -15.199837678441142], [-61.1067868280345, -15.190854525599946], [-61.1157699808757, -15.190854525599946], [-61.1157699808757, -15.199837678441142], [-61.1067868280345, -15.199837678441142]], [[-61.070854216669716, -15.199837678441142], [-61.070854216669716, -15.190854525599946], [-61.07983736951091, -15.190854525599946], [-61.07983736951091, -15.199837678441142], [-61.070854216669716, -15.199837678441142]], [[-61.2774667320172, -15.208820831282338], [-61.2774667320172, -15.199837678441142], [-61.2864498848584, -15.199837678441142], [-61.2864498848584, -15.172888219917553], [-61.295433037699596, -15.172888219917553], [-61.295433037699596, -15.18187137275875], [-61.30441619054079, -15.18187137275875], [-61.30441619054079, -15.172888219917553], [-61.31339934338199, -15.172888219917553], [-61.31339934338199, -15.163905067076357], [-61.322382496223184, -15.163905067076357], [-61.322382496223184, -15.172888219917553], [-61.33136564906438, -15.172888219917553], [-61.33136564906438, -15.190854525599946], [-61.322382496223184, -15.190854525599946], [-61.322382496223184, -15.199837678441142], [-61.31339934338199, -15.199837678441142], [-61.31339934338199, -15.208820831282338], [-61.30441619054079, -15.208820831282338], [-61.30441619054079, -15.190854525599946], [-61.295433037699596, -15.190854525599946], [-61.295433037699596, -15.208820831282338], [-61.2774667320172, -15.208820831282338]], [[-61.187635203605254, -15.208820831282338], [-61.187635203605254, -15.199837678441142], [-61.21458466212884, -15.199837678441142], [-61.21458466212884, -15.208820831282338], [-61.187635203605254, -15.208820831282338]], [[-61.034921605304945, -15.208820831282338], [-61.034921605304945, -15.199837678441142], [-61.04390475814614, -15.199837678441142], [-61.04390475814614, -15.208820831282338], [-61.034921605304945, -15.208820831282338]], [[-61.31339934338199, -15.217803984123535], [-61.31339934338199, -15.208820831282338], [-61.322382496223184, -15.208820831282338], [-61.322382496223184, -15.217803984123535], [-61.31339934338199, -15.217803984123535]], [[-61.17865205076406, -15.217803984123535], [-61.17865205076406, -15.208820831282338], [-61.187635203605254, -15.208820831282338], [-61.187635203605254, -15.217803984123535], [-61.17865205076406, -15.217803984123535]], [[-61.13373628655809, -15.217803984123535], [-61.13373628655809, -15.199837678441142], [-61.142719439399286, -15.199837678441142], [-61.142719439399286, -15.190854525599946], [-61.15170259224048, -15.190854525599946], [-61.15170259224048, -15.208820831282338], [-61.142719439399286, -15.208820831282338], [-61.142719439399286, -15.217803984123535], [-61.13373628655809, -15.217803984123535]], [[-61.232550967811235, -15.226787136964731], [-61.232550967811235, -15.217803984123535], [-61.24153412065243, -15.217803984123535], [-61.24153412065243, -15.226787136964731], [-61.232550967811235, -15.226787136964731]], [[-61.1157699808757, -15.226787136964731], [-61.1157699808757, -15.217803984123535], [-61.124753133716894, -15.217803984123535], [-61.124753133716894, -15.226787136964731], [-61.1157699808757, -15.226787136964731]], [[-61.07983736951091, -15.226787136964731], [-61.07983736951091, -15.217803984123535], [-61.08882052235211, -15.217803984123535], [-61.08882052235211, -15.226787136964731], [-61.07983736951091, -15.226787136964731]], [[-61.15170259224048, -15.235770289805927], [-61.15170259224048, -15.226787136964731], [-61.160685745081665, -15.226787136964731], [-61.160685745081665, -15.217803984123535], [-61.15170259224048, -15.217803984123535], [-61.15170259224048, -15.208820831282338], [-61.16966889792286, -15.208820831282338], [-61.16966889792286, -15.217803984123535], [-61.17865205076406, -15.217803984123535], [-61.17865205076406, -15.235770289805927], [-61.15170259224048, -15.235770289805927]], [[-61.1067868280345, -15.235770289805927], [-61.1067868280345, -15.226787136964731], [-61.1157699808757, -15.226787136964731], [-61.1157699808757, -15.235770289805927], [-61.1067868280345, -15.235770289805927]], [[-61.05288791098732, -15.235770289805927], [-61.05288791098732, -15.208820831282338], [-61.06187106382852, -15.208820831282338], [-61.06187106382852, -15.235770289805927], [-61.05288791098732, -15.235770289805927]], [[-61.097803675193305, -15.253736595488306], [-61.097803675193305, -15.24475344264711], [-61.1067868280345, -15.24475344264711], [-61.1067868280345, -15.253736595488306], [-61.097803675193305, -15.253736595488306]], [[-61.33136564906438, -15.262719748329502], [-61.33136564906438, -15.253736595488306], [-61.31339934338199, -15.253736595488306], [-61.31339934338199, -15.24475344264711], [-61.322382496223184, -15.24475344264711], [-61.322382496223184, -15.235770289805927], [-61.34034880190558, -15.235770289805927], [-61.34034880190558, -15.226787136964731], [-61.33136564906438, -15.226787136964731], [-61.33136564906438, -15.199837678441142], [-61.34034880190558, -15.199837678441142], [-61.34034880190558, -15.208820831282338], [-61.34933195474677, -15.208820831282338], [-61.34933195474677, -15.226787136964731], [-61.367298260429166, -15.226787136964731], [-61.367298260429166, -15.217803984123535], [-61.37628141327036, -15.217803984123535], [-61.37628141327036, -15.208820831282338], [-61.367298260429166, -15.208820831282338], [-61.367298260429166, -15.217803984123535], [-61.35831510758797, -15.217803984123535], [-61.35831510758797, -15.199837678441142], [-61.367298260429166, -15.199837678441142], [-61.367298260429166, -15.190854525599946], [-61.37628141327036, -15.190854525599946], [-61.37628141327036, -15.199837678441142], [-61.38526456611156, -15.199837678441142], [-61.38526456611156, -15.235770289805927], [-61.37628141327036, -15.235770289805927], [-61.37628141327036, -15.24475344264711], [-61.35831510758797, -15.24475344264711], [-61.35831510758797, -15.253736595488306], [-61.34933195474677, -15.253736595488306], [-61.34933195474677, -15.262719748329502], [-61.33136564906438, -15.262719748329502]], [[-61.295433037699596, -15.262719748329502], [-61.295433037699596, -15.24475344264711], [-61.30441619054079, -15.24475344264711], [-61.30441619054079, -15.262719748329502], [-61.295433037699596, -15.262719748329502]], [[-61.16966889792286, -15.262719748329502], [-61.16966889792286, -15.253736595488306], [-61.17865205076406, -15.253736595488306], [-61.17865205076406, -15.262719748329502], [-61.16966889792286, -15.262719748329502]], [[-61.15170259224048, -15.262719748329502], [-61.15170259224048, -15.24475344264711], [-61.160685745081665, -15.24475344264711], [-61.160685745081665, -15.262719748329502], [-61.15170259224048, -15.262719748329502]], [[-61.1157699808757, -15.262719748329502], [-61.1157699808757, -15.24475344264711], [-61.124753133716894, -15.24475344264711], [-61.124753133716894, -15.262719748329502], [-61.1157699808757, -15.262719748329502]], [[-61.30441619054079, -15.271702901170698], [-61.30441619054079, -15.262719748329502], [-61.31339934338199, -15.262719748329502], [-61.31339934338199, -15.271702901170698], [-61.30441619054079, -15.271702901170698]], [[-61.21458466212884, -15.271702901170698], [-61.21458466212884, -15.253736595488306], [-61.205601509287646, -15.253736595488306], [-61.205601509287646, -15.262719748329502], [-61.19661835644645, -15.262719748329502], [-61.19661835644645, -15.253736595488306], [-61.17865205076406, -15.253736595488306], [-61.17865205076406, -15.235770289805927], [-61.19661835644645, -15.235770289805927], [-61.19661835644645, -15.226787136964731], [-61.21458466212884, -15.226787136964731], [-61.21458466212884, -15.235770289805927], [-61.22356781497004, -15.235770289805927], [-61.22356781497004, -15.226787136964731], [-61.232550967811235, -15.226787136964731], [-61.232550967811235, -15.24475344264711], [-61.24153412065243, -15.24475344264711], [-61.24153412065243, -15.235770289805927], [-61.25051727349363, -15.235770289805927], [-61.25051727349363, -15.226787136964731], [-61.259500426334824, -15.226787136964731], [-61.259500426334824, -15.235770289805927], [-61.26848357917602, -15.235770289805927], [-61.26848357917602, -15.24475344264711], [-61.259500426334824, -15.24475344264711], [-61.259500426334824, -15.253736595488306], [-61.2864498848584, -15.253736595488306], [-61.2864498848584, -15.262719748329502], [-61.2774667320172, -15.262719748329502], [-61.2774667320172, -15.271702901170698], [-61.26848357917602, -15.271702901170698], [-61.26848357917602, -15.262719748329502], [-61.25051727349363, -15.262719748329502], [-61.25051727349363, -15.253736595488306], [-61.232550967811235, -15.253736595488306], [-61.232550967811235, -15.262719748329502], [-61.25051727349363, -15.262719748329502], [-61.25051727349363, -15.271702901170698], [-61.21458466212884, -15.271702901170698]], [[-61.187635203605254, -15.271702901170698], [-61.187635203605254, -15.262719748329502], [-61.19661835644645, -15.262719748329502], [-61.19661835644645, -15.271702901170698], [-61.187635203605254, -15.271702901170698]], [[-61.13373628655809, -15.271702901170698], [-61.13373628655809, -15.253736595488306], [-61.142719439399286, -15.253736595488306], [-61.142719439399286, -15.271702901170698], [-61.13373628655809, -15.271702901170698]], [[-61.1067868280345, -15.271702901170698], [-61.1067868280345, -15.262719748329502], [-61.1157699808757, -15.262719748329502], [-61.1157699808757, -15.271702901170698], [-61.1067868280345, -15.271702901170698]], [[-61.08882052235211, -15.271702901170698], [-61.08882052235211, -15.262719748329502], [-61.097803675193305, -15.262719748329502], [-61.097803675193305, -15.271702901170698], [-61.08882052235211, -15.271702901170698]], [[-61.070854216669716, -15.271702901170698], [-61.070854216669716, -15.24475344264711], [-61.07983736951091, -15.24475344264711], [-61.07983736951091, -15.253736595488306], [-61.08882052235211, -15.253736595488306], [-61.08882052235211, -15.262719748329502], [-61.07983736951091, -15.262719748329502], [-61.07983736951091, -15.271702901170698], [-61.070854216669716, -15.271702901170698]], [[-61.322382496223184, -15.280686054011895], [-61.322382496223184, -15.271702901170698], [-61.33136564906438, -15.271702901170698], [-61.33136564906438, -15.280686054011895], [-61.322382496223184, -15.280686054011895]], [[-61.25051727349363, -15.280686054011895], [-61.25051727349363, -15.271702901170698], [-61.259500426334824, -15.271702901170698], [-61.259500426334824, -15.280686054011895], [-61.25051727349363, -15.280686054011895]], [[-61.205601509287646, -15.280686054011895], [-61.205601509287646, -15.271702901170698], [-61.21458466212884, -15.271702901170698], [-61.21458466212884, -15.280686054011895], [-61.205601509287646, -15.280686054011895]], [[-61.1157699808757, -15.280686054011895], [-61.1157699808757, -15.271702901170698], [-61.124753133716894, -15.271702901170698], [-61.124753133716894, -15.280686054011895], [-61.1157699808757, -15.280686054011895]], [[-61.31339934338199, -15.289669206853091], [-61.31339934338199, -15.280686054011895], [-61.322382496223184, -15.280686054011895], [-61.322382496223184, -15.289669206853091], [-61.31339934338199, -15.289669206853091]], [[-61.187635203605254, -15.289669206853091], [-61.187635203605254, -15.280686054011895], [-61.19661835644645, -15.280686054011895], [-61.19661835644645, -15.289669206853091], [-61.187635203605254, -15.289669206853091]], [[-61.2774667320172, -15.298652359694287], [-61.2774667320172, -15.289669206853091], [-61.26848357917602, -15.289669206853091], [-61.26848357917602, -15.280686054011895], [-61.2864498848584, -15.280686054011895], [-61.2864498848584, -15.271702901170698], [-61.295433037699596, -15.271702901170698], [-61.295433037699596, -15.289669206853091], [-61.2864498848584, -15.289669206853091], [-61.2864498848584, -15.298652359694287], [-61.2774667320172, -15.298652359694287]], [[-61.160685745081665, -15.298652359694287], [-61.160685745081665, -15.280686054011895], [-61.16966889792286, -15.280686054011895], [-61.16966889792286, -15.298652359694287], [-61.160685745081665, -15.298652359694287]], [[-61.070854216669716, -15.298652359694287], [-61.070854216669716, -15.280686054011895], [-61.08882052235211, -15.280686054011895], [-61.08882052235211, -15.298652359694287], [-61.070854216669716, -15.298652359694287]], [[-61.2864498848584, -15.307635512535484], [-61.2864498848584, -15.298652359694287], [-61.295433037699596, -15.298652359694287], [-61.295433037699596, -15.307635512535484], [-61.2864498848584, -15.307635512535484]], [[-61.205601509287646, -15.307635512535484], [-61.205601509287646, -15.298652359694287], [-61.22356781497004, -15.298652359694287], [-61.22356781497004, -15.307635512535484], [-61.205601509287646, -15.307635512535484]], [[-61.1067868280345, -15.307635512535484], [-61.1067868280345, -15.298652359694287], [-61.097803675193305, -15.298652359694287], [-61.097803675193305, -15.289669206853091], [-61.124753133716894, -15.289669206853091], [-61.124753133716894, -15.280686054011895], [-61.142719439399286, -15.280686054011895], [-61.142719439399286, -15.298652359694287], [-61.1157699808757, -15.298652359694287], [-61.1157699808757, -15.307635512535484], [-61.1067868280345, -15.307635512535484]], [[-61.08882052235211, -15.307635512535484], [-61.08882052235211, -15.298652359694287], [-61.097803675193305, -15.298652359694287], [-61.097803675193305, -15.307635512535484], [-61.08882052235211, -15.307635512535484]], [[-61.01695529962255, -15.307635512535484], [-61.01695529962255, -15.298652359694287], [-61.02593845246375, -15.298652359694287], [-61.02593845246375, -15.307635512535484], [-61.01695529962255, -15.307635512535484]], [[-61.232550967811235, -15.31661866537668], [-61.232550967811235, -15.307635512535484], [-61.24153412065243, -15.307635512535484], [-61.24153412065243, -15.31661866537668], [-61.232550967811235, -15.31661866537668]], [[-61.2774667320172, -15.325601818217876], [-61.2774667320172, -15.31661866537668], [-61.2864498848584, -15.31661866537668], [-61.2864498848584, -15.325601818217876], [-61.2774667320172, -15.325601818217876]], [[-61.205601509287646, -15.325601818217876], [-61.205601509287646, -15.31661866537668], [-61.21458466212884, -15.31661866537668], [-61.21458466212884, -15.325601818217876], [-61.205601509287646, -15.325601818217876]], [[-61.16966889792286, -15.334584971059073], [-61.16966889792286, -15.31661866537668], [-61.17865205076406, -15.31661866537668], [-61.17865205076406, -15.325601818217876], [-61.187635203605254, -15.325601818217876], [-61.187635203605254, -15.334584971059073], [-61.16966889792286, -15.334584971059073]], [[-61.31339934338199, -15.343568123900269], [-61.31339934338199, -15.334584971059073], [-61.322382496223184, -15.334584971059073], [-61.322382496223184, -15.343568123900269], [-61.31339934338199, -15.343568123900269]], [[-61.26848357917602, -15.343568123900269], [-61.26848357917602, -15.325601818217876], [-61.2774667320172, -15.325601818217876], [-61.2774667320172, -15.334584971059073], [-61.2864498848584, -15.334584971059073], [-61.2864498848584, -15.343568123900269], [-61.26848357917602, -15.343568123900269]], [[-61.24153412065243, -15.343568123900269], [-61.24153412065243, -15.334584971059073], [-61.25051727349363, -15.334584971059073], [-61.25051727349363, -15.343568123900269], [-61.24153412065243, -15.343568123900269]], [[-61.21458466212884, -15.343568123900269], [-61.21458466212884, -15.334584971059073], [-61.22356781497004, -15.334584971059073], [-61.22356781497004, -15.343568123900269], [-61.21458466212884, -15.343568123900269]], [[-61.295433037699596, -15.352551276741465], [-61.295433037699596, -15.343568123900269], [-61.30441619054079, -15.343568123900269], [-61.30441619054079, -15.352551276741465], [-61.295433037699596, -15.352551276741465]], [[-61.259500426334824, -15.352551276741465], [-61.259500426334824, -15.343568123900269], [-61.26848357917602, -15.343568123900269], [-61.26848357917602, -15.352551276741465], [-61.259500426334824, -15.352551276741465]], [[-61.19661835644645, -15.352551276741465], [-61.19661835644645, -15.343568123900269], [-61.21458466212884, -15.343568123900269], [-61.21458466212884, -15.352551276741465], [-61.19661835644645, -15.352551276741465]], [[-61.35831510758797, -15.361534429582647], [-61.35831510758797, -15.352551276741465], [-61.367298260429166, -15.352551276741465], [-61.367298260429166, -15.361534429582647], [-61.35831510758797, -15.361534429582647]], [[-61.22356781497004, -15.361534429582647], [-61.22356781497004, -15.352551276741465], [-61.232550967811235, -15.352551276741465], [-61.232550967811235, -15.361534429582647], [-61.22356781497004, -15.361534429582647]], [[-61.24153412065243, -15.37950073526504], [-61.24153412065243, -15.370517582423844], [-61.25051727349363, -15.370517582423844], [-61.25051727349363, -15.361534429582647], [-61.259500426334824, -15.361534429582647], [-61.259500426334824, -15.37950073526504], [-61.24153412065243, -15.37950073526504]], [[-60.98102268825777, -15.37950073526504], [-60.98102268825777, -15.370517582423844], [-60.99000584109896, -15.370517582423844], [-60.99000584109896, -15.37950073526504], [-60.98102268825777, -15.37950073526504]], [[-61.232550967811235, -15.388483888106236], [-61.232550967811235, -15.37950073526504], [-61.24153412065243, -15.37950073526504], [-61.24153412065243, -15.388483888106236], [-61.232550967811235, -15.388483888106236]], [[-61.21458466212884, -15.388483888106236], [-61.21458466212884, -15.37950073526504], [-61.22356781497004, -15.37950073526504], [-61.22356781497004, -15.388483888106236], [-61.21458466212884, -15.388483888106236]], [[-61.31339934338199, -15.40645019378863], [-61.31339934338199, -15.397467040947433], [-61.322382496223184, -15.397467040947433], [-61.322382496223184, -15.40645019378863], [-61.31339934338199, -15.40645019378863]], [[-61.295433037699596, -15.40645019378863], [-61.295433037699596, -15.388483888106236], [-61.31339934338199, -15.388483888106236], [-61.31339934338199, -15.397467040947433], [-61.30441619054079, -15.397467040947433], [-61.30441619054079, -15.40645019378863], [-61.295433037699596, -15.40645019378863]], [[-61.2774667320172, -15.40645019378863], [-61.2774667320172, -15.37950073526504], [-61.26848357917602, -15.37950073526504], [-61.26848357917602, -15.352551276741465], [-61.295433037699596, -15.352551276741465], [-61.295433037699596, -15.361534429582647], [-61.2864498848584, -15.361534429582647], [-61.2864498848584, -15.370517582423844], [-61.295433037699596, -15.370517582423844], [-61.295433037699596, -15.37950073526504], [-61.2864498848584, -15.37950073526504], [-61.2864498848584, -15.40645019378863], [-61.2774667320172, -15.40645019378863]], [[-61.34034880190558, -15.415433346629825], [-61.34034880190558, -15.40645019378863], [-61.34933195474677, -15.40645019378863], [-61.34933195474677, -15.415433346629825], [-61.34034880190558, -15.415433346629825]], [[-61.22356781497004, -15.415433346629825], [-61.22356781497004, -15.40645019378863], [-61.24153412065243, -15.40645019378863], [-61.24153412065243, -15.415433346629825], [-61.22356781497004, -15.415433346629825]], [[-61.26848357917602, -15.424416499471022], [-61.26848357917602, -15.40645019378863], [-61.2774667320172, -15.40645019378863], [-61.2774667320172, -15.424416499471022], [-61.26848357917602, -15.424416499471022]], [[-61.24153412065243, -15.424416499471022], [-61.24153412065243, -15.415433346629825], [-61.25051727349363, -15.415433346629825], [-61.25051727349363, -15.424416499471022], [-61.24153412065243, -15.424416499471022]], [[-61.43916348315872, -15.433399652312218], [-61.43916348315872, -15.424416499471022], [-61.44814663599992, -15.424416499471022], [-61.44814663599992, -15.433399652312218], [-61.43916348315872, -15.433399652312218]], [[-61.39424771895274, -15.433399652312218], [-61.39424771895274, -15.415433346629825], [-61.40323087179394, -15.415433346629825], [-61.40323087179394, -15.433399652312218], [-61.39424771895274, -15.433399652312218]], [[-61.430180330317526, -15.442382805153414], [-61.430180330317526, -15.433399652312218], [-61.43916348315872, -15.433399652312218], [-61.43916348315872, -15.442382805153414], [-61.430180330317526, -15.442382805153414]], [[-61.412214024635134, -15.442382805153414], [-61.412214024635134, -15.424416499471022], [-61.430180330317526, -15.424416499471022], [-61.430180330317526, -15.433399652312218], [-61.42119717747633, -15.433399652312218], [-61.42119717747633, -15.442382805153414], [-61.412214024635134, -15.442382805153414]], [[-61.37628141327036, -15.442382805153414], [-61.37628141327036, -15.433399652312218], [-61.38526456611156, -15.433399652312218], [-61.38526456611156, -15.442382805153414], [-61.37628141327036, -15.442382805153414]], [[-61.322382496223184, -15.442382805153414], [-61.322382496223184, -15.433399652312218], [-61.33136564906438, -15.433399652312218], [-61.33136564906438, -15.442382805153414], [-61.322382496223184, -15.442382805153414]], [[-61.205601509287646, -15.442382805153414], [-61.205601509287646, -15.433399652312218], [-61.21458466212884, -15.433399652312218], [-61.21458466212884, -15.442382805153414], [-61.205601509287646, -15.442382805153414]], [[-61.160685745081665, -15.442382805153414], [-61.160685745081665, -15.424416499471022], [-61.16966889792286, -15.424416499471022], [-61.16966889792286, -15.442382805153414], [-61.160685745081665, -15.442382805153414]], [[-61.07983736951091, -15.442382805153414], [-61.07983736951091, -15.433399652312218], [-61.04390475814614, -15.433399652312218], [-61.04390475814614, -15.424416499471022], [-61.08882052235211, -15.424416499471022], [-61.08882052235211, -15.442382805153414], [-61.07983736951091, -15.442382805153414]], [[-61.40323087179394, -15.45136595799461], [-61.40323087179394, -15.442382805153414], [-61.412214024635134, -15.442382805153414], [-61.412214024635134, -15.45136595799461], [-61.40323087179394, -15.45136595799461]], [[-61.187635203605254, -15.45136595799461], [-61.187635203605254, -15.442382805153414], [-61.19661835644645, -15.442382805153414], [-61.19661835644645, -15.45136595799461], [-61.187635203605254, -15.45136595799461]], [[-61.070854216669716, -15.45136595799461], [-61.070854216669716, -15.442382805153414], [-61.07983736951091, -15.442382805153414], [-61.07983736951091, -15.45136595799461], [-61.070854216669716, -15.45136595799461]], [[-61.02593845246375, -15.45136595799461], [-61.02593845246375, -15.442382805153414], [-61.034921605304945, -15.442382805153414], [-61.034921605304945, -15.45136595799461], [-61.02593845246375, -15.45136595799461]], [[-61.42119717747633, -15.460349110835807], [-61.42119717747633, -15.45136595799461], [-61.430180330317526, -15.45136595799461], [-61.430180330317526, -15.460349110835807], [-61.42119717747633, -15.460349110835807]], [[-61.322382496223184, -15.460349110835807], [-61.322382496223184, -15.45136595799461], [-61.33136564906438, -15.45136595799461], [-61.33136564906438, -15.460349110835807], [-61.322382496223184, -15.460349110835807]], [[-61.232550967811235, -15.460349110835807], [-61.232550967811235, -15.45136595799461], [-61.24153412065243, -15.45136595799461], [-61.24153412065243, -15.460349110835807], [-61.232550967811235, -15.460349110835807]], [[-61.205601509287646, -15.460349110835807], [-61.205601509287646, -15.45136595799461], [-61.21458466212884, -15.45136595799461], [-61.21458466212884, -15.460349110835807], [-61.205601509287646, -15.460349110835807]], [[-61.01695529962255, -15.469332263677003], [-61.01695529962255, -15.460349110835807], [-61.007972146781356, -15.460349110835807], [-61.007972146781356, -15.45136595799461], [-60.99898899394016, -15.45136595799461], [-60.99898899394016, -15.442382805153414], [-61.007972146781356, -15.442382805153414], [-61.007972146781356, -15.433399652312218], [-61.01695529962255, -15.433399652312218], [-61.01695529962255, -15.45136595799461], [-61.02593845246375, -15.45136595799461], [-61.02593845246375, -15.469332263677003], [-61.01695529962255, -15.469332263677003]], [[-61.37628141327036, -15.478315416518186], [-61.37628141327036, -15.469332263677003], [-61.38526456611156, -15.469332263677003], [-61.38526456611156, -15.478315416518186], [-61.37628141327036, -15.478315416518186]], [[-61.31339934338199, -15.478315416518186], [-61.31339934338199, -15.469332263677003], [-61.322382496223184, -15.469332263677003], [-61.322382496223184, -15.478315416518186], [-61.31339934338199, -15.478315416518186]], [[-61.295433037699596, -15.478315416518186], [-61.295433037699596, -15.469332263677003], [-61.30441619054079, -15.469332263677003], [-61.30441619054079, -15.478315416518186], [-61.295433037699596, -15.478315416518186]], [[-61.07983736951091, -15.478315416518186], [-61.07983736951091, -15.469332263677003], [-61.08882052235211, -15.469332263677003], [-61.08882052235211, -15.478315416518186], [-61.07983736951091, -15.478315416518186]], [[-61.02593845246375, -15.478315416518186], [-61.02593845246375, -15.469332263677003], [-61.034921605304945, -15.469332263677003], [-61.034921605304945, -15.478315416518186], [-61.02593845246375, -15.478315416518186]], [[-61.42119717747633, -15.487298569359382], [-61.42119717747633, -15.469332263677003], [-61.430180330317526, -15.469332263677003], [-61.430180330317526, -15.487298569359382], [-61.42119717747633, -15.487298569359382]], [[-61.24153412065243, -15.487298569359382], [-61.24153412065243, -15.469332263677003], [-61.25051727349363, -15.469332263677003], [-61.25051727349363, -15.487298569359382], [-61.24153412065243, -15.487298569359382]], [[-61.34933195474677, -15.496281722200578], [-61.34933195474677, -15.487298569359382], [-61.35831510758797, -15.487298569359382], [-61.35831510758797, -15.496281722200578], [-61.34933195474677, -15.496281722200578]], [[-61.21458466212884, -15.496281722200578], [-61.21458466212884, -15.487298569359382], [-61.22356781497004, -15.487298569359382], [-61.22356781497004, -15.496281722200578], [-61.21458466212884, -15.496281722200578]], [[-61.070854216669716, -15.496281722200578], [-61.070854216669716, -15.487298569359382], [-61.06187106382852, -15.487298569359382], [-61.06187106382852, -15.460349110835807], [-61.04390475814614, -15.460349110835807], [-61.04390475814614, -15.45136595799461], [-61.05288791098732, -15.45136595799461], [-61.05288791098732, -15.442382805153414], [-61.06187106382852, -15.442382805153414], [-61.06187106382852, -15.45136595799461], [-61.070854216669716, -15.45136595799461], [-61.070854216669716, -15.460349110835807], [-61.07983736951091, -15.460349110835807], [-61.07983736951091, -15.469332263677003], [-61.070854216669716, -15.469332263677003], [-61.070854216669716, -15.478315416518186], [-61.07983736951091, -15.478315416518186], [-61.07983736951091, -15.496281722200578], [-61.070854216669716, -15.496281722200578]], [[-61.05288791098732, -15.496281722200578], [-61.05288791098732, -15.487298569359382], [-61.06187106382852, -15.487298569359382], [-61.06187106382852, -15.496281722200578], [-61.05288791098732, -15.496281722200578]], [[-60.98102268825777, -15.496281722200578], [-60.98102268825777, -15.487298569359382], [-60.99898899394016, -15.487298569359382], [-60.99898899394016, -15.496281722200578], [-60.98102268825777, -15.496281722200578]], [[-60.94509007689298, -15.496281722200578], [-60.94509007689298, -15.487298569359382], [-60.95407322973418, -15.487298569359382], [-60.95407322973418, -15.496281722200578], [-60.94509007689298, -15.496281722200578]], [[-61.40323087179394, -15.505264875041775], [-61.40323087179394, -15.496281722200578], [-61.412214024635134, -15.496281722200578], [-61.412214024635134, -15.505264875041775], [-61.40323087179394, -15.505264875041775]], [[-61.37628141327036, -15.505264875041775], [-61.37628141327036, -15.487298569359382], [-61.38526456611156, -15.487298569359382], [-61.38526456611156, -15.505264875041775], [-61.37628141327036, -15.505264875041775]], [[-61.1157699808757, -15.505264875041775], [-61.1157699808757, -15.496281722200578], [-61.124753133716894, -15.496281722200578], [-61.124753133716894, -15.487298569359382], [-61.1157699808757, -15.487298569359382], [-61.1157699808757, -15.478315416518186], [-61.097803675193305, -15.478315416518186], [-61.097803675193305, -15.469332263677003], [-61.1067868280345, -15.469332263677003], [-61.1067868280345, -15.460349110835807], [-61.097803675193305, -15.460349110835807], [-61.097803675193305, -15.442382805153414], [-61.1067868280345, -15.442382805153414], [-61.1067868280345, -15.433399652312218], [-61.097803675193305, -15.433399652312218], [-61.097803675193305, -15.40645019378863], [-61.08882052235211, -15.40645019378863], [-61.08882052235211, -15.415433346629825], [-61.07983736951091, -15.415433346629825], [-61.07983736951091, -15.397467040947433], [-61.08882052235211, -15.397467040947433], [-61.08882052235211, -15.388483888106236], [-61.07983736951091, -15.388483888106236], [-61.07983736951091, -15.37950073526504], [-61.08882052235211, -15.37950073526504], [-61.08882052235211, -15.370517582423844], [-61.07983736951091, -15.370517582423844], [-61.07983736951091, -15.37950073526504], [-61.05288791098732, -15.37950073526504], [-61.05288791098732, -15.370517582423844], [-61.04390475814614, -15.370517582423844], [-61.04390475814614, -15.37950073526504], [-61.05288791098732, -15.37950073526504], [-61.05288791098732, -15.388483888106236], [-61.06187106382852, -15.388483888106236], [-61.06187106382852, -15.397467040947433], [-61.05288791098732, -15.397467040947433], [-61.05288791098732, -15.415433346629825], [-60.99898899394016, -15.415433346629825], [-60.99898899394016, -15.40645019378863], [-61.007972146781356, -15.40645019378863], [-61.007972146781356, -15.397467040947433], [-61.01695529962255, -15.397467040947433], [-61.01695529962255, -15.388483888106236], [-61.034921605304945, -15.388483888106236], [-61.034921605304945, -15.37950073526504], [-61.01695529962255, -15.37950073526504], [-61.01695529962255, -15.361534429582647], [-61.034921605304945, -15.361534429582647], [-61.034921605304945, -15.343568123900269], [-61.06187106382852, -15.343568123900269], [-61.06187106382852, -15.352551276741465], [-61.05288791098732, -15.352551276741465], [-61.05288791098732, -15.361534429582647], [-61.06187106382852, -15.361534429582647], [-61.06187106382852, -15.352551276741465], [-61.070854216669716, -15.352551276741465], [-61.070854216669716, -15.334584971059073], [-61.034921605304945, -15.334584971059073], [-61.034921605304945, -15.31661866537668], [-61.04390475814614, -15.31661866537668], [-61.04390475814614, -15.325601818217876], [-61.05288791098732, -15.325601818217876], [-61.05288791098732, -15.307635512535484], [-61.07983736951091, -15.307635512535484], [-61.07983736951091, -15.334584971059073], [-61.097803675193305, -15.334584971059073], [-61.097803675193305, -15.307635512535484], [-61.1067868280345, -15.307635512535484], [-61.1067868280345, -15.31661866537668], [-61.1157699808757, -15.31661866537668], [-61.1157699808757, -15.307635512535484], [-61.124753133716894, -15.307635512535484], [-61.124753133716894, -15.31661866537668], [-61.142719439399286, -15.31661866537668], [-61.142719439399286, -15.298652359694287], [-61.160685745081665, -15.298652359694287], [-61.160685745081665, -15.307635512535484], [-61.15170259224048, -15.307635512535484], [-61.15170259224048, -15.325601818217876], [-61.142719439399286, -15.325601818217876], [-61.142719439399286, -15.334584971059073], [-61.16966889792286, -15.334584971059073], [-61.16966889792286, -15.343568123900269], [-61.187635203605254, -15.343568123900269], [-61.187635203605254, -15.352551276741465], [-61.19661835644645, -15.352551276741465], [-61.19661835644645, -15.361534429582647], [-61.205601509287646, -15.361534429582647], [-61.205601509287646, -15.370517582423844], [-61.21458466212884, -15.370517582423844], [-61.21458466212884, -15.37950073526504], [-61.19661835644645, -15.37950073526504], [-61.19661835644645, -15.388483888106236], [-61.205601509287646, -15.388483888106236], [-61.205601509287646, -15.397467040947433], [-61.19661835644645, -15.397467040947433], [-61.19661835644645, -15.40645019378863], [-61.205601509287646, -15.40645019378863], [-61.205601509287646, -15.397467040947433], [-61.22356781497004, -15.397467040947433], [-61.22356781497004, -15.40645019378863], [-61.21458466212884, -15.40645019378863], [-61.21458466212884, -15.415433346629825], [-61.187635203605254, -15.415433346629825], [-61.187635203605254, -15.433399652312218], [-61.17865205076406, -15.433399652312218], [-61.17865205076406, -15.415433346629825], [-61.160685745081665, -15.415433346629825], [-61.160685745081665, -15.424416499471022], [-61.15170259224048, -15.424416499471022], [-61.15170259224048, -15.433399652312218], [-61.142719439399286, -15.433399652312218], [-61.142719439399286, -15.424416499471022], [-61.13373628655809, -15.424416499471022], [-61.13373628655809, -15.397467040947433], [-61.124753133716894, -15.397467040947433], [-61.124753133716894, -15.424416499471022], [-61.13373628655809, -15.424416499471022], [-61.13373628655809, -15.433399652312218], [-61.142719439399286, -15.433399652312218], [-61.142719439399286, -15.45136595799461], [-61.15170259224048, -15.45136595799461], [-61.15170259224048, -15.460349110835807], [-61.187635203605254, -15.460349110835807], [-61.187635203605254, -15.469332263677003], [-61.16966889792286, -15.469332263677003], [-61.16966889792286, -15.478315416518186], [-61.160685745081665, -15.478315416518186], [-61.160685745081665, -15.496281722200578], [-61.142719439399286, -15.496281722200578], [-61.142719439399286, -15.487298569359382], [-61.13373628655809, -15.487298569359382], [-61.13373628655809, -15.505264875041775], [-61.1157699808757, -15.505264875041775]], [[-61.38526456611156, -15.51424802788297], [-61.38526456611156, -15.505264875041775], [-61.39424771895274, -15.505264875041775], [-61.39424771895274, -15.51424802788297], [-61.38526456611156, -15.51424802788297]], [[-61.232550967811235, -15.51424802788297], [-61.232550967811235, -15.505264875041775], [-61.24153412065243, -15.505264875041775], [-61.24153412065243, -15.51424802788297], [-61.232550967811235, -15.51424802788297]], [[-60.95407322973418, -15.51424802788297], [-60.95407322973418, -15.505264875041775], [-60.963056382575374, -15.505264875041775], [-60.963056382575374, -15.51424802788297], [-60.95407322973418, -15.51424802788297]], [[-61.412214024635134, -15.523231180724167], [-61.412214024635134, -15.51424802788297], [-61.430180330317526, -15.51424802788297], [-61.430180330317526, -15.523231180724167], [-61.412214024635134, -15.523231180724167]], [[-61.37628141327036, -15.523231180724167], [-61.37628141327036, -15.51424802788297], [-61.38526456611156, -15.51424802788297], [-61.38526456611156, -15.523231180724167], [-61.37628141327036, -15.523231180724167]], [[-61.34933195474677, -15.523231180724167], [-61.34933195474677, -15.505264875041775], [-61.35831510758797, -15.505264875041775], [-61.35831510758797, -15.51424802788297], [-61.367298260429166, -15.51424802788297], [-61.367298260429166, -15.523231180724167], [-61.34933195474677, -15.523231180724167]], [[-61.25051727349363, -15.523231180724167], [-61.25051727349363, -15.51424802788297], [-61.259500426334824, -15.51424802788297], [-61.259500426334824, -15.523231180724167], [-61.25051727349363, -15.523231180724167]], [[-61.205601509287646, -15.523231180724167], [-61.205601509287646, -15.51424802788297], [-61.21458466212884, -15.51424802788297], [-61.21458466212884, -15.523231180724167], [-61.205601509287646, -15.523231180724167]], [[-61.1067868280345, -15.523231180724167], [-61.1067868280345, -15.51424802788297], [-61.1157699808757, -15.51424802788297], [-61.1157699808757, -15.523231180724167], [-61.1067868280345, -15.523231180724167]], [[-60.86424170132223, -15.523231180724167], [-60.86424170132223, -15.51424802788297], [-60.873224854163425, -15.51424802788297], [-60.873224854163425, -15.523231180724167], [-60.86424170132223, -15.523231180724167]], [[-61.40323087179394, -15.532214333565364], [-61.40323087179394, -15.523231180724167], [-61.412214024635134, -15.523231180724167], [-61.412214024635134, -15.532214333565364], [-61.40323087179394, -15.532214333565364]], [[-61.02593845246375, -15.532214333565364], [-61.02593845246375, -15.523231180724167], [-61.04390475814614, -15.523231180724167], [-61.04390475814614, -15.532214333565364], [-61.02593845246375, -15.532214333565364]], [[-60.963056382575374, -15.532214333565364], [-60.963056382575374, -15.51424802788297], [-60.97203953541657, -15.51424802788297], [-60.97203953541657, -15.505264875041775], [-61.007972146781356, -15.505264875041775], [-61.007972146781356, -15.487298569359382], [-61.01695529962255, -15.487298569359382], [-61.01695529962255, -15.496281722200578], [-61.02593845246375, -15.496281722200578], [-61.02593845246375, -15.487298569359382], [-61.04390475814614, -15.487298569359382], [-61.04390475814614, -15.505264875041775], [-61.034921605304945, -15.505264875041775], [-61.034921605304945, -15.51424802788297], [-61.02593845246375, -15.51424802788297], [-61.02593845246375, -15.523231180724167], [-60.99898899394016, -15.523231180724167], [-60.99898899394016, -15.51424802788297], [-60.98102268825777, -15.51424802788297], [-60.98102268825777, -15.523231180724167], [-60.99000584109896, -15.523231180724167], [-60.99000584109896, -15.532214333565364], [-60.963056382575374, -15.532214333565364]], [[-60.90915746552821, -15.532214333565364], [-60.90915746552821, -15.523231180724167], [-60.91814061836941, -15.523231180724167], [-60.91814061836941, -15.532214333565364], [-60.90915746552821, -15.532214333565364]], [[-60.89119115984582, -15.532214333565364], [-60.89119115984582, -15.523231180724167], [-60.900174312687014, -15.523231180724167], [-60.900174312687014, -15.532214333565364], [-60.89119115984582, -15.532214333565364]], [[-60.85525854848103, -15.532214333565364], [-60.85525854848103, -15.523231180724167], [-60.86424170132223, -15.523231180724167], [-60.86424170132223, -15.532214333565364], [-60.85525854848103, -15.532214333565364]], [[-60.83729224279864, -15.532214333565364], [-60.83729224279864, -15.51424802788297], [-60.82830908995744, -15.51424802788297], [-60.82830908995744, -15.505264875041775], [-60.846275395639836, -15.505264875041775], [-60.846275395639836, -15.496281722200578], [-60.86424170132223, -15.496281722200578], [-60.86424170132223, -15.505264875041775], [-60.85525854848103, -15.505264875041775], [-60.85525854848103, -15.523231180724167], [-60.846275395639836, -15.523231180724167], [-60.846275395639836, -15.532214333565364], [-60.83729224279864, -15.532214333565364]], [[-61.43916348315872, -15.54119748640656], [-61.43916348315872, -15.532214333565364], [-61.44814663599992, -15.532214333565364], [-61.44814663599992, -15.54119748640656], [-61.43916348315872, -15.54119748640656]], [[-61.31339934338199, -15.54119748640656], [-61.31339934338199, -15.532214333565364], [-61.322382496223184, -15.532214333565364], [-61.322382496223184, -15.54119748640656], [-61.31339934338199, -15.54119748640656]], [[-60.99898899394016, -15.54119748640656], [-60.99898899394016, -15.532214333565364], [-61.007972146781356, -15.532214333565364], [-61.007972146781356, -15.54119748640656], [-60.99898899394016, -15.54119748640656]], [[-60.91814061836941, -15.54119748640656], [-60.91814061836941, -15.532214333565364], [-60.94509007689298, -15.532214333565364], [-60.94509007689298, -15.54119748640656], [-60.91814061836941, -15.54119748640656]], [[-61.44814663599992, -15.550180639247756], [-61.44814663599992, -15.54119748640656], [-61.457129788841115, -15.54119748640656], [-61.457129788841115, -15.550180639247756], [-61.44814663599992, -15.550180639247756]], [[-61.232550967811235, -15.550180639247756], [-61.232550967811235, -15.54119748640656], [-61.24153412065243, -15.54119748640656], [-61.24153412065243, -15.550180639247756], [-61.232550967811235, -15.550180639247756]], [[-61.08882052235211, -15.550180639247756], [-61.08882052235211, -15.54119748640656], [-61.097803675193305, -15.54119748640656], [-61.097803675193305, -15.550180639247756], [-61.08882052235211, -15.550180639247756]], [[-60.963056382575374, -15.550180639247756], [-60.963056382575374, -15.54119748640656], [-60.97203953541657, -15.54119748640656], [-60.97203953541657, -15.550180639247756], [-60.963056382575374, -15.550180639247756]], [[-60.90915746552821, -15.550180639247756], [-60.90915746552821, -15.54119748640656], [-60.91814061836941, -15.54119748640656], [-60.91814061836941, -15.550180639247756], [-60.90915746552821, -15.550180639247756]], [[-61.39424771895274, -15.559163792088953], [-61.39424771895274, -15.550180639247756], [-61.40323087179394, -15.550180639247756], [-61.40323087179394, -15.559163792088953], [-61.39424771895274, -15.559163792088953]], [[-61.35831510758797, -15.559163792088953], [-61.35831510758797, -15.54119748640656], [-61.367298260429166, -15.54119748640656], [-61.367298260429166, -15.559163792088953], [-61.35831510758797, -15.559163792088953]], [[-61.34034880190558, -15.559163792088953], [-61.34034880190558, -15.550180639247756], [-61.34933195474677, -15.550180639247756], [-61.34933195474677, -15.559163792088953], [-61.34034880190558, -15.559163792088953]], [[-61.16966889792286, -15.559163792088953], [-61.16966889792286, -15.550180639247756], [-61.17865205076406, -15.550180639247756], [-61.17865205076406, -15.559163792088953], [-61.16966889792286, -15.559163792088953]], [[-61.1157699808757, -15.559163792088953], [-61.1157699808757, -15.550180639247756], [-61.124753133716894, -15.550180639247756], [-61.124753133716894, -15.559163792088953], [-61.1157699808757, -15.559163792088953]], [[-61.034921605304945, -15.559163792088953], [-61.034921605304945, -15.54119748640656], [-61.04390475814614, -15.54119748640656], [-61.04390475814614, -15.559163792088953], [-61.034921605304945, -15.559163792088953]], [[-60.88220800700462, -15.559163792088953], [-60.88220800700462, -15.550180639247756], [-60.89119115984582, -15.550180639247756], [-60.89119115984582, -15.559163792088953], [-60.88220800700462, -15.559163792088953]], [[-61.484079247364704, -15.568146944930149], [-61.484079247364704, -15.54119748640656], [-61.4930624002059, -15.54119748640656], [-61.4930624002059, -15.568146944930149], [-61.484079247364704, -15.568146944930149]], [[-61.232550967811235, -15.568146944930149], [-61.232550967811235, -15.559163792088953], [-61.24153412065243, -15.559163792088953], [-61.24153412065243, -15.568146944930149], [-61.232550967811235, -15.568146944930149]], [[-60.9271237712106, -15.568146944930149], [-60.9271237712106, -15.559163792088953], [-60.936106924051785, -15.559163792088953], [-60.936106924051785, -15.568146944930149], [-60.9271237712106, -15.568146944930149]], [[-61.34933195474677, -15.577130097771345], [-61.34933195474677, -15.559163792088953], [-61.35831510758797, -15.559163792088953], [-61.35831510758797, -15.577130097771345], [-61.34933195474677, -15.577130097771345]], [[-61.007972146781356, -15.577130097771345], [-61.007972146781356, -15.568146944930149], [-61.02593845246375, -15.568146944930149], [-61.02593845246375, -15.577130097771345], [-61.007972146781356, -15.577130097771345]], [[-60.79237647859267, -15.577130097771345], [-60.79237647859267, -15.568146944930149], [-60.80135963143387, -15.568146944930149], [-60.80135963143387, -15.577130097771345], [-60.79237647859267, -15.577130097771345]], [[-60.77441017291028, -15.577130097771345], [-60.77441017291028, -15.568146944930149], [-60.783393325751476, -15.568146944930149], [-60.783393325751476, -15.577130097771345], [-60.77441017291028, -15.577130097771345]], [[-61.457129788841115, -15.586113250612527], [-61.457129788841115, -15.577130097771345], [-61.44814663599992, -15.577130097771345], [-61.44814663599992, -15.559163792088953], [-61.47509609452351, -15.559163792088953], [-61.47509609452351, -15.568146944930149], [-61.46611294168231, -15.568146944930149], [-61.46611294168231, -15.586113250612527], [-61.457129788841115, -15.586113250612527]], [[-61.43916348315872, -15.586113250612527], [-61.43916348315872, -15.577130097771345], [-61.44814663599992, -15.577130097771345], [-61.44814663599992, -15.586113250612527], [-61.43916348315872, -15.586113250612527]], [[-61.38526456611156, -15.586113250612527], [-61.38526456611156, -15.577130097771345], [-61.39424771895274, -15.577130097771345], [-61.39424771895274, -15.586113250612527], [-61.38526456611156, -15.586113250612527]], [[-61.367298260429166, -15.586113250612527], [-61.367298260429166, -15.577130097771345], [-61.37628141327036, -15.577130097771345], [-61.37628141327036, -15.586113250612527], [-61.367298260429166, -15.586113250612527]], [[-61.30441619054079, -15.586113250612527], [-61.30441619054079, -15.568146944930149], [-61.31339934338199, -15.568146944930149], [-61.31339934338199, -15.586113250612527], [-61.30441619054079, -15.586113250612527]], [[-61.22356781497004, -15.586113250612527], [-61.22356781497004, -15.577130097771345], [-61.232550967811235, -15.577130097771345], [-61.232550967811235, -15.586113250612527], [-61.22356781497004, -15.586113250612527]], [[-61.205601509287646, -15.586113250612527], [-61.205601509287646, -15.577130097771345], [-61.21458466212884, -15.577130097771345], [-61.21458466212884, -15.586113250612527], [-61.205601509287646, -15.586113250612527]], [[-61.1157699808757, -15.586113250612527], [-61.1157699808757, -15.577130097771345], [-61.124753133716894, -15.577130097771345], [-61.124753133716894, -15.586113250612527], [-61.1157699808757, -15.586113250612527]], [[-61.07983736951091, -15.586113250612527], [-61.07983736951091, -15.577130097771345], [-61.08882052235211, -15.577130097771345], [-61.08882052235211, -15.586113250612527], [-61.07983736951091, -15.586113250612527]], [[-61.06187106382852, -15.586113250612527], [-61.06187106382852, -15.577130097771345], [-61.070854216669716, -15.577130097771345], [-61.070854216669716, -15.586113250612527], [-61.06187106382852, -15.586113250612527]], [[-60.810342784275065, -15.586113250612527], [-60.810342784275065, -15.550180639247756], [-60.82830908995744, -15.550180639247756], [-60.82830908995744, -15.559163792088953], [-60.81932593711625, -15.559163792088953], [-60.81932593711625, -15.577130097771345], [-60.82830908995744, -15.577130097771345], [-60.82830908995744, -15.586113250612527], [-60.810342784275065, -15.586113250612527]], [[-60.76542702006908, -15.586113250612527], [-60.76542702006908, -15.577130097771345], [-60.77441017291028, -15.577130097771345], [-60.77441017291028, -15.586113250612527], [-60.76542702006908, -15.586113250612527]], [[-61.37628141327036, -15.595096403453724], [-61.37628141327036, -15.586113250612527], [-61.38526456611156, -15.586113250612527], [-61.38526456611156, -15.595096403453724], [-61.37628141327036, -15.595096403453724]], [[-61.124753133716894, -15.595096403453724], [-61.124753133716894, -15.586113250612527], [-61.13373628655809, -15.586113250612527], [-61.13373628655809, -15.595096403453724], [-61.124753133716894, -15.595096403453724]], [[-61.070854216669716, -15.595096403453724], [-61.070854216669716, -15.586113250612527], [-61.07983736951091, -15.586113250612527], [-61.07983736951091, -15.595096403453724], [-61.070854216669716, -15.595096403453724]], [[-60.77441017291028, -15.595096403453724], [-60.77441017291028, -15.586113250612527], [-60.783393325751476, -15.586113250612527], [-60.783393325751476, -15.577130097771345], [-60.79237647859267, -15.577130097771345], [-60.79237647859267, -15.595096403453724], [-60.77441017291028, -15.595096403453724]], [[-61.35831510758797, -15.60407955629492], [-61.35831510758797, -15.595096403453724], [-61.37628141327036, -15.595096403453724], [-61.37628141327036, -15.60407955629492], [-61.35831510758797, -15.60407955629492]], [[-61.33136564906438, -15.60407955629492], [-61.33136564906438, -15.595096403453724], [-61.34034880190558, -15.595096403453724], [-61.34034880190558, -15.60407955629492], [-61.33136564906438, -15.60407955629492]], [[-61.31339934338199, -15.60407955629492], [-61.31339934338199, -15.595096403453724], [-61.322382496223184, -15.595096403453724], [-61.322382496223184, -15.60407955629492], [-61.31339934338199, -15.60407955629492]], [[-61.24153412065243, -15.60407955629492], [-61.24153412065243, -15.586113250612527], [-61.26848357917602, -15.586113250612527], [-61.26848357917602, -15.595096403453724], [-61.25051727349363, -15.595096403453724], [-61.25051727349363, -15.60407955629492], [-61.24153412065243, -15.60407955629492]], [[-61.07983736951091, -15.60407955629492], [-61.07983736951091, -15.595096403453724], [-61.097803675193305, -15.595096403453724], [-61.097803675193305, -15.60407955629492], [-61.07983736951091, -15.60407955629492]], [[-60.900174312687014, -15.60407955629492], [-60.900174312687014, -15.595096403453724], [-60.90915746552821, -15.595096403453724], [-60.90915746552821, -15.60407955629492], [-60.900174312687014, -15.60407955629492]], [[-60.846275395639836, -15.60407955629492], [-60.846275395639836, -15.595096403453724], [-60.85525854848103, -15.595096403453724], [-60.85525854848103, -15.60407955629492], [-60.846275395639836, -15.60407955629492]], [[-60.80135963143387, -15.60407955629492], [-60.80135963143387, -15.595096403453724], [-60.810342784275065, -15.595096403453724], [-60.810342784275065, -15.60407955629492], [-60.80135963143387, -15.60407955629492]], [[-61.4930624002059, -15.613062709136116], [-61.4930624002059, -15.60407955629492], [-61.5020455530471, -15.60407955629492], [-61.5020455530471, -15.613062709136116], [-61.4930624002059, -15.613062709136116]], [[-61.412214024635134, -15.613062709136116], [-61.412214024635134, -15.60407955629492], [-61.42119717747633, -15.60407955629492], [-61.42119717747633, -15.613062709136116], [-61.412214024635134, -15.613062709136116]], [[-61.2864498848584, -15.613062709136116], [-61.2864498848584, -15.60407955629492], [-61.295433037699596, -15.60407955629492], [-61.295433037699596, -15.613062709136116], [-61.2864498848584, -15.613062709136116]], [[-61.25051727349363, -15.613062709136116], [-61.25051727349363, -15.60407955629492], [-61.259500426334824, -15.60407955629492], [-61.259500426334824, -15.613062709136116], [-61.25051727349363, -15.613062709136116]], [[-61.22356781497004, -15.613062709136116], [-61.22356781497004, -15.595096403453724], [-61.232550967811235, -15.595096403453724], [-61.232550967811235, -15.613062709136116], [-61.22356781497004, -15.613062709136116]], [[-61.142719439399286, -15.613062709136116], [-61.142719439399286, -15.60407955629492], [-61.15170259224048, -15.60407955629492], [-61.15170259224048, -15.613062709136116], [-61.142719439399286, -15.613062709136116]], [[-61.04390475814614, -15.613062709136116], [-61.04390475814614, -15.595096403453724], [-61.05288791098732, -15.595096403453724], [-61.05288791098732, -15.613062709136116], [-61.04390475814614, -15.613062709136116]], [[-60.91814061836941, -15.613062709136116], [-60.91814061836941, -15.60407955629492], [-60.9271237712106, -15.60407955629492], [-60.9271237712106, -15.613062709136116], [-60.91814061836941, -15.613062709136116]], [[-60.82830908995744, -15.613062709136116], [-60.82830908995744, -15.60407955629492], [-60.83729224279864, -15.60407955629492], [-60.83729224279864, -15.613062709136116], [-60.82830908995744, -15.613062709136116]], [[-61.24153412065243, -15.622045861977313], [-61.24153412065243, -15.613062709136116], [-61.25051727349363, -15.613062709136116], [-61.25051727349363, -15.622045861977313], [-61.24153412065243, -15.622045861977313]], [[-61.205601509287646, -15.622045861977313], [-61.205601509287646, -15.613062709136116], [-61.21458466212884, -15.613062709136116], [-61.21458466212884, -15.622045861977313], [-61.205601509287646, -15.622045861977313]], [[-61.187635203605254, -15.622045861977313], [-61.187635203605254, -15.613062709136116], [-61.19661835644645, -15.613062709136116], [-61.19661835644645, -15.622045861977313], [-61.187635203605254, -15.622045861977313]], [[-61.1067868280345, -15.622045861977313], [-61.1067868280345, -15.613062709136116], [-61.1157699808757, -15.613062709136116], [-61.1157699808757, -15.622045861977313], [-61.1067868280345, -15.622045861977313]], [[-61.070854216669716, -15.622045861977313], [-61.070854216669716, -15.613062709136116], [-61.07983736951091, -15.613062709136116], [-61.07983736951091, -15.622045861977313], [-61.070854216669716, -15.622045861977313]], [[-61.40323087179394, -15.631029014818509], [-61.40323087179394, -15.622045861977313], [-61.412214024635134, -15.622045861977313], [-61.412214024635134, -15.631029014818509], [-61.40323087179394, -15.631029014818509]], [[-61.259500426334824, -15.631029014818509], [-61.259500426334824, -15.622045861977313], [-61.2774667320172, -15.622045861977313], [-61.2774667320172, -15.631029014818509], [-61.259500426334824, -15.631029014818509]], [[-60.963056382575374, -15.631029014818509], [-60.963056382575374, -15.622045861977313], [-60.97203953541657, -15.622045861977313], [-60.97203953541657, -15.631029014818509], [-60.963056382575374, -15.631029014818509]], [[-61.44814663599992, -15.640012167659705], [-61.44814663599992, -15.631029014818509], [-61.457129788841115, -15.631029014818509], [-61.457129788841115, -15.640012167659705], [-61.44814663599992, -15.640012167659705]], [[-60.846275395639836, -15.640012167659705], [-60.846275395639836, -15.631029014818509], [-60.85525854848103, -15.631029014818509], [-60.85525854848103, -15.640012167659705], [-60.846275395639836, -15.640012167659705]], [[-60.810342784275065, -15.640012167659705], [-60.810342784275065, -15.60407955629492], [-60.81932593711625, -15.60407955629492], [-60.81932593711625, -15.640012167659705], [-60.810342784275065, -15.640012167659705]], [[-61.295433037699596, -15.648995320500902], [-61.295433037699596, -15.640012167659705], [-61.30441619054079, -15.640012167659705], [-61.30441619054079, -15.648995320500902], [-61.295433037699596, -15.648995320500902]], [[-61.232550967811235, -15.648995320500902], [-61.232550967811235, -15.640012167659705], [-61.24153412065243, -15.640012167659705], [-61.24153412065243, -15.648995320500902], [-61.232550967811235, -15.648995320500902]], [[-61.160685745081665, -15.648995320500902], [-61.160685745081665, -15.640012167659705], [-61.16966889792286, -15.640012167659705], [-61.16966889792286, -15.648995320500902], [-61.160685745081665, -15.648995320500902]], [[-61.02593845246375, -15.648995320500902], [-61.02593845246375, -15.640012167659705], [-61.034921605304945, -15.640012167659705], [-61.034921605304945, -15.648995320500902], [-61.02593845246375, -15.648995320500902]], [[-60.99000584109896, -15.648995320500902], [-60.99000584109896, -15.640012167659705], [-60.99898899394016, -15.640012167659705], [-60.99898899394016, -15.648995320500902], [-60.99000584109896, -15.648995320500902]], [[-60.963056382575374, -15.648995320500902], [-60.963056382575374, -15.640012167659705], [-60.97203953541657, -15.640012167659705], [-60.97203953541657, -15.648995320500902], [-60.963056382575374, -15.648995320500902]], [[-60.91814061836941, -15.648995320500902], [-60.91814061836941, -15.631029014818509], [-60.936106924051785, -15.631029014818509], [-60.936106924051785, -15.622045861977313], [-60.9271237712106, -15.622045861977313], [-60.9271237712106, -15.613062709136116], [-60.936106924051785, -15.613062709136116], [-60.936106924051785, -15.60407955629492], [-60.94509007689298, -15.60407955629492], [-60.94509007689298, -15.595096403453724], [-60.936106924051785, -15.595096403453724], [-60.936106924051785, -15.586113250612527], [-60.94509007689298, -15.586113250612527], [-60.94509007689298, -15.559163792088953], [-60.936106924051785, -15.559163792088953], [-60.936106924051785, -15.550180639247756], [-60.963056382575374, -15.550180639247756], [-60.963056382575374, -15.559163792088953], [-60.98102268825777, -15.559163792088953], [-60.98102268825777, -15.550180639247756], [-60.99000584109896, -15.550180639247756], [-60.99000584109896, -15.568146944930149], [-60.98102268825777, -15.568146944930149], [-60.98102268825777, -15.577130097771345], [-60.99898899394016, -15.577130097771345], [-60.99898899394016, -15.586113250612527], [-60.97203953541657, -15.586113250612527], [-60.97203953541657, -15.595096403453724], [-60.963056382575374, -15.595096403453724], [-60.963056382575374, -15.60407955629492], [-60.97203953541657, -15.60407955629492], [-60.97203953541657, -15.595096403453724], [-60.99000584109896, -15.595096403453724], [-60.99000584109896, -15.60407955629492], [-60.98102268825777, -15.60407955629492], [-60.98102268825777, -15.613062709136116], [-60.99000584109896, -15.613062709136116], [-60.99000584109896, -15.60407955629492], [-60.99898899394016, -15.60407955629492], [-60.99898899394016, -15.586113250612527], [-61.007972146781356, -15.586113250612527], [-61.007972146781356, -15.622045861977313], [-60.99898899394016, -15.622045861977313], [-60.99898899394016, -15.631029014818509], [-60.99000584109896, -15.631029014818509], [-60.99000584109896, -15.622045861977313], [-60.97203953541657, -15.622045861977313], [-60.97203953541657, -15.613062709136116], [-60.963056382575374, -15.613062709136116], [-60.963056382575374, -15.622045861977313], [-60.94509007689298, -15.622045861977313], [-60.94509007689298, -15.640012167659705], [-60.9271237712106, -15.640012167659705], [-60.9271237712106, -15.648995320500902], [-60.91814061836941, -15.648995320500902]], [[-61.097803675193305, -15.657978473342098], [-61.097803675193305, -15.648995320500902], [-61.1157699808757, -15.648995320500902], [-61.1157699808757, -15.657978473342098], [-61.097803675193305, -15.657978473342098]], [[-60.99898899394016, -15.657978473342098], [-60.99898899394016, -15.648995320500902], [-61.007972146781356, -15.648995320500902], [-61.007972146781356, -15.657978473342098], [-60.99898899394016, -15.657978473342098]], [[-60.97203953541657, -15.657978473342098], [-60.97203953541657, -15.648995320500902], [-60.98102268825777, -15.648995320500902], [-60.98102268825777, -15.657978473342098], [-60.97203953541657, -15.657978473342098]], [[-60.89119115984582, -15.657978473342098], [-60.89119115984582, -15.648995320500902], [-60.900174312687014, -15.648995320500902], [-60.900174312687014, -15.657978473342098], [-60.89119115984582, -15.657978473342098]], [[-60.86424170132223, -15.657978473342098], [-60.86424170132223, -15.648995320500902], [-60.873224854163425, -15.648995320500902], [-60.873224854163425, -15.657978473342098], [-60.86424170132223, -15.657978473342098]], [[-61.2864498848584, -15.666961626183294], [-61.2864498848584, -15.657978473342098], [-61.295433037699596, -15.657978473342098], [-61.295433037699596, -15.666961626183294], [-61.2864498848584, -15.666961626183294]], [[-60.91814061836941, -15.666961626183294], [-60.91814061836941, -15.657978473342098], [-60.9271237712106, -15.657978473342098], [-60.9271237712106, -15.666961626183294], [-60.91814061836941, -15.666961626183294]], [[-61.21458466212884, -15.67594477902449], [-61.21458466212884, -15.666961626183294], [-61.22356781497004, -15.666961626183294], [-61.22356781497004, -15.67594477902449], [-61.21458466212884, -15.67594477902449]], [[-61.13373628655809, -15.67594477902449], [-61.13373628655809, -15.666961626183294], [-61.15170259224048, -15.666961626183294], [-61.15170259224048, -15.67594477902449], [-61.13373628655809, -15.67594477902449]], [[-61.070854216669716, -15.67594477902449], [-61.070854216669716, -15.666961626183294], [-61.07983736951091, -15.666961626183294], [-61.07983736951091, -15.67594477902449], [-61.070854216669716, -15.67594477902449]], [[-60.963056382575374, -15.67594477902449], [-60.963056382575374, -15.657978473342098], [-60.97203953541657, -15.657978473342098], [-60.97203953541657, -15.67594477902449], [-60.963056382575374, -15.67594477902449]], [[-60.81932593711625, -15.67594477902449], [-60.81932593711625, -15.666961626183294], [-60.810342784275065, -15.666961626183294], [-60.810342784275065, -15.648995320500902], [-60.82830908995744, -15.648995320500902], [-60.82830908995744, -15.67594477902449], [-60.81932593711625, -15.67594477902449]], [[-61.31339934338199, -15.684927931865687], [-61.31339934338199, -15.67594477902449], [-61.322382496223184, -15.67594477902449], [-61.322382496223184, -15.684927931865687], [-61.31339934338199, -15.684927931865687]], [[-61.25051727349363, -15.684927931865687], [-61.25051727349363, -15.67594477902449], [-61.259500426334824, -15.67594477902449], [-61.259500426334824, -15.684927931865687], [-61.25051727349363, -15.684927931865687]], [[-61.07983736951091, -15.684927931865687], [-61.07983736951091, -15.67594477902449], [-61.08882052235211, -15.67594477902449], [-61.08882052235211, -15.666961626183294], [-61.097803675193305, -15.666961626183294], [-61.097803675193305, -15.684927931865687], [-61.07983736951091, -15.684927931865687]], [[-60.98102268825777, -15.684927931865687], [-60.98102268825777, -15.666961626183294], [-60.99000584109896, -15.666961626183294], [-60.99000584109896, -15.684927931865687], [-60.98102268825777, -15.684927931865687]], [[-60.9271237712106, -15.684927931865687], [-60.9271237712106, -15.666961626183294], [-60.936106924051785, -15.666961626183294], [-60.936106924051785, -15.684927931865687], [-60.9271237712106, -15.684927931865687]], [[-60.90915746552821, -15.684927931865687], [-60.90915746552821, -15.666961626183294], [-60.91814061836941, -15.666961626183294], [-60.91814061836941, -15.684927931865687], [-60.90915746552821, -15.684927931865687]], [[-61.44814663599992, -15.693911084706883], [-61.44814663599992, -15.684927931865687], [-61.457129788841115, -15.684927931865687], [-61.457129788841115, -15.693911084706883], [-61.44814663599992, -15.693911084706883]], [[-61.42119717747633, -15.693911084706883], [-61.42119717747633, -15.684927931865687], [-61.412214024635134, -15.684927931865687], [-61.412214024635134, -15.67594477902449], [-61.40323087179394, -15.67594477902449], [-61.40323087179394, -15.657978473342098], [-61.412214024635134, -15.657978473342098], [-61.412214024635134, -15.648995320500902], [-61.42119717747633, -15.648995320500902], [-61.42119717747633, -15.631029014818509], [-61.43916348315872, -15.631029014818509], [-61.43916348315872, -15.640012167659705], [-61.44814663599992, -15.640012167659705], [-61.44814663599992, -15.67594477902449], [-61.43916348315872, -15.67594477902449], [-61.43916348315872, -15.684927931865687], [-61.430180330317526, -15.684927931865687], [-61.430180330317526, -15.693911084706883], [-61.42119717747633, -15.693911084706883]], [[-61.17865205076406, -15.693911084706883], [-61.17865205076406, -15.684927931865687], [-61.187635203605254, -15.684927931865687], [-61.187635203605254, -15.693911084706883], [-61.17865205076406, -15.693911084706883]], [[-61.04390475814614, -15.693911084706883], [-61.04390475814614, -15.684927931865687], [-61.05288791098732, -15.684927931865687], [-61.05288791098732, -15.693911084706883], [-61.04390475814614, -15.693911084706883]], [[-60.99000584109896, -15.693911084706883], [-60.99000584109896, -15.684927931865687], [-60.99898899394016, -15.684927931865687], [-60.99898899394016, -15.693911084706883], [-60.99000584109896, -15.693911084706883]], [[-60.91814061836941, -15.693911084706883], [-60.91814061836941, -15.684927931865687], [-60.9271237712106, -15.684927931865687], [-60.9271237712106, -15.693911084706883], [-60.91814061836941, -15.693911084706883]], [[-60.86424170132223, -15.693911084706883], [-60.86424170132223, -15.684927931865687], [-60.900174312687014, -15.684927931865687], [-60.900174312687014, -15.693911084706883], [-60.86424170132223, -15.693911084706883]], [[-61.22356781497004, -15.702894237548065], [-61.22356781497004, -15.684927931865687], [-61.232550967811235, -15.684927931865687], [-61.232550967811235, -15.702894237548065], [-61.22356781497004, -15.702894237548065]], [[-61.160685745081665, -15.702894237548065], [-61.160685745081665, -15.693911084706883], [-61.16966889792286, -15.693911084706883], [-61.16966889792286, -15.702894237548065], [-61.160685745081665, -15.702894237548065]], [[-61.01695529962255, -15.702894237548065], [-61.01695529962255, -15.693911084706883], [-61.007972146781356, -15.693911084706883], [-61.007972146781356, -15.67594477902449], [-61.01695529962255, -15.67594477902449], [-61.01695529962255, -15.666961626183294], [-61.02593845246375, -15.666961626183294], [-61.02593845246375, -15.702894237548065], [-61.01695529962255, -15.702894237548065]], [[-60.94509007689298, -15.702894237548065], [-60.94509007689298, -15.693911084706883], [-60.963056382575374, -15.693911084706883], [-60.963056382575374, -15.702894237548065], [-60.94509007689298, -15.702894237548065]], [[-60.9271237712106, -15.702894237548065], [-60.9271237712106, -15.693911084706883], [-60.936106924051785, -15.693911084706883], [-60.936106924051785, -15.702894237548065], [-60.9271237712106, -15.702894237548065]], [[-60.80135963143387, -15.702894237548065], [-60.80135963143387, -15.693911084706883], [-60.810342784275065, -15.693911084706883], [-60.810342784275065, -15.684927931865687], [-60.81932593711625, -15.684927931865687], [-60.81932593711625, -15.702894237548065], [-60.80135963143387, -15.702894237548065]], [[-61.232550967811235, -15.711877390389262], [-61.232550967811235, -15.702894237548065], [-61.24153412065243, -15.702894237548065], [-61.24153412065243, -15.711877390389262], [-61.232550967811235, -15.711877390389262]], [[-61.21458466212884, -15.711877390389262], [-61.21458466212884, -15.702894237548065], [-61.22356781497004, -15.702894237548065], [-61.22356781497004, -15.711877390389262], [-61.21458466212884, -15.711877390389262]], [[-61.142719439399286, -15.711877390389262], [-61.142719439399286, -15.693911084706883], [-61.15170259224048, -15.693911084706883], [-61.15170259224048, -15.711877390389262], [-61.142719439399286, -15.711877390389262]], [[-61.1067868280345, -15.711877390389262], [-61.1067868280345, -15.702894237548065], [-61.1157699808757, -15.702894237548065], [-61.1157699808757, -15.711877390389262], [-61.1067868280345, -15.711877390389262]], [[-61.070854216669716, -15.711877390389262], [-61.070854216669716, -15.702894237548065], [-61.06187106382852, -15.702894237548065], [-61.06187106382852, -15.693911084706883], [-61.08882052235211, -15.693911084706883], [-61.08882052235211, -15.711877390389262], [-61.070854216669716, -15.711877390389262]], [[-60.98102268825777, -15.711877390389262], [-60.98102268825777, -15.702894237548065], [-60.99000584109896, -15.702894237548065], [-60.99000584109896, -15.711877390389262], [-60.98102268825777, -15.711877390389262]], [[-60.91814061836941, -15.711877390389262], [-60.91814061836941, -15.702894237548065], [-60.9271237712106, -15.702894237548065], [-60.9271237712106, -15.711877390389262], [-60.91814061836941, -15.711877390389262]], [[-61.31339934338199, -15.720860543230458], [-61.31339934338199, -15.711877390389262], [-61.322382496223184, -15.711877390389262], [-61.322382496223184, -15.720860543230458], [-61.31339934338199, -15.720860543230458]], [[-61.05288791098732, -15.720860543230458], [-61.05288791098732, -15.711877390389262], [-61.070854216669716, -15.711877390389262], [-61.070854216669716, -15.720860543230458], [-61.05288791098732, -15.720860543230458]], [[-61.034921605304945, -15.720860543230458], [-61.034921605304945, -15.711877390389262], [-61.04390475814614, -15.711877390389262], [-61.04390475814614, -15.720860543230458], [-61.034921605304945, -15.720860543230458]], [[-61.295433037699596, -15.729843696071654], [-61.295433037699596, -15.711877390389262], [-61.30441619054079, -15.711877390389262], [-61.30441619054079, -15.729843696071654], [-61.295433037699596, -15.729843696071654]], [[-60.80135963143387, -15.729843696071654], [-60.80135963143387, -15.711877390389262], [-60.810342784275065, -15.711877390389262], [-60.810342784275065, -15.729843696071654], [-60.80135963143387, -15.729843696071654]], [[-61.430180330317526, -15.73882684891285], [-61.430180330317526, -15.729843696071654], [-61.43916348315872, -15.729843696071654], [-61.43916348315872, -15.73882684891285], [-61.430180330317526, -15.73882684891285]], [[-61.24153412065243, -15.73882684891285], [-61.24153412065243, -15.729843696071654], [-61.25051727349363, -15.729843696071654], [-61.25051727349363, -15.73882684891285], [-61.24153412065243, -15.73882684891285]], [[-61.205601509287646, -15.73882684891285], [-61.205601509287646, -15.729843696071654], [-61.232550967811235, -15.729843696071654], [-61.232550967811235, -15.73882684891285], [-61.205601509287646, -15.73882684891285]], [[-61.187635203605254, -15.73882684891285], [-61.187635203605254, -15.720860543230458], [-61.19661835644645, -15.720860543230458], [-61.19661835644645, -15.73882684891285], [-61.187635203605254, -15.73882684891285]], [[-61.07983736951091, -15.73882684891285], [-61.07983736951091, -15.729843696071654], [-61.070854216669716, -15.729843696071654], [-61.070854216669716, -15.720860543230458], [-61.1157699808757, -15.720860543230458], [-61.1157699808757, -15.729843696071654], [-61.08882052235211, -15.729843696071654], [-61.08882052235211, -15.73882684891285], [-61.07983736951091, -15.73882684891285]], [[-61.37628141327036, -15.747810001754047], [-61.37628141327036, -15.73882684891285], [-61.367298260429166, -15.73882684891285], [-61.367298260429166, -15.729843696071654], [-61.39424771895274, -15.729843696071654], [-61.39424771895274, -15.747810001754047], [-61.37628141327036, -15.747810001754047]], [[-61.30441619054079, -15.747810001754047], [-61.30441619054079, -15.73882684891285], [-61.31339934338199, -15.73882684891285], [-61.31339934338199, -15.747810001754047], [-61.30441619054079, -15.747810001754047]], [[-61.25051727349363, -15.747810001754047], [-61.25051727349363, -15.73882684891285], [-61.259500426334824, -15.73882684891285], [-61.259500426334824, -15.747810001754047], [-61.25051727349363, -15.747810001754047]], [[-61.16966889792286, -15.747810001754047], [-61.16966889792286, -15.73882684891285], [-61.17865205076406, -15.73882684891285], [-61.17865205076406, -15.747810001754047], [-61.16966889792286, -15.747810001754047]], [[-61.142719439399286, -15.747810001754047], [-61.142719439399286, -15.729843696071654], [-61.15170259224048, -15.729843696071654], [-61.15170259224048, -15.711877390389262], [-61.160685745081665, -15.711877390389262], [-61.160685745081665, -15.747810001754047], [-61.142719439399286, -15.747810001754047]], [[-61.034921605304945, -15.747810001754047], [-61.034921605304945, -15.73882684891285], [-61.04390475814614, -15.73882684891285], [-61.04390475814614, -15.747810001754047], [-61.034921605304945, -15.747810001754047]], [[-60.99898899394016, -15.747810001754047], [-60.99898899394016, -15.73882684891285], [-60.99000584109896, -15.73882684891285], [-60.99000584109896, -15.720860543230458], [-60.99898899394016, -15.720860543230458], [-60.99898899394016, -15.711877390389262], [-61.007972146781356, -15.711877390389262], [-61.007972146781356, -15.720860543230458], [-61.02593845246375, -15.720860543230458], [-61.02593845246375, -15.729843696071654], [-61.01695529962255, -15.729843696071654], [-61.01695529962255, -15.73882684891285], [-61.007972146781356, -15.73882684891285], [-61.007972146781356, -15.747810001754047], [-60.99898899394016, -15.747810001754047]], [[-61.40323087179394, -15.76577630743644], [-61.40323087179394, -15.756793154595243], [-61.412214024635134, -15.756793154595243], [-61.412214024635134, -15.76577630743644], [-61.40323087179394, -15.76577630743644]], [[-61.38526456611156, -15.76577630743644], [-61.38526456611156, -15.756793154595243], [-61.39424771895274, -15.756793154595243], [-61.39424771895274, -15.76577630743644], [-61.38526456611156, -15.76577630743644]], [[-61.142719439399286, -15.76577630743644], [-61.142719439399286, -15.756793154595243], [-61.15170259224048, -15.756793154595243], [-61.15170259224048, -15.76577630743644], [-61.142719439399286, -15.76577630743644]], [[-61.124753133716894, -15.76577630743644], [-61.124753133716894, -15.747810001754047], [-61.142719439399286, -15.747810001754047], [-61.142719439399286, -15.756793154595243], [-61.13373628655809, -15.756793154595243], [-61.13373628655809, -15.76577630743644], [-61.124753133716894, -15.76577630743644]], [[-60.97203953541657, -15.76577630743644], [-60.97203953541657, -15.756793154595243], [-60.98102268825777, -15.756793154595243], [-60.98102268825777, -15.76577630743644], [-60.97203953541657, -15.76577630743644]], [[-61.43916348315872, -15.774759460277636], [-61.43916348315872, -15.76577630743644], [-61.46611294168231, -15.76577630743644], [-61.46611294168231, -15.774759460277636], [-61.43916348315872, -15.774759460277636]], [[-61.232550967811235, -15.774759460277636], [-61.232550967811235, -15.76577630743644], [-61.24153412065243, -15.76577630743644], [-61.24153412065243, -15.774759460277636], [-61.232550967811235, -15.774759460277636]], [[-61.19661835644645, -15.774759460277636], [-61.19661835644645, -15.76577630743644], [-61.21458466212884, -15.76577630743644], [-61.21458466212884, -15.774759460277636], [-61.19661835644645, -15.774759460277636]], [[-61.17865205076406, -15.774759460277636], [-61.17865205076406, -15.76577630743644], [-61.187635203605254, -15.76577630743644], [-61.187635203605254, -15.774759460277636], [-61.17865205076406, -15.774759460277636]], [[-60.81932593711625, -15.774759460277636], [-60.81932593711625, -15.76577630743644], [-60.82830908995744, -15.76577630743644], [-60.82830908995744, -15.774759460277636], [-60.81932593711625, -15.774759460277636]], [[-61.42119717747633, -15.783742613118832], [-61.42119717747633, -15.756793154595243], [-61.430180330317526, -15.756793154595243], [-61.430180330317526, -15.747810001754047], [-61.43916348315872, -15.747810001754047], [-61.43916348315872, -15.73882684891285], [-61.457129788841115, -15.73882684891285], [-61.457129788841115, -15.747810001754047], [-61.44814663599992, -15.747810001754047], [-61.44814663599992, -15.756793154595243], [-61.43916348315872, -15.756793154595243], [-61.43916348315872, -15.76577630743644], [-61.430180330317526, -15.76577630743644], [-61.430180330317526, -15.774759460277636], [-61.43916348315872, -15.774759460277636], [-61.43916348315872, -15.783742613118832], [-61.42119717747633, -15.783742613118832]], [[-61.2864498848584, -15.783742613118832], [-61.2864498848584, -15.774759460277636], [-61.295433037699596, -15.774759460277636], [-61.295433037699596, -15.783742613118832], [-61.2864498848584, -15.783742613118832]], [[-61.187635203605254, -15.783742613118832], [-61.187635203605254, -15.774759460277636], [-61.19661835644645, -15.774759460277636], [-61.19661835644645, -15.783742613118832], [-61.187635203605254, -15.783742613118832]], [[-60.99898899394016, -15.783742613118832], [-60.99898899394016, -15.774759460277636], [-61.007972146781356, -15.774759460277636], [-61.007972146781356, -15.76577630743644], [-61.01695529962255, -15.76577630743644], [-61.01695529962255, -15.747810001754047], [-61.02593845246375, -15.747810001754047], [-61.02593845246375, -15.76577630743644], [-61.034921605304945, -15.76577630743644], [-61.034921605304945, -15.774759460277636], [-61.01695529962255, -15.774759460277636], [-61.01695529962255, -15.783742613118832], [-60.99898899394016, -15.783742613118832]], [[-60.91814061836941, -15.783742613118832], [-60.91814061836941, -15.76577630743644], [-60.936106924051785, -15.76577630743644], [-60.936106924051785, -15.729843696071654], [-60.9271237712106, -15.729843696071654], [-60.9271237712106, -15.720860543230458], [-60.936106924051785, -15.720860543230458], [-60.936106924051785, -15.711877390389262], [-60.97203953541657, -15.711877390389262], [-60.97203953541657, -15.720860543230458], [-60.98102268825777, -15.720860543230458], [-60.98102268825777, -15.729843696071654], [-60.97203953541657, -15.729843696071654], [-60.97203953541657, -15.73882684891285], [-60.963056382575374, -15.73882684891285], [-60.963056382575374, -15.747810001754047], [-60.97203953541657, -15.747810001754047], [-60.97203953541657, -15.756793154595243], [-60.95407322973418, -15.756793154595243], [-60.95407322973418, -15.747810001754047], [-60.94509007689298, -15.747810001754047], [-60.94509007689298, -15.774759460277636], [-60.936106924051785, -15.774759460277636], [-60.936106924051785, -15.783742613118832], [-60.91814061836941, -15.783742613118832]], [[-61.07983736951091, -15.792725765960029], [-61.07983736951091, -15.783742613118832], [-61.08882052235211, -15.783742613118832], [-61.08882052235211, -15.792725765960029], [-61.07983736951091, -15.792725765960029]], [[-60.97203953541657, -15.792725765960029], [-60.97203953541657, -15.774759460277636], [-60.98102268825777, -15.774759460277636], [-60.98102268825777, -15.783742613118832], [-60.99000584109896, -15.783742613118832], [-60.99000584109896, -15.792725765960029], [-60.97203953541657, -15.792725765960029]], [[-61.43916348315872, -15.801708918801225], [-61.43916348315872, -15.792725765960029], [-61.44814663599992, -15.792725765960029], [-61.44814663599992, -15.801708918801225], [-61.43916348315872, -15.801708918801225]], [[-61.38526456611156, -15.801708918801225], [-61.38526456611156, -15.792725765960029], [-61.39424771895274, -15.792725765960029], [-61.39424771895274, -15.801708918801225], [-61.38526456611156, -15.801708918801225]], [[-61.21458466212884, -15.801708918801225], [-61.21458466212884, -15.792725765960029], [-61.22356781497004, -15.792725765960029], [-61.22356781497004, -15.801708918801225], [-61.21458466212884, -15.801708918801225]], [[-61.13373628655809, -15.801708918801225], [-61.13373628655809, -15.792725765960029], [-61.142719439399286, -15.792725765960029], [-61.142719439399286, -15.801708918801225], [-61.13373628655809, -15.801708918801225]], [[-60.936106924051785, -15.801708918801225], [-60.936106924051785, -15.783742613118832], [-60.94509007689298, -15.783742613118832], [-60.94509007689298, -15.774759460277636], [-60.95407322973418, -15.774759460277636], [-60.95407322973418, -15.783742613118832], [-60.963056382575374, -15.783742613118832], [-60.963056382575374, -15.801708918801225], [-60.936106924051785, -15.801708918801225]], [[-61.53797816441187, -15.810692071642421], [-61.53797816441187, -15.801708918801225], [-61.546961317253064, -15.801708918801225], [-61.546961317253064, -15.792725765960029], [-61.55594447009426, -15.792725765960029], [-61.55594447009426, -15.801708918801225], [-61.58289392861785, -15.801708918801225], [-61.58289392861785, -15.810692071642421], [-61.53797816441187, -15.810692071642421]], [[-61.187635203605254, -15.810692071642421], [-61.187635203605254, -15.792725765960029], [-61.19661835644645, -15.792725765960029], [-61.19661835644645, -15.810692071642421], [-61.187635203605254, -15.810692071642421]], [[-61.16966889792286, -15.810692071642421], [-61.16966889792286, -15.774759460277636], [-61.17865205076406, -15.774759460277636], [-61.17865205076406, -15.783742613118832], [-61.187635203605254, -15.783742613118832], [-61.187635203605254, -15.792725765960029], [-61.17865205076406, -15.792725765960029], [-61.17865205076406, -15.810692071642421], [-61.16966889792286, -15.810692071642421]], [[-60.98102268825777, -15.810692071642421], [-60.98102268825777, -15.801708918801225], [-60.99000584109896, -15.801708918801225], [-60.99000584109896, -15.810692071642421], [-60.98102268825777, -15.810692071642421]], [[-60.88220800700462, -15.810692071642421], [-60.88220800700462, -15.801708918801225], [-60.89119115984582, -15.801708918801225], [-60.89119115984582, -15.792725765960029], [-60.88220800700462, -15.792725765960029], [-60.88220800700462, -15.801708918801225], [-60.873224854163425, -15.801708918801225], [-60.873224854163425, -15.792725765960029], [-60.85525854848103, -15.792725765960029], [-60.85525854848103, -15.783742613118832], [-60.83729224279864, -15.783742613118832], [-60.83729224279864, -15.756793154595243], [-60.82830908995744, -15.756793154595243], [-60.82830908995744, -15.747810001754047], [-60.810342784275065, -15.747810001754047], [-60.810342784275065, -15.73882684891285], [-60.81932593711625, -15.73882684891285], [-60.81932593711625, -15.720860543230458], [-60.82830908995744, -15.720860543230458], [-60.82830908995744, -15.729843696071654], [-60.83729224279864, -15.729843696071654], [-60.83729224279864, -15.720860543230458], [-60.82830908995744, -15.720860543230458], [-60.82830908995744, -15.702894237548065], [-60.846275395639836, -15.702894237548065], [-60.846275395639836, -15.684927931865687], [-60.83729224279864, -15.684927931865687], [-60.83729224279864, -15.67594477902449], [-60.86424170132223, -15.67594477902449], [-60.86424170132223, -15.684927931865687], [-60.85525854848103, -15.684927931865687], [-60.85525854848103, -15.711877390389262], [-60.873224854163425, -15.711877390389262], [-60.873224854163425, -15.702894237548065], [-60.90915746552821, -15.702894237548065], [-60.90915746552821, -15.73882684891285], [-60.900174312687014, -15.73882684891285], [-60.900174312687014, -15.747810001754047], [-60.91814061836941, -15.747810001754047], [-60.91814061836941, -15.76577630743644], [-60.900174312687014, -15.76577630743644], [-60.900174312687014, -15.774759460277636], [-60.90915746552821, -15.774759460277636], [-60.90915746552821, -15.801708918801225], [-60.900174312687014, -15.801708918801225], [-60.900174312687014, -15.810692071642421], [-60.88220800700462, -15.810692071642421]], [[-61.295433037699596, -15.819675224483603], [-61.295433037699596, -15.810692071642421], [-61.30441619054079, -15.810692071642421], [-61.30441619054079, -15.819675224483603], [-61.295433037699596, -15.819675224483603]], [[-61.56492762293546, -15.8286583773248], [-61.56492762293546, -15.819675224483603], [-61.57391077577665, -15.819675224483603], [-61.57391077577665, -15.8286583773248], [-61.56492762293546, -15.8286583773248]], [[-61.17865205076406, -15.8286583773248], [-61.17865205076406, -15.819675224483603], [-61.19661835644645, -15.819675224483603], [-61.19661835644645, -15.8286583773248], [-61.17865205076406, -15.8286583773248]], [[-61.142719439399286, -15.8286583773248], [-61.142719439399286, -15.819675224483603], [-61.15170259224048, -15.819675224483603], [-61.15170259224048, -15.8286583773248], [-61.142719439399286, -15.8286583773248]], [[-60.94509007689298, -15.8286583773248], [-60.94509007689298, -15.819675224483603], [-60.963056382575374, -15.819675224483603], [-60.963056382575374, -15.8286583773248], [-60.94509007689298, -15.8286583773248]], [[-60.91814061836941, -15.8286583773248], [-60.91814061836941, -15.819675224483603], [-60.9271237712106, -15.819675224483603], [-60.9271237712106, -15.8286583773248], [-60.91814061836941, -15.8286583773248]], [[-61.520011858729475, -15.837641530165996], [-61.520011858729475, -15.8286583773248], [-61.52899501157067, -15.8286583773248], [-61.52899501157067, -15.837641530165996], [-61.520011858729475, -15.837641530165996]], [[-61.160685745081665, -15.837641530165996], [-61.160685745081665, -15.8286583773248], [-61.16966889792286, -15.8286583773248], [-61.16966889792286, -15.837641530165996], [-61.160685745081665, -15.837641530165996]], [[-60.88220800700462, -15.837641530165996], [-60.88220800700462, -15.8286583773248], [-60.89119115984582, -15.8286583773248], [-60.89119115984582, -15.837641530165996], [-60.88220800700462, -15.837641530165996]], [[-61.124753133716894, -15.846624683007192], [-61.124753133716894, -15.8286583773248], [-61.13373628655809, -15.8286583773248], [-61.13373628655809, -15.846624683007192], [-61.124753133716894, -15.846624683007192]], [[-61.2774667320172, -15.855607835848389], [-61.2774667320172, -15.846624683007192], [-61.2864498848584, -15.846624683007192], [-61.2864498848584, -15.855607835848389], [-61.2774667320172, -15.855607835848389]], [[-61.04390475814614, -15.864590988689585], [-61.04390475814614, -15.855607835848389], [-61.05288791098732, -15.855607835848389], [-61.05288791098732, -15.864590988689585], [-61.04390475814614, -15.864590988689585]], [[-61.19661835644645, -15.873574141530781], [-61.19661835644645, -15.837641530165996], [-61.205601509287646, -15.837641530165996], [-61.205601509287646, -15.8286583773248], [-61.21458466212884, -15.8286583773248], [-61.21458466212884, -15.819675224483603], [-61.232550967811235, -15.819675224483603], [-61.232550967811235, -15.8286583773248], [-61.22356781497004, -15.8286583773248], [-61.22356781497004, -15.837641530165996], [-61.21458466212884, -15.837641530165996], [-61.21458466212884, -15.855607835848389], [-61.205601509287646, -15.855607835848389], [-61.205601509287646, -15.873574141530781], [-61.19661835644645, -15.873574141530781]], [[-61.15170259224048, -15.873574141530781], [-61.15170259224048, -15.864590988689585], [-61.160685745081665, -15.864590988689585], [-61.160685745081665, -15.873574141530781], [-61.15170259224048, -15.873574141530781]], [[-60.95407322973418, -15.873574141530781], [-60.95407322973418, -15.864590988689585], [-60.91814061836941, -15.864590988689585], [-60.91814061836941, -15.855607835848389], [-60.9271237712106, -15.855607835848389], [-60.9271237712106, -15.846624683007192], [-60.936106924051785, -15.846624683007192], [-60.936106924051785, -15.855607835848389], [-60.94509007689298, -15.855607835848389], [-60.94509007689298, -15.846624683007192], [-60.936106924051785, -15.846624683007192], [-60.936106924051785, -15.837641530165996], [-60.95407322973418, -15.837641530165996], [-60.95407322973418, -15.855607835848389], [-60.963056382575374, -15.855607835848389], [-60.963056382575374, -15.873574141530781], [-60.95407322973418, -15.873574141530781]], [[-60.85525854848103, -15.873574141530781], [-60.85525854848103, -15.864590988689585], [-60.86424170132223, -15.864590988689585], [-60.86424170132223, -15.873574141530781], [-60.85525854848103, -15.873574141530781]], [[-61.13373628655809, -15.882557294371978], [-61.13373628655809, -15.873574141530781], [-61.142719439399286, -15.873574141530781], [-61.142719439399286, -15.882557294371978], [-61.13373628655809, -15.882557294371978]], [[-61.05288791098732, -15.882557294371978], [-61.05288791098732, -15.864590988689585], [-61.070854216669716, -15.864590988689585], [-61.070854216669716, -15.873574141530781], [-61.06187106382852, -15.873574141530781], [-61.06187106382852, -15.882557294371978], [-61.05288791098732, -15.882557294371978]], [[-60.7294944087043, -15.873574141530781], [-60.7294944087043, -15.864590988689585], [-60.7205112558631, -15.864590988689585], [-60.7205112558631, -15.855607835848389], [-60.711528103021905, -15.855607835848389], [-60.711528103021905, -15.846624683007192], [-60.7205112558631, -15.846624683007192], [-60.7205112558631, -15.837641530165996], [-60.7294944087043, -15.837641530165996], [-60.7294944087043, -15.846624683007192], [-60.74746071438669, -15.846624683007192], [-60.74746071438669, -15.855607835848389], [-60.75644386722789, -15.855607835848389], [-60.75644386722789, -15.864590988689585], [-60.738477561545494, -15.864590988689585], [-60.738477561545494, -15.873574141530781], [-60.7294944087043, -15.873574141530781]], [[-60.738477561545494, -15.882557294371978], [-60.738477561545494, -15.873574141530781], [-60.74746071438669, -15.873574141530781], [-60.74746071438669, -15.882557294371978], [-60.738477561545494, -15.882557294371978]], [[-61.295433037699596, -15.891540447213174], [-61.295433037699596, -15.882557294371978], [-61.30441619054079, -15.882557294371978], [-61.30441619054079, -15.891540447213174], [-61.295433037699596, -15.891540447213174]], [[-61.142719439399286, -15.891540447213174], [-61.142719439399286, -15.882557294371978], [-61.15170259224048, -15.882557294371978], [-61.15170259224048, -15.891540447213174], [-61.142719439399286, -15.891540447213174]], [[-60.82830908995744, -15.891540447213174], [-60.82830908995744, -15.882557294371978], [-60.85525854848103, -15.882557294371978], [-60.85525854848103, -15.891540447213174], [-60.82830908995744, -15.891540447213174]], [[-60.90915746552821, -15.90052360005437], [-60.90915746552821, -15.891540447213174], [-60.91814061836941, -15.891540447213174], [-60.91814061836941, -15.882557294371978], [-60.9271237712106, -15.882557294371978], [-60.9271237712106, -15.873574141530781], [-60.94509007689298, -15.873574141530781], [-60.94509007689298, -15.882557294371978], [-60.95407322973418, -15.882557294371978], [-60.95407322973418, -15.891540447213174], [-60.9271237712106, -15.891540447213174], [-60.9271237712106, -15.90052360005437], [-60.90915746552821, -15.90052360005437]], [[-61.2774667320172, -15.909506752895567], [-61.2774667320172, -15.90052360005437], [-61.2864498848584, -15.90052360005437], [-61.2864498848584, -15.909506752895567], [-61.2774667320172, -15.909506752895567]], [[-61.19661835644645, -15.909506752895567], [-61.19661835644645, -15.90052360005437], [-61.21458466212884, -15.90052360005437], [-61.21458466212884, -15.909506752895567], [-61.19661835644645, -15.909506752895567]], [[-60.99898899394016, -15.909506752895567], [-60.99898899394016, -15.90052360005437], [-61.007972146781356, -15.90052360005437], [-61.007972146781356, -15.909506752895567], [-60.99898899394016, -15.909506752895567]], [[-60.97203953541657, -15.909506752895567], [-60.97203953541657, -15.882557294371978], [-60.963056382575374, -15.882557294371978], [-60.963056382575374, -15.873574141530781], [-60.99000584109896, -15.873574141530781], [-60.99000584109896, -15.855607835848389], [-60.99898899394016, -15.855607835848389], [-60.99898899394016, -15.837641530165996], [-60.99000584109896, -15.837641530165996], [-60.99000584109896, -15.8286583773248], [-60.98102268825777, -15.8286583773248], [-60.98102268825777, -15.819675224483603], [-61.007972146781356, -15.819675224483603], [-61.007972146781356, -15.801708918801225], [-61.02593845246375, -15.801708918801225], [-61.02593845246375, -15.810692071642421], [-61.034921605304945, -15.810692071642421], [-61.034921605304945, -15.801708918801225], [-61.04390475814614, -15.801708918801225], [-61.04390475814614, -15.792725765960029], [-61.02593845246375, -15.792725765960029], [-61.02593845246375, -15.783742613118832], [-61.04390475814614, -15.783742613118832], [-61.04390475814614, -15.747810001754047], [-61.05288791098732, -15.747810001754047], [-61.05288791098732, -15.756793154595243], [-61.06187106382852, -15.756793154595243], [-61.06187106382852, -15.73882684891285], [-61.04390475814614, -15.73882684891285], [-61.04390475814614, -15.720860543230458], [-61.05288791098732, -15.720860543230458], [-61.05288791098732, -15.729843696071654], [-61.070854216669716, -15.729843696071654], [-61.070854216669716, -15.73882684891285], [-61.07983736951091, -15.73882684891285], [-61.07983736951091, -15.747810001754047], [-61.097803675193305, -15.747810001754047], [-61.097803675193305, -15.756793154595243], [-61.08882052235211, -15.756793154595243], [-61.08882052235211, -15.774759460277636], [-61.070854216669716, -15.774759460277636], [-61.070854216669716, -15.76577630743644], [-61.06187106382852, -15.76577630743644], [-61.06187106382852, -15.783742613118832], [-61.070854216669716, -15.783742613118832], [-61.070854216669716, -15.801708918801225], [-61.06187106382852, -15.801708918801225], [-61.06187106382852, -15.819675224483603], [-61.05288791098732, -15.819675224483603], [-61.05288791098732, -15.8286583773248], [-61.04390475814614, -15.8286583773248], [-61.04390475814614, -15.837641530165996], [-61.034921605304945, -15.837641530165996], [-61.034921605304945, -15.864590988689585], [-61.04390475814614, -15.864590988689585], [-61.04390475814614, -15.873574141530781], [-61.02593845246375, -15.873574141530781], [-61.02593845246375, -15.864590988689585], [-61.007972146781356, -15.864590988689585], [-61.007972146781356, -15.882557294371978], [-60.99898899394016, -15.882557294371978], [-60.99898899394016, -15.90052360005437], [-60.98102268825777, -15.90052360005437], [-60.98102268825777, -15.909506752895567], [-60.97203953541657, -15.909506752895567]], [[-60.9271237712106, -15.909506752895567], [-60.9271237712106, -15.90052360005437], [-60.94509007689298, -15.90052360005437], [-60.94509007689298, -15.909506752895567], [-60.9271237712106, -15.909506752895567]], [[-60.81932593711625, -15.909506752895567], [-60.81932593711625, -15.90052360005437], [-60.82830908995744, -15.90052360005437], [-60.82830908995744, -15.909506752895567], [-60.81932593711625, -15.909506752895567]], [[-61.2864498848584, -15.918489905736763], [-61.2864498848584, -15.909506752895567], [-61.295433037699596, -15.909506752895567], [-61.295433037699596, -15.918489905736763], [-61.2864498848584, -15.918489905736763]], [[-61.25051727349363, -15.918489905736763], [-61.25051727349363, -15.909506752895567], [-61.259500426334824, -15.909506752895567], [-61.259500426334824, -15.918489905736763], [-61.25051727349363, -15.918489905736763]], [[-61.259500426334824, -15.936456211419141], [-61.259500426334824, -15.918489905736763], [-61.26848357917602, -15.918489905736763], [-61.26848357917602, -15.936456211419141], [-61.259500426334824, -15.936456211419141]], [[-61.15170259224048, -15.945439364260338], [-61.15170259224048, -15.936456211419141], [-61.160685745081665, -15.936456211419141], [-61.160685745081665, -15.945439364260338], [-61.15170259224048, -15.945439364260338]], [[-61.142719439399286, -15.96340566994273], [-61.142719439399286, -15.954422517101534], [-61.15170259224048, -15.954422517101534], [-61.15170259224048, -15.96340566994273], [-61.142719439399286, -15.96340566994273]], [[-61.2774667320172, -15.972388822783927], [-61.2774667320172, -15.96340566994273], [-61.2864498848584, -15.96340566994273], [-61.2864498848584, -15.972388822783927], [-61.2774667320172, -15.972388822783927]], [[-61.15170259224048, -15.972388822783927], [-61.15170259224048, -15.96340566994273], [-61.160685745081665, -15.96340566994273], [-61.160685745081665, -15.972388822783927], [-61.15170259224048, -15.972388822783927]], [[-61.2864498848584, -15.99035512846632], [-61.2864498848584, -15.981371975625123], [-61.295433037699596, -15.981371975625123], [-61.295433037699596, -15.99035512846632], [-61.2864498848584, -15.99035512846632]], [[-61.142719439399286, -15.99035512846632], [-61.142719439399286, -15.981371975625123], [-61.15170259224048, -15.981371975625123], [-61.15170259224048, -15.99035512846632], [-61.142719439399286, -15.99035512846632]], [[-61.2774667320172, -15.999338281307516], [-61.2774667320172, -15.99035512846632], [-61.2864498848584, -15.99035512846632], [-61.2864498848584, -15.999338281307516], [-61.2774667320172, -15.999338281307516]], [[-61.2864498848584, -16.026287739831105], [-61.2864498848584, -16.01730458698991], [-61.295433037699596, -16.01730458698991], [-61.295433037699596, -16.008321434148712], [-61.30441619054079, -16.008321434148712], [-61.30441619054079, -16.026287739831105], [-61.2864498848584, -16.026287739831105]], [[-61.15170259224048, -16.071203504037072], [-61.15170259224048, -16.062220351195876], [-61.160685745081665, -16.062220351195876], [-61.160685745081665, -16.071203504037072], [-61.15170259224048, -16.071203504037072]]]}, 'id': '+13218+10138', 'properties': {'count': 5498, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.160685745081665, -16.331714936431737], [-61.15170259224048, -16.331714936431737], [-61.15170259224048, -16.32273178359054], [-61.142719439399286, -16.32273178359054], [-61.142719439399286, -16.313748630749345], [-61.160685745081665, -16.313748630749345], [-61.160685745081665, -16.331714936431737]]]}, 'id': '+13218+10166', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.160685745081665, -16.358664394955326], [-61.15170259224048, -16.358664394955326], [-61.15170259224048, -16.34968124211413], [-61.160685745081665, -16.34968124211413], [-61.160685745081665, -16.358664394955326]]]}, 'id': '+13218+10169', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.160685745081665, -14.427286534098357], [-61.15170259224048, -14.427286534098357], [-61.15170259224048, -14.41830338125716], [-61.160685745081665, -14.41830338125716], [-61.160685745081665, -14.409320228415964], [-61.16966889792286, -14.409320228415964], [-61.16966889792286, -14.41830338125716], [-61.160685745081665, -14.41830338125716], [-61.160685745081665, -14.427286534098357]]]}, 'id': '+13218+9954', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.160685745081665, -14.445252839780736], [-61.15170259224048, -14.445252839780736], [-61.15170259224048, -14.436269686939553], [-61.160685745081665, -14.436269686939553], [-61.160685745081665, -14.445252839780736]]]}, 'id': '+13218+9956', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.160685745081665, -14.73271373069899], [-61.15170259224048, -14.73271373069899], [-61.15170259224048, -14.723730577857793], [-61.160685745081665, -14.723730577857793], [-61.160685745081665, -14.73271373069899]]]}, 'id': '+13218+9988', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.160685745081665, -14.786612647746153], [-61.15170259224048, -14.786612647746153], [-61.15170259224048, -14.777629494904971], [-61.160685745081665, -14.777629494904971], [-61.160685745081665, -14.786612647746153]]]}, 'id': '+13218+9994', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.160685745081665, -14.804578953428546], [-61.15170259224048, -14.804578953428546], [-61.15170259224048, -14.79559580058735], [-61.160685745081665, -14.79559580058735], [-61.160685745081665, -14.804578953428546]]]}, 'id': '+13218+9996', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.160685745081665, -14.831528411952135], [-61.15170259224048, -14.831528411952135], [-61.15170259224048, -14.813562106269742], [-61.160685745081665, -14.813562106269742], [-61.160685745081665, -14.831528411952135]]]}, 'id': '+13218+9999', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -15.415433346629825], [-61.142719439399286, -15.415433346629825], [-61.142719439399286, -15.40645019378863], [-61.15170259224048, -15.40645019378863], [-61.15170259224048, -15.415433346629825]]]}, 'id': '+13219+10064', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -15.76577630743644], [-61.142719439399286, -15.76577630743644], [-61.142719439399286, -15.756793154595243], [-61.13373628655809, -15.756793154595243], [-61.13373628655809, -15.747810001754047], [-61.142719439399286, -15.747810001754047], [-61.142719439399286, -15.756793154595243], [-61.15170259224048, -15.756793154595243], [-61.15170259224048, -15.76577630743644]]]}, 'id': '+13219+10103', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -15.918489905736763], [-61.142719439399286, -15.918489905736763], [-61.142719439399286, -15.909506752895567], [-61.124753133716894, -15.909506752895567], [-61.124753133716894, -15.90052360005437], [-61.142719439399286, -15.90052360005437], [-61.142719439399286, -15.909506752895567], [-61.15170259224048, -15.909506752895567], [-61.15170259224048, -15.90052360005437], [-61.160685745081665, -15.90052360005437], [-61.160685745081665, -15.909506752895567], [-61.15170259224048, -15.909506752895567], [-61.15170259224048, -15.918489905736763]]]}, 'id': '+13219+10120', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -15.99035512846632], [-61.142719439399286, -15.99035512846632], [-61.142719439399286, -15.981371975625123], [-61.15170259224048, -15.981371975625123], [-61.15170259224048, -15.99035512846632]]]}, 'id': '+13219+10128', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -16.062220351195876], [-61.142719439399286, -16.062220351195876], [-61.142719439399286, -16.05323719835468], [-61.15170259224048, -16.05323719835468], [-61.15170259224048, -16.062220351195876]]]}, 'id': '+13219+10136', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.160685745081665, -16.089169809719465], [-61.142719439399286, -16.089169809719465], [-61.142719439399286, -16.071203504037072], [-61.15170259224048, -16.071203504037072], [-61.15170259224048, -16.08018665687827], [-61.160685745081665, -16.08018665687827], [-61.160685745081665, -16.089169809719465]]]}, 'id': '+13219+10139', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -16.15205187960784], [-61.142719439399286, -16.15205187960784], [-61.142719439399286, -16.143068726766643], [-61.15170259224048, -16.143068726766643], [-61.15170259224048, -16.15205187960784]]]}, 'id': '+13219+10146', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -16.170018185290218], [-61.142719439399286, -16.170018185290218], [-61.142719439399286, -16.16103503244902], [-61.13373628655809, -16.16103503244902], [-61.13373628655809, -16.15205187960784], [-61.142719439399286, -16.15205187960784], [-61.142719439399286, -16.16103503244902], [-61.15170259224048, -16.16103503244902], [-61.15170259224048, -16.170018185290218]]]}, 'id': '+13219+10148', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -16.37663070063772], [-61.142719439399286, -16.37663070063772], [-61.142719439399286, -16.367647547796523], [-61.15170259224048, -16.367647547796523], [-61.15170259224048, -16.37663070063772]]]}, 'id': '+13219+10171', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -16.448495923367275], [-61.142719439399286, -16.448495923367275], [-61.142719439399286, -16.43951277052608], [-61.13373628655809, -16.43951277052608], [-61.13373628655809, -16.430529617684883], [-61.142719439399286, -16.430529617684883], [-61.142719439399286, -16.43951277052608], [-61.15170259224048, -16.43951277052608], [-61.15170259224048, -16.448495923367275]]]}, 'id': '+13219+10179', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -13.573887014184805], [-61.142719439399286, -13.573887014184805], [-61.142719439399286, -13.564903861343609], [-61.15170259224048, -13.564903861343609], [-61.15170259224048, -13.573887014184805]]]}, 'id': '+13219+9859', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -13.942196280673812], [-61.142719439399286, -13.942196280673812], [-61.142719439399286, -13.933213127832616], [-61.15170259224048, -13.933213127832616], [-61.15170259224048, -13.942196280673812]]]}, 'id': '+13219+9900', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -14.103893031815318], [-61.142719439399286, -14.103893031815318], [-61.142719439399286, -14.094909878974136], [-61.15170259224048, -14.094909878974136], [-61.15170259224048, -14.103893031815318]]]}, 'id': '+13219+9918', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -14.238640324433248], [-61.142719439399286, -14.238640324433248], [-61.142719439399286, -14.229657171592052], [-61.15170259224048, -14.229657171592052], [-61.15170259224048, -14.238640324433248]]]}, 'id': '+13219+9933', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -14.34643815852759], [-61.142719439399286, -14.34643815852759], [-61.142719439399286, -14.337455005686394], [-61.15170259224048, -14.337455005686394], [-61.15170259224048, -14.34643815852759]]]}, 'id': '+13219+9945', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -14.490168603986717], [-61.142719439399286, -14.490168603986717], [-61.142719439399286, -14.481185451145521], [-61.15170259224048, -14.481185451145521], [-61.15170259224048, -14.490168603986717]]]}, 'id': '+13219+9961', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -14.499151756827914], [-61.142719439399286, -14.499151756827914], [-61.142719439399286, -14.490168603986717], [-61.15170259224048, -14.490168603986717], [-61.15170259224048, -14.499151756827914]]]}, 'id': '+13219+9962', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -14.517118062510306], [-61.142719439399286, -14.517118062510306], [-61.142719439399286, -14.50813490966911], [-61.15170259224048, -14.50813490966911], [-61.15170259224048, -14.517118062510306]]]}, 'id': '+13219+9964', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -14.553050673875092], [-61.142719439399286, -14.553050673875092], [-61.142719439399286, -14.544067521033895], [-61.15170259224048, -14.544067521033895], [-61.15170259224048, -14.553050673875092]]]}, 'id': '+13219+9968', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.15170259224048, -14.714747425016597], [-61.142719439399286, -14.714747425016597], [-61.142719439399286, -14.7057642721754], [-61.15170259224048, -14.7057642721754], [-61.15170259224048, -14.714747425016597]]]}, 'id': '+13219+9986', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.142719439399286, -15.469332263677003], [-61.13373628655809, -15.469332263677003], [-61.13373628655809, -15.460349110835807], [-61.142719439399286, -15.460349110835807], [-61.142719439399286, -15.469332263677003]]]}, 'id': '+13220+10070', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.142719439399286, -16.01730458698991], [-61.13373628655809, -16.01730458698991], [-61.13373628655809, -15.999338281307516], [-61.142719439399286, -15.999338281307516], [-61.142719439399286, -16.01730458698991]]]}, 'id': '+13220+10131', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.142719439399286, -16.044254045513483], [-61.13373628655809, -16.044254045513483], [-61.13373628655809, -16.026287739831105], [-61.142719439399286, -16.026287739831105], [-61.142719439399286, -16.044254045513483]]]}, 'id': '+13220+10134', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.142719439399286, -16.08018665687827], [-61.13373628655809, -16.08018665687827], [-61.13373628655809, -16.071203504037072], [-61.142719439399286, -16.071203504037072], [-61.142719439399286, -16.08018665687827]]]}, 'id': '+13220+10138', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.142719439399286, -16.223917102337396], [-61.13373628655809, -16.223917102337396], [-61.13373628655809, -16.2149339494962], [-61.142719439399286, -16.2149339494962], [-61.142719439399286, -16.205950796655003], [-61.15170259224048, -16.205950796655003], [-61.15170259224048, -16.2149339494962], [-61.142719439399286, -16.2149339494962], [-61.142719439399286, -16.223917102337396]]]}, 'id': '+13220+10154', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.142719439399286, -16.403580159161294], [-61.13373628655809, -16.403580159161294], [-61.13373628655809, -16.394597006320097], [-61.142719439399286, -16.394597006320097], [-61.142719439399286, -16.403580159161294]]]}, 'id': '+13220+10174', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.142719439399286, -14.08592672613294], [-61.13373628655809, -14.08592672613294], [-61.13373628655809, -14.076943573291743], [-61.142719439399286, -14.076943573291743], [-61.142719439399286, -14.08592672613294]]]}, 'id': '+13220+9916', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.142719439399286, -14.328471852845198], [-61.13373628655809, -14.328471852845198], [-61.13373628655809, -14.319488700004015], [-61.142719439399286, -14.319488700004015], [-61.142719439399286, -14.328471852845198]]]}, 'id': '+13220+9943', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.13373628655809, -14.948309398887673], [-61.124753133716894, -14.948309398887673], [-61.124753133716894, -14.921359940364084], [-61.142719439399286, -14.921359940364084], [-61.142719439399286, -14.903393634681692], [-61.15170259224048, -14.903393634681692], [-61.15170259224048, -14.89441048184051], [-61.160685745081665, -14.89441048184051], [-61.160685745081665, -14.885427328999313], [-61.15170259224048, -14.885427328999313], [-61.15170259224048, -14.876444176158117], [-61.160685745081665, -14.876444176158117], [-61.160685745081665, -14.885427328999313], [-61.16966889792286, -14.885427328999313], [-61.16966889792286, -14.876444176158117], [-61.17865205076406, -14.876444176158117], [-61.17865205076406, -14.86746102331692], [-61.16966889792286, -14.86746102331692], [-61.16966889792286, -14.849494717634528], [-61.187635203605254, -14.849494717634528], [-61.187635203605254, -14.86746102331692], [-61.19661835644645, -14.86746102331692], [-61.19661835644645, -14.876444176158117], [-61.205601509287646, -14.876444176158117], [-61.205601509287646, -14.86746102331692], [-61.21458466212884, -14.86746102331692], [-61.21458466212884, -14.876444176158117], [-61.205601509287646, -14.876444176158117], [-61.205601509287646, -14.885427328999313], [-61.187635203605254, -14.885427328999313], [-61.187635203605254, -14.903393634681692], [-61.19661835644645, -14.903393634681692], [-61.19661835644645, -14.89441048184051], [-61.22356781497004, -14.89441048184051], [-61.22356781497004, -14.858477870475724], [-61.24153412065243, -14.858477870475724], [-61.24153412065243, -14.876444176158117], [-61.25051727349363, -14.876444176158117], [-61.25051727349363, -14.885427328999313], [-61.232550967811235, -14.885427328999313], [-61.232550967811235, -14.89441048184051], [-61.24153412065243, -14.89441048184051], [-61.24153412065243, -14.903393634681692], [-61.232550967811235, -14.903393634681692], [-61.232550967811235, -14.912376787522888], [-61.22356781497004, -14.912376787522888], [-61.22356781497004, -14.921359940364084], [-61.21458466212884, -14.921359940364084], [-61.21458466212884, -14.939326246046477], [-61.205601509287646, -14.939326246046477], [-61.205601509287646, -14.948309398887673], [-61.17865205076406, -14.948309398887673], [-61.17865205076406, -14.939326246046477], [-61.187635203605254, -14.939326246046477], [-61.187635203605254, -14.93034309320528], [-61.15170259224048, -14.93034309320528], [-61.15170259224048, -14.939326246046477], [-61.142719439399286, -14.939326246046477], [-61.142719439399286, -14.93034309320528], [-61.13373628655809, -14.93034309320528], [-61.13373628655809, -14.948309398887673]]]}, 'id': '+13221+10012', 'properties': {'count': 70, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.13373628655809, -14.993225163093655], [-61.124753133716894, -14.993225163093655], [-61.124753133716894, -14.975258857411262], [-61.13373628655809, -14.975258857411262], [-61.13373628655809, -14.993225163093655]]]}, 'id': '+13221+10017', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.13373628655809, -15.002208315934851], [-61.124753133716894, -15.002208315934851], [-61.124753133716894, -14.993225163093655], [-61.13373628655809, -14.993225163093655], [-61.13373628655809, -15.002208315934851]]]}, 'id': '+13221+10018', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.13373628655809, -15.846624683007192], [-61.124753133716894, -15.846624683007192], [-61.124753133716894, -15.837641530165996], [-61.13373628655809, -15.837641530165996], [-61.13373628655809, -15.846624683007192]]]}, 'id': '+13221+10112', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.13373628655809, -16.107136115401858], [-61.124753133716894, -16.107136115401858], [-61.124753133716894, -16.09815296256066], [-61.13373628655809, -16.09815296256066], [-61.13373628655809, -16.107136115401858]]]}, 'id': '+13221+10141', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.13373628655809, -16.134085573925447], [-61.124753133716894, -16.134085573925447], [-61.124753133716894, -16.12510242108425], [-61.13373628655809, -16.12510242108425], [-61.13373628655809, -16.134085573925447]]]}, 'id': '+13221+10144', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.13373628655809, -16.143068726766643], [-61.124753133716894, -16.143068726766643], [-61.124753133716894, -16.134085573925447], [-61.13373628655809, -16.134085573925447], [-61.13373628655809, -16.12510242108425], [-61.142719439399286, -16.12510242108425], [-61.142719439399286, -16.116119268243054], [-61.124753133716894, -16.116119268243054], [-61.124753133716894, -16.107136115401858], [-61.1157699808757, -16.107136115401858], [-61.1157699808757, -16.116119268243054], [-61.1067868280345, -16.116119268243054], [-61.1067868280345, -16.089169809719465], [-61.097803675193305, -16.089169809719465], [-61.097803675193305, -16.08018665687827], [-61.08882052235211, -16.08018665687827], [-61.08882052235211, -16.071203504037072], [-61.097803675193305, -16.071203504037072], [-61.097803675193305, -16.08018665687827], [-61.1067868280345, -16.08018665687827], [-61.1067868280345, -16.089169809719465], [-61.1157699808757, -16.089169809719465], [-61.1157699808757, -16.09815296256066], [-61.124753133716894, -16.09815296256066], [-61.124753133716894, -16.08018665687827], [-61.13373628655809, -16.08018665687827], [-61.13373628655809, -16.09815296256066], [-61.124753133716894, -16.09815296256066], [-61.124753133716894, -16.107136115401858], [-61.142719439399286, -16.107136115401858], [-61.142719439399286, -16.116119268243054], [-61.15170259224048, -16.116119268243054], [-61.15170259224048, -16.107136115401858], [-61.160685745081665, -16.107136115401858], [-61.160685745081665, -16.116119268243054], [-61.16966889792286, -16.116119268243054], [-61.16966889792286, -16.143068726766643], [-61.142719439399286, -16.143068726766643], [-61.142719439399286, -16.134085573925447], [-61.13373628655809, -16.134085573925447], [-61.13373628655809, -16.143068726766643]], [[-61.15170259224048, -16.134085573925447], [-61.15170259224048, -16.12510242108425], [-61.160685745081665, -16.12510242108425], [-61.160685745081665, -16.134085573925447], [-61.15170259224048, -16.134085573925447]]]}, 'id': '+13221+10145', 'properties': {'count': 21, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.13373628655809, -16.385613853478915], [-61.124753133716894, -16.385613853478915], [-61.124753133716894, -16.37663070063772], [-61.13373628655809, -16.37663070063772], [-61.13373628655809, -16.385613853478915]]]}, 'id': '+13221+10172', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.13373628655809, -13.53795440282002], [-61.124753133716894, -13.53795440282002], [-61.124753133716894, -13.528971249978824], [-61.13373628655809, -13.528971249978824], [-61.13373628655809, -13.53795440282002]]]}, 'id': '+13221+9855', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.13373628655809, -13.564903861343609], [-61.124753133716894, -13.564903861343609], [-61.124753133716894, -13.555920708502413], [-61.13373628655809, -13.555920708502413], [-61.13373628655809, -13.564903861343609]]]}, 'id': '+13221+9858', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.13373628655809, -14.517118062510306], [-61.124753133716894, -14.517118062510306], [-61.124753133716894, -14.50813490966911], [-61.13373628655809, -14.50813490966911], [-61.13373628655809, -14.517118062510306]]]}, 'id': '+13221+9964', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.13373628655809, -14.526101215351503], [-61.124753133716894, -14.526101215351503], [-61.124753133716894, -14.517118062510306], [-61.13373628655809, -14.517118062510306], [-61.13373628655809, -14.526101215351503]]]}, 'id': '+13221+9965', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.13373628655809, -14.714747425016597], [-61.124753133716894, -14.714747425016597], [-61.124753133716894, -14.7057642721754], [-61.13373628655809, -14.7057642721754], [-61.13373628655809, -14.714747425016597]]]}, 'id': '+13221+9986', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.13373628655809, -14.759663189222579], [-61.124753133716894, -14.759663189222579], [-61.124753133716894, -14.750680036381382], [-61.13373628655809, -14.750680036381382], [-61.13373628655809, -14.759663189222579]]]}, 'id': '+13221+9991', 'properties': {'count': 1, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.124753133716894, -14.95729255172887], [-61.1157699808757, -14.95729255172887], [-61.1157699808757, -14.948309398887673], [-61.124753133716894, -14.948309398887673], [-61.124753133716894, -14.95729255172887]]]}, 'id': '+13222+10013', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.124753133716894, -15.469332263677003], [-61.1157699808757, -15.469332263677003], [-61.1157699808757, -15.442382805153414], [-61.124753133716894, -15.442382805153414], [-61.124753133716894, -15.469332263677003]]]}, 'id': '+13222+10070', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.124753133716894, -16.044254045513483], [-61.1157699808757, -16.044254045513483], [-61.1157699808757, -16.0352708926723], [-61.124753133716894, -16.0352708926723], [-61.124753133716894, -16.044254045513483]]]}, 'id': '+13222+10134', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.13373628655809, -16.232900255178592], [-61.1157699808757, -16.232900255178592], [-61.1157699808757, -16.223917102337396], [-61.13373628655809, -16.223917102337396], [-61.13373628655809, -16.232900255178592]]]}, 'id': '+13222+10155', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.124753133716894, -16.25984971370218], [-61.1157699808757, -16.25984971370218], [-61.1157699808757, -16.250866560860985], [-61.124753133716894, -16.250866560860985], [-61.124753133716894, -16.25984971370218]]]}, 'id': '+13222+10158', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.124753133716894, -16.421546464843686], [-61.1157699808757, -16.421546464843686], [-61.1157699808757, -16.403580159161294], [-61.13373628655809, -16.403580159161294], [-61.13373628655809, -16.41256331200249], [-61.142719439399286, -16.41256331200249], [-61.142719439399286, -16.421546464843686], [-61.13373628655809, -16.421546464843686], [-61.13373628655809, -16.41256331200249], [-61.124753133716894, -16.41256331200249], [-61.124753133716894, -16.421546464843686]]]}, 'id': '+13222+10176', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.13373628655809, -13.825415293738274], [-61.1157699808757, -13.825415293738274], [-61.1157699808757, -13.816432140897078], [-61.13373628655809, -13.816432140897078], [-61.13373628655809, -13.825415293738274]]]}, 'id': '+13222+9887', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.124753133716894, -14.526101215351503], [-61.1157699808757, -14.526101215351503], [-61.1157699808757, -14.517118062510306], [-61.124753133716894, -14.517118062510306], [-61.124753133716894, -14.526101215351503]]]}, 'id': '+13222+9965', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.1157699808757, -16.05323719835468], [-61.1067868280345, -16.05323719835468], [-61.1067868280345, -16.044254045513483], [-61.1157699808757, -16.044254045513483], [-61.1157699808757, -16.05323719835468]]]}, 'id': '+13223+10135', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.1157699808757, -16.143068726766643], [-61.1067868280345, -16.143068726766643], [-61.1067868280345, -16.12510242108425], [-61.1157699808757, -16.12510242108425], [-61.1157699808757, -16.143068726766643]]]}, 'id': '+13223+10145', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.1157699808757, -16.205950796655003], [-61.1067868280345, -16.205950796655003], [-61.1067868280345, -16.196967643813807], [-61.1157699808757, -16.196967643813807], [-61.1157699808757, -16.205950796655003]]]}, 'id': '+13223+10152', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.124753133716894, -16.268832866543377], [-61.1067868280345, -16.268832866543377], [-61.1067868280345, -16.25984971370218], [-61.124753133716894, -16.25984971370218], [-61.124753133716894, -16.250866560860985], [-61.142719439399286, -16.250866560860985], [-61.142719439399286, -16.25984971370218], [-61.124753133716894, -16.25984971370218], [-61.124753133716894, -16.268832866543377]]]}, 'id': '+13223+10159', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.1157699808757, -16.340698089272934], [-61.1067868280345, -16.340698089272934], [-61.1067868280345, -16.331714936431737], [-61.097803675193305, -16.331714936431737], [-61.097803675193305, -16.32273178359054], [-61.1067868280345, -16.32273178359054], [-61.1067868280345, -16.30476547790815], [-61.13373628655809, -16.30476547790815], [-61.13373628655809, -16.331714936431737], [-61.1157699808757, -16.331714936431737], [-61.1157699808757, -16.340698089272934]]]}, 'id': '+13223+10167', 'properties': {'count': 11, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.124753133716894, -13.53795440282002], [-61.1067868280345, -13.53795440282002], [-61.1067868280345, -13.528971249978824], [-61.124753133716894, -13.528971249978824], [-61.124753133716894, -13.53795440282002]]]}, 'id': '+13223+9855', 'properties': {'count': 2, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.1157699808757, -14.247623477274445], [-61.1067868280345, -14.247623477274445], [-61.1067868280345, -14.238640324433248], [-61.1157699808757, -14.238640324433248], [-61.1157699808757, -14.247623477274445]]]}, 'id': '+13223+9934', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.1157699808757, -14.57101697955747], [-61.1067868280345, -14.57101697955747], [-61.1067868280345, -14.562033826716274], [-61.1157699808757, -14.562033826716274], [-61.1157699808757, -14.57101697955747]]]}, 'id': '+13223+9970', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.124753133716894, -14.723730577857793], [-61.1067868280345, -14.723730577857793], [-61.1067868280345, -14.714747425016597], [-61.1157699808757, -14.714747425016597], [-61.1157699808757, -14.696781119334204], [-61.124753133716894, -14.696781119334204], [-61.124753133716894, -14.66983166081063], [-61.13373628655809, -14.66983166081063], [-61.13373628655809, -14.660848507969433], [-61.142719439399286, -14.660848507969433], [-61.142719439399286, -14.66983166081063], [-61.15170259224048, -14.66983166081063], [-61.15170259224048, -14.678814813651812], [-61.142719439399286, -14.678814813651812], [-61.142719439399286, -14.696781119334204], [-61.124753133716894, -14.696781119334204], [-61.124753133716894, -14.723730577857793]]]}, 'id': '+13223+9987', 'properties': {'count': 12, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.1067868280345, -14.939326246046477], [-61.097803675193305, -14.939326246046477], [-61.097803675193305, -14.93034309320528], [-61.1067868280345, -14.93034309320528], [-61.1067868280345, -14.939326246046477]]]}, 'id': '+13224+10011', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.1067868280345, -15.972388822783927], [-61.097803675193305, -15.972388822783927], [-61.097803675193305, -15.96340566994273], [-61.1067868280345, -15.96340566994273], [-61.1067868280345, -15.972388822783927]]]}, 'id': '+13224+10126', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.1067868280345, -16.179001338131414], [-61.097803675193305, -16.179001338131414], [-61.097803675193305, -16.170018185290218], [-61.08882052235211, -16.170018185290218], [-61.08882052235211, -16.16103503244902], [-61.1067868280345, -16.16103503244902], [-61.1067868280345, -16.179001338131414]]]}, 'id': '+13224+10149', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.1067868280345, -16.18798449097261], [-61.097803675193305, -16.18798449097261], [-61.097803675193305, -16.179001338131414], [-61.1067868280345, -16.179001338131414], [-61.1067868280345, -16.18798449097261]]]}, 'id': '+13224+10150', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.1067868280345, -13.519988097137642], [-61.097803675193305, -13.519988097137642], [-61.097803675193305, -13.511004944296445], [-61.08882052235211, -13.511004944296445], [-61.08882052235211, -13.502021791455249], [-61.097803675193305, -13.502021791455249], [-61.097803675193305, -13.511004944296445], [-61.1067868280345, -13.511004944296445], [-61.1067868280345, -13.519988097137642]]]}, 'id': '+13224+9853', 'properties': {'count': 2, 'label': 4}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.1067868280345, -13.528971249978824], [-61.097803675193305, -13.528971249978824], [-61.097803675193305, -13.519988097137642], [-61.1067868280345, -13.519988097137642], [-61.1067868280345, -13.528971249978824]]]}, 'id': '+13224+9854', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.1067868280345, -13.53795440282002], [-61.097803675193305, -13.53795440282002], [-61.097803675193305, -13.528971249978824], [-61.1067868280345, -13.528971249978824], [-61.1067868280345, -13.53795440282002]]]}, 'id': '+13224+9855', 'properties': {'count': 1, 'label': 4}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.1067868280345, -14.912376787522888], [-61.08882052235211, -14.912376787522888], [-61.08882052235211, -14.903393634681692], [-61.1067868280345, -14.903393634681692], [-61.1067868280345, -14.89441048184051], [-61.1157699808757, -14.89441048184051], [-61.1157699808757, -14.903393634681692], [-61.1067868280345, -14.903393634681692], [-61.1067868280345, -14.912376787522888]]]}, 'id': '+13225+10008', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.097803675193305, -14.93034309320528], [-61.08882052235211, -14.93034309320528], [-61.08882052235211, -14.921359940364084], [-61.097803675193305, -14.921359940364084], [-61.097803675193305, -14.93034309320528]]]}, 'id': '+13225+10010', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.097803675193305, -14.948309398887673], [-61.08882052235211, -14.948309398887673], [-61.08882052235211, -14.93034309320528], [-61.097803675193305, -14.93034309320528], [-61.097803675193305, -14.948309398887673]]]}, 'id': '+13225+10012', 'properties': {'count': 2, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.097803675193305, -14.966275704570066], [-61.08882052235211, -14.966275704570066], [-61.08882052235211, -14.95729255172887], [-61.097803675193305, -14.95729255172887], [-61.097803675193305, -14.966275704570066]]]}, 'id': '+13225+10014', 'properties': {'count': 1, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.097803675193305, -15.029157774458426], [-61.08882052235211, -15.029157774458426], [-61.08882052235211, -15.02017462161723], [-61.097803675193305, -15.02017462161723], [-61.097803675193305, -15.029157774458426]]]}, 'id': '+13225+10021', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.097803675193305, -15.352551276741465], [-61.08882052235211, -15.352551276741465], [-61.08882052235211, -15.343568123900269], [-61.097803675193305, -15.343568123900269], [-61.097803675193305, -15.352551276741465]]]}, 'id': '+13225+10057', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.097803675193305, -16.0352708926723], [-61.08882052235211, -16.0352708926723], [-61.08882052235211, -16.026287739831105], [-61.097803675193305, -16.026287739831105], [-61.097803675193305, -16.0352708926723]]]}, 'id': '+13225+10133', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.097803675193305, -16.223917102337396], [-61.08882052235211, -16.223917102337396], [-61.08882052235211, -16.2149339494962], [-61.097803675193305, -16.2149339494962], [-61.097803675193305, -16.196967643813807], [-61.1067868280345, -16.196967643813807], [-61.1067868280345, -16.2149339494962], [-61.097803675193305, -16.2149339494962], [-61.097803675193305, -16.223917102337396]]]}, 'id': '+13225+10154', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.097803675193305, -16.313748630749345], [-61.08882052235211, -16.313748630749345], [-61.08882052235211, -16.30476547790815], [-61.097803675193305, -16.30476547790815], [-61.097803675193305, -16.313748630749345]]]}, 'id': '+13225+10164', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.097803675193305, -16.493411687573257], [-61.08882052235211, -16.493411687573257], [-61.08882052235211, -16.48442853473206], [-61.097803675193305, -16.48442853473206], [-61.097803675193305, -16.493411687573257]]]}, 'id': '+13225+10184', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.097803675193305, -13.573887014184805], [-61.08882052235211, -13.573887014184805], [-61.08882052235211, -13.564903861343609], [-61.097803675193305, -13.564903861343609], [-61.097803675193305, -13.573887014184805]]]}, 'id': '+13225+9859', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.097803675193305, -14.490168603986717], [-61.08882052235211, -14.490168603986717], [-61.08882052235211, -14.481185451145521], [-61.097803675193305, -14.481185451145521], [-61.097803675193305, -14.490168603986717]]]}, 'id': '+13225+9961', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.08882052235211, -14.903393634681692], [-61.07983736951091, -14.903393634681692], [-61.07983736951091, -14.885427328999313], [-61.070854216669716, -14.885427328999313], [-61.070854216669716, -14.858477870475724], [-61.06187106382852, -14.858477870475724], [-61.06187106382852, -14.840511564793331], [-61.070854216669716, -14.840511564793331], [-61.070854216669716, -14.858477870475724], [-61.07983736951091, -14.858477870475724], [-61.07983736951091, -14.86746102331692], [-61.08882052235211, -14.86746102331692], [-61.08882052235211, -14.858477870475724], [-61.097803675193305, -14.858477870475724], [-61.097803675193305, -14.849494717634528], [-61.1067868280345, -14.849494717634528], [-61.1067868280345, -14.840511564793331], [-61.1157699808757, -14.840511564793331], [-61.1157699808757, -14.831528411952135], [-61.1067868280345, -14.831528411952135], [-61.1067868280345, -14.813562106269742], [-61.1157699808757, -14.813562106269742], [-61.1157699808757, -14.822545259110939], [-61.124753133716894, -14.822545259110939], [-61.124753133716894, -14.849494717634528], [-61.1157699808757, -14.849494717634528], [-61.1157699808757, -14.858477870475724], [-61.097803675193305, -14.858477870475724], [-61.097803675193305, -14.86746102331692], [-61.1067868280345, -14.86746102331692], [-61.1067868280345, -14.876444176158117], [-61.1157699808757, -14.876444176158117], [-61.1157699808757, -14.86746102331692], [-61.13373628655809, -14.86746102331692], [-61.13373628655809, -14.858477870475724], [-61.142719439399286, -14.858477870475724], [-61.142719439399286, -14.849494717634528], [-61.13373628655809, -14.849494717634528], [-61.13373628655809, -14.840511564793331], [-61.142719439399286, -14.840511564793331], [-61.142719439399286, -14.849494717634528], [-61.15170259224048, -14.849494717634528], [-61.15170259224048, -14.858477870475724], [-61.160685745081665, -14.858477870475724], [-61.160685745081665, -14.849494717634528], [-61.16966889792286, -14.849494717634528], [-61.16966889792286, -14.840511564793331], [-61.17865205076406, -14.840511564793331], [-61.17865205076406, -14.849494717634528], [-61.16966889792286, -14.849494717634528], [-61.16966889792286, -14.858477870475724], [-61.160685745081665, -14.858477870475724], [-61.160685745081665, -14.876444176158117], [-61.15170259224048, -14.876444176158117], [-61.15170259224048, -14.885427328999313], [-61.13373628655809, -14.885427328999313], [-61.13373628655809, -14.89441048184051], [-61.124753133716894, -14.89441048184051], [-61.124753133716894, -14.885427328999313], [-61.08882052235211, -14.885427328999313], [-61.08882052235211, -14.903393634681692]], [[-61.13373628655809, -14.876444176158117], [-61.13373628655809, -14.86746102331692], [-61.142719439399286, -14.86746102331692], [-61.142719439399286, -14.876444176158117], [-61.13373628655809, -14.876444176158117]], [[-61.124753133716894, -14.885427328999313], [-61.124753133716894, -14.876444176158117], [-61.13373628655809, -14.876444176158117], [-61.13373628655809, -14.885427328999313], [-61.124753133716894, -14.885427328999313]]]}, 'id': '+13226+10007', 'properties': {'count': 38, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.08882052235211, -16.044254045513483], [-61.07983736951091, -16.044254045513483], [-61.07983736951091, -16.0352708926723], [-61.08882052235211, -16.0352708926723], [-61.08882052235211, -16.044254045513483]]]}, 'id': '+13226+10134', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.08882052235211, -16.2149339494962], [-61.07983736951091, -16.2149339494962], [-61.07983736951091, -16.18798449097261], [-61.097803675193305, -16.18798449097261], [-61.097803675193305, -16.196967643813807], [-61.08882052235211, -16.196967643813807], [-61.08882052235211, -16.2149339494962]]]}, 'id': '+13226+10153', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.097803675193305, -16.24188340801979], [-61.07983736951091, -16.24188340801979], [-61.07983736951091, -16.223917102337396], [-61.097803675193305, -16.223917102337396], [-61.097803675193305, -16.24188340801979]]]}, 'id': '+13226+10156', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.08882052235211, -16.448495923367275], [-61.07983736951091, -16.448495923367275], [-61.07983736951091, -16.43951277052608], [-61.08882052235211, -16.43951277052608], [-61.08882052235211, -16.448495923367275]]]}, 'id': '+13226+10179', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.08882052235211, -13.564903861343609], [-61.07983736951091, -13.564903861343609], [-61.07983736951091, -13.555920708502413], [-61.08882052235211, -13.555920708502413], [-61.08882052235211, -13.564903861343609]]]}, 'id': '+13226+9858', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.08882052235211, -14.804578953428546], [-61.07983736951091, -14.804578953428546], [-61.07983736951091, -14.79559580058735], [-61.08882052235211, -14.79559580058735], [-61.08882052235211, -14.804578953428546]]]}, 'id': '+13226+9996', 'properties': {'count': 1, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.07983736951091, -14.89441048184051], [-61.070854216669716, -14.89441048184051], [-61.070854216669716, -14.885427328999313], [-61.07983736951091, -14.885427328999313], [-61.07983736951091, -14.89441048184051]]]}, 'id': '+13227+10006', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.07983736951091, -14.921359940364084], [-61.070854216669716, -14.921359940364084], [-61.070854216669716, -14.912376787522888], [-61.07983736951091, -14.912376787522888], [-61.07983736951091, -14.921359940364084]]]}, 'id': '+13227+10009', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.07983736951091, -14.939326246046477], [-61.070854216669716, -14.939326246046477], [-61.070854216669716, -14.921359940364084], [-61.08882052235211, -14.921359940364084], [-61.08882052235211, -14.93034309320528], [-61.07983736951091, -14.93034309320528], [-61.07983736951091, -14.939326246046477]]]}, 'id': '+13227+10011', 'properties': {'count': 3, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.07983736951091, -14.95729255172887], [-61.070854216669716, -14.95729255172887], [-61.070854216669716, -14.948309398887673], [-61.07983736951091, -14.948309398887673], [-61.07983736951091, -14.95729255172887]]]}, 'id': '+13227+10013', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.07983736951091, -15.127972455711571], [-61.070854216669716, -15.127972455711571], [-61.070854216669716, -15.11898930287039], [-61.07983736951091, -15.11898930287039], [-61.07983736951091, -15.127972455711571]]]}, 'id': '+13227+10032', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.07983736951091, -15.711877390389262], [-61.070854216669716, -15.711877390389262], [-61.070854216669716, -15.702894237548065], [-61.06187106382852, -15.702894237548065], [-61.06187106382852, -15.693911084706883], [-61.07983736951091, -15.693911084706883], [-61.07983736951091, -15.711877390389262]]]}, 'id': '+13227+10097', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.07983736951091, -15.981371975625123], [-61.070854216669716, -15.981371975625123], [-61.070854216669716, -15.972388822783927], [-61.07983736951091, -15.972388822783927], [-61.07983736951091, -15.981371975625123]]]}, 'id': '+13227+10127', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.07983736951091, -16.01730458698991], [-61.070854216669716, -16.01730458698991], [-61.070854216669716, -16.008321434148712], [-61.07983736951091, -16.008321434148712], [-61.07983736951091, -16.01730458698991]]]}, 'id': '+13227+10131', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.07983736951091, -16.05323719835468], [-61.070854216669716, -16.05323719835468], [-61.070854216669716, -16.044254045513483], [-61.07983736951091, -16.044254045513483], [-61.07983736951091, -16.05323719835468]]]}, 'id': '+13227+10135', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.07983736951091, -16.170018185290218], [-61.070854216669716, -16.170018185290218], [-61.070854216669716, -16.16103503244902], [-61.07983736951091, -16.16103503244902], [-61.07983736951091, -16.170018185290218]]]}, 'id': '+13227+10148', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.07983736951091, -16.466462229049668], [-61.070854216669716, -16.466462229049668], [-61.070854216669716, -16.45747907620847], [-61.07983736951091, -16.45747907620847], [-61.07983736951091, -16.466462229049668]]]}, 'id': '+13227+10181', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.07983736951091, -16.493411687573257], [-61.070854216669716, -16.493411687573257], [-61.070854216669716, -16.48442853473206], [-61.07983736951091, -16.48442853473206], [-61.07983736951091, -16.493411687573257]]]}, 'id': '+13227+10184', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.07983736951091, -13.511004944296445], [-61.070854216669716, -13.511004944296445], [-61.070854216669716, -13.502021791455249], [-61.07983736951091, -13.502021791455249], [-61.07983736951091, -13.511004944296445]]]}, 'id': '+13227+9852', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.08882052235211, -13.528971249978824], [-61.070854216669716, -13.528971249978824], [-61.070854216669716, -13.519988097137642], [-61.08882052235211, -13.519988097137642], [-61.08882052235211, -13.528971249978824]]]}, 'id': '+13227+9854', 'properties': {'count': 2, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.07983736951091, -14.526101215351503], [-61.070854216669716, -14.526101215351503], [-61.070854216669716, -14.517118062510306], [-61.06187106382852, -14.517118062510306], [-61.06187106382852, -14.50813490966911], [-61.070854216669716, -14.50813490966911], [-61.070854216669716, -14.517118062510306], [-61.07983736951091, -14.517118062510306], [-61.07983736951091, -14.526101215351503]]]}, 'id': '+13227+9965', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.070854216669716, -14.876444176158117], [-61.06187106382852, -14.876444176158117], [-61.06187106382852, -14.86746102331692], [-61.05288791098732, -14.86746102331692], [-61.05288791098732, -14.858477870475724], [-61.070854216669716, -14.858477870475724], [-61.070854216669716, -14.876444176158117]]]}, 'id': '+13228+10004', 'properties': {'count': 3, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.070854216669716, -14.885427328999313], [-61.06187106382852, -14.885427328999313], [-61.06187106382852, -14.876444176158117], [-61.070854216669716, -14.876444176158117], [-61.070854216669716, -14.885427328999313]]]}, 'id': '+13228+10005', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.070854216669716, -14.921359940364084], [-61.06187106382852, -14.921359940364084], [-61.06187106382852, -14.903393634681692], [-61.070854216669716, -14.903393634681692], [-61.070854216669716, -14.921359940364084]]]}, 'id': '+13228+10009', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.070854216669716, -15.038140927299622], [-61.06187106382852, -15.038140927299622], [-61.06187106382852, -15.029157774458426], [-61.070854216669716, -15.029157774458426], [-61.070854216669716, -15.038140927299622]]]}, 'id': '+13228+10022', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.070854216669716, -15.074073538664408], [-61.06187106382852, -15.074073538664408], [-61.06187106382852, -15.065090385823211], [-61.070854216669716, -15.065090385823211], [-61.070854216669716, -15.074073538664408]]]}, 'id': '+13228+10026', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.070854216669716, -15.325601818217876], [-61.06187106382852, -15.325601818217876], [-61.06187106382852, -15.31661866537668], [-61.070854216669716, -15.31661866537668], [-61.070854216669716, -15.325601818217876]]]}, 'id': '+13228+10054', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.070854216669716, -15.873574141530781], [-61.06187106382852, -15.873574141530781], [-61.06187106382852, -15.864590988689585], [-61.070854216669716, -15.864590988689585], [-61.070854216669716, -15.873574141530781]]]}, 'id': '+13228+10115', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.070854216669716, -15.972388822783927], [-61.06187106382852, -15.972388822783927], [-61.06187106382852, -15.96340566994273], [-61.070854216669716, -15.96340566994273], [-61.070854216669716, -15.972388822783927]]]}, 'id': '+13228+10126', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.070854216669716, -16.008321434148712], [-61.06187106382852, -16.008321434148712], [-61.06187106382852, -15.999338281307516], [-61.070854216669716, -15.999338281307516], [-61.070854216669716, -16.008321434148712]]]}, 'id': '+13228+10130', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.070854216669716, -16.0352708926723], [-61.06187106382852, -16.0352708926723], [-61.06187106382852, -16.026287739831105], [-61.070854216669716, -16.026287739831105], [-61.070854216669716, -16.0352708926723]]]}, 'id': '+13228+10133', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.070854216669716, -16.089169809719465], [-61.06187106382852, -16.089169809719465], [-61.06187106382852, -16.08018665687827], [-61.070854216669716, -16.08018665687827], [-61.070854216669716, -16.089169809719465]]]}, 'id': '+13228+10139', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.070854216669716, -16.493411687573257], [-61.06187106382852, -16.493411687573257], [-61.06187106382852, -16.48442853473206], [-61.070854216669716, -16.48442853473206], [-61.070854216669716, -16.493411687573257]]]}, 'id': '+13228+10184', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.070854216669716, -14.822545259110939], [-61.06187106382852, -14.822545259110939], [-61.06187106382852, -14.79559580058735], [-61.04390475814614, -14.79559580058735], [-61.04390475814614, -14.804578953428546], [-61.034921605304945, -14.804578953428546], [-61.034921605304945, -14.79559580058735], [-61.04390475814614, -14.79559580058735], [-61.04390475814614, -14.777629494904971], [-61.05288791098732, -14.777629494904971], [-61.05288791098732, -14.786612647746153], [-61.070854216669716, -14.786612647746153], [-61.070854216669716, -14.768646342063775], [-61.07983736951091, -14.768646342063775], [-61.07983736951091, -14.759663189222579], [-61.070854216669716, -14.759663189222579], [-61.070854216669716, -14.750680036381382], [-61.08882052235211, -14.750680036381382], [-61.08882052235211, -14.741696883540186], [-61.1067868280345, -14.741696883540186], [-61.1067868280345, -14.73271373069899], [-61.1157699808757, -14.73271373069899], [-61.1157699808757, -14.723730577857793], [-61.142719439399286, -14.723730577857793], [-61.142719439399286, -14.759663189222579], [-61.15170259224048, -14.759663189222579], [-61.15170259224048, -14.777629494904971], [-61.13373628655809, -14.777629494904971], [-61.13373628655809, -14.786612647746153], [-61.142719439399286, -14.786612647746153], [-61.142719439399286, -14.79559580058735], [-61.15170259224048, -14.79559580058735], [-61.15170259224048, -14.804578953428546], [-61.142719439399286, -14.804578953428546], [-61.142719439399286, -14.79559580058735], [-61.1067868280345, -14.79559580058735], [-61.1067868280345, -14.786612647746153], [-61.124753133716894, -14.786612647746153], [-61.124753133716894, -14.777629494904971], [-61.1067868280345, -14.777629494904971], [-61.1067868280345, -14.768646342063775], [-61.08882052235211, -14.768646342063775], [-61.08882052235211, -14.777629494904971], [-61.097803675193305, -14.777629494904971], [-61.097803675193305, -14.79559580058735], [-61.070854216669716, -14.79559580058735], [-61.070854216669716, -14.822545259110939]], [[-61.1157699808757, -14.768646342063775], [-61.1157699808757, -14.750680036381382], [-61.13373628655809, -14.750680036381382], [-61.13373628655809, -14.759663189222579], [-61.124753133716894, -14.759663189222579], [-61.124753133716894, -14.768646342063775], [-61.1157699808757, -14.768646342063775]], [[-61.124753133716894, -14.777629494904971], [-61.124753133716894, -14.768646342063775], [-61.13373628655809, -14.768646342063775], [-61.13373628655809, -14.777629494904971], [-61.124753133716894, -14.777629494904971]]]}, 'id': '+13228+9998', 'properties': {'count': 52, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.06187106382852, -14.840511564793331], [-61.05288791098732, -14.840511564793331], [-61.05288791098732, -14.831528411952135], [-61.06187106382852, -14.831528411952135], [-61.06187106382852, -14.822545259110939], [-61.070854216669716, -14.822545259110939], [-61.070854216669716, -14.831528411952135], [-61.06187106382852, -14.831528411952135], [-61.06187106382852, -14.840511564793331]]]}, 'id': '+13229+10000', 'properties': {'count': 2, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.070854216669716, -14.939326246046477], [-61.05288791098732, -14.939326246046477], [-61.05288791098732, -14.93034309320528], [-61.070854216669716, -14.93034309320528], [-61.070854216669716, -14.939326246046477]]]}, 'id': '+13229+10011', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.1157699808757, -15.02017462161723], [-61.05288791098732, -15.02017462161723], [-61.05288791098732, -15.011191468776047], [-61.06187106382852, -15.011191468776047], [-61.06187106382852, -14.95729255172887], [-61.07983736951091, -14.95729255172887], [-61.07983736951091, -14.948309398887673], [-61.06187106382852, -14.948309398887673], [-61.06187106382852, -14.939326246046477], [-61.07983736951091, -14.939326246046477], [-61.07983736951091, -14.93034309320528], [-61.08882052235211, -14.93034309320528], [-61.08882052235211, -14.948309398887673], [-61.097803675193305, -14.948309398887673], [-61.097803675193305, -14.939326246046477], [-61.1067868280345, -14.939326246046477], [-61.1067868280345, -14.921359940364084], [-61.1157699808757, -14.921359940364084], [-61.1157699808757, -14.903393634681692], [-61.124753133716894, -14.903393634681692], [-61.124753133716894, -14.93034309320528], [-61.1157699808757, -14.93034309320528], [-61.1157699808757, -14.939326246046477], [-61.124753133716894, -14.939326246046477], [-61.124753133716894, -14.948309398887673], [-61.1157699808757, -14.948309398887673], [-61.1157699808757, -14.95729255172887], [-61.124753133716894, -14.95729255172887], [-61.124753133716894, -14.975258857411262], [-61.1067868280345, -14.975258857411262], [-61.1067868280345, -14.984242010252458], [-61.1157699808757, -14.984242010252458], [-61.1157699808757, -15.02017462161723]], [[-61.1067868280345, -14.948309398887673], [-61.1067868280345, -14.939326246046477], [-61.1157699808757, -14.939326246046477], [-61.1157699808757, -14.948309398887673], [-61.1067868280345, -14.948309398887673]], [[-61.08882052235211, -14.966275704570066], [-61.08882052235211, -14.95729255172887], [-61.097803675193305, -14.95729255172887], [-61.097803675193305, -14.966275704570066], [-61.08882052235211, -14.966275704570066]], [[-61.08882052235211, -15.002208315934851], [-61.08882052235211, -14.993225163093655], [-61.097803675193305, -14.993225163093655], [-61.097803675193305, -15.002208315934851], [-61.08882052235211, -15.002208315934851]]]}, 'id': '+13229+10020', 'properties': {'count': 57, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.06187106382852, -15.136955608552768], [-61.05288791098732, -15.136955608552768], [-61.05288791098732, -15.127972455711571], [-61.06187106382852, -15.127972455711571], [-61.06187106382852, -15.136955608552768]]]}, 'id': '+13229+10033', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.06187106382852, -15.819675224483603], [-61.05288791098732, -15.819675224483603], [-61.05288791098732, -15.792725765960029], [-61.04390475814614, -15.792725765960029], [-61.04390475814614, -15.756793154595243], [-61.06187106382852, -15.756793154595243], [-61.06187106382852, -15.76577630743644], [-61.05288791098732, -15.76577630743644], [-61.05288791098732, -15.783742613118832], [-61.06187106382852, -15.783742613118832], [-61.06187106382852, -15.819675224483603]]]}, 'id': '+13229+10109', 'properties': {'count': 9, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.06187106382852, -15.882557294371978], [-61.05288791098732, -15.882557294371978], [-61.05288791098732, -15.864590988689585], [-61.04390475814614, -15.864590988689585], [-61.04390475814614, -15.873574141530781], [-61.02593845246375, -15.873574141530781], [-61.02593845246375, -15.864590988689585], [-61.01695529962255, -15.864590988689585], [-61.01695529962255, -15.855607835848389], [-61.02593845246375, -15.855607835848389], [-61.02593845246375, -15.846624683007192], [-61.034921605304945, -15.846624683007192], [-61.034921605304945, -15.864590988689585], [-61.04390475814614, -15.864590988689585], [-61.04390475814614, -15.855607835848389], [-61.05288791098732, -15.855607835848389], [-61.05288791098732, -15.864590988689585], [-61.06187106382852, -15.864590988689585], [-61.06187106382852, -15.882557294371978]]]}, 'id': '+13229+10116', 'properties': {'count': 8, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.06187106382852, -16.107136115401858], [-61.05288791098732, -16.107136115401858], [-61.05288791098732, -16.09815296256066], [-61.06187106382852, -16.09815296256066], [-61.06187106382852, -16.107136115401858]]]}, 'id': '+13229+10141', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.06187106382852, -16.16103503244902], [-61.05288791098732, -16.16103503244902], [-61.05288791098732, -16.15205187960784], [-61.06187106382852, -16.15205187960784], [-61.06187106382852, -16.16103503244902]]]}, 'id': '+13229+10147', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.06187106382852, -16.205950796655003], [-61.05288791098732, -16.205950796655003], [-61.05288791098732, -16.196967643813807], [-61.04390475814614, -16.196967643813807], [-61.04390475814614, -16.179001338131414], [-61.070854216669716, -16.179001338131414], [-61.070854216669716, -16.18798449097261], [-61.05288791098732, -16.18798449097261], [-61.05288791098732, -16.196967643813807], [-61.06187106382852, -16.196967643813807], [-61.06187106382852, -16.205950796655003]]]}, 'id': '+13229+10152', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.06187106382852, -16.2149339494962], [-61.05288791098732, -16.2149339494962], [-61.05288791098732, -16.205950796655003], [-61.06187106382852, -16.205950796655003], [-61.06187106382852, -16.2149339494962]]]}, 'id': '+13229+10153', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.06187106382852, -16.286799172225756], [-61.05288791098732, -16.286799172225756], [-61.05288791098732, -16.27781601938456], [-61.06187106382852, -16.27781601938456], [-61.06187106382852, -16.286799172225756]]]}, 'id': '+13229+10161', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.06187106382852, -16.43951277052608], [-61.05288791098732, -16.43951277052608], [-61.05288791098732, -16.430529617684883], [-61.034921605304945, -16.430529617684883], [-61.034921605304945, -16.421546464843686], [-61.06187106382852, -16.421546464843686], [-61.06187106382852, -16.43951277052608]]]}, 'id': '+13229+10178', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.06187106382852, -16.48442853473206], [-61.05288791098732, -16.48442853473206], [-61.05288791098732, -16.466462229049668], [-61.04390475814614, -16.466462229049668], [-61.04390475814614, -16.45747907620847], [-61.070854216669716, -16.45747907620847], [-61.070854216669716, -16.448495923367275], [-61.07983736951091, -16.448495923367275], [-61.07983736951091, -16.45747907620847], [-61.070854216669716, -16.45747907620847], [-61.070854216669716, -16.466462229049668], [-61.06187106382852, -16.466462229049668], [-61.06187106382852, -16.48442853473206]]]}, 'id': '+13229+10183', 'properties': {'count': 6, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.06187106382852, -14.517118062510306], [-61.05288791098732, -14.517118062510306], [-61.05288791098732, -14.50813490966911], [-61.06187106382852, -14.50813490966911], [-61.06187106382852, -14.517118062510306]]]}, 'id': '+13229+9964', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.06187106382852, -14.777629494904971], [-61.05288791098732, -14.777629494904971], [-61.05288791098732, -14.768646342063775], [-61.06187106382852, -14.768646342063775], [-61.06187106382852, -14.777629494904971]]]}, 'id': '+13229+9993', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.05288791098732, -14.966275704570066], [-61.04390475814614, -14.966275704570066], [-61.04390475814614, -14.95729255172887], [-61.05288791098732, -14.95729255172887], [-61.05288791098732, -14.948309398887673], [-61.06187106382852, -14.948309398887673], [-61.06187106382852, -14.95729255172887], [-61.05288791098732, -14.95729255172887], [-61.05288791098732, -14.966275704570066]]]}, 'id': '+13230+10014', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.05288791098732, -14.975258857411262], [-61.04390475814614, -14.975258857411262], [-61.04390475814614, -14.966275704570066], [-61.034921605304945, -14.966275704570066], [-61.034921605304945, -14.95729255172887], [-61.02593845246375, -14.95729255172887], [-61.02593845246375, -14.948309398887673], [-61.04390475814614, -14.948309398887673], [-61.04390475814614, -14.921359940364084], [-61.05288791098732, -14.921359940364084], [-61.05288791098732, -14.903393634681692], [-61.06187106382852, -14.903393634681692], [-61.06187106382852, -14.921359940364084], [-61.05288791098732, -14.921359940364084], [-61.05288791098732, -14.939326246046477], [-61.06187106382852, -14.939326246046477], [-61.06187106382852, -14.948309398887673], [-61.070854216669716, -14.948309398887673], [-61.070854216669716, -14.95729255172887], [-61.06187106382852, -14.95729255172887], [-61.06187106382852, -14.948309398887673], [-61.05288791098732, -14.948309398887673], [-61.05288791098732, -14.95729255172887], [-61.04390475814614, -14.95729255172887], [-61.04390475814614, -14.966275704570066], [-61.05288791098732, -14.966275704570066], [-61.05288791098732, -14.975258857411262]]]}, 'id': '+13230+10015', 'properties': {'count': 12, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.06187106382852, -14.993225163093655], [-61.04390475814614, -14.993225163093655], [-61.04390475814614, -14.984242010252458], [-61.034921605304945, -14.984242010252458], [-61.034921605304945, -14.975258857411262], [-61.02593845246375, -14.975258857411262], [-61.02593845246375, -14.966275704570066], [-61.04390475814614, -14.966275704570066], [-61.04390475814614, -14.975258857411262], [-61.05288791098732, -14.975258857411262], [-61.05288791098732, -14.95729255172887], [-61.06187106382852, -14.95729255172887], [-61.06187106382852, -14.993225163093655]]]}, 'id': '+13230+10017', 'properties': {'count': 9, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.06187106382852, -15.038140927299622], [-61.04390475814614, -15.038140927299622], [-61.04390475814614, -15.02017462161723], [-61.034921605304945, -15.02017462161723], [-61.034921605304945, -15.011191468776047], [-61.04390475814614, -15.011191468776047], [-61.04390475814614, -15.002208315934851], [-61.06187106382852, -15.002208315934851], [-61.06187106382852, -15.011191468776047], [-61.05288791098732, -15.011191468776047], [-61.05288791098732, -15.02017462161723], [-61.06187106382852, -15.02017462161723], [-61.06187106382852, -15.038140927299622]]]}, 'id': '+13230+10022', 'properties': {'count': 8, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.05288791098732, -15.172888219917553], [-61.04390475814614, -15.172888219917553], [-61.04390475814614, -15.163905067076357], [-61.05288791098732, -15.163905067076357], [-61.05288791098732, -15.172888219917553]]]}, 'id': '+13230+10037', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.05288791098732, -15.60407955629492], [-61.04390475814614, -15.60407955629492], [-61.04390475814614, -15.595096403453724], [-61.05288791098732, -15.595096403453724], [-61.05288791098732, -15.60407955629492]]]}, 'id': '+13230+10085', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.05288791098732, -15.945439364260338], [-61.04390475814614, -15.945439364260338], [-61.04390475814614, -15.936456211419141], [-61.05288791098732, -15.936456211419141], [-61.05288791098732, -15.918489905736763], [-61.06187106382852, -15.918489905736763], [-61.06187106382852, -15.936456211419141], [-61.05288791098732, -15.936456211419141], [-61.05288791098732, -15.945439364260338]]]}, 'id': '+13230+10123', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.05288791098732, -15.972388822783927], [-61.04390475814614, -15.972388822783927], [-61.04390475814614, -15.96340566994273], [-61.05288791098732, -15.96340566994273], [-61.05288791098732, -15.972388822783927]]]}, 'id': '+13230+10126', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.05288791098732, -15.999338281307516], [-61.04390475814614, -15.999338281307516], [-61.04390475814614, -15.99035512846632], [-61.05288791098732, -15.99035512846632], [-61.05288791098732, -15.981371975625123], [-61.04390475814614, -15.981371975625123], [-61.04390475814614, -15.972388822783927], [-61.05288791098732, -15.972388822783927], [-61.05288791098732, -15.981371975625123], [-61.06187106382852, -15.981371975625123], [-61.06187106382852, -15.99035512846632], [-61.05288791098732, -15.99035512846632], [-61.05288791098732, -15.999338281307516]]]}, 'id': '+13230+10129', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.05288791098732, -16.026287739831105], [-61.04390475814614, -16.026287739831105], [-61.04390475814614, -16.01730458698991], [-61.05288791098732, -16.01730458698991], [-61.05288791098732, -16.026287739831105]]]}, 'id': '+13230+10132', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.05288791098732, -16.170018185290218], [-61.04390475814614, -16.170018185290218], [-61.04390475814614, -16.16103503244902], [-61.05288791098732, -16.16103503244902], [-61.05288791098732, -16.170018185290218]]]}, 'id': '+13230+10148', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.05288791098732, -16.403580159161294], [-61.04390475814614, -16.403580159161294], [-61.04390475814614, -16.394597006320097], [-61.05288791098732, -16.394597006320097], [-61.05288791098732, -16.403580159161294]]]}, 'id': '+13230+10174', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.05288791098732, -16.421546464843686], [-61.04390475814614, -16.421546464843686], [-61.04390475814614, -16.403580159161294], [-61.05288791098732, -16.403580159161294], [-61.05288791098732, -16.394597006320097], [-61.04390475814614, -16.394597006320097], [-61.04390475814614, -16.385613853478915], [-61.05288791098732, -16.385613853478915], [-61.05288791098732, -16.394597006320097], [-61.070854216669716, -16.394597006320097], [-61.070854216669716, -16.403580159161294], [-61.1067868280345, -16.403580159161294], [-61.1067868280345, -16.421546464843686], [-61.097803675193305, -16.421546464843686], [-61.097803675193305, -16.41256331200249], [-61.06187106382852, -16.41256331200249], [-61.06187106382852, -16.403580159161294], [-61.05288791098732, -16.403580159161294], [-61.05288791098732, -16.421546464843686]]]}, 'id': '+13230+10176', 'properties': {'count': 11, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.070854216669716, -16.45747907620847], [-61.04390475814614, -16.45747907620847], [-61.04390475814614, -16.448495923367275], [-61.034921605304945, -16.448495923367275], [-61.034921605304945, -16.43951277052608], [-61.04390475814614, -16.43951277052608], [-61.04390475814614, -16.448495923367275], [-61.05288791098732, -16.448495923367275], [-61.05288791098732, -16.43951277052608], [-61.06187106382852, -16.43951277052608], [-61.06187106382852, -16.421546464843686], [-61.07983736951091, -16.421546464843686], [-61.07983736951091, -16.430529617684883], [-61.070854216669716, -16.430529617684883], [-61.070854216669716, -16.45747907620847]]]}, 'id': '+13230+10180', 'properties': {'count': 9, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.05288791098732, -13.573887014184805], [-61.04390475814614, -13.573887014184805], [-61.04390475814614, -13.564903861343609], [-61.05288791098732, -13.564903861343609], [-61.05288791098732, -13.573887014184805]]]}, 'id': '+13230+9859', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.04390475814614, -15.065090385823211], [-61.034921605304945, -15.065090385823211], [-61.034921605304945, -15.056107232982015], [-61.04390475814614, -15.056107232982015], [-61.04390475814614, -15.065090385823211]]]}, 'id': '+13231+10025', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.04390475814614, -15.40645019378863], [-61.034921605304945, -15.40645019378863], [-61.034921605304945, -15.397467040947433], [-61.04390475814614, -15.397467040947433], [-61.04390475814614, -15.40645019378863]]]}, 'id': '+13231+10063', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.04390475814614, -15.747810001754047], [-61.034921605304945, -15.747810001754047], [-61.034921605304945, -15.73882684891285], [-61.04390475814614, -15.73882684891285], [-61.04390475814614, -15.747810001754047]]]}, 'id': '+13231+10101', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.04390475814614, -16.107136115401858], [-61.034921605304945, -16.107136115401858], [-61.034921605304945, -16.09815296256066], [-61.04390475814614, -16.09815296256066], [-61.04390475814614, -16.107136115401858]]]}, 'id': '+13231+10141', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.04390475814614, -16.12510242108425], [-61.034921605304945, -16.12510242108425], [-61.034921605304945, -16.116119268243054], [-61.04390475814614, -16.116119268243054], [-61.04390475814614, -16.12510242108425]]]}, 'id': '+13231+10143', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.04390475814614, -16.196967643813807], [-61.034921605304945, -16.196967643813807], [-61.034921605304945, -16.18798449097261], [-61.04390475814614, -16.18798449097261], [-61.04390475814614, -16.196967643813807]]]}, 'id': '+13231+10151', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.070854216669716, -16.250866560860985], [-61.034921605304945, -16.250866560860985], [-61.034921605304945, -16.223917102337396], [-61.070854216669716, -16.223917102337396], [-61.070854216669716, -16.250866560860985]]]}, 'id': '+13231+10157', 'properties': {'count': 12, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.04390475814614, -16.295782325066952], [-61.034921605304945, -16.295782325066952], [-61.034921605304945, -16.286799172225756], [-61.04390475814614, -16.286799172225756], [-61.04390475814614, -16.295782325066952]]]}, 'id': '+13231+10162', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.04390475814614, -16.358664394955326], [-61.034921605304945, -16.358664394955326], [-61.034921605304945, -16.34968124211413], [-61.04390475814614, -16.34968124211413], [-61.04390475814614, -16.358664394955326]]]}, 'id': '+13231+10169', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.04390475814614, -16.45747907620847], [-61.034921605304945, -16.45747907620847], [-61.034921605304945, -16.448495923367275], [-61.02593845246375, -16.448495923367275], [-61.02593845246375, -16.43951277052608], [-61.034921605304945, -16.43951277052608], [-61.034921605304945, -16.430529617684883], [-61.04390475814614, -16.430529617684883], [-61.04390475814614, -16.43951277052608], [-61.034921605304945, -16.43951277052608], [-61.034921605304945, -16.448495923367275], [-61.04390475814614, -16.448495923367275], [-61.04390475814614, -16.45747907620847]]]}, 'id': '+13231+10180', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.05288791098732, -14.73271373069899], [-61.034921605304945, -14.73271373069899], [-61.034921605304945, -14.723730577857793], [-61.05288791098732, -14.723730577857793], [-61.05288791098732, -14.73271373069899]]]}, 'id': '+13231+9988', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.04390475814614, -14.786612647746153], [-61.034921605304945, -14.786612647746153], [-61.034921605304945, -14.777629494904971], [-61.04390475814614, -14.777629494904971], [-61.04390475814614, -14.786612647746153]]]}, 'id': '+13231+9994', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.034921605304945, -14.840511564793331], [-61.02593845246375, -14.840511564793331], [-61.02593845246375, -14.822545259110939], [-61.034921605304945, -14.822545259110939], [-61.034921605304945, -14.840511564793331]]]}, 'id': '+13232+10000', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.034921605304945, -14.939326246046477], [-61.02593845246375, -14.939326246046477], [-61.02593845246375, -14.93034309320528], [-61.01695529962255, -14.93034309320528], [-61.01695529962255, -14.921359940364084], [-61.007972146781356, -14.921359940364084], [-61.007972146781356, -14.912376787522888], [-61.01695529962255, -14.912376787522888], [-61.01695529962255, -14.903393634681692], [-61.007972146781356, -14.903393634681692], [-61.007972146781356, -14.89441048184051], [-61.01695529962255, -14.89441048184051], [-61.01695529962255, -14.876444176158117], [-61.02593845246375, -14.876444176158117], [-61.02593845246375, -14.86746102331692], [-61.034921605304945, -14.86746102331692], [-61.034921605304945, -14.858477870475724], [-61.04390475814614, -14.858477870475724], [-61.04390475814614, -14.86746102331692], [-61.05288791098732, -14.86746102331692], [-61.05288791098732, -14.876444176158117], [-61.06187106382852, -14.876444176158117], [-61.06187106382852, -14.89441048184051], [-61.070854216669716, -14.89441048184051], [-61.070854216669716, -14.903393634681692], [-61.06187106382852, -14.903393634681692], [-61.06187106382852, -14.89441048184051], [-61.05288791098732, -14.89441048184051], [-61.05288791098732, -14.885427328999313], [-61.04390475814614, -14.885427328999313], [-61.04390475814614, -14.912376787522888], [-61.02593845246375, -14.912376787522888], [-61.02593845246375, -14.921359940364084], [-61.034921605304945, -14.921359940364084], [-61.034921605304945, -14.939326246046477]]]}, 'id': '+13232+10011', 'properties': {'count': 26, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.04390475814614, -15.532214333565364], [-61.02593845246375, -15.532214333565364], [-61.02593845246375, -15.523231180724167], [-61.007972146781356, -15.523231180724167], [-61.007972146781356, -15.51424802788297], [-60.99898899394016, -15.51424802788297], [-60.99898899394016, -15.505264875041775], [-61.007972146781356, -15.505264875041775], [-61.007972146781356, -15.496281722200578], [-61.01695529962255, -15.496281722200578], [-61.01695529962255, -15.505264875041775], [-61.007972146781356, -15.505264875041775], [-61.007972146781356, -15.51424802788297], [-61.02593845246375, -15.51424802788297], [-61.02593845246375, -15.523231180724167], [-61.04390475814614, -15.523231180724167], [-61.04390475814614, -15.532214333565364]]]}, 'id': '+13232+10077', 'properties': {'count': 6, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.04390475814614, -15.792725765960029], [-61.02593845246375, -15.792725765960029], [-61.02593845246375, -15.783742613118832], [-61.04390475814614, -15.783742613118832], [-61.04390475814614, -15.792725765960029]]]}, 'id': '+13232+10106', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.034921605304945, -16.232900255178592], [-61.02593845246375, -16.232900255178592], [-61.02593845246375, -16.205950796655003], [-61.034921605304945, -16.205950796655003], [-61.034921605304945, -16.196967643813807], [-61.05288791098732, -16.196967643813807], [-61.05288791098732, -16.18798449097261], [-61.06187106382852, -16.18798449097261], [-61.06187106382852, -16.196967643813807], [-61.05288791098732, -16.196967643813807], [-61.05288791098732, -16.205950796655003], [-61.04390475814614, -16.205950796655003], [-61.04390475814614, -16.2149339494962], [-61.06187106382852, -16.2149339494962], [-61.06187106382852, -16.205950796655003], [-61.070854216669716, -16.205950796655003], [-61.070854216669716, -16.196967643813807], [-61.07983736951091, -16.196967643813807], [-61.07983736951091, -16.2149339494962], [-61.06187106382852, -16.2149339494962], [-61.06187106382852, -16.223917102337396], [-61.034921605304945, -16.223917102337396], [-61.034921605304945, -16.232900255178592]]]}, 'id': '+13232+10155', 'properties': {'count': 13, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.034921605304945, -16.250866560860985], [-61.02593845246375, -16.250866560860985], [-61.02593845246375, -16.24188340801979], [-61.034921605304945, -16.24188340801979], [-61.034921605304945, -16.250866560860985]]]}, 'id': '+13232+10157', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.034921605304945, -16.394597006320097], [-61.02593845246375, -16.394597006320097], [-61.02593845246375, -16.385613853478915], [-61.034921605304945, -16.385613853478915], [-61.034921605304945, -16.394597006320097]]]}, 'id': '+13232+10173', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.04390475814614, -16.421546464843686], [-61.02593845246375, -16.421546464843686], [-61.02593845246375, -16.41256331200249], [-61.04390475814614, -16.41256331200249], [-61.04390475814614, -16.421546464843686]]]}, 'id': '+13232+10176', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.034921605304945, -13.493038638614053], [-61.02593845246375, -13.493038638614053], [-61.02593845246375, -13.484055485772856], [-61.034921605304945, -13.484055485772856], [-61.034921605304945, -13.493038638614053]]]}, 'id': '+13232+9850', 'properties': {'count': 1, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.034921605304945, -13.555920708502413], [-61.02593845246375, -13.555920708502413], [-61.02593845246375, -13.546937555661216], [-61.01695529962255, -13.546937555661216], [-61.01695529962255, -13.528971249978824], [-61.034921605304945, -13.528971249978824], [-61.034921605304945, -13.53795440282002], [-61.04390475814614, -13.53795440282002], [-61.04390475814614, -13.546937555661216], [-61.034921605304945, -13.546937555661216], [-61.034921605304945, -13.555920708502413]]]}, 'id': '+13232+9857', 'properties': {'count': 6, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.034921605304945, -14.319488700004015], [-61.02593845246375, -14.319488700004015], [-61.02593845246375, -14.310505547162819], [-61.034921605304945, -14.310505547162819], [-61.034921605304945, -14.319488700004015]]]}, 'id': '+13232+9942', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.034921605304945, -14.714747425016597], [-61.02593845246375, -14.714747425016597], [-61.02593845246375, -14.7057642721754], [-61.034921605304945, -14.7057642721754], [-61.034921605304945, -14.714747425016597]]]}, 'id': '+13232+9986', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.02593845246375, -15.24475344264711], [-61.01695529962255, -15.24475344264711], [-61.01695529962255, -15.235770289805927], [-61.02593845246375, -15.235770289805927], [-61.02593845246375, -15.24475344264711]]]}, 'id': '+13233+10045', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.02593845246375, -15.307635512535484], [-61.01695529962255, -15.307635512535484], [-61.01695529962255, -15.298652359694287], [-61.02593845246375, -15.298652359694287], [-61.02593845246375, -15.307635512535484]]]}, 'id': '+13233+10052', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.02593845246375, -15.837641530165996], [-61.01695529962255, -15.837641530165996], [-61.01695529962255, -15.8286583773248], [-61.007972146781356, -15.8286583773248], [-61.007972146781356, -15.819675224483603], [-61.01695529962255, -15.819675224483603], [-61.01695529962255, -15.810692071642421], [-61.034921605304945, -15.810692071642421], [-61.034921605304945, -15.801708918801225], [-61.04390475814614, -15.801708918801225], [-61.04390475814614, -15.819675224483603], [-61.01695529962255, -15.819675224483603], [-61.01695529962255, -15.8286583773248], [-61.02593845246375, -15.8286583773248], [-61.02593845246375, -15.837641530165996]]]}, 'id': '+13233+10111', 'properties': {'count': 6, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.034921605304945, -15.918489905736763], [-61.01695529962255, -15.918489905736763], [-61.01695529962255, -15.909506752895567], [-61.02593845246375, -15.909506752895567], [-61.02593845246375, -15.891540447213174], [-61.04390475814614, -15.891540447213174], [-61.04390475814614, -15.909506752895567], [-61.034921605304945, -15.909506752895567], [-61.034921605304945, -15.918489905736763]]]}, 'id': '+13233+10120', 'properties': {'count': 6, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.02593845246375, -15.972388822783927], [-61.01695529962255, -15.972388822783927], [-61.01695529962255, -15.96340566994273], [-61.007972146781356, -15.96340566994273], [-61.007972146781356, -15.954422517101534], [-60.99000584109896, -15.954422517101534], [-60.99000584109896, -15.936456211419141], [-61.007972146781356, -15.936456211419141], [-61.007972146781356, -15.954422517101534], [-61.02593845246375, -15.954422517101534], [-61.02593845246375, -15.945439364260338], [-61.034921605304945, -15.945439364260338], [-61.034921605304945, -15.936456211419141], [-61.04390475814614, -15.936456211419141], [-61.04390475814614, -15.92747305857796], [-61.05288791098732, -15.92747305857796], [-61.05288791098732, -15.936456211419141], [-61.07983736951091, -15.936456211419141], [-61.07983736951091, -15.945439364260338], [-61.06187106382852, -15.945439364260338], [-61.06187106382852, -15.954422517101534], [-61.05288791098732, -15.954422517101534], [-61.05288791098732, -15.96340566994273], [-61.02593845246375, -15.96340566994273], [-61.02593845246375, -15.972388822783927]], [[-61.04390475814614, -15.945439364260338], [-61.04390475814614, -15.936456211419141], [-61.05288791098732, -15.936456211419141], [-61.05288791098732, -15.945439364260338], [-61.04390475814614, -15.945439364260338]]]}, 'id': '+13233+10126', 'properties': {'count': 19, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.034921605304945, -16.205950796655003], [-61.01695529962255, -16.205950796655003], [-61.01695529962255, -16.196967643813807], [-61.007972146781356, -16.196967643813807], [-61.007972146781356, -16.18798449097261], [-61.034921605304945, -16.18798449097261], [-61.034921605304945, -16.205950796655003]]]}, 'id': '+13233+10152', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.02593845246375, -16.232900255178592], [-61.01695529962255, -16.232900255178592], [-61.01695529962255, -16.223917102337396], [-61.02593845246375, -16.223917102337396], [-61.02593845246375, -16.232900255178592]]]}, 'id': '+13233+10155', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.02593845246375, -16.286799172225756], [-61.01695529962255, -16.286799172225756], [-61.01695529962255, -16.27781601938456], [-61.02593845246375, -16.27781601938456], [-61.02593845246375, -16.286799172225756]]]}, 'id': '+13233+10161', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.02593845246375, -16.295782325066952], [-61.01695529962255, -16.295782325066952], [-61.01695529962255, -16.286799172225756], [-61.007972146781356, -16.286799172225756], [-61.007972146781356, -16.27781601938456], [-61.01695529962255, -16.27781601938456], [-61.01695529962255, -16.286799172225756], [-61.02593845246375, -16.286799172225756], [-61.02593845246375, -16.295782325066952]]]}, 'id': '+13233+10162', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.02593845246375, -16.358664394955326], [-61.01695529962255, -16.358664394955326], [-61.01695529962255, -16.34968124211413], [-61.02593845246375, -16.34968124211413], [-61.02593845246375, -16.358664394955326]]]}, 'id': '+13233+10169', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.02593845246375, -16.48442853473206], [-61.01695529962255, -16.48442853473206], [-61.01695529962255, -16.475445381890864], [-61.007972146781356, -16.475445381890864], [-61.007972146781356, -16.466462229049668], [-61.02593845246375, -16.466462229049668], [-61.02593845246375, -16.45747907620847], [-61.034921605304945, -16.45747907620847], [-61.034921605304945, -16.475445381890864], [-61.04390475814614, -16.475445381890864], [-61.04390475814614, -16.48442853473206], [-61.034921605304945, -16.48442853473206], [-61.034921605304945, -16.475445381890864], [-61.02593845246375, -16.475445381890864], [-61.02593845246375, -16.48442853473206]]]}, 'id': '+13233+10183', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.02593845246375, -13.573887014184805], [-61.01695529962255, -13.573887014184805], [-61.01695529962255, -13.555920708502413], [-61.034921605304945, -13.555920708502413], [-61.034921605304945, -13.564903861343609], [-61.02593845246375, -13.564903861343609], [-61.02593845246375, -13.573887014184805]]]}, 'id': '+13233+9859', 'properties': {'count': 3, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.02593845246375, -13.771516376691096], [-61.01695529962255, -13.771516376691096], [-61.01695529962255, -13.7625332238499], [-61.02593845246375, -13.7625332238499], [-61.02593845246375, -13.771516376691096]]]}, 'id': '+13233+9881', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.02593845246375, -14.777629494904971], [-61.01695529962255, -14.777629494904971], [-61.01695529962255, -14.768646342063775], [-60.99000584109896, -14.768646342063775], [-60.99000584109896, -14.750680036381382], [-60.963056382575374, -14.750680036381382], [-60.963056382575374, -14.741696883540186], [-61.007972146781356, -14.741696883540186], [-61.007972146781356, -14.759663189222579], [-61.01695529962255, -14.759663189222579], [-61.01695529962255, -14.741696883540186], [-61.034921605304945, -14.741696883540186], [-61.034921605304945, -14.73271373069899], [-61.05288791098732, -14.73271373069899], [-61.05288791098732, -14.723730577857793], [-61.04390475814614, -14.723730577857793], [-61.04390475814614, -14.714747425016597], [-61.070854216669716, -14.714747425016597], [-61.070854216669716, -14.7057642721754], [-61.01695529962255, -14.7057642721754], [-61.01695529962255, -14.696781119334204], [-61.007972146781356, -14.696781119334204], [-61.007972146781356, -14.7057642721754], [-60.97203953541657, -14.7057642721754], [-60.97203953541657, -14.696781119334204], [-60.95407322973418, -14.696781119334204], [-60.95407322973418, -14.687797966493008], [-60.94509007689298, -14.687797966493008], [-60.94509007689298, -14.66983166081063], [-60.95407322973418, -14.66983166081063], [-60.95407322973418, -14.660848507969433], [-60.97203953541657, -14.660848507969433], [-60.97203953541657, -14.678814813651812], [-60.99000584109896, -14.678814813651812], [-60.99000584109896, -14.687797966493008], [-60.98102268825777, -14.687797966493008], [-60.98102268825777, -14.696781119334204], [-60.99898899394016, -14.696781119334204], [-60.99898899394016, -14.687797966493008], [-61.007972146781356, -14.687797966493008], [-61.007972146781356, -14.66983166081063], [-61.06187106382852, -14.66983166081063], [-61.06187106382852, -14.678814813651812], [-61.070854216669716, -14.678814813651812], [-61.070854216669716, -14.687797966493008], [-61.08882052235211, -14.687797966493008], [-61.08882052235211, -14.678814813651812], [-61.07983736951091, -14.678814813651812], [-61.07983736951091, -14.651865355128237], [-61.097803675193305, -14.651865355128237], [-61.097803675193305, -14.64288220228704], [-61.1157699808757, -14.64288220228704], [-61.1157699808757, -14.606949590922255], [-61.097803675193305, -14.606949590922255], [-61.097803675193305, -14.597966438081059], [-61.07983736951091, -14.597966438081059], [-61.07983736951091, -14.588983285239863], [-61.097803675193305, -14.588983285239863], [-61.097803675193305, -14.580000132398666], [-61.142719439399286, -14.580000132398666], [-61.142719439399286, -14.57101697955747], [-61.13373628655809, -14.57101697955747], [-61.13373628655809, -14.562033826716274], [-61.160685745081665, -14.562033826716274], [-61.160685745081665, -14.588983285239863], [-61.16966889792286, -14.588983285239863], [-61.16966889792286, -14.597966438081059], [-61.17865205076406, -14.597966438081059], [-61.17865205076406, -14.606949590922255], [-61.16966889792286, -14.606949590922255], [-61.16966889792286, -14.624915896604648], [-61.17865205076406, -14.624915896604648], [-61.17865205076406, -14.633899049445844], [-61.16966889792286, -14.633899049445844], [-61.16966889792286, -14.624915896604648], [-61.160685745081665, -14.624915896604648], [-61.160685745081665, -14.651865355128237], [-61.15170259224048, -14.651865355128237], [-61.15170259224048, -14.660848507969433], [-61.13373628655809, -14.660848507969433], [-61.13373628655809, -14.66983166081063], [-61.1157699808757, -14.66983166081063], [-61.1157699808757, -14.7057642721754], [-61.1067868280345, -14.7057642721754], [-61.1067868280345, -14.714747425016597], [-61.097803675193305, -14.714747425016597], [-61.097803675193305, -14.723730577857793], [-61.1067868280345, -14.723730577857793], [-61.1067868280345, -14.73271373069899], [-61.097803675193305, -14.73271373069899], [-61.097803675193305, -14.741696883540186], [-61.08882052235211, -14.741696883540186], [-61.08882052235211, -14.73271373069899], [-61.097803675193305, -14.73271373069899], [-61.097803675193305, -14.723730577857793], [-61.07983736951091, -14.723730577857793], [-61.07983736951091, -14.714747425016597], [-61.070854216669716, -14.714747425016597], [-61.070854216669716, -14.73271373069899], [-61.05288791098732, -14.73271373069899], [-61.05288791098732, -14.741696883540186], [-61.06187106382852, -14.741696883540186], [-61.06187106382852, -14.750680036381382], [-61.070854216669716, -14.750680036381382], [-61.070854216669716, -14.741696883540186], [-61.07983736951091, -14.741696883540186], [-61.07983736951091, -14.750680036381382], [-61.070854216669716, -14.750680036381382], [-61.070854216669716, -14.759663189222579], [-61.06187106382852, -14.759663189222579], [-61.06187106382852, -14.750680036381382], [-61.04390475814614, -14.750680036381382], [-61.04390475814614, -14.768646342063775], [-61.02593845246375, -14.768646342063775], [-61.02593845246375, -14.777629494904971]], [[-61.160685745081665, -14.606949590922255], [-61.160685745081665, -14.597966438081059], [-61.16966889792286, -14.597966438081059], [-61.16966889792286, -14.606949590922255], [-61.160685745081665, -14.606949590922255]], [[-61.13373628655809, -14.615932743763452], [-61.13373628655809, -14.606949590922255], [-61.142719439399286, -14.606949590922255], [-61.142719439399286, -14.615932743763452], [-61.13373628655809, -14.615932743763452]], [[-61.08882052235211, -14.678814813651812], [-61.08882052235211, -14.66983166081063], [-61.097803675193305, -14.66983166081063], [-61.097803675193305, -14.678814813651812], [-61.08882052235211, -14.678814813651812]], [[-61.097803675193305, -14.7057642721754], [-61.097803675193305, -14.696781119334204], [-61.1067868280345, -14.696781119334204], [-61.1067868280345, -14.7057642721754], [-61.097803675193305, -14.7057642721754]], [[-61.07983736951091, -14.714747425016597], [-61.07983736951091, -14.7057642721754], [-61.097803675193305, -14.7057642721754], [-61.097803675193305, -14.714747425016597], [-61.07983736951091, -14.714747425016597]]]}, 'id': '+13233+9993', 'properties': {'count': 169, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -14.858477870475724], [-61.007972146781356, -14.858477870475724], [-61.007972146781356, -14.831528411952135], [-61.01695529962255, -14.831528411952135], [-61.01695529962255, -14.858477870475724]]]}, 'id': '+13234+10002', 'properties': {'count': 3, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -14.86746102331692], [-61.007972146781356, -14.86746102331692], [-61.007972146781356, -14.858477870475724], [-61.01695529962255, -14.858477870475724], [-61.01695529962255, -14.86746102331692]]]}, 'id': '+13234+10003', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -14.939326246046477], [-61.007972146781356, -14.939326246046477], [-61.007972146781356, -14.93034309320528], [-60.99000584109896, -14.93034309320528], [-60.99000584109896, -14.89441048184051], [-60.98102268825777, -14.89441048184051], [-60.98102268825777, -14.903393634681692], [-60.97203953541657, -14.903393634681692], [-60.97203953541657, -14.89441048184051], [-60.963056382575374, -14.89441048184051], [-60.963056382575374, -14.831528411952135], [-60.99000584109896, -14.831528411952135], [-60.99000584109896, -14.840511564793331], [-60.97203953541657, -14.840511564793331], [-60.97203953541657, -14.849494717634528], [-60.99000584109896, -14.849494717634528], [-60.99000584109896, -14.858477870475724], [-60.98102268825777, -14.858477870475724], [-60.98102268825777, -14.86746102331692], [-60.99000584109896, -14.86746102331692], [-60.99000584109896, -14.885427328999313], [-60.99898899394016, -14.885427328999313], [-60.99898899394016, -14.89441048184051], [-61.007972146781356, -14.89441048184051], [-61.007972146781356, -14.903393634681692], [-61.01695529962255, -14.903393634681692], [-61.01695529962255, -14.912376787522888], [-61.007972146781356, -14.912376787522888], [-61.007972146781356, -14.921359940364084], [-61.01695529962255, -14.921359940364084], [-61.01695529962255, -14.939326246046477]]]}, 'id': '+13234+10011', 'properties': {'count': 31, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -15.011191468776047], [-61.007972146781356, -15.011191468776047], [-61.007972146781356, -15.002208315934851], [-61.01695529962255, -15.002208315934851], [-61.01695529962255, -15.011191468776047]]]}, 'id': '+13234+10019', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -15.343568123900269], [-61.007972146781356, -15.343568123900269], [-61.007972146781356, -15.334584971059073], [-60.98102268825777, -15.334584971059073], [-60.98102268825777, -15.325601818217876], [-60.97203953541657, -15.325601818217876], [-60.97203953541657, -15.307635512535484], [-60.98102268825777, -15.307635512535484], [-60.98102268825777, -15.31661866537668], [-60.99000584109896, -15.31661866537668], [-60.99000584109896, -15.325601818217876], [-61.007972146781356, -15.325601818217876], [-61.007972146781356, -15.334584971059073], [-61.01695529962255, -15.334584971059073], [-61.01695529962255, -15.343568123900269]]]}, 'id': '+13234+10056', 'properties': {'count': 7, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -15.783742613118832], [-61.007972146781356, -15.783742613118832], [-61.007972146781356, -15.76577630743644], [-61.01695529962255, -15.76577630743644], [-61.01695529962255, -15.756793154595243], [-61.02593845246375, -15.756793154595243], [-61.02593845246375, -15.76577630743644], [-61.034921605304945, -15.76577630743644], [-61.034921605304945, -15.774759460277636], [-61.01695529962255, -15.774759460277636], [-61.01695529962255, -15.783742613118832]]]}, 'id': '+13234+10105', 'properties': {'count': 5, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -15.864590988689585], [-61.007972146781356, -15.864590988689585], [-61.007972146781356, -15.855607835848389], [-61.01695529962255, -15.855607835848389], [-61.01695529962255, -15.864590988689585]]]}, 'id': '+13234+10114', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.02593845246375, -15.936456211419141], [-61.007972146781356, -15.936456211419141], [-61.007972146781356, -15.92747305857796], [-61.02593845246375, -15.92747305857796], [-61.02593845246375, -15.936456211419141]]]}, 'id': '+13234+10122', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.02593845246375, -16.170018185290218], [-61.007972146781356, -16.170018185290218], [-61.007972146781356, -16.143068726766643], [-61.01695529962255, -16.143068726766643], [-61.01695529962255, -16.16103503244902], [-61.02593845246375, -16.16103503244902], [-61.02593845246375, -16.170018185290218]]]}, 'id': '+13234+10148', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -16.18798449097261], [-61.007972146781356, -16.18798449097261], [-61.007972146781356, -16.179001338131414], [-61.01695529962255, -16.179001338131414], [-61.01695529962255, -16.170018185290218], [-61.02593845246375, -16.170018185290218], [-61.02593845246375, -16.16103503244902], [-61.034921605304945, -16.16103503244902], [-61.034921605304945, -16.170018185290218], [-61.02593845246375, -16.170018185290218], [-61.02593845246375, -16.179001338131414], [-61.01695529962255, -16.179001338131414], [-61.01695529962255, -16.18798449097261]]]}, 'id': '+13234+10150', 'properties': {'count': 3, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -16.313748630749345], [-61.007972146781356, -16.313748630749345], [-61.007972146781356, -16.30476547790815], [-61.01695529962255, -16.30476547790815], [-61.01695529962255, -16.313748630749345]]]}, 'id': '+13234+10164', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.02593845246375, -16.34968124211413], [-61.007972146781356, -16.34968124211413], [-61.007972146781356, -16.331714936431737], [-61.01695529962255, -16.331714936431737], [-61.01695529962255, -16.340698089272934], [-61.02593845246375, -16.340698089272934], [-61.02593845246375, -16.34968124211413]]]}, 'id': '+13234+10168', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -16.367647547796523], [-61.007972146781356, -16.367647547796523], [-61.007972146781356, -16.358664394955326], [-61.01695529962255, -16.358664394955326], [-61.01695529962255, -16.367647547796523]]]}, 'id': '+13234+10170', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -16.430529617684883], [-61.007972146781356, -16.430529617684883], [-61.007972146781356, -16.41256331200249], [-61.01695529962255, -16.41256331200249], [-61.01695529962255, -16.403580159161294], [-61.02593845246375, -16.403580159161294], [-61.02593845246375, -16.394597006320097], [-61.034921605304945, -16.394597006320097], [-61.034921605304945, -16.41256331200249], [-61.02593845246375, -16.41256331200249], [-61.02593845246375, -16.421546464843686], [-61.01695529962255, -16.421546464843686], [-61.01695529962255, -16.430529617684883]]]}, 'id': '+13234+10177', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -16.466462229049668], [-61.007972146781356, -16.466462229049668], [-61.007972146781356, -16.45747907620847], [-60.99898899394016, -16.45747907620847], [-60.99898899394016, -16.448495923367275], [-61.01695529962255, -16.448495923367275], [-61.01695529962255, -16.466462229049668]]]}, 'id': '+13234+10181', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -13.502021791455249], [-61.007972146781356, -13.502021791455249], [-61.007972146781356, -13.493038638614053], [-61.01695529962255, -13.493038638614053], [-61.01695529962255, -13.502021791455249]]]}, 'id': '+13234+9851', 'properties': {'count': 1, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -13.511004944296445], [-61.007972146781356, -13.511004944296445], [-61.007972146781356, -13.502021791455249], [-61.01695529962255, -13.502021791455249], [-61.01695529962255, -13.511004944296445]]]}, 'id': '+13234+9852', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.034921605304945, -13.528971249978824], [-61.007972146781356, -13.528971249978824], [-61.007972146781356, -13.519988097137642], [-61.034921605304945, -13.519988097137642], [-61.034921605304945, -13.528971249978824]]]}, 'id': '+13234+9854', 'properties': {'count': 3, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -13.582870167026002], [-61.007972146781356, -13.582870167026002], [-61.007972146781356, -13.573887014184805], [-61.01695529962255, -13.573887014184805], [-61.01695529962255, -13.582870167026002]]]}, 'id': '+13234+9860', 'properties': {'count': 1, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.02593845246375, -13.60981962554959], [-61.007972146781356, -13.60981962554959], [-61.007972146781356, -13.600836472708394], [-60.97203953541657, -13.600836472708394], [-60.97203953541657, -13.591853319867198], [-60.98102268825777, -13.591853319867198], [-60.98102268825777, -13.582870167026002], [-60.99898899394016, -13.582870167026002], [-60.99898899394016, -13.573887014184805], [-60.99000584109896, -13.573887014184805], [-60.99000584109896, -13.555920708502413], [-61.01695529962255, -13.555920708502413], [-61.01695529962255, -13.546937555661216], [-61.007972146781356, -13.546937555661216], [-61.007972146781356, -13.53795440282002], [-61.01695529962255, -13.53795440282002], [-61.01695529962255, -13.546937555661216], [-61.02593845246375, -13.546937555661216], [-61.02593845246375, -13.555920708502413], [-61.01695529962255, -13.555920708502413], [-61.01695529962255, -13.573887014184805], [-61.007972146781356, -13.573887014184805], [-61.007972146781356, -13.582870167026002], [-61.034921605304945, -13.582870167026002], [-61.034921605304945, -13.591853319867198], [-61.04390475814614, -13.591853319867198], [-61.04390475814614, -13.582870167026002], [-61.05288791098732, -13.582870167026002], [-61.05288791098732, -13.591853319867198], [-61.04390475814614, -13.591853319867198], [-61.04390475814614, -13.600836472708394], [-61.02593845246375, -13.600836472708394], [-61.02593845246375, -13.60981962554959]], [[-60.99898899394016, -13.573887014184805], [-60.99898899394016, -13.564903861343609], [-61.007972146781356, -13.564903861343609], [-61.007972146781356, -13.573887014184805], [-60.99898899394016, -13.573887014184805]], [[-61.01695529962255, -13.600836472708394], [-61.01695529962255, -13.591853319867198], [-61.02593845246375, -13.591853319867198], [-61.02593845246375, -13.600836472708394], [-61.01695529962255, -13.600836472708394]]]}, 'id': '+13234+9863', 'properties': {'count': 24, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -14.822545259110939], [-61.007972146781356, -14.822545259110939], [-61.007972146781356, -14.813562106269742], [-61.01695529962255, -14.813562106269742], [-61.01695529962255, -14.822545259110939]]]}, 'id': '+13234+9998', 'properties': {'count': 1, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.007972146781356, -14.885427328999313], [-60.99898899394016, -14.885427328999313], [-60.99898899394016, -14.876444176158117], [-61.007972146781356, -14.876444176158117], [-61.007972146781356, -14.885427328999313]]]}, 'id': '+13235+10005', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -14.89441048184051], [-60.99898899394016, -14.89441048184051], [-60.99898899394016, -14.885427328999313], [-60.99000584109896, -14.885427328999313], [-60.99000584109896, -14.876444176158117], [-60.99898899394016, -14.876444176158117], [-60.99898899394016, -14.858477870475724], [-60.99000584109896, -14.858477870475724], [-60.99000584109896, -14.86746102331692], [-60.98102268825777, -14.86746102331692], [-60.98102268825777, -14.858477870475724], [-60.99000584109896, -14.858477870475724], [-60.99000584109896, -14.849494717634528], [-60.99898899394016, -14.849494717634528], [-60.99898899394016, -14.858477870475724], [-61.007972146781356, -14.858477870475724], [-61.007972146781356, -14.876444176158117], [-61.01695529962255, -14.876444176158117], [-61.01695529962255, -14.89441048184051]], [[-60.99898899394016, -14.885427328999313], [-60.99898899394016, -14.876444176158117], [-61.007972146781356, -14.876444176158117], [-61.007972146781356, -14.885427328999313], [-60.99898899394016, -14.885427328999313]]]}, 'id': '+13235+10006', 'properties': {'count': 8, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.04390475814614, -14.948309398887673], [-60.99898899394016, -14.948309398887673], [-60.99898899394016, -14.93034309320528], [-61.007972146781356, -14.93034309320528], [-61.007972146781356, -14.939326246046477], [-61.01695529962255, -14.939326246046477], [-61.01695529962255, -14.93034309320528], [-61.02593845246375, -14.93034309320528], [-61.02593845246375, -14.939326246046477], [-61.034921605304945, -14.939326246046477], [-61.034921605304945, -14.921359940364084], [-61.02593845246375, -14.921359940364084], [-61.02593845246375, -14.912376787522888], [-61.04390475814614, -14.912376787522888], [-61.04390475814614, -14.89441048184051], [-61.06187106382852, -14.89441048184051], [-61.06187106382852, -14.903393634681692], [-61.05288791098732, -14.903393634681692], [-61.05288791098732, -14.921359940364084], [-61.04390475814614, -14.921359940364084], [-61.04390475814614, -14.948309398887673]]]}, 'id': '+13235+10012', 'properties': {'count': 15, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.007972146781356, -14.966275704570066], [-60.99898899394016, -14.966275704570066], [-60.99898899394016, -14.95729255172887], [-61.007972146781356, -14.95729255172887], [-61.007972146781356, -14.966275704570066]]]}, 'id': '+13235+10014', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.007972146781356, -15.226787136964731], [-60.99898899394016, -15.226787136964731], [-60.99898899394016, -15.217803984123535], [-61.007972146781356, -15.217803984123535], [-61.007972146781356, -15.226787136964731]]]}, 'id': '+13235+10043', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.007972146781356, -15.271702901170698], [-60.99898899394016, -15.271702901170698], [-60.99898899394016, -15.262719748329502], [-61.007972146781356, -15.262719748329502], [-61.007972146781356, -15.271702901170698]]]}, 'id': '+13235+10048', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.007972146781356, -15.747810001754047], [-60.99898899394016, -15.747810001754047], [-60.99898899394016, -15.729843696071654], [-60.99000584109896, -15.729843696071654], [-60.99000584109896, -15.720860543230458], [-61.02593845246375, -15.720860543230458], [-61.02593845246375, -15.729843696071654], [-61.01695529962255, -15.729843696071654], [-61.01695529962255, -15.73882684891285], [-61.007972146781356, -15.73882684891285], [-61.007972146781356, -15.747810001754047]]]}, 'id': '+13235+10101', 'properties': {'count': 7, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.007972146781356, -15.846624683007192], [-60.99898899394016, -15.846624683007192], [-60.99898899394016, -15.837641530165996], [-60.99000584109896, -15.837641530165996], [-60.99000584109896, -15.8286583773248], [-60.98102268825777, -15.8286583773248], [-60.98102268825777, -15.819675224483603], [-61.007972146781356, -15.819675224483603], [-61.007972146781356, -15.801708918801225], [-61.02593845246375, -15.801708918801225], [-61.02593845246375, -15.810692071642421], [-61.01695529962255, -15.810692071642421], [-61.01695529962255, -15.819675224483603], [-61.007972146781356, -15.819675224483603], [-61.007972146781356, -15.846624683007192]]]}, 'id': '+13235+10112', 'properties': {'count': 9, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.007972146781356, -15.855607835848389], [-60.99898899394016, -15.855607835848389], [-60.99898899394016, -15.846624683007192], [-61.007972146781356, -15.846624683007192], [-61.007972146781356, -15.855607835848389]]]}, 'id': '+13235+10113', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.007972146781356, -15.882557294371978], [-60.99898899394016, -15.882557294371978], [-60.99898899394016, -15.873574141530781], [-61.007972146781356, -15.873574141530781], [-61.007972146781356, -15.882557294371978]]]}, 'id': '+13235+10116', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -16.223917102337396], [-60.99898899394016, -16.223917102337396], [-60.99898899394016, -16.2149339494962], [-61.007972146781356, -16.2149339494962], [-61.007972146781356, -16.196967643813807], [-61.01695529962255, -16.196967643813807], [-61.01695529962255, -16.223917102337396]]]}, 'id': '+13235+10154', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.01695529962255, -16.24188340801979], [-60.99898899394016, -16.24188340801979], [-60.99898899394016, -16.232900255178592], [-61.01695529962255, -16.232900255178592], [-61.01695529962255, -16.24188340801979]]]}, 'id': '+13235+10156', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.007972146781356, -16.313748630749345], [-60.99898899394016, -16.313748630749345], [-60.99898899394016, -16.30476547790815], [-61.007972146781356, -16.30476547790815], [-61.007972146781356, -16.313748630749345]]]}, 'id': '+13235+10164', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.007972146781356, -16.340698089272934], [-60.99898899394016, -16.340698089272934], [-60.99898899394016, -16.32273178359054], [-61.007972146781356, -16.32273178359054], [-61.007972146781356, -16.313748630749345], [-61.02593845246375, -16.313748630749345], [-61.02593845246375, -16.32273178359054], [-61.034921605304945, -16.32273178359054], [-61.034921605304945, -16.331714936431737], [-61.02593845246375, -16.331714936431737], [-61.02593845246375, -16.32273178359054], [-61.01695529962255, -16.32273178359054], [-61.01695529962255, -16.331714936431737], [-61.007972146781356, -16.331714936431737], [-61.007972146781356, -16.340698089272934]]]}, 'id': '+13235+10167', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.007972146781356, -16.385613853478915], [-60.99898899394016, -16.385613853478915], [-60.99898899394016, -16.37663070063772], [-61.007972146781356, -16.37663070063772], [-61.007972146781356, -16.367647547796523], [-61.01695529962255, -16.367647547796523], [-61.01695529962255, -16.358664394955326], [-61.02593845246375, -16.358664394955326], [-61.02593845246375, -16.37663070063772], [-61.034921605304945, -16.37663070063772], [-61.034921605304945, -16.385613853478915], [-61.02593845246375, -16.385613853478915], [-61.02593845246375, -16.37663070063772], [-61.007972146781356, -16.37663070063772], [-61.007972146781356, -16.385613853478915]]]}, 'id': '+13235+10172', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.007972146781356, -16.448495923367275], [-60.99898899394016, -16.448495923367275], [-60.99898899394016, -16.43951277052608], [-61.007972146781356, -16.43951277052608], [-61.007972146781356, -16.448495923367275]]]}, 'id': '+13235+10179', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.007972146781356, -13.493038638614053], [-60.99898899394016, -13.493038638614053], [-60.99898899394016, -13.484055485772856], [-61.007972146781356, -13.484055485772856], [-61.007972146781356, -13.493038638614053]]]}, 'id': '+13235+9850', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.007972146781356, -14.292539241480426], [-60.99898899394016, -14.292539241480426], [-60.99898899394016, -14.28355608863923], [-61.007972146781356, -14.28355608863923], [-61.007972146781356, -14.292539241480426]]]}, 'id': '+13235+9939', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.007972146781356, -14.73271373069899], [-60.99898899394016, -14.73271373069899], [-60.99898899394016, -14.723730577857793], [-61.007972146781356, -14.723730577857793], [-61.007972146781356, -14.73271373069899]]]}, 'id': '+13235+9988', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.007972146781356, -14.813562106269742], [-60.99898899394016, -14.813562106269742], [-60.99898899394016, -14.79559580058735], [-61.01695529962255, -14.79559580058735], [-61.01695529962255, -14.804578953428546], [-61.007972146781356, -14.804578953428546], [-61.007972146781356, -14.813562106269742]]]}, 'id': '+13235+9997', 'properties': {'count': 3, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.007972146781356, -14.975258857411262], [-60.99000584109896, -14.975258857411262], [-60.99000584109896, -14.966275704570066], [-60.98102268825777, -14.966275704570066], [-60.98102268825777, -14.95729255172887], [-60.97203953541657, -14.95729255172887], [-60.97203953541657, -14.966275704570066], [-60.95407322973418, -14.966275704570066], [-60.95407322973418, -14.95729255172887], [-60.963056382575374, -14.95729255172887], [-60.963056382575374, -14.948309398887673], [-60.95407322973418, -14.948309398887673], [-60.95407322973418, -14.939326246046477], [-60.94509007689298, -14.939326246046477], [-60.94509007689298, -14.93034309320528], [-60.9271237712106, -14.93034309320528], [-60.9271237712106, -14.921359940364084], [-60.94509007689298, -14.921359940364084], [-60.94509007689298, -14.903393634681692], [-60.936106924051785, -14.903393634681692], [-60.936106924051785, -14.89441048184051], [-60.94509007689298, -14.89441048184051], [-60.94509007689298, -14.903393634681692], [-60.95407322973418, -14.903393634681692], [-60.95407322973418, -14.885427328999313], [-60.963056382575374, -14.885427328999313], [-60.963056382575374, -14.912376787522888], [-60.95407322973418, -14.912376787522888], [-60.95407322973418, -14.921359940364084], [-60.94509007689298, -14.921359940364084], [-60.94509007689298, -14.93034309320528], [-60.95407322973418, -14.93034309320528], [-60.95407322973418, -14.939326246046477], [-60.963056382575374, -14.939326246046477], [-60.963056382575374, -14.921359940364084], [-60.97203953541657, -14.921359940364084], [-60.97203953541657, -14.93034309320528], [-60.98102268825777, -14.93034309320528], [-60.98102268825777, -14.921359940364084], [-60.99000584109896, -14.921359940364084], [-60.99000584109896, -14.93034309320528], [-60.99898899394016, -14.93034309320528], [-60.99898899394016, -14.948309398887673], [-61.01695529962255, -14.948309398887673], [-61.01695529962255, -14.95729255172887], [-60.99898899394016, -14.95729255172887], [-60.99898899394016, -14.966275704570066], [-61.007972146781356, -14.966275704570066], [-61.007972146781356, -14.975258857411262]], [[-60.98102268825777, -14.939326246046477], [-60.98102268825777, -14.93034309320528], [-60.99000584109896, -14.93034309320528], [-60.99000584109896, -14.939326246046477], [-60.98102268825777, -14.939326246046477]], [[-60.98102268825777, -14.95729255172887], [-60.98102268825777, -14.948309398887673], [-60.99000584109896, -14.948309398887673], [-60.99000584109896, -14.95729255172887], [-60.98102268825777, -14.95729255172887]]]}, 'id': '+13236+10015', 'properties': {'count': 30, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99898899394016, -15.253736595488306], [-60.99000584109896, -15.253736595488306], [-60.99000584109896, -15.24475344264711], [-60.99898899394016, -15.24475344264711], [-60.99898899394016, -15.253736595488306]]]}, 'id': '+13236+10046', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99898899394016, -15.631029014818509], [-60.99000584109896, -15.631029014818509], [-60.99000584109896, -15.60407955629492], [-61.007972146781356, -15.60407955629492], [-61.007972146781356, -15.613062709136116], [-60.99898899394016, -15.613062709136116], [-60.99898899394016, -15.631029014818509]]]}, 'id': '+13236+10088', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99898899394016, -15.73882684891285], [-60.99000584109896, -15.73882684891285], [-60.99000584109896, -15.729843696071654], [-60.99898899394016, -15.729843696071654], [-60.99898899394016, -15.73882684891285]]]}, 'id': '+13236+10100', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99898899394016, -16.107136115401858], [-60.99000584109896, -16.107136115401858], [-60.99000584109896, -16.09815296256066], [-60.99898899394016, -16.09815296256066], [-60.99898899394016, -16.089169809719465], [-61.007972146781356, -16.089169809719465], [-61.007972146781356, -16.09815296256066], [-60.99898899394016, -16.09815296256066], [-60.99898899394016, -16.107136115401858]]]}, 'id': '+13236+10141', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99898899394016, -16.205950796655003], [-60.99000584109896, -16.205950796655003], [-60.99000584109896, -16.196967643813807], [-60.99898899394016, -16.196967643813807], [-60.99898899394016, -16.205950796655003]]]}, 'id': '+13236+10152', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99898899394016, -16.24188340801979], [-60.99000584109896, -16.24188340801979], [-60.99000584109896, -16.232900255178592], [-60.97203953541657, -16.232900255178592], [-60.97203953541657, -16.223917102337396], [-60.99000584109896, -16.223917102337396], [-60.99000584109896, -16.232900255178592], [-60.99898899394016, -16.232900255178592], [-60.99898899394016, -16.24188340801979]]]}, 'id': '+13236+10156', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99898899394016, -16.268832866543377], [-60.99000584109896, -16.268832866543377], [-60.99000584109896, -16.25984971370218], [-60.99898899394016, -16.25984971370218], [-60.99898899394016, -16.250866560860985], [-60.98102268825777, -16.250866560860985], [-60.98102268825777, -16.24188340801979], [-61.007972146781356, -16.24188340801979], [-61.007972146781356, -16.25984971370218], [-60.99898899394016, -16.25984971370218], [-60.99898899394016, -16.268832866543377]]]}, 'id': '+13236+10159', 'properties': {'count': 5, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99898899394016, -13.502021791455249], [-60.99000584109896, -13.502021791455249], [-60.99000584109896, -13.493038638614053], [-60.99898899394016, -13.493038638614053], [-60.99898899394016, -13.502021791455249]]]}, 'id': '+13236+9851', 'properties': {'count': 1, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99898899394016, -13.555920708502413], [-60.99000584109896, -13.555920708502413], [-60.99000584109896, -13.546937555661216], [-60.99898899394016, -13.546937555661216], [-60.99898899394016, -13.555920708502413]]]}, 'id': '+13236+9857', 'properties': {'count': 1, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99898899394016, -13.582870167026002], [-60.99000584109896, -13.582870167026002], [-60.99000584109896, -13.573887014184805], [-60.99898899394016, -13.573887014184805], [-60.99898899394016, -13.582870167026002]]]}, 'id': '+13236+9860', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99898899394016, -14.562033826716274], [-60.99000584109896, -14.562033826716274], [-60.99000584109896, -14.553050673875092], [-60.99898899394016, -14.553050673875092], [-60.99898899394016, -14.562033826716274]]]}, 'id': '+13236+9969', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-61.02593845246375, -14.741696883540186], [-60.99000584109896, -14.741696883540186], [-60.99000584109896, -14.73271373069899], [-61.02593845246375, -14.73271373069899], [-61.02593845246375, -14.741696883540186]]]}, 'id': '+13236+9989', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99898899394016, -14.804578953428546], [-60.99000584109896, -14.804578953428546], [-60.99000584109896, -14.79559580058735], [-60.99898899394016, -14.79559580058735], [-60.99898899394016, -14.804578953428546]]]}, 'id': '+13236+9996', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99898899394016, -14.831528411952135], [-60.99000584109896, -14.831528411952135], [-60.99000584109896, -14.822545259110939], [-60.99898899394016, -14.822545259110939], [-60.99898899394016, -14.831528411952135]]]}, 'id': '+13236+9999', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -14.903393634681692], [-60.98102268825777, -14.903393634681692], [-60.98102268825777, -14.89441048184051], [-60.99000584109896, -14.89441048184051], [-60.99000584109896, -14.903393634681692]]]}, 'id': '+13237+10007', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -14.912376787522888], [-60.98102268825777, -14.912376787522888], [-60.98102268825777, -14.903393634681692], [-60.99000584109896, -14.903393634681692], [-60.99000584109896, -14.912376787522888]]]}, 'id': '+13237+10008', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -14.993225163093655], [-60.98102268825777, -14.993225163093655], [-60.98102268825777, -14.984242010252458], [-60.99000584109896, -14.984242010252458], [-60.99000584109896, -14.993225163093655]]]}, 'id': '+13237+10017', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -15.226787136964731], [-60.98102268825777, -15.226787136964731], [-60.98102268825777, -15.217803984123535], [-60.99000584109896, -15.217803984123535], [-60.99000584109896, -15.226787136964731]]]}, 'id': '+13237+10043', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -15.280686054011895], [-60.98102268825777, -15.280686054011895], [-60.98102268825777, -15.271702901170698], [-60.97203953541657, -15.271702901170698], [-60.97203953541657, -15.262719748329502], [-60.98102268825777, -15.262719748329502], [-60.98102268825777, -15.271702901170698], [-60.99000584109896, -15.271702901170698], [-60.99000584109896, -15.280686054011895]]]}, 'id': '+13237+10049', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -15.289669206853091], [-60.98102268825777, -15.289669206853091], [-60.98102268825777, -15.280686054011895], [-60.99000584109896, -15.280686054011895], [-60.99000584109896, -15.289669206853091]]]}, 'id': '+13237+10050', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -15.496281722200578], [-60.98102268825777, -15.496281722200578], [-60.98102268825777, -15.487298569359382], [-60.99000584109896, -15.487298569359382], [-60.99000584109896, -15.496281722200578]]]}, 'id': '+13237+10073', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -15.810692071642421], [-60.98102268825777, -15.810692071642421], [-60.98102268825777, -15.801708918801225], [-60.99000584109896, -15.801708918801225], [-60.99000584109896, -15.810692071642421]]]}, 'id': '+13237+10108', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -15.891540447213174], [-60.98102268825777, -15.891540447213174], [-60.98102268825777, -15.882557294371978], [-60.99000584109896, -15.882557294371978], [-60.99000584109896, -15.891540447213174]]]}, 'id': '+13237+10117', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -16.044254045513483], [-60.98102268825777, -16.044254045513483], [-60.98102268825777, -16.0352708926723], [-60.97203953541657, -16.0352708926723], [-60.97203953541657, -16.026287739831105], [-60.95407322973418, -16.026287739831105], [-60.95407322973418, -16.01730458698991], [-60.97203953541657, -16.01730458698991], [-60.97203953541657, -15.999338281307516], [-60.98102268825777, -15.999338281307516], [-60.98102268825777, -16.01730458698991], [-60.99000584109896, -16.01730458698991], [-60.99000584109896, -15.99035512846632], [-60.98102268825777, -15.99035512846632], [-60.98102268825777, -15.981371975625123], [-60.99000584109896, -15.981371975625123], [-60.99000584109896, -15.972388822783927], [-60.98102268825777, -15.972388822783927], [-60.98102268825777, -15.96340566994273], [-61.007972146781356, -15.96340566994273], [-61.007972146781356, -15.981371975625123], [-61.02593845246375, -15.981371975625123], [-61.02593845246375, -15.972388822783927], [-61.034921605304945, -15.972388822783927], [-61.034921605304945, -15.981371975625123], [-61.02593845246375, -15.981371975625123], [-61.02593845246375, -15.999338281307516], [-61.034921605304945, -15.999338281307516], [-61.034921605304945, -15.99035512846632], [-61.04390475814614, -15.99035512846632], [-61.04390475814614, -15.999338281307516], [-61.034921605304945, -15.999338281307516], [-61.034921605304945, -16.008321434148712], [-61.05288791098732, -16.008321434148712], [-61.05288791098732, -16.01730458698991], [-61.04390475814614, -16.01730458698991], [-61.04390475814614, -16.026287739831105], [-61.05288791098732, -16.026287739831105], [-61.05288791098732, -16.0352708926723], [-61.04390475814614, -16.0352708926723], [-61.04390475814614, -16.026287739831105], [-61.034921605304945, -16.026287739831105], [-61.034921605304945, -16.01730458698991], [-61.02593845246375, -16.01730458698991], [-61.02593845246375, -15.999338281307516], [-61.01695529962255, -15.999338281307516], [-61.01695529962255, -16.026287739831105], [-61.007972146781356, -16.026287739831105], [-61.007972146781356, -16.01730458698991], [-60.99898899394016, -16.01730458698991], [-60.99898899394016, -16.0352708926723], [-60.99000584109896, -16.0352708926723], [-60.99000584109896, -16.044254045513483]], [[-60.99000584109896, -15.99035512846632], [-60.99000584109896, -15.981371975625123], [-60.99898899394016, -15.981371975625123], [-60.99898899394016, -15.99035512846632], [-60.99000584109896, -15.99035512846632]]]}, 'id': '+13237+10134', 'properties': {'count': 39, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -16.062220351195876], [-60.98102268825777, -16.062220351195876], [-60.98102268825777, -16.05323719835468], [-60.99000584109896, -16.05323719835468], [-60.99000584109896, -16.062220351195876]]]}, 'id': '+13237+10136', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -16.134085573925447], [-60.98102268825777, -16.134085573925447], [-60.98102268825777, -16.116119268243054], [-60.99000584109896, -16.116119268243054], [-60.99000584109896, -16.134085573925447]]]}, 'id': '+13237+10144', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -16.223917102337396], [-60.98102268825777, -16.223917102337396], [-60.98102268825777, -16.2149339494962], [-60.99000584109896, -16.2149339494962], [-60.99000584109896, -16.223917102337396]]]}, 'id': '+13237+10154', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -16.24188340801979], [-60.98102268825777, -16.24188340801979], [-60.98102268825777, -16.232900255178592], [-60.99000584109896, -16.232900255178592], [-60.99000584109896, -16.24188340801979]]]}, 'id': '+13237+10156', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -16.27781601938456], [-60.98102268825777, -16.27781601938456], [-60.98102268825777, -16.268832866543377], [-60.99000584109896, -16.268832866543377], [-60.99000584109896, -16.27781601938456]]]}, 'id': '+13237+10160', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -16.394597006320097], [-60.98102268825777, -16.394597006320097], [-60.98102268825777, -16.37663070063772], [-60.99000584109896, -16.37663070063772], [-60.99000584109896, -16.358664394955326], [-60.98102268825777, -16.358664394955326], [-60.98102268825777, -16.34968124211413], [-60.97203953541657, -16.34968124211413], [-60.97203953541657, -16.340698089272934], [-60.98102268825777, -16.340698089272934], [-60.98102268825777, -16.32273178359054], [-60.99898899394016, -16.32273178359054], [-60.99898899394016, -16.313748630749345], [-60.99000584109896, -16.313748630749345], [-60.99000584109896, -16.295782325066952], [-60.99898899394016, -16.295782325066952], [-60.99898899394016, -16.313748630749345], [-61.007972146781356, -16.313748630749345], [-61.007972146781356, -16.32273178359054], [-60.99898899394016, -16.32273178359054], [-60.99898899394016, -16.37663070063772], [-60.99000584109896, -16.37663070063772], [-60.99000584109896, -16.394597006320097]]]}, 'id': '+13237+10173', 'properties': {'count': 16, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -14.50813490966911], [-60.98102268825777, -14.50813490966911], [-60.98102268825777, -14.499151756827914], [-60.99000584109896, -14.499151756827914], [-60.99000584109896, -14.50813490966911]]]}, 'id': '+13237+9963', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99898899394016, -14.696781119334204], [-60.98102268825777, -14.696781119334204], [-60.98102268825777, -14.687797966493008], [-60.99000584109896, -14.687797966493008], [-60.99000584109896, -14.678814813651812], [-60.97203953541657, -14.678814813651812], [-60.97203953541657, -14.660848507969433], [-60.94509007689298, -14.660848507969433], [-60.94509007689298, -14.651865355128237], [-60.936106924051785, -14.651865355128237], [-60.936106924051785, -14.64288220228704], [-60.94509007689298, -14.64288220228704], [-60.94509007689298, -14.633899049445844], [-60.936106924051785, -14.633899049445844], [-60.936106924051785, -14.624915896604648], [-60.9271237712106, -14.624915896604648], [-60.9271237712106, -14.615932743763452], [-60.936106924051785, -14.615932743763452], [-60.936106924051785, -14.597966438081059], [-60.98102268825777, -14.597966438081059], [-60.98102268825777, -14.580000132398666], [-60.97203953541657, -14.580000132398666], [-60.97203953541657, -14.57101697955747], [-60.98102268825777, -14.57101697955747], [-60.98102268825777, -14.580000132398666], [-60.99000584109896, -14.580000132398666], [-60.99000584109896, -14.57101697955747], [-61.01695529962255, -14.57101697955747], [-61.01695529962255, -14.526101215351503], [-61.034921605304945, -14.526101215351503], [-61.034921605304945, -14.535084368192699], [-61.04390475814614, -14.535084368192699], [-61.04390475814614, -14.526101215351503], [-61.05288791098732, -14.526101215351503], [-61.05288791098732, -14.535084368192699], [-61.06187106382852, -14.535084368192699], [-61.06187106382852, -14.526101215351503], [-61.07983736951091, -14.526101215351503], [-61.07983736951091, -14.517118062510306], [-61.08882052235211, -14.517118062510306], [-61.08882052235211, -14.499151756827914], [-61.097803675193305, -14.499151756827914], [-61.097803675193305, -14.481185451145521], [-61.1067868280345, -14.481185451145521], [-61.1067868280345, -14.490168603986717], [-61.1157699808757, -14.490168603986717], [-61.1157699808757, -14.517118062510306], [-61.1067868280345, -14.517118062510306], [-61.1067868280345, -14.535084368192699], [-61.097803675193305, -14.535084368192699], [-61.097803675193305, -14.544067521033895], [-61.1067868280345, -14.544067521033895], [-61.1067868280345, -14.57101697955747], [-61.124753133716894, -14.57101697955747], [-61.124753133716894, -14.562033826716274], [-61.13373628655809, -14.562033826716274], [-61.13373628655809, -14.580000132398666], [-61.097803675193305, -14.580000132398666], [-61.097803675193305, -14.588983285239863], [-61.07983736951091, -14.588983285239863], [-61.07983736951091, -14.597966438081059], [-61.097803675193305, -14.597966438081059], [-61.097803675193305, -14.606949590922255], [-61.1157699808757, -14.606949590922255], [-61.1157699808757, -14.64288220228704], [-61.097803675193305, -14.64288220228704], [-61.097803675193305, -14.651865355128237], [-61.07983736951091, -14.651865355128237], [-61.07983736951091, -14.687797966493008], [-61.070854216669716, -14.687797966493008], [-61.070854216669716, -14.678814813651812], [-61.06187106382852, -14.678814813651812], [-61.06187106382852, -14.66983166081063], [-61.007972146781356, -14.66983166081063], [-61.007972146781356, -14.687797966493008], [-60.99898899394016, -14.687797966493008], [-60.99898899394016, -14.696781119334204]], [[-61.07983736951091, -14.535084368192699], [-61.07983736951091, -14.526101215351503], [-61.08882052235211, -14.526101215351503], [-61.08882052235211, -14.535084368192699], [-61.07983736951091, -14.535084368192699]], [[-61.02593845246375, -14.553050673875092], [-61.02593845246375, -14.535084368192699], [-61.034921605304945, -14.535084368192699], [-61.034921605304945, -14.553050673875092], [-61.02593845246375, -14.553050673875092]], [[-60.936106924051785, -14.624915896604648], [-60.936106924051785, -14.615932743763452], [-60.95407322973418, -14.615932743763452], [-60.95407322973418, -14.624915896604648], [-60.936106924051785, -14.624915896604648]]]}, 'id': '+13237+9984', 'properties': {'count': 250, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -14.741696883540186], [-60.98102268825777, -14.741696883540186], [-60.98102268825777, -14.73271373069899], [-60.99000584109896, -14.73271373069899], [-60.99000584109896, -14.723730577857793], [-60.99898899394016, -14.723730577857793], [-60.99898899394016, -14.714747425016597], [-61.007972146781356, -14.714747425016597], [-61.007972146781356, -14.723730577857793], [-61.01695529962255, -14.723730577857793], [-61.01695529962255, -14.714747425016597], [-61.034921605304945, -14.714747425016597], [-61.034921605304945, -14.7057642721754], [-61.05288791098732, -14.7057642721754], [-61.05288791098732, -14.714747425016597], [-61.04390475814614, -14.714747425016597], [-61.04390475814614, -14.723730577857793], [-61.034921605304945, -14.723730577857793], [-61.034921605304945, -14.741696883540186], [-61.02593845246375, -14.741696883540186], [-61.02593845246375, -14.73271373069899], [-61.007972146781356, -14.73271373069899], [-61.007972146781356, -14.723730577857793], [-60.99898899394016, -14.723730577857793], [-60.99898899394016, -14.73271373069899], [-60.99000584109896, -14.73271373069899], [-60.99000584109896, -14.741696883540186]]]}, 'id': '+13237+9989', 'properties': {'count': 12, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.98102268825777, -14.849494717634528], [-60.97203953541657, -14.849494717634528], [-60.97203953541657, -14.840511564793331], [-60.98102268825777, -14.840511564793331], [-60.98102268825777, -14.849494717634528]]]}, 'id': '+13238+10001', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.98102268825777, -15.51424802788297], [-60.97203953541657, -15.51424802788297], [-60.97203953541657, -15.505264875041775], [-60.98102268825777, -15.505264875041775], [-60.98102268825777, -15.51424802788297]]]}, 'id': '+13238+10075', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.98102268825777, -15.523231180724167], [-60.97203953541657, -15.523231180724167], [-60.97203953541657, -15.51424802788297], [-60.98102268825777, -15.51424802788297], [-60.98102268825777, -15.523231180724167]]]}, 'id': '+13238+10076', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.98102268825777, -15.622045861977313], [-60.97203953541657, -15.622045861977313], [-60.97203953541657, -15.613062709136116], [-60.98102268825777, -15.613062709136116], [-60.98102268825777, -15.622045861977313]]]}, 'id': '+13238+10087', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -15.792725765960029], [-60.97203953541657, -15.792725765960029], [-60.97203953541657, -15.774759460277636], [-60.98102268825777, -15.774759460277636], [-60.98102268825777, -15.783742613118832], [-60.99000584109896, -15.783742613118832], [-60.99000584109896, -15.792725765960029]]]}, 'id': '+13238+10106', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.98102268825777, -16.134085573925447], [-60.97203953541657, -16.134085573925447], [-60.97203953541657, -16.12510242108425], [-60.98102268825777, -16.12510242108425], [-60.98102268825777, -16.134085573925447]]]}, 'id': '+13238+10144', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.99000584109896, -16.2149339494962], [-60.97203953541657, -16.2149339494962], [-60.97203953541657, -16.205950796655003], [-60.99000584109896, -16.205950796655003], [-60.99000584109896, -16.2149339494962]]]}, 'id': '+13238+10153', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.98102268825777, -16.250866560860985], [-60.97203953541657, -16.250866560860985], [-60.97203953541657, -16.232900255178592], [-60.98102268825777, -16.232900255178592], [-60.98102268825777, -16.250866560860985]]]}, 'id': '+13238+10157', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.98102268825777, -16.394597006320097], [-60.97203953541657, -16.394597006320097], [-60.97203953541657, -16.367647547796523], [-60.963056382575374, -16.367647547796523], [-60.963056382575374, -16.358664394955326], [-60.97203953541657, -16.358664394955326], [-60.97203953541657, -16.34968124211413], [-60.98102268825777, -16.34968124211413], [-60.98102268825777, -16.367647547796523], [-60.99000584109896, -16.367647547796523], [-60.99000584109896, -16.37663070063772], [-60.98102268825777, -16.37663070063772], [-60.98102268825777, -16.394597006320097]]]}, 'id': '+13238+10173', 'properties': {'count': 7, 'label': 13}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.98102268825777, -13.564903861343609], [-60.97203953541657, -13.564903861343609], [-60.97203953541657, -13.555920708502413], [-60.963056382575374, -13.555920708502413], [-60.963056382575374, -13.546937555661216], [-60.98102268825777, -13.546937555661216], [-60.98102268825777, -13.564903861343609]]]}, 'id': '+13238+9858', 'properties': {'count': 3, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.98102268825777, -13.60981962554959], [-60.97203953541657, -13.60981962554959], [-60.97203953541657, -13.600836472708394], [-60.98102268825777, -13.600836472708394], [-60.98102268825777, -13.60981962554959]]]}, 'id': '+13238+9863', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.98102268825777, -13.825415293738274], [-60.97203953541657, -13.825415293738274], [-60.97203953541657, -13.816432140897078], [-60.98102268825777, -13.816432140897078], [-60.98102268825777, -13.825415293738274]]]}, 'id': '+13238+9887', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.98102268825777, -14.553050673875092], [-60.97203953541657, -14.553050673875092], [-60.97203953541657, -14.544067521033895], [-60.98102268825777, -14.544067521033895], [-60.98102268825777, -14.553050673875092]]]}, 'id': '+13238+9968', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -14.903393634681692], [-60.963056382575374, -14.903393634681692], [-60.963056382575374, -14.89441048184051], [-60.97203953541657, -14.89441048184051], [-60.97203953541657, -14.903393634681692]]]}, 'id': '+13239+10007', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -14.921359940364084], [-60.963056382575374, -14.921359940364084], [-60.963056382575374, -14.912376787522888], [-60.97203953541657, -14.912376787522888], [-60.97203953541657, -14.921359940364084]]]}, 'id': '+13239+10009', 'properties': {'count': 1, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -15.145938761393964], [-60.963056382575374, -15.145938761393964], [-60.963056382575374, -15.136955608552768], [-60.97203953541657, -15.136955608552768], [-60.97203953541657, -15.127972455711571], [-60.98102268825777, -15.127972455711571], [-60.98102268825777, -15.136955608552768], [-60.97203953541657, -15.136955608552768], [-60.97203953541657, -15.145938761393964]]]}, 'id': '+13239+10034', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -15.172888219917553], [-60.963056382575374, -15.172888219917553], [-60.963056382575374, -15.163905067076357], [-60.97203953541657, -15.163905067076357], [-60.97203953541657, -15.172888219917553]]]}, 'id': '+13239+10037', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -15.24475344264711], [-60.963056382575374, -15.24475344264711], [-60.963056382575374, -15.235770289805927], [-60.97203953541657, -15.235770289805927], [-60.97203953541657, -15.24475344264711]]]}, 'id': '+13239+10045', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -15.370517582423844], [-60.963056382575374, -15.370517582423844], [-60.963056382575374, -15.361534429582647], [-60.95407322973418, -15.361534429582647], [-60.95407322973418, -15.343568123900269], [-60.963056382575374, -15.343568123900269], [-60.963056382575374, -15.334584971059073], [-60.98102268825777, -15.334584971059073], [-60.98102268825777, -15.343568123900269], [-60.97203953541657, -15.343568123900269], [-60.97203953541657, -15.370517582423844]]]}, 'id': '+13239+10059', 'properties': {'count': 7, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -15.577130097771345], [-60.963056382575374, -15.577130097771345], [-60.963056382575374, -15.568146944930149], [-60.97203953541657, -15.568146944930149], [-60.97203953541657, -15.577130097771345]]]}, 'id': '+13239+10082', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -15.666961626183294], [-60.963056382575374, -15.666961626183294], [-60.963056382575374, -15.657978473342098], [-60.97203953541657, -15.657978473342098], [-60.97203953541657, -15.666961626183294]]]}, 'id': '+13239+10092', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -16.071203504037072], [-60.963056382575374, -16.071203504037072], [-60.963056382575374, -16.062220351195876], [-60.97203953541657, -16.062220351195876], [-60.97203953541657, -16.071203504037072]]]}, 'id': '+13239+10137', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -16.196967643813807], [-60.963056382575374, -16.196967643813807], [-60.963056382575374, -16.18798449097261], [-60.97203953541657, -16.18798449097261], [-60.97203953541657, -16.196967643813807]]]}, 'id': '+13239+10151', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -16.223917102337396], [-60.963056382575374, -16.223917102337396], [-60.963056382575374, -16.205950796655003], [-60.97203953541657, -16.205950796655003], [-60.97203953541657, -16.223917102337396]]]}, 'id': '+13239+10154', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -16.232900255178592], [-60.963056382575374, -16.232900255178592], [-60.963056382575374, -16.223917102337396], [-60.97203953541657, -16.223917102337396], [-60.97203953541657, -16.232900255178592]]]}, 'id': '+13239+10155', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -16.250866560860985], [-60.963056382575374, -16.250866560860985], [-60.963056382575374, -16.24188340801979], [-60.97203953541657, -16.24188340801979], [-60.97203953541657, -16.250866560860985]]]}, 'id': '+13239+10157', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.98102268825777, -16.268832866543377], [-60.963056382575374, -16.268832866543377], [-60.963056382575374, -16.25984971370218], [-60.98102268825777, -16.25984971370218], [-60.98102268825777, -16.268832866543377]]]}, 'id': '+13239+10159', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.98102268825777, -16.286799172225756], [-60.963056382575374, -16.286799172225756], [-60.963056382575374, -16.27781601938456], [-60.95407322973418, -16.27781601938456], [-60.95407322973418, -16.268832866543377], [-60.963056382575374, -16.268832866543377], [-60.963056382575374, -16.27781601938456], [-60.98102268825777, -16.27781601938456], [-60.98102268825777, -16.286799172225756]]]}, 'id': '+13239+10161', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -16.358664394955326], [-60.963056382575374, -16.358664394955326], [-60.963056382575374, -16.340698089272934], [-60.97203953541657, -16.340698089272934], [-60.97203953541657, -16.358664394955326]]]}, 'id': '+13239+10169', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -16.403580159161294], [-60.963056382575374, -16.403580159161294], [-60.963056382575374, -16.394597006320097], [-60.97203953541657, -16.394597006320097], [-60.97203953541657, -16.403580159161294]]]}, 'id': '+13239+10174', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -16.41256331200249], [-60.963056382575374, -16.41256331200249], [-60.963056382575374, -16.403580159161294], [-60.97203953541657, -16.403580159161294], [-60.97203953541657, -16.41256331200249]]]}, 'id': '+13239+10175', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.98102268825777, -16.448495923367275], [-60.963056382575374, -16.448495923367275], [-60.963056382575374, -16.43951277052608], [-60.95407322973418, -16.43951277052608], [-60.95407322973418, -16.430529617684883], [-60.963056382575374, -16.430529617684883], [-60.963056382575374, -16.43951277052608], [-60.98102268825777, -16.43951277052608], [-60.98102268825777, -16.448495923367275]]]}, 'id': '+13239+10179', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -13.681684848279147], [-60.963056382575374, -13.681684848279147], [-60.963056382575374, -13.67270169543795], [-60.97203953541657, -13.67270169543795], [-60.97203953541657, -13.681684848279147]]]}, 'id': '+13239+9871', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -14.032027809085761], [-60.963056382575374, -14.032027809085761], [-60.963056382575374, -14.023044656244565], [-60.97203953541657, -14.023044656244565], [-60.97203953541657, -14.032027809085761]]]}, 'id': '+13239+9910', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -14.813562106269742], [-60.963056382575374, -14.813562106269742], [-60.963056382575374, -14.804578953428546], [-60.97203953541657, -14.804578953428546], [-60.97203953541657, -14.79559580058735], [-60.963056382575374, -14.79559580058735], [-60.963056382575374, -14.786612647746153], [-60.98102268825777, -14.786612647746153], [-60.98102268825777, -14.79559580058735], [-60.99000584109896, -14.79559580058735], [-60.99000584109896, -14.786612647746153], [-61.007972146781356, -14.786612647746153], [-61.007972146781356, -14.777629494904971], [-60.98102268825777, -14.777629494904971], [-60.98102268825777, -14.768646342063775], [-60.97203953541657, -14.768646342063775], [-60.97203953541657, -14.759663189222579], [-60.94509007689298, -14.759663189222579], [-60.94509007689298, -14.750680036381382], [-60.936106924051785, -14.750680036381382], [-60.936106924051785, -14.741696883540186], [-60.95407322973418, -14.741696883540186], [-60.95407322973418, -14.750680036381382], [-60.98102268825777, -14.750680036381382], [-60.98102268825777, -14.759663189222579], [-60.99000584109896, -14.759663189222579], [-60.99000584109896, -14.768646342063775], [-61.01695529962255, -14.768646342063775], [-61.01695529962255, -14.777629494904971], [-61.02593845246375, -14.777629494904971], [-61.02593845246375, -14.768646342063775], [-61.04390475814614, -14.768646342063775], [-61.04390475814614, -14.759663189222579], [-61.05288791098732, -14.759663189222579], [-61.05288791098732, -14.750680036381382], [-61.06187106382852, -14.750680036381382], [-61.06187106382852, -14.741696883540186], [-61.070854216669716, -14.741696883540186], [-61.070854216669716, -14.714747425016597], [-61.07983736951091, -14.714747425016597], [-61.07983736951091, -14.7057642721754], [-61.097803675193305, -14.7057642721754], [-61.097803675193305, -14.696781119334204], [-61.1067868280345, -14.696781119334204], [-61.1067868280345, -14.7057642721754], [-61.097803675193305, -14.7057642721754], [-61.097803675193305, -14.714747425016597], [-61.07983736951091, -14.714747425016597], [-61.07983736951091, -14.723730577857793], [-61.097803675193305, -14.723730577857793], [-61.097803675193305, -14.73271373069899], [-61.07983736951091, -14.73271373069899], [-61.07983736951091, -14.741696883540186], [-61.070854216669716, -14.741696883540186], [-61.070854216669716, -14.750680036381382], [-61.06187106382852, -14.750680036381382], [-61.06187106382852, -14.768646342063775], [-61.05288791098732, -14.768646342063775], [-61.05288791098732, -14.777629494904971], [-61.06187106382852, -14.777629494904971], [-61.06187106382852, -14.786612647746153], [-61.05288791098732, -14.786612647746153], [-61.05288791098732, -14.777629494904971], [-61.034921605304945, -14.777629494904971], [-61.034921605304945, -14.786612647746153], [-61.007972146781356, -14.786612647746153], [-61.007972146781356, -14.79559580058735], [-60.99000584109896, -14.79559580058735], [-60.99000584109896, -14.804578953428546], [-60.97203953541657, -14.804578953428546], [-60.97203953541657, -14.813562106269742]]]}, 'id': '+13239+9997', 'properties': {'count': 38, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.963056382575374, -14.885427328999313], [-60.95407322973418, -14.885427328999313], [-60.95407322973418, -14.858477870475724], [-60.963056382575374, -14.858477870475724], [-60.963056382575374, -14.885427328999313]]]}, 'id': '+13240+10005', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.963056382575374, -15.307635512535484], [-60.95407322973418, -15.307635512535484], [-60.95407322973418, -15.298652359694287], [-60.963056382575374, -15.298652359694287], [-60.963056382575374, -15.307635512535484]]]}, 'id': '+13240+10052', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -15.325601818217876], [-60.95407322973418, -15.325601818217876], [-60.95407322973418, -15.31661866537668], [-60.97203953541657, -15.31661866537668], [-60.97203953541657, -15.325601818217876]]]}, 'id': '+13240+10054', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.963056382575374, -15.613062709136116], [-60.95407322973418, -15.613062709136116], [-60.95407322973418, -15.60407955629492], [-60.94509007689298, -15.60407955629492], [-60.94509007689298, -15.568146944930149], [-60.95407322973418, -15.568146944930149], [-60.95407322973418, -15.550180639247756], [-60.963056382575374, -15.550180639247756], [-60.963056382575374, -15.54119748640656], [-60.97203953541657, -15.54119748640656], [-60.97203953541657, -15.550180639247756], [-60.963056382575374, -15.550180639247756], [-60.963056382575374, -15.613062709136116]]]}, 'id': '+13240+10086', 'properties': {'count': 12, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.963056382575374, -15.729843696071654], [-60.95407322973418, -15.729843696071654], [-60.95407322973418, -15.720860543230458], [-60.963056382575374, -15.720860543230458], [-60.963056382575374, -15.729843696071654]]]}, 'id': '+13240+10099', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.963056382575374, -15.8286583773248], [-60.95407322973418, -15.8286583773248], [-60.95407322973418, -15.819675224483603], [-60.963056382575374, -15.819675224483603], [-60.963056382575374, -15.8286583773248]]]}, 'id': '+13240+10110', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -15.972388822783927], [-60.95407322973418, -15.972388822783927], [-60.95407322973418, -15.954422517101534], [-60.94509007689298, -15.954422517101534], [-60.94509007689298, -15.945439364260338], [-60.936106924051785, -15.945439364260338], [-60.936106924051785, -15.96340566994273], [-60.91814061836941, -15.96340566994273], [-60.91814061836941, -15.954422517101534], [-60.90915746552821, -15.954422517101534], [-60.90915746552821, -15.936456211419141], [-60.91814061836941, -15.936456211419141], [-60.91814061836941, -15.954422517101534], [-60.9271237712106, -15.954422517101534], [-60.9271237712106, -15.945439364260338], [-60.936106924051785, -15.945439364260338], [-60.936106924051785, -15.936456211419141], [-60.94509007689298, -15.936456211419141], [-60.94509007689298, -15.945439364260338], [-60.95407322973418, -15.945439364260338], [-60.95407322973418, -15.936456211419141], [-60.97203953541657, -15.936456211419141], [-60.97203953541657, -15.945439364260338], [-60.95407322973418, -15.945439364260338], [-60.95407322973418, -15.954422517101534], [-60.963056382575374, -15.954422517101534], [-60.963056382575374, -15.96340566994273], [-60.97203953541657, -15.96340566994273], [-60.97203953541657, -15.972388822783927]]]}, 'id': '+13240+10126', 'properties': {'count': 12, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.963056382575374, -16.01730458698991], [-60.95407322973418, -16.01730458698991], [-60.95407322973418, -16.008321434148712], [-60.94509007689298, -16.008321434148712], [-60.94509007689298, -15.999338281307516], [-60.936106924051785, -15.999338281307516], [-60.936106924051785, -15.99035512846632], [-60.95407322973418, -15.99035512846632], [-60.95407322973418, -16.008321434148712], [-60.963056382575374, -16.008321434148712], [-60.963056382575374, -16.01730458698991]]]}, 'id': '+13240+10131', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -16.0352708926723], [-60.95407322973418, -16.0352708926723], [-60.95407322973418, -16.026287739831105], [-60.97203953541657, -16.026287739831105], [-60.97203953541657, -16.0352708926723]]]}, 'id': '+13240+10133', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.963056382575374, -16.05323719835468], [-60.95407322973418, -16.05323719835468], [-60.95407322973418, -16.044254045513483], [-60.963056382575374, -16.044254045513483], [-60.963056382575374, -16.05323719835468]]]}, 'id': '+13240+10135', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.963056382575374, -16.143068726766643], [-60.95407322973418, -16.143068726766643], [-60.95407322973418, -16.134085573925447], [-60.963056382575374, -16.134085573925447], [-60.963056382575374, -16.143068726766643]]]}, 'id': '+13240+10145', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -16.313748630749345], [-60.95407322973418, -16.313748630749345], [-60.95407322973418, -16.30476547790815], [-60.94509007689298, -16.30476547790815], [-60.94509007689298, -16.295782325066952], [-60.95407322973418, -16.295782325066952], [-60.95407322973418, -16.30476547790815], [-60.97203953541657, -16.30476547790815], [-60.97203953541657, -16.313748630749345]]]}, 'id': '+13240+10164', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.963056382575374, -16.358664394955326], [-60.95407322973418, -16.358664394955326], [-60.95407322973418, -16.34968124211413], [-60.963056382575374, -16.34968124211413], [-60.963056382575374, -16.358664394955326]]]}, 'id': '+13240+10169', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.963056382575374, -16.448495923367275], [-60.95407322973418, -16.448495923367275], [-60.95407322973418, -16.43951277052608], [-60.963056382575374, -16.43951277052608], [-60.963056382575374, -16.448495923367275]]]}, 'id': '+13240+10179', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.963056382575374, -13.753550071008718], [-60.95407322973418, -13.753550071008718], [-60.95407322973418, -13.744566918167521], [-60.963056382575374, -13.744566918167521], [-60.963056382575374, -13.753550071008718]]]}, 'id': '+13240+9879', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -13.807448988055882], [-60.95407322973418, -13.807448988055882], [-60.95407322973418, -13.798465835214685], [-60.97203953541657, -13.798465835214685], [-60.97203953541657, -13.807448988055882]]]}, 'id': '+13240+9885', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.963056382575374, -14.723730577857793], [-60.95407322973418, -14.723730577857793], [-60.95407322973418, -14.7057642721754], [-60.963056382575374, -14.7057642721754], [-60.963056382575374, -14.723730577857793]]]}, 'id': '+13240+9987', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.95407322973418, -14.975258857411262], [-60.94509007689298, -14.975258857411262], [-60.94509007689298, -14.966275704570066], [-60.95407322973418, -14.966275704570066], [-60.95407322973418, -14.975258857411262]]]}, 'id': '+13241+10015', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.95407322973418, -15.253736595488306], [-60.94509007689298, -15.253736595488306], [-60.94509007689298, -15.24475344264711], [-60.95407322973418, -15.24475344264711], [-60.95407322973418, -15.253736595488306]]]}, 'id': '+13241+10046', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.95407322973418, -15.262719748329502], [-60.94509007689298, -15.262719748329502], [-60.94509007689298, -15.253736595488306], [-60.95407322973418, -15.253736595488306], [-60.95407322973418, -15.262719748329502]]]}, 'id': '+13241+10047', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.95407322973418, -15.568146944930149], [-60.94509007689298, -15.568146944930149], [-60.94509007689298, -15.550180639247756], [-60.95407322973418, -15.550180639247756], [-60.95407322973418, -15.568146944930149]]]}, 'id': '+13241+10081', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.963056382575374, -15.702894237548065], [-60.94509007689298, -15.702894237548065], [-60.94509007689298, -15.693911084706883], [-60.963056382575374, -15.693911084706883], [-60.963056382575374, -15.702894237548065]]]}, 'id': '+13241+10096', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.963056382575374, -15.720860543230458], [-60.94509007689298, -15.720860543230458], [-60.94509007689298, -15.711877390389262], [-60.963056382575374, -15.711877390389262], [-60.963056382575374, -15.720860543230458]]]}, 'id': '+13241+10098', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.963056382575374, -15.747810001754047], [-60.94509007689298, -15.747810001754047], [-60.94509007689298, -15.73882684891285], [-60.936106924051785, -15.73882684891285], [-60.936106924051785, -15.729843696071654], [-60.9271237712106, -15.729843696071654], [-60.9271237712106, -15.720860543230458], [-60.936106924051785, -15.720860543230458], [-60.936106924051785, -15.711877390389262], [-60.94509007689298, -15.711877390389262], [-60.94509007689298, -15.720860543230458], [-60.95407322973418, -15.720860543230458], [-60.95407322973418, -15.729843696071654], [-60.963056382575374, -15.729843696071654], [-60.963056382575374, -15.711877390389262], [-60.97203953541657, -15.711877390389262], [-60.97203953541657, -15.729843696071654], [-60.963056382575374, -15.729843696071654], [-60.963056382575374, -15.747810001754047]]]}, 'id': '+13241+10101', 'properties': {'count': 11, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.963056382575374, -15.801708918801225], [-60.94509007689298, -15.801708918801225], [-60.94509007689298, -15.792725765960029], [-60.95407322973418, -15.792725765960029], [-60.95407322973418, -15.783742613118832], [-60.963056382575374, -15.783742613118832], [-60.963056382575374, -15.801708918801225]]]}, 'id': '+13241+10107', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.95407322973418, -15.864590988689585], [-60.94509007689298, -15.864590988689585], [-60.94509007689298, -15.855607835848389], [-60.95407322973418, -15.855607835848389], [-60.95407322973418, -15.864590988689585]]]}, 'id': '+13241+10114', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.963056382575374, -16.24188340801979], [-60.94509007689298, -16.24188340801979], [-60.94509007689298, -16.232900255178592], [-60.963056382575374, -16.232900255178592], [-60.963056382575374, -16.24188340801979]]]}, 'id': '+13241+10156', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.95407322973418, -16.37663070063772], [-60.94509007689298, -16.37663070063772], [-60.94509007689298, -16.367647547796523], [-60.95407322973418, -16.367647547796523], [-60.95407322973418, -16.37663070063772]]]}, 'id': '+13241+10171', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.95407322973418, -16.385613853478915], [-60.94509007689298, -16.385613853478915], [-60.94509007689298, -16.37663070063772], [-60.95407322973418, -16.37663070063772], [-60.95407322973418, -16.385613853478915]]]}, 'id': '+13241+10172', 'properties': {'count': 1, 'label': 13}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.95407322973418, -16.394597006320097], [-60.94509007689298, -16.394597006320097], [-60.94509007689298, -16.385613853478915], [-60.95407322973418, -16.385613853478915], [-60.95407322973418, -16.394597006320097]]]}, 'id': '+13241+10173', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.97203953541657, -16.475445381890864], [-60.94509007689298, -16.475445381890864], [-60.94509007689298, -16.466462229049668], [-60.936106924051785, -16.466462229049668], [-60.936106924051785, -16.430529617684883], [-60.94509007689298, -16.430529617684883], [-60.94509007689298, -16.421546464843686], [-60.936106924051785, -16.421546464843686], [-60.936106924051785, -16.41256331200249], [-60.94509007689298, -16.41256331200249], [-60.94509007689298, -16.421546464843686], [-60.95407322973418, -16.421546464843686], [-60.95407322973418, -16.403580159161294], [-60.963056382575374, -16.403580159161294], [-60.963056382575374, -16.41256331200249], [-60.97203953541657, -16.41256331200249], [-60.97203953541657, -16.394597006320097], [-60.98102268825777, -16.394597006320097], [-60.98102268825777, -16.41256331200249], [-60.99000584109896, -16.41256331200249], [-60.99000584109896, -16.394597006320097], [-60.99898899394016, -16.394597006320097], [-60.99898899394016, -16.430529617684883], [-60.99000584109896, -16.430529617684883], [-60.99000584109896, -16.43951277052608], [-60.963056382575374, -16.43951277052608], [-60.963056382575374, -16.430529617684883], [-60.95407322973418, -16.430529617684883], [-60.95407322973418, -16.448495923367275], [-60.963056382575374, -16.448495923367275], [-60.963056382575374, -16.45747907620847], [-60.97203953541657, -16.45747907620847], [-60.97203953541657, -16.448495923367275], [-60.98102268825777, -16.448495923367275], [-60.98102268825777, -16.45747907620847], [-60.97203953541657, -16.45747907620847], [-60.97203953541657, -16.475445381890864]]]}, 'id': '+13241+10182', 'properties': {'count': 35, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.95407322973418, -13.600836472708394], [-60.94509007689298, -13.600836472708394], [-60.94509007689298, -13.591853319867198], [-60.95407322973418, -13.591853319867198], [-60.95407322973418, -13.600836472708394]]]}, 'id': '+13241+9862', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.95407322973418, -13.771516376691096], [-60.94509007689298, -13.771516376691096], [-60.94509007689298, -13.7625332238499], [-60.95407322973418, -13.7625332238499], [-60.95407322973418, -13.771516376691096]]]}, 'id': '+13241+9881', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.95407322973418, -14.948309398887673], [-60.936106924051785, -14.948309398887673], [-60.936106924051785, -14.93034309320528], [-60.94509007689298, -14.93034309320528], [-60.94509007689298, -14.939326246046477], [-60.95407322973418, -14.939326246046477], [-60.95407322973418, -14.948309398887673]]]}, 'id': '+13242+10012', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.94509007689298, -14.984242010252458], [-60.936106924051785, -14.984242010252458], [-60.936106924051785, -14.975258857411262], [-60.94509007689298, -14.975258857411262], [-60.94509007689298, -14.984242010252458]]]}, 'id': '+13242+10016', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.94509007689298, -15.289669206853091], [-60.936106924051785, -15.289669206853091], [-60.936106924051785, -15.262719748329502], [-60.95407322973418, -15.262719748329502], [-60.95407322973418, -15.280686054011895], [-60.94509007689298, -15.280686054011895], [-60.94509007689298, -15.289669206853091]]]}, 'id': '+13242+10050', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.95407322973418, -15.370517582423844], [-60.936106924051785, -15.370517582423844], [-60.936106924051785, -15.334584971059073], [-60.94509007689298, -15.334584971059073], [-60.94509007689298, -15.352551276741465], [-60.95407322973418, -15.352551276741465], [-60.95407322973418, -15.370517582423844]]]}, 'id': '+13242+10059', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.94509007689298, -15.397467040947433], [-60.936106924051785, -15.397467040947433], [-60.936106924051785, -15.388483888106236], [-60.94509007689298, -15.388483888106236], [-60.94509007689298, -15.397467040947433]]]}, 'id': '+13242+10062', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.95407322973418, -15.424416499471022], [-60.936106924051785, -15.424416499471022], [-60.936106924051785, -15.415433346629825], [-60.95407322973418, -15.415433346629825], [-60.95407322973418, -15.424416499471022]]]}, 'id': '+13242+10065', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.94509007689298, -15.595096403453724], [-60.936106924051785, -15.595096403453724], [-60.936106924051785, -15.586113250612527], [-60.94509007689298, -15.586113250612527], [-60.94509007689298, -15.595096403453724]]]}, 'id': '+13242+10084', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.95407322973418, -15.622045861977313], [-60.936106924051785, -15.622045861977313], [-60.936106924051785, -15.60407955629492], [-60.95407322973418, -15.60407955629492], [-60.95407322973418, -15.622045861977313]]]}, 'id': '+13242+10087', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.94509007689298, -15.631029014818509], [-60.936106924051785, -15.631029014818509], [-60.936106924051785, -15.622045861977313], [-60.94509007689298, -15.622045861977313], [-60.94509007689298, -15.631029014818509]]]}, 'id': '+13242+10088', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.94509007689298, -15.640012167659705], [-60.936106924051785, -15.640012167659705], [-60.936106924051785, -15.631029014818509], [-60.94509007689298, -15.631029014818509], [-60.94509007689298, -15.640012167659705]]]}, 'id': '+13242+10089', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.94509007689298, -15.801708918801225], [-60.936106924051785, -15.801708918801225], [-60.936106924051785, -15.783742613118832], [-60.91814061836941, -15.783742613118832], [-60.91814061836941, -15.774759460277636], [-60.9271237712106, -15.774759460277636], [-60.9271237712106, -15.76577630743644], [-60.936106924051785, -15.76577630743644], [-60.936106924051785, -15.756793154595243], [-60.94509007689298, -15.756793154595243], [-60.94509007689298, -15.76577630743644], [-60.936106924051785, -15.76577630743644], [-60.936106924051785, -15.783742613118832], [-60.94509007689298, -15.783742613118832], [-60.94509007689298, -15.774759460277636], [-60.95407322973418, -15.774759460277636], [-60.95407322973418, -15.792725765960029], [-60.94509007689298, -15.792725765960029], [-60.94509007689298, -15.801708918801225]]]}, 'id': '+13242+10107', 'properties': {'count': 8, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.94509007689298, -16.026287739831105], [-60.936106924051785, -16.026287739831105], [-60.936106924051785, -16.01730458698991], [-60.9271237712106, -16.01730458698991], [-60.9271237712106, -16.008321434148712], [-60.94509007689298, -16.008321434148712], [-60.94509007689298, -16.026287739831105]]]}, 'id': '+13242+10132', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.94509007689298, -16.0352708926723], [-60.936106924051785, -16.0352708926723], [-60.936106924051785, -16.026287739831105], [-60.94509007689298, -16.026287739831105], [-60.94509007689298, -16.0352708926723]]]}, 'id': '+13242+10133', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.94509007689298, -16.12510242108425], [-60.936106924051785, -16.12510242108425], [-60.936106924051785, -16.116119268243054], [-60.94509007689298, -16.116119268243054], [-60.94509007689298, -16.12510242108425]]]}, 'id': '+13242+10143', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.94509007689298, -16.358664394955326], [-60.936106924051785, -16.358664394955326], [-60.936106924051785, -16.331714936431737], [-60.97203953541657, -16.331714936431737], [-60.97203953541657, -16.32273178359054], [-60.98102268825777, -16.32273178359054], [-60.98102268825777, -16.340698089272934], [-60.95407322973418, -16.340698089272934], [-60.95407322973418, -16.34968124211413], [-60.94509007689298, -16.34968124211413], [-60.94509007689298, -16.358664394955326]]]}, 'id': '+13242+10169', 'properties': {'count': 9, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.94509007689298, -16.37663070063772], [-60.936106924051785, -16.37663070063772], [-60.936106924051785, -16.367647547796523], [-60.94509007689298, -16.367647547796523], [-60.94509007689298, -16.358664394955326], [-60.95407322973418, -16.358664394955326], [-60.95407322973418, -16.367647547796523], [-60.94509007689298, -16.367647547796523], [-60.94509007689298, -16.37663070063772]]]}, 'id': '+13242+10171', 'properties': {'count': 2, 'label': 4}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.94509007689298, -16.403580159161294], [-60.936106924051785, -16.403580159161294], [-60.936106924051785, -16.394597006320097], [-60.94509007689298, -16.394597006320097], [-60.94509007689298, -16.403580159161294]]]}, 'id': '+13242+10174', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.94509007689298, -13.807448988055882], [-60.936106924051785, -13.807448988055882], [-60.936106924051785, -13.798465835214685], [-60.94509007689298, -13.798465835214685], [-60.94509007689298, -13.807448988055882]]]}, 'id': '+13242+9885', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.94509007689298, -13.825415293738274], [-60.936106924051785, -13.825415293738274], [-60.936106924051785, -13.816432140897078], [-60.94509007689298, -13.816432140897078], [-60.94509007689298, -13.825415293738274]]]}, 'id': '+13242+9887', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -14.885427328999313], [-60.9271237712106, -14.885427328999313], [-60.9271237712106, -14.876444176158117], [-60.91814061836941, -14.876444176158117], [-60.91814061836941, -14.86746102331692], [-60.9271237712106, -14.86746102331692], [-60.9271237712106, -14.858477870475724], [-60.90915746552821, -14.858477870475724], [-60.90915746552821, -14.849494717634528], [-60.9271237712106, -14.849494717634528], [-60.9271237712106, -14.858477870475724], [-60.936106924051785, -14.858477870475724], [-60.936106924051785, -14.849494717634528], [-60.95407322973418, -14.849494717634528], [-60.95407322973418, -14.876444176158117], [-60.936106924051785, -14.876444176158117], [-60.936106924051785, -14.885427328999313]]]}, 'id': '+13243+10005', 'properties': {'count': 12, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -14.921359940364084], [-60.9271237712106, -14.921359940364084], [-60.9271237712106, -14.912376787522888], [-60.91814061836941, -14.912376787522888], [-60.91814061836941, -14.903393634681692], [-60.936106924051785, -14.903393634681692], [-60.936106924051785, -14.921359940364084]]]}, 'id': '+13243+10009', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -15.271702901170698], [-60.9271237712106, -15.271702901170698], [-60.9271237712106, -15.262719748329502], [-60.936106924051785, -15.262719748329502], [-60.936106924051785, -15.271702901170698]]]}, 'id': '+13243+10048', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -15.31661866537668], [-60.9271237712106, -15.31661866537668], [-60.9271237712106, -15.307635512535484], [-60.936106924051785, -15.307635512535484], [-60.936106924051785, -15.31661866537668]]]}, 'id': '+13243+10053', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -15.478315416518186], [-60.9271237712106, -15.478315416518186], [-60.9271237712106, -15.460349110835807], [-60.936106924051785, -15.460349110835807], [-60.936106924051785, -15.478315416518186]]]}, 'id': '+13243+10071', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -15.702894237548065], [-60.9271237712106, -15.702894237548065], [-60.9271237712106, -15.693911084706883], [-60.91814061836941, -15.693911084706883], [-60.91814061836941, -15.684927931865687], [-60.90915746552821, -15.684927931865687], [-60.90915746552821, -15.67594477902449], [-60.91814061836941, -15.67594477902449], [-60.91814061836941, -15.684927931865687], [-60.9271237712106, -15.684927931865687], [-60.9271237712106, -15.666961626183294], [-60.91814061836941, -15.666961626183294], [-60.91814061836941, -15.657978473342098], [-60.9271237712106, -15.657978473342098], [-60.9271237712106, -15.666961626183294], [-60.936106924051785, -15.666961626183294], [-60.936106924051785, -15.684927931865687], [-60.9271237712106, -15.684927931865687], [-60.9271237712106, -15.693911084706883], [-60.936106924051785, -15.693911084706883], [-60.936106924051785, -15.702894237548065]]]}, 'id': '+13243+10096', 'properties': {'count': 6, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -15.855607835848389], [-60.9271237712106, -15.855607835848389], [-60.9271237712106, -15.846624683007192], [-60.936106924051785, -15.846624683007192], [-60.936106924051785, -15.837641530165996], [-60.95407322973418, -15.837641530165996], [-60.95407322973418, -15.846624683007192], [-60.936106924051785, -15.846624683007192], [-60.936106924051785, -15.855607835848389]]]}, 'id': '+13243+10113', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -15.981371975625123], [-60.9271237712106, -15.981371975625123], [-60.9271237712106, -15.972388822783927], [-60.936106924051785, -15.972388822783927], [-60.936106924051785, -15.981371975625123]]]}, 'id': '+13243+10127', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -16.25984971370218], [-60.9271237712106, -16.25984971370218], [-60.9271237712106, -16.250866560860985], [-60.90915746552821, -16.250866560860985], [-60.90915746552821, -16.24188340801979], [-60.91814061836941, -16.24188340801979], [-60.91814061836941, -16.232900255178592], [-60.936106924051785, -16.232900255178592], [-60.936106924051785, -16.223917102337396], [-60.95407322973418, -16.223917102337396], [-60.95407322973418, -16.232900255178592], [-60.936106924051785, -16.232900255178592], [-60.936106924051785, -16.24188340801979], [-60.9271237712106, -16.24188340801979], [-60.9271237712106, -16.250866560860985], [-60.936106924051785, -16.250866560860985], [-60.936106924051785, -16.25984971370218]]]}, 'id': '+13243+10158', 'properties': {'count': 7, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -16.493411687573257], [-60.9271237712106, -16.493411687573257], [-60.9271237712106, -16.48442853473206], [-60.936106924051785, -16.48442853473206], [-60.936106924051785, -16.493411687573257]]]}, 'id': '+13243+10184', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -13.591853319867198], [-60.9271237712106, -13.591853319867198], [-60.9271237712106, -13.582870167026002], [-60.936106924051785, -13.582870167026002], [-60.936106924051785, -13.591853319867198]]]}, 'id': '+13243+9861', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -13.83439844657947], [-60.9271237712106, -13.83439844657947], [-60.9271237712106, -13.825415293738274], [-60.936106924051785, -13.825415293738274], [-60.936106924051785, -13.83439844657947]]]}, 'id': '+13243+9888', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -14.355421311368787], [-60.9271237712106, -14.355421311368787], [-60.9271237712106, -14.34643815852759], [-60.936106924051785, -14.34643815852759], [-60.936106924051785, -14.355421311368787]]]}, 'id': '+13243+9946', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -14.615932743763452], [-60.9271237712106, -14.615932743763452], [-60.9271237712106, -14.606949590922255], [-60.936106924051785, -14.606949590922255], [-60.936106924051785, -14.615932743763452]]]}, 'id': '+13243+9975', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -14.759663189222579], [-60.9271237712106, -14.759663189222579], [-60.9271237712106, -14.750680036381382], [-60.936106924051785, -14.750680036381382], [-60.936106924051785, -14.759663189222579]]]}, 'id': '+13243+9991', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -14.813562106269742], [-60.9271237712106, -14.813562106269742], [-60.9271237712106, -14.804578953428546], [-60.936106924051785, -14.804578953428546], [-60.936106924051785, -14.813562106269742]]]}, 'id': '+13243+9997', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -14.993225163093655], [-60.91814061836941, -14.993225163093655], [-60.91814061836941, -14.984242010252458], [-60.936106924051785, -14.984242010252458], [-60.936106924051785, -14.993225163093655]]]}, 'id': '+13244+10017', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -15.298652359694287], [-60.91814061836941, -15.298652359694287], [-60.91814061836941, -15.289669206853091], [-60.9271237712106, -15.289669206853091], [-60.9271237712106, -15.298652359694287]]]}, 'id': '+13244+10051', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -15.334584971059073], [-60.91814061836941, -15.334584971059073], [-60.91814061836941, -15.325601818217876], [-60.9271237712106, -15.325601818217876], [-60.9271237712106, -15.334584971059073]]]}, 'id': '+13244+10055', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -15.388483888106236], [-60.91814061836941, -15.388483888106236], [-60.91814061836941, -15.370517582423844], [-60.90915746552821, -15.370517582423844], [-60.90915746552821, -15.361534429582647], [-60.91814061836941, -15.361534429582647], [-60.91814061836941, -15.370517582423844], [-60.9271237712106, -15.370517582423844], [-60.9271237712106, -15.388483888106236]]]}, 'id': '+13244+10061', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -15.415433346629825], [-60.91814061836941, -15.415433346629825], [-60.91814061836941, -15.40645019378863], [-60.90915746552821, -15.40645019378863], [-60.90915746552821, -15.397467040947433], [-60.91814061836941, -15.397467040947433], [-60.91814061836941, -15.40645019378863], [-60.9271237712106, -15.40645019378863], [-60.9271237712106, -15.415433346629825]]]}, 'id': '+13244+10064', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -15.648995320500902], [-60.91814061836941, -15.648995320500902], [-60.91814061836941, -15.631029014818509], [-60.9271237712106, -15.631029014818509], [-60.9271237712106, -15.648995320500902]]]}, 'id': '+13244+10090', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -15.8286583773248], [-60.91814061836941, -15.8286583773248], [-60.91814061836941, -15.819675224483603], [-60.9271237712106, -15.819675224483603], [-60.9271237712106, -15.8286583773248]]]}, 'id': '+13244+10110', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -16.062220351195876], [-60.91814061836941, -16.062220351195876], [-60.91814061836941, -16.05323719835468], [-60.90915746552821, -16.05323719835468], [-60.90915746552821, -16.026287739831105], [-60.91814061836941, -16.026287739831105], [-60.91814061836941, -16.01730458698991], [-60.9271237712106, -16.01730458698991], [-60.9271237712106, -16.026287739831105], [-60.91814061836941, -16.026287739831105], [-60.91814061836941, -16.05323719835468], [-60.9271237712106, -16.05323719835468], [-60.9271237712106, -16.062220351195876]]]}, 'id': '+13244+10136', 'properties': {'count': 5, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -16.12510242108425], [-60.91814061836941, -16.12510242108425], [-60.91814061836941, -16.116119268243054], [-60.9271237712106, -16.116119268243054], [-60.9271237712106, -16.12510242108425]]]}, 'id': '+13244+10143', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -16.223917102337396], [-60.91814061836941, -16.223917102337396], [-60.91814061836941, -16.2149339494962], [-60.9271237712106, -16.2149339494962], [-60.9271237712106, -16.223917102337396]]]}, 'id': '+13244+10154', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -16.37663070063772], [-60.91814061836941, -16.37663070063772], [-60.91814061836941, -16.367647547796523], [-60.9271237712106, -16.367647547796523], [-60.9271237712106, -16.37663070063772]]]}, 'id': '+13244+10171', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -16.394597006320097], [-60.91814061836941, -16.394597006320097], [-60.91814061836941, -16.385613853478915], [-60.9271237712106, -16.385613853478915], [-60.9271237712106, -16.394597006320097]]]}, 'id': '+13244+10173', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -16.45747907620847], [-60.91814061836941, -16.45747907620847], [-60.91814061836941, -16.448495923367275], [-60.9271237712106, -16.448495923367275], [-60.9271237712106, -16.45747907620847]]]}, 'id': '+13244+10180', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -16.48442853473206], [-60.91814061836941, -16.48442853473206], [-60.91814061836941, -16.475445381890864], [-60.936106924051785, -16.475445381890864], [-60.936106924051785, -16.48442853473206]]]}, 'id': '+13244+10183', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -13.546937555661216], [-60.91814061836941, -13.546937555661216], [-60.91814061836941, -13.53795440282002], [-60.9271237712106, -13.53795440282002], [-60.9271237712106, -13.546937555661216]]]}, 'id': '+13244+9856', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -13.780499529532293], [-60.91814061836941, -13.780499529532293], [-60.91814061836941, -13.771516376691096], [-60.9271237712106, -13.771516376691096], [-60.9271237712106, -13.780499529532293]]]}, 'id': '+13244+9882', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -14.64288220228704], [-60.91814061836941, -14.64288220228704], [-60.91814061836941, -14.624915896604648], [-60.936106924051785, -14.624915896604648], [-60.936106924051785, -14.64288220228704]]]}, 'id': '+13244+9978', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -14.651865355128237], [-60.91814061836941, -14.651865355128237], [-60.91814061836941, -14.64288220228704], [-60.9271237712106, -14.64288220228704], [-60.9271237712106, -14.651865355128237]]]}, 'id': '+13244+9979', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -14.687797966493008], [-60.91814061836941, -14.687797966493008], [-60.91814061836941, -14.66983166081063], [-60.9271237712106, -14.66983166081063], [-60.9271237712106, -14.687797966493008]]]}, 'id': '+13244+9983', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -14.768646342063775], [-60.91814061836941, -14.768646342063775], [-60.91814061836941, -14.759663189222579], [-60.936106924051785, -14.759663189222579], [-60.936106924051785, -14.768646342063775]]]}, 'id': '+13244+9992', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -14.840511564793331], [-60.90915746552821, -14.840511564793331], [-60.90915746552821, -14.831528411952135], [-60.91814061836941, -14.831528411952135], [-60.91814061836941, -14.822545259110939], [-60.9271237712106, -14.822545259110939], [-60.9271237712106, -14.813562106269742], [-60.95407322973418, -14.813562106269742], [-60.95407322973418, -14.804578953428546], [-60.936106924051785, -14.804578953428546], [-60.936106924051785, -14.79559580058735], [-60.963056382575374, -14.79559580058735], [-60.963056382575374, -14.813562106269742], [-60.97203953541657, -14.813562106269742], [-60.97203953541657, -14.804578953428546], [-60.99000584109896, -14.804578953428546], [-60.99000584109896, -14.831528411952135], [-60.95407322973418, -14.831528411952135], [-60.95407322973418, -14.822545259110939], [-60.94509007689298, -14.822545259110939], [-60.94509007689298, -14.840511564793331], [-60.936106924051785, -14.840511564793331], [-60.936106924051785, -14.822545259110939], [-60.9271237712106, -14.822545259110939], [-60.9271237712106, -14.840511564793331]]]}, 'id': '+13245+10000', 'properties': {'count': 22, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.9271237712106, -14.849494717634528], [-60.90915746552821, -14.849494717634528], [-60.90915746552821, -14.840511564793331], [-60.9271237712106, -14.840511564793331], [-60.9271237712106, -14.849494717634528]]]}, 'id': '+13245+10001', 'properties': {'count': 2, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.91814061836941, -14.912376787522888], [-60.90915746552821, -14.912376787522888], [-60.90915746552821, -14.903393634681692], [-60.91814061836941, -14.903393634681692], [-60.91814061836941, -14.89441048184051], [-60.9271237712106, -14.89441048184051], [-60.9271237712106, -14.903393634681692], [-60.91814061836941, -14.903393634681692], [-60.91814061836941, -14.912376787522888]]]}, 'id': '+13245+10008', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.91814061836941, -15.487298569359382], [-60.90915746552821, -15.487298569359382], [-60.90915746552821, -15.469332263677003], [-60.91814061836941, -15.469332263677003], [-60.91814061836941, -15.487298569359382]]]}, 'id': '+13245+10072', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.91814061836941, -15.505264875041775], [-60.90915746552821, -15.505264875041775], [-60.90915746552821, -15.496281722200578], [-60.900174312687014, -15.496281722200578], [-60.900174312687014, -15.469332263677003], [-60.90915746552821, -15.469332263677003], [-60.90915746552821, -15.496281722200578], [-60.91814061836941, -15.496281722200578], [-60.91814061836941, -15.505264875041775]]]}, 'id': '+13245+10074', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.91814061836941, -15.90052360005437], [-60.90915746552821, -15.90052360005437], [-60.90915746552821, -15.891540447213174], [-60.91814061836941, -15.891540447213174], [-60.91814061836941, -15.90052360005437]]]}, 'id': '+13245+10118', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.91814061836941, -15.999338281307516], [-60.90915746552821, -15.999338281307516], [-60.90915746552821, -15.99035512846632], [-60.89119115984582, -15.99035512846632], [-60.89119115984582, -15.981371975625123], [-60.900174312687014, -15.981371975625123], [-60.900174312687014, -15.96340566994273], [-60.88220800700462, -15.96340566994273], [-60.88220800700462, -15.954422517101534], [-60.91814061836941, -15.954422517101534], [-60.91814061836941, -15.96340566994273], [-60.90915746552821, -15.96340566994273], [-60.90915746552821, -15.972388822783927], [-60.91814061836941, -15.972388822783927], [-60.91814061836941, -15.981371975625123], [-60.90915746552821, -15.981371975625123], [-60.90915746552821, -15.99035512846632], [-60.91814061836941, -15.99035512846632], [-60.91814061836941, -15.999338281307516]]]}, 'id': '+13245+10129', 'properties': {'count': 10, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.91814061836941, -16.24188340801979], [-60.90915746552821, -16.24188340801979], [-60.90915746552821, -16.205950796655003], [-60.89119115984582, -16.205950796655003], [-60.89119115984582, -16.2149339494962], [-60.88220800700462, -16.2149339494962], [-60.88220800700462, -16.205950796655003], [-60.89119115984582, -16.205950796655003], [-60.89119115984582, -16.18798449097261], [-60.873224854163425, -16.18798449097261], [-60.873224854163425, -16.179001338131414], [-60.89119115984582, -16.179001338131414], [-60.89119115984582, -16.18798449097261], [-60.900174312687014, -16.18798449097261], [-60.900174312687014, -16.196967643813807], [-60.90915746552821, -16.196967643813807], [-60.90915746552821, -16.205950796655003], [-60.91814061836941, -16.205950796655003], [-60.91814061836941, -16.223917102337396], [-60.9271237712106, -16.223917102337396], [-60.9271237712106, -16.2149339494962], [-60.936106924051785, -16.2149339494962], [-60.936106924051785, -16.223917102337396], [-60.9271237712106, -16.223917102337396], [-60.9271237712106, -16.232900255178592], [-60.91814061836941, -16.232900255178592], [-60.91814061836941, -16.24188340801979]]]}, 'id': '+13245+10156', 'properties': {'count': 12, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.91814061836941, -16.268832866543377], [-60.90915746552821, -16.268832866543377], [-60.90915746552821, -16.25984971370218], [-60.91814061836941, -16.25984971370218], [-60.91814061836941, -16.268832866543377]]]}, 'id': '+13245+10159', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.91814061836941, -16.27781601938456], [-60.90915746552821, -16.27781601938456], [-60.90915746552821, -16.268832866543377], [-60.91814061836941, -16.268832866543377], [-60.91814061836941, -16.25984971370218], [-60.9271237712106, -16.25984971370218], [-60.9271237712106, -16.268832866543377], [-60.91814061836941, -16.268832866543377], [-60.91814061836941, -16.27781601938456]]]}, 'id': '+13245+10160', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.936106924051785, -16.32273178359054], [-60.90915746552821, -16.32273178359054], [-60.90915746552821, -16.313748630749345], [-60.91814061836941, -16.313748630749345], [-60.91814061836941, -16.30476547790815], [-60.9271237712106, -16.30476547790815], [-60.9271237712106, -16.313748630749345], [-60.936106924051785, -16.313748630749345], [-60.936106924051785, -16.32273178359054]]]}, 'id': '+13245+10165', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.91814061836941, -16.37663070063772], [-60.90915746552821, -16.37663070063772], [-60.90915746552821, -16.367647547796523], [-60.91814061836941, -16.367647547796523], [-60.91814061836941, -16.37663070063772]]]}, 'id': '+13245+10171', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.91814061836941, -16.394597006320097], [-60.90915746552821, -16.394597006320097], [-60.90915746552821, -16.385613853478915], [-60.91814061836941, -16.385613853478915], [-60.91814061836941, -16.394597006320097]]]}, 'id': '+13245+10173', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.91814061836941, -16.48442853473206], [-60.90915746552821, -16.48442853473206], [-60.90915746552821, -16.475445381890864], [-60.91814061836941, -16.475445381890864], [-60.91814061836941, -16.45747907620847], [-60.90915746552821, -16.45747907620847], [-60.90915746552821, -16.466462229049668], [-60.900174312687014, -16.466462229049668], [-60.900174312687014, -16.45747907620847], [-60.90915746552821, -16.45747907620847], [-60.90915746552821, -16.448495923367275], [-60.91814061836941, -16.448495923367275], [-60.91814061836941, -16.43951277052608], [-60.936106924051785, -16.43951277052608], [-60.936106924051785, -16.45747907620847], [-60.9271237712106, -16.45747907620847], [-60.9271237712106, -16.466462229049668], [-60.936106924051785, -16.466462229049668], [-60.936106924051785, -16.475445381890864], [-60.91814061836941, -16.475445381890864], [-60.91814061836941, -16.48442853473206]], [[-60.91814061836941, -16.45747907620847], [-60.91814061836941, -16.448495923367275], [-60.9271237712106, -16.448495923367275], [-60.9271237712106, -16.45747907620847], [-60.91814061836941, -16.45747907620847]]]}, 'id': '+13245+10183', 'properties': {'count': 9, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.91814061836941, -13.69965115396154], [-60.90915746552821, -13.69965115396154], [-60.90915746552821, -13.690668001120343], [-60.91814061836941, -13.690668001120343], [-60.91814061836941, -13.681684848279147], [-60.9271237712106, -13.681684848279147], [-60.9271237712106, -13.690668001120343], [-60.91814061836941, -13.690668001120343], [-60.91814061836941, -13.69965115396154]]]}, 'id': '+13245+9873', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.91814061836941, -14.64288220228704], [-60.90915746552821, -14.64288220228704], [-60.90915746552821, -14.633899049445844], [-60.91814061836941, -14.633899049445844], [-60.91814061836941, -14.64288220228704]]]}, 'id': '+13245+9978', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.91814061836941, -15.31661866537668], [-60.900174312687014, -15.31661866537668], [-60.900174312687014, -15.307635512535484], [-60.88220800700462, -15.307635512535484], [-60.88220800700462, -15.262719748329502], [-60.89119115984582, -15.262719748329502], [-60.89119115984582, -15.298652359694287], [-60.900174312687014, -15.298652359694287], [-60.900174312687014, -15.280686054011895], [-60.91814061836941, -15.280686054011895], [-60.91814061836941, -15.298652359694287], [-60.9271237712106, -15.298652359694287], [-60.9271237712106, -15.289669206853091], [-60.94509007689298, -15.289669206853091], [-60.94509007689298, -15.298652359694287], [-60.936106924051785, -15.298652359694287], [-60.936106924051785, -15.307635512535484], [-60.91814061836941, -15.307635512535484], [-60.91814061836941, -15.31661866537668]]]}, 'id': '+13246+10053', 'properties': {'count': 18, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.91814061836941, -15.388483888106236], [-60.900174312687014, -15.388483888106236], [-60.900174312687014, -15.37950073526504], [-60.90915746552821, -15.37950073526504], [-60.90915746552821, -15.370517582423844], [-60.91814061836941, -15.370517582423844], [-60.91814061836941, -15.361534429582647], [-60.900174312687014, -15.361534429582647], [-60.900174312687014, -15.352551276741465], [-60.9271237712106, -15.352551276741465], [-60.9271237712106, -15.343568123900269], [-60.936106924051785, -15.343568123900269], [-60.936106924051785, -15.352551276741465], [-60.9271237712106, -15.352551276741465], [-60.9271237712106, -15.370517582423844], [-60.91814061836941, -15.370517582423844], [-60.91814061836941, -15.388483888106236]]]}, 'id': '+13246+10061', 'properties': {'count': 8, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.90915746552821, -15.882557294371978], [-60.900174312687014, -15.882557294371978], [-60.900174312687014, -15.873574141530781], [-60.90915746552821, -15.873574141530781], [-60.90915746552821, -15.882557294371978]]]}, 'id': '+13246+10116', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.90915746552821, -16.044254045513483], [-60.900174312687014, -16.044254045513483], [-60.900174312687014, -16.0352708926723], [-60.90915746552821, -16.0352708926723], [-60.90915746552821, -16.044254045513483]]]}, 'id': '+13246+10134', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.90915746552821, -16.268832866543377], [-60.900174312687014, -16.268832866543377], [-60.900174312687014, -16.25984971370218], [-60.90915746552821, -16.25984971370218], [-60.90915746552821, -16.268832866543377]]]}, 'id': '+13246+10159', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.90915746552821, -16.37663070063772], [-60.900174312687014, -16.37663070063772], [-60.900174312687014, -16.34968124211413], [-60.9271237712106, -16.34968124211413], [-60.9271237712106, -16.367647547796523], [-60.91814061836941, -16.367647547796523], [-60.91814061836941, -16.358664394955326], [-60.90915746552821, -16.358664394955326], [-60.90915746552821, -16.37663070063772]]]}, 'id': '+13246+10171', 'properties': {'count': 6, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.90915746552821, -16.48442853473206], [-60.900174312687014, -16.48442853473206], [-60.900174312687014, -16.475445381890864], [-60.89119115984582, -16.475445381890864], [-60.89119115984582, -16.466462229049668], [-60.88220800700462, -16.466462229049668], [-60.88220800700462, -16.475445381890864], [-60.873224854163425, -16.475445381890864], [-60.873224854163425, -16.466462229049668], [-60.86424170132223, -16.466462229049668], [-60.86424170132223, -16.45747907620847], [-60.85525854848103, -16.45747907620847], [-60.85525854848103, -16.448495923367275], [-60.86424170132223, -16.448495923367275], [-60.86424170132223, -16.421546464843686], [-60.873224854163425, -16.421546464843686], [-60.873224854163425, -16.43951277052608], [-60.88220800700462, -16.43951277052608], [-60.88220800700462, -16.421546464843686], [-60.900174312687014, -16.421546464843686], [-60.900174312687014, -16.41256331200249], [-60.90915746552821, -16.41256331200249], [-60.90915746552821, -16.403580159161294], [-60.91814061836941, -16.403580159161294], [-60.91814061836941, -16.41256331200249], [-60.90915746552821, -16.41256331200249], [-60.90915746552821, -16.421546464843686], [-60.91814061836941, -16.421546464843686], [-60.91814061836941, -16.430529617684883], [-60.9271237712106, -16.430529617684883], [-60.9271237712106, -16.43951277052608], [-60.90915746552821, -16.43951277052608], [-60.90915746552821, -16.448495923367275], [-60.900174312687014, -16.448495923367275], [-60.900174312687014, -16.475445381890864], [-60.90915746552821, -16.475445381890864], [-60.90915746552821, -16.48442853473206]]]}, 'id': '+13246+10183', 'properties': {'count': 30, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.90915746552821, -16.50239484041444], [-60.900174312687014, -16.50239484041444], [-60.900174312687014, -16.493411687573257], [-60.89119115984582, -16.493411687573257], [-60.89119115984582, -16.48442853473206], [-60.900174312687014, -16.48442853473206], [-60.900174312687014, -16.493411687573257], [-60.90915746552821, -16.493411687573257], [-60.90915746552821, -16.50239484041444]]]}, 'id': '+13246+10185', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.90915746552821, -16.54731060462042], [-60.900174312687014, -16.54731060462042], [-60.900174312687014, -16.529344298938028], [-60.90915746552821, -16.529344298938028], [-60.90915746552821, -16.54731060462042]]]}, 'id': '+13246+10190', 'properties': {'count': 2, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.90915746552821, -13.744566918167521], [-60.900174312687014, -13.744566918167521], [-60.900174312687014, -13.735583765326325], [-60.90915746552821, -13.735583765326325], [-60.90915746552821, -13.744566918167521]]]}, 'id': '+13246+9878', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.90915746552821, -13.798465835214685], [-60.900174312687014, -13.798465835214685], [-60.900174312687014, -13.789482682373489], [-60.90915746552821, -13.789482682373489], [-60.90915746552821, -13.798465835214685]]]}, 'id': '+13246+9884', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.90915746552821, -13.816432140897078], [-60.900174312687014, -13.816432140897078], [-60.900174312687014, -13.807448988055882], [-60.90915746552821, -13.807448988055882], [-60.90915746552821, -13.816432140897078]]]}, 'id': '+13246+9886', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.900174312687014, -15.298652359694287], [-60.89119115984582, -15.298652359694287], [-60.89119115984582, -15.271702901170698], [-60.900174312687014, -15.271702901170698], [-60.900174312687014, -15.298652359694287]]]}, 'id': '+13247+10051', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.900174312687014, -15.51424802788297], [-60.89119115984582, -15.51424802788297], [-60.89119115984582, -15.505264875041775], [-60.900174312687014, -15.505264875041775], [-60.900174312687014, -15.51424802788297]]]}, 'id': '+13247+10075', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.900174312687014, -15.532214333565364], [-60.89119115984582, -15.532214333565364], [-60.89119115984582, -15.523231180724167], [-60.900174312687014, -15.523231180724167], [-60.900174312687014, -15.532214333565364]]]}, 'id': '+13247+10077', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.900174312687014, -16.026287739831105], [-60.89119115984582, -16.026287739831105], [-60.89119115984582, -16.01730458698991], [-60.900174312687014, -16.01730458698991], [-60.900174312687014, -16.026287739831105]]]}, 'id': '+13247+10132', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.900174312687014, -16.062220351195876], [-60.89119115984582, -16.062220351195876], [-60.89119115984582, -16.05323719835468], [-60.900174312687014, -16.05323719835468], [-60.900174312687014, -16.062220351195876]]]}, 'id': '+13247+10136', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.900174312687014, -16.25984971370218], [-60.89119115984582, -16.25984971370218], [-60.89119115984582, -16.250866560860985], [-60.900174312687014, -16.250866560860985], [-60.900174312687014, -16.25984971370218]]]}, 'id': '+13247+10158', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.900174312687014, -16.331714936431737], [-60.89119115984582, -16.331714936431737], [-60.89119115984582, -16.313748630749345], [-60.873224854163425, -16.313748630749345], [-60.873224854163425, -16.30476547790815], [-60.88220800700462, -16.30476547790815], [-60.88220800700462, -16.286799172225756], [-60.873224854163425, -16.286799172225756], [-60.873224854163425, -16.268832866543377], [-60.88220800700462, -16.268832866543377], [-60.88220800700462, -16.27781601938456], [-60.89119115984582, -16.27781601938456], [-60.89119115984582, -16.286799172225756], [-60.900174312687014, -16.286799172225756], [-60.900174312687014, -16.27781601938456], [-60.90915746552821, -16.27781601938456], [-60.90915746552821, -16.286799172225756], [-60.91814061836941, -16.286799172225756], [-60.91814061836941, -16.27781601938456], [-60.9271237712106, -16.27781601938456], [-60.9271237712106, -16.286799172225756], [-60.91814061836941, -16.286799172225756], [-60.91814061836941, -16.295782325066952], [-60.90915746552821, -16.295782325066952], [-60.90915746552821, -16.30476547790815], [-60.89119115984582, -16.30476547790815], [-60.89119115984582, -16.313748630749345], [-60.900174312687014, -16.313748630749345], [-60.900174312687014, -16.331714936431737]], [[-60.900174312687014, -16.295782325066952], [-60.900174312687014, -16.286799172225756], [-60.90915746552821, -16.286799172225756], [-60.90915746552821, -16.295782325066952], [-60.900174312687014, -16.295782325066952]]]}, 'id': '+13247+10166', 'properties': {'count': 15, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.90915746552821, -16.394597006320097], [-60.89119115984582, -16.394597006320097], [-60.89119115984582, -16.37663070063772], [-60.900174312687014, -16.37663070063772], [-60.900174312687014, -16.385613853478915], [-60.90915746552821, -16.385613853478915], [-60.90915746552821, -16.394597006320097]]]}, 'id': '+13247+10173', 'properties': {'count': 3, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.900174312687014, -16.421546464843686], [-60.89119115984582, -16.421546464843686], [-60.89119115984582, -16.41256331200249], [-60.88220800700462, -16.41256331200249], [-60.88220800700462, -16.394597006320097], [-60.89119115984582, -16.394597006320097], [-60.89119115984582, -16.403580159161294], [-60.900174312687014, -16.403580159161294], [-60.900174312687014, -16.394597006320097], [-60.91814061836941, -16.394597006320097], [-60.91814061836941, -16.403580159161294], [-60.936106924051785, -16.403580159161294], [-60.936106924051785, -16.41256331200249], [-60.9271237712106, -16.41256331200249], [-60.9271237712106, -16.421546464843686], [-60.91814061836941, -16.421546464843686], [-60.91814061836941, -16.403580159161294], [-60.90915746552821, -16.403580159161294], [-60.90915746552821, -16.41256331200249], [-60.900174312687014, -16.41256331200249], [-60.900174312687014, -16.421546464843686]]]}, 'id': '+13247+10176', 'properties': {'count': 10, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.900174312687014, -16.48442853473206], [-60.89119115984582, -16.48442853473206], [-60.89119115984582, -16.475445381890864], [-60.900174312687014, -16.475445381890864], [-60.900174312687014, -16.48442853473206]]]}, 'id': '+13247+10183', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.900174312687014, -16.50239484041444], [-60.89119115984582, -16.50239484041444], [-60.89119115984582, -16.493411687573257], [-60.900174312687014, -16.493411687573257], [-60.900174312687014, -16.50239484041444]]]}, 'id': '+13247+10185', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.900174312687014, -16.511377993255635], [-60.89119115984582, -16.511377993255635], [-60.89119115984582, -16.50239484041444], [-60.900174312687014, -16.50239484041444], [-60.900174312687014, -16.511377993255635]]]}, 'id': '+13247+10186', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.900174312687014, -16.520361146096832], [-60.89119115984582, -16.520361146096832], [-60.89119115984582, -16.511377993255635], [-60.900174312687014, -16.511377993255635], [-60.900174312687014, -16.520361146096832]]]}, 'id': '+13247+10187', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.900174312687014, -16.529344298938028], [-60.89119115984582, -16.529344298938028], [-60.89119115984582, -16.520361146096832], [-60.900174312687014, -16.520361146096832], [-60.900174312687014, -16.529344298938028]]]}, 'id': '+13247+10188', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.89119115984582, -15.343568123900269], [-60.88220800700462, -15.343568123900269], [-60.88220800700462, -15.325601818217876], [-60.873224854163425, -15.325601818217876], [-60.873224854163425, -15.334584971059073], [-60.86424170132223, -15.334584971059073], [-60.86424170132223, -15.325601818217876], [-60.873224854163425, -15.325601818217876], [-60.873224854163425, -15.31661866537668], [-60.88220800700462, -15.31661866537668], [-60.88220800700462, -15.325601818217876], [-60.89119115984582, -15.325601818217876], [-60.89119115984582, -15.343568123900269]]]}, 'id': '+13248+10056', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.90915746552821, -15.40645019378863], [-60.88220800700462, -15.40645019378863], [-60.88220800700462, -15.388483888106236], [-60.89119115984582, -15.388483888106236], [-60.89119115984582, -15.397467040947433], [-60.90915746552821, -15.397467040947433], [-60.90915746552821, -15.40645019378863]]]}, 'id': '+13248+10063', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.900174312687014, -15.810692071642421], [-60.88220800700462, -15.810692071642421], [-60.88220800700462, -15.801708918801225], [-60.873224854163425, -15.801708918801225], [-60.873224854163425, -15.792725765960029], [-60.86424170132223, -15.792725765960029], [-60.86424170132223, -15.783742613118832], [-60.88220800700462, -15.783742613118832], [-60.88220800700462, -15.801708918801225], [-60.89119115984582, -15.801708918801225], [-60.89119115984582, -15.76577630743644], [-60.88220800700462, -15.76577630743644], [-60.88220800700462, -15.774759460277636], [-60.873224854163425, -15.774759460277636], [-60.873224854163425, -15.76577630743644], [-60.88220800700462, -15.76577630743644], [-60.88220800700462, -15.756793154595243], [-60.873224854163425, -15.756793154595243], [-60.873224854163425, -15.747810001754047], [-60.86424170132223, -15.747810001754047], [-60.86424170132223, -15.756793154595243], [-60.85525854848103, -15.756793154595243], [-60.85525854848103, -15.729843696071654], [-60.846275395639836, -15.729843696071654], [-60.846275395639836, -15.73882684891285], [-60.83729224279864, -15.73882684891285], [-60.83729224279864, -15.720860543230458], [-60.82830908995744, -15.720860543230458], [-60.82830908995744, -15.73882684891285], [-60.81932593711625, -15.73882684891285], [-60.81932593711625, -15.747810001754047], [-60.810342784275065, -15.747810001754047], [-60.810342784275065, -15.73882684891285], [-60.81932593711625, -15.73882684891285], [-60.81932593711625, -15.720860543230458], [-60.82830908995744, -15.720860543230458], [-60.82830908995744, -15.702894237548065], [-60.846275395639836, -15.702894237548065], [-60.846275395639836, -15.684927931865687], [-60.83729224279864, -15.684927931865687], [-60.83729224279864, -15.67594477902449], [-60.86424170132223, -15.67594477902449], [-60.86424170132223, -15.684927931865687], [-60.900174312687014, -15.684927931865687], [-60.900174312687014, -15.693911084706883], [-60.86424170132223, -15.693911084706883], [-60.86424170132223, -15.684927931865687], [-60.85525854848103, -15.684927931865687], [-60.85525854848103, -15.711877390389262], [-60.873224854163425, -15.711877390389262], [-60.873224854163425, -15.702894237548065], [-60.90915746552821, -15.702894237548065], [-60.90915746552821, -15.720860543230458], [-60.900174312687014, -15.720860543230458], [-60.900174312687014, -15.729843696071654], [-60.90915746552821, -15.729843696071654], [-60.90915746552821, -15.73882684891285], [-60.900174312687014, -15.73882684891285], [-60.900174312687014, -15.747810001754047], [-60.91814061836941, -15.747810001754047], [-60.91814061836941, -15.76577630743644], [-60.9271237712106, -15.76577630743644], [-60.9271237712106, -15.774759460277636], [-60.91814061836941, -15.774759460277636], [-60.91814061836941, -15.76577630743644], [-60.900174312687014, -15.76577630743644], [-60.900174312687014, -15.774759460277636], [-60.90915746552821, -15.774759460277636], [-60.90915746552821, -15.801708918801225], [-60.900174312687014, -15.801708918801225], [-60.900174312687014, -15.810692071642421]], [[-60.85525854848103, -15.729843696071654], [-60.85525854848103, -15.720860543230458], [-60.86424170132223, -15.720860543230458], [-60.86424170132223, -15.729843696071654], [-60.85525854848103, -15.729843696071654]], [[-60.88220800700462, -15.73882684891285], [-60.88220800700462, -15.729843696071654], [-60.89119115984582, -15.729843696071654], [-60.89119115984582, -15.73882684891285], [-60.88220800700462, -15.73882684891285]], [[-60.86424170132223, -15.73882684891285], [-60.86424170132223, -15.729843696071654], [-60.873224854163425, -15.729843696071654], [-60.873224854163425, -15.73882684891285], [-60.86424170132223, -15.73882684891285]], [[-60.89119115984582, -15.756793154595243], [-60.89119115984582, -15.747810001754047], [-60.900174312687014, -15.747810001754047], [-60.900174312687014, -15.756793154595243], [-60.89119115984582, -15.756793154595243]]]}, 'id': '+13248+10108', 'properties': {'count': 67, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.89119115984582, -15.837641530165996], [-60.88220800700462, -15.837641530165996], [-60.88220800700462, -15.8286583773248], [-60.89119115984582, -15.8286583773248], [-60.89119115984582, -15.837641530165996]]]}, 'id': '+13248+10111', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.89119115984582, -15.891540447213174], [-60.88220800700462, -15.891540447213174], [-60.88220800700462, -15.882557294371978], [-60.89119115984582, -15.882557294371978], [-60.89119115984582, -15.891540447213174]]]}, 'id': '+13248+10117', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.89119115984582, -15.909506752895567], [-60.88220800700462, -15.909506752895567], [-60.88220800700462, -15.90052360005437], [-60.89119115984582, -15.90052360005437], [-60.89119115984582, -15.909506752895567]]]}, 'id': '+13248+10119', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.89119115984582, -16.0352708926723], [-60.88220800700462, -16.0352708926723], [-60.88220800700462, -16.026287739831105], [-60.89119115984582, -16.026287739831105], [-60.89119115984582, -16.0352708926723]]]}, 'id': '+13248+10133', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.900174312687014, -16.250866560860985], [-60.88220800700462, -16.250866560860985], [-60.88220800700462, -16.24188340801979], [-60.900174312687014, -16.24188340801979], [-60.900174312687014, -16.250866560860985]]]}, 'id': '+13248+10157', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.89119115984582, -16.358664394955326], [-60.88220800700462, -16.358664394955326], [-60.88220800700462, -16.34968124211413], [-60.89119115984582, -16.34968124211413], [-60.89119115984582, -16.340698089272934], [-60.900174312687014, -16.340698089272934], [-60.900174312687014, -16.34968124211413], [-60.89119115984582, -16.34968124211413], [-60.89119115984582, -16.358664394955326]]]}, 'id': '+13248+10169', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.89119115984582, -16.592226368826402], [-60.88220800700462, -16.592226368826402], [-60.88220800700462, -16.583243215985206], [-60.89119115984582, -16.583243215985206], [-60.89119115984582, -16.592226368826402]]]}, 'id': '+13248+10195', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.89119115984582, -16.610192674508795], [-60.88220800700462, -16.610192674508795], [-60.88220800700462, -16.6012095216676], [-60.89119115984582, -16.6012095216676], [-60.89119115984582, -16.610192674508795]]]}, 'id': '+13248+10197', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.89119115984582, -13.618802778390787], [-60.88220800700462, -13.618802778390787], [-60.88220800700462, -13.60981962554959], [-60.89119115984582, -13.60981962554959], [-60.89119115984582, -13.618802778390787]]]}, 'id': '+13248+9864', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.89119115984582, -13.645752236914362], [-60.88220800700462, -13.645752236914362], [-60.88220800700462, -13.63676908407318], [-60.89119115984582, -13.63676908407318], [-60.89119115984582, -13.645752236914362]]]}, 'id': '+13248+9867', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.89119115984582, -13.663718542596754], [-60.88220800700462, -13.663718542596754], [-60.88220800700462, -13.654735389755558], [-60.873224854163425, -13.654735389755558], [-60.873224854163425, -13.645752236914362], [-60.88220800700462, -13.645752236914362], [-60.88220800700462, -13.654735389755558], [-60.89119115984582, -13.654735389755558], [-60.89119115984582, -13.663718542596754]]]}, 'id': '+13248+9869', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.89119115984582, -13.789482682373489], [-60.88220800700462, -13.789482682373489], [-60.88220800700462, -13.780499529532293], [-60.89119115984582, -13.780499529532293], [-60.89119115984582, -13.789482682373489]]]}, 'id': '+13248+9883', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.89119115984582, -13.798465835214685], [-60.88220800700462, -13.798465835214685], [-60.88220800700462, -13.789482682373489], [-60.89119115984582, -13.789482682373489], [-60.89119115984582, -13.798465835214685]]]}, 'id': '+13248+9884', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.88220800700462, -15.199837678441142], [-60.873224854163425, -15.199837678441142], [-60.873224854163425, -15.190854525599946], [-60.88220800700462, -15.190854525599946], [-60.88220800700462, -15.199837678441142]]]}, 'id': '+13249+10040', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.88220800700462, -15.343568123900269], [-60.873224854163425, -15.343568123900269], [-60.873224854163425, -15.334584971059073], [-60.88220800700462, -15.334584971059073], [-60.88220800700462, -15.343568123900269]]]}, 'id': '+13249+10056', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.88220800700462, -15.37950073526504], [-60.873224854163425, -15.37950073526504], [-60.873224854163425, -15.370517582423844], [-60.88220800700462, -15.370517582423844], [-60.88220800700462, -15.37950073526504]]]}, 'id': '+13249+10060', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.88220800700462, -15.783742613118832], [-60.873224854163425, -15.783742613118832], [-60.873224854163425, -15.774759460277636], [-60.86424170132223, -15.774759460277636], [-60.86424170132223, -15.756793154595243], [-60.873224854163425, -15.756793154595243], [-60.873224854163425, -15.774759460277636], [-60.88220800700462, -15.774759460277636], [-60.88220800700462, -15.783742613118832]]]}, 'id': '+13249+10105', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.900174312687014, -15.954422517101534], [-60.873224854163425, -15.954422517101534], [-60.873224854163425, -15.945439364260338], [-60.900174312687014, -15.945439364260338], [-60.900174312687014, -15.954422517101534]]]}, 'id': '+13249+10124', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.88220800700462, -16.062220351195876], [-60.873224854163425, -16.062220351195876], [-60.873224854163425, -16.05323719835468], [-60.88220800700462, -16.05323719835468], [-60.88220800700462, -16.062220351195876]]]}, 'id': '+13249+10136', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.89119115984582, -16.143068726766643], [-60.873224854163425, -16.143068726766643], [-60.873224854163425, -16.12510242108425], [-60.88220800700462, -16.12510242108425], [-60.88220800700462, -16.116119268243054], [-60.873224854163425, -16.116119268243054], [-60.873224854163425, -16.107136115401858], [-60.88220800700462, -16.107136115401858], [-60.88220800700462, -16.08018665687827], [-60.873224854163425, -16.08018665687827], [-60.873224854163425, -16.071203504037072], [-60.88220800700462, -16.071203504037072], [-60.88220800700462, -16.08018665687827], [-60.89119115984582, -16.08018665687827], [-60.89119115984582, -16.071203504037072], [-60.900174312687014, -16.071203504037072], [-60.900174312687014, -16.062220351195876], [-60.9271237712106, -16.062220351195876], [-60.9271237712106, -16.071203504037072], [-60.91814061836941, -16.071203504037072], [-60.91814061836941, -16.08018665687827], [-60.936106924051785, -16.08018665687827], [-60.936106924051785, -16.071203504037072], [-60.94509007689298, -16.071203504037072], [-60.94509007689298, -16.08018665687827], [-60.936106924051785, -16.08018665687827], [-60.936106924051785, -16.089169809719465], [-60.94509007689298, -16.089169809719465], [-60.94509007689298, -16.09815296256066], [-60.91814061836941, -16.09815296256066], [-60.91814061836941, -16.08018665687827], [-60.90915746552821, -16.08018665687827], [-60.90915746552821, -16.107136115401858], [-60.900174312687014, -16.107136115401858], [-60.900174312687014, -16.12510242108425], [-60.89119115984582, -16.12510242108425], [-60.89119115984582, -16.143068726766643]], [[-60.89119115984582, -16.107136115401858], [-60.89119115984582, -16.09815296256066], [-60.900174312687014, -16.09815296256066], [-60.900174312687014, -16.107136115401858], [-60.89119115984582, -16.107136115401858]]]}, 'id': '+13249+10145', 'properties': {'count': 30, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.88220800700462, -16.250866560860985], [-60.873224854163425, -16.250866560860985], [-60.873224854163425, -16.232900255178592], [-60.85525854848103, -16.232900255178592], [-60.85525854848103, -16.24188340801979], [-60.846275395639836, -16.24188340801979], [-60.846275395639836, -16.232900255178592], [-60.82830908995744, -16.232900255178592], [-60.82830908995744, -16.18798449097261], [-60.83729224279864, -16.18798449097261], [-60.83729224279864, -16.205950796655003], [-60.846275395639836, -16.205950796655003], [-60.846275395639836, -16.223917102337396], [-60.85525854848103, -16.223917102337396], [-60.85525854848103, -16.205950796655003], [-60.86424170132223, -16.205950796655003], [-60.86424170132223, -16.18798449097261], [-60.85525854848103, -16.18798449097261], [-60.85525854848103, -16.170018185290218], [-60.86424170132223, -16.170018185290218], [-60.86424170132223, -16.16103503244902], [-60.900174312687014, -16.16103503244902], [-60.900174312687014, -16.15205187960784], [-60.91814061836941, -16.15205187960784], [-60.91814061836941, -16.16103503244902], [-60.9271237712106, -16.16103503244902], [-60.9271237712106, -16.15205187960784], [-60.936106924051785, -16.15205187960784], [-60.936106924051785, -16.143068726766643], [-60.963056382575374, -16.143068726766643], [-60.963056382575374, -16.134085573925447], [-60.97203953541657, -16.134085573925447], [-60.97203953541657, -16.16103503244902], [-60.98102268825777, -16.16103503244902], [-60.98102268825777, -16.179001338131414], [-60.99000584109896, -16.179001338131414], [-60.99000584109896, -16.170018185290218], [-60.99898899394016, -16.170018185290218], [-60.99898899394016, -16.179001338131414], [-60.99000584109896, -16.179001338131414], [-60.99000584109896, -16.196967643813807], [-60.97203953541657, -16.196967643813807], [-60.97203953541657, -16.18798449097261], [-60.963056382575374, -16.18798449097261], [-60.963056382575374, -16.205950796655003], [-60.95407322973418, -16.205950796655003], [-60.95407322973418, -16.2149339494962], [-60.963056382575374, -16.2149339494962], [-60.963056382575374, -16.223917102337396], [-60.936106924051785, -16.223917102337396], [-60.936106924051785, -16.232900255178592], [-60.9271237712106, -16.232900255178592], [-60.9271237712106, -16.223917102337396], [-60.936106924051785, -16.223917102337396], [-60.936106924051785, -16.2149339494962], [-60.91814061836941, -16.2149339494962], [-60.91814061836941, -16.205950796655003], [-60.9271237712106, -16.205950796655003], [-60.9271237712106, -16.196967643813807], [-60.900174312687014, -16.196967643813807], [-60.900174312687014, -16.179001338131414], [-60.873224854163425, -16.179001338131414], [-60.873224854163425, -16.170018185290218], [-60.86424170132223, -16.170018185290218], [-60.86424170132223, -16.18798449097261], [-60.873224854163425, -16.18798449097261], [-60.873224854163425, -16.196967643813807], [-60.89119115984582, -16.196967643813807], [-60.89119115984582, -16.205950796655003], [-60.873224854163425, -16.205950796655003], [-60.873224854163425, -16.2149339494962], [-60.88220800700462, -16.2149339494962], [-60.88220800700462, -16.223917102337396], [-60.89119115984582, -16.223917102337396], [-60.89119115984582, -16.232900255178592], [-60.900174312687014, -16.232900255178592], [-60.900174312687014, -16.24188340801979], [-60.89119115984582, -16.24188340801979], [-60.89119115984582, -16.232900255178592], [-60.88220800700462, -16.232900255178592], [-60.88220800700462, -16.250866560860985]], [[-60.9271237712106, -16.170018185290218], [-60.9271237712106, -16.16103503244902], [-60.936106924051785, -16.16103503244902], [-60.936106924051785, -16.170018185290218], [-60.9271237712106, -16.170018185290218]], [[-60.86424170132223, -16.223917102337396], [-60.86424170132223, -16.2149339494962], [-60.873224854163425, -16.2149339494962], [-60.873224854163425, -16.223917102337396], [-60.86424170132223, -16.223917102337396]]]}, 'id': '+13249+10157', 'properties': {'count': 95, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.89119115984582, -16.32273178359054], [-60.873224854163425, -16.32273178359054], [-60.873224854163425, -16.313748630749345], [-60.86424170132223, -16.313748630749345], [-60.86424170132223, -16.30476547790815], [-60.85525854848103, -16.30476547790815], [-60.85525854848103, -16.295782325066952], [-60.86424170132223, -16.295782325066952], [-60.86424170132223, -16.30476547790815], [-60.873224854163425, -16.30476547790815], [-60.873224854163425, -16.313748630749345], [-60.89119115984582, -16.313748630749345], [-60.89119115984582, -16.32273178359054]]]}, 'id': '+13249+10165', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.89119115984582, -16.385613853478915], [-60.873224854163425, -16.385613853478915], [-60.873224854163425, -16.37663070063772], [-60.89119115984582, -16.37663070063772], [-60.89119115984582, -16.385613853478915]]]}, 'id': '+13249+10172', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.88220800700462, -16.403580159161294], [-60.873224854163425, -16.403580159161294], [-60.873224854163425, -16.394597006320097], [-60.88220800700462, -16.394597006320097], [-60.88220800700462, -16.385613853478915], [-60.89119115984582, -16.385613853478915], [-60.89119115984582, -16.394597006320097], [-60.900174312687014, -16.394597006320097], [-60.900174312687014, -16.403580159161294], [-60.89119115984582, -16.403580159161294], [-60.89119115984582, -16.394597006320097], [-60.88220800700462, -16.394597006320097], [-60.88220800700462, -16.403580159161294]]]}, 'id': '+13249+10174', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.88220800700462, -16.421546464843686], [-60.873224854163425, -16.421546464843686], [-60.873224854163425, -16.41256331200249], [-60.88220800700462, -16.41256331200249], [-60.88220800700462, -16.421546464843686]]]}, 'id': '+13249+10176', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.88220800700462, -16.48442853473206], [-60.873224854163425, -16.48442853473206], [-60.873224854163425, -16.475445381890864], [-60.88220800700462, -16.475445381890864], [-60.88220800700462, -16.48442853473206]]]}, 'id': '+13249+10183', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.88220800700462, -16.583243215985206], [-60.873224854163425, -16.583243215985206], [-60.873224854163425, -16.57426006314401], [-60.86424170132223, -16.57426006314401], [-60.86424170132223, -16.565276910302813], [-60.873224854163425, -16.565276910302813], [-60.873224854163425, -16.57426006314401], [-60.88220800700462, -16.57426006314401], [-60.88220800700462, -16.583243215985206]]]}, 'id': '+13249+10194', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.88220800700462, -13.67270169543795], [-60.873224854163425, -13.67270169543795], [-60.873224854163425, -13.663718542596754], [-60.88220800700462, -13.663718542596754], [-60.88220800700462, -13.67270169543795]]]}, 'id': '+13249+9870', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.88220800700462, -13.843381599420667], [-60.873224854163425, -13.843381599420667], [-60.873224854163425, -13.83439844657947], [-60.88220800700462, -13.83439844657947], [-60.88220800700462, -13.843381599420667]]]}, 'id': '+13249+9889', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.873224854163425, -15.397467040947433], [-60.86424170132223, -15.397467040947433], [-60.86424170132223, -15.388483888106236], [-60.873224854163425, -15.388483888106236], [-60.873224854163425, -15.397467040947433]]]}, 'id': '+13250+10062', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.873224854163425, -15.469332263677003], [-60.86424170132223, -15.469332263677003], [-60.86424170132223, -15.460349110835807], [-60.873224854163425, -15.460349110835807], [-60.873224854163425, -15.469332263677003]]]}, 'id': '+13250+10070', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.873224854163425, -15.73882684891285], [-60.86424170132223, -15.73882684891285], [-60.86424170132223, -15.729843696071654], [-60.873224854163425, -15.729843696071654], [-60.873224854163425, -15.73882684891285]]]}, 'id': '+13250+10100', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.873224854163425, -16.01730458698991], [-60.86424170132223, -16.01730458698991], [-60.86424170132223, -16.008321434148712], [-60.873224854163425, -16.008321434148712], [-60.873224854163425, -16.01730458698991]]]}, 'id': '+13250+10131', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.873224854163425, -16.044254045513483], [-60.86424170132223, -16.044254045513483], [-60.86424170132223, -16.0352708926723], [-60.873224854163425, -16.0352708926723], [-60.873224854163425, -16.044254045513483]]]}, 'id': '+13250+10134', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.873224854163425, -16.05323719835468], [-60.86424170132223, -16.05323719835468], [-60.86424170132223, -16.044254045513483], [-60.873224854163425, -16.044254045513483], [-60.873224854163425, -16.05323719835468]]]}, 'id': '+13250+10135', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.88220800700462, -16.09815296256066], [-60.86424170132223, -16.09815296256066], [-60.86424170132223, -16.089169809719465], [-60.85525854848103, -16.089169809719465], [-60.85525854848103, -16.08018665687827], [-60.86424170132223, -16.08018665687827], [-60.86424170132223, -16.089169809719465], [-60.873224854163425, -16.089169809719465], [-60.873224854163425, -16.08018665687827], [-60.88220800700462, -16.08018665687827], [-60.88220800700462, -16.09815296256066]]]}, 'id': '+13250+10140', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.873224854163425, -16.529344298938028], [-60.86424170132223, -16.529344298938028], [-60.86424170132223, -16.520361146096832], [-60.846275395639836, -16.520361146096832], [-60.846275395639836, -16.48442853473206], [-60.85525854848103, -16.48442853473206], [-60.85525854848103, -16.511377993255635], [-60.86424170132223, -16.511377993255635], [-60.86424170132223, -16.50239484041444], [-60.873224854163425, -16.50239484041444], [-60.873224854163425, -16.511377993255635], [-60.86424170132223, -16.511377993255635], [-60.86424170132223, -16.520361146096832], [-60.873224854163425, -16.520361146096832], [-60.873224854163425, -16.529344298938028]]]}, 'id': '+13250+10188', 'properties': {'count': 7, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.873224854163425, -16.565276910302813], [-60.86424170132223, -16.565276910302813], [-60.86424170132223, -16.556293757461617], [-60.873224854163425, -16.556293757461617], [-60.873224854163425, -16.565276910302813]]]}, 'id': '+13250+10192', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.873224854163425, -13.69965115396154], [-60.86424170132223, -13.69965115396154], [-60.86424170132223, -13.690668001120343], [-60.873224854163425, -13.690668001120343], [-60.873224854163425, -13.69965115396154]]]}, 'id': '+13250+9873', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.873224854163425, -14.588983285239863], [-60.86424170132223, -14.588983285239863], [-60.86424170132223, -14.580000132398666], [-60.85525854848103, -14.580000132398666], [-60.85525854848103, -14.57101697955747], [-60.86424170132223, -14.57101697955747], [-60.86424170132223, -14.580000132398666], [-60.873224854163425, -14.580000132398666], [-60.873224854163425, -14.588983285239863]]]}, 'id': '+13250+9972', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.86424170132223, -15.388483888106236], [-60.85525854848103, -15.388483888106236], [-60.85525854848103, -15.37950073526504], [-60.86424170132223, -15.37950073526504], [-60.86424170132223, -15.388483888106236]]]}, 'id': '+13251+10061', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.86424170132223, -15.792725765960029], [-60.85525854848103, -15.792725765960029], [-60.85525854848103, -15.756793154595243], [-60.86424170132223, -15.756793154595243], [-60.86424170132223, -15.792725765960029]]]}, 'id': '+13251+10106', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.86424170132223, -15.909506752895567], [-60.85525854848103, -15.909506752895567], [-60.85525854848103, -15.90052360005437], [-60.86424170132223, -15.90052360005437], [-60.86424170132223, -15.909506752895567]]]}, 'id': '+13251+10119', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.86424170132223, -16.116119268243054], [-60.85525854848103, -16.116119268243054], [-60.85525854848103, -16.107136115401858], [-60.86424170132223, -16.107136115401858], [-60.86424170132223, -16.116119268243054]]]}, 'id': '+13251+10142', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.86424170132223, -16.27781601938456], [-60.85525854848103, -16.27781601938456], [-60.85525854848103, -16.268832866543377], [-60.86424170132223, -16.268832866543377], [-60.86424170132223, -16.27781601938456]]]}, 'id': '+13251+10160', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.86424170132223, -16.32273178359054], [-60.85525854848103, -16.32273178359054], [-60.85525854848103, -16.313748630749345], [-60.83729224279864, -16.313748630749345], [-60.83729224279864, -16.30476547790815], [-60.82830908995744, -16.30476547790815], [-60.82830908995744, -16.295782325066952], [-60.81932593711625, -16.295782325066952], [-60.81932593711625, -16.27781601938456], [-60.810342784275065, -16.27781601938456], [-60.810342784275065, -16.268832866543377], [-60.80135963143387, -16.268832866543377], [-60.80135963143387, -16.25984971370218], [-60.79237647859267, -16.25984971370218], [-60.79237647859267, -16.250866560860985], [-60.81932593711625, -16.250866560860985], [-60.81932593711625, -16.25984971370218], [-60.82830908995744, -16.25984971370218], [-60.82830908995744, -16.250866560860985], [-60.83729224279864, -16.250866560860985], [-60.83729224279864, -16.25984971370218], [-60.85525854848103, -16.25984971370218], [-60.85525854848103, -16.268832866543377], [-60.846275395639836, -16.268832866543377], [-60.846275395639836, -16.286799172225756], [-60.85525854848103, -16.286799172225756], [-60.85525854848103, -16.313748630749345], [-60.86424170132223, -16.313748630749345], [-60.86424170132223, -16.32273178359054]], [[-60.83729224279864, -16.30476547790815], [-60.83729224279864, -16.295782325066952], [-60.846275395639836, -16.295782325066952], [-60.846275395639836, -16.30476547790815], [-60.83729224279864, -16.30476547790815]]]}, 'id': '+13251+10165', 'properties': {'count': 26, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.86424170132223, -16.421546464843686], [-60.85525854848103, -16.421546464843686], [-60.85525854848103, -16.41256331200249], [-60.86424170132223, -16.41256331200249], [-60.86424170132223, -16.421546464843686]]]}, 'id': '+13251+10176', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.86424170132223, -13.825415293738274], [-60.85525854848103, -13.825415293738274], [-60.85525854848103, -13.816432140897078], [-60.86424170132223, -13.816432140897078], [-60.86424170132223, -13.825415293738274]]]}, 'id': '+13251+9887', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.86424170132223, -13.852364752261863], [-60.85525854848103, -13.852364752261863], [-60.85525854848103, -13.843381599420667], [-60.86424170132223, -13.843381599420667], [-60.86424170132223, -13.852364752261863]]]}, 'id': '+13251+9890', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.86424170132223, -14.597966438081059], [-60.85525854848103, -14.597966438081059], [-60.85525854848103, -14.588983285239863], [-60.86424170132223, -14.588983285239863], [-60.86424170132223, -14.597966438081059]]]}, 'id': '+13251+9973', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.85525854848103, -15.487298569359382], [-60.846275395639836, -15.487298569359382], [-60.846275395639836, -15.469332263677003], [-60.85525854848103, -15.469332263677003], [-60.85525854848103, -15.45136595799461], [-60.846275395639836, -15.45136595799461], [-60.846275395639836, -15.442382805153414], [-60.83729224279864, -15.442382805153414], [-60.83729224279864, -15.433399652312218], [-60.82830908995744, -15.433399652312218], [-60.82830908995744, -15.415433346629825], [-60.81932593711625, -15.415433346629825], [-60.81932593711625, -15.442382805153414], [-60.810342784275065, -15.442382805153414], [-60.810342784275065, -15.469332263677003], [-60.79237647859267, -15.469332263677003], [-60.79237647859267, -15.460349110835807], [-60.783393325751476, -15.460349110835807], [-60.783393325751476, -15.469332263677003], [-60.76542702006908, -15.469332263677003], [-60.76542702006908, -15.460349110835807], [-60.783393325751476, -15.460349110835807], [-60.783393325751476, -15.442382805153414], [-60.79237647859267, -15.442382805153414], [-60.79237647859267, -15.415433346629825], [-60.81932593711625, -15.415433346629825], [-60.81932593711625, -15.40645019378863], [-60.83729224279864, -15.40645019378863], [-60.83729224279864, -15.397467040947433], [-60.82830908995744, -15.397467040947433], [-60.82830908995744, -15.388483888106236], [-60.83729224279864, -15.388483888106236], [-60.83729224279864, -15.397467040947433], [-60.846275395639836, -15.397467040947433], [-60.846275395639836, -15.37950073526504], [-60.85525854848103, -15.37950073526504], [-60.85525854848103, -15.397467040947433], [-60.846275395639836, -15.397467040947433], [-60.846275395639836, -15.40645019378863], [-60.86424170132223, -15.40645019378863], [-60.86424170132223, -15.415433346629825], [-60.873224854163425, -15.415433346629825], [-60.873224854163425, -15.424416499471022], [-60.89119115984582, -15.424416499471022], [-60.89119115984582, -15.415433346629825], [-60.900174312687014, -15.415433346629825], [-60.900174312687014, -15.424416499471022], [-60.89119115984582, -15.424416499471022], [-60.89119115984582, -15.433399652312218], [-60.900174312687014, -15.433399652312218], [-60.900174312687014, -15.442382805153414], [-60.89119115984582, -15.442382805153414], [-60.89119115984582, -15.433399652312218], [-60.86424170132223, -15.433399652312218], [-60.86424170132223, -15.45136595799461], [-60.90915746552821, -15.45136595799461], [-60.90915746552821, -15.442382805153414], [-60.91814061836941, -15.442382805153414], [-60.91814061836941, -15.45136595799461], [-60.90915746552821, -15.45136595799461], [-60.90915746552821, -15.460349110835807], [-60.88220800700462, -15.460349110835807], [-60.88220800700462, -15.478315416518186], [-60.873224854163425, -15.478315416518186], [-60.873224854163425, -15.487298569359382], [-60.86424170132223, -15.487298569359382], [-60.86424170132223, -15.478315416518186], [-60.85525854848103, -15.478315416518186], [-60.85525854848103, -15.487298569359382]], [[-60.83729224279864, -15.415433346629825], [-60.83729224279864, -15.40645019378863], [-60.846275395639836, -15.40645019378863], [-60.846275395639836, -15.415433346629825], [-60.83729224279864, -15.415433346629825]], [[-60.83729224279864, -15.433399652312218], [-60.83729224279864, -15.424416499471022], [-60.85525854848103, -15.424416499471022], [-60.85525854848103, -15.415433346629825], [-60.86424170132223, -15.415433346629825], [-60.86424170132223, -15.433399652312218], [-60.83729224279864, -15.433399652312218]], [[-60.79237647859267, -15.45136595799461], [-60.79237647859267, -15.442382805153414], [-60.80135963143387, -15.442382805153414], [-60.80135963143387, -15.45136595799461], [-60.79237647859267, -15.45136595799461]], [[-60.86424170132223, -15.478315416518186], [-60.86424170132223, -15.460349110835807], [-60.873224854163425, -15.460349110835807], [-60.873224854163425, -15.478315416518186], [-60.86424170132223, -15.478315416518186]]]}, 'id': '+13252+10072', 'properties': {'count': 55, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.86424170132223, -15.505264875041775], [-60.846275395639836, -15.505264875041775], [-60.846275395639836, -15.496281722200578], [-60.86424170132223, -15.496281722200578], [-60.86424170132223, -15.505264875041775]]]}, 'id': '+13252+10074', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.85525854848103, -15.640012167659705], [-60.846275395639836, -15.640012167659705], [-60.846275395639836, -15.631029014818509], [-60.85525854848103, -15.631029014818509], [-60.85525854848103, -15.640012167659705]]]}, 'id': '+13252+10089', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.85525854848103, -15.73882684891285], [-60.846275395639836, -15.73882684891285], [-60.846275395639836, -15.729843696071654], [-60.85525854848103, -15.729843696071654], [-60.85525854848103, -15.73882684891285]]]}, 'id': '+13252+10100', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.85525854848103, -15.774759460277636], [-60.846275395639836, -15.774759460277636], [-60.846275395639836, -15.76577630743644], [-60.85525854848103, -15.76577630743644], [-60.85525854848103, -15.774759460277636]]]}, 'id': '+13252+10104', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.85525854848103, -15.936456211419141], [-60.846275395639836, -15.936456211419141], [-60.846275395639836, -15.92747305857796], [-60.85525854848103, -15.92747305857796], [-60.85525854848103, -15.936456211419141]]]}, 'id': '+13252+10122', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.85525854848103, -15.981371975625123], [-60.846275395639836, -15.981371975625123], [-60.846275395639836, -15.972388822783927], [-60.85525854848103, -15.972388822783927], [-60.85525854848103, -15.981371975625123]]]}, 'id': '+13252+10127', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.85525854848103, -16.18798449097261], [-60.846275395639836, -16.18798449097261], [-60.846275395639836, -16.179001338131414], [-60.85525854848103, -16.179001338131414], [-60.85525854848103, -16.18798449097261]]]}, 'id': '+13252+10150', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.85525854848103, -16.45747907620847], [-60.846275395639836, -16.45747907620847], [-60.846275395639836, -16.448495923367275], [-60.83729224279864, -16.448495923367275], [-60.83729224279864, -16.43951277052608], [-60.82830908995744, -16.43951277052608], [-60.82830908995744, -16.421546464843686], [-60.83729224279864, -16.421546464843686], [-60.83729224279864, -16.403580159161294], [-60.846275395639836, -16.403580159161294], [-60.846275395639836, -16.421546464843686], [-60.83729224279864, -16.421546464843686], [-60.83729224279864, -16.430529617684883], [-60.846275395639836, -16.430529617684883], [-60.846275395639836, -16.448495923367275], [-60.85525854848103, -16.448495923367275], [-60.85525854848103, -16.45747907620847]]]}, 'id': '+13252+10180', 'properties': {'count': 7, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.85525854848103, -16.48442853473206], [-60.846275395639836, -16.48442853473206], [-60.846275395639836, -16.475445381890864], [-60.83729224279864, -16.475445381890864], [-60.83729224279864, -16.466462229049668], [-60.85525854848103, -16.466462229049668], [-60.85525854848103, -16.48442853473206]]]}, 'id': '+13252+10183', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.85525854848103, -13.645752236914362], [-60.846275395639836, -13.645752236914362], [-60.846275395639836, -13.63676908407318], [-60.85525854848103, -13.63676908407318], [-60.85525854848103, -13.645752236914362]]]}, 'id': '+13252+9867', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.85525854848103, -13.717617459643932], [-60.846275395639836, -13.717617459643932], [-60.846275395639836, -13.708634306802736], [-60.85525854848103, -13.708634306802736], [-60.85525854848103, -13.717617459643932]]]}, 'id': '+13252+9875', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.85525854848103, -14.328471852845198], [-60.846275395639836, -14.328471852845198], [-60.846275395639836, -14.319488700004015], [-60.85525854848103, -14.319488700004015], [-60.85525854848103, -14.328471852845198]]]}, 'id': '+13252+9943', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.85525854848103, -14.73271373069899], [-60.846275395639836, -14.73271373069899], [-60.846275395639836, -14.723730577857793], [-60.82830908995744, -14.723730577857793], [-60.82830908995744, -14.714747425016597], [-60.846275395639836, -14.714747425016597], [-60.846275395639836, -14.723730577857793], [-60.85525854848103, -14.723730577857793], [-60.85525854848103, -14.73271373069899]]]}, 'id': '+13252+9988', 'properties': {'count': 3, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.846275395639836, -15.76577630743644], [-60.83729224279864, -15.76577630743644], [-60.83729224279864, -15.747810001754047], [-60.846275395639836, -15.747810001754047], [-60.846275395639836, -15.76577630743644]]]}, 'id': '+13253+10103', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.846275395639836, -15.936456211419141], [-60.83729224279864, -15.936456211419141], [-60.83729224279864, -15.92747305857796], [-60.82830908995744, -15.92747305857796], [-60.82830908995744, -15.918489905736763], [-60.83729224279864, -15.918489905736763], [-60.83729224279864, -15.92747305857796], [-60.846275395639836, -15.92747305857796], [-60.846275395639836, -15.918489905736763], [-60.85525854848103, -15.918489905736763], [-60.85525854848103, -15.92747305857796], [-60.846275395639836, -15.92747305857796], [-60.846275395639836, -15.936456211419141]]]}, 'id': '+13253+10122', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.846275395639836, -15.972388822783927], [-60.83729224279864, -15.972388822783927], [-60.83729224279864, -15.96340566994273], [-60.846275395639836, -15.96340566994273], [-60.846275395639836, -15.972388822783927]]]}, 'id': '+13253+10126', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.85525854848103, -16.08018665687827], [-60.83729224279864, -16.08018665687827], [-60.83729224279864, -16.071203504037072], [-60.846275395639836, -16.071203504037072], [-60.846275395639836, -16.062220351195876], [-60.85525854848103, -16.062220351195876], [-60.85525854848103, -16.05323719835468], [-60.86424170132223, -16.05323719835468], [-60.86424170132223, -16.062220351195876], [-60.85525854848103, -16.062220351195876], [-60.85525854848103, -16.08018665687827]]]}, 'id': '+13253+10138', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.846275395639836, -16.107136115401858], [-60.83729224279864, -16.107136115401858], [-60.83729224279864, -16.089169809719465], [-60.846275395639836, -16.089169809719465], [-60.846275395639836, -16.107136115401858]]]}, 'id': '+13253+10141', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.846275395639836, -16.143068726766643], [-60.83729224279864, -16.143068726766643], [-60.83729224279864, -16.134085573925447], [-60.846275395639836, -16.134085573925447], [-60.846275395639836, -16.143068726766643]]]}, 'id': '+13253+10145', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.846275395639836, -16.179001338131414], [-60.83729224279864, -16.179001338131414], [-60.83729224279864, -16.170018185290218], [-60.82830908995744, -16.170018185290218], [-60.82830908995744, -16.16103503244902], [-60.846275395639836, -16.16103503244902], [-60.846275395639836, -16.134085573925447], [-60.85525854848103, -16.134085573925447], [-60.85525854848103, -16.16103503244902], [-60.846275395639836, -16.16103503244902], [-60.846275395639836, -16.179001338131414]]]}, 'id': '+13253+10149', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.846275395639836, -16.18798449097261], [-60.83729224279864, -16.18798449097261], [-60.83729224279864, -16.179001338131414], [-60.846275395639836, -16.179001338131414], [-60.846275395639836, -16.18798449097261]]]}, 'id': '+13253+10150', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.846275395639836, -16.403580159161294], [-60.83729224279864, -16.403580159161294], [-60.83729224279864, -16.394597006320097], [-60.846275395639836, -16.394597006320097], [-60.846275395639836, -16.403580159161294]]]}, 'id': '+13253+10174', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.846275395639836, -16.556293757461617], [-60.83729224279864, -16.556293757461617], [-60.83729224279864, -16.54731060462042], [-60.846275395639836, -16.54731060462042], [-60.846275395639836, -16.538327451779224], [-60.85525854848103, -16.538327451779224], [-60.85525854848103, -16.529344298938028], [-60.86424170132223, -16.529344298938028], [-60.86424170132223, -16.538327451779224], [-60.85525854848103, -16.538327451779224], [-60.85525854848103, -16.54731060462042], [-60.846275395639836, -16.54731060462042], [-60.846275395639836, -16.556293757461617]]]}, 'id': '+13253+10191', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.846275395639836, -16.691041050079548], [-60.83729224279864, -16.691041050079548], [-60.83729224279864, -16.68205789723835], [-60.846275395639836, -16.68205789723835], [-60.846275395639836, -16.691041050079548]]]}, 'id': '+13253+10206', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.846275395639836, -16.735956814285515], [-60.83729224279864, -16.735956814285515], [-60.83729224279864, -16.726973661444333], [-60.846275395639836, -16.726973661444333], [-60.846275395639836, -16.717990508603137], [-60.83729224279864, -16.717990508603137], [-60.83729224279864, -16.691041050079548], [-60.846275395639836, -16.691041050079548], [-60.846275395639836, -16.70900735576194], [-60.85525854848103, -16.70900735576194], [-60.85525854848103, -16.726973661444333], [-60.846275395639836, -16.726973661444333], [-60.846275395639836, -16.735956814285515]]]}, 'id': '+13253+10211', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.846275395639836, -14.34643815852759], [-60.83729224279864, -14.34643815852759], [-60.83729224279864, -14.337455005686394], [-60.846275395639836, -14.337455005686394], [-60.846275395639836, -14.34643815852759]]]}, 'id': '+13253+9945', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.846275395639836, -14.41830338125716], [-60.83729224279864, -14.41830338125716], [-60.83729224279864, -14.409320228415964], [-60.846275395639836, -14.409320228415964], [-60.846275395639836, -14.41830338125716]]]}, 'id': '+13253+9953', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.83729224279864, -15.271702901170698], [-60.82830908995744, -15.271702901170698], [-60.82830908995744, -15.262719748329502], [-60.81932593711625, -15.262719748329502], [-60.81932593711625, -15.253736595488306], [-60.810342784275065, -15.253736595488306], [-60.810342784275065, -15.24475344264711], [-60.81932593711625, -15.24475344264711], [-60.81932593711625, -15.235770289805927], [-60.83729224279864, -15.235770289805927], [-60.83729224279864, -15.24475344264711], [-60.846275395639836, -15.24475344264711], [-60.846275395639836, -15.253736595488306], [-60.82830908995744, -15.253736595488306], [-60.82830908995744, -15.262719748329502], [-60.83729224279864, -15.262719748329502], [-60.83729224279864, -15.271702901170698]], [[-60.81932593711625, -15.253736595488306], [-60.81932593711625, -15.24475344264711], [-60.82830908995744, -15.24475344264711], [-60.82830908995744, -15.253736595488306], [-60.81932593711625, -15.253736595488306]]]}, 'id': '+13254+10048', 'properties': {'count': 7, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.85525854848103, -15.846624683007192], [-60.82830908995744, -15.846624683007192], [-60.82830908995744, -15.837641530165996], [-60.846275395639836, -15.837641530165996], [-60.846275395639836, -15.8286583773248], [-60.83729224279864, -15.8286583773248], [-60.83729224279864, -15.819675224483603], [-60.82830908995744, -15.819675224483603], [-60.82830908995744, -15.8286583773248], [-60.81932593711625, -15.8286583773248], [-60.81932593711625, -15.819675224483603], [-60.82830908995744, -15.819675224483603], [-60.82830908995744, -15.810692071642421], [-60.83729224279864, -15.810692071642421], [-60.83729224279864, -15.819675224483603], [-60.85525854848103, -15.819675224483603], [-60.85525854848103, -15.846624683007192]]]}, 'id': '+13254+10112', 'properties': {'count': 8, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.85525854848103, -15.891540447213174], [-60.82830908995744, -15.891540447213174], [-60.82830908995744, -15.882557294371978], [-60.85525854848103, -15.882557294371978], [-60.85525854848103, -15.891540447213174]]]}, 'id': '+13254+10117', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.83729224279864, -16.026287739831105], [-60.82830908995744, -16.026287739831105], [-60.82830908995744, -16.01730458698991], [-60.83729224279864, -16.01730458698991], [-60.83729224279864, -16.008321434148712], [-60.85525854848103, -16.008321434148712], [-60.85525854848103, -16.01730458698991], [-60.83729224279864, -16.01730458698991], [-60.83729224279864, -16.026287739831105]]]}, 'id': '+13254+10132', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.83729224279864, -16.250866560860985], [-60.82830908995744, -16.250866560860985], [-60.82830908995744, -16.24188340801979], [-60.83729224279864, -16.24188340801979], [-60.83729224279864, -16.250866560860985]]]}, 'id': '+13254+10157', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.83729224279864, -16.493411687573257], [-60.82830908995744, -16.493411687573257], [-60.82830908995744, -16.48442853473206], [-60.83729224279864, -16.48442853473206], [-60.83729224279864, -16.493411687573257]]]}, 'id': '+13254+10184', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.83729224279864, -16.538327451779224], [-60.82830908995744, -16.538327451779224], [-60.82830908995744, -16.529344298938028], [-60.83729224279864, -16.529344298938028], [-60.83729224279864, -16.520361146096832], [-60.846275395639836, -16.520361146096832], [-60.846275395639836, -16.529344298938028], [-60.83729224279864, -16.529344298938028], [-60.83729224279864, -16.538327451779224]]]}, 'id': '+13254+10189', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.83729224279864, -16.610192674508795], [-60.82830908995744, -16.610192674508795], [-60.82830908995744, -16.6012095216676], [-60.83729224279864, -16.6012095216676], [-60.83729224279864, -16.610192674508795]]]}, 'id': '+13254+10197', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.83729224279864, -13.63676908407318], [-60.82830908995744, -13.63676908407318], [-60.82830908995744, -13.627785931231983], [-60.83729224279864, -13.627785931231983], [-60.83729224279864, -13.63676908407318]]]}, 'id': '+13254+9866', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.85525854848103, -13.690668001120343], [-60.82830908995744, -13.690668001120343], [-60.82830908995744, -13.67270169543795], [-60.85525854848103, -13.67270169543795], [-60.85525854848103, -13.663718542596754], [-60.810342784275065, -13.663718542596754], [-60.810342784275065, -13.654735389755558], [-60.85525854848103, -13.654735389755558], [-60.85525854848103, -13.645752236914362], [-60.86424170132223, -13.645752236914362], [-60.86424170132223, -13.654735389755558], [-60.85525854848103, -13.654735389755558], [-60.85525854848103, -13.663718542596754], [-60.86424170132223, -13.663718542596754], [-60.86424170132223, -13.681684848279147], [-60.85525854848103, -13.681684848279147], [-60.85525854848103, -13.690668001120343]]]}, 'id': '+13254+9872', 'properties': {'count': 14, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.83729224279864, -14.454235992621932], [-60.82830908995744, -14.454235992621932], [-60.82830908995744, -14.436269686939553], [-60.81932593711625, -14.436269686939553], [-60.81932593711625, -14.41830338125716], [-60.810342784275065, -14.41830338125716], [-60.810342784275065, -14.409320228415964], [-60.81932593711625, -14.409320228415964], [-60.81932593711625, -14.41830338125716], [-60.82830908995744, -14.41830338125716], [-60.82830908995744, -14.436269686939553], [-60.83729224279864, -14.436269686939553], [-60.83729224279864, -14.454235992621932]]]}, 'id': '+13254+9957', 'properties': {'count': 5, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.82830908995744, -15.864590988689585], [-60.81932593711625, -15.864590988689585], [-60.81932593711625, -15.855607835848389], [-60.82830908995744, -15.855607835848389], [-60.82830908995744, -15.864590988689585]]]}, 'id': '+13255+10114', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.82830908995744, -15.945439364260338], [-60.81932593711625, -15.945439364260338], [-60.81932593711625, -15.936456211419141], [-60.82830908995744, -15.936456211419141], [-60.82830908995744, -15.945439364260338]]]}, 'id': '+13255+10123', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.82830908995744, -15.96340566994273], [-60.81932593711625, -15.96340566994273], [-60.81932593711625, -15.945439364260338], [-60.82830908995744, -15.945439364260338], [-60.82830908995744, -15.96340566994273]]]}, 'id': '+13255+10125', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.83729224279864, -15.981371975625123], [-60.81932593711625, -15.981371975625123], [-60.81932593711625, -15.972388822783927], [-60.83729224279864, -15.972388822783927], [-60.83729224279864, -15.981371975625123]]]}, 'id': '+13255+10127', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.82830908995744, -16.062220351195876], [-60.81932593711625, -16.062220351195876], [-60.81932593711625, -16.05323719835468], [-60.82830908995744, -16.05323719835468], [-60.82830908995744, -16.062220351195876]]]}, 'id': '+13255+10136', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.82830908995744, -16.232900255178592], [-60.81932593711625, -16.232900255178592], [-60.81932593711625, -16.196967643813807], [-60.810342784275065, -16.196967643813807], [-60.810342784275065, -16.18798449097261], [-60.81932593711625, -16.18798449097261], [-60.81932593711625, -16.196967643813807], [-60.82830908995744, -16.196967643813807], [-60.82830908995744, -16.232900255178592]]]}, 'id': '+13255+10155', 'properties': {'count': 5, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.82830908995744, -16.403580159161294], [-60.81932593711625, -16.403580159161294], [-60.81932593711625, -16.37663070063772], [-60.82830908995744, -16.37663070063772], [-60.82830908995744, -16.403580159161294]]]}, 'id': '+13255+10174', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.82830908995744, -16.448495923367275], [-60.81932593711625, -16.448495923367275], [-60.81932593711625, -16.43951277052608], [-60.82830908995744, -16.43951277052608], [-60.82830908995744, -16.448495923367275]]]}, 'id': '+13255+10179', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.82830908995744, -16.511377993255635], [-60.81932593711625, -16.511377993255635], [-60.81932593711625, -16.48442853473206], [-60.810342784275065, -16.48442853473206], [-60.810342784275065, -16.493411687573257], [-60.79237647859267, -16.493411687573257], [-60.79237647859267, -16.48442853473206], [-60.810342784275065, -16.48442853473206], [-60.810342784275065, -16.475445381890864], [-60.81932593711625, -16.475445381890864], [-60.81932593711625, -16.466462229049668], [-60.82830908995744, -16.466462229049668], [-60.82830908995744, -16.475445381890864], [-60.83729224279864, -16.475445381890864], [-60.83729224279864, -16.48442853473206], [-60.82830908995744, -16.48442853473206], [-60.82830908995744, -16.511377993255635]]]}, 'id': '+13255+10186', 'properties': {'count': 9, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.83729224279864, -16.583243215985206], [-60.81932593711625, -16.583243215985206], [-60.81932593711625, -16.57426006314401], [-60.83729224279864, -16.57426006314401], [-60.83729224279864, -16.583243215985206]]]}, 'id': '+13255+10194', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.82830908995744, -13.654735389755558], [-60.81932593711625, -13.654735389755558], [-60.81932593711625, -13.645752236914362], [-60.82830908995744, -13.645752236914362], [-60.82830908995744, -13.654735389755558]]]}, 'id': '+13255+9868', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.82830908995744, -13.681684848279147], [-60.81932593711625, -13.681684848279147], [-60.81932593711625, -13.67270169543795], [-60.82830908995744, -13.67270169543795], [-60.82830908995744, -13.681684848279147]]]}, 'id': '+13255+9871', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.82830908995744, -13.798465835214685], [-60.81932593711625, -13.798465835214685], [-60.81932593711625, -13.789482682373489], [-60.82830908995744, -13.789482682373489], [-60.82830908995744, -13.798465835214685]]]}, 'id': '+13255+9884', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.82830908995744, -14.391353922733572], [-60.81932593711625, -14.391353922733572], [-60.81932593711625, -14.382370769892376], [-60.82830908995744, -14.382370769892376], [-60.82830908995744, -14.391353922733572]]]}, 'id': '+13255+9950', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.82830908995744, -14.41830338125716], [-60.81932593711625, -14.41830338125716], [-60.81932593711625, -14.409320228415964], [-60.82830908995744, -14.409320228415964], [-60.82830908995744, -14.41830338125716]]]}, 'id': '+13255+9953', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.83729224279864, -14.490168603986717], [-60.81932593711625, -14.490168603986717], [-60.81932593711625, -14.481185451145521], [-60.810342784275065, -14.481185451145521], [-60.810342784275065, -14.472202298304325], [-60.82830908995744, -14.472202298304325], [-60.82830908995744, -14.463219145463128], [-60.83729224279864, -14.463219145463128], [-60.83729224279864, -14.472202298304325], [-60.82830908995744, -14.472202298304325], [-60.82830908995744, -14.481185451145521], [-60.83729224279864, -14.481185451145521], [-60.83729224279864, -14.490168603986717]]]}, 'id': '+13255+9961', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -15.289669206853091], [-60.810342784275065, -15.289669206853091], [-60.810342784275065, -15.280686054011895], [-60.81932593711625, -15.280686054011895], [-60.81932593711625, -15.289669206853091]]]}, 'id': '+13256+10050', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -15.487298569359382], [-60.810342784275065, -15.487298569359382], [-60.810342784275065, -15.478315416518186], [-60.81932593711625, -15.478315416518186], [-60.81932593711625, -15.469332263677003], [-60.82830908995744, -15.469332263677003], [-60.82830908995744, -15.478315416518186], [-60.81932593711625, -15.478315416518186], [-60.81932593711625, -15.487298569359382]]]}, 'id': '+13256+10072', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -15.505264875041775], [-60.810342784275065, -15.505264875041775], [-60.810342784275065, -15.496281722200578], [-60.81932593711625, -15.496281722200578], [-60.81932593711625, -15.505264875041775]]]}, 'id': '+13256+10074', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -15.523231180724167], [-60.810342784275065, -15.523231180724167], [-60.810342784275065, -15.51424802788297], [-60.81932593711625, -15.51424802788297], [-60.81932593711625, -15.523231180724167]]]}, 'id': '+13256+10076', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -15.568146944930149], [-60.810342784275065, -15.568146944930149], [-60.810342784275065, -15.559163792088953], [-60.81932593711625, -15.559163792088953], [-60.81932593711625, -15.568146944930149]]]}, 'id': '+13256+10081', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -15.586113250612527], [-60.810342784275065, -15.586113250612527], [-60.810342784275065, -15.577130097771345], [-60.81932593711625, -15.577130097771345], [-60.81932593711625, -15.586113250612527]]]}, 'id': '+13256+10083', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -15.631029014818509], [-60.810342784275065, -15.631029014818509], [-60.810342784275065, -15.60407955629492], [-60.81932593711625, -15.60407955629492], [-60.81932593711625, -15.631029014818509]]]}, 'id': '+13256+10088', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -16.026287739831105], [-60.810342784275065, -16.026287739831105], [-60.810342784275065, -16.01730458698991], [-60.81932593711625, -16.01730458698991], [-60.81932593711625, -16.026287739831105]]]}, 'id': '+13256+10132', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -16.107136115401858], [-60.810342784275065, -16.107136115401858], [-60.810342784275065, -16.09815296256066], [-60.81932593711625, -16.09815296256066], [-60.81932593711625, -16.107136115401858]]]}, 'id': '+13256+10141', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.82830908995744, -16.134085573925447], [-60.810342784275065, -16.134085573925447], [-60.810342784275065, -16.12510242108425], [-60.82830908995744, -16.12510242108425], [-60.82830908995744, -16.134085573925447]]]}, 'id': '+13256+10144', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -16.250866560860985], [-60.810342784275065, -16.250866560860985], [-60.810342784275065, -16.24188340801979], [-60.81932593711625, -16.24188340801979], [-60.81932593711625, -16.250866560860985]]]}, 'id': '+13256+10157', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.86424170132223, -16.331714936431737], [-60.810342784275065, -16.331714936431737], [-60.810342784275065, -16.32273178359054], [-60.79237647859267, -16.32273178359054], [-60.79237647859267, -16.313748630749345], [-60.77441017291028, -16.313748630749345], [-60.77441017291028, -16.30476547790815], [-60.783393325751476, -16.30476547790815], [-60.783393325751476, -16.295782325066952], [-60.79237647859267, -16.295782325066952], [-60.79237647859267, -16.313748630749345], [-60.810342784275065, -16.313748630749345], [-60.810342784275065, -16.32273178359054], [-60.81932593711625, -16.32273178359054], [-60.81932593711625, -16.295782325066952], [-60.810342784275065, -16.295782325066952], [-60.810342784275065, -16.27781601938456], [-60.79237647859267, -16.27781601938456], [-60.79237647859267, -16.286799172225756], [-60.783393325751476, -16.286799172225756], [-60.783393325751476, -16.27781601938456], [-60.79237647859267, -16.27781601938456], [-60.79237647859267, -16.25984971370218], [-60.80135963143387, -16.25984971370218], [-60.80135963143387, -16.268832866543377], [-60.810342784275065, -16.268832866543377], [-60.810342784275065, -16.27781601938456], [-60.81932593711625, -16.27781601938456], [-60.81932593711625, -16.295782325066952], [-60.82830908995744, -16.295782325066952], [-60.82830908995744, -16.30476547790815], [-60.83729224279864, -16.30476547790815], [-60.83729224279864, -16.313748630749345], [-60.85525854848103, -16.313748630749345], [-60.85525854848103, -16.32273178359054], [-60.86424170132223, -16.32273178359054], [-60.86424170132223, -16.331714936431737]], [[-60.82830908995744, -16.32273178359054], [-60.82830908995744, -16.313748630749345], [-60.83729224279864, -16.313748630749345], [-60.83729224279864, -16.32273178359054], [-60.82830908995744, -16.32273178359054]]]}, 'id': '+13256+10166', 'properties': {'count': 23, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -16.717990508603137], [-60.810342784275065, -16.717990508603137], [-60.810342784275065, -16.68205789723835], [-60.79237647859267, -16.68205789723835], [-60.79237647859267, -16.673074744397155], [-60.76542702006908, -16.673074744397155], [-60.76542702006908, -16.68205789723835], [-60.77441017291028, -16.68205789723835], [-60.77441017291028, -16.691041050079548], [-60.738477561545494, -16.691041050079548], [-60.738477561545494, -16.68205789723835], [-60.7205112558631, -16.68205789723835], [-60.7205112558631, -16.646125285873566], [-60.711528103021905, -16.646125285873566], [-60.711528103021905, -16.619175827349977], [-60.70254495018071, -16.619175827349977], [-60.70254495018071, -16.610192674508795], [-60.711528103021905, -16.610192674508795], [-60.711528103021905, -16.6012095216676], [-60.7205112558631, -16.6012095216676], [-60.7205112558631, -16.610192674508795], [-60.7294944087043, -16.610192674508795], [-60.7294944087043, -16.628158980191174], [-60.738477561545494, -16.628158980191174], [-60.738477561545494, -16.619175827349977], [-60.74746071438669, -16.619175827349977], [-60.74746071438669, -16.628158980191174], [-60.75644386722789, -16.628158980191174], [-60.75644386722789, -16.610192674508795], [-60.76542702006908, -16.610192674508795], [-60.76542702006908, -16.6012095216676], [-60.74746071438669, -16.6012095216676], [-60.74746071438669, -16.565276910302813], [-60.738477561545494, -16.565276910302813], [-60.738477561545494, -16.592226368826402], [-60.7294944087043, -16.592226368826402], [-60.7294944087043, -16.54731060462042], [-60.711528103021905, -16.54731060462042], [-60.711528103021905, -16.556293757461617], [-60.70254495018071, -16.556293757461617], [-60.70254495018071, -16.538327451779224], [-60.69356179733953, -16.538327451779224], [-60.69356179733953, -16.556293757461617], [-60.68457864449833, -16.556293757461617], [-60.68457864449833, -16.54731060462042], [-60.675595491657134, -16.54731060462042], [-60.675595491657134, -16.556293757461617], [-60.66661233881594, -16.556293757461617], [-60.66661233881594, -16.565276910302813], [-60.65762918597474, -16.565276910302813], [-60.65762918597474, -16.57426006314401], [-60.648646033133545, -16.57426006314401], [-60.648646033133545, -16.583243215985206], [-60.63067972745115, -16.583243215985206], [-60.63067972745115, -16.57426006314401], [-60.621696574609956, -16.57426006314401], [-60.621696574609956, -16.565276910302813], [-60.63966288029235, -16.565276910302813], [-60.63966288029235, -16.556293757461617], [-60.63067972745115, -16.556293757461617], [-60.63067972745115, -16.538327451779224], [-60.66661233881594, -16.538327451779224], [-60.66661233881594, -16.529344298938028], [-60.68457864449833, -16.529344298938028], [-60.68457864449833, -16.511377993255635], [-60.70254495018071, -16.511377993255635], [-60.70254495018071, -16.50239484041444], [-60.69356179733953, -16.50239484041444], [-60.69356179733953, -16.48442853473206], [-60.68457864449833, -16.48442853473206], [-60.68457864449833, -16.475445381890864], [-60.675595491657134, -16.475445381890864], [-60.675595491657134, -16.493411687573257], [-60.68457864449833, -16.493411687573257], [-60.68457864449833, -16.50239484041444], [-60.675595491657134, -16.50239484041444], [-60.675595491657134, -16.511377993255635], [-60.66661233881594, -16.511377993255635], [-60.66661233881594, -16.50239484041444], [-60.65762918597474, -16.50239484041444], [-60.65762918597474, -16.48442853473206], [-60.66661233881594, -16.48442853473206], [-60.66661233881594, -16.475445381890864], [-60.65762918597474, -16.475445381890864], [-60.65762918597474, -16.466462229049668], [-60.675595491657134, -16.466462229049668], [-60.675595491657134, -16.45747907620847], [-60.68457864449833, -16.45747907620847], [-60.68457864449833, -16.448495923367275], [-60.711528103021905, -16.448495923367275], [-60.711528103021905, -16.394597006320097], [-60.7294944087043, -16.394597006320097], [-60.7294944087043, -16.37663070063772], [-60.74746071438669, -16.37663070063772], [-60.74746071438669, -16.367647547796523], [-60.75644386722789, -16.367647547796523], [-60.75644386722789, -16.34968124211413], [-60.76542702006908, -16.34968124211413], [-60.76542702006908, -16.331714936431737], [-60.77441017291028, -16.331714936431737], [-60.77441017291028, -16.340698089272934], [-60.783393325751476, -16.340698089272934], [-60.783393325751476, -16.331714936431737], [-60.79237647859267, -16.331714936431737], [-60.79237647859267, -16.34968124211413], [-60.77441017291028, -16.34968124211413], [-60.77441017291028, -16.358664394955326], [-60.76542702006908, -16.358664394955326], [-60.76542702006908, -16.367647547796523], [-60.75644386722789, -16.367647547796523], [-60.75644386722789, -16.37663070063772], [-60.76542702006908, -16.37663070063772], [-60.76542702006908, -16.385613853478915], [-60.79237647859267, -16.385613853478915], [-60.79237647859267, -16.37663070063772], [-60.810342784275065, -16.37663070063772], [-60.810342784275065, -16.367647547796523], [-60.80135963143387, -16.367647547796523], [-60.80135963143387, -16.340698089272934], [-60.810342784275065, -16.340698089272934], [-60.810342784275065, -16.331714936431737], [-60.82830908995744, -16.331714936431737], [-60.82830908995744, -16.340698089272934], [-60.83729224279864, -16.340698089272934], [-60.83729224279864, -16.331714936431737], [-60.86424170132223, -16.331714936431737], [-60.86424170132223, -16.34968124211413], [-60.873224854163425, -16.34968124211413], [-60.873224854163425, -16.340698089272934], [-60.89119115984582, -16.340698089272934], [-60.89119115984582, -16.331714936431737], [-60.900174312687014, -16.331714936431737], [-60.900174312687014, -16.30476547790815], [-60.90915746552821, -16.30476547790815], [-60.90915746552821, -16.295782325066952], [-60.91814061836941, -16.295782325066952], [-60.91814061836941, -16.286799172225756], [-60.9271237712106, -16.286799172225756], [-60.9271237712106, -16.295782325066952], [-60.936106924051785, -16.295782325066952], [-60.936106924051785, -16.30476547790815], [-60.95407322973418, -16.30476547790815], [-60.95407322973418, -16.27781601938456], [-60.963056382575374, -16.27781601938456], [-60.963056382575374, -16.268832866543377], [-60.95407322973418, -16.268832866543377], [-60.95407322973418, -16.25984971370218], [-60.94509007689298, -16.25984971370218], [-60.94509007689298, -16.286799172225756], [-60.936106924051785, -16.286799172225756], [-60.936106924051785, -16.250866560860985], [-60.963056382575374, -16.250866560860985], [-60.963056382575374, -16.268832866543377], [-60.97203953541657, -16.268832866543377], [-60.97203953541657, -16.27781601938456], [-60.963056382575374, -16.27781601938456], [-60.963056382575374, -16.295782325066952], [-60.97203953541657, -16.295782325066952], [-60.97203953541657, -16.30476547790815], [-60.95407322973418, -16.30476547790815], [-60.95407322973418, -16.32273178359054], [-60.963056382575374, -16.32273178359054], [-60.963056382575374, -16.313748630749345], [-60.98102268825777, -16.313748630749345], [-60.98102268825777, -16.295782325066952], [-60.99000584109896, -16.295782325066952], [-60.99000584109896, -16.268832866543377], [-60.99898899394016, -16.268832866543377], [-60.99898899394016, -16.25984971370218], [-61.007972146781356, -16.25984971370218], [-61.007972146781356, -16.268832866543377], [-61.01695529962255, -16.268832866543377], [-61.01695529962255, -16.27781601938456], [-61.007972146781356, -16.27781601938456], [-61.007972146781356, -16.286799172225756], [-60.99898899394016, -16.286799172225756], [-60.99898899394016, -16.295782325066952], [-61.007972146781356, -16.295782325066952], [-61.007972146781356, -16.30476547790815], [-60.99898899394016, -16.30476547790815], [-60.99898899394016, -16.295782325066952], [-60.99000584109896, -16.295782325066952], [-60.99000584109896, -16.313748630749345], [-60.98102268825777, -16.313748630749345], [-60.98102268825777, -16.32273178359054], [-60.963056382575374, -16.32273178359054], [-60.963056382575374, -16.331714936431737], [-60.95407322973418, -16.331714936431737], [-60.95407322973418, -16.32273178359054], [-60.94509007689298, -16.32273178359054], [-60.94509007689298, -16.331714936431737], [-60.936106924051785, -16.331714936431737], [-60.936106924051785, -16.37663070063772], [-60.9271237712106, -16.37663070063772], [-60.9271237712106, -16.34968124211413], [-60.900174312687014, -16.34968124211413], [-60.900174312687014, -16.340698089272934], [-60.89119115984582, -16.340698089272934], [-60.89119115984582, -16.34968124211413], [-60.88220800700462, -16.34968124211413], [-60.88220800700462, -16.358664394955326], [-60.89119115984582, -16.358664394955326], [-60.89119115984582, -16.37663070063772], [-60.873224854163425, -16.37663070063772], [-60.873224854163425, -16.385613853478915], [-60.85525854848103, -16.385613853478915], [-60.85525854848103, -16.37663070063772], [-60.83729224279864, -16.37663070063772], [-60.83729224279864, -16.385613853478915], [-60.846275395639836, -16.385613853478915], [-60.846275395639836, -16.394597006320097], [-60.83729224279864, -16.394597006320097], [-60.83729224279864, -16.385613853478915], [-60.82830908995744, -16.385613853478915], [-60.82830908995744, -16.358664394955326], [-60.810342784275065, -16.358664394955326], [-60.810342784275065, -16.367647547796523], [-60.81932593711625, -16.367647547796523], [-60.81932593711625, -16.385613853478915], [-60.79237647859267, -16.385613853478915], [-60.79237647859267, -16.394597006320097], [-60.810342784275065, -16.394597006320097], [-60.810342784275065, -16.403580159161294], [-60.82830908995744, -16.403580159161294], [-60.82830908995744, -16.41256331200249], [-60.83729224279864, -16.41256331200249], [-60.83729224279864, -16.421546464843686], [-60.82830908995744, -16.421546464843686], [-60.82830908995744, -16.430529617684883], [-60.81932593711625, -16.430529617684883], [-60.81932593711625, -16.421546464843686], [-60.810342784275065, -16.421546464843686], [-60.810342784275065, -16.403580159161294], [-60.80135963143387, -16.403580159161294], [-60.80135963143387, -16.421546464843686], [-60.783393325751476, -16.421546464843686], [-60.783393325751476, -16.41256331200249], [-60.77441017291028, -16.41256331200249], [-60.77441017291028, -16.403580159161294], [-60.76542702006908, -16.403580159161294], [-60.76542702006908, -16.430529617684883], [-60.74746071438669, -16.430529617684883], [-60.74746071438669, -16.43951277052608], [-60.7294944087043, -16.43951277052608], [-60.7294944087043, -16.448495923367275], [-60.738477561545494, -16.448495923367275], [-60.738477561545494, -16.45747907620847], [-60.74746071438669, -16.45747907620847], [-60.74746071438669, -16.448495923367275], [-60.75644386722789, -16.448495923367275], [-60.75644386722789, -16.43951277052608], [-60.76542702006908, -16.43951277052608], [-60.76542702006908, -16.45747907620847], [-60.74746071438669, -16.45747907620847], [-60.74746071438669, -16.466462229049668], [-60.7294944087043, -16.466462229049668], [-60.7294944087043, -16.475445381890864], [-60.738477561545494, -16.475445381890864], [-60.738477561545494, -16.48442853473206], [-60.74746071438669, -16.48442853473206], [-60.74746071438669, -16.475445381890864], [-60.75644386722789, -16.475445381890864], [-60.75644386722789, -16.466462229049668], [-60.76542702006908, -16.466462229049668], [-60.76542702006908, -16.475445381890864], [-60.79237647859267, -16.475445381890864], [-60.79237647859267, -16.493411687573257], [-60.77441017291028, -16.493411687573257], [-60.77441017291028, -16.50239484041444], [-60.79237647859267, -16.50239484041444], [-60.79237647859267, -16.511377993255635], [-60.80135963143387, -16.511377993255635], [-60.80135963143387, -16.520361146096832], [-60.81932593711625, -16.520361146096832], [-60.81932593711625, -16.529344298938028], [-60.82830908995744, -16.529344298938028], [-60.82830908995744, -16.54731060462042], [-60.83729224279864, -16.54731060462042], [-60.83729224279864, -16.556293757461617], [-60.846275395639836, -16.556293757461617], [-60.846275395639836, -16.54731060462042], [-60.85525854848103, -16.54731060462042], [-60.85525854848103, -16.538327451779224], [-60.846275395639836, -16.538327451779224], [-60.846275395639836, -16.520361146096832], [-60.82830908995744, -16.520361146096832], [-60.82830908995744, -16.511377993255635], [-60.846275395639836, -16.511377993255635], [-60.846275395639836, -16.520361146096832], [-60.85525854848103, -16.520361146096832], [-60.85525854848103, -16.538327451779224], [-60.86424170132223, -16.538327451779224], [-60.86424170132223, -16.529344298938028], [-60.873224854163425, -16.529344298938028], [-60.873224854163425, -16.556293757461617], [-60.86424170132223, -16.556293757461617], [-60.86424170132223, -16.57426006314401], [-60.873224854163425, -16.57426006314401], [-60.873224854163425, -16.592226368826402], [-60.89119115984582, -16.592226368826402], [-60.89119115984582, -16.583243215985206], [-60.900174312687014, -16.583243215985206], [-60.900174312687014, -16.592226368826402], [-60.89119115984582, -16.592226368826402], [-60.89119115984582, -16.6012095216676], [-60.88220800700462, -16.6012095216676], [-60.88220800700462, -16.63714213303237], [-60.873224854163425, -16.63714213303237], [-60.873224854163425, -16.655108438714763], [-60.86424170132223, -16.655108438714763], [-60.86424170132223, -16.68205789723835], [-60.85525854848103, -16.68205789723835], [-60.85525854848103, -16.673074744397155], [-60.846275395639836, -16.673074744397155], [-60.846275395639836, -16.68205789723835], [-60.83729224279864, -16.68205789723835], [-60.83729224279864, -16.646125285873566], [-60.82830908995744, -16.646125285873566], [-60.82830908995744, -16.63714213303237], [-60.81932593711625, -16.63714213303237], [-60.81932593711625, -16.68205789723835], [-60.82830908995744, -16.68205789723835], [-60.82830908995744, -16.70900735576194], [-60.81932593711625, -16.70900735576194], [-60.81932593711625, -16.717990508603137]], [[-60.91814061836941, -16.331714936431737], [-60.91814061836941, -16.32273178359054], [-60.90915746552821, -16.32273178359054], [-60.90915746552821, -16.30476547790815], [-60.9271237712106, -16.30476547790815], [-60.9271237712106, -16.313748630749345], [-60.936106924051785, -16.313748630749345], [-60.936106924051785, -16.32273178359054], [-60.9271237712106, -16.32273178359054], [-60.9271237712106, -16.331714936431737], [-60.91814061836941, -16.331714936431737]], [[-60.86424170132223, -16.367647547796523], [-60.86424170132223, -16.358664394955326], [-60.873224854163425, -16.358664394955326], [-60.873224854163425, -16.367647547796523], [-60.86424170132223, -16.367647547796523]], [[-60.85525854848103, -16.37663070063772], [-60.85525854848103, -16.367647547796523], [-60.86424170132223, -16.367647547796523], [-60.86424170132223, -16.37663070063772], [-60.85525854848103, -16.37663070063772]], [[-60.75644386722789, -16.394597006320097], [-60.75644386722789, -16.385613853478915], [-60.76542702006908, -16.385613853478915], [-60.76542702006908, -16.394597006320097], [-60.75644386722789, -16.394597006320097]], [[-60.783393325751476, -16.41256331200249], [-60.783393325751476, -16.403580159161294], [-60.79237647859267, -16.403580159161294], [-60.79237647859267, -16.41256331200249], [-60.783393325751476, -16.41256331200249]], [[-60.81932593711625, -16.421546464843686], [-60.81932593711625, -16.41256331200249], [-60.82830908995744, -16.41256331200249], [-60.82830908995744, -16.421546464843686], [-60.81932593711625, -16.421546464843686]], [[-60.738477561545494, -16.430529617684883], [-60.738477561545494, -16.421546464843686], [-60.74746071438669, -16.421546464843686], [-60.74746071438669, -16.430529617684883], [-60.738477561545494, -16.430529617684883]], [[-60.69356179733953, -16.466462229049668], [-60.69356179733953, -16.45747907620847], [-60.70254495018071, -16.45747907620847], [-60.70254495018071, -16.466462229049668], [-60.69356179733953, -16.466462229049668]], [[-60.70254495018071, -16.475445381890864], [-60.70254495018071, -16.466462229049668], [-60.711528103021905, -16.466462229049668], [-60.711528103021905, -16.475445381890864], [-60.70254495018071, -16.475445381890864]], [[-60.68457864449833, -16.475445381890864], [-60.68457864449833, -16.466462229049668], [-60.69356179733953, -16.466462229049668], [-60.69356179733953, -16.475445381890864], [-60.68457864449833, -16.475445381890864]], [[-60.69356179733953, -16.48442853473206], [-60.69356179733953, -16.475445381890864], [-60.70254495018071, -16.475445381890864], [-60.70254495018071, -16.48442853473206], [-60.69356179733953, -16.48442853473206]], [[-60.75644386722789, -16.493411687573257], [-60.75644386722789, -16.48442853473206], [-60.76542702006908, -16.48442853473206], [-60.76542702006908, -16.493411687573257], [-60.75644386722789, -16.493411687573257]], [[-60.74746071438669, -16.511377993255635], [-60.74746071438669, -16.50239484041444], [-60.75644386722789, -16.50239484041444], [-60.75644386722789, -16.511377993255635], [-60.74746071438669, -16.511377993255635]], [[-60.77441017291028, -16.529344298938028], [-60.77441017291028, -16.511377993255635], [-60.783393325751476, -16.511377993255635], [-60.783393325751476, -16.520361146096832], [-60.79237647859267, -16.520361146096832], [-60.79237647859267, -16.529344298938028], [-60.77441017291028, -16.529344298938028]], [[-60.711528103021905, -16.529344298938028], [-60.711528103021905, -16.520361146096832], [-60.7205112558631, -16.520361146096832], [-60.7205112558631, -16.511377993255635], [-60.711528103021905, -16.511377993255635], [-60.711528103021905, -16.50239484041444], [-60.70254495018071, -16.50239484041444], [-60.70254495018071, -16.493411687573257], [-60.7294944087043, -16.493411687573257], [-60.7294944087043, -16.50239484041444], [-60.738477561545494, -16.50239484041444], [-60.738477561545494, -16.511377993255635], [-60.74746071438669, -16.511377993255635], [-60.74746071438669, -16.520361146096832], [-60.738477561545494, -16.520361146096832], [-60.738477561545494, -16.529344298938028], [-60.711528103021905, -16.529344298938028]], [[-60.738477561545494, -16.538327451779224], [-60.738477561545494, -16.529344298938028], [-60.74746071438669, -16.529344298938028], [-60.74746071438669, -16.538327451779224], [-60.738477561545494, -16.538327451779224]], [[-60.76542702006908, -16.54731060462042], [-60.76542702006908, -16.538327451779224], [-60.77441017291028, -16.538327451779224], [-60.77441017291028, -16.54731060462042], [-60.76542702006908, -16.54731060462042]], [[-60.74746071438669, -16.54731060462042], [-60.74746071438669, -16.538327451779224], [-60.75644386722789, -16.538327451779224], [-60.75644386722789, -16.54731060462042], [-60.74746071438669, -16.54731060462042]], [[-60.66661233881594, -16.54731060462042], [-60.66661233881594, -16.538327451779224], [-60.675595491657134, -16.538327451779224], [-60.675595491657134, -16.54731060462042], [-60.66661233881594, -16.54731060462042]], [[-60.85525854848103, -16.556293757461617], [-60.85525854848103, -16.54731060462042], [-60.86424170132223, -16.54731060462042], [-60.86424170132223, -16.556293757461617], [-60.85525854848103, -16.556293757461617]], [[-60.63966288029235, -16.556293757461617], [-60.63966288029235, -16.54731060462042], [-60.66661233881594, -16.54731060462042], [-60.66661233881594, -16.556293757461617], [-60.63966288029235, -16.556293757461617]], [[-60.783393325751476, -16.565276910302813], [-60.783393325751476, -16.538327451779224], [-60.79237647859267, -16.538327451779224], [-60.79237647859267, -16.54731060462042], [-60.80135963143387, -16.54731060462042], [-60.80135963143387, -16.556293757461617], [-60.79237647859267, -16.556293757461617], [-60.79237647859267, -16.565276910302813], [-60.783393325751476, -16.565276910302813]], [[-60.63966288029235, -16.57426006314401], [-60.63966288029235, -16.565276910302813], [-60.648646033133545, -16.565276910302813], [-60.648646033133545, -16.57426006314401], [-60.63966288029235, -16.57426006314401]], [[-60.76542702006908, -16.583243215985206], [-60.76542702006908, -16.57426006314401], [-60.77441017291028, -16.57426006314401], [-60.77441017291028, -16.583243215985206], [-60.76542702006908, -16.583243215985206]], [[-60.82830908995744, -16.619175827349977], [-60.82830908995744, -16.6012095216676], [-60.83729224279864, -16.6012095216676], [-60.83729224279864, -16.583243215985206], [-60.81932593711625, -16.583243215985206], [-60.81932593711625, -16.6012095216676], [-60.80135963143387, -16.6012095216676], [-60.80135963143387, -16.556293757461617], [-60.810342784275065, -16.556293757461617], [-60.810342784275065, -16.54731060462042], [-60.81932593711625, -16.54731060462042], [-60.81932593711625, -16.556293757461617], [-60.82830908995744, -16.556293757461617], [-60.82830908995744, -16.565276910302813], [-60.85525854848103, -16.565276910302813], [-60.85525854848103, -16.583243215985206], [-60.846275395639836, -16.583243215985206], [-60.846275395639836, -16.592226368826402], [-60.85525854848103, -16.592226368826402], [-60.85525854848103, -16.610192674508795], [-60.873224854163425, -16.610192674508795], [-60.873224854163425, -16.619175827349977], [-60.846275395639836, -16.619175827349977], [-60.846275395639836, -16.610192674508795], [-60.83729224279864, -16.610192674508795], [-60.83729224279864, -16.619175827349977], [-60.82830908995744, -16.619175827349977]], [[-60.711528103021905, -16.619175827349977], [-60.711528103021905, -16.610192674508795], [-60.7205112558631, -16.610192674508795], [-60.7205112558631, -16.619175827349977], [-60.711528103021905, -16.619175827349977]], [[-60.85525854848103, -16.63714213303237], [-60.85525854848103, -16.628158980191174], [-60.86424170132223, -16.628158980191174], [-60.86424170132223, -16.63714213303237], [-60.85525854848103, -16.63714213303237]], [[-60.783393325751476, -16.63714213303237], [-60.783393325751476, -16.619175827349977], [-60.77441017291028, -16.619175827349977], [-60.77441017291028, -16.6012095216676], [-60.76542702006908, -16.6012095216676], [-60.76542702006908, -16.592226368826402], [-60.783393325751476, -16.592226368826402], [-60.783393325751476, -16.583243215985206], [-60.79237647859267, -16.583243215985206], [-60.79237647859267, -16.6012095216676], [-60.80135963143387, -16.6012095216676], [-60.80135963143387, -16.610192674508795], [-60.810342784275065, -16.610192674508795], [-60.810342784275065, -16.619175827349977], [-60.79237647859267, -16.619175827349977], [-60.79237647859267, -16.63714213303237], [-60.783393325751476, -16.63714213303237]], [[-60.76542702006908, -16.63714213303237], [-60.76542702006908, -16.628158980191174], [-60.77441017291028, -16.628158980191174], [-60.77441017291028, -16.63714213303237], [-60.76542702006908, -16.63714213303237]], [[-60.7205112558631, -16.63714213303237], [-60.7205112558631, -16.628158980191174], [-60.7294944087043, -16.628158980191174], [-60.7294944087043, -16.63714213303237], [-60.7205112558631, -16.63714213303237]], [[-60.7294944087043, -16.655108438714763], [-60.7294944087043, -16.646125285873566], [-60.738477561545494, -16.646125285873566], [-60.738477561545494, -16.655108438714763], [-60.7294944087043, -16.655108438714763]], [[-60.846275395639836, -16.66409159155596], [-60.846275395639836, -16.655108438714763], [-60.85525854848103, -16.655108438714763], [-60.85525854848103, -16.66409159155596], [-60.846275395639836, -16.66409159155596]], [[-60.76542702006908, -16.66409159155596], [-60.76542702006908, -16.646125285873566], [-60.77441017291028, -16.646125285873566], [-60.77441017291028, -16.655108438714763], [-60.783393325751476, -16.655108438714763], [-60.783393325751476, -16.646125285873566], [-60.79237647859267, -16.646125285873566], [-60.79237647859267, -16.66409159155596], [-60.76542702006908, -16.66409159155596]], [[-60.74746071438669, -16.66409159155596], [-60.74746071438669, -16.655108438714763], [-60.75644386722789, -16.655108438714763], [-60.75644386722789, -16.66409159155596], [-60.74746071438669, -16.66409159155596]], [[-60.79237647859267, -16.673074744397155], [-60.79237647859267, -16.66409159155596], [-60.80135963143387, -16.66409159155596], [-60.80135963143387, -16.673074744397155], [-60.79237647859267, -16.673074744397155]], [[-60.738477561545494, -16.673074744397155], [-60.738477561545494, -16.66409159155596], [-60.74746071438669, -16.66409159155596], [-60.74746071438669, -16.673074744397155], [-60.738477561545494, -16.673074744397155]], [[-60.74746071438669, -16.68205789723835], [-60.74746071438669, -16.673074744397155], [-60.75644386722789, -16.673074744397155], [-60.75644386722789, -16.68205789723835], [-60.74746071438669, -16.68205789723835]]]}, 'id': '+13256+10209', 'properties': {'count': 468, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -13.654735389755558], [-60.810342784275065, -13.654735389755558], [-60.810342784275065, -13.645752236914362], [-60.81932593711625, -13.645752236914362], [-60.81932593711625, -13.654735389755558]]]}, 'id': '+13256+9868', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -14.391353922733572], [-60.810342784275065, -14.391353922733572], [-60.810342784275065, -14.382370769892376], [-60.81932593711625, -14.382370769892376], [-60.81932593711625, -14.391353922733572]]]}, 'id': '+13256+9950', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.82830908995744, -14.50813490966911], [-60.810342784275065, -14.50813490966911], [-60.810342784275065, -14.499151756827914], [-60.82830908995744, -14.499151756827914], [-60.82830908995744, -14.50813490966911]]]}, 'id': '+13256+9963', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -15.702894237548065], [-60.80135963143387, -15.702894237548065], [-60.80135963143387, -15.693911084706883], [-60.81932593711625, -15.693911084706883], [-60.81932593711625, -15.702894237548065]]]}, 'id': '+13257+10096', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.810342784275065, -15.729843696071654], [-60.80135963143387, -15.729843696071654], [-60.80135963143387, -15.720860543230458], [-60.810342784275065, -15.720860543230458], [-60.810342784275065, -15.729843696071654]]]}, 'id': '+13257+10099', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.810342784275065, -15.819675224483603], [-60.80135963143387, -15.819675224483603], [-60.80135963143387, -15.810692071642421], [-60.79237647859267, -15.810692071642421], [-60.79237647859267, -15.801708918801225], [-60.81932593711625, -15.801708918801225], [-60.81932593711625, -15.810692071642421], [-60.810342784275065, -15.810692071642421], [-60.810342784275065, -15.819675224483603]]]}, 'id': '+13257+10109', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.810342784275065, -15.855607835848389], [-60.80135963143387, -15.855607835848389], [-60.80135963143387, -15.846624683007192], [-60.79237647859267, -15.846624683007192], [-60.79237647859267, -15.837641530165996], [-60.80135963143387, -15.837641530165996], [-60.80135963143387, -15.846624683007192], [-60.810342784275065, -15.846624683007192], [-60.810342784275065, -15.855607835848389]]]}, 'id': '+13257+10113', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -15.891540447213174], [-60.80135963143387, -15.891540447213174], [-60.80135963143387, -15.882557294371978], [-60.81932593711625, -15.882557294371978], [-60.81932593711625, -15.891540447213174]]]}, 'id': '+13257+10117', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.810342784275065, -15.936456211419141], [-60.80135963143387, -15.936456211419141], [-60.80135963143387, -15.92747305857796], [-60.810342784275065, -15.92747305857796], [-60.810342784275065, -15.936456211419141]]]}, 'id': '+13257+10122', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -16.08018665687827], [-60.80135963143387, -16.08018665687827], [-60.80135963143387, -16.071203504037072], [-60.81932593711625, -16.071203504037072], [-60.81932593711625, -16.08018665687827]]]}, 'id': '+13257+10138', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -16.143068726766643], [-60.80135963143387, -16.143068726766643], [-60.80135963143387, -16.134085573925447], [-60.81932593711625, -16.134085573925447], [-60.81932593711625, -16.143068726766643]]]}, 'id': '+13257+10145', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.810342784275065, -16.448495923367275], [-60.80135963143387, -16.448495923367275], [-60.80135963143387, -16.43951277052608], [-60.810342784275065, -16.43951277052608], [-60.810342784275065, -16.430529617684883], [-60.81932593711625, -16.430529617684883], [-60.81932593711625, -16.43951277052608], [-60.810342784275065, -16.43951277052608], [-60.810342784275065, -16.448495923367275]]]}, 'id': '+13257+10179', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -16.475445381890864], [-60.80135963143387, -16.475445381890864], [-60.80135963143387, -16.448495923367275], [-60.810342784275065, -16.448495923367275], [-60.810342784275065, -16.45747907620847], [-60.81932593711625, -16.45747907620847], [-60.81932593711625, -16.475445381890864]]]}, 'id': '+13257+10182', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.82830908995744, -13.717617459643932], [-60.80135963143387, -13.717617459643932], [-60.80135963143387, -13.708634306802736], [-60.79237647859267, -13.708634306802736], [-60.79237647859267, -13.690668001120343], [-60.810342784275065, -13.690668001120343], [-60.810342784275065, -13.69965115396154], [-60.81932593711625, -13.69965115396154], [-60.81932593711625, -13.690668001120343], [-60.82830908995744, -13.690668001120343], [-60.82830908995744, -13.69965115396154], [-60.83729224279864, -13.69965115396154], [-60.83729224279864, -13.690668001120343], [-60.846275395639836, -13.690668001120343], [-60.846275395639836, -13.69965115396154], [-60.83729224279864, -13.69965115396154], [-60.83729224279864, -13.708634306802736], [-60.82830908995744, -13.708634306802736], [-60.82830908995744, -13.717617459643932]]]}, 'id': '+13257+9875', 'properties': {'count': 12, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.810342784275065, -13.744566918167521], [-60.80135963143387, -13.744566918167521], [-60.80135963143387, -13.735583765326325], [-60.810342784275065, -13.735583765326325], [-60.810342784275065, -13.744566918167521]]]}, 'id': '+13257+9878', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.810342784275065, -14.831528411952135], [-60.80135963143387, -14.831528411952135], [-60.80135963143387, -14.822545259110939], [-60.810342784275065, -14.822545259110939], [-60.810342784275065, -14.831528411952135]]]}, 'id': '+13257+9999', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.80135963143387, -15.40645019378863], [-60.79237647859267, -15.40645019378863], [-60.79237647859267, -15.397467040947433], [-60.80135963143387, -15.397467040947433], [-60.80135963143387, -15.40645019378863]]]}, 'id': '+13258+10063', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.80135963143387, -15.891540447213174], [-60.79237647859267, -15.891540447213174], [-60.79237647859267, -15.882557294371978], [-60.80135963143387, -15.882557294371978], [-60.80135963143387, -15.891540447213174]]]}, 'id': '+13258+10117', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.80135963143387, -15.972388822783927], [-60.79237647859267, -15.972388822783927], [-60.79237647859267, -15.96340566994273], [-60.80135963143387, -15.96340566994273], [-60.80135963143387, -15.972388822783927]]]}, 'id': '+13258+10126', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.810342784275065, -16.107136115401858], [-60.79237647859267, -16.107136115401858], [-60.79237647859267, -16.09815296256066], [-60.810342784275065, -16.09815296256066], [-60.810342784275065, -16.107136115401858]]]}, 'id': '+13258+10141', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.80135963143387, -16.12510242108425], [-60.79237647859267, -16.12510242108425], [-60.79237647859267, -16.116119268243054], [-60.80135963143387, -16.116119268243054], [-60.80135963143387, -16.12510242108425]]]}, 'id': '+13258+10143', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.80135963143387, -16.2149339494962], [-60.79237647859267, -16.2149339494962], [-60.79237647859267, -16.205950796655003], [-60.80135963143387, -16.205950796655003], [-60.80135963143387, -16.2149339494962]]]}, 'id': '+13258+10153', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.80135963143387, -16.232900255178592], [-60.79237647859267, -16.232900255178592], [-60.79237647859267, -16.223917102337396], [-60.80135963143387, -16.223917102337396], [-60.80135963143387, -16.232900255178592]]]}, 'id': '+13258+10155', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.80135963143387, -16.48442853473206], [-60.79237647859267, -16.48442853473206], [-60.79237647859267, -16.475445381890864], [-60.80135963143387, -16.475445381890864], [-60.80135963143387, -16.48442853473206]]]}, 'id': '+13258+10183', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.80135963143387, -13.67270169543795], [-60.79237647859267, -13.67270169543795], [-60.79237647859267, -13.663718542596754], [-60.80135963143387, -13.663718542596754], [-60.80135963143387, -13.67270169543795]]]}, 'id': '+13258+9870', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.80135963143387, -13.735583765326325], [-60.79237647859267, -13.735583765326325], [-60.79237647859267, -13.726600612485129], [-60.75644386722789, -13.726600612485129], [-60.75644386722789, -13.717617459643932], [-60.74746071438669, -13.717617459643932], [-60.74746071438669, -13.69965115396154], [-60.76542702006908, -13.69965115396154], [-60.76542702006908, -13.690668001120343], [-60.77441017291028, -13.690668001120343], [-60.77441017291028, -13.681684848279147], [-60.783393325751476, -13.681684848279147], [-60.783393325751476, -13.67270169543795], [-60.810342784275065, -13.67270169543795], [-60.810342784275065, -13.690668001120343], [-60.81932593711625, -13.690668001120343], [-60.81932593711625, -13.69965115396154], [-60.810342784275065, -13.69965115396154], [-60.810342784275065, -13.690668001120343], [-60.79237647859267, -13.690668001120343], [-60.79237647859267, -13.708634306802736], [-60.76542702006908, -13.708634306802736], [-60.76542702006908, -13.717617459643932], [-60.79237647859267, -13.717617459643932], [-60.79237647859267, -13.726600612485129], [-60.80135963143387, -13.726600612485129], [-60.80135963143387, -13.735583765326325]], [[-60.783393325751476, -13.690668001120343], [-60.783393325751476, -13.681684848279147], [-60.79237647859267, -13.681684848279147], [-60.79237647859267, -13.690668001120343], [-60.783393325751476, -13.690668001120343]]]}, 'id': '+13258+9877', 'properties': {'count': 22, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.81932593711625, -13.771516376691096], [-60.79237647859267, -13.771516376691096], [-60.79237647859267, -13.7625332238499], [-60.810342784275065, -13.7625332238499], [-60.810342784275065, -13.753550071008718], [-60.82830908995744, -13.753550071008718], [-60.82830908995744, -13.7625332238499], [-60.81932593711625, -13.7625332238499], [-60.81932593711625, -13.771516376691096]]]}, 'id': '+13258+9881', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.80135963143387, -14.777629494904971], [-60.79237647859267, -14.777629494904971], [-60.79237647859267, -14.768646342063775], [-60.80135963143387, -14.768646342063775], [-60.80135963143387, -14.777629494904971]]]}, 'id': '+13258+9993', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.79237647859267, -14.840511564793331], [-60.783393325751476, -14.840511564793331], [-60.783393325751476, -14.831528411952135], [-60.79237647859267, -14.831528411952135], [-60.79237647859267, -14.840511564793331]]]}, 'id': '+13259+10000', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.79237647859267, -15.568146944930149], [-60.783393325751476, -15.568146944930149], [-60.783393325751476, -15.559163792088953], [-60.79237647859267, -15.559163792088953], [-60.79237647859267, -15.568146944930149]]]}, 'id': '+13259+10081', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.80135963143387, -15.801708918801225], [-60.783393325751476, -15.801708918801225], [-60.783393325751476, -15.792725765960029], [-60.80135963143387, -15.792725765960029], [-60.80135963143387, -15.801708918801225]]]}, 'id': '+13259+10107', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.79237647859267, -15.819675224483603], [-60.783393325751476, -15.819675224483603], [-60.783393325751476, -15.810692071642421], [-60.79237647859267, -15.810692071642421], [-60.79237647859267, -15.819675224483603]]]}, 'id': '+13259+10109', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.79237647859267, -15.90052360005437], [-60.783393325751476, -15.90052360005437], [-60.783393325751476, -15.891540447213174], [-60.76542702006908, -15.891540447213174], [-60.76542702006908, -15.882557294371978], [-60.77441017291028, -15.882557294371978], [-60.77441017291028, -15.873574141530781], [-60.79237647859267, -15.873574141530781], [-60.79237647859267, -15.864590988689585], [-60.810342784275065, -15.864590988689585], [-60.810342784275065, -15.873574141530781], [-60.79237647859267, -15.873574141530781], [-60.79237647859267, -15.882557294371978], [-60.783393325751476, -15.882557294371978], [-60.783393325751476, -15.891540447213174], [-60.79237647859267, -15.891540447213174], [-60.79237647859267, -15.90052360005437]]]}, 'id': '+13259+10118', 'properties': {'count': 7, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.79237647859267, -16.05323719835468], [-60.783393325751476, -16.05323719835468], [-60.783393325751476, -16.044254045513483], [-60.79237647859267, -16.044254045513483], [-60.79237647859267, -16.05323719835468]]]}, 'id': '+13259+10135', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.79237647859267, -16.071203504037072], [-60.783393325751476, -16.071203504037072], [-60.783393325751476, -16.062220351195876], [-60.79237647859267, -16.062220351195876], [-60.79237647859267, -16.071203504037072]]]}, 'id': '+13259+10137', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.80135963143387, -16.179001338131414], [-60.783393325751476, -16.179001338131414], [-60.783393325751476, -16.170018185290218], [-60.80135963143387, -16.170018185290218], [-60.80135963143387, -16.179001338131414]]]}, 'id': '+13259+10149', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.79237647859267, -16.41256331200249], [-60.783393325751476, -16.41256331200249], [-60.783393325751476, -16.403580159161294], [-60.79237647859267, -16.403580159161294], [-60.79237647859267, -16.41256331200249]]]}, 'id': '+13259+10175', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.79237647859267, -16.466462229049668], [-60.783393325751476, -16.466462229049668], [-60.783393325751476, -16.448495923367275], [-60.79237647859267, -16.448495923367275], [-60.79237647859267, -16.466462229049668]]]}, 'id': '+13259+10181', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.79237647859267, -16.66409159155596], [-60.783393325751476, -16.66409159155596], [-60.783393325751476, -16.655108438714763], [-60.79237647859267, -16.655108438714763], [-60.79237647859267, -16.66409159155596]]]}, 'id': '+13259+10203', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.79237647859267, -13.735583765326325], [-60.783393325751476, -13.735583765326325], [-60.783393325751476, -13.726600612485129], [-60.79237647859267, -13.726600612485129], [-60.79237647859267, -13.735583765326325]]]}, 'id': '+13259+9877', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.810342784275065, -13.753550071008718], [-60.783393325751476, -13.753550071008718], [-60.783393325751476, -13.744566918167521], [-60.810342784275065, -13.744566918167521], [-60.810342784275065, -13.753550071008718]]]}, 'id': '+13259+9879', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.79237647859267, -13.789482682373489], [-60.783393325751476, -13.789482682373489], [-60.783393325751476, -13.780499529532293], [-60.79237647859267, -13.780499529532293], [-60.79237647859267, -13.789482682373489]]]}, 'id': '+13259+9883', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.79237647859267, -14.535084368192699], [-60.783393325751476, -14.535084368192699], [-60.783393325751476, -14.526101215351503], [-60.79237647859267, -14.526101215351503], [-60.79237647859267, -14.535084368192699]]]}, 'id': '+13259+9966', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.783393325751476, -15.280686054011895], [-60.77441017291028, -15.280686054011895], [-60.77441017291028, -15.253736595488306], [-60.783393325751476, -15.253736595488306], [-60.783393325751476, -15.24475344264711], [-60.79237647859267, -15.24475344264711], [-60.79237647859267, -15.253736595488306], [-60.783393325751476, -15.253736595488306], [-60.783393325751476, -15.280686054011895]]]}, 'id': '+13260+10049', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.783393325751476, -15.640012167659705], [-60.77441017291028, -15.640012167659705], [-60.77441017291028, -15.60407955629492], [-60.783393325751476, -15.60407955629492], [-60.783393325751476, -15.640012167659705]]]}, 'id': '+13260+10089', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.783393325751476, -15.76577630743644], [-60.77441017291028, -15.76577630743644], [-60.77441017291028, -15.756793154595243], [-60.783393325751476, -15.756793154595243], [-60.783393325751476, -15.76577630743644]]]}, 'id': '+13260+10103', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.783393325751476, -15.864590988689585], [-60.77441017291028, -15.864590988689585], [-60.77441017291028, -15.846624683007192], [-60.783393325751476, -15.846624683007192], [-60.783393325751476, -15.864590988689585]]]}, 'id': '+13260+10114', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.783393325751476, -16.008321434148712], [-60.77441017291028, -16.008321434148712], [-60.77441017291028, -15.999338281307516], [-60.783393325751476, -15.999338281307516], [-60.783393325751476, -16.008321434148712]]]}, 'id': '+13260+10130', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.783393325751476, -16.107136115401858], [-60.77441017291028, -16.107136115401858], [-60.77441017291028, -16.09815296256066], [-60.783393325751476, -16.09815296256066], [-60.783393325751476, -16.107136115401858]]]}, 'id': '+13260+10141', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.783393325751476, -16.15205187960784], [-60.77441017291028, -16.15205187960784], [-60.77441017291028, -16.143068726766643], [-60.76542702006908, -16.143068726766643], [-60.76542702006908, -16.134085573925447], [-60.77441017291028, -16.134085573925447], [-60.77441017291028, -16.143068726766643], [-60.783393325751476, -16.143068726766643], [-60.783393325751476, -16.134085573925447], [-60.79237647859267, -16.134085573925447], [-60.79237647859267, -16.143068726766643], [-60.783393325751476, -16.143068726766643], [-60.783393325751476, -16.15205187960784]]]}, 'id': '+13260+10146', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.783393325751476, -16.16103503244902], [-60.77441017291028, -16.16103503244902], [-60.77441017291028, -16.15205187960784], [-60.76542702006908, -16.15205187960784], [-60.76542702006908, -16.143068726766643], [-60.77441017291028, -16.143068726766643], [-60.77441017291028, -16.15205187960784], [-60.783393325751476, -16.15205187960784], [-60.783393325751476, -16.16103503244902]]]}, 'id': '+13260+10147', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.783393325751476, -16.340698089272934], [-60.77441017291028, -16.340698089272934], [-60.77441017291028, -16.331714936431737], [-60.783393325751476, -16.331714936431737], [-60.783393325751476, -16.340698089272934]]]}, 'id': '+13260+10167', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.783393325751476, -13.717617459643932], [-60.77441017291028, -13.717617459643932], [-60.77441017291028, -13.708634306802736], [-60.783393325751476, -13.708634306802736], [-60.783393325751476, -13.717617459643932]]]}, 'id': '+13260+9875', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.783393325751476, -14.804578953428546], [-60.77441017291028, -14.804578953428546], [-60.77441017291028, -14.79559580058735], [-60.783393325751476, -14.79559580058735], [-60.783393325751476, -14.804578953428546]]]}, 'id': '+13260+9996', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.77441017291028, -14.86746102331692], [-60.76542702006908, -14.86746102331692], [-60.76542702006908, -14.858477870475724], [-60.77441017291028, -14.858477870475724], [-60.77441017291028, -14.86746102331692]]]}, 'id': '+13261+10003', 'properties': {'count': 1, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.783393325751476, -14.876444176158117], [-60.76542702006908, -14.876444176158117], [-60.76542702006908, -14.86746102331692], [-60.783393325751476, -14.86746102331692], [-60.783393325751476, -14.876444176158117]]]}, 'id': '+13261+10004', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.77441017291028, -16.179001338131414], [-60.76542702006908, -16.179001338131414], [-60.76542702006908, -16.170018185290218], [-60.77441017291028, -16.170018185290218], [-60.77441017291028, -16.179001338131414]]]}, 'id': '+13261+10149', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.783393325751476, -16.43951277052608], [-60.76542702006908, -16.43951277052608], [-60.76542702006908, -16.430529617684883], [-60.783393325751476, -16.430529617684883], [-60.783393325751476, -16.43951277052608]]]}, 'id': '+13261+10178', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.77441017291028, -16.6012095216676], [-60.76542702006908, -16.6012095216676], [-60.76542702006908, -16.592226368826402], [-60.77441017291028, -16.592226368826402], [-60.77441017291028, -16.6012095216676]]]}, 'id': '+13261+10196', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.783393325751476, -13.753550071008718], [-60.76542702006908, -13.753550071008718], [-60.76542702006908, -13.744566918167521], [-60.783393325751476, -13.744566918167521], [-60.783393325751476, -13.753550071008718]]]}, 'id': '+13261+9879', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.77441017291028, -13.771516376691096], [-60.76542702006908, -13.771516376691096], [-60.76542702006908, -13.7625332238499], [-60.77441017291028, -13.7625332238499], [-60.77441017291028, -13.771516376691096]]]}, 'id': '+13261+9881', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.76542702006908, -15.76577630743644], [-60.75644386722789, -15.76577630743644], [-60.75644386722789, -15.747810001754047], [-60.738477561545494, -15.747810001754047], [-60.738477561545494, -15.756793154595243], [-60.7205112558631, -15.756793154595243], [-60.7205112558631, -15.747810001754047], [-60.711528103021905, -15.747810001754047], [-60.711528103021905, -15.73882684891285], [-60.69356179733953, -15.73882684891285], [-60.69356179733953, -15.747810001754047], [-60.68457864449833, -15.747810001754047], [-60.68457864449833, -15.73882684891285], [-60.69356179733953, -15.73882684891285], [-60.69356179733953, -15.720860543230458], [-60.68457864449833, -15.720860543230458], [-60.68457864449833, -15.702894237548065], [-60.69356179733953, -15.702894237548065], [-60.69356179733953, -15.711877390389262], [-60.70254495018071, -15.711877390389262], [-60.70254495018071, -15.720860543230458], [-60.7205112558631, -15.720860543230458], [-60.7205112558631, -15.711877390389262], [-60.711528103021905, -15.711877390389262], [-60.711528103021905, -15.693911084706883], [-60.69356179733953, -15.693911084706883], [-60.69356179733953, -15.684927931865687], [-60.711528103021905, -15.684927931865687], [-60.711528103021905, -15.693911084706883], [-60.7205112558631, -15.693911084706883], [-60.7205112558631, -15.711877390389262], [-60.7294944087043, -15.711877390389262], [-60.7294944087043, -15.720860543230458], [-60.738477561545494, -15.720860543230458], [-60.738477561545494, -15.73882684891285], [-60.74746071438669, -15.73882684891285], [-60.74746071438669, -15.720860543230458], [-60.75644386722789, -15.720860543230458], [-60.75644386722789, -15.73882684891285], [-60.76542702006908, -15.73882684891285], [-60.76542702006908, -15.76577630743644]], [[-60.7205112558631, -15.73882684891285], [-60.7205112558631, -15.720860543230458], [-60.7294944087043, -15.720860543230458], [-60.7294944087043, -15.73882684891285], [-60.7205112558631, -15.73882684891285]]]}, 'id': '+13262+10103', 'properties': {'count': 29, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.76542702006908, -15.783742613118832], [-60.75644386722789, -15.783742613118832], [-60.75644386722789, -15.774759460277636], [-60.76542702006908, -15.774759460277636], [-60.76542702006908, -15.783742613118832]]]}, 'id': '+13262+10105', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.76542702006908, -15.837641530165996], [-60.75644386722789, -15.837641530165996], [-60.75644386722789, -15.8286583773248], [-60.76542702006908, -15.8286583773248], [-60.76542702006908, -15.837641530165996]]]}, 'id': '+13262+10111', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.76542702006908, -15.999338281307516], [-60.75644386722789, -15.999338281307516], [-60.75644386722789, -15.99035512846632], [-60.76542702006908, -15.99035512846632], [-60.76542702006908, -15.981371975625123], [-60.75644386722789, -15.981371975625123], [-60.75644386722789, -15.972388822783927], [-60.76542702006908, -15.972388822783927], [-60.76542702006908, -15.981371975625123], [-60.77441017291028, -15.981371975625123], [-60.77441017291028, -15.99035512846632], [-60.76542702006908, -15.99035512846632], [-60.76542702006908, -15.999338281307516]]]}, 'id': '+13262+10129', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.77441017291028, -16.026287739831105], [-60.75644386722789, -16.026287739831105], [-60.75644386722789, -16.01730458698991], [-60.77441017291028, -16.01730458698991], [-60.77441017291028, -16.026287739831105]]]}, 'id': '+13262+10132', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.783393325751476, -16.223917102337396], [-60.75644386722789, -16.223917102337396], [-60.75644386722789, -16.2149339494962], [-60.74746071438669, -16.2149339494962], [-60.74746071438669, -16.205950796655003], [-60.76542702006908, -16.205950796655003], [-60.76542702006908, -16.2149339494962], [-60.77441017291028, -16.2149339494962], [-60.77441017291028, -16.205950796655003], [-60.783393325751476, -16.205950796655003], [-60.783393325751476, -16.223917102337396]]]}, 'id': '+13262+10154', 'properties': {'count': 6, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.76542702006908, -16.43951277052608], [-60.75644386722789, -16.43951277052608], [-60.75644386722789, -16.430529617684883], [-60.76542702006908, -16.430529617684883], [-60.76542702006908, -16.43951277052608]]]}, 'id': '+13262+10178', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.77441017291028, -16.700024202920744], [-60.75644386722789, -16.700024202920744], [-60.75644386722789, -16.691041050079548], [-60.77441017291028, -16.691041050079548], [-60.77441017291028, -16.700024202920744]]]}, 'id': '+13262+10207', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.76542702006908, -15.262719748329502], [-60.74746071438669, -15.262719748329502], [-60.74746071438669, -15.253736595488306], [-60.76542702006908, -15.253736595488306], [-60.76542702006908, -15.262719748329502]]]}, 'id': '+13263+10047', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.75644386722789, -15.37950073526504], [-60.74746071438669, -15.37950073526504], [-60.74746071438669, -15.370517582423844], [-60.75644386722789, -15.370517582423844], [-60.75644386722789, -15.37950073526504]]]}, 'id': '+13263+10060', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.75644386722789, -15.711877390389262], [-60.74746071438669, -15.711877390389262], [-60.74746071438669, -15.702894237548065], [-60.75644386722789, -15.702894237548065], [-60.75644386722789, -15.693911084706883], [-60.76542702006908, -15.693911084706883], [-60.76542702006908, -15.702894237548065], [-60.75644386722789, -15.702894237548065], [-60.75644386722789, -15.711877390389262]]]}, 'id': '+13263+10097', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.75644386722789, -15.972388822783927], [-60.74746071438669, -15.972388822783927], [-60.74746071438669, -15.945439364260338], [-60.75644386722789, -15.945439364260338], [-60.75644386722789, -15.972388822783927]]]}, 'id': '+13263+10126', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.75644386722789, -15.99035512846632], [-60.74746071438669, -15.99035512846632], [-60.74746071438669, -15.981371975625123], [-60.75644386722789, -15.981371975625123], [-60.75644386722789, -15.99035512846632]]]}, 'id': '+13263+10128', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.75644386722789, -16.250866560860985], [-60.74746071438669, -16.250866560860985], [-60.74746071438669, -16.24188340801979], [-60.75644386722789, -16.24188340801979], [-60.75644386722789, -16.250866560860985]]]}, 'id': '+13263+10157', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.75644386722789, -16.358664394955326], [-60.74746071438669, -16.358664394955326], [-60.74746071438669, -16.340698089272934], [-60.75644386722789, -16.340698089272934], [-60.75644386722789, -16.331714936431737], [-60.76542702006908, -16.331714936431737], [-60.76542702006908, -16.34968124211413], [-60.75644386722789, -16.34968124211413], [-60.75644386722789, -16.358664394955326]]]}, 'id': '+13263+10169', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.75644386722789, -16.448495923367275], [-60.74746071438669, -16.448495923367275], [-60.74746071438669, -16.43951277052608], [-60.75644386722789, -16.43951277052608], [-60.75644386722789, -16.448495923367275]]]}, 'id': '+13263+10179', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.75644386722789, -16.628158980191174], [-60.74746071438669, -16.628158980191174], [-60.74746071438669, -16.619175827349977], [-60.75644386722789, -16.619175827349977], [-60.75644386722789, -16.628158980191174]]]}, 'id': '+13263+10199', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.76542702006908, -13.69965115396154], [-60.74746071438669, -13.69965115396154], [-60.74746071438669, -13.690668001120343], [-60.76542702006908, -13.690668001120343], [-60.76542702006908, -13.69965115396154]]]}, 'id': '+13263+9873', 'properties': {'count': 2, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.76542702006908, -13.753550071008718], [-60.74746071438669, -13.753550071008718], [-60.74746071438669, -13.744566918167521], [-60.738477561545494, -13.744566918167521], [-60.738477561545494, -13.735583765326325], [-60.74746071438669, -13.735583765326325], [-60.74746071438669, -13.744566918167521], [-60.75644386722789, -13.744566918167521], [-60.75644386722789, -13.735583765326325], [-60.76542702006908, -13.735583765326325], [-60.76542702006908, -13.753550071008718]]]}, 'id': '+13263+9879', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.74746071438669, -15.397467040947433], [-60.738477561545494, -15.397467040947433], [-60.738477561545494, -15.388483888106236], [-60.74746071438669, -15.388483888106236], [-60.74746071438669, -15.397467040947433]]]}, 'id': '+13264+10062', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.74746071438669, -15.577130097771345], [-60.738477561545494, -15.577130097771345], [-60.738477561545494, -15.568146944930149], [-60.7294944087043, -15.568146944930149], [-60.7294944087043, -15.550180639247756], [-60.738477561545494, -15.550180639247756], [-60.738477561545494, -15.568146944930149], [-60.74746071438669, -15.568146944930149], [-60.74746071438669, -15.577130097771345]]]}, 'id': '+13264+10082', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.74746071438669, -15.622045861977313], [-60.738477561545494, -15.622045861977313], [-60.738477561545494, -15.613062709136116], [-60.74746071438669, -15.613062709136116], [-60.74746071438669, -15.595096403453724], [-60.75644386722789, -15.595096403453724], [-60.75644386722789, -15.613062709136116], [-60.74746071438669, -15.613062709136116], [-60.74746071438669, -15.622045861977313]]]}, 'id': '+13264+10087', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.74746071438669, -15.774759460277636], [-60.738477561545494, -15.774759460277636], [-60.738477561545494, -15.76577630743644], [-60.74746071438669, -15.76577630743644], [-60.74746071438669, -15.774759460277636]]]}, 'id': '+13264+10104', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.74746071438669, -16.008321434148712], [-60.738477561545494, -16.008321434148712], [-60.738477561545494, -15.999338281307516], [-60.74746071438669, -15.999338281307516], [-60.74746071438669, -16.008321434148712]]]}, 'id': '+13264+10130', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.74746071438669, -16.01730458698991], [-60.738477561545494, -16.01730458698991], [-60.738477561545494, -16.008321434148712], [-60.74746071438669, -16.008321434148712], [-60.74746071438669, -16.01730458698991]]]}, 'id': '+13264+10131', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.74746071438669, -16.044254045513483], [-60.738477561545494, -16.044254045513483], [-60.738477561545494, -16.0352708926723], [-60.74746071438669, -16.0352708926723], [-60.74746071438669, -16.044254045513483]]]}, 'id': '+13264+10134', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.75644386722789, -16.170018185290218], [-60.738477561545494, -16.170018185290218], [-60.738477561545494, -16.16103503244902], [-60.75644386722789, -16.16103503244902], [-60.75644386722789, -16.170018185290218]]]}, 'id': '+13264+10148', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.74746071438669, -16.232900255178592], [-60.738477561545494, -16.232900255178592], [-60.738477561545494, -16.223917102337396], [-60.74746071438669, -16.223917102337396], [-60.74746071438669, -16.232900255178592]]]}, 'id': '+13264+10155', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.74746071438669, -16.286799172225756], [-60.738477561545494, -16.286799172225756], [-60.738477561545494, -16.27781601938456], [-60.74746071438669, -16.27781601938456], [-60.74746071438669, -16.286799172225756]]]}, 'id': '+13264+10161', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.74746071438669, -16.331714936431737], [-60.738477561545494, -16.331714936431737], [-60.738477561545494, -16.32273178359054], [-60.7294944087043, -16.32273178359054], [-60.7294944087043, -16.30476547790815], [-60.7205112558631, -16.30476547790815], [-60.7205112558631, -16.27781601938456], [-60.7294944087043, -16.27781601938456], [-60.7294944087043, -16.286799172225756], [-60.76542702006908, -16.286799172225756], [-60.76542702006908, -16.295782325066952], [-60.74746071438669, -16.295782325066952], [-60.74746071438669, -16.30476547790815], [-60.738477561545494, -16.30476547790815], [-60.738477561545494, -16.32273178359054], [-60.74746071438669, -16.32273178359054], [-60.74746071438669, -16.331714936431737]], [[-60.7294944087043, -16.30476547790815], [-60.7294944087043, -16.295782325066952], [-60.738477561545494, -16.295782325066952], [-60.738477561545494, -16.30476547790815], [-60.7294944087043, -16.30476547790815]]]}, 'id': '+13264+10166', 'properties': {'count': 11, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.74746071438669, -16.57426006314401], [-60.738477561545494, -16.57426006314401], [-60.738477561545494, -16.565276910302813], [-60.74746071438669, -16.565276910302813], [-60.74746071438669, -16.57426006314401]]]}, 'id': '+13264+10193', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.74746071438669, -16.592226368826402], [-60.738477561545494, -16.592226368826402], [-60.738477561545494, -16.583243215985206], [-60.74746071438669, -16.583243215985206], [-60.74746071438669, -16.592226368826402]]]}, 'id': '+13264+10195', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.74746071438669, -13.735583765326325], [-60.738477561545494, -13.735583765326325], [-60.738477561545494, -13.726600612485129], [-60.74746071438669, -13.726600612485129], [-60.74746071438669, -13.735583765326325]]]}, 'id': '+13264+9877', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.738477561545494, -14.903393634681692], [-60.7294944087043, -14.903393634681692], [-60.7294944087043, -14.89441048184051], [-60.738477561545494, -14.89441048184051], [-60.738477561545494, -14.903393634681692]]]}, 'id': '+13265+10007', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.738477561545494, -15.289669206853091], [-60.7294944087043, -15.289669206853091], [-60.7294944087043, -15.280686054011895], [-60.738477561545494, -15.280686054011895], [-60.738477561545494, -15.289669206853091]]]}, 'id': '+13265+10050', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.74746071438669, -15.54119748640656], [-60.7294944087043, -15.54119748640656], [-60.7294944087043, -15.523231180724167], [-60.7205112558631, -15.523231180724167], [-60.7205112558631, -15.532214333565364], [-60.711528103021905, -15.532214333565364], [-60.711528103021905, -15.51424802788297], [-60.7205112558631, -15.51424802788297], [-60.7205112558631, -15.505264875041775], [-60.7294944087043, -15.505264875041775], [-60.7294944087043, -15.523231180724167], [-60.738477561545494, -15.523231180724167], [-60.738477561545494, -15.532214333565364], [-60.74746071438669, -15.532214333565364], [-60.74746071438669, -15.54119748640656]]]}, 'id': '+13265+10078', 'properties': {'count': 7, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.738477561545494, -15.792725765960029], [-60.7294944087043, -15.792725765960029], [-60.7294944087043, -15.783742613118832], [-60.738477561545494, -15.783742613118832], [-60.738477561545494, -15.792725765960029]]]}, 'id': '+13265+10106', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.738477561545494, -15.8286583773248], [-60.7294944087043, -15.8286583773248], [-60.7294944087043, -15.810692071642421], [-60.7205112558631, -15.810692071642421], [-60.7205112558631, -15.801708918801225], [-60.7294944087043, -15.801708918801225], [-60.7294944087043, -15.792725765960029], [-60.738477561545494, -15.792725765960029], [-60.738477561545494, -15.783742613118832], [-60.74746071438669, -15.783742613118832], [-60.74746071438669, -15.774759460277636], [-60.75644386722789, -15.774759460277636], [-60.75644386722789, -15.76577630743644], [-60.738477561545494, -15.76577630743644], [-60.738477561545494, -15.756793154595243], [-60.75644386722789, -15.756793154595243], [-60.75644386722789, -15.76577630743644], [-60.76542702006908, -15.76577630743644], [-60.76542702006908, -15.73882684891285], [-60.75644386722789, -15.73882684891285], [-60.75644386722789, -15.729843696071654], [-60.783393325751476, -15.729843696071654], [-60.783393325751476, -15.747810001754047], [-60.79237647859267, -15.747810001754047], [-60.79237647859267, -15.783742613118832], [-60.810342784275065, -15.783742613118832], [-60.810342784275065, -15.774759460277636], [-60.81932593711625, -15.774759460277636], [-60.81932593711625, -15.783742613118832], [-60.83729224279864, -15.783742613118832], [-60.83729224279864, -15.774759460277636], [-60.846275395639836, -15.774759460277636], [-60.846275395639836, -15.783742613118832], [-60.83729224279864, -15.783742613118832], [-60.83729224279864, -15.792725765960029], [-60.810342784275065, -15.792725765960029], [-60.810342784275065, -15.801708918801225], [-60.80135963143387, -15.801708918801225], [-60.80135963143387, -15.792725765960029], [-60.783393325751476, -15.792725765960029], [-60.783393325751476, -15.801708918801225], [-60.77441017291028, -15.801708918801225], [-60.77441017291028, -15.810692071642421], [-60.76542702006908, -15.810692071642421], [-60.76542702006908, -15.792725765960029], [-60.75644386722789, -15.792725765960029], [-60.75644386722789, -15.783742613118832], [-60.74746071438669, -15.783742613118832], [-60.74746071438669, -15.810692071642421], [-60.738477561545494, -15.810692071642421], [-60.738477561545494, -15.8286583773248]], [[-60.77441017291028, -15.76577630743644], [-60.77441017291028, -15.756793154595243], [-60.783393325751476, -15.756793154595243], [-60.783393325751476, -15.76577630743644], [-60.77441017291028, -15.76577630743644]], [[-60.75644386722789, -15.783742613118832], [-60.75644386722789, -15.774759460277636], [-60.76542702006908, -15.774759460277636], [-60.76542702006908, -15.783742613118832], [-60.75644386722789, -15.783742613118832]], [[-60.77441017291028, -15.792725765960029], [-60.77441017291028, -15.783742613118832], [-60.783393325751476, -15.783742613118832], [-60.783393325751476, -15.792725765960029], [-60.77441017291028, -15.792725765960029]], [[-60.7294944087043, -15.810692071642421], [-60.7294944087043, -15.801708918801225], [-60.738477561545494, -15.801708918801225], [-60.738477561545494, -15.810692071642421], [-60.7294944087043, -15.810692071642421]]]}, 'id': '+13265+10110', 'properties': {'count': 41, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.738477561545494, -15.90052360005437], [-60.7294944087043, -15.90052360005437], [-60.7294944087043, -15.882557294371978], [-60.738477561545494, -15.882557294371978], [-60.738477561545494, -15.873574141530781], [-60.74746071438669, -15.873574141530781], [-60.74746071438669, -15.882557294371978], [-60.738477561545494, -15.882557294371978], [-60.738477561545494, -15.90052360005437]]]}, 'id': '+13265+10118', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.738477561545494, -15.936456211419141], [-60.7294944087043, -15.936456211419141], [-60.7294944087043, -15.92747305857796], [-60.738477561545494, -15.92747305857796], [-60.738477561545494, -15.936456211419141]]]}, 'id': '+13265+10122', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.738477561545494, -15.945439364260338], [-60.7294944087043, -15.945439364260338], [-60.7294944087043, -15.936456211419141], [-60.738477561545494, -15.936456211419141], [-60.738477561545494, -15.918489905736763], [-60.76542702006908, -15.918489905736763], [-60.76542702006908, -15.909506752895567], [-60.74746071438669, -15.909506752895567], [-60.74746071438669, -15.90052360005437], [-60.76542702006908, -15.90052360005437], [-60.76542702006908, -15.909506752895567], [-60.783393325751476, -15.909506752895567], [-60.783393325751476, -15.918489905736763], [-60.79237647859267, -15.918489905736763], [-60.79237647859267, -15.92747305857796], [-60.77441017291028, -15.92747305857796], [-60.77441017291028, -15.936456211419141], [-60.738477561545494, -15.936456211419141], [-60.738477561545494, -15.945439364260338]], [[-60.76542702006908, -15.92747305857796], [-60.76542702006908, -15.918489905736763], [-60.77441017291028, -15.918489905736763], [-60.77441017291028, -15.92747305857796], [-60.76542702006908, -15.92747305857796]]]}, 'id': '+13265+10123', 'properties': {'count': 14, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.738477561545494, -15.981371975625123], [-60.7294944087043, -15.981371975625123], [-60.7294944087043, -15.972388822783927], [-60.738477561545494, -15.972388822783927], [-60.738477561545494, -15.981371975625123]]]}, 'id': '+13265+10127', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.738477561545494, -16.170018185290218], [-60.7294944087043, -16.170018185290218], [-60.7294944087043, -16.16103503244902], [-60.738477561545494, -16.16103503244902], [-60.738477561545494, -16.170018185290218]]]}, 'id': '+13265+10148', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.738477561545494, -16.250866560860985], [-60.7294944087043, -16.250866560860985], [-60.7294944087043, -16.24188340801979], [-60.738477561545494, -16.24188340801979], [-60.738477561545494, -16.250866560860985]]]}, 'id': '+13265+10157', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.738477561545494, -16.268832866543377], [-60.7294944087043, -16.268832866543377], [-60.7294944087043, -16.25984971370218], [-60.738477561545494, -16.25984971370218], [-60.738477561545494, -16.268832866543377]]]}, 'id': '+13265+10159', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.738477561545494, -16.286799172225756], [-60.7294944087043, -16.286799172225756], [-60.7294944087043, -16.268832866543377], [-60.738477561545494, -16.268832866543377], [-60.738477561545494, -16.25984971370218], [-60.76542702006908, -16.25984971370218], [-60.76542702006908, -16.268832866543377], [-60.75644386722789, -16.268832866543377], [-60.75644386722789, -16.27781601938456], [-60.76542702006908, -16.27781601938456], [-60.76542702006908, -16.286799172225756], [-60.74746071438669, -16.286799172225756], [-60.74746071438669, -16.27781601938456], [-60.738477561545494, -16.27781601938456], [-60.738477561545494, -16.286799172225756]]]}, 'id': '+13265+10161', 'properties': {'count': 9, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.738477561545494, -13.726600612485129], [-60.7294944087043, -13.726600612485129], [-60.7294944087043, -13.717617459643932], [-60.738477561545494, -13.717617459643932], [-60.738477561545494, -13.726600612485129]]]}, 'id': '+13265+9876', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7294944087043, -15.496281722200578], [-60.7205112558631, -15.496281722200578], [-60.7205112558631, -15.487298569359382], [-60.7294944087043, -15.487298569359382], [-60.7294944087043, -15.496281722200578]]]}, 'id': '+13266+10073', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7294944087043, -15.67594477902449], [-60.7205112558631, -15.67594477902449], [-60.7205112558631, -15.666961626183294], [-60.7294944087043, -15.666961626183294], [-60.7294944087043, -15.657978473342098], [-60.738477561545494, -15.657978473342098], [-60.738477561545494, -15.666961626183294], [-60.7294944087043, -15.666961626183294], [-60.7294944087043, -15.67594477902449]]]}, 'id': '+13266+10093', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7294944087043, -15.73882684891285], [-60.7205112558631, -15.73882684891285], [-60.7205112558631, -15.720860543230458], [-60.7294944087043, -15.720860543230458], [-60.7294944087043, -15.711877390389262], [-60.7205112558631, -15.711877390389262], [-60.7205112558631, -15.693911084706883], [-60.711528103021905, -15.693911084706883], [-60.711528103021905, -15.702894237548065], [-60.70254495018071, -15.702894237548065], [-60.70254495018071, -15.711877390389262], [-60.711528103021905, -15.711877390389262], [-60.711528103021905, -15.720860543230458], [-60.70254495018071, -15.720860543230458], [-60.70254495018071, -15.711877390389262], [-60.69356179733953, -15.711877390389262], [-60.69356179733953, -15.693911084706883], [-60.68457864449833, -15.693911084706883], [-60.68457864449833, -15.67594477902449], [-60.675595491657134, -15.67594477902449], [-60.675595491657134, -15.666961626183294], [-60.68457864449833, -15.666961626183294], [-60.68457864449833, -15.67594477902449], [-60.69356179733953, -15.67594477902449], [-60.69356179733953, -15.648995320500902], [-60.68457864449833, -15.648995320500902], [-60.68457864449833, -15.640012167659705], [-60.711528103021905, -15.640012167659705], [-60.711528103021905, -15.657978473342098], [-60.7205112558631, -15.657978473342098], [-60.7205112558631, -15.640012167659705], [-60.7294944087043, -15.640012167659705], [-60.7294944087043, -15.631029014818509], [-60.74746071438669, -15.631029014818509], [-60.74746071438669, -15.640012167659705], [-60.738477561545494, -15.640012167659705], [-60.738477561545494, -15.648995320500902], [-60.75644386722789, -15.648995320500902], [-60.75644386722789, -15.640012167659705], [-60.76542702006908, -15.640012167659705], [-60.76542702006908, -15.657978473342098], [-60.75644386722789, -15.657978473342098], [-60.75644386722789, -15.666961626183294], [-60.76542702006908, -15.666961626183294], [-60.76542702006908, -15.67594477902449], [-60.783393325751476, -15.67594477902449], [-60.783393325751476, -15.666961626183294], [-60.79237647859267, -15.666961626183294], [-60.79237647859267, -15.67594477902449], [-60.80135963143387, -15.67594477902449], [-60.80135963143387, -15.666961626183294], [-60.810342784275065, -15.666961626183294], [-60.810342784275065, -15.657978473342098], [-60.81932593711625, -15.657978473342098], [-60.81932593711625, -15.648995320500902], [-60.82830908995744, -15.648995320500902], [-60.82830908995744, -15.666961626183294], [-60.810342784275065, -15.666961626183294], [-60.810342784275065, -15.67594477902449], [-60.80135963143387, -15.67594477902449], [-60.80135963143387, -15.684927931865687], [-60.79237647859267, -15.684927931865687], [-60.79237647859267, -15.67594477902449], [-60.783393325751476, -15.67594477902449], [-60.783393325751476, -15.684927931865687], [-60.77441017291028, -15.684927931865687], [-60.77441017291028, -15.693911084706883], [-60.783393325751476, -15.693911084706883], [-60.783393325751476, -15.711877390389262], [-60.77441017291028, -15.711877390389262], [-60.77441017291028, -15.720860543230458], [-60.74746071438669, -15.720860543230458], [-60.74746071438669, -15.729843696071654], [-60.738477561545494, -15.729843696071654], [-60.738477561545494, -15.720860543230458], [-60.7294944087043, -15.720860543230458], [-60.7294944087043, -15.73882684891285]], [[-60.7205112558631, -15.67594477902449], [-60.7205112558631, -15.666961626183294], [-60.7294944087043, -15.666961626183294], [-60.7294944087043, -15.648995320500902], [-60.738477561545494, -15.648995320500902], [-60.738477561545494, -15.666961626183294], [-60.74746071438669, -15.666961626183294], [-60.74746071438669, -15.67594477902449], [-60.7205112558631, -15.67594477902449]], [[-60.70254495018071, -15.67594477902449], [-60.70254495018071, -15.657978473342098], [-60.711528103021905, -15.657978473342098], [-60.711528103021905, -15.67594477902449], [-60.70254495018071, -15.67594477902449]], [[-60.711528103021905, -15.684927931865687], [-60.711528103021905, -15.67594477902449], [-60.7205112558631, -15.67594477902449], [-60.7205112558631, -15.684927931865687], [-60.711528103021905, -15.684927931865687]], [[-60.69356179733953, -15.693911084706883], [-60.69356179733953, -15.67594477902449], [-60.70254495018071, -15.67594477902449], [-60.70254495018071, -15.684927931865687], [-60.711528103021905, -15.684927931865687], [-60.711528103021905, -15.693911084706883], [-60.69356179733953, -15.693911084706883]], [[-60.76542702006908, -15.711877390389262], [-60.76542702006908, -15.702894237548065], [-60.77441017291028, -15.702894237548065], [-60.77441017291028, -15.711877390389262], [-60.76542702006908, -15.711877390389262]], [[-60.74746071438669, -15.711877390389262], [-60.74746071438669, -15.693911084706883], [-60.738477561545494, -15.693911084706883], [-60.738477561545494, -15.684927931865687], [-60.74746071438669, -15.684927931865687], [-60.74746071438669, -15.67594477902449], [-60.75644386722789, -15.67594477902449], [-60.75644386722789, -15.693911084706883], [-60.76542702006908, -15.693911084706883], [-60.76542702006908, -15.702894237548065], [-60.75644386722789, -15.702894237548065], [-60.75644386722789, -15.711877390389262], [-60.74746071438669, -15.711877390389262]]]}, 'id': '+13266+10100', 'properties': {'count': 66, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7294944087043, -15.891540447213174], [-60.7205112558631, -15.891540447213174], [-60.7205112558631, -15.882557294371978], [-60.7294944087043, -15.882557294371978], [-60.7294944087043, -15.891540447213174]]]}, 'id': '+13266+10117', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7294944087043, -16.0352708926723], [-60.7205112558631, -16.0352708926723], [-60.7205112558631, -16.01730458698991], [-60.7294944087043, -16.01730458698991], [-60.7294944087043, -16.0352708926723]]]}, 'id': '+13266+10133', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.74746071438669, -16.15205187960784], [-60.7205112558631, -16.15205187960784], [-60.7205112558631, -16.143068726766643], [-60.7294944087043, -16.143068726766643], [-60.7294944087043, -16.134085573925447], [-60.711528103021905, -16.134085573925447], [-60.711528103021905, -16.12510242108425], [-60.7205112558631, -16.12510242108425], [-60.7205112558631, -16.09815296256066], [-60.711528103021905, -16.09815296256066], [-60.711528103021905, -16.107136115401858], [-60.70254495018071, -16.107136115401858], [-60.70254495018071, -16.09815296256066], [-60.69356179733953, -16.09815296256066], [-60.69356179733953, -16.107136115401858], [-60.68457864449833, -16.107136115401858], [-60.68457864449833, -16.089169809719465], [-60.69356179733953, -16.089169809719465], [-60.69356179733953, -16.05323719835468], [-60.70254495018071, -16.05323719835468], [-60.70254495018071, -16.062220351195876], [-60.7205112558631, -16.062220351195876], [-60.7205112558631, -16.044254045513483], [-60.74746071438669, -16.044254045513483], [-60.74746071438669, -16.062220351195876], [-60.738477561545494, -16.062220351195876], [-60.738477561545494, -16.08018665687827], [-60.76542702006908, -16.08018665687827], [-60.76542702006908, -16.062220351195876], [-60.75644386722789, -16.062220351195876], [-60.75644386722789, -16.05323719835468], [-60.77441017291028, -16.05323719835468], [-60.77441017291028, -16.062220351195876], [-60.783393325751476, -16.062220351195876], [-60.783393325751476, -16.071203504037072], [-60.77441017291028, -16.071203504037072], [-60.77441017291028, -16.08018665687827], [-60.76542702006908, -16.08018665687827], [-60.76542702006908, -16.116119268243054], [-60.75644386722789, -16.116119268243054], [-60.75644386722789, -16.134085573925447], [-60.74746071438669, -16.134085573925447], [-60.74746071438669, -16.12510242108425], [-60.738477561545494, -16.12510242108425], [-60.738477561545494, -16.143068726766643], [-60.74746071438669, -16.143068726766643], [-60.74746071438669, -16.15205187960784]], [[-60.7205112558631, -16.08018665687827], [-60.7205112558631, -16.062220351195876], [-60.7294944087043, -16.062220351195876], [-60.7294944087043, -16.08018665687827], [-60.7205112558631, -16.08018665687827]], [[-60.7294944087043, -16.116119268243054], [-60.7294944087043, -16.107136115401858], [-60.738477561545494, -16.107136115401858], [-60.738477561545494, -16.09815296256066], [-60.74746071438669, -16.09815296256066], [-60.74746071438669, -16.107136115401858], [-60.75644386722789, -16.107136115401858], [-60.75644386722789, -16.116119268243054], [-60.7294944087043, -16.116119268243054]]]}, 'id': '+13266+10146', 'properties': {'count': 57, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7294944087043, -16.16103503244902], [-60.7205112558631, -16.16103503244902], [-60.7205112558631, -16.15205187960784], [-60.7294944087043, -16.15205187960784], [-60.7294944087043, -16.16103503244902]]]}, 'id': '+13266+10147', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7294944087043, -16.520361146096832], [-60.7205112558631, -16.520361146096832], [-60.7205112558631, -16.511377993255635], [-60.7294944087043, -16.511377993255635], [-60.7294944087043, -16.50239484041444], [-60.711528103021905, -16.50239484041444], [-60.711528103021905, -16.493411687573257], [-60.7294944087043, -16.493411687573257], [-60.7294944087043, -16.50239484041444], [-60.738477561545494, -16.50239484041444], [-60.738477561545494, -16.511377993255635], [-60.7294944087043, -16.511377993255635], [-60.7294944087043, -16.520361146096832]]]}, 'id': '+13266+10187', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7294944087043, -13.708634306802736], [-60.7205112558631, -13.708634306802736], [-60.7205112558631, -13.690668001120343], [-60.7294944087043, -13.690668001120343], [-60.7294944087043, -13.708634306802736]]]}, 'id': '+13266+9874', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7294944087043, -13.744566918167521], [-60.7205112558631, -13.744566918167521], [-60.7205112558631, -13.735583765326325], [-60.7294944087043, -13.735583765326325], [-60.7294944087043, -13.744566918167521]]]}, 'id': '+13266+9878', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7294944087043, -13.852364752261863], [-60.7205112558631, -13.852364752261863], [-60.7205112558631, -13.843381599420667], [-60.7294944087043, -13.843381599420667], [-60.7294944087043, -13.852364752261863]]]}, 'id': '+13266+9890', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7205112558631, -14.993225163093655], [-60.711528103021905, -14.993225163093655], [-60.711528103021905, -14.966275704570066], [-60.7205112558631, -14.966275704570066], [-60.7205112558631, -14.975258857411262], [-60.7294944087043, -14.975258857411262], [-60.7294944087043, -14.984242010252458], [-60.7205112558631, -14.984242010252458], [-60.7205112558631, -14.993225163093655]]]}, 'id': '+13267+10017', 'properties': {'count': 4, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7205112558631, -15.056107232982015], [-60.711528103021905, -15.056107232982015], [-60.711528103021905, -15.038140927299622], [-60.7205112558631, -15.038140927299622], [-60.7205112558631, -15.056107232982015]]]}, 'id': '+13267+10024', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7205112558631, -15.550180639247756], [-60.711528103021905, -15.550180639247756], [-60.711528103021905, -15.54119748640656], [-60.7205112558631, -15.54119748640656], [-60.7205112558631, -15.550180639247756]]]}, 'id': '+13267+10079', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7205112558631, -15.756793154595243], [-60.711528103021905, -15.756793154595243], [-60.711528103021905, -15.747810001754047], [-60.7205112558631, -15.747810001754047], [-60.7205112558631, -15.756793154595243]]]}, 'id': '+13267+10102', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7205112558631, -15.792725765960029], [-60.711528103021905, -15.792725765960029], [-60.711528103021905, -15.76577630743644], [-60.70254495018071, -15.76577630743644], [-60.70254495018071, -15.774759460277636], [-60.675595491657134, -15.774759460277636], [-60.675595491657134, -15.76577630743644], [-60.70254495018071, -15.76577630743644], [-60.70254495018071, -15.756793154595243], [-60.711528103021905, -15.756793154595243], [-60.711528103021905, -15.76577630743644], [-60.7205112558631, -15.76577630743644], [-60.7205112558631, -15.756793154595243], [-60.738477561545494, -15.756793154595243], [-60.738477561545494, -15.76577630743644], [-60.7294944087043, -15.76577630743644], [-60.7294944087043, -15.774759460277636], [-60.7205112558631, -15.774759460277636], [-60.7205112558631, -15.792725765960029]]]}, 'id': '+13267+10106', 'properties': {'count': 10, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7294944087043, -15.819675224483603], [-60.711528103021905, -15.819675224483603], [-60.711528103021905, -15.810692071642421], [-60.7294944087043, -15.810692071642421], [-60.7294944087043, -15.801708918801225], [-60.738477561545494, -15.801708918801225], [-60.738477561545494, -15.810692071642421], [-60.7294944087043, -15.810692071642421], [-60.7294944087043, -15.819675224483603]]]}, 'id': '+13267+10109', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7205112558631, -15.837641530165996], [-60.711528103021905, -15.837641530165996], [-60.711528103021905, -15.819675224483603], [-60.7205112558631, -15.819675224483603], [-60.7205112558631, -15.837641530165996]]]}, 'id': '+13267+10111', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7205112558631, -15.891540447213174], [-60.711528103021905, -15.891540447213174], [-60.711528103021905, -15.882557294371978], [-60.70254495018071, -15.882557294371978], [-60.70254495018071, -15.873574141530781], [-60.7205112558631, -15.873574141530781], [-60.7205112558631, -15.891540447213174]]]}, 'id': '+13267+10117', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7205112558631, -15.981371975625123], [-60.711528103021905, -15.981371975625123], [-60.711528103021905, -15.972388822783927], [-60.7205112558631, -15.972388822783927], [-60.7205112558631, -15.981371975625123]]]}, 'id': '+13267+10127', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7205112558631, -16.24188340801979], [-60.711528103021905, -16.24188340801979], [-60.711528103021905, -16.232900255178592], [-60.7205112558631, -16.232900255178592], [-60.7205112558631, -16.24188340801979]]]}, 'id': '+13267+10156', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7205112558631, -16.25984971370218], [-60.711528103021905, -16.25984971370218], [-60.711528103021905, -16.250866560860985], [-60.7205112558631, -16.250866560860985], [-60.7205112558631, -16.25984971370218]]]}, 'id': '+13267+10158', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7294944087043, -16.394597006320097], [-60.711528103021905, -16.394597006320097], [-60.711528103021905, -16.385613853478915], [-60.7205112558631, -16.385613853478915], [-60.7205112558631, -16.37663070063772], [-60.70254495018071, -16.37663070063772], [-60.70254495018071, -16.367647547796523], [-60.7205112558631, -16.367647547796523], [-60.7205112558631, -16.358664394955326], [-60.711528103021905, -16.358664394955326], [-60.711528103021905, -16.34968124211413], [-60.7205112558631, -16.34968124211413], [-60.7205112558631, -16.340698089272934], [-60.711528103021905, -16.340698089272934], [-60.711528103021905, -16.331714936431737], [-60.7205112558631, -16.331714936431737], [-60.7205112558631, -16.340698089272934], [-60.7294944087043, -16.340698089272934], [-60.7294944087043, -16.394597006320097]]]}, 'id': '+13267+10173', 'properties': {'count': 11, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7205112558631, -16.556293757461617], [-60.711528103021905, -16.556293757461617], [-60.711528103021905, -16.54731060462042], [-60.7205112558631, -16.54731060462042], [-60.7205112558631, -16.556293757461617]]]}, 'id': '+13267+10191', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7205112558631, -16.583243215985206], [-60.711528103021905, -16.583243215985206], [-60.711528103021905, -16.57426006314401], [-60.7205112558631, -16.57426006314401], [-60.7205112558631, -16.583243215985206]]]}, 'id': '+13267+10194', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7205112558631, -16.619175827349977], [-60.711528103021905, -16.619175827349977], [-60.711528103021905, -16.610192674508795], [-60.7205112558631, -16.610192674508795], [-60.7205112558631, -16.619175827349977]]]}, 'id': '+13267+10198', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7205112558631, -16.66409159155596], [-60.711528103021905, -16.66409159155596], [-60.711528103021905, -16.655108438714763], [-60.7205112558631, -16.655108438714763], [-60.7205112558631, -16.66409159155596]]]}, 'id': '+13267+10203', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7205112558631, -13.744566918167521], [-60.711528103021905, -13.744566918167521], [-60.711528103021905, -13.726600612485129], [-60.7205112558631, -13.726600612485129], [-60.7205112558631, -13.744566918167521]]]}, 'id': '+13267+9878', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7294944087043, -13.816432140897078], [-60.711528103021905, -13.816432140897078], [-60.711528103021905, -13.807448988055882], [-60.70254495018071, -13.807448988055882], [-60.70254495018071, -13.798465835214685], [-60.7205112558631, -13.798465835214685], [-60.7205112558631, -13.807448988055882], [-60.7294944087043, -13.807448988055882], [-60.7294944087043, -13.816432140897078]]]}, 'id': '+13267+9886', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.711528103021905, -15.640012167659705], [-60.70254495018071, -15.640012167659705], [-60.70254495018071, -15.631029014818509], [-60.711528103021905, -15.631029014818509], [-60.711528103021905, -15.640012167659705]]]}, 'id': '+13268+10089', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.711528103021905, -15.666961626183294], [-60.70254495018071, -15.666961626183294], [-60.70254495018071, -15.657978473342098], [-60.711528103021905, -15.657978473342098], [-60.711528103021905, -15.666961626183294]]]}, 'id': '+13268+10092', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.711528103021905, -15.90052360005437], [-60.70254495018071, -15.90052360005437], [-60.70254495018071, -15.882557294371978], [-60.711528103021905, -15.882557294371978], [-60.711528103021905, -15.90052360005437]]]}, 'id': '+13268+10118', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.711528103021905, -15.909506752895567], [-60.70254495018071, -15.909506752895567], [-60.70254495018071, -15.90052360005437], [-60.711528103021905, -15.90052360005437], [-60.711528103021905, -15.909506752895567]]]}, 'id': '+13268+10119', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.711528103021905, -15.999338281307516], [-60.70254495018071, -15.999338281307516], [-60.70254495018071, -15.99035512846632], [-60.69356179733953, -15.99035512846632], [-60.69356179733953, -15.972388822783927], [-60.68457864449833, -15.972388822783927], [-60.68457864449833, -15.99035512846632], [-60.675595491657134, -15.99035512846632], [-60.675595491657134, -15.972388822783927], [-60.648646033133545, -15.972388822783927], [-60.648646033133545, -15.96340566994273], [-60.63966288029235, -15.96340566994273], [-60.63966288029235, -15.954422517101534], [-60.66661233881594, -15.954422517101534], [-60.66661233881594, -15.96340566994273], [-60.69356179733953, -15.96340566994273], [-60.69356179733953, -15.954422517101534], [-60.70254495018071, -15.954422517101534], [-60.70254495018071, -15.945439364260338], [-60.711528103021905, -15.945439364260338], [-60.711528103021905, -15.918489905736763], [-60.70254495018071, -15.918489905736763], [-60.70254495018071, -15.92747305857796], [-60.69356179733953, -15.92747305857796], [-60.69356179733953, -15.909506752895567], [-60.711528103021905, -15.909506752895567], [-60.711528103021905, -15.918489905736763], [-60.738477561545494, -15.918489905736763], [-60.738477561545494, -15.92747305857796], [-60.7294944087043, -15.92747305857796], [-60.7294944087043, -15.96340566994273], [-60.7205112558631, -15.96340566994273], [-60.7205112558631, -15.972388822783927], [-60.711528103021905, -15.972388822783927], [-60.711528103021905, -15.999338281307516]]]}, 'id': '+13268+10129', 'properties': {'count': 35, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.711528103021905, -16.15205187960784], [-60.70254495018071, -16.15205187960784], [-60.70254495018071, -16.143068726766643], [-60.711528103021905, -16.143068726766643], [-60.711528103021905, -16.15205187960784]]]}, 'id': '+13268+10146', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.711528103021905, -16.2149339494962], [-60.70254495018071, -16.2149339494962], [-60.70254495018071, -16.205950796655003], [-60.711528103021905, -16.205950796655003], [-60.711528103021905, -16.2149339494962]]]}, 'id': '+13268+10153', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.711528103021905, -16.565276910302813], [-60.70254495018071, -16.565276910302813], [-60.70254495018071, -16.556293757461617], [-60.711528103021905, -16.556293757461617], [-60.711528103021905, -16.565276910302813]]]}, 'id': '+13268+10192', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.711528103021905, -16.610192674508795], [-60.70254495018071, -16.610192674508795], [-60.70254495018071, -16.6012095216676], [-60.711528103021905, -16.6012095216676], [-60.711528103021905, -16.592226368826402], [-60.7205112558631, -16.592226368826402], [-60.7205112558631, -16.6012095216676], [-60.711528103021905, -16.6012095216676], [-60.711528103021905, -16.610192674508795]]]}, 'id': '+13268+10197', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.711528103021905, -13.708634306802736], [-60.70254495018071, -13.708634306802736], [-60.70254495018071, -13.69965115396154], [-60.711528103021905, -13.69965115396154], [-60.711528103021905, -13.708634306802736]]]}, 'id': '+13268+9874', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.711528103021905, -13.798465835214685], [-60.70254495018071, -13.798465835214685], [-60.70254495018071, -13.789482682373489], [-60.711528103021905, -13.789482682373489], [-60.711528103021905, -13.798465835214685]]]}, 'id': '+13268+9884', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.711528103021905, -13.852364752261863], [-60.70254495018071, -13.852364752261863], [-60.70254495018071, -13.843381599420667], [-60.68457864449833, -13.843381599420667], [-60.68457864449833, -13.816432140897078], [-60.69356179733953, -13.816432140897078], [-60.69356179733953, -13.807448988055882], [-60.70254495018071, -13.807448988055882], [-60.70254495018071, -13.825415293738274], [-60.711528103021905, -13.825415293738274], [-60.711528103021905, -13.83439844657947], [-60.70254495018071, -13.83439844657947], [-60.70254495018071, -13.843381599420667], [-60.711528103021905, -13.843381599420667], [-60.711528103021905, -13.852364752261863]]]}, 'id': '+13268+9890', 'properties': {'count': 9, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.70254495018071, -15.51424802788297], [-60.69356179733953, -15.51424802788297], [-60.69356179733953, -15.505264875041775], [-60.70254495018071, -15.505264875041775], [-60.70254495018071, -15.496281722200578], [-60.69356179733953, -15.496281722200578], [-60.69356179733953, -15.487298569359382], [-60.70254495018071, -15.487298569359382], [-60.70254495018071, -15.496281722200578], [-60.711528103021905, -15.496281722200578], [-60.711528103021905, -15.505264875041775], [-60.70254495018071, -15.505264875041775], [-60.70254495018071, -15.51424802788297]]]}, 'id': '+13269+10075', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.711528103021905, -15.577130097771345], [-60.69356179733953, -15.577130097771345], [-60.69356179733953, -15.568146944930149], [-60.711528103021905, -15.568146944930149], [-60.711528103021905, -15.577130097771345]]]}, 'id': '+13269+10082', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.70254495018071, -15.76577630743644], [-60.69356179733953, -15.76577630743644], [-60.69356179733953, -15.756793154595243], [-60.70254495018071, -15.756793154595243], [-60.70254495018071, -15.76577630743644]]]}, 'id': '+13269+10103', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.70254495018071, -15.8286583773248], [-60.69356179733953, -15.8286583773248], [-60.69356179733953, -15.819675224483603], [-60.70254495018071, -15.819675224483603], [-60.70254495018071, -15.801708918801225], [-60.711528103021905, -15.801708918801225], [-60.711528103021905, -15.819675224483603], [-60.70254495018071, -15.819675224483603], [-60.70254495018071, -15.8286583773248]]]}, 'id': '+13269+10110', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.70254495018071, -15.891540447213174], [-60.69356179733953, -15.891540447213174], [-60.69356179733953, -15.864590988689585], [-60.70254495018071, -15.864590988689585], [-60.70254495018071, -15.891540447213174]]]}, 'id': '+13269+10117', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.70254495018071, -15.909506752895567], [-60.69356179733953, -15.909506752895567], [-60.69356179733953, -15.90052360005437], [-60.68457864449833, -15.90052360005437], [-60.68457864449833, -15.891540447213174], [-60.70254495018071, -15.891540447213174], [-60.70254495018071, -15.909506752895567]]]}, 'id': '+13269+10119', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7205112558631, -16.0352708926723], [-60.69356179733953, -16.0352708926723], [-60.69356179733953, -16.01730458698991], [-60.70254495018071, -16.01730458698991], [-60.70254495018071, -16.008321434148712], [-60.711528103021905, -16.008321434148712], [-60.711528103021905, -16.01730458698991], [-60.70254495018071, -16.01730458698991], [-60.70254495018071, -16.026287739831105], [-60.7205112558631, -16.026287739831105], [-60.7205112558631, -16.0352708926723]]]}, 'id': '+13269+10133', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.70254495018071, -16.134085573925447], [-60.69356179733953, -16.134085573925447], [-60.69356179733953, -16.116119268243054], [-60.70254495018071, -16.116119268243054], [-60.70254495018071, -16.134085573925447]]]}, 'id': '+13269+10144', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.7205112558631, -16.268832866543377], [-60.69356179733953, -16.268832866543377], [-60.69356179733953, -16.25984971370218], [-60.70254495018071, -16.25984971370218], [-60.70254495018071, -16.250866560860985], [-60.711528103021905, -16.250866560860985], [-60.711528103021905, -16.25984971370218], [-60.7205112558631, -16.25984971370218], [-60.7205112558631, -16.268832866543377]]]}, 'id': '+13269+10159', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.711528103021905, -16.30476547790815], [-60.69356179733953, -16.30476547790815], [-60.69356179733953, -16.295782325066952], [-60.711528103021905, -16.295782325066952], [-60.711528103021905, -16.30476547790815]]]}, 'id': '+13269+10163', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.711528103021905, -16.41256331200249], [-60.69356179733953, -16.41256331200249], [-60.69356179733953, -16.403580159161294], [-60.711528103021905, -16.403580159161294], [-60.711528103021905, -16.41256331200249]]]}, 'id': '+13269+10175', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.70254495018071, -16.43951277052608], [-60.69356179733953, -16.43951277052608], [-60.69356179733953, -16.421546464843686], [-60.70254495018071, -16.421546464843686], [-60.70254495018071, -16.43951277052608]]]}, 'id': '+13269+10178', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.70254495018071, -16.565276910302813], [-60.69356179733953, -16.565276910302813], [-60.69356179733953, -16.556293757461617], [-60.70254495018071, -16.556293757461617], [-60.70254495018071, -16.565276910302813]]]}, 'id': '+13269+10192', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.70254495018071, -13.780499529532293], [-60.69356179733953, -13.780499529532293], [-60.69356179733953, -13.771516376691096], [-60.70254495018071, -13.771516376691096], [-60.70254495018071, -13.780499529532293]]]}, 'id': '+13269+9882', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.69356179733953, -15.24475344264711], [-60.68457864449833, -15.24475344264711], [-60.68457864449833, -15.226787136964731], [-60.69356179733953, -15.226787136964731], [-60.69356179733953, -15.24475344264711]]]}, 'id': '+13270+10045', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.69356179733953, -15.67594477902449], [-60.68457864449833, -15.67594477902449], [-60.68457864449833, -15.666961626183294], [-60.69356179733953, -15.666961626183294], [-60.69356179733953, -15.67594477902449]]]}, 'id': '+13270+10093', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.69356179733953, -15.810692071642421], [-60.68457864449833, -15.810692071642421], [-60.68457864449833, -15.801708918801225], [-60.69356179733953, -15.801708918801225], [-60.69356179733953, -15.810692071642421]]]}, 'id': '+13270+10108', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.69356179733953, -15.92747305857796], [-60.68457864449833, -15.92747305857796], [-60.68457864449833, -15.909506752895567], [-60.69356179733953, -15.909506752895567], [-60.69356179733953, -15.92747305857796]]]}, 'id': '+13270+10121', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.69356179733953, -16.196967643813807], [-60.68457864449833, -16.196967643813807], [-60.68457864449833, -16.18798449097261], [-60.69356179733953, -16.18798449097261], [-60.69356179733953, -16.196967643813807]]]}, 'id': '+13270+10151', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.69356179733953, -16.250866560860985], [-60.68457864449833, -16.250866560860985], [-60.68457864449833, -16.232900255178592], [-60.675595491657134, -16.232900255178592], [-60.675595491657134, -16.2149339494962], [-60.68457864449833, -16.2149339494962], [-60.68457864449833, -16.223917102337396], [-60.70254495018071, -16.223917102337396], [-60.70254495018071, -16.232900255178592], [-60.69356179733953, -16.232900255178592], [-60.69356179733953, -16.250866560860985]]]}, 'id': '+13270+10157', 'properties': {'count': 6, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.69356179733953, -16.32273178359054], [-60.68457864449833, -16.32273178359054], [-60.68457864449833, -16.313748630749345], [-60.69356179733953, -16.313748630749345], [-60.69356179733953, -16.32273178359054]]]}, 'id': '+13270+10165', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.69356179733953, -16.57426006314401], [-60.68457864449833, -16.57426006314401], [-60.68457864449833, -16.565276910302813], [-60.69356179733953, -16.565276910302813], [-60.69356179733953, -16.57426006314401]]]}, 'id': '+13270+10193', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.69356179733953, -16.583243215985206], [-60.68457864449833, -16.583243215985206], [-60.68457864449833, -16.57426006314401], [-60.69356179733953, -16.57426006314401], [-60.69356179733953, -16.583243215985206]]]}, 'id': '+13270+10194', 'properties': {'count': 1, 'label': 13}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.711528103021905, -16.655108438714763], [-60.68457864449833, -16.655108438714763], [-60.68457864449833, -16.646125285873566], [-60.675595491657134, -16.646125285873566], [-60.675595491657134, -16.63714213303237], [-60.68457864449833, -16.63714213303237], [-60.68457864449833, -16.628158980191174], [-60.70254495018071, -16.628158980191174], [-60.70254495018071, -16.63714213303237], [-60.711528103021905, -16.63714213303237], [-60.711528103021905, -16.655108438714763]]]}, 'id': '+13270+10202', 'properties': {'count': 9, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.70254495018071, -16.673074744397155], [-60.68457864449833, -16.673074744397155], [-60.68457864449833, -16.66409159155596], [-60.70254495018071, -16.66409159155596], [-60.70254495018071, -16.673074744397155]]]}, 'id': '+13270+10204', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.68457864449833, -15.442382805153414], [-60.675595491657134, -15.442382805153414], [-60.675595491657134, -15.424416499471022], [-60.68457864449833, -15.424416499471022], [-60.68457864449833, -15.442382805153414]]]}, 'id': '+13271+10067', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.68457864449833, -15.586113250612527], [-60.675595491657134, -15.586113250612527], [-60.675595491657134, -15.577130097771345], [-60.68457864449833, -15.577130097771345], [-60.68457864449833, -15.586113250612527]]]}, 'id': '+13271+10083', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.68457864449833, -15.648995320500902], [-60.675595491657134, -15.648995320500902], [-60.675595491657134, -15.640012167659705], [-60.68457864449833, -15.640012167659705], [-60.68457864449833, -15.648995320500902]]]}, 'id': '+13271+10090', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.68457864449833, -15.792725765960029], [-60.675595491657134, -15.792725765960029], [-60.675595491657134, -15.783742613118832], [-60.68457864449833, -15.783742613118832], [-60.68457864449833, -15.792725765960029]]]}, 'id': '+13271+10106', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.68457864449833, -15.891540447213174], [-60.675595491657134, -15.891540447213174], [-60.675595491657134, -15.873574141530781], [-60.68457864449833, -15.873574141530781], [-60.68457864449833, -15.891540447213174]]]}, 'id': '+13271+10117', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.68457864449833, -15.909506752895567], [-60.675595491657134, -15.909506752895567], [-60.675595491657134, -15.90052360005437], [-60.66661233881594, -15.90052360005437], [-60.66661233881594, -15.891540447213174], [-60.68457864449833, -15.891540447213174], [-60.68457864449833, -15.909506752895567]]]}, 'id': '+13271+10119', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.68457864449833, -16.01730458698991], [-60.675595491657134, -16.01730458698991], [-60.675595491657134, -16.008321434148712], [-60.66661233881594, -16.008321434148712], [-60.66661233881594, -15.999338281307516], [-60.675595491657134, -15.999338281307516], [-60.675595491657134, -16.008321434148712], [-60.68457864449833, -16.008321434148712], [-60.68457864449833, -16.01730458698991]]]}, 'id': '+13271+10131', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.68457864449833, -16.143068726766643], [-60.675595491657134, -16.143068726766643], [-60.675595491657134, -16.134085573925447], [-60.68457864449833, -16.134085573925447], [-60.68457864449833, -16.143068726766643]]]}, 'id': '+13271+10145', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.68457864449833, -16.583243215985206], [-60.675595491657134, -16.583243215985206], [-60.675595491657134, -16.57426006314401], [-60.66661233881594, -16.57426006314401], [-60.66661233881594, -16.565276910302813], [-60.675595491657134, -16.565276910302813], [-60.675595491657134, -16.556293757461617], [-60.68457864449833, -16.556293757461617], [-60.68457864449833, -16.565276910302813], [-60.675595491657134, -16.565276910302813], [-60.675595491657134, -16.57426006314401], [-60.68457864449833, -16.57426006314401], [-60.68457864449833, -16.583243215985206]]]}, 'id': '+13271+10194', 'properties': {'count': 3, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.68457864449833, -16.6012095216676], [-60.675595491657134, -16.6012095216676], [-60.675595491657134, -16.592226368826402], [-60.66661233881594, -16.592226368826402], [-60.66661233881594, -16.583243215985206], [-60.68457864449833, -16.583243215985206], [-60.68457864449833, -16.6012095216676]]]}, 'id': '+13271+10196', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.68457864449833, -16.655108438714763], [-60.675595491657134, -16.655108438714763], [-60.675595491657134, -16.646125285873566], [-60.68457864449833, -16.646125285873566], [-60.68457864449833, -16.655108438714763]]]}, 'id': '+13271+10202', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.68457864449833, -13.807448988055882], [-60.675595491657134, -13.807448988055882], [-60.675595491657134, -13.798465835214685], [-60.68457864449833, -13.798465835214685], [-60.68457864449833, -13.807448988055882]]]}, 'id': '+13271+9885', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.675595491657134, -15.262719748329502], [-60.66661233881594, -15.262719748329502], [-60.66661233881594, -15.253736595488306], [-60.675595491657134, -15.253736595488306], [-60.675595491657134, -15.262719748329502]]]}, 'id': '+13272+10047', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.675595491657134, -15.352551276741465], [-60.66661233881594, -15.352551276741465], [-60.66661233881594, -15.343568123900269], [-60.675595491657134, -15.343568123900269], [-60.675595491657134, -15.352551276741465]]]}, 'id': '+13272+10057', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.675595491657134, -15.361534429582647], [-60.66661233881594, -15.361534429582647], [-60.66661233881594, -15.352551276741465], [-60.675595491657134, -15.352551276741465], [-60.675595491657134, -15.361534429582647]]]}, 'id': '+13272+10058', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.675595491657134, -15.424416499471022], [-60.66661233881594, -15.424416499471022], [-60.66661233881594, -15.415433346629825], [-60.675595491657134, -15.415433346629825], [-60.675595491657134, -15.424416499471022]]]}, 'id': '+13272+10065', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.675595491657134, -15.460349110835807], [-60.66661233881594, -15.460349110835807], [-60.66661233881594, -15.45136595799461], [-60.675595491657134, -15.45136595799461], [-60.675595491657134, -15.460349110835807]]]}, 'id': '+13272+10069', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.675595491657134, -15.559163792088953], [-60.66661233881594, -15.559163792088953], [-60.66661233881594, -15.550180639247756], [-60.675595491657134, -15.550180639247756], [-60.675595491657134, -15.532214333565364], [-60.66661233881594, -15.532214333565364], [-60.66661233881594, -15.54119748640656], [-60.65762918597474, -15.54119748640656], [-60.65762918597474, -15.550180639247756], [-60.648646033133545, -15.550180639247756], [-60.648646033133545, -15.54119748640656], [-60.63966288029235, -15.54119748640656], [-60.63966288029235, -15.532214333565364], [-60.648646033133545, -15.532214333565364], [-60.648646033133545, -15.523231180724167], [-60.65762918597474, -15.523231180724167], [-60.65762918597474, -15.51424802788297], [-60.66661233881594, -15.51424802788297], [-60.66661233881594, -15.496281722200578], [-60.675595491657134, -15.496281722200578], [-60.675595491657134, -15.487298569359382], [-60.68457864449833, -15.487298569359382], [-60.68457864449833, -15.478315416518186], [-60.675595491657134, -15.478315416518186], [-60.675595491657134, -15.460349110835807], [-60.68457864449833, -15.460349110835807], [-60.68457864449833, -15.45136595799461], [-60.66661233881594, -15.45136595799461], [-60.66661233881594, -15.460349110835807], [-60.65762918597474, -15.460349110835807], [-60.65762918597474, -15.469332263677003], [-60.66661233881594, -15.469332263677003], [-60.66661233881594, -15.478315416518186], [-60.65762918597474, -15.478315416518186], [-60.65762918597474, -15.487298569359382], [-60.648646033133545, -15.487298569359382], [-60.648646033133545, -15.51424802788297], [-60.63966288029235, -15.51424802788297], [-60.63966288029235, -15.487298569359382], [-60.63067972745115, -15.487298569359382], [-60.63067972745115, -15.496281722200578], [-60.621696574609956, -15.496281722200578], [-60.621696574609956, -15.487298569359382], [-60.63067972745115, -15.487298569359382], [-60.63067972745115, -15.478315416518186], [-60.63966288029235, -15.478315416518186], [-60.63966288029235, -15.460349110835807], [-60.648646033133545, -15.460349110835807], [-60.648646033133545, -15.45136595799461], [-60.65762918597474, -15.45136595799461], [-60.65762918597474, -15.442382805153414], [-60.66661233881594, -15.442382805153414], [-60.66661233881594, -15.433399652312218], [-60.675595491657134, -15.433399652312218], [-60.675595491657134, -15.442382805153414], [-60.68457864449833, -15.442382805153414], [-60.68457864449833, -15.433399652312218], [-60.69356179733953, -15.433399652312218], [-60.69356179733953, -15.442382805153414], [-60.70254495018071, -15.442382805153414], [-60.70254495018071, -15.45136595799461], [-60.711528103021905, -15.45136595799461], [-60.711528103021905, -15.478315416518186], [-60.70254495018071, -15.478315416518186], [-60.70254495018071, -15.487298569359382], [-60.68457864449833, -15.487298569359382], [-60.68457864449833, -15.505264875041775], [-60.675595491657134, -15.505264875041775], [-60.675595491657134, -15.523231180724167], [-60.68457864449833, -15.523231180724167], [-60.68457864449833, -15.54119748640656], [-60.69356179733953, -15.54119748640656], [-60.69356179733953, -15.550180639247756], [-60.675595491657134, -15.550180639247756], [-60.675595491657134, -15.559163792088953]], [[-60.63966288029235, -15.487298569359382], [-60.63966288029235, -15.478315416518186], [-60.648646033133545, -15.478315416518186], [-60.648646033133545, -15.487298569359382], [-60.63966288029235, -15.487298569359382]], [[-60.65762918597474, -15.532214333565364], [-60.65762918597474, -15.523231180724167], [-60.66661233881594, -15.523231180724167], [-60.66661233881594, -15.532214333565364], [-60.65762918597474, -15.532214333565364]], [[-60.648646033133545, -15.54119748640656], [-60.648646033133545, -15.532214333565364], [-60.65762918597474, -15.532214333565364], [-60.65762918597474, -15.54119748640656], [-60.648646033133545, -15.54119748640656]]]}, 'id': '+13272+10080', 'properties': {'count': 49, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.675595491657134, -15.586113250612527], [-60.66661233881594, -15.586113250612527], [-60.66661233881594, -15.577130097771345], [-60.675595491657134, -15.577130097771345], [-60.675595491657134, -15.586113250612527]]]}, 'id': '+13272+10083', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.675595491657134, -15.702894237548065], [-60.66661233881594, -15.702894237548065], [-60.66661233881594, -15.693911084706883], [-60.675595491657134, -15.693911084706883], [-60.675595491657134, -15.684927931865687], [-60.68457864449833, -15.684927931865687], [-60.68457864449833, -15.693911084706883], [-60.675595491657134, -15.693911084706883], [-60.675595491657134, -15.702894237548065]]]}, 'id': '+13272+10096', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.675595491657134, -15.810692071642421], [-60.66661233881594, -15.810692071642421], [-60.66661233881594, -15.801708918801225], [-60.675595491657134, -15.801708918801225], [-60.675595491657134, -15.810692071642421]]]}, 'id': '+13272+10108', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.69356179733953, -15.96340566994273], [-60.66661233881594, -15.96340566994273], [-60.66661233881594, -15.936456211419141], [-60.675595491657134, -15.936456211419141], [-60.675595491657134, -15.92747305857796], [-60.69356179733953, -15.92747305857796], [-60.69356179733953, -15.936456211419141], [-60.70254495018071, -15.936456211419141], [-60.70254495018071, -15.918489905736763], [-60.711528103021905, -15.918489905736763], [-60.711528103021905, -15.90052360005437], [-60.7205112558631, -15.90052360005437], [-60.7205112558631, -15.909506752895567], [-60.7294944087043, -15.909506752895567], [-60.7294944087043, -15.918489905736763], [-60.711528103021905, -15.918489905736763], [-60.711528103021905, -15.945439364260338], [-60.70254495018071, -15.945439364260338], [-60.70254495018071, -15.954422517101534], [-60.69356179733953, -15.954422517101534], [-60.69356179733953, -15.96340566994273]]]}, 'id': '+13272+10125', 'properties': {'count': 19, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.675595491657134, -15.981371975625123], [-60.66661233881594, -15.981371975625123], [-60.66661233881594, -15.972388822783927], [-60.675595491657134, -15.972388822783927], [-60.675595491657134, -15.981371975625123]]]}, 'id': '+13272+10127', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.675595491657134, -16.34968124211413], [-60.66661233881594, -16.34968124211413], [-60.66661233881594, -16.331714936431737], [-60.675595491657134, -16.331714936431737], [-60.675595491657134, -16.34968124211413]]]}, 'id': '+13272+10168', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.675595491657134, -16.45747907620847], [-60.66661233881594, -16.45747907620847], [-60.66661233881594, -16.448495923367275], [-60.675595491657134, -16.448495923367275], [-60.675595491657134, -16.45747907620847]]]}, 'id': '+13272+10180', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.68457864449833, -13.771516376691096], [-60.66661233881594, -13.771516376691096], [-60.66661233881594, -13.7625332238499], [-60.68457864449833, -13.7625332238499], [-60.68457864449833, -13.753550071008718], [-60.66661233881594, -13.753550071008718], [-60.66661233881594, -13.744566918167521], [-60.675595491657134, -13.744566918167521], [-60.675595491657134, -13.735583765326325], [-60.69356179733953, -13.735583765326325], [-60.69356179733953, -13.726600612485129], [-60.711528103021905, -13.726600612485129], [-60.711528103021905, -13.7625332238499], [-60.70254495018071, -13.7625332238499], [-60.70254495018071, -13.753550071008718], [-60.69356179733953, -13.753550071008718], [-60.69356179733953, -13.7625332238499], [-60.68457864449833, -13.7625332238499], [-60.68457864449833, -13.771516376691096]]]}, 'id': '+13272+9881', 'properties': {'count': 15, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.675595491657134, -13.83439844657947], [-60.66661233881594, -13.83439844657947], [-60.66661233881594, -13.825415293738274], [-60.675595491657134, -13.825415293738274], [-60.675595491657134, -13.83439844657947]]]}, 'id': '+13272+9888', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.675595491657134, -15.11898930287039], [-60.65762918597474, -15.11898930287039], [-60.65762918597474, -15.110006150029193], [-60.675595491657134, -15.110006150029193], [-60.675595491657134, -15.11898930287039]]]}, 'id': '+13273+10031', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.66661233881594, -15.235770289805927], [-60.65762918597474, -15.235770289805927], [-60.65762918597474, -15.226787136964731], [-60.66661233881594, -15.226787136964731], [-60.66661233881594, -15.235770289805927]]]}, 'id': '+13273+10044', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.66661233881594, -15.487298569359382], [-60.65762918597474, -15.487298569359382], [-60.65762918597474, -15.478315416518186], [-60.66661233881594, -15.478315416518186], [-60.66661233881594, -15.487298569359382]]]}, 'id': '+13273+10072', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.66661233881594, -15.577130097771345], [-60.65762918597474, -15.577130097771345], [-60.65762918597474, -15.568146944930149], [-60.66661233881594, -15.568146944930149], [-60.66661233881594, -15.577130097771345]]]}, 'id': '+13273+10082', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.66661233881594, -15.67594477902449], [-60.65762918597474, -15.67594477902449], [-60.65762918597474, -15.666961626183294], [-60.66661233881594, -15.666961626183294], [-60.66661233881594, -15.67594477902449]]]}, 'id': '+13273+10093', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.675595491657134, -15.855607835848389], [-60.65762918597474, -15.855607835848389], [-60.65762918597474, -15.846624683007192], [-60.675595491657134, -15.846624683007192], [-60.675595491657134, -15.855607835848389]]]}, 'id': '+13273+10113', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.66661233881594, -15.999338281307516], [-60.65762918597474, -15.999338281307516], [-60.65762918597474, -15.99035512846632], [-60.66661233881594, -15.99035512846632], [-60.66661233881594, -15.999338281307516]]]}, 'id': '+13273+10129', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.68457864449833, -16.09815296256066], [-60.65762918597474, -16.09815296256066], [-60.65762918597474, -16.089169809719465], [-60.648646033133545, -16.089169809719465], [-60.648646033133545, -16.071203504037072], [-60.65762918597474, -16.071203504037072], [-60.65762918597474, -16.089169809719465], [-60.66661233881594, -16.089169809719465], [-60.66661233881594, -16.08018665687827], [-60.675595491657134, -16.08018665687827], [-60.675595491657134, -16.062220351195876], [-60.68457864449833, -16.062220351195876], [-60.68457864449833, -16.08018665687827], [-60.675595491657134, -16.08018665687827], [-60.675595491657134, -16.089169809719465], [-60.68457864449833, -16.089169809719465], [-60.68457864449833, -16.09815296256066]]]}, 'id': '+13273+10140', 'properties': {'count': 8, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.66661233881594, -16.116119268243054], [-60.65762918597474, -16.116119268243054], [-60.65762918597474, -16.107136115401858], [-60.66661233881594, -16.107136115401858], [-60.66661233881594, -16.116119268243054]]]}, 'id': '+13273+10142', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.66661233881594, -16.556293757461617], [-60.65762918597474, -16.556293757461617], [-60.65762918597474, -16.54731060462042], [-60.66661233881594, -16.54731060462042], [-60.66661233881594, -16.556293757461617]]]}, 'id': '+13273+10191', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.66661233881594, -16.628158980191174], [-60.65762918597474, -16.628158980191174], [-60.65762918597474, -16.619175827349977], [-60.63966288029235, -16.619175827349977], [-60.63966288029235, -16.6012095216676], [-60.63067972745115, -16.6012095216676], [-60.63067972745115, -16.592226368826402], [-60.63966288029235, -16.592226368826402], [-60.63966288029235, -16.6012095216676], [-60.648646033133545, -16.6012095216676], [-60.648646033133545, -16.592226368826402], [-60.65762918597474, -16.592226368826402], [-60.65762918597474, -16.610192674508795], [-60.675595491657134, -16.610192674508795], [-60.675595491657134, -16.619175827349977], [-60.66661233881594, -16.619175827349977], [-60.66661233881594, -16.628158980191174]]]}, 'id': '+13273+10199', 'properties': {'count': 9, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.675595491657134, -16.63714213303237], [-60.65762918597474, -16.63714213303237], [-60.65762918597474, -16.628158980191174], [-60.675595491657134, -16.628158980191174], [-60.675595491657134, -16.619175827349977], [-60.68457864449833, -16.619175827349977], [-60.68457864449833, -16.610192674508795], [-60.69356179733953, -16.610192674508795], [-60.69356179733953, -16.592226368826402], [-60.70254495018071, -16.592226368826402], [-60.70254495018071, -16.583243215985206], [-60.711528103021905, -16.583243215985206], [-60.711528103021905, -16.6012095216676], [-60.70254495018071, -16.6012095216676], [-60.70254495018071, -16.610192674508795], [-60.69356179733953, -16.610192674508795], [-60.69356179733953, -16.628158980191174], [-60.675595491657134, -16.628158980191174], [-60.675595491657134, -16.63714213303237]]]}, 'id': '+13273+10200', 'properties': {'count': 9, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.66661233881594, -16.646125285873566], [-60.65762918597474, -16.646125285873566], [-60.65762918597474, -16.63714213303237], [-60.66661233881594, -16.63714213303237], [-60.66661233881594, -16.646125285873566]]]}, 'id': '+13273+10201', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.66661233881594, -13.807448988055882], [-60.65762918597474, -13.807448988055882], [-60.65762918597474, -13.798465835214685], [-60.66661233881594, -13.798465835214685], [-60.66661233881594, -13.807448988055882]]]}, 'id': '+13273+9885', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.65762918597474, -14.858477870475724], [-60.648646033133545, -14.858477870475724], [-60.648646033133545, -14.831528411952135], [-60.66661233881594, -14.831528411952135], [-60.66661233881594, -14.840511564793331], [-60.69356179733953, -14.840511564793331], [-60.69356179733953, -14.849494717634528], [-60.65762918597474, -14.849494717634528], [-60.65762918597474, -14.858477870475724]]]}, 'id': '+13274+10002', 'properties': {'count': 8, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.65762918597474, -15.343568123900269], [-60.648646033133545, -15.343568123900269], [-60.648646033133545, -15.334584971059073], [-60.65762918597474, -15.334584971059073], [-60.65762918597474, -15.343568123900269]]]}, 'id': '+13274+10056', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.65762918597474, -15.40645019378863], [-60.648646033133545, -15.40645019378863], [-60.648646033133545, -15.397467040947433], [-60.65762918597474, -15.397467040947433], [-60.65762918597474, -15.40645019378863]]]}, 'id': '+13274+10063', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.65762918597474, -15.54119748640656], [-60.648646033133545, -15.54119748640656], [-60.648646033133545, -15.532214333565364], [-60.65762918597474, -15.532214333565364], [-60.65762918597474, -15.54119748640656]]]}, 'id': '+13274+10078', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.65762918597474, -15.810692071642421], [-60.648646033133545, -15.810692071642421], [-60.648646033133545, -15.801708918801225], [-60.65762918597474, -15.801708918801225], [-60.65762918597474, -15.810692071642421]]]}, 'id': '+13274+10108', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.66661233881594, -15.891540447213174], [-60.648646033133545, -15.891540447213174], [-60.648646033133545, -15.882557294371978], [-60.66661233881594, -15.882557294371978], [-60.66661233881594, -15.891540447213174]]]}, 'id': '+13274+10117', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.66661233881594, -15.945439364260338], [-60.648646033133545, -15.945439364260338], [-60.648646033133545, -15.936456211419141], [-60.65762918597474, -15.936456211419141], [-60.65762918597474, -15.92747305857796], [-60.675595491657134, -15.92747305857796], [-60.675595491657134, -15.936456211419141], [-60.66661233881594, -15.936456211419141], [-60.66661233881594, -15.945439364260338]]]}, 'id': '+13274+10123', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.65762918597474, -16.062220351195876], [-60.648646033133545, -16.062220351195876], [-60.648646033133545, -16.05323719835468], [-60.65762918597474, -16.05323719835468], [-60.65762918597474, -16.044254045513483], [-60.66661233881594, -16.044254045513483], [-60.66661233881594, -16.05323719835468], [-60.65762918597474, -16.05323719835468], [-60.65762918597474, -16.062220351195876]]]}, 'id': '+13274+10136', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.65762918597474, -16.331714936431737], [-60.648646033133545, -16.331714936431737], [-60.648646033133545, -16.32273178359054], [-60.65762918597474, -16.32273178359054], [-60.65762918597474, -16.331714936431737]]]}, 'id': '+13274+10166', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.65762918597474, -16.367647547796523], [-60.648646033133545, -16.367647547796523], [-60.648646033133545, -16.358664394955326], [-60.65762918597474, -16.358664394955326], [-60.65762918597474, -16.367647547796523]]]}, 'id': '+13274+10170', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.65762918597474, -16.529344298938028], [-60.648646033133545, -16.529344298938028], [-60.648646033133545, -16.520361146096832], [-60.63966288029235, -16.520361146096832], [-60.63966288029235, -16.511377993255635], [-60.65762918597474, -16.511377993255635], [-60.65762918597474, -16.529344298938028]]]}, 'id': '+13274+10188', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.66661233881594, -16.655108438714763], [-60.648646033133545, -16.655108438714763], [-60.648646033133545, -16.63714213303237], [-60.65762918597474, -16.63714213303237], [-60.65762918597474, -16.646125285873566], [-60.66661233881594, -16.646125285873566], [-60.66661233881594, -16.655108438714763]]]}, 'id': '+13274+10202', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.648646033133545, -15.217803984123535], [-60.63966288029235, -15.217803984123535], [-60.63966288029235, -15.208820831282338], [-60.63067972745115, -15.208820831282338], [-60.63067972745115, -15.199837678441142], [-60.63966288029235, -15.199837678441142], [-60.63966288029235, -15.208820831282338], [-60.648646033133545, -15.208820831282338], [-60.648646033133545, -15.217803984123535]]]}, 'id': '+13275+10042', 'properties': {'count': 2, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.648646033133545, -15.45136595799461], [-60.63966288029235, -15.45136595799461], [-60.63966288029235, -15.442382805153414], [-60.621696574609956, -15.442382805153414], [-60.621696574609956, -15.433399652312218], [-60.63966288029235, -15.433399652312218], [-60.63966288029235, -15.442382805153414], [-60.648646033133545, -15.442382805153414], [-60.648646033133545, -15.45136595799461]]]}, 'id': '+13275+10068', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.648646033133545, -15.595096403453724], [-60.63966288029235, -15.595096403453724], [-60.63966288029235, -15.577130097771345], [-60.648646033133545, -15.577130097771345], [-60.648646033133545, -15.595096403453724]]]}, 'id': '+13275+10084', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.65762918597474, -15.640012167659705], [-60.63966288029235, -15.640012167659705], [-60.63966288029235, -15.631029014818509], [-60.621696574609956, -15.631029014818509], [-60.621696574609956, -15.622045861977313], [-60.63067972745115, -15.622045861977313], [-60.63067972745115, -15.613062709136116], [-60.65762918597474, -15.613062709136116], [-60.65762918597474, -15.622045861977313], [-60.648646033133545, -15.622045861977313], [-60.648646033133545, -15.631029014818509], [-60.65762918597474, -15.631029014818509], [-60.65762918597474, -15.640012167659705]]]}, 'id': '+13275+10089', 'properties': {'count': 8, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.648646033133545, -15.702894237548065], [-60.63966288029235, -15.702894237548065], [-60.63966288029235, -15.693911084706883], [-60.648646033133545, -15.693911084706883], [-60.648646033133545, -15.702894237548065]]]}, 'id': '+13275+10096', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.648646033133545, -15.783742613118832], [-60.63966288029235, -15.783742613118832], [-60.63966288029235, -15.774759460277636], [-60.648646033133545, -15.774759460277636], [-60.648646033133545, -15.756793154595243], [-60.65762918597474, -15.756793154595243], [-60.65762918597474, -15.774759460277636], [-60.648646033133545, -15.774759460277636], [-60.648646033133545, -15.783742613118832]]]}, 'id': '+13275+10105', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.648646033133545, -15.873574141530781], [-60.63966288029235, -15.873574141530781], [-60.63966288029235, -15.855607835848389], [-60.648646033133545, -15.855607835848389], [-60.648646033133545, -15.837641530165996], [-60.63966288029235, -15.837641530165996], [-60.63966288029235, -15.846624683007192], [-60.63067972745115, -15.846624683007192], [-60.63067972745115, -15.837641530165996], [-60.63966288029235, -15.837641530165996], [-60.63966288029235, -15.810692071642421], [-60.63067972745115, -15.810692071642421], [-60.63067972745115, -15.801708918801225], [-60.648646033133545, -15.801708918801225], [-60.648646033133545, -15.810692071642421], [-60.65762918597474, -15.810692071642421], [-60.65762918597474, -15.801708918801225], [-60.66661233881594, -15.801708918801225], [-60.66661233881594, -15.810692071642421], [-60.675595491657134, -15.810692071642421], [-60.675595491657134, -15.801708918801225], [-60.68457864449833, -15.801708918801225], [-60.68457864449833, -15.810692071642421], [-60.69356179733953, -15.810692071642421], [-60.69356179733953, -15.819675224483603], [-60.66661233881594, -15.819675224483603], [-60.66661233881594, -15.837641530165996], [-60.675595491657134, -15.837641530165996], [-60.675595491657134, -15.846624683007192], [-60.65762918597474, -15.846624683007192], [-60.65762918597474, -15.855607835848389], [-60.648646033133545, -15.855607835848389], [-60.648646033133545, -15.873574141530781]]]}, 'id': '+13275+10115', 'properties': {'count': 23, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.65762918597474, -15.999338281307516], [-60.63966288029235, -15.999338281307516], [-60.63966288029235, -15.99035512846632], [-60.63067972745115, -15.99035512846632], [-60.63067972745115, -15.981371975625123], [-60.63966288029235, -15.981371975625123], [-60.63966288029235, -15.99035512846632], [-60.65762918597474, -15.99035512846632], [-60.65762918597474, -15.999338281307516]]]}, 'id': '+13275+10129', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.648646033133545, -16.08018665687827], [-60.63966288029235, -16.08018665687827], [-60.63966288029235, -16.05323719835468], [-60.621696574609956, -16.05323719835468], [-60.621696574609956, -16.044254045513483], [-60.63067972745115, -16.044254045513483], [-60.63067972745115, -16.026287739831105], [-60.63966288029235, -16.026287739831105], [-60.63966288029235, -16.01730458698991], [-60.648646033133545, -16.01730458698991], [-60.648646033133545, -15.999338281307516], [-60.65762918597474, -15.999338281307516], [-60.65762918597474, -16.01730458698991], [-60.66661233881594, -16.01730458698991], [-60.66661233881594, -16.026287739831105], [-60.65762918597474, -16.026287739831105], [-60.65762918597474, -16.0352708926723], [-60.66661233881594, -16.0352708926723], [-60.66661233881594, -16.044254045513483], [-60.65762918597474, -16.044254045513483], [-60.65762918597474, -16.0352708926723], [-60.648646033133545, -16.0352708926723], [-60.648646033133545, -16.08018665687827]]]}, 'id': '+13275+10138', 'properties': {'count': 17, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.648646033133545, -16.15205187960784], [-60.63966288029235, -16.15205187960784], [-60.63966288029235, -16.143068726766643], [-60.648646033133545, -16.143068726766643], [-60.648646033133545, -16.15205187960784]]]}, 'id': '+13275+10146', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.65762918597474, -16.223917102337396], [-60.63966288029235, -16.223917102337396], [-60.63966288029235, -16.2149339494962], [-60.65762918597474, -16.2149339494962], [-60.65762918597474, -16.223917102337396]]]}, 'id': '+13275+10154', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.648646033133545, -16.493411687573257], [-60.63966288029235, -16.493411687573257], [-60.63966288029235, -16.48442853473206], [-60.648646033133545, -16.48442853473206], [-60.648646033133545, -16.493411687573257]]]}, 'id': '+13275+10184', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.648646033133545, -16.646125285873566], [-60.63966288029235, -16.646125285873566], [-60.63966288029235, -16.63714213303237], [-60.648646033133545, -16.63714213303237], [-60.648646033133545, -16.646125285873566]]]}, 'id': '+13275+10201', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.648646033133545, -13.807448988055882], [-60.63966288029235, -13.807448988055882], [-60.63966288029235, -13.798465835214685], [-60.648646033133545, -13.798465835214685], [-60.648646033133545, -13.807448988055882]]]}, 'id': '+13275+9885', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63966288029235, -15.011191468776047], [-60.63067972745115, -15.011191468776047], [-60.63067972745115, -15.002208315934851], [-60.63966288029235, -15.002208315934851], [-60.63966288029235, -15.011191468776047]]]}, 'id': '+13276+10019', 'properties': {'count': 1, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63966288029235, -15.145938761393964], [-60.63067972745115, -15.145938761393964], [-60.63067972745115, -15.136955608552768], [-60.63966288029235, -15.136955608552768], [-60.63966288029235, -15.145938761393964]]]}, 'id': '+13276+10034', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63966288029235, -15.172888219917553], [-60.63067972745115, -15.172888219917553], [-60.63067972745115, -15.163905067076357], [-60.63966288029235, -15.163905067076357], [-60.63966288029235, -15.172888219917553]]]}, 'id': '+13276+10037', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63966288029235, -15.280686054011895], [-60.63067972745115, -15.280686054011895], [-60.63067972745115, -15.271702901170698], [-60.63966288029235, -15.271702901170698], [-60.63966288029235, -15.280686054011895]]]}, 'id': '+13276+10049', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63966288029235, -15.45136595799461], [-60.63067972745115, -15.45136595799461], [-60.63067972745115, -15.442382805153414], [-60.63966288029235, -15.442382805153414], [-60.63966288029235, -15.45136595799461]]]}, 'id': '+13276+10068', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63966288029235, -15.792725765960029], [-60.63067972745115, -15.792725765960029], [-60.63067972745115, -15.774759460277636], [-60.63966288029235, -15.774759460277636], [-60.63966288029235, -15.792725765960029]]]}, 'id': '+13276+10106', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63966288029235, -15.8286583773248], [-60.63067972745115, -15.8286583773248], [-60.63067972745115, -15.819675224483603], [-60.621696574609956, -15.819675224483603], [-60.621696574609956, -15.810692071642421], [-60.61271342176876, -15.810692071642421], [-60.61271342176876, -15.801708918801225], [-60.60373026892756, -15.801708918801225], [-60.60373026892756, -15.810692071642421], [-60.59474711608637, -15.810692071642421], [-60.59474711608637, -15.801708918801225], [-60.60373026892756, -15.801708918801225], [-60.60373026892756, -15.792725765960029], [-60.61271342176876, -15.792725765960029], [-60.61271342176876, -15.783742613118832], [-60.59474711608637, -15.783742613118832], [-60.59474711608637, -15.774759460277636], [-60.61271342176876, -15.774759460277636], [-60.61271342176876, -15.783742613118832], [-60.63067972745115, -15.783742613118832], [-60.63067972745115, -15.792725765960029], [-60.61271342176876, -15.792725765960029], [-60.61271342176876, -15.801708918801225], [-60.621696574609956, -15.801708918801225], [-60.621696574609956, -15.810692071642421], [-60.63067972745115, -15.810692071642421], [-60.63067972745115, -15.819675224483603], [-60.63966288029235, -15.819675224483603], [-60.63966288029235, -15.8286583773248]]]}, 'id': '+13276+10110', 'properties': {'count': 9, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63966288029235, -16.01730458698991], [-60.63067972745115, -16.01730458698991], [-60.63067972745115, -16.008321434148712], [-60.63966288029235, -16.008321434148712], [-60.63966288029235, -16.01730458698991]]]}, 'id': '+13276+10131', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63966288029235, -16.179001338131414], [-60.63067972745115, -16.179001338131414], [-60.63067972745115, -16.170018185290218], [-60.63966288029235, -16.170018185290218], [-60.63966288029235, -16.16103503244902], [-60.648646033133545, -16.16103503244902], [-60.648646033133545, -16.15205187960784], [-60.66661233881594, -16.15205187960784], [-60.66661233881594, -16.16103503244902], [-60.648646033133545, -16.16103503244902], [-60.648646033133545, -16.170018185290218], [-60.63966288029235, -16.170018185290218], [-60.63966288029235, -16.179001338131414]]]}, 'id': '+13276+10149', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63966288029235, -16.529344298938028], [-60.63067972745115, -16.529344298938028], [-60.63067972745115, -16.520361146096832], [-60.63966288029235, -16.520361146096832], [-60.63966288029235, -16.529344298938028]]]}, 'id': '+13276+10188', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63966288029235, -16.592226368826402], [-60.63067972745115, -16.592226368826402], [-60.63067972745115, -16.583243215985206], [-60.621696574609956, -16.583243215985206], [-60.621696574609956, -16.57426006314401], [-60.61271342176876, -16.57426006314401], [-60.61271342176876, -16.565276910302813], [-60.621696574609956, -16.565276910302813], [-60.621696574609956, -16.57426006314401], [-60.63067972745115, -16.57426006314401], [-60.63067972745115, -16.583243215985206], [-60.63966288029235, -16.583243215985206], [-60.63966288029235, -16.592226368826402]]]}, 'id': '+13276+10195', 'properties': {'count': 3, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.648646033133545, -13.7625332238499], [-60.63067972745115, -13.7625332238499], [-60.63067972745115, -13.753550071008718], [-60.63966288029235, -13.753550071008718], [-60.63966288029235, -13.744566918167521], [-60.66661233881594, -13.744566918167521], [-60.66661233881594, -13.753550071008718], [-60.675595491657134, -13.753550071008718], [-60.675595491657134, -13.7625332238499], [-60.66661233881594, -13.7625332238499], [-60.66661233881594, -13.753550071008718], [-60.648646033133545, -13.753550071008718], [-60.648646033133545, -13.7625332238499]]]}, 'id': '+13276+9880', 'properties': {'count': 6, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63966288029235, -13.789482682373489], [-60.63067972745115, -13.789482682373489], [-60.63067972745115, -13.771516376691096], [-60.63966288029235, -13.771516376691096], [-60.63966288029235, -13.7625332238499], [-60.648646033133545, -13.7625332238499], [-60.648646033133545, -13.753550071008718], [-60.65762918597474, -13.753550071008718], [-60.65762918597474, -13.780499529532293], [-60.63966288029235, -13.780499529532293], [-60.63966288029235, -13.789482682373489]]]}, 'id': '+13276+9883', 'properties': {'count': 7, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63067972745115, -15.083056691505604], [-60.621696574609956, -15.083056691505604], [-60.621696574609956, -15.074073538664408], [-60.63067972745115, -15.074073538664408], [-60.63067972745115, -15.083056691505604]]]}, 'id': '+13277+10027', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63067972745115, -15.190854525599946], [-60.621696574609956, -15.190854525599946], [-60.621696574609956, -15.18187137275875], [-60.63067972745115, -15.18187137275875], [-60.63067972745115, -15.190854525599946]]]}, 'id': '+13277+10039', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63067972745115, -15.469332263677003], [-60.621696574609956, -15.469332263677003], [-60.621696574609956, -15.460349110835807], [-60.61271342176876, -15.460349110835807], [-60.61271342176876, -15.45136595799461], [-60.621696574609956, -15.45136595799461], [-60.621696574609956, -15.460349110835807], [-60.63067972745115, -15.460349110835807], [-60.63067972745115, -15.469332263677003]]]}, 'id': '+13277+10070', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63067972745115, -15.648995320500902], [-60.621696574609956, -15.648995320500902], [-60.621696574609956, -15.640012167659705], [-60.63067972745115, -15.640012167659705], [-60.63067972745115, -15.648995320500902]]]}, 'id': '+13277+10090', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63067972745115, -15.73882684891285], [-60.621696574609956, -15.73882684891285], [-60.621696574609956, -15.729843696071654], [-60.63067972745115, -15.729843696071654], [-60.63067972745115, -15.73882684891285]]]}, 'id': '+13277+10100', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63067972745115, -15.783742613118832], [-60.621696574609956, -15.783742613118832], [-60.621696574609956, -15.756793154595243], [-60.63966288029235, -15.756793154595243], [-60.63966288029235, -15.747810001754047], [-60.66661233881594, -15.747810001754047], [-60.66661233881594, -15.73882684891285], [-60.675595491657134, -15.73882684891285], [-60.675595491657134, -15.756793154595243], [-60.63966288029235, -15.756793154595243], [-60.63966288029235, -15.76577630743644], [-60.63067972745115, -15.76577630743644], [-60.63067972745115, -15.783742613118832]]]}, 'id': '+13277+10105', 'properties': {'count': 9, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63067972745115, -15.873574141530781], [-60.621696574609956, -15.873574141530781], [-60.621696574609956, -15.864590988689585], [-60.60373026892756, -15.864590988689585], [-60.60373026892756, -15.855607835848389], [-60.621696574609956, -15.855607835848389], [-60.621696574609956, -15.864590988689585], [-60.63067972745115, -15.864590988689585], [-60.63067972745115, -15.873574141530781]]]}, 'id': '+13277+10115', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63067972745115, -15.90052360005437], [-60.621696574609956, -15.90052360005437], [-60.621696574609956, -15.891540447213174], [-60.60373026892756, -15.891540447213174], [-60.60373026892756, -15.882557294371978], [-60.59474711608637, -15.882557294371978], [-60.59474711608637, -15.873574141530781], [-60.60373026892756, -15.873574141530781], [-60.60373026892756, -15.882557294371978], [-60.621696574609956, -15.882557294371978], [-60.621696574609956, -15.891540447213174], [-60.63067972745115, -15.891540447213174], [-60.63067972745115, -15.90052360005437]]]}, 'id': '+13277+10118', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63067972745115, -15.999338281307516], [-60.621696574609956, -15.999338281307516], [-60.621696574609956, -15.99035512846632], [-60.61271342176876, -15.99035512846632], [-60.61271342176876, -15.972388822783927], [-60.60373026892756, -15.972388822783927], [-60.60373026892756, -15.981371975625123], [-60.585763963245185, -15.981371975625123], [-60.585763963245185, -15.972388822783927], [-60.57678081040399, -15.972388822783927], [-60.57678081040399, -15.954422517101534], [-60.585763963245185, -15.954422517101534], [-60.585763963245185, -15.945439364260338], [-60.57678081040399, -15.945439364260338], [-60.57678081040399, -15.92747305857796], [-60.585763963245185, -15.92747305857796], [-60.585763963245185, -15.945439364260338], [-60.59474711608637, -15.945439364260338], [-60.59474711608637, -15.936456211419141], [-60.60373026892756, -15.936456211419141], [-60.60373026892756, -15.945439364260338], [-60.63067972745115, -15.945439364260338], [-60.63067972745115, -15.936456211419141], [-60.621696574609956, -15.936456211419141], [-60.621696574609956, -15.92747305857796], [-60.61271342176876, -15.92747305857796], [-60.61271342176876, -15.909506752895567], [-60.60373026892756, -15.909506752895567], [-60.60373026892756, -15.918489905736763], [-60.59474711608637, -15.918489905736763], [-60.59474711608637, -15.909506752895567], [-60.585763963245185, -15.909506752895567], [-60.585763963245185, -15.90052360005437], [-60.57678081040399, -15.90052360005437], [-60.57678081040399, -15.882557294371978], [-60.56779765756279, -15.882557294371978], [-60.56779765756279, -15.846624683007192], [-60.57678081040399, -15.846624683007192], [-60.57678081040399, -15.855607835848389], [-60.585763963245185, -15.855607835848389], [-60.585763963245185, -15.846624683007192], [-60.59474711608637, -15.846624683007192], [-60.59474711608637, -15.855607835848389], [-60.60373026892756, -15.855607835848389], [-60.60373026892756, -15.846624683007192], [-60.63966288029235, -15.846624683007192], [-60.63966288029235, -15.837641530165996], [-60.621696574609956, -15.837641530165996], [-60.621696574609956, -15.8286583773248], [-60.63966288029235, -15.8286583773248], [-60.63966288029235, -15.837641530165996], [-60.648646033133545, -15.837641530165996], [-60.648646033133545, -15.855607835848389], [-60.65762918597474, -15.855607835848389], [-60.65762918597474, -15.864590988689585], [-60.675595491657134, -15.864590988689585], [-60.675595491657134, -15.8286583773248], [-60.66661233881594, -15.8286583773248], [-60.66661233881594, -15.819675224483603], [-60.68457864449833, -15.819675224483603], [-60.68457864449833, -15.846624683007192], [-60.70254495018071, -15.846624683007192], [-60.70254495018071, -15.855607835848389], [-60.711528103021905, -15.855607835848389], [-60.711528103021905, -15.864590988689585], [-60.68457864449833, -15.864590988689585], [-60.68457864449833, -15.873574141530781], [-60.69356179733953, -15.873574141530781], [-60.69356179733953, -15.882557294371978], [-60.68457864449833, -15.882557294371978], [-60.68457864449833, -15.873574141530781], [-60.65762918597474, -15.873574141530781], [-60.65762918597474, -15.882557294371978], [-60.63966288029235, -15.882557294371978], [-60.63966288029235, -15.891540447213174], [-60.66661233881594, -15.891540447213174], [-60.66661233881594, -15.90052360005437], [-60.675595491657134, -15.90052360005437], [-60.675595491657134, -15.909506752895567], [-60.68457864449833, -15.909506752895567], [-60.68457864449833, -15.918489905736763], [-60.66661233881594, -15.918489905736763], [-60.66661233881594, -15.92747305857796], [-60.65762918597474, -15.92747305857796], [-60.65762918597474, -15.936456211419141], [-60.648646033133545, -15.936456211419141], [-60.648646033133545, -15.945439364260338], [-60.65762918597474, -15.945439364260338], [-60.65762918597474, -15.954422517101534], [-60.648646033133545, -15.954422517101534], [-60.648646033133545, -15.945439364260338], [-60.63966288029235, -15.945439364260338], [-60.63966288029235, -15.972388822783927], [-60.648646033133545, -15.972388822783927], [-60.648646033133545, -15.981371975625123], [-60.63067972745115, -15.981371975625123], [-60.63067972745115, -15.954422517101534], [-60.621696574609956, -15.954422517101534], [-60.621696574609956, -15.96340566994273], [-60.61271342176876, -15.96340566994273], [-60.61271342176876, -15.972388822783927], [-60.621696574609956, -15.972388822783927], [-60.621696574609956, -15.99035512846632], [-60.63067972745115, -15.99035512846632], [-60.63067972745115, -15.999338281307516]], [[-60.585763963245185, -15.864590988689585], [-60.585763963245185, -15.855607835848389], [-60.59474711608637, -15.855607835848389], [-60.59474711608637, -15.864590988689585], [-60.585763963245185, -15.864590988689585]], [[-60.63966288029235, -15.873574141530781], [-60.63966288029235, -15.855607835848389], [-60.648646033133545, -15.855607835848389], [-60.648646033133545, -15.864590988689585], [-60.65762918597474, -15.864590988689585], [-60.65762918597474, -15.873574141530781], [-60.63966288029235, -15.873574141530781]], [[-60.621696574609956, -15.90052360005437], [-60.621696574609956, -15.891540447213174], [-60.63067972745115, -15.891540447213174], [-60.63067972745115, -15.90052360005437], [-60.621696574609956, -15.90052360005437]], [[-60.63067972745115, -15.909506752895567], [-60.63067972745115, -15.90052360005437], [-60.63966288029235, -15.90052360005437], [-60.63966288029235, -15.909506752895567], [-60.63067972745115, -15.909506752895567]], [[-60.59474711608637, -15.909506752895567], [-60.59474711608637, -15.90052360005437], [-60.585763963245185, -15.90052360005437], [-60.585763963245185, -15.873574141530781], [-60.60373026892756, -15.873574141530781], [-60.60373026892756, -15.855607835848389], [-60.63067972745115, -15.855607835848389], [-60.63067972745115, -15.873574141530781], [-60.63966288029235, -15.873574141530781], [-60.63966288029235, -15.882557294371978], [-60.621696574609956, -15.882557294371978], [-60.621696574609956, -15.864590988689585], [-60.61271342176876, -15.864590988689585], [-60.61271342176876, -15.882557294371978], [-60.621696574609956, -15.882557294371978], [-60.621696574609956, -15.891540447213174], [-60.60373026892756, -15.891540447213174], [-60.60373026892756, -15.909506752895567], [-60.59474711608637, -15.909506752895567]], [[-60.63966288029235, -15.918489905736763], [-60.63966288029235, -15.909506752895567], [-60.648646033133545, -15.909506752895567], [-60.648646033133545, -15.90052360005437], [-60.66661233881594, -15.90052360005437], [-60.66661233881594, -15.909506752895567], [-60.65762918597474, -15.909506752895567], [-60.65762918597474, -15.918489905736763], [-60.63966288029235, -15.918489905736763]], [[-60.63067972745115, -15.936456211419141], [-60.63067972745115, -15.92747305857796], [-60.621696574609956, -15.92747305857796], [-60.621696574609956, -15.918489905736763], [-60.63966288029235, -15.918489905736763], [-60.63966288029235, -15.92747305857796], [-60.648646033133545, -15.92747305857796], [-60.648646033133545, -15.936456211419141], [-60.63067972745115, -15.936456211419141]], [[-60.585763963245185, -15.96340566994273], [-60.585763963245185, -15.954422517101534], [-60.60373026892756, -15.954422517101534], [-60.60373026892756, -15.96340566994273], [-60.585763963245185, -15.96340566994273]]]}, 'id': '+13277+10129', 'properties': {'count': 98, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63067972745115, -16.071203504037072], [-60.621696574609956, -16.071203504037072], [-60.621696574609956, -16.062220351195876], [-60.63067972745115, -16.062220351195876], [-60.63067972745115, -16.071203504037072]]]}, 'id': '+13277+10137', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63966288029235, -16.646125285873566], [-60.621696574609956, -16.646125285873566], [-60.621696574609956, -16.63714213303237], [-60.63966288029235, -16.63714213303237], [-60.63966288029235, -16.646125285873566]]]}, 'id': '+13277+10201', 'properties': {'count': 2, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63067972745115, -13.7625332238499], [-60.621696574609956, -13.7625332238499], [-60.621696574609956, -13.753550071008718], [-60.63067972745115, -13.753550071008718], [-60.63067972745115, -13.744566918167521], [-60.63966288029235, -13.744566918167521], [-60.63966288029235, -13.753550071008718], [-60.63067972745115, -13.753550071008718], [-60.63067972745115, -13.7625332238499]]]}, 'id': '+13277+9880', 'properties': {'count': 2, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63067972745115, -13.780499529532293], [-60.621696574609956, -13.780499529532293], [-60.621696574609956, -13.771516376691096], [-60.63067972745115, -13.771516376691096], [-60.63067972745115, -13.780499529532293]]]}, 'id': '+13277+9882', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.621696574609956, -15.065090385823211], [-60.61271342176876, -15.065090385823211], [-60.61271342176876, -15.047124080140819], [-60.621696574609956, -15.047124080140819], [-60.621696574609956, -15.065090385823211]]]}, 'id': '+13278+10025', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.621696574609956, -15.11898930287039], [-60.61271342176876, -15.11898930287039], [-60.61271342176876, -15.101022997187997], [-60.60373026892756, -15.101022997187997], [-60.60373026892756, -15.0920398443468], [-60.61271342176876, -15.0920398443468], [-60.61271342176876, -15.101022997187997], [-60.621696574609956, -15.101022997187997], [-60.621696574609956, -15.11898930287039]]]}, 'id': '+13278+10031', 'properties': {'count': 3, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.621696574609956, -15.469332263677003], [-60.61271342176876, -15.469332263677003], [-60.61271342176876, -15.460349110835807], [-60.60373026892756, -15.460349110835807], [-60.60373026892756, -15.45136595799461], [-60.59474711608637, -15.45136595799461], [-60.59474711608637, -15.442382805153414], [-60.585763963245185, -15.442382805153414], [-60.585763963245185, -15.424416499471022], [-60.56779765756279, -15.424416499471022], [-60.56779765756279, -15.415433346629825], [-60.558814504721596, -15.415433346629825], [-60.558814504721596, -15.424416499471022], [-60.5498313518804, -15.424416499471022], [-60.5498313518804, -15.40645019378863], [-60.5408481990392, -15.40645019378863], [-60.5408481990392, -15.415433346629825], [-60.52288189335681, -15.415433346629825], [-60.52288189335681, -15.424416499471022], [-60.53186504619801, -15.424416499471022], [-60.53186504619801, -15.442382805153414], [-60.513898740515614, -15.442382805153414], [-60.513898740515614, -15.424416499471022], [-60.486949281992025, -15.424416499471022], [-60.486949281992025, -15.415433346629825], [-60.49593243483322, -15.415433346629825], [-60.49593243483322, -15.388483888106236], [-60.513898740515614, -15.388483888106236], [-60.513898740515614, -15.397467040947433], [-60.50491558767442, -15.397467040947433], [-60.50491558767442, -15.40645019378863], [-60.53186504619801, -15.40645019378863], [-60.53186504619801, -15.388483888106236], [-60.5498313518804, -15.388483888106236], [-60.5498313518804, -15.397467040947433], [-60.56779765756279, -15.397467040947433], [-60.56779765756279, -15.388483888106236], [-60.585763963245185, -15.388483888106236], [-60.585763963245185, -15.40645019378863], [-60.59474711608637, -15.40645019378863], [-60.59474711608637, -15.37950073526504], [-60.585763963245185, -15.37950073526504], [-60.585763963245185, -15.370517582423844], [-60.57678081040399, -15.370517582423844], [-60.57678081040399, -15.352551276741465], [-60.56779765756279, -15.352551276741465], [-60.56779765756279, -15.361534429582647], [-60.558814504721596, -15.361534429582647], [-60.558814504721596, -15.343568123900269], [-60.52288189335681, -15.343568123900269], [-60.52288189335681, -15.334584971059073], [-60.50491558767442, -15.334584971059073], [-60.50491558767442, -15.325601818217876], [-60.513898740515614, -15.325601818217876], [-60.513898740515614, -15.31661866537668], [-60.50491558767442, -15.31661866537668], [-60.50491558767442, -15.307635512535484], [-60.49593243483322, -15.307635512535484], [-60.49593243483322, -15.289669206853091], [-60.50491558767442, -15.289669206853091], [-60.50491558767442, -15.280686054011895], [-60.513898740515614, -15.280686054011895], [-60.513898740515614, -15.271702901170698], [-60.50491558767442, -15.271702901170698], [-60.50491558767442, -15.262719748329502], [-60.513898740515614, -15.262719748329502], [-60.513898740515614, -15.271702901170698], [-60.52288189335681, -15.271702901170698], [-60.52288189335681, -15.262719748329502], [-60.53186504619801, -15.262719748329502], [-60.53186504619801, -15.253736595488306], [-60.513898740515614, -15.253736595488306], [-60.513898740515614, -15.24475344264711], [-60.50491558767442, -15.24475344264711], [-60.50491558767442, -15.235770289805927], [-60.52288189335681, -15.235770289805927], [-60.52288189335681, -15.24475344264711], [-60.53186504619801, -15.24475344264711], [-60.53186504619801, -15.253736595488306], [-60.5498313518804, -15.253736595488306], [-60.5498313518804, -15.24475344264711], [-60.558814504721596, -15.24475344264711], [-60.558814504721596, -15.217803984123535], [-60.585763963245185, -15.217803984123535], [-60.585763963245185, -15.208820831282338], [-60.57678081040399, -15.208820831282338], [-60.57678081040399, -15.190854525599946], [-60.585763963245185, -15.190854525599946], [-60.585763963245185, -15.18187137275875], [-60.57678081040399, -15.18187137275875], [-60.57678081040399, -15.163905067076357], [-60.585763963245185, -15.163905067076357], [-60.585763963245185, -15.145938761393964], [-60.57678081040399, -15.145938761393964], [-60.57678081040399, -15.127972455711571], [-60.585763963245185, -15.127972455711571], [-60.585763963245185, -15.136955608552768], [-60.59474711608637, -15.136955608552768], [-60.59474711608637, -15.172888219917553], [-60.585763963245185, -15.172888219917553], [-60.585763963245185, -15.18187137275875], [-60.60373026892756, -15.18187137275875], [-60.60373026892756, -15.208820831282338], [-60.59474711608637, -15.208820831282338], [-60.59474711608637, -15.217803984123535], [-60.621696574609956, -15.217803984123535], [-60.621696574609956, -15.24475344264711], [-60.61271342176876, -15.24475344264711], [-60.61271342176876, -15.262719748329502], [-60.65762918597474, -15.262719748329502], [-60.65762918597474, -15.253736595488306], [-60.648646033133545, -15.253736595488306], [-60.648646033133545, -15.24475344264711], [-60.63966288029235, -15.24475344264711], [-60.63966288029235, -15.235770289805927], [-60.648646033133545, -15.235770289805927], [-60.648646033133545, -15.24475344264711], [-60.65762918597474, -15.24475344264711], [-60.65762918597474, -15.235770289805927], [-60.66661233881594, -15.235770289805927], [-60.66661233881594, -15.226787136964731], [-60.65762918597474, -15.226787136964731], [-60.65762918597474, -15.199837678441142], [-60.648646033133545, -15.199837678441142], [-60.648646033133545, -15.172888219917553], [-60.675595491657134, -15.172888219917553], [-60.675595491657134, -15.163905067076357], [-60.66661233881594, -15.163905067076357], [-60.66661233881594, -15.15492191423516], [-60.65762918597474, -15.15492191423516], [-60.65762918597474, -15.163905067076357], [-60.648646033133545, -15.163905067076357], [-60.648646033133545, -15.15492191423516], [-60.65762918597474, -15.15492191423516], [-60.65762918597474, -15.145938761393964], [-60.648646033133545, -15.145938761393964], [-60.648646033133545, -15.136955608552768], [-60.65762918597474, -15.136955608552768], [-60.65762918597474, -15.145938761393964], [-60.66661233881594, -15.145938761393964], [-60.66661233881594, -15.127972455711571], [-60.68457864449833, -15.127972455711571], [-60.68457864449833, -15.101022997187997], [-60.675595491657134, -15.101022997187997], [-60.675595491657134, -15.0920398443468], [-60.65762918597474, -15.0920398443468], [-60.65762918597474, -15.083056691505604], [-60.675595491657134, -15.083056691505604], [-60.675595491657134, -15.0920398443468], [-60.68457864449833, -15.0920398443468], [-60.68457864449833, -15.101022997187997], [-60.69356179733953, -15.101022997187997], [-60.69356179733953, -15.0920398443468], [-60.711528103021905, -15.0920398443468], [-60.711528103021905, -15.083056691505604], [-60.7205112558631, -15.083056691505604], [-60.7205112558631, -15.074073538664408], [-60.7294944087043, -15.074073538664408], [-60.7294944087043, -15.065090385823211], [-60.738477561545494, -15.065090385823211], [-60.738477561545494, -15.056107232982015], [-60.74746071438669, -15.056107232982015], [-60.74746071438669, -15.047124080140819], [-60.738477561545494, -15.047124080140819], [-60.738477561545494, -15.038140927299622], [-60.74746071438669, -15.038140927299622], [-60.74746071438669, -15.029157774458426], [-60.738477561545494, -15.029157774458426], [-60.738477561545494, -15.02017462161723], [-60.7294944087043, -15.02017462161723], [-60.7294944087043, -15.029157774458426], [-60.7205112558631, -15.029157774458426], [-60.7205112558631, -15.02017462161723], [-60.711528103021905, -15.02017462161723], [-60.711528103021905, -15.029157774458426], [-60.70254495018071, -15.029157774458426], [-60.70254495018071, -15.047124080140819], [-60.69356179733953, -15.047124080140819], [-60.69356179733953, -15.038140927299622], [-60.68457864449833, -15.038140927299622], [-60.68457864449833, -15.056107232982015], [-60.69356179733953, -15.056107232982015], [-60.69356179733953, -15.083056691505604], [-60.68457864449833, -15.083056691505604], [-60.68457864449833, -15.056107232982015], [-60.66661233881594, -15.056107232982015], [-60.66661233881594, -15.047124080140819], [-60.675595491657134, -15.047124080140819], [-60.675595491657134, -15.038140927299622], [-60.68457864449833, -15.038140927299622], [-60.68457864449833, -15.029157774458426], [-60.675595491657134, -15.029157774458426], [-60.675595491657134, -15.02017462161723], [-60.66661233881594, -15.02017462161723], [-60.66661233881594, -15.038140927299622], [-60.648646033133545, -15.038140927299622], [-60.648646033133545, -15.056107232982015], [-60.63966288029235, -15.056107232982015], [-60.63966288029235, -15.038140927299622], [-60.648646033133545, -15.038140927299622], [-60.648646033133545, -15.029157774458426], [-60.65762918597474, -15.029157774458426], [-60.65762918597474, -15.02017462161723], [-60.66661233881594, -15.02017462161723], [-60.66661233881594, -15.011191468776047], [-60.648646033133545, -15.011191468776047], [-60.648646033133545, -15.02017462161723], [-60.63966288029235, -15.02017462161723], [-60.63966288029235, -15.029157774458426], [-60.63067972745115, -15.029157774458426], [-60.63067972745115, -15.038140927299622], [-60.621696574609956, -15.038140927299622], [-60.621696574609956, -15.02017462161723], [-60.63966288029235, -15.02017462161723], [-60.63966288029235, -14.993225163093655], [-60.65762918597474, -14.993225163093655], [-60.65762918597474, -14.966275704570066], [-60.675595491657134, -14.966275704570066], [-60.675595491657134, -14.95729255172887], [-60.69356179733953, -14.95729255172887], [-60.69356179733953, -14.948309398887673], [-60.711528103021905, -14.948309398887673], [-60.711528103021905, -14.993225163093655], [-60.7205112558631, -14.993225163093655], [-60.7205112558631, -14.984242010252458], [-60.7294944087043, -14.984242010252458], [-60.7294944087043, -14.975258857411262], [-60.7205112558631, -14.975258857411262], [-60.7205112558631, -14.966275704570066], [-60.7294944087043, -14.966275704570066], [-60.7294944087043, -14.95729255172887], [-60.738477561545494, -14.95729255172887], [-60.738477561545494, -14.948309398887673], [-60.7294944087043, -14.948309398887673], [-60.7294944087043, -14.912376787522888], [-60.74746071438669, -14.912376787522888], [-60.74746071438669, -14.921359940364084], [-60.75644386722789, -14.921359940364084], [-60.75644386722789, -14.903393634681692], [-60.76542702006908, -14.903393634681692], [-60.76542702006908, -14.89441048184051], [-60.75644386722789, -14.89441048184051], [-60.75644386722789, -14.876444176158117], [-60.783393325751476, -14.876444176158117], [-60.783393325751476, -14.849494717634528], [-60.79237647859267, -14.849494717634528], [-60.79237647859267, -14.840511564793331], [-60.81932593711625, -14.840511564793331], [-60.81932593711625, -14.849494717634528], [-60.810342784275065, -14.849494717634528], [-60.810342784275065, -14.858477870475724], [-60.82830908995744, -14.858477870475724], [-60.82830908995744, -14.822545259110939], [-60.83729224279864, -14.822545259110939], [-60.83729224279864, -14.813562106269742], [-60.846275395639836, -14.813562106269742], [-60.846275395639836, -14.822545259110939], [-60.85525854848103, -14.822545259110939], [-60.85525854848103, -14.79559580058735], [-60.86424170132223, -14.79559580058735], [-60.86424170132223, -14.804578953428546], [-60.873224854163425, -14.804578953428546], [-60.873224854163425, -14.786612647746153], [-60.88220800700462, -14.786612647746153], [-60.88220800700462, -14.777629494904971], [-60.89119115984582, -14.777629494904971], [-60.89119115984582, -14.768646342063775], [-60.900174312687014, -14.768646342063775], [-60.900174312687014, -14.777629494904971], [-60.90915746552821, -14.777629494904971], [-60.90915746552821, -14.759663189222579], [-60.91814061836941, -14.759663189222579], [-60.91814061836941, -14.768646342063775], [-60.9271237712106, -14.768646342063775], [-60.9271237712106, -14.777629494904971], [-60.936106924051785, -14.777629494904971], [-60.936106924051785, -14.79559580058735], [-60.90915746552821, -14.79559580058735], [-60.90915746552821, -14.804578953428546], [-60.900174312687014, -14.804578953428546], [-60.900174312687014, -14.813562106269742], [-60.89119115984582, -14.813562106269742], [-60.89119115984582, -14.822545259110939], [-60.88220800700462, -14.822545259110939], [-60.88220800700462, -14.858477870475724], [-60.873224854163425, -14.858477870475724], [-60.873224854163425, -14.86746102331692], [-60.86424170132223, -14.86746102331692], [-60.86424170132223, -14.876444176158117], [-60.873224854163425, -14.876444176158117], [-60.873224854163425, -14.885427328999313], [-60.900174312687014, -14.885427328999313], [-60.900174312687014, -14.93034309320528], [-60.91814061836941, -14.93034309320528], [-60.91814061836941, -14.948309398887673], [-60.9271237712106, -14.948309398887673], [-60.9271237712106, -14.95729255172887], [-60.95407322973418, -14.95729255172887], [-60.95407322973418, -14.966275704570066], [-60.94509007689298, -14.966275704570066], [-60.94509007689298, -14.975258857411262], [-60.91814061836941, -14.975258857411262], [-60.91814061836941, -14.993225163093655], [-60.9271237712106, -14.993225163093655], [-60.9271237712106, -15.002208315934851], [-60.936106924051785, -15.002208315934851], [-60.936106924051785, -14.984242010252458], [-60.95407322973418, -14.984242010252458], [-60.95407322973418, -14.975258857411262], [-60.97203953541657, -14.975258857411262], [-60.97203953541657, -14.984242010252458], [-60.98102268825777, -14.984242010252458], [-60.98102268825777, -14.993225163093655], [-60.99000584109896, -14.993225163093655], [-60.99000584109896, -14.975258857411262], [-61.007972146781356, -14.975258857411262], [-61.007972146781356, -14.95729255172887], [-61.01695529962255, -14.95729255172887], [-61.01695529962255, -14.948309398887673], [-61.02593845246375, -14.948309398887673], [-61.02593845246375, -14.95729255172887], [-61.034921605304945, -14.95729255172887], [-61.034921605304945, -14.966275704570066], [-61.02593845246375, -14.966275704570066], [-61.02593845246375, -14.975258857411262], [-61.034921605304945, -14.975258857411262], [-61.034921605304945, -14.984242010252458], [-61.04390475814614, -14.984242010252458], [-61.04390475814614, -15.011191468776047], [-61.034921605304945, -15.011191468776047], [-61.034921605304945, -15.029157774458426], [-61.04390475814614, -15.029157774458426], [-61.04390475814614, -15.038140927299622], [-61.05288791098732, -15.038140927299622], [-61.05288791098732, -15.047124080140819], [-61.06187106382852, -15.047124080140819], [-61.06187106382852, -15.038140927299622], [-61.070854216669716, -15.038140927299622], [-61.070854216669716, -15.02017462161723], [-61.08882052235211, -15.02017462161723], [-61.08882052235211, -15.029157774458426], [-61.097803675193305, -15.029157774458426], [-61.097803675193305, -15.02017462161723], [-61.1067868280345, -15.02017462161723], [-61.1067868280345, -15.029157774458426], [-61.097803675193305, -15.029157774458426], [-61.097803675193305, -15.038140927299622], [-61.07983736951091, -15.038140927299622], [-61.07983736951091, -15.056107232982015], [-61.070854216669716, -15.056107232982015], [-61.070854216669716, -15.047124080140819], [-61.06187106382852, -15.047124080140819], [-61.06187106382852, -15.056107232982015], [-61.034921605304945, -15.056107232982015], [-61.034921605304945, -15.074073538664408], [-61.04390475814614, -15.074073538664408], [-61.04390475814614, -15.0920398443468], [-61.034921605304945, -15.0920398443468], [-61.034921605304945, -15.101022997187997], [-61.04390475814614, -15.101022997187997], [-61.04390475814614, -15.11898930287039], [-61.034921605304945, -15.11898930287039], [-61.034921605304945, -15.127972455711571], [-61.02593845246375, -15.127972455711571], [-61.02593845246375, -15.11898930287039], [-61.01695529962255, -15.11898930287039], [-61.01695529962255, -15.127972455711571], [-61.007972146781356, -15.127972455711571], [-61.007972146781356, -15.11898930287039], [-61.01695529962255, -15.11898930287039], [-61.01695529962255, -15.110006150029193], [-61.02593845246375, -15.110006150029193], [-61.02593845246375, -15.11898930287039], [-61.034921605304945, -15.11898930287039], [-61.034921605304945, -15.101022997187997], [-61.02593845246375, -15.101022997187997], [-61.02593845246375, -15.0920398443468], [-61.01695529962255, -15.0920398443468], [-61.01695529962255, -15.083056691505604], [-60.99898899394016, -15.083056691505604], [-60.99898899394016, -15.101022997187997], [-61.007972146781356, -15.101022997187997], [-61.007972146781356, -15.110006150029193], [-60.99000584109896, -15.110006150029193], [-60.99000584109896, -15.11898930287039], [-60.98102268825777, -15.11898930287039], [-60.98102268825777, -15.127972455711571], [-60.97203953541657, -15.127972455711571], [-60.97203953541657, -15.136955608552768], [-60.98102268825777, -15.136955608552768], [-60.98102268825777, -15.145938761393964], [-60.99000584109896, -15.145938761393964], [-60.99000584109896, -15.127972455711571], [-60.99898899394016, -15.127972455711571], [-60.99898899394016, -15.136955608552768], [-61.007972146781356, -15.136955608552768], [-61.007972146781356, -15.145938761393964], [-60.99898899394016, -15.145938761393964], [-60.99898899394016, -15.15492191423516], [-60.99000584109896, -15.15492191423516], [-60.99000584109896, -15.163905067076357], [-60.98102268825777, -15.163905067076357], [-60.98102268825777, -15.15492191423516], [-60.97203953541657, -15.15492191423516], [-60.97203953541657, -15.163905067076357], [-60.95407322973418, -15.163905067076357], [-60.95407322973418, -15.15492191423516], [-60.94509007689298, -15.15492191423516], [-60.94509007689298, -15.163905067076357], [-60.936106924051785, -15.163905067076357], [-60.936106924051785, -15.190854525599946], [-60.9271237712106, -15.190854525599946], [-60.9271237712106, -15.18187137275875], [-60.91814061836941, -15.18187137275875], [-60.91814061836941, -15.190854525599946], [-60.900174312687014, -15.190854525599946], [-60.900174312687014, -15.199837678441142], [-60.89119115984582, -15.199837678441142], [-60.89119115984582, -15.226787136964731], [-60.88220800700462, -15.226787136964731], [-60.88220800700462, -15.190854525599946], [-60.86424170132223, -15.190854525599946], [-60.86424170132223, -15.199837678441142], [-60.85525854848103, -15.199837678441142], [-60.85525854848103, -15.217803984123535], [-60.846275395639836, -15.217803984123535], [-60.846275395639836, -15.235770289805927], [-60.81932593711625, -15.235770289805927], [-60.81932593711625, -15.24475344264711], [-60.810342784275065, -15.24475344264711], [-60.810342784275065, -15.235770289805927], [-60.80135963143387, -15.235770289805927], [-60.80135963143387, -15.24475344264711], [-60.783393325751476, -15.24475344264711], [-60.783393325751476, -15.253736595488306], [-60.80135963143387, -15.253736595488306], [-60.80135963143387, -15.262719748329502], [-60.81932593711625, -15.262719748329502], [-60.81932593711625, -15.280686054011895], [-60.82830908995744, -15.280686054011895], [-60.82830908995744, -15.271702901170698], [-60.846275395639836, -15.271702901170698], [-60.846275395639836, -15.280686054011895], [-60.85525854848103, -15.280686054011895], [-60.85525854848103, -15.298652359694287], [-60.86424170132223, -15.298652359694287], [-60.86424170132223, -15.307635512535484], [-60.873224854163425, -15.307635512535484], [-60.873224854163425, -15.31661866537668], [-60.86424170132223, -15.31661866537668], [-60.86424170132223, -15.334584971059073], [-60.85525854848103, -15.334584971059073], [-60.85525854848103, -15.343568123900269], [-60.846275395639836, -15.343568123900269], [-60.846275395639836, -15.352551276741465], [-60.83729224279864, -15.352551276741465], [-60.83729224279864, -15.370517582423844], [-60.82830908995744, -15.370517582423844], [-60.82830908995744, -15.388483888106236], [-60.81932593711625, -15.388483888106236], [-60.81932593711625, -15.397467040947433], [-60.79237647859267, -15.397467040947433], [-60.79237647859267, -15.40645019378863], [-60.783393325751476, -15.40645019378863], [-60.783393325751476, -15.415433346629825], [-60.79237647859267, -15.415433346629825], [-60.79237647859267, -15.442382805153414], [-60.80135963143387, -15.442382805153414], [-60.80135963143387, -15.45136595799461], [-60.79237647859267, -15.45136595799461], [-60.79237647859267, -15.442382805153414], [-60.77441017291028, -15.442382805153414], [-60.77441017291028, -15.424416499471022], [-60.74746071438669, -15.424416499471022], [-60.74746071438669, -15.433399652312218], [-60.738477561545494, -15.433399652312218], [-60.738477561545494, -15.424416499471022], [-60.74746071438669, -15.424416499471022], [-60.74746071438669, -15.40645019378863], [-60.738477561545494, -15.40645019378863], [-60.738477561545494, -15.397467040947433], [-60.7294944087043, -15.397467040947433], [-60.7294944087043, -15.40645019378863], [-60.711528103021905, -15.40645019378863], [-60.711528103021905, -15.424416499471022], [-60.68457864449833, -15.424416499471022], [-60.68457864449833, -15.40645019378863], [-60.65762918597474, -15.40645019378863], [-60.65762918597474, -15.397467040947433], [-60.648646033133545, -15.397467040947433], [-60.648646033133545, -15.40645019378863], [-60.63966288029235, -15.40645019378863], [-60.63966288029235, -15.424416499471022], [-60.63067972745115, -15.424416499471022], [-60.63067972745115, -15.415433346629825], [-60.621696574609956, -15.415433346629825], [-60.621696574609956, -15.37950073526504], [-60.60373026892756, -15.37950073526504], [-60.60373026892756, -15.433399652312218], [-60.59474711608637, -15.433399652312218], [-60.59474711608637, -15.442382805153414], [-60.60373026892756, -15.442382805153414], [-60.60373026892756, -15.45136595799461], [-60.61271342176876, -15.45136595799461], [-60.61271342176876, -15.460349110835807], [-60.621696574609956, -15.460349110835807], [-60.621696574609956, -15.469332263677003]], [[-60.963056382575374, -14.993225163093655], [-60.963056382575374, -14.984242010252458], [-60.97203953541657, -14.984242010252458], [-60.97203953541657, -14.993225163093655], [-60.963056382575374, -14.993225163093655]], [[-60.88220800700462, -14.79559580058735], [-60.88220800700462, -14.786612647746153], [-60.900174312687014, -14.786612647746153], [-60.900174312687014, -14.79559580058735], [-60.88220800700462, -14.79559580058735]], [[-60.81932593711625, -14.876444176158117], [-60.81932593711625, -14.86746102331692], [-60.82830908995744, -14.86746102331692], [-60.82830908995744, -14.876444176158117], [-60.81932593711625, -14.876444176158117]], [[-60.80135963143387, -14.885427328999313], [-60.80135963143387, -14.876444176158117], [-60.810342784275065, -14.876444176158117], [-60.810342784275065, -14.885427328999313], [-60.80135963143387, -14.885427328999313]], [[-60.80135963143387, -14.903393634681692], [-60.80135963143387, -14.89441048184051], [-60.810342784275065, -14.89441048184051], [-60.810342784275065, -14.903393634681692], [-60.80135963143387, -14.903393634681692]], [[-60.75644386722789, -14.93034309320528], [-60.75644386722789, -14.921359940364084], [-60.76542702006908, -14.921359940364084], [-60.76542702006908, -14.93034309320528], [-60.75644386722789, -14.93034309320528]], [[-60.76542702006908, -14.939326246046477], [-60.76542702006908, -14.93034309320528], [-60.77441017291028, -14.93034309320528], [-60.77441017291028, -14.939326246046477], [-60.76542702006908, -14.939326246046477]], [[-60.738477561545494, -14.966275704570066], [-60.738477561545494, -14.95729255172887], [-60.74746071438669, -14.95729255172887], [-60.74746071438669, -14.966275704570066], [-60.738477561545494, -14.966275704570066]], [[-60.86424170132223, -14.975258857411262], [-60.86424170132223, -14.966275704570066], [-60.873224854163425, -14.966275704570066], [-60.873224854163425, -14.975258857411262], [-60.86424170132223, -14.975258857411262]], [[-60.846275395639836, -14.975258857411262], [-60.846275395639836, -14.966275704570066], [-60.85525854848103, -14.966275704570066], [-60.85525854848103, -14.975258857411262], [-60.846275395639836, -14.975258857411262]], [[-60.66661233881594, -14.984242010252458], [-60.66661233881594, -14.975258857411262], [-60.675595491657134, -14.975258857411262], [-60.675595491657134, -14.984242010252458], [-60.66661233881594, -14.984242010252458]], [[-60.88220800700462, -14.993225163093655], [-60.88220800700462, -14.984242010252458], [-60.89119115984582, -14.984242010252458], [-60.89119115984582, -14.993225163093655], [-60.88220800700462, -14.993225163093655]], [[-60.86424170132223, -14.993225163093655], [-60.86424170132223, -14.984242010252458], [-60.873224854163425, -14.984242010252458], [-60.873224854163425, -14.993225163093655], [-60.86424170132223, -14.993225163093655]], [[-60.90915746552821, -15.002208315934851], [-60.90915746552821, -14.993225163093655], [-60.91814061836941, -14.993225163093655], [-60.91814061836941, -15.002208315934851], [-60.90915746552821, -15.002208315934851]], [[-60.846275395639836, -15.002208315934851], [-60.846275395639836, -14.993225163093655], [-60.85525854848103, -14.993225163093655], [-60.85525854848103, -15.002208315934851], [-60.846275395639836, -15.002208315934851]], [[-60.70254495018071, -15.002208315934851], [-60.70254495018071, -14.993225163093655], [-60.711528103021905, -14.993225163093655], [-60.711528103021905, -15.002208315934851], [-60.70254495018071, -15.002208315934851]], [[-61.02593845246375, -15.011191468776047], [-61.02593845246375, -15.002208315934851], [-61.034921605304945, -15.002208315934851], [-61.034921605304945, -15.011191468776047], [-61.02593845246375, -15.011191468776047]], [[-61.007972146781356, -15.011191468776047], [-61.007972146781356, -15.002208315934851], [-61.01695529962255, -15.002208315934851], [-61.01695529962255, -15.011191468776047], [-61.007972146781356, -15.011191468776047]], [[-60.94509007689298, -15.011191468776047], [-60.94509007689298, -15.002208315934851], [-60.95407322973418, -15.002208315934851], [-60.95407322973418, -15.011191468776047], [-60.94509007689298, -15.011191468776047]], [[-60.89119115984582, -15.011191468776047], [-60.89119115984582, -15.002208315934851], [-60.900174312687014, -15.002208315934851], [-60.900174312687014, -15.011191468776047], [-60.89119115984582, -15.011191468776047]], [[-60.936106924051785, -15.02017462161723], [-60.936106924051785, -15.011191468776047], [-60.94509007689298, -15.011191468776047], [-60.94509007689298, -15.02017462161723], [-60.936106924051785, -15.02017462161723]], [[-60.900174312687014, -15.02017462161723], [-60.900174312687014, -15.011191468776047], [-60.90915746552821, -15.011191468776047], [-60.90915746552821, -15.02017462161723], [-60.900174312687014, -15.02017462161723]], [[-60.810342784275065, -15.02017462161723], [-60.810342784275065, -15.011191468776047], [-60.81932593711625, -15.011191468776047], [-60.81932593711625, -15.02017462161723], [-60.810342784275065, -15.02017462161723]], [[-60.7205112558631, -15.02017462161723], [-60.7205112558631, -15.011191468776047], [-60.7294944087043, -15.011191468776047], [-60.7294944087043, -15.02017462161723], [-60.7205112558631, -15.02017462161723]], [[-60.94509007689298, -15.029157774458426], [-60.94509007689298, -15.02017462161723], [-60.95407322973418, -15.02017462161723], [-60.95407322973418, -15.029157774458426], [-60.94509007689298, -15.029157774458426]], [[-60.88220800700462, -15.029157774458426], [-60.88220800700462, -15.011191468776047], [-60.89119115984582, -15.011191468776047], [-60.89119115984582, -15.029157774458426], [-60.88220800700462, -15.029157774458426]], [[-60.69356179733953, -15.029157774458426], [-60.69356179733953, -15.011191468776047], [-60.711528103021905, -15.011191468776047], [-60.711528103021905, -15.02017462161723], [-60.70254495018071, -15.02017462161723], [-60.70254495018071, -15.029157774458426], [-60.69356179733953, -15.029157774458426]], [[-60.99000584109896, -15.038140927299622], [-60.99000584109896, -15.029157774458426], [-60.99898899394016, -15.029157774458426], [-60.99898899394016, -15.038140927299622], [-60.99000584109896, -15.038140927299622]], [[-60.95407322973418, -15.038140927299622], [-60.95407322973418, -15.029157774458426], [-60.963056382575374, -15.029157774458426], [-60.963056382575374, -15.038140927299622], [-60.95407322973418, -15.038140927299622]], [[-60.846275395639836, -15.038140927299622], [-60.846275395639836, -15.029157774458426], [-60.85525854848103, -15.029157774458426], [-60.85525854848103, -15.038140927299622], [-60.846275395639836, -15.038140927299622]], [[-60.9271237712106, -15.047124080140819], [-60.9271237712106, -15.038140927299622], [-60.936106924051785, -15.038140927299622], [-60.936106924051785, -15.047124080140819], [-60.9271237712106, -15.047124080140819]], [[-60.74746071438669, -15.047124080140819], [-60.74746071438669, -15.038140927299622], [-60.75644386722789, -15.038140927299622], [-60.75644386722789, -15.047124080140819], [-60.74746071438669, -15.047124080140819]], [[-60.963056382575374, -15.056107232982015], [-60.963056382575374, -15.047124080140819], [-60.97203953541657, -15.047124080140819], [-60.97203953541657, -15.056107232982015], [-60.963056382575374, -15.056107232982015]], [[-60.900174312687014, -15.056107232982015], [-60.900174312687014, -15.047124080140819], [-60.90915746552821, -15.047124080140819], [-60.90915746552821, -15.056107232982015], [-60.900174312687014, -15.056107232982015]], [[-60.873224854163425, -15.056107232982015], [-60.873224854163425, -15.047124080140819], [-60.88220800700462, -15.047124080140819], [-60.88220800700462, -15.056107232982015], [-60.873224854163425, -15.056107232982015]], [[-60.83729224279864, -15.056107232982015], [-60.83729224279864, -15.047124080140819], [-60.846275395639836, -15.047124080140819], [-60.846275395639836, -15.056107232982015], [-60.83729224279864, -15.056107232982015]], [[-60.94509007689298, -15.065090385823211], [-60.94509007689298, -15.047124080140819], [-60.95407322973418, -15.047124080140819], [-60.95407322973418, -15.065090385823211], [-60.94509007689298, -15.065090385823211]], [[-60.90915746552821, -15.065090385823211], [-60.90915746552821, -15.056107232982015], [-60.91814061836941, -15.056107232982015], [-60.91814061836941, -15.047124080140819], [-60.9271237712106, -15.047124080140819], [-60.9271237712106, -15.065090385823211], [-60.90915746552821, -15.065090385823211]], [[-60.86424170132223, -15.065090385823211], [-60.86424170132223, -15.056107232982015], [-60.873224854163425, -15.056107232982015], [-60.873224854163425, -15.065090385823211], [-60.86424170132223, -15.065090385823211]], [[-60.74746071438669, -15.065090385823211], [-60.74746071438669, -15.056107232982015], [-60.75644386722789, -15.056107232982015], [-60.75644386722789, -15.065090385823211], [-60.74746071438669, -15.065090385823211]], [[-60.97203953541657, -15.074073538664408], [-60.97203953541657, -15.065090385823211], [-60.98102268825777, -15.065090385823211], [-60.98102268825777, -15.074073538664408], [-60.97203953541657, -15.074073538664408]], [[-60.76542702006908, -15.074073538664408], [-60.76542702006908, -15.056107232982015], [-60.783393325751476, -15.056107232982015], [-60.783393325751476, -15.065090385823211], [-60.77441017291028, -15.065090385823211], [-60.77441017291028, -15.074073538664408], [-60.76542702006908, -15.074073538664408]], [[-60.846275395639836, -15.083056691505604], [-60.846275395639836, -15.056107232982015], [-60.85525854848103, -15.056107232982015], [-60.85525854848103, -15.065090385823211], [-60.86424170132223, -15.065090385823211], [-60.86424170132223, -15.074073538664408], [-60.85525854848103, -15.074073538664408], [-60.85525854848103, -15.083056691505604], [-60.846275395639836, -15.083056691505604]], [[-60.82830908995744, -15.083056691505604], [-60.82830908995744, -15.074073538664408], [-60.81932593711625, -15.074073538664408], [-60.81932593711625, -15.065090385823211], [-60.82830908995744, -15.065090385823211], [-60.82830908995744, -15.056107232982015], [-60.83729224279864, -15.056107232982015], [-60.83729224279864, -15.083056691505604], [-60.82830908995744, -15.083056691505604]], [[-60.936106924051785, -15.0920398443468], [-60.936106924051785, -15.083056691505604], [-60.9271237712106, -15.083056691505604], [-60.9271237712106, -15.074073538664408], [-60.94509007689298, -15.074073538664408], [-60.94509007689298, -15.083056691505604], [-60.95407322973418, -15.083056691505604], [-60.95407322973418, -15.0920398443468], [-60.936106924051785, -15.0920398443468]], [[-60.88220800700462, -15.0920398443468], [-60.88220800700462, -15.083056691505604], [-60.89119115984582, -15.083056691505604], [-60.89119115984582, -15.0920398443468], [-60.88220800700462, -15.0920398443468]], [[-60.83729224279864, -15.0920398443468], [-60.83729224279864, -15.083056691505604], [-60.846275395639836, -15.083056691505604], [-60.846275395639836, -15.0920398443468], [-60.83729224279864, -15.0920398443468]], [[-60.900174312687014, -15.101022997187997], [-60.900174312687014, -15.074073538664408], [-60.89119115984582, -15.074073538664408], [-60.89119115984582, -15.065090385823211], [-60.90915746552821, -15.065090385823211], [-60.90915746552821, -15.074073538664408], [-60.91814061836941, -15.074073538664408], [-60.91814061836941, -15.083056691505604], [-60.9271237712106, -15.083056691505604], [-60.9271237712106, -15.0920398443468], [-60.90915746552821, -15.0920398443468], [-60.90915746552821, -15.101022997187997], [-60.900174312687014, -15.101022997187997]], [[-60.82830908995744, -15.101022997187997], [-60.82830908995744, -15.0920398443468], [-60.83729224279864, -15.0920398443468], [-60.83729224279864, -15.101022997187997], [-60.82830908995744, -15.101022997187997]], [[-60.9271237712106, -15.110006150029193], [-60.9271237712106, -15.101022997187997], [-60.936106924051785, -15.101022997187997], [-60.936106924051785, -15.110006150029193], [-60.9271237712106, -15.110006150029193]], [[-60.738477561545494, -15.110006150029193], [-60.738477561545494, -15.101022997187997], [-60.75644386722789, -15.101022997187997], [-60.75644386722789, -15.110006150029193], [-60.738477561545494, -15.110006150029193]], [[-60.711528103021905, -15.110006150029193], [-60.711528103021905, -15.0920398443468], [-60.738477561545494, -15.0920398443468], [-60.738477561545494, -15.101022997187997], [-60.7294944087043, -15.101022997187997], [-60.7294944087043, -15.110006150029193], [-60.711528103021905, -15.110006150029193]], [[-60.97203953541657, -15.11898930287039], [-60.97203953541657, -15.110006150029193], [-60.98102268825777, -15.110006150029193], [-60.98102268825777, -15.11898930287039], [-60.97203953541657, -15.11898930287039]], [[-60.90915746552821, -15.11898930287039], [-60.90915746552821, -15.110006150029193], [-60.91814061836941, -15.110006150029193], [-60.91814061836941, -15.11898930287039], [-60.90915746552821, -15.11898930287039]], [[-60.86424170132223, -15.11898930287039], [-60.86424170132223, -15.101022997187997], [-60.88220800700462, -15.101022997187997], [-60.88220800700462, -15.110006150029193], [-60.873224854163425, -15.110006150029193], [-60.873224854163425, -15.11898930287039], [-60.86424170132223, -15.11898930287039]], [[-60.83729224279864, -15.11898930287039], [-60.83729224279864, -15.110006150029193], [-60.846275395639836, -15.110006150029193], [-60.846275395639836, -15.11898930287039], [-60.83729224279864, -15.11898930287039]], [[-60.80135963143387, -15.11898930287039], [-60.80135963143387, -15.101022997187997], [-60.82830908995744, -15.101022997187997], [-60.82830908995744, -15.110006150029193], [-60.810342784275065, -15.110006150029193], [-60.810342784275065, -15.11898930287039], [-60.80135963143387, -15.11898930287039]], [[-60.76542702006908, -15.11898930287039], [-60.76542702006908, -15.101022997187997], [-60.77441017291028, -15.101022997187997], [-60.77441017291028, -15.0920398443468], [-60.76542702006908, -15.0920398443468], [-60.76542702006908, -15.101022997187997], [-60.75644386722789, -15.101022997187997], [-60.75644386722789, -15.074073538664408], [-60.76542702006908, -15.074073538664408], [-60.76542702006908, -15.083056691505604], [-60.77441017291028, -15.083056691505604], [-60.77441017291028, -15.074073538664408], [-60.79237647859267, -15.074073538664408], [-60.79237647859267, -15.056107232982015], [-60.80135963143387, -15.056107232982015], [-60.80135963143387, -15.047124080140819], [-60.810342784275065, -15.047124080140819], [-60.810342784275065, -15.083056691505604], [-60.79237647859267, -15.083056691505604], [-60.79237647859267, -15.0920398443468], [-60.80135963143387, -15.0920398443468], [-60.80135963143387, -15.101022997187997], [-60.783393325751476, -15.101022997187997], [-60.783393325751476, -15.110006150029193], [-60.77441017291028, -15.110006150029193], [-60.77441017291028, -15.11898930287039], [-60.76542702006908, -15.11898930287039]], [[-60.7294944087043, -15.11898930287039], [-60.7294944087043, -15.110006150029193], [-60.738477561545494, -15.110006150029193], [-60.738477561545494, -15.11898930287039], [-60.7294944087043, -15.11898930287039]], [[-60.963056382575374, -15.127972455711571], [-60.963056382575374, -15.11898930287039], [-60.97203953541657, -15.11898930287039], [-60.97203953541657, -15.127972455711571], [-60.963056382575374, -15.127972455711571]], [[-60.75644386722789, -15.127972455711571], [-60.75644386722789, -15.11898930287039], [-60.76542702006908, -15.11898930287039], [-60.76542702006908, -15.127972455711571], [-60.75644386722789, -15.127972455711571]], [[-60.846275395639836, -15.136955608552768], [-60.846275395639836, -15.127972455711571], [-60.85525854848103, -15.127972455711571], [-60.85525854848103, -15.136955608552768], [-60.846275395639836, -15.136955608552768]], [[-60.77441017291028, -15.136955608552768], [-60.77441017291028, -15.11898930287039], [-60.783393325751476, -15.11898930287039], [-60.783393325751476, -15.127972455711571], [-60.79237647859267, -15.127972455711571], [-60.79237647859267, -15.136955608552768], [-60.77441017291028, -15.136955608552768]], [[-60.70254495018071, -15.136955608552768], [-60.70254495018071, -15.127972455711571], [-60.69356179733953, -15.127972455711571], [-60.69356179733953, -15.11898930287039], [-60.70254495018071, -15.11898930287039], [-60.70254495018071, -15.110006150029193], [-60.711528103021905, -15.110006150029193], [-60.711528103021905, -15.11898930287039], [-60.7205112558631, -15.11898930287039], [-60.7205112558631, -15.136955608552768], [-60.70254495018071, -15.136955608552768]], [[-60.68457864449833, -15.136955608552768], [-60.68457864449833, -15.127972455711571], [-60.69356179733953, -15.127972455711571], [-60.69356179733953, -15.136955608552768], [-60.68457864449833, -15.136955608552768]], [[-60.9271237712106, -15.145938761393964], [-60.9271237712106, -15.136955608552768], [-60.97203953541657, -15.136955608552768], [-60.97203953541657, -15.145938761393964], [-60.9271237712106, -15.145938761393964]], [[-60.89119115984582, -15.145938761393964], [-60.89119115984582, -15.127972455711571], [-60.90915746552821, -15.127972455711571], [-60.90915746552821, -15.136955608552768], [-60.900174312687014, -15.136955608552768], [-60.900174312687014, -15.145938761393964], [-60.89119115984582, -15.145938761393964]], [[-60.85525854848103, -15.145938761393964], [-60.85525854848103, -15.136955608552768], [-60.86424170132223, -15.136955608552768], [-60.86424170132223, -15.145938761393964], [-60.85525854848103, -15.145938761393964]], [[-60.82830908995744, -15.145938761393964], [-60.82830908995744, -15.136955608552768], [-60.83729224279864, -15.136955608552768], [-60.83729224279864, -15.145938761393964], [-60.82830908995744, -15.145938761393964]], [[-60.810342784275065, -15.145938761393964], [-60.810342784275065, -15.136955608552768], [-60.80135963143387, -15.136955608552768], [-60.80135963143387, -15.127972455711571], [-60.810342784275065, -15.127972455711571], [-60.810342784275065, -15.11898930287039], [-60.81932593711625, -15.11898930287039], [-60.81932593711625, -15.145938761393964], [-60.810342784275065, -15.145938761393964]], [[-60.86424170132223, -15.15492191423516], [-60.86424170132223, -15.145938761393964], [-60.873224854163425, -15.145938761393964], [-60.873224854163425, -15.15492191423516], [-60.86424170132223, -15.15492191423516]], [[-60.738477561545494, -15.15492191423516], [-60.738477561545494, -15.145938761393964], [-60.74746071438669, -15.145938761393964], [-60.74746071438669, -15.15492191423516], [-60.738477561545494, -15.15492191423516]], [[-60.9271237712106, -15.163905067076357], [-60.9271237712106, -15.15492191423516], [-60.936106924051785, -15.15492191423516], [-60.936106924051785, -15.163905067076357], [-60.9271237712106, -15.163905067076357]], [[-60.90915746552821, -15.163905067076357], [-60.90915746552821, -15.15492191423516], [-60.900174312687014, -15.15492191423516], [-60.900174312687014, -15.145938761393964], [-60.91814061836941, -15.145938761393964], [-60.91814061836941, -15.163905067076357], [-60.90915746552821, -15.163905067076357]], [[-60.846275395639836, -15.163905067076357], [-60.846275395639836, -15.15492191423516], [-60.83729224279864, -15.15492191423516], [-60.83729224279864, -15.145938761393964], [-60.85525854848103, -15.145938761393964], [-60.85525854848103, -15.163905067076357], [-60.846275395639836, -15.163905067076357]], [[-60.82830908995744, -15.163905067076357], [-60.82830908995744, -15.15492191423516], [-60.83729224279864, -15.15492191423516], [-60.83729224279864, -15.163905067076357], [-60.82830908995744, -15.163905067076357]], [[-60.83729224279864, -15.172888219917553], [-60.83729224279864, -15.163905067076357], [-60.846275395639836, -15.163905067076357], [-60.846275395639836, -15.172888219917553], [-60.83729224279864, -15.172888219917553]], [[-60.711528103021905, -15.172888219917553], [-60.711528103021905, -15.163905067076357], [-60.738477561545494, -15.163905067076357], [-60.738477561545494, -15.172888219917553], [-60.711528103021905, -15.172888219917553]], [[-60.900174312687014, -15.18187137275875], [-60.900174312687014, -15.172888219917553], [-60.90915746552821, -15.172888219917553], [-60.90915746552821, -15.18187137275875], [-60.900174312687014, -15.18187137275875]], [[-60.88220800700462, -15.18187137275875], [-60.88220800700462, -15.15492191423516], [-60.89119115984582, -15.15492191423516], [-60.89119115984582, -15.18187137275875], [-60.88220800700462, -15.18187137275875]], [[-60.86424170132223, -15.18187137275875], [-60.86424170132223, -15.172888219917553], [-60.873224854163425, -15.172888219917553], [-60.873224854163425, -15.18187137275875], [-60.86424170132223, -15.18187137275875]], [[-60.81932593711625, -15.18187137275875], [-60.81932593711625, -15.172888219917553], [-60.82830908995744, -15.172888219917553], [-60.82830908995744, -15.18187137275875], [-60.81932593711625, -15.18187137275875]], [[-60.79237647859267, -15.18187137275875], [-60.79237647859267, -15.163905067076357], [-60.80135963143387, -15.163905067076357], [-60.80135963143387, -15.145938761393964], [-60.810342784275065, -15.145938761393964], [-60.810342784275065, -15.163905067076357], [-60.81932593711625, -15.163905067076357], [-60.81932593711625, -15.172888219917553], [-60.80135963143387, -15.172888219917553], [-60.80135963143387, -15.18187137275875], [-60.79237647859267, -15.18187137275875]], [[-60.75644386722789, -15.18187137275875], [-60.75644386722789, -15.163905067076357], [-60.74746071438669, -15.163905067076357], [-60.74746071438669, -15.15492191423516], [-60.76542702006908, -15.15492191423516], [-60.76542702006908, -15.163905067076357], [-60.77441017291028, -15.163905067076357], [-60.77441017291028, -15.172888219917553], [-60.76542702006908, -15.172888219917553], [-60.76542702006908, -15.18187137275875], [-60.75644386722789, -15.18187137275875]], [[-60.738477561545494, -15.18187137275875], [-60.738477561545494, -15.172888219917553], [-60.74746071438669, -15.172888219917553], [-60.74746071438669, -15.18187137275875], [-60.738477561545494, -15.18187137275875]], [[-60.85525854848103, -15.190854525599946], [-60.85525854848103, -15.18187137275875], [-60.86424170132223, -15.18187137275875], [-60.86424170132223, -15.190854525599946], [-60.85525854848103, -15.190854525599946]], [[-60.82830908995744, -15.190854525599946], [-60.82830908995744, -15.18187137275875], [-60.83729224279864, -15.18187137275875], [-60.83729224279864, -15.190854525599946], [-60.82830908995744, -15.190854525599946]], [[-60.74746071438669, -15.190854525599946], [-60.74746071438669, -15.18187137275875], [-60.75644386722789, -15.18187137275875], [-60.75644386722789, -15.190854525599946], [-60.74746071438669, -15.190854525599946]], [[-60.738477561545494, -15.199837678441142], [-60.738477561545494, -15.190854525599946], [-60.74746071438669, -15.190854525599946], [-60.74746071438669, -15.199837678441142], [-60.738477561545494, -15.199837678441142]], [[-60.7205112558631, -15.199837678441142], [-60.7205112558631, -15.190854525599946], [-60.7294944087043, -15.190854525599946], [-60.7294944087043, -15.199837678441142], [-60.7205112558631, -15.199837678441142]], [[-60.79237647859267, -15.208820831282338], [-60.79237647859267, -15.199837678441142], [-60.80135963143387, -15.199837678441142], [-60.80135963143387, -15.208820831282338], [-60.79237647859267, -15.208820831282338]], [[-60.77441017291028, -15.208820831282338], [-60.77441017291028, -15.190854525599946], [-60.783393325751476, -15.190854525599946], [-60.783393325751476, -15.208820831282338], [-60.77441017291028, -15.208820831282338]], [[-60.7294944087043, -15.208820831282338], [-60.7294944087043, -15.199837678441142], [-60.738477561545494, -15.199837678441142], [-60.738477561545494, -15.208820831282338], [-60.7294944087043, -15.208820831282338]], [[-60.675595491657134, -15.208820831282338], [-60.675595491657134, -15.199837678441142], [-60.68457864449833, -15.199837678441142], [-60.68457864449833, -15.208820831282338], [-60.675595491657134, -15.208820831282338]], [[-60.711528103021905, -15.217803984123535], [-60.711528103021905, -15.208820831282338], [-60.70254495018071, -15.208820831282338], [-60.70254495018071, -15.199837678441142], [-60.7205112558631, -15.199837678441142], [-60.7205112558631, -15.217803984123535], [-60.711528103021905, -15.217803984123535]], [[-60.810342784275065, -15.226787136964731], [-60.810342784275065, -15.217803984123535], [-60.81932593711625, -15.217803984123535], [-60.81932593711625, -15.226787136964731], [-60.810342784275065, -15.226787136964731]], [[-60.783393325751476, -15.226787136964731], [-60.783393325751476, -15.217803984123535], [-60.79237647859267, -15.217803984123535], [-60.79237647859267, -15.226787136964731], [-60.783393325751476, -15.226787136964731]], [[-60.76542702006908, -15.226787136964731], [-60.76542702006908, -15.217803984123535], [-60.77441017291028, -15.217803984123535], [-60.77441017291028, -15.226787136964731], [-60.76542702006908, -15.226787136964731]], [[-60.69356179733953, -15.226787136964731], [-60.69356179733953, -15.217803984123535], [-60.70254495018071, -15.217803984123535], [-60.70254495018071, -15.226787136964731], [-60.69356179733953, -15.226787136964731]], [[-60.7294944087043, -15.24475344264711], [-60.7294944087043, -15.235770289805927], [-60.738477561545494, -15.235770289805927], [-60.738477561545494, -15.24475344264711], [-60.7294944087043, -15.24475344264711]], [[-60.68457864449833, -15.24475344264711], [-60.68457864449833, -15.226787136964731], [-60.69356179733953, -15.226787136964731], [-60.69356179733953, -15.24475344264711], [-60.68457864449833, -15.24475344264711]], [[-60.585763963245185, -15.199837678441142], [-60.585763963245185, -15.190854525599946], [-60.59474711608637, -15.190854525599946], [-60.59474711608637, -15.199837678441142], [-60.585763963245185, -15.199837678441142]], [[-60.57678081040399, -15.253736595488306], [-60.57678081040399, -15.24475344264711], [-60.585763963245185, -15.24475344264711], [-60.585763963245185, -15.253736595488306], [-60.57678081040399, -15.253736595488306]], [[-60.66661233881594, -15.262719748329502], [-60.66661233881594, -15.253736595488306], [-60.675595491657134, -15.253736595488306], [-60.675595491657134, -15.262719748329502], [-60.66661233881594, -15.262719748329502]], [[-60.70254495018071, -15.271702901170698], [-60.70254495018071, -15.262719748329502], [-60.711528103021905, -15.262719748329502], [-60.711528103021905, -15.271702901170698], [-60.70254495018071, -15.271702901170698]], [[-60.585763963245185, -15.271702901170698], [-60.585763963245185, -15.262719748329502], [-60.59474711608637, -15.262719748329502], [-60.59474711608637, -15.271702901170698], [-60.585763963245185, -15.271702901170698]], [[-60.68457864449833, -15.280686054011895], [-60.68457864449833, -15.271702901170698], [-60.69356179733953, -15.271702901170698], [-60.69356179733953, -15.280686054011895], [-60.68457864449833, -15.280686054011895]], [[-60.621696574609956, -15.280686054011895], [-60.621696574609956, -15.271702901170698], [-60.63966288029235, -15.271702901170698], [-60.63966288029235, -15.280686054011895], [-60.621696574609956, -15.280686054011895]], [[-60.810342784275065, -15.289669206853091], [-60.810342784275065, -15.280686054011895], [-60.81932593711625, -15.280686054011895], [-60.81932593711625, -15.289669206853091], [-60.810342784275065, -15.289669206853091]], [[-60.77441017291028, -15.289669206853091], [-60.77441017291028, -15.262719748329502], [-60.75644386722789, -15.262719748329502], [-60.75644386722789, -15.271702901170698], [-60.74746071438669, -15.271702901170698], [-60.74746071438669, -15.253736595488306], [-60.783393325751476, -15.253736595488306], [-60.783393325751476, -15.262719748329502], [-60.79237647859267, -15.262719748329502], [-60.79237647859267, -15.271702901170698], [-60.783393325751476, -15.271702901170698], [-60.783393325751476, -15.289669206853091], [-60.77441017291028, -15.289669206853091]], [[-60.7205112558631, -15.289669206853091], [-60.7205112558631, -15.280686054011895], [-60.738477561545494, -15.280686054011895], [-60.738477561545494, -15.289669206853091], [-60.7205112558631, -15.289669206853091]], [[-60.57678081040399, -15.289669206853091], [-60.57678081040399, -15.280686054011895], [-60.585763963245185, -15.280686054011895], [-60.585763963245185, -15.289669206853091], [-60.57678081040399, -15.289669206853091]], [[-60.558814504721596, -15.289669206853091], [-60.558814504721596, -15.262719748329502], [-60.57678081040399, -15.262719748329502], [-60.57678081040399, -15.271702901170698], [-60.56779765756279, -15.271702901170698], [-60.56779765756279, -15.289669206853091], [-60.558814504721596, -15.289669206853091]], [[-60.80135963143387, -15.298652359694287], [-60.80135963143387, -15.289669206853091], [-60.810342784275065, -15.289669206853091], [-60.810342784275065, -15.298652359694287], [-60.80135963143387, -15.298652359694287]], [[-60.76542702006908, -15.298652359694287], [-60.76542702006908, -15.289669206853091], [-60.77441017291028, -15.289669206853091], [-60.77441017291028, -15.298652359694287], [-60.76542702006908, -15.298652359694287]], [[-60.648646033133545, -15.298652359694287], [-60.648646033133545, -15.271702901170698], [-60.66661233881594, -15.271702901170698], [-60.66661233881594, -15.280686054011895], [-60.675595491657134, -15.280686054011895], [-60.675595491657134, -15.289669206853091], [-60.66661233881594, -15.289669206853091], [-60.66661233881594, -15.298652359694287], [-60.648646033133545, -15.298652359694287]], [[-60.50491558767442, -15.298652359694287], [-60.50491558767442, -15.289669206853091], [-60.513898740515614, -15.289669206853091], [-60.513898740515614, -15.298652359694287], [-60.50491558767442, -15.298652359694287]], [[-60.79237647859267, -15.307635512535484], [-60.79237647859267, -15.298652359694287], [-60.80135963143387, -15.298652359694287], [-60.80135963143387, -15.307635512535484], [-60.79237647859267, -15.307635512535484]], [[-60.738477561545494, -15.307635512535484], [-60.738477561545494, -15.289669206853091], [-60.74746071438669, -15.289669206853091], [-60.74746071438669, -15.307635512535484], [-60.738477561545494, -15.307635512535484]], [[-60.675595491657134, -15.307635512535484], [-60.675595491657134, -15.298652359694287], [-60.68457864449833, -15.298652359694287], [-60.68457864449833, -15.307635512535484], [-60.675595491657134, -15.307635512535484]], [[-60.57678081040399, -15.307635512535484], [-60.57678081040399, -15.298652359694287], [-60.585763963245185, -15.298652359694287], [-60.585763963245185, -15.307635512535484], [-60.57678081040399, -15.307635512535484]], [[-60.5408481990392, -15.307635512535484], [-60.5408481990392, -15.298652359694287], [-60.5498313518804, -15.298652359694287], [-60.5498313518804, -15.307635512535484], [-60.5408481990392, -15.307635512535484]], [[-60.77441017291028, -15.31661866537668], [-60.77441017291028, -15.298652359694287], [-60.783393325751476, -15.298652359694287], [-60.783393325751476, -15.31661866537668], [-60.77441017291028, -15.31661866537668]], [[-60.60373026892756, -15.31661866537668], [-60.60373026892756, -15.307635512535484], [-60.61271342176876, -15.307635512535484], [-60.61271342176876, -15.31661866537668], [-60.60373026892756, -15.31661866537668]], [[-60.74746071438669, -15.325601818217876], [-60.74746071438669, -15.31661866537668], [-60.75644386722789, -15.31661866537668], [-60.75644386722789, -15.325601818217876], [-60.74746071438669, -15.325601818217876]], [[-60.53186504619801, -15.325601818217876], [-60.53186504619801, -15.307635512535484], [-60.5408481990392, -15.307635512535484], [-60.5408481990392, -15.325601818217876], [-60.53186504619801, -15.325601818217876]], [[-60.79237647859267, -15.334584971059073], [-60.79237647859267, -15.325601818217876], [-60.810342784275065, -15.325601818217876], [-60.810342784275065, -15.334584971059073], [-60.79237647859267, -15.334584971059073]], [[-60.77441017291028, -15.334584971059073], [-60.77441017291028, -15.325601818217876], [-60.783393325751476, -15.325601818217876], [-60.783393325751476, -15.334584971059073], [-60.77441017291028, -15.334584971059073]], [[-60.75644386722789, -15.334584971059073], [-60.75644386722789, -15.325601818217876], [-60.76542702006908, -15.325601818217876], [-60.76542702006908, -15.334584971059073], [-60.75644386722789, -15.334584971059073]], [[-60.63067972745115, -15.334584971059073], [-60.63067972745115, -15.31661866537668], [-60.621696574609956, -15.31661866537668], [-60.621696574609956, -15.307635512535484], [-60.63966288029235, -15.307635512535484], [-60.63966288029235, -15.334584971059073], [-60.63067972745115, -15.334584971059073]], [[-60.5408481990392, -15.334584971059073], [-60.5408481990392, -15.325601818217876], [-60.5498313518804, -15.325601818217876], [-60.5498313518804, -15.334584971059073], [-60.5408481990392, -15.334584971059073]], [[-60.60373026892756, -15.343568123900269], [-60.60373026892756, -15.325601818217876], [-60.61271342176876, -15.325601818217876], [-60.61271342176876, -15.343568123900269], [-60.60373026892756, -15.343568123900269]], [[-60.63966288029235, -15.352551276741465], [-60.63966288029235, -15.343568123900269], [-60.648646033133545, -15.343568123900269], [-60.648646033133545, -15.352551276741465], [-60.63966288029235, -15.352551276741465]], [[-60.621696574609956, -15.352551276741465], [-60.621696574609956, -15.343568123900269], [-60.63067972745115, -15.343568123900269], [-60.63067972745115, -15.352551276741465], [-60.621696574609956, -15.352551276741465]], [[-60.585763963245185, -15.361534429582647], [-60.585763963245185, -15.352551276741465], [-60.57678081040399, -15.352551276741465], [-60.57678081040399, -15.343568123900269], [-60.60373026892756, -15.343568123900269], [-60.60373026892756, -15.352551276741465], [-60.59474711608637, -15.352551276741465], [-60.59474711608637, -15.361534429582647], [-60.585763963245185, -15.361534429582647]], [[-60.75644386722789, -15.370517582423844], [-60.75644386722789, -15.361534429582647], [-60.76542702006908, -15.361534429582647], [-60.76542702006908, -15.370517582423844], [-60.75644386722789, -15.370517582423844]], [[-60.79237647859267, -15.37950073526504], [-60.79237647859267, -15.370517582423844], [-60.80135963143387, -15.370517582423844], [-60.80135963143387, -15.37950073526504], [-60.79237647859267, -15.37950073526504]], [[-60.74746071438669, -15.37950073526504], [-60.74746071438669, -15.370517582423844], [-60.75644386722789, -15.370517582423844], [-60.75644386722789, -15.37950073526504], [-60.74746071438669, -15.37950073526504]], [[-60.65762918597474, -15.37950073526504], [-60.65762918597474, -15.361534429582647], [-60.66661233881594, -15.361534429582647], [-60.66661233881594, -15.343568123900269], [-60.68457864449833, -15.343568123900269], [-60.68457864449833, -15.352551276741465], [-60.675595491657134, -15.352551276741465], [-60.675595491657134, -15.370517582423844], [-60.66661233881594, -15.370517582423844], [-60.66661233881594, -15.37950073526504], [-60.65762918597474, -15.37950073526504]], [[-60.621696574609956, -15.37950073526504], [-60.621696574609956, -15.370517582423844], [-60.63067972745115, -15.370517582423844], [-60.63067972745115, -15.37950073526504], [-60.621696574609956, -15.37950073526504]], [[-60.59474711608637, -15.37950073526504], [-60.59474711608637, -15.361534429582647], [-60.61271342176876, -15.361534429582647], [-60.61271342176876, -15.370517582423844], [-60.60373026892756, -15.370517582423844], [-60.60373026892756, -15.37950073526504], [-60.59474711608637, -15.37950073526504]], [[-60.711528103021905, -15.388483888106236], [-60.711528103021905, -15.37950073526504], [-60.7294944087043, -15.37950073526504], [-60.7294944087043, -15.370517582423844], [-60.70254495018071, -15.370517582423844], [-60.70254495018071, -15.37950073526504], [-60.69356179733953, -15.37950073526504], [-60.69356179733953, -15.361534429582647], [-60.70254495018071, -15.361534429582647], [-60.70254495018071, -15.352551276741465], [-60.711528103021905, -15.352551276741465], [-60.711528103021905, -15.343568123900269], [-60.7205112558631, -15.343568123900269], [-60.7205112558631, -15.325601818217876], [-60.70254495018071, -15.325601818217876], [-60.70254495018071, -15.343568123900269], [-60.69356179733953, -15.343568123900269], [-60.69356179733953, -15.334584971059073], [-60.65762918597474, -15.334584971059073], [-60.65762918597474, -15.343568123900269], [-60.648646033133545, -15.343568123900269], [-60.648646033133545, -15.307635512535484], [-60.65762918597474, -15.307635512535484], [-60.65762918597474, -15.31661866537668], [-60.66661233881594, -15.31661866537668], [-60.66661233881594, -15.325601818217876], [-60.675595491657134, -15.325601818217876], [-60.675595491657134, -15.31661866537668], [-60.69356179733953, -15.31661866537668], [-60.69356179733953, -15.307635512535484], [-60.70254495018071, -15.307635512535484], [-60.70254495018071, -15.280686054011895], [-60.711528103021905, -15.280686054011895], [-60.711528103021905, -15.289669206853091], [-60.7205112558631, -15.289669206853091], [-60.7205112558631, -15.307635512535484], [-60.711528103021905, -15.307635512535484], [-60.711528103021905, -15.31661866537668], [-60.7294944087043, -15.31661866537668], [-60.7294944087043, -15.361534429582647], [-60.738477561545494, -15.361534429582647], [-60.738477561545494, -15.388483888106236], [-60.711528103021905, -15.388483888106236]], [[-60.66661233881594, -15.388483888106236], [-60.66661233881594, -15.37950073526504], [-60.675595491657134, -15.37950073526504], [-60.675595491657134, -15.370517582423844], [-60.68457864449833, -15.370517582423844], [-60.68457864449833, -15.388483888106236], [-60.66661233881594, -15.388483888106236]], [[-60.63966288029235, -15.388483888106236], [-60.63966288029235, -15.37950073526504], [-60.65762918597474, -15.37950073526504], [-60.65762918597474, -15.388483888106236], [-60.63966288029235, -15.388483888106236]], [[-60.738477561545494, -15.397467040947433], [-60.738477561545494, -15.388483888106236], [-60.74746071438669, -15.388483888106236], [-60.74746071438669, -15.397467040947433], [-60.738477561545494, -15.397467040947433]], [[-60.74746071438669, -15.40645019378863], [-60.74746071438669, -15.397467040947433], [-60.75644386722789, -15.397467040947433], [-60.75644386722789, -15.40645019378863], [-60.74746071438669, -15.40645019378863]], [[-60.70254495018071, -15.40645019378863], [-60.70254495018071, -15.397467040947433], [-60.69356179733953, -15.397467040947433], [-60.69356179733953, -15.388483888106236], [-60.711528103021905, -15.388483888106236], [-60.711528103021905, -15.40645019378863], [-60.70254495018071, -15.40645019378863]], [[-60.68457864449833, -15.40645019378863], [-60.68457864449833, -15.397467040947433], [-60.69356179733953, -15.397467040947433], [-60.69356179733953, -15.40645019378863], [-60.68457864449833, -15.40645019378863]], [[-60.63067972745115, -15.40645019378863], [-60.63067972745115, -15.397467040947433], [-60.63966288029235, -15.397467040947433], [-60.63966288029235, -15.40645019378863], [-60.63067972745115, -15.40645019378863]], [[-60.56779765756279, -15.40645019378863], [-60.56779765756279, -15.397467040947433], [-60.57678081040399, -15.397467040947433], [-60.57678081040399, -15.40645019378863], [-60.56779765756279, -15.40645019378863]], [[-60.69356179733953, -15.415433346629825], [-60.69356179733953, -15.40645019378863], [-60.70254495018071, -15.40645019378863], [-60.70254495018071, -15.415433346629825], [-60.69356179733953, -15.415433346629825]], [[-60.57678081040399, -15.415433346629825], [-60.57678081040399, -15.40645019378863], [-60.585763963245185, -15.40645019378863], [-60.585763963245185, -15.415433346629825], [-60.57678081040399, -15.415433346629825]]]}, 'id': '+13278+10070', 'properties': {'count': 1694, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.621696574609956, -15.51424802788297], [-60.61271342176876, -15.51424802788297], [-60.61271342176876, -15.505264875041775], [-60.621696574609956, -15.505264875041775], [-60.621696574609956, -15.51424802788297]]]}, 'id': '+13278+10075', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.621696574609956, -15.577130097771345], [-60.61271342176876, -15.577130097771345], [-60.61271342176876, -15.568146944930149], [-60.621696574609956, -15.568146944930149], [-60.621696574609956, -15.577130097771345]]]}, 'id': '+13278+10082', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63067972745115, -15.622045861977313], [-60.61271342176876, -15.622045861977313], [-60.61271342176876, -15.613062709136116], [-60.63067972745115, -15.613062709136116], [-60.63067972745115, -15.622045861977313]]]}, 'id': '+13278+10087', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.621696574609956, -15.640012167659705], [-60.61271342176876, -15.640012167659705], [-60.61271342176876, -15.631029014818509], [-60.621696574609956, -15.631029014818509], [-60.621696574609956, -15.640012167659705]]]}, 'id': '+13278+10089', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.621696574609956, -15.657978473342098], [-60.61271342176876, -15.657978473342098], [-60.61271342176876, -15.648995320500902], [-60.621696574609956, -15.648995320500902], [-60.621696574609956, -15.657978473342098]]]}, 'id': '+13278+10091', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63067972745115, -15.729843696071654], [-60.61271342176876, -15.729843696071654], [-60.61271342176876, -15.702894237548065], [-60.63067972745115, -15.702894237548065], [-60.63067972745115, -15.693911084706883], [-60.63966288029235, -15.693911084706883], [-60.63966288029235, -15.702894237548065], [-60.648646033133545, -15.702894237548065], [-60.648646033133545, -15.666961626183294], [-60.63966288029235, -15.666961626183294], [-60.63966288029235, -15.684927931865687], [-60.63067972745115, -15.684927931865687], [-60.63067972745115, -15.67594477902449], [-60.621696574609956, -15.67594477902449], [-60.621696574609956, -15.684927931865687], [-60.61271342176876, -15.684927931865687], [-60.61271342176876, -15.67594477902449], [-60.59474711608637, -15.67594477902449], [-60.59474711608637, -15.666961626183294], [-60.57678081040399, -15.666961626183294], [-60.57678081040399, -15.657978473342098], [-60.648646033133545, -15.657978473342098], [-60.648646033133545, -15.648995320500902], [-60.65762918597474, -15.648995320500902], [-60.65762918597474, -15.657978473342098], [-60.66661233881594, -15.657978473342098], [-60.66661233881594, -15.666961626183294], [-60.65762918597474, -15.666961626183294], [-60.65762918597474, -15.684927931865687], [-60.66661233881594, -15.684927931865687], [-60.66661233881594, -15.693911084706883], [-60.65762918597474, -15.693911084706883], [-60.65762918597474, -15.702894237548065], [-60.68457864449833, -15.702894237548065], [-60.68457864449833, -15.720860543230458], [-60.675595491657134, -15.720860543230458], [-60.675595491657134, -15.729843696071654], [-60.63966288029235, -15.729843696071654], [-60.63966288029235, -15.720860543230458], [-60.63067972745115, -15.720860543230458], [-60.63067972745115, -15.729843696071654]], [[-60.648646033133545, -15.666961626183294], [-60.648646033133545, -15.657978473342098], [-60.65762918597474, -15.657978473342098], [-60.65762918597474, -15.666961626183294], [-60.648646033133545, -15.666961626183294]], [[-60.61271342176876, -15.67594477902449], [-60.61271342176876, -15.666961626183294], [-60.621696574609956, -15.666961626183294], [-60.621696574609956, -15.67594477902449], [-60.61271342176876, -15.67594477902449]]]}, 'id': '+13278+10099', 'properties': {'count': 44, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.621696574609956, -15.945439364260338], [-60.61271342176876, -15.945439364260338], [-60.61271342176876, -15.92747305857796], [-60.60373026892756, -15.92747305857796], [-60.60373026892756, -15.909506752895567], [-60.61271342176876, -15.909506752895567], [-60.61271342176876, -15.92747305857796], [-60.621696574609956, -15.92747305857796], [-60.621696574609956, -15.945439364260338]]]}, 'id': '+13278+10123', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.621696574609956, -16.0352708926723], [-60.61271342176876, -16.0352708926723], [-60.61271342176876, -16.01730458698991], [-60.621696574609956, -16.01730458698991], [-60.621696574609956, -16.0352708926723]]]}, 'id': '+13278+10133', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.63966288029235, -16.134085573925447], [-60.61271342176876, -16.134085573925447], [-60.61271342176876, -16.116119268243054], [-60.621696574609956, -16.116119268243054], [-60.621696574609956, -16.12510242108425], [-60.63067972745115, -16.12510242108425], [-60.63067972745115, -16.09815296256066], [-60.648646033133545, -16.09815296256066], [-60.648646033133545, -16.107136115401858], [-60.65762918597474, -16.107136115401858], [-60.65762918597474, -16.09815296256066], [-60.675595491657134, -16.09815296256066], [-60.675595491657134, -16.107136115401858], [-60.65762918597474, -16.107136115401858], [-60.65762918597474, -16.116119268243054], [-60.648646033133545, -16.116119268243054], [-60.648646033133545, -16.12510242108425], [-60.63966288029235, -16.12510242108425], [-60.63966288029235, -16.134085573925447]]]}, 'id': '+13278+10144', 'properties': {'count': 13, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.621696574609956, -16.143068726766643], [-60.61271342176876, -16.143068726766643], [-60.61271342176876, -16.134085573925447], [-60.621696574609956, -16.134085573925447], [-60.621696574609956, -16.143068726766643]]]}, 'id': '+13278+10145', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.621696574609956, -16.295782325066952], [-60.61271342176876, -16.295782325066952], [-60.61271342176876, -16.286799172225756], [-60.621696574609956, -16.286799172225756], [-60.621696574609956, -16.295782325066952]]]}, 'id': '+13278+10162', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.621696574609956, -16.619175827349977], [-60.61271342176876, -16.619175827349977], [-60.61271342176876, -16.610192674508795], [-60.621696574609956, -16.610192674508795], [-60.621696574609956, -16.619175827349977]]]}, 'id': '+13278+10198', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.621696574609956, -13.816432140897078], [-60.61271342176876, -13.816432140897078], [-60.61271342176876, -13.780499529532293], [-60.621696574609956, -13.780499529532293], [-60.621696574609956, -13.798465835214685], [-60.63067972745115, -13.798465835214685], [-60.63067972745115, -13.807448988055882], [-60.621696574609956, -13.807448988055882], [-60.621696574609956, -13.816432140897078]]]}, 'id': '+13278+9886', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.621696574609956, -13.978128892038598], [-60.61271342176876, -13.978128892038598], [-60.61271342176876, -13.969145739197401], [-60.621696574609956, -13.969145739197401], [-60.621696574609956, -13.978128892038598]]]}, 'id': '+13278+9904', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.61271342176876, -15.172888219917553], [-60.60373026892756, -15.172888219917553], [-60.60373026892756, -15.145938761393964], [-60.59474711608637, -15.145938761393964], [-60.59474711608637, -15.136955608552768], [-60.60373026892756, -15.136955608552768], [-60.60373026892756, -15.145938761393964], [-60.61271342176876, -15.145938761393964], [-60.61271342176876, -15.136955608552768], [-60.621696574609956, -15.136955608552768], [-60.621696574609956, -15.145938761393964], [-60.61271342176876, -15.145938761393964], [-60.61271342176876, -15.15492191423516], [-60.621696574609956, -15.15492191423516], [-60.621696574609956, -15.163905067076357], [-60.61271342176876, -15.163905067076357], [-60.61271342176876, -15.172888219917553]]]}, 'id': '+13279+10037', 'properties': {'count': 6, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.61271342176876, -15.478315416518186], [-60.60373026892756, -15.478315416518186], [-60.60373026892756, -15.469332263677003], [-60.61271342176876, -15.469332263677003], [-60.61271342176876, -15.478315416518186]]]}, 'id': '+13279+10071', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.61271342176876, -15.747810001754047], [-60.60373026892756, -15.747810001754047], [-60.60373026892756, -15.73882684891285], [-60.59474711608637, -15.73882684891285], [-60.59474711608637, -15.729843696071654], [-60.60373026892756, -15.729843696071654], [-60.60373026892756, -15.73882684891285], [-60.61271342176876, -15.73882684891285], [-60.61271342176876, -15.747810001754047]]]}, 'id': '+13279+10101', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.61271342176876, -16.008321434148712], [-60.60373026892756, -16.008321434148712], [-60.60373026892756, -15.999338281307516], [-60.59474711608637, -15.999338281307516], [-60.59474711608637, -15.99035512846632], [-60.60373026892756, -15.99035512846632], [-60.60373026892756, -15.999338281307516], [-60.61271342176876, -15.999338281307516], [-60.61271342176876, -16.008321434148712]]]}, 'id': '+13279+10130', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.61271342176876, -16.071203504037072], [-60.60373026892756, -16.071203504037072], [-60.60373026892756, -16.062220351195876], [-60.61271342176876, -16.062220351195876], [-60.61271342176876, -16.071203504037072]]]}, 'id': '+13279+10137', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.61271342176876, -16.24188340801979], [-60.60373026892756, -16.24188340801979], [-60.60373026892756, -16.232900255178592], [-60.61271342176876, -16.232900255178592], [-60.61271342176876, -16.24188340801979]]]}, 'id': '+13279+10156', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -15.047124080140819], [-60.59474711608637, -15.047124080140819], [-60.59474711608637, -15.038140927299622], [-60.60373026892756, -15.038140927299622], [-60.60373026892756, -15.047124080140819]]]}, 'id': '+13280+10023', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -15.056107232982015], [-60.59474711608637, -15.056107232982015], [-60.59474711608637, -15.047124080140819], [-60.60373026892756, -15.047124080140819], [-60.60373026892756, -15.056107232982015]]]}, 'id': '+13280+10024', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -15.065090385823211], [-60.59474711608637, -15.065090385823211], [-60.59474711608637, -15.056107232982015], [-60.60373026892756, -15.056107232982015], [-60.60373026892756, -15.065090385823211]]]}, 'id': '+13280+10025', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -15.37950073526504], [-60.59474711608637, -15.37950073526504], [-60.59474711608637, -15.370517582423844], [-60.60373026892756, -15.370517582423844], [-60.60373026892756, -15.37950073526504]]]}, 'id': '+13280+10060', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -15.460349110835807], [-60.59474711608637, -15.460349110835807], [-60.59474711608637, -15.45136595799461], [-60.60373026892756, -15.45136595799461], [-60.60373026892756, -15.460349110835807]]]}, 'id': '+13280+10069', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -15.657978473342098], [-60.59474711608637, -15.657978473342098], [-60.59474711608637, -15.648995320500902], [-60.60373026892756, -15.648995320500902], [-60.60373026892756, -15.657978473342098]]]}, 'id': '+13280+10091', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -15.774759460277636], [-60.59474711608637, -15.774759460277636], [-60.59474711608637, -15.756793154595243], [-60.585763963245185, -15.756793154595243], [-60.585763963245185, -15.747810001754047], [-60.59474711608637, -15.747810001754047], [-60.59474711608637, -15.756793154595243], [-60.60373026892756, -15.756793154595243], [-60.60373026892756, -15.774759460277636]]]}, 'id': '+13280+10104', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -15.846624683007192], [-60.59474711608637, -15.846624683007192], [-60.59474711608637, -15.837641530165996], [-60.60373026892756, -15.837641530165996], [-60.60373026892756, -15.8286583773248], [-60.621696574609956, -15.8286583773248], [-60.621696574609956, -15.837641530165996], [-60.60373026892756, -15.837641530165996], [-60.60373026892756, -15.846624683007192]]]}, 'id': '+13280+10112', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -15.96340566994273], [-60.59474711608637, -15.96340566994273], [-60.59474711608637, -15.954422517101534], [-60.60373026892756, -15.954422517101534], [-60.60373026892756, -15.96340566994273]]]}, 'id': '+13280+10125', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -16.2149339494962], [-60.59474711608637, -16.2149339494962], [-60.59474711608637, -16.205950796655003], [-60.585763963245185, -16.205950796655003], [-60.585763963245185, -16.196967643813807], [-60.59474711608637, -16.196967643813807], [-60.59474711608637, -16.205950796655003], [-60.60373026892756, -16.205950796655003], [-60.60373026892756, -16.18798449097261], [-60.61271342176876, -16.18798449097261], [-60.61271342176876, -16.205950796655003], [-60.60373026892756, -16.205950796655003], [-60.60373026892756, -16.2149339494962]]]}, 'id': '+13280+10153', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -16.57426006314401], [-60.59474711608637, -16.57426006314401], [-60.59474711608637, -16.556293757461617], [-60.60373026892756, -16.556293757461617], [-60.60373026892756, -16.57426006314401]]]}, 'id': '+13280+10193', 'properties': {'count': 2, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -16.63714213303237], [-60.59474711608637, -16.63714213303237], [-60.59474711608637, -16.628158980191174], [-60.60373026892756, -16.628158980191174], [-60.60373026892756, -16.63714213303237]]]}, 'id': '+13280+10200', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -13.753550071008718], [-60.59474711608637, -13.753550071008718], [-60.59474711608637, -13.744566918167521], [-60.60373026892756, -13.744566918167521], [-60.60373026892756, -13.753550071008718]]]}, 'id': '+13280+9879', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -13.771516376691096], [-60.59474711608637, -13.771516376691096], [-60.59474711608637, -13.7625332238499], [-60.60373026892756, -13.7625332238499], [-60.60373026892756, -13.771516376691096]]]}, 'id': '+13280+9881', 'properties': {'count': 1, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -13.780499529532293], [-60.59474711608637, -13.780499529532293], [-60.59474711608637, -13.771516376691096], [-60.60373026892756, -13.771516376691096], [-60.60373026892756, -13.780499529532293]]]}, 'id': '+13280+9882', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -14.79559580058735], [-60.59474711608637, -14.79559580058735], [-60.59474711608637, -14.786612647746153], [-60.60373026892756, -14.786612647746153], [-60.60373026892756, -14.79559580058735]]]}, 'id': '+13280+9995', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.59474711608637, -15.101022997187997], [-60.585763963245185, -15.101022997187997], [-60.585763963245185, -15.0920398443468], [-60.59474711608637, -15.0920398443468], [-60.59474711608637, -15.101022997187997]]]}, 'id': '+13281+10029', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.59474711608637, -15.110006150029193], [-60.585763963245185, -15.110006150029193], [-60.585763963245185, -15.101022997187997], [-60.59474711608637, -15.101022997187997], [-60.59474711608637, -15.110006150029193]]]}, 'id': '+13281+10030', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -15.478315416518186], [-60.585763963245185, -15.478315416518186], [-60.585763963245185, -15.469332263677003], [-60.57678081040399, -15.469332263677003], [-60.57678081040399, -15.45136595799461], [-60.558814504721596, -15.45136595799461], [-60.558814504721596, -15.442382805153414], [-60.57678081040399, -15.442382805153414], [-60.57678081040399, -15.45136595799461], [-60.585763963245185, -15.45136595799461], [-60.585763963245185, -15.469332263677003], [-60.60373026892756, -15.469332263677003], [-60.60373026892756, -15.478315416518186]]]}, 'id': '+13281+10071', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.59474711608637, -15.586113250612527], [-60.585763963245185, -15.586113250612527], [-60.585763963245185, -15.568146944930149], [-60.59474711608637, -15.568146944930149], [-60.59474711608637, -15.586113250612527]]]}, 'id': '+13281+10083', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.59474711608637, -15.783742613118832], [-60.585763963245185, -15.783742613118832], [-60.585763963245185, -15.76577630743644], [-60.57678081040399, -15.76577630743644], [-60.57678081040399, -15.756793154595243], [-60.59474711608637, -15.756793154595243], [-60.59474711608637, -15.783742613118832]]]}, 'id': '+13281+10105', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.59474711608637, -15.819675224483603], [-60.585763963245185, -15.819675224483603], [-60.585763963245185, -15.810692071642421], [-60.59474711608637, -15.810692071642421], [-60.59474711608637, -15.819675224483603]]]}, 'id': '+13281+10109', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.59474711608637, -16.044254045513483], [-60.585763963245185, -16.044254045513483], [-60.585763963245185, -16.0352708926723], [-60.57678081040399, -16.0352708926723], [-60.57678081040399, -16.026287739831105], [-60.585763963245185, -16.026287739831105], [-60.585763963245185, -16.0352708926723], [-60.59474711608637, -16.0352708926723], [-60.59474711608637, -16.044254045513483]]]}, 'id': '+13281+10134', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.59474711608637, -16.09815296256066], [-60.585763963245185, -16.09815296256066], [-60.585763963245185, -16.089169809719465], [-60.59474711608637, -16.089169809719465], [-60.59474711608637, -16.08018665687827], [-60.60373026892756, -16.08018665687827], [-60.60373026892756, -16.089169809719465], [-60.59474711608637, -16.089169809719465], [-60.59474711608637, -16.09815296256066]]]}, 'id': '+13281+10140', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.59474711608637, -16.2149339494962], [-60.585763963245185, -16.2149339494962], [-60.585763963245185, -16.205950796655003], [-60.57678081040399, -16.205950796655003], [-60.57678081040399, -16.196967643813807], [-60.585763963245185, -16.196967643813807], [-60.585763963245185, -16.205950796655003], [-60.59474711608637, -16.205950796655003], [-60.59474711608637, -16.2149339494962]]]}, 'id': '+13281+10153', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.59474711608637, -16.223917102337396], [-60.585763963245185, -16.223917102337396], [-60.585763963245185, -16.2149339494962], [-60.59474711608637, -16.2149339494962], [-60.59474711608637, -16.223917102337396]]]}, 'id': '+13281+10154', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.59474711608637, -16.32273178359054], [-60.585763963245185, -16.32273178359054], [-60.585763963245185, -16.313748630749345], [-60.59474711608637, -16.313748630749345], [-60.59474711608637, -16.32273178359054]]]}, 'id': '+13281+10165', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.59474711608637, -16.529344298938028], [-60.585763963245185, -16.529344298938028], [-60.585763963245185, -16.520361146096832], [-60.59474711608637, -16.520361146096832], [-60.59474711608637, -16.529344298938028]]]}, 'id': '+13281+10188', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.59474711608637, -16.556293757461617], [-60.585763963245185, -16.556293757461617], [-60.585763963245185, -16.538327451779224], [-60.59474711608637, -16.538327451779224], [-60.59474711608637, -16.529344298938028], [-60.61271342176876, -16.529344298938028], [-60.61271342176876, -16.538327451779224], [-60.59474711608637, -16.538327451779224], [-60.59474711608637, -16.556293757461617]]]}, 'id': '+13281+10191', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.60373026892756, -13.825415293738274], [-60.585763963245185, -13.825415293738274], [-60.585763963245185, -13.816432140897078], [-60.60373026892756, -13.816432140897078], [-60.60373026892756, -13.825415293738274]]]}, 'id': '+13281+9887', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.59474711608637, -13.888297363626634], [-60.585763963245185, -13.888297363626634], [-60.585763963245185, -13.879314210785438], [-60.59474711608637, -13.879314210785438], [-60.59474711608637, -13.888297363626634]]]}, 'id': '+13281+9894', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.59474711608637, -13.951179433515009], [-60.585763963245185, -13.951179433515009], [-60.585763963245185, -13.942196280673812], [-60.57678081040399, -13.942196280673812], [-60.57678081040399, -13.92422997499142], [-60.59474711608637, -13.92422997499142], [-60.59474711608637, -13.933213127832616], [-60.585763963245185, -13.933213127832616], [-60.585763963245185, -13.942196280673812], [-60.59474711608637, -13.942196280673812], [-60.59474711608637, -13.951179433515009]]]}, 'id': '+13281+9901', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.59474711608637, -13.98711204487978], [-60.585763963245185, -13.98711204487978], [-60.585763963245185, -13.978128892038598], [-60.59474711608637, -13.978128892038598], [-60.59474711608637, -13.969145739197401], [-60.61271342176876, -13.969145739197401], [-60.61271342176876, -13.98711204487978], [-60.60373026892756, -13.98711204487978], [-60.60373026892756, -13.978128892038598], [-60.59474711608637, -13.978128892038598], [-60.59474711608637, -13.98711204487978]]]}, 'id': '+13281+9905', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -15.065090385823211], [-60.57678081040399, -15.065090385823211], [-60.57678081040399, -15.056107232982015], [-60.56779765756279, -15.056107232982015], [-60.56779765756279, -15.047124080140819], [-60.57678081040399, -15.047124080140819], [-60.57678081040399, -15.056107232982015], [-60.585763963245185, -15.056107232982015], [-60.585763963245185, -15.065090385823211]]]}, 'id': '+13282+10025', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -15.083056691505604], [-60.57678081040399, -15.083056691505604], [-60.57678081040399, -15.074073538664408], [-60.585763963245185, -15.074073538664408], [-60.585763963245185, -15.083056691505604]]]}, 'id': '+13282+10027', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -15.15492191423516], [-60.57678081040399, -15.15492191423516], [-60.57678081040399, -15.145938761393964], [-60.56779765756279, -15.145938761393964], [-60.56779765756279, -15.136955608552768], [-60.57678081040399, -15.136955608552768], [-60.57678081040399, -15.145938761393964], [-60.585763963245185, -15.145938761393964], [-60.585763963245185, -15.15492191423516]]]}, 'id': '+13282+10035', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -15.54119748640656], [-60.57678081040399, -15.54119748640656], [-60.57678081040399, -15.532214333565364], [-60.558814504721596, -15.532214333565364], [-60.558814504721596, -15.523231180724167], [-60.57678081040399, -15.523231180724167], [-60.57678081040399, -15.532214333565364], [-60.585763963245185, -15.532214333565364], [-60.585763963245185, -15.54119748640656]]]}, 'id': '+13282+10078', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.59474711608637, -15.693911084706883], [-60.57678081040399, -15.693911084706883], [-60.57678081040399, -15.67594477902449], [-60.585763963245185, -15.67594477902449], [-60.585763963245185, -15.684927931865687], [-60.59474711608637, -15.684927931865687], [-60.59474711608637, -15.693911084706883]]]}, 'id': '+13282+10095', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -15.711877390389262], [-60.57678081040399, -15.711877390389262], [-60.57678081040399, -15.702894237548065], [-60.585763963245185, -15.702894237548065], [-60.585763963245185, -15.711877390389262]]]}, 'id': '+13282+10097', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -15.783742613118832], [-60.57678081040399, -15.783742613118832], [-60.57678081040399, -15.774759460277636], [-60.585763963245185, -15.774759460277636], [-60.585763963245185, -15.783742613118832]]]}, 'id': '+13282+10105', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -16.044254045513483], [-60.57678081040399, -16.044254045513483], [-60.57678081040399, -16.0352708926723], [-60.558814504721596, -16.0352708926723], [-60.558814504721596, -16.01730458698991], [-60.56779765756279, -16.01730458698991], [-60.56779765756279, -16.026287739831105], [-60.57678081040399, -16.026287739831105], [-60.57678081040399, -16.008321434148712], [-60.585763963245185, -16.008321434148712], [-60.585763963245185, -15.999338281307516], [-60.59474711608637, -15.999338281307516], [-60.59474711608637, -16.008321434148712], [-60.585763963245185, -16.008321434148712], [-60.585763963245185, -16.01730458698991], [-60.61271342176876, -16.01730458698991], [-60.61271342176876, -16.008321434148712], [-60.63067972745115, -16.008321434148712], [-60.63067972745115, -16.01730458698991], [-60.61271342176876, -16.01730458698991], [-60.61271342176876, -16.0352708926723], [-60.621696574609956, -16.0352708926723], [-60.621696574609956, -16.044254045513483], [-60.60373026892756, -16.044254045513483], [-60.60373026892756, -16.0352708926723], [-60.59474711608637, -16.0352708926723], [-60.59474711608637, -16.026287739831105], [-60.57678081040399, -16.026287739831105], [-60.57678081040399, -16.0352708926723], [-60.585763963245185, -16.0352708926723], [-60.585763963245185, -16.044254045513483]]]}, 'id': '+13282+10134', 'properties': {'count': 16, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -16.08018665687827], [-60.57678081040399, -16.08018665687827], [-60.57678081040399, -16.071203504037072], [-60.585763963245185, -16.071203504037072], [-60.585763963245185, -16.062220351195876], [-60.59474711608637, -16.062220351195876], [-60.59474711608637, -16.071203504037072], [-60.585763963245185, -16.071203504037072], [-60.585763963245185, -16.08018665687827]]]}, 'id': '+13282+10138', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -16.15205187960784], [-60.57678081040399, -16.15205187960784], [-60.57678081040399, -16.143068726766643], [-60.585763963245185, -16.143068726766643], [-60.585763963245185, -16.15205187960784]]]}, 'id': '+13282+10146', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -16.179001338131414], [-60.57678081040399, -16.179001338131414], [-60.57678081040399, -16.170018185290218], [-60.585763963245185, -16.170018185290218], [-60.585763963245185, -16.179001338131414]]]}, 'id': '+13282+10149', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -16.24188340801979], [-60.57678081040399, -16.24188340801979], [-60.57678081040399, -16.232900255178592], [-60.585763963245185, -16.232900255178592], [-60.585763963245185, -16.24188340801979]]]}, 'id': '+13282+10156', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -16.583243215985206], [-60.57678081040399, -16.583243215985206], [-60.57678081040399, -16.57426006314401], [-60.585763963245185, -16.57426006314401], [-60.585763963245185, -16.583243215985206]]]}, 'id': '+13282+10194', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -16.628158980191174], [-60.57678081040399, -16.628158980191174], [-60.57678081040399, -16.619175827349977], [-60.558814504721596, -16.619175827349977], [-60.558814504721596, -16.592226368826402], [-60.50491558767442, -16.592226368826402], [-60.50491558767442, -16.583243215985206], [-60.52288189335681, -16.583243215985206], [-60.52288189335681, -16.57426006314401], [-60.53186504619801, -16.57426006314401], [-60.53186504619801, -16.583243215985206], [-60.5408481990392, -16.583243215985206], [-60.5408481990392, -16.57426006314401], [-60.5498313518804, -16.57426006314401], [-60.5498313518804, -16.556293757461617], [-60.57678081040399, -16.556293757461617], [-60.57678081040399, -16.57426006314401], [-60.56779765756279, -16.57426006314401], [-60.56779765756279, -16.583243215985206], [-60.585763963245185, -16.583243215985206], [-60.585763963245185, -16.592226368826402], [-60.59474711608637, -16.592226368826402], [-60.59474711608637, -16.610192674508795], [-60.60373026892756, -16.610192674508795], [-60.60373026892756, -16.619175827349977], [-60.585763963245185, -16.619175827349977], [-60.585763963245185, -16.628158980191174]]]}, 'id': '+13282+10199', 'properties': {'count': 33, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -13.915246822150223], [-60.57678081040399, -13.915246822150223], [-60.57678081040399, -13.89728051646783], [-60.585763963245185, -13.89728051646783], [-60.585763963245185, -13.915246822150223]]]}, 'id': '+13282+9897', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.57678081040399, -15.065090385823211], [-60.56779765756279, -15.065090385823211], [-60.56779765756279, -15.056107232982015], [-60.57678081040399, -15.056107232982015], [-60.57678081040399, -15.065090385823211]]]}, 'id': '+13283+10025', 'properties': {'count': 1, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.57678081040399, -15.074073538664408], [-60.56779765756279, -15.074073538664408], [-60.56779765756279, -15.065090385823211], [-60.558814504721596, -15.065090385823211], [-60.558814504721596, -15.047124080140819], [-60.56779765756279, -15.047124080140819], [-60.56779765756279, -15.038140927299622], [-60.585763963245185, -15.038140927299622], [-60.585763963245185, -15.002208315934851], [-60.59474711608637, -15.002208315934851], [-60.59474711608637, -14.993225163093655], [-60.61271342176876, -14.993225163093655], [-60.61271342176876, -14.984242010252458], [-60.621696574609956, -14.984242010252458], [-60.621696574609956, -14.975258857411262], [-60.63067972745115, -14.975258857411262], [-60.63067972745115, -14.966275704570066], [-60.63966288029235, -14.966275704570066], [-60.63966288029235, -14.948309398887673], [-60.648646033133545, -14.948309398887673], [-60.648646033133545, -14.939326246046477], [-60.66661233881594, -14.939326246046477], [-60.66661233881594, -14.948309398887673], [-60.68457864449833, -14.948309398887673], [-60.68457864449833, -14.93034309320528], [-60.675595491657134, -14.93034309320528], [-60.675595491657134, -14.921359940364084], [-60.68457864449833, -14.921359940364084], [-60.68457864449833, -14.912376787522888], [-60.70254495018071, -14.912376787522888], [-60.70254495018071, -14.89441048184051], [-60.711528103021905, -14.89441048184051], [-60.711528103021905, -14.885427328999313], [-60.7205112558631, -14.885427328999313], [-60.7205112558631, -14.876444176158117], [-60.7294944087043, -14.876444176158117], [-60.7294944087043, -14.86746102331692], [-60.738477561545494, -14.86746102331692], [-60.738477561545494, -14.849494717634528], [-60.74746071438669, -14.849494717634528], [-60.74746071438669, -14.840511564793331], [-60.76542702006908, -14.840511564793331], [-60.76542702006908, -14.831528411952135], [-60.77441017291028, -14.831528411952135], [-60.77441017291028, -14.822545259110939], [-60.783393325751476, -14.822545259110939], [-60.783393325751476, -14.813562106269742], [-60.79237647859267, -14.813562106269742], [-60.79237647859267, -14.804578953428546], [-60.80135963143387, -14.804578953428546], [-60.80135963143387, -14.79559580058735], [-60.79237647859267, -14.79559580058735], [-60.79237647859267, -14.786612647746153], [-60.810342784275065, -14.786612647746153], [-60.810342784275065, -14.768646342063775], [-60.81932593711625, -14.768646342063775], [-60.81932593711625, -14.741696883540186], [-60.82830908995744, -14.741696883540186], [-60.82830908995744, -14.759663189222579], [-60.83729224279864, -14.759663189222579], [-60.83729224279864, -14.777629494904971], [-60.85525854848103, -14.777629494904971], [-60.85525854848103, -14.768646342063775], [-60.846275395639836, -14.768646342063775], [-60.846275395639836, -14.759663189222579], [-60.85525854848103, -14.759663189222579], [-60.85525854848103, -14.768646342063775], [-60.86424170132223, -14.768646342063775], [-60.86424170132223, -14.759663189222579], [-60.873224854163425, -14.759663189222579], [-60.873224854163425, -14.723730577857793], [-60.88220800700462, -14.723730577857793], [-60.88220800700462, -14.714747425016597], [-60.873224854163425, -14.714747425016597], [-60.873224854163425, -14.7057642721754], [-60.89119115984582, -14.7057642721754], [-60.89119115984582, -14.714747425016597], [-60.90915746552821, -14.714747425016597], [-60.90915746552821, -14.723730577857793], [-60.9271237712106, -14.723730577857793], [-60.9271237712106, -14.73271373069899], [-60.936106924051785, -14.73271373069899], [-60.936106924051785, -14.750680036381382], [-60.94509007689298, -14.750680036381382], [-60.94509007689298, -14.759663189222579], [-60.97203953541657, -14.759663189222579], [-60.97203953541657, -14.768646342063775], [-60.98102268825777, -14.768646342063775], [-60.98102268825777, -14.777629494904971], [-61.007972146781356, -14.777629494904971], [-61.007972146781356, -14.786612647746153], [-60.963056382575374, -14.786612647746153], [-60.963056382575374, -14.79559580058735], [-60.97203953541657, -14.79559580058735], [-60.97203953541657, -14.804578953428546], [-60.963056382575374, -14.804578953428546], [-60.963056382575374, -14.79559580058735], [-60.936106924051785, -14.79559580058735], [-60.936106924051785, -14.804578953428546], [-60.9271237712106, -14.804578953428546], [-60.9271237712106, -14.822545259110939], [-60.90915746552821, -14.822545259110939], [-60.90915746552821, -14.840511564793331], [-60.900174312687014, -14.840511564793331], [-60.900174312687014, -14.849494717634528], [-60.90915746552821, -14.849494717634528], [-60.90915746552821, -14.858477870475724], [-60.91814061836941, -14.858477870475724], [-60.91814061836941, -14.876444176158117], [-60.9271237712106, -14.876444176158117], [-60.9271237712106, -14.89441048184051], [-60.91814061836941, -14.89441048184051], [-60.91814061836941, -14.885427328999313], [-60.90915746552821, -14.885427328999313], [-60.90915746552821, -14.921359940364084], [-60.9271237712106, -14.921359940364084], [-60.9271237712106, -14.93034309320528], [-60.936106924051785, -14.93034309320528], [-60.936106924051785, -14.948309398887673], [-60.94509007689298, -14.948309398887673], [-60.94509007689298, -14.95729255172887], [-60.9271237712106, -14.95729255172887], [-60.9271237712106, -14.93034309320528], [-60.90915746552821, -14.93034309320528], [-60.90915746552821, -14.921359940364084], [-60.900174312687014, -14.921359940364084], [-60.900174312687014, -14.885427328999313], [-60.873224854163425, -14.885427328999313], [-60.873224854163425, -14.876444176158117], [-60.86424170132223, -14.876444176158117], [-60.86424170132223, -14.86746102331692], [-60.873224854163425, -14.86746102331692], [-60.873224854163425, -14.858477870475724], [-60.88220800700462, -14.858477870475724], [-60.88220800700462, -14.849494717634528], [-60.89119115984582, -14.849494717634528], [-60.89119115984582, -14.831528411952135], [-60.88220800700462, -14.831528411952135], [-60.88220800700462, -14.822545259110939], [-60.89119115984582, -14.822545259110939], [-60.89119115984582, -14.813562106269742], [-60.900174312687014, -14.813562106269742], [-60.900174312687014, -14.804578953428546], [-60.90915746552821, -14.804578953428546], [-60.90915746552821, -14.79559580058735], [-60.936106924051785, -14.79559580058735], [-60.936106924051785, -14.777629494904971], [-60.9271237712106, -14.777629494904971], [-60.9271237712106, -14.768646342063775], [-60.936106924051785, -14.768646342063775], [-60.936106924051785, -14.750680036381382], [-60.9271237712106, -14.750680036381382], [-60.9271237712106, -14.759663189222579], [-60.89119115984582, -14.759663189222579], [-60.89119115984582, -14.768646342063775], [-60.88220800700462, -14.768646342063775], [-60.88220800700462, -14.759663189222579], [-60.873224854163425, -14.759663189222579], [-60.873224854163425, -14.777629494904971], [-60.88220800700462, -14.777629494904971], [-60.88220800700462, -14.786612647746153], [-60.873224854163425, -14.786612647746153], [-60.873224854163425, -14.79559580058735], [-60.85525854848103, -14.79559580058735], [-60.85525854848103, -14.822545259110939], [-60.846275395639836, -14.822545259110939], [-60.846275395639836, -14.813562106269742], [-60.83729224279864, -14.813562106269742], [-60.83729224279864, -14.822545259110939], [-60.82830908995744, -14.822545259110939], [-60.82830908995744, -14.840511564793331], [-60.81932593711625, -14.840511564793331], [-60.81932593711625, -14.831528411952135], [-60.810342784275065, -14.831528411952135], [-60.810342784275065, -14.822545259110939], [-60.80135963143387, -14.822545259110939], [-60.80135963143387, -14.831528411952135], [-60.79237647859267, -14.831528411952135], [-60.79237647859267, -14.822545259110939], [-60.783393325751476, -14.822545259110939], [-60.783393325751476, -14.840511564793331], [-60.79237647859267, -14.840511564793331], [-60.79237647859267, -14.849494717634528], [-60.783393325751476, -14.849494717634528], [-60.783393325751476, -14.858477870475724], [-60.75644386722789, -14.858477870475724], [-60.75644386722789, -14.885427328999313], [-60.74746071438669, -14.885427328999313], [-60.74746071438669, -14.89441048184051], [-60.76542702006908, -14.89441048184051], [-60.76542702006908, -14.903393634681692], [-60.75644386722789, -14.903393634681692], [-60.75644386722789, -14.921359940364084], [-60.76542702006908, -14.921359940364084], [-60.76542702006908, -14.93034309320528], [-60.77441017291028, -14.93034309320528], [-60.77441017291028, -14.939326246046477], [-60.76542702006908, -14.939326246046477], [-60.76542702006908, -14.93034309320528], [-60.75644386722789, -14.93034309320528], [-60.75644386722789, -14.921359940364084], [-60.74746071438669, -14.921359940364084], [-60.74746071438669, -14.912376787522888], [-60.7294944087043, -14.912376787522888], [-60.7294944087043, -14.903393634681692], [-60.7205112558631, -14.903393634681692], [-60.7205112558631, -14.921359940364084], [-60.711528103021905, -14.921359940364084], [-60.711528103021905, -14.93034309320528], [-60.7294944087043, -14.93034309320528], [-60.7294944087043, -14.948309398887673], [-60.738477561545494, -14.948309398887673], [-60.738477561545494, -14.95729255172887], [-60.74746071438669, -14.95729255172887], [-60.74746071438669, -14.966275704570066], [-60.738477561545494, -14.966275704570066], [-60.738477561545494, -14.95729255172887], [-60.711528103021905, -14.95729255172887], [-60.711528103021905, -14.948309398887673], [-60.70254495018071, -14.948309398887673], [-60.70254495018071, -14.93034309320528], [-60.69356179733953, -14.93034309320528], [-60.69356179733953, -14.95729255172887], [-60.675595491657134, -14.95729255172887], [-60.675595491657134, -14.966275704570066], [-60.66661233881594, -14.966275704570066], [-60.66661233881594, -14.95729255172887], [-60.65762918597474, -14.95729255172887], [-60.65762918597474, -14.984242010252458], [-60.63067972745115, -14.984242010252458], [-60.63067972745115, -14.993225163093655], [-60.63966288029235, -14.993225163093655], [-60.63966288029235, -15.002208315934851], [-60.63067972745115, -15.002208315934851], [-60.63067972745115, -15.011191468776047], [-60.63966288029235, -15.011191468776047], [-60.63966288029235, -15.02017462161723], [-60.621696574609956, -15.02017462161723], [-60.621696574609956, -15.038140927299622], [-60.585763963245185, -15.038140927299622], [-60.585763963245185, -15.056107232982015], [-60.57678081040399, -15.056107232982015], [-60.57678081040399, -15.047124080140819], [-60.56779765756279, -15.047124080140819], [-60.56779765756279, -15.065090385823211], [-60.57678081040399, -15.065090385823211], [-60.57678081040399, -15.074073538664408]], [[-60.89119115984582, -14.73271373069899], [-60.89119115984582, -14.723730577857793], [-60.900174312687014, -14.723730577857793], [-60.900174312687014, -14.73271373069899], [-60.89119115984582, -14.73271373069899]], [[-60.88220800700462, -14.759663189222579], [-60.88220800700462, -14.73271373069899], [-60.89119115984582, -14.73271373069899], [-60.89119115984582, -14.741696883540186], [-60.900174312687014, -14.741696883540186], [-60.900174312687014, -14.750680036381382], [-60.89119115984582, -14.750680036381382], [-60.89119115984582, -14.759663189222579], [-60.88220800700462, -14.759663189222579]], [[-60.936106924051785, -14.777629494904971], [-60.936106924051785, -14.768646342063775], [-60.94509007689298, -14.768646342063775], [-60.94509007689298, -14.777629494904971], [-60.936106924051785, -14.777629494904971]], [[-60.86424170132223, -14.786612647746153], [-60.86424170132223, -14.777629494904971], [-60.873224854163425, -14.777629494904971], [-60.873224854163425, -14.786612647746153], [-60.86424170132223, -14.786612647746153]], [[-60.89119115984582, -14.831528411952135], [-60.89119115984582, -14.822545259110939], [-60.900174312687014, -14.822545259110939], [-60.900174312687014, -14.831528411952135], [-60.89119115984582, -14.831528411952135]], [[-60.7294944087043, -14.903393634681692], [-60.7294944087043, -14.885427328999313], [-60.738477561545494, -14.885427328999313], [-60.738477561545494, -14.903393634681692], [-60.7294944087043, -14.903393634681692]], [[-60.711528103021905, -14.903393634681692], [-60.711528103021905, -14.89441048184051], [-60.7205112558631, -14.89441048184051], [-60.7205112558631, -14.903393634681692], [-60.711528103021905, -14.903393634681692]], [[-60.68457864449833, -14.93034309320528], [-60.68457864449833, -14.921359940364084], [-60.69356179733953, -14.921359940364084], [-60.69356179733953, -14.93034309320528], [-60.68457864449833, -14.93034309320528]]]}, 'id': '+13283+10026', 'properties': {'count': 253, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.57678081040399, -15.083056691505604], [-60.56779765756279, -15.083056691505604], [-60.56779765756279, -15.074073538664408], [-60.57678081040399, -15.074073538664408], [-60.57678081040399, -15.083056691505604]]]}, 'id': '+13283+10027', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.57678081040399, -15.11898930287039], [-60.56779765756279, -15.11898930287039], [-60.56779765756279, -15.110006150029193], [-60.57678081040399, -15.110006150029193], [-60.57678081040399, -15.11898930287039]]]}, 'id': '+13283+10031', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.57678081040399, -15.756793154595243], [-60.56779765756279, -15.756793154595243], [-60.56779765756279, -15.747810001754047], [-60.57678081040399, -15.747810001754047], [-60.57678081040399, -15.756793154595243]]]}, 'id': '+13283+10102', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.57678081040399, -15.774759460277636], [-60.56779765756279, -15.774759460277636], [-60.56779765756279, -15.76577630743644], [-60.57678081040399, -15.76577630743644], [-60.57678081040399, -15.774759460277636]]]}, 'id': '+13283+10104', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.57678081040399, -15.92747305857796], [-60.56779765756279, -15.92747305857796], [-60.56779765756279, -15.909506752895567], [-60.585763963245185, -15.909506752895567], [-60.585763963245185, -15.918489905736763], [-60.57678081040399, -15.918489905736763], [-60.57678081040399, -15.92747305857796]]]}, 'id': '+13283+10121', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.57678081040399, -15.954422517101534], [-60.56779765756279, -15.954422517101534], [-60.56779765756279, -15.936456211419141], [-60.57678081040399, -15.936456211419141], [-60.57678081040399, -15.954422517101534]]]}, 'id': '+13283+10124', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.57678081040399, -16.116119268243054], [-60.56779765756279, -16.116119268243054], [-60.56779765756279, -16.107136115401858], [-60.57678081040399, -16.107136115401858], [-60.57678081040399, -16.09815296256066], [-60.585763963245185, -16.09815296256066], [-60.585763963245185, -16.107136115401858], [-60.59474711608637, -16.107136115401858], [-60.59474711608637, -16.116119268243054], [-60.585763963245185, -16.116119268243054], [-60.585763963245185, -16.107136115401858], [-60.57678081040399, -16.107136115401858], [-60.57678081040399, -16.116119268243054]]]}, 'id': '+13283+10142', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -16.134085573925447], [-60.56779765756279, -16.134085573925447], [-60.56779765756279, -16.12510242108425], [-60.585763963245185, -16.12510242108425], [-60.585763963245185, -16.134085573925447]]]}, 'id': '+13283+10144', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.57678081040399, -16.313748630749345], [-60.56779765756279, -16.313748630749345], [-60.56779765756279, -16.30476547790815], [-60.57678081040399, -16.30476547790815], [-60.57678081040399, -16.313748630749345]]]}, 'id': '+13283+10164', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -16.54731060462042], [-60.56779765756279, -16.54731060462042], [-60.56779765756279, -16.538327451779224], [-60.585763963245185, -16.538327451779224], [-60.585763963245185, -16.54731060462042]]]}, 'id': '+13283+10190', 'properties': {'count': 2, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.57678081040399, -16.556293757461617], [-60.56779765756279, -16.556293757461617], [-60.56779765756279, -16.54731060462042], [-60.57678081040399, -16.54731060462042], [-60.57678081040399, -16.556293757461617]]]}, 'id': '+13283+10191', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.57678081040399, -13.825415293738274], [-60.56779765756279, -13.825415293738274], [-60.56779765756279, -13.816432140897078], [-60.57678081040399, -13.816432140897078], [-60.57678081040399, -13.825415293738274]]]}, 'id': '+13283+9887', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -13.951179433515009], [-60.56779765756279, -13.951179433515009], [-60.56779765756279, -13.942196280673812], [-60.585763963245185, -13.942196280673812], [-60.585763963245185, -13.951179433515009]]]}, 'id': '+13283+9901', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -13.969145739197401], [-60.56779765756279, -13.969145739197401], [-60.56779765756279, -13.960162586356205], [-60.585763963245185, -13.960162586356205], [-60.585763963245185, -13.969145739197401]]]}, 'id': '+13283+9903', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.57678081040399, -13.996095197720976], [-60.56779765756279, -13.996095197720976], [-60.56779765756279, -13.98711204487978], [-60.57678081040399, -13.98711204487978], [-60.57678081040399, -13.996095197720976]]]}, 'id': '+13283+9906', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -15.199837678441142], [-60.558814504721596, -15.199837678441142], [-60.558814504721596, -15.18187137275875], [-60.5498313518804, -15.18187137275875], [-60.5498313518804, -15.172888219917553], [-60.558814504721596, -15.172888219917553], [-60.558814504721596, -15.18187137275875], [-60.56779765756279, -15.18187137275875], [-60.56779765756279, -15.199837678441142]]]}, 'id': '+13284+10040', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -15.388483888106236], [-60.558814504721596, -15.388483888106236], [-60.558814504721596, -15.37950073526504], [-60.5498313518804, -15.37950073526504], [-60.5498313518804, -15.370517582423844], [-60.53186504619801, -15.370517582423844], [-60.53186504619801, -15.352551276741465], [-60.50491558767442, -15.352551276741465], [-60.50491558767442, -15.334584971059073], [-60.513898740515614, -15.334584971059073], [-60.513898740515614, -15.343568123900269], [-60.53186504619801, -15.343568123900269], [-60.53186504619801, -15.352551276741465], [-60.5408481990392, -15.352551276741465], [-60.5408481990392, -15.343568123900269], [-60.5498313518804, -15.343568123900269], [-60.5498313518804, -15.352551276741465], [-60.5408481990392, -15.352551276741465], [-60.5408481990392, -15.361534429582647], [-60.56779765756279, -15.361534429582647], [-60.56779765756279, -15.370517582423844], [-60.57678081040399, -15.370517582423844], [-60.57678081040399, -15.37950073526504], [-60.585763963245185, -15.37950073526504], [-60.585763963245185, -15.388483888106236]], [[-60.558814504721596, -15.37950073526504], [-60.558814504721596, -15.370517582423844], [-60.56779765756279, -15.370517582423844], [-60.56779765756279, -15.37950073526504], [-60.558814504721596, -15.37950073526504]]]}, 'id': '+13284+10061', 'properties': {'count': 15, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.585763963245185, -15.51424802788297], [-60.558814504721596, -15.51424802788297], [-60.558814504721596, -15.505264875041775], [-60.585763963245185, -15.505264875041775], [-60.585763963245185, -15.51424802788297]]]}, 'id': '+13284+10075', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.59474711608637, -15.640012167659705], [-60.558814504721596, -15.640012167659705], [-60.558814504721596, -15.622045861977313], [-60.5498313518804, -15.622045861977313], [-60.5498313518804, -15.631029014818509], [-60.53186504619801, -15.631029014818509], [-60.53186504619801, -15.622045861977313], [-60.5408481990392, -15.622045861977313], [-60.5408481990392, -15.613062709136116], [-60.53186504619801, -15.613062709136116], [-60.53186504619801, -15.60407955629492], [-60.52288189335681, -15.60407955629492], [-60.52288189335681, -15.613062709136116], [-60.513898740515614, -15.613062709136116], [-60.513898740515614, -15.622045861977313], [-60.52288189335681, -15.622045861977313], [-60.52288189335681, -15.631029014818509], [-60.513898740515614, -15.631029014818509], [-60.513898740515614, -15.622045861977313], [-60.50491558767442, -15.622045861977313], [-60.50491558767442, -15.631029014818509], [-60.486949281992025, -15.631029014818509], [-60.486949281992025, -15.622045861977313], [-60.49593243483322, -15.622045861977313], [-60.49593243483322, -15.60407955629492], [-60.486949281992025, -15.60407955629492], [-60.486949281992025, -15.595096403453724], [-60.47796612915083, -15.595096403453724], [-60.47796612915083, -15.586113250612527], [-60.486949281992025, -15.586113250612527], [-60.486949281992025, -15.595096403453724], [-60.49593243483322, -15.595096403453724], [-60.49593243483322, -15.586113250612527], [-60.513898740515614, -15.586113250612527], [-60.513898740515614, -15.577130097771345], [-60.50491558767442, -15.577130097771345], [-60.50491558767442, -15.568146944930149], [-60.513898740515614, -15.568146944930149], [-60.513898740515614, -15.577130097771345], [-60.52288189335681, -15.577130097771345], [-60.52288189335681, -15.568146944930149], [-60.53186504619801, -15.568146944930149], [-60.53186504619801, -15.559163792088953], [-60.49593243483322, -15.559163792088953], [-60.49593243483322, -15.550180639247756], [-60.50491558767442, -15.550180639247756], [-60.50491558767442, -15.54119748640656], [-60.49593243483322, -15.54119748640656], [-60.49593243483322, -15.532214333565364], [-60.50491558767442, -15.532214333565364], [-60.50491558767442, -15.54119748640656], [-60.513898740515614, -15.54119748640656], [-60.513898740515614, -15.532214333565364], [-60.52288189335681, -15.532214333565364], [-60.52288189335681, -15.54119748640656], [-60.53186504619801, -15.54119748640656], [-60.53186504619801, -15.559163792088953], [-60.5408481990392, -15.559163792088953], [-60.5408481990392, -15.54119748640656], [-60.5498313518804, -15.54119748640656], [-60.5498313518804, -15.532214333565364], [-60.5408481990392, -15.532214333565364], [-60.5408481990392, -15.523231180724167], [-60.5498313518804, -15.523231180724167], [-60.5498313518804, -15.496281722200578], [-60.5408481990392, -15.496281722200578], [-60.5408481990392, -15.487298569359382], [-60.5498313518804, -15.487298569359382], [-60.5498313518804, -15.496281722200578], [-60.558814504721596, -15.496281722200578], [-60.558814504721596, -15.478315416518186], [-60.5498313518804, -15.478315416518186], [-60.5498313518804, -15.460349110835807], [-60.558814504721596, -15.460349110835807], [-60.558814504721596, -15.478315416518186], [-60.57678081040399, -15.478315416518186], [-60.57678081040399, -15.469332263677003], [-60.56779765756279, -15.469332263677003], [-60.56779765756279, -15.460349110835807], [-60.57678081040399, -15.460349110835807], [-60.57678081040399, -15.469332263677003], [-60.585763963245185, -15.469332263677003], [-60.585763963245185, -15.478315416518186], [-60.59474711608637, -15.478315416518186], [-60.59474711608637, -15.487298569359382], [-60.621696574609956, -15.487298569359382], [-60.621696574609956, -15.496281722200578], [-60.63067972745115, -15.496281722200578], [-60.63067972745115, -15.51424802788297], [-60.63966288029235, -15.51424802788297], [-60.63966288029235, -15.532214333565364], [-60.621696574609956, -15.532214333565364], [-60.621696574609956, -15.550180639247756], [-60.60373026892756, -15.550180639247756], [-60.60373026892756, -15.559163792088953], [-60.59474711608637, -15.559163792088953], [-60.59474711608637, -15.568146944930149], [-60.60373026892756, -15.568146944930149], [-60.60373026892756, -15.577130097771345], [-60.63966288029235, -15.577130097771345], [-60.63966288029235, -15.568146944930149], [-60.61271342176876, -15.568146944930149], [-60.61271342176876, -15.559163792088953], [-60.63966288029235, -15.559163792088953], [-60.63966288029235, -15.550180639247756], [-60.63067972745115, -15.550180639247756], [-60.63067972745115, -15.54119748640656], [-60.63966288029235, -15.54119748640656], [-60.63966288029235, -15.550180639247756], [-60.65762918597474, -15.550180639247756], [-60.65762918597474, -15.559163792088953], [-60.648646033133545, -15.559163792088953], [-60.648646033133545, -15.577130097771345], [-60.63966288029235, -15.577130097771345], [-60.63966288029235, -15.595096403453724], [-60.648646033133545, -15.595096403453724], [-60.648646033133545, -15.60407955629492], [-60.621696574609956, -15.60407955629492], [-60.621696574609956, -15.613062709136116], [-60.61271342176876, -15.613062709136116], [-60.61271342176876, -15.622045861977313], [-60.60373026892756, -15.622045861977313], [-60.60373026892756, -15.631029014818509], [-60.61271342176876, -15.631029014818509], [-60.61271342176876, -15.640012167659705], [-60.60373026892756, -15.640012167659705], [-60.60373026892756, -15.631029014818509], [-60.59474711608637, -15.631029014818509], [-60.59474711608637, -15.640012167659705]], [[-60.57678081040399, -15.487298569359382], [-60.57678081040399, -15.478315416518186], [-60.585763963245185, -15.478315416518186], [-60.585763963245185, -15.487298569359382], [-60.57678081040399, -15.487298569359382]], [[-60.585763963245185, -15.496281722200578], [-60.585763963245185, -15.487298569359382], [-60.59474711608637, -15.487298569359382], [-60.59474711608637, -15.496281722200578], [-60.585763963245185, -15.496281722200578]], [[-60.558814504721596, -15.51424802788297], [-60.558814504721596, -15.496281722200578], [-60.585763963245185, -15.496281722200578], [-60.585763963245185, -15.51424802788297], [-60.558814504721596, -15.51424802788297]], [[-60.59474711608637, -15.550180639247756], [-60.59474711608637, -15.54119748640656], [-60.57678081040399, -15.54119748640656], [-60.57678081040399, -15.532214333565364], [-60.5498313518804, -15.532214333565364], [-60.5498313518804, -15.523231180724167], [-60.585763963245185, -15.523231180724167], [-60.585763963245185, -15.532214333565364], [-60.60373026892756, -15.532214333565364], [-60.60373026892756, -15.523231180724167], [-60.585763963245185, -15.523231180724167], [-60.585763963245185, -15.51424802788297], [-60.61271342176876, -15.51424802788297], [-60.61271342176876, -15.496281722200578], [-60.621696574609956, -15.496281722200578], [-60.621696574609956, -15.532214333565364], [-60.61271342176876, -15.532214333565364], [-60.61271342176876, -15.54119748640656], [-60.60373026892756, -15.54119748640656], [-60.60373026892756, -15.550180639247756], [-60.59474711608637, -15.550180639247756]], [[-60.558814504721596, -15.568146944930149], [-60.558814504721596, -15.559163792088953], [-60.5498313518804, -15.559163792088953], [-60.5498313518804, -15.550180639247756], [-60.558814504721596, -15.550180639247756], [-60.558814504721596, -15.54119748640656], [-60.57678081040399, -15.54119748640656], [-60.57678081040399, -15.559163792088953], [-60.56779765756279, -15.559163792088953], [-60.56779765756279, -15.568146944930149], [-60.558814504721596, -15.568146944930149]], [[-60.5498313518804, -15.586113250612527], [-60.5498313518804, -15.577130097771345], [-60.558814504721596, -15.577130097771345], [-60.558814504721596, -15.586113250612527], [-60.5498313518804, -15.586113250612527]], [[-60.621696574609956, -15.595096403453724], [-60.621696574609956, -15.586113250612527], [-60.63067972745115, -15.586113250612527], [-60.63067972745115, -15.595096403453724], [-60.621696574609956, -15.595096403453724]], [[-60.53186504619801, -15.60407955629492], [-60.53186504619801, -15.595096403453724], [-60.52288189335681, -15.595096403453724], [-60.52288189335681, -15.577130097771345], [-60.5408481990392, -15.577130097771345], [-60.5408481990392, -15.60407955629492], [-60.53186504619801, -15.60407955629492]], [[-60.49593243483322, -15.60407955629492], [-60.49593243483322, -15.595096403453724], [-60.50491558767442, -15.595096403453724], [-60.50491558767442, -15.60407955629492], [-60.49593243483322, -15.60407955629492]], [[-60.5408481990392, -15.613062709136116], [-60.5408481990392, -15.60407955629492], [-60.5498313518804, -15.60407955629492], [-60.5498313518804, -15.595096403453724], [-60.56779765756279, -15.595096403453724], [-60.56779765756279, -15.613062709136116], [-60.5408481990392, -15.613062709136116]], [[-60.59474711608637, -15.622045861977313], [-60.59474711608637, -15.613062709136116], [-60.60373026892756, -15.613062709136116], [-60.60373026892756, -15.622045861977313], [-60.59474711608637, -15.622045861977313]], [[-60.56779765756279, -15.631029014818509], [-60.56779765756279, -15.622045861977313], [-60.57678081040399, -15.622045861977313], [-60.57678081040399, -15.586113250612527], [-60.585763963245185, -15.586113250612527], [-60.585763963245185, -15.577130097771345], [-60.57678081040399, -15.577130097771345], [-60.57678081040399, -15.568146944930149], [-60.59474711608637, -15.568146944930149], [-60.59474711608637, -15.613062709136116], [-60.585763963245185, -15.613062709136116], [-60.585763963245185, -15.622045861977313], [-60.59474711608637, -15.622045861977313], [-60.59474711608637, -15.631029014818509], [-60.56779765756279, -15.631029014818509]]]}, 'id': '+13284+10089', 'properties': {'count': 142, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.57678081040399, -15.73882684891285], [-60.558814504721596, -15.73882684891285], [-60.558814504721596, -15.720860543230458], [-60.56779765756279, -15.720860543230458], [-60.56779765756279, -15.729843696071654], [-60.57678081040399, -15.729843696071654], [-60.57678081040399, -15.73882684891285]]]}, 'id': '+13284+10100', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -15.801708918801225], [-60.558814504721596, -15.801708918801225], [-60.558814504721596, -15.792725765960029], [-60.56779765756279, -15.792725765960029], [-60.56779765756279, -15.801708918801225]]]}, 'id': '+13284+10107', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -15.819675224483603], [-60.558814504721596, -15.819675224483603], [-60.558814504721596, -15.810692071642421], [-60.56779765756279, -15.810692071642421], [-60.56779765756279, -15.819675224483603]]]}, 'id': '+13284+10109', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -15.837641530165996], [-60.558814504721596, -15.837641530165996], [-60.558814504721596, -15.8286583773248], [-60.56779765756279, -15.8286583773248], [-60.56779765756279, -15.801708918801225], [-60.59474711608637, -15.801708918801225], [-60.59474711608637, -15.810692071642421], [-60.57678081040399, -15.810692071642421], [-60.57678081040399, -15.819675224483603], [-60.59474711608637, -15.819675224483603], [-60.59474711608637, -15.837641530165996], [-60.585763963245185, -15.837641530165996], [-60.585763963245185, -15.8286583773248], [-60.56779765756279, -15.8286583773248], [-60.56779765756279, -15.837641530165996]]]}, 'id': '+13284+10111', 'properties': {'count': 9, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -15.864590988689585], [-60.558814504721596, -15.864590988689585], [-60.558814504721596, -15.855607835848389], [-60.56779765756279, -15.855607835848389], [-60.56779765756279, -15.864590988689585]]]}, 'id': '+13284+10114', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -15.972388822783927], [-60.558814504721596, -15.972388822783927], [-60.558814504721596, -15.96340566994273], [-60.56779765756279, -15.96340566994273], [-60.56779765756279, -15.972388822783927]]]}, 'id': '+13284+10126', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -16.15205187960784], [-60.558814504721596, -16.15205187960784], [-60.558814504721596, -16.12510242108425], [-60.56779765756279, -16.12510242108425], [-60.56779765756279, -16.15205187960784]]]}, 'id': '+13284+10146', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -16.205950796655003], [-60.558814504721596, -16.205950796655003], [-60.558814504721596, -16.196967643813807], [-60.56779765756279, -16.196967643813807], [-60.56779765756279, -16.205950796655003]]]}, 'id': '+13284+10152', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -16.223917102337396], [-60.558814504721596, -16.223917102337396], [-60.558814504721596, -16.2149339494962], [-60.56779765756279, -16.2149339494962], [-60.56779765756279, -16.223917102337396]]]}, 'id': '+13284+10154', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -16.295782325066952], [-60.558814504721596, -16.295782325066952], [-60.558814504721596, -16.286799172225756], [-60.56779765756279, -16.286799172225756], [-60.56779765756279, -16.295782325066952]]]}, 'id': '+13284+10162', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -16.331714936431737], [-60.558814504721596, -16.331714936431737], [-60.558814504721596, -16.32273178359054], [-60.56779765756279, -16.32273178359054], [-60.56779765756279, -16.331714936431737]]]}, 'id': '+13284+10166', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.57678081040399, -13.807448988055882], [-60.558814504721596, -13.807448988055882], [-60.558814504721596, -13.798465835214685], [-60.56779765756279, -13.798465835214685], [-60.56779765756279, -13.789482682373489], [-60.57678081040399, -13.789482682373489], [-60.57678081040399, -13.807448988055882]]]}, 'id': '+13284+9885', 'properties': {'count': 3, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -13.816432140897078], [-60.558814504721596, -13.816432140897078], [-60.558814504721596, -13.807448988055882], [-60.5498313518804, -13.807448988055882], [-60.5498313518804, -13.798465835214685], [-60.558814504721596, -13.798465835214685], [-60.558814504721596, -13.789482682373489], [-60.56779765756279, -13.789482682373489], [-60.56779765756279, -13.798465835214685], [-60.558814504721596, -13.798465835214685], [-60.558814504721596, -13.807448988055882], [-60.56779765756279, -13.807448988055882], [-60.56779765756279, -13.816432140897078]]]}, 'id': '+13284+9886', 'properties': {'count': 3, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -13.843381599420667], [-60.558814504721596, -13.843381599420667], [-60.558814504721596, -13.83439844657947], [-60.56779765756279, -13.83439844657947], [-60.56779765756279, -13.843381599420667]]]}, 'id': '+13284+9889', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -13.933213127832616], [-60.558814504721596, -13.933213127832616], [-60.558814504721596, -13.92422997499142], [-60.56779765756279, -13.92422997499142], [-60.56779765756279, -13.933213127832616]]]}, 'id': '+13284+9899', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -14.032027809085761], [-60.558814504721596, -14.032027809085761], [-60.558814504721596, -14.023044656244565], [-60.56779765756279, -14.023044656244565], [-60.56779765756279, -14.032027809085761]]]}, 'id': '+13284+9910', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.558814504721596, -15.038140927299622], [-60.5498313518804, -15.038140927299622], [-60.5498313518804, -15.029157774458426], [-60.558814504721596, -15.029157774458426], [-60.558814504721596, -15.038140927299622]]]}, 'id': '+13285+10022', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.558814504721596, -15.127972455711571], [-60.5498313518804, -15.127972455711571], [-60.5498313518804, -15.11898930287039], [-60.558814504721596, -15.11898930287039], [-60.558814504721596, -15.127972455711571]]]}, 'id': '+13285+10032', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.558814504721596, -15.208820831282338], [-60.5498313518804, -15.208820831282338], [-60.5498313518804, -15.199837678441142], [-60.558814504721596, -15.199837678441142], [-60.558814504721596, -15.208820831282338]]]}, 'id': '+13285+10041', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -15.613062709136116], [-60.5498313518804, -15.613062709136116], [-60.5498313518804, -15.60407955629492], [-60.56779765756279, -15.60407955629492], [-60.56779765756279, -15.613062709136116]]]}, 'id': '+13285+10086', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.558814504721596, -15.640012167659705], [-60.5498313518804, -15.640012167659705], [-60.5498313518804, -15.631029014818509], [-60.558814504721596, -15.631029014818509], [-60.558814504721596, -15.640012167659705]]]}, 'id': '+13285+10089', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -15.702894237548065], [-60.5498313518804, -15.702894237548065], [-60.5498313518804, -15.67594477902449], [-60.53186504619801, -15.67594477902449], [-60.53186504619801, -15.693911084706883], [-60.513898740515614, -15.693911084706883], [-60.513898740515614, -15.684927931865687], [-60.50491558767442, -15.684927931865687], [-60.50491558767442, -15.67594477902449], [-60.49593243483322, -15.67594477902449], [-60.49593243483322, -15.666961626183294], [-60.513898740515614, -15.666961626183294], [-60.513898740515614, -15.657978473342098], [-60.50491558767442, -15.657978473342098], [-60.50491558767442, -15.648995320500902], [-60.513898740515614, -15.648995320500902], [-60.513898740515614, -15.657978473342098], [-60.53186504619801, -15.657978473342098], [-60.53186504619801, -15.666961626183294], [-60.5498313518804, -15.666961626183294], [-60.5498313518804, -15.657978473342098], [-60.558814504721596, -15.657978473342098], [-60.558814504721596, -15.666961626183294], [-60.5498313518804, -15.666961626183294], [-60.5498313518804, -15.67594477902449], [-60.558814504721596, -15.67594477902449], [-60.558814504721596, -15.684927931865687], [-60.56779765756279, -15.684927931865687], [-60.56779765756279, -15.702894237548065]], [[-60.52288189335681, -15.67594477902449], [-60.52288189335681, -15.666961626183294], [-60.53186504619801, -15.666961626183294], [-60.53186504619801, -15.67594477902449], [-60.52288189335681, -15.67594477902449]], [[-60.513898740515614, -15.684927931865687], [-60.513898740515614, -15.67594477902449], [-60.52288189335681, -15.67594477902449], [-60.52288189335681, -15.684927931865687], [-60.513898740515614, -15.684927931865687]]]}, 'id': '+13285+10096', 'properties': {'count': 18, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -15.96340566994273], [-60.5498313518804, -15.96340566994273], [-60.5498313518804, -15.954422517101534], [-60.56779765756279, -15.954422517101534], [-60.56779765756279, -15.96340566994273]]]}, 'id': '+13285+10125', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.558814504721596, -16.01730458698991], [-60.5498313518804, -16.01730458698991], [-60.5498313518804, -16.008321434148712], [-60.558814504721596, -16.008321434148712], [-60.558814504721596, -15.99035512846632], [-60.56779765756279, -15.99035512846632], [-60.56779765756279, -15.972388822783927], [-60.57678081040399, -15.972388822783927], [-60.57678081040399, -15.999338281307516], [-60.585763963245185, -15.999338281307516], [-60.585763963245185, -16.008321434148712], [-60.60373026892756, -16.008321434148712], [-60.60373026892756, -16.01730458698991], [-60.585763963245185, -16.01730458698991], [-60.585763963245185, -16.008321434148712], [-60.57678081040399, -16.008321434148712], [-60.57678081040399, -16.01730458698991], [-60.56779765756279, -16.01730458698991], [-60.56779765756279, -16.008321434148712], [-60.558814504721596, -16.008321434148712], [-60.558814504721596, -16.01730458698991]]]}, 'id': '+13285+10131', 'properties': {'count': 11, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.558814504721596, -16.044254045513483], [-60.5498313518804, -16.044254045513483], [-60.5498313518804, -16.026287739831105], [-60.558814504721596, -16.026287739831105], [-60.558814504721596, -16.044254045513483]]]}, 'id': '+13285+10134', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.558814504721596, -16.12510242108425], [-60.5498313518804, -16.12510242108425], [-60.5498313518804, -16.107136115401858], [-60.558814504721596, -16.107136115401858], [-60.558814504721596, -16.12510242108425]]]}, 'id': '+13285+10143', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.558814504721596, -16.170018185290218], [-60.5498313518804, -16.170018185290218], [-60.5498313518804, -16.16103503244902], [-60.558814504721596, -16.16103503244902], [-60.558814504721596, -16.170018185290218]]]}, 'id': '+13285+10148', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.558814504721596, -16.250866560860985], [-60.5498313518804, -16.250866560860985], [-60.5498313518804, -16.24188340801979], [-60.558814504721596, -16.24188340801979], [-60.558814504721596, -16.250866560860985]]]}, 'id': '+13285+10157', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.558814504721596, -16.50239484041444], [-60.5498313518804, -16.50239484041444], [-60.5498313518804, -16.493411687573257], [-60.558814504721596, -16.493411687573257], [-60.558814504721596, -16.50239484041444]]]}, 'id': '+13285+10185', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -13.92422997499142], [-60.5498313518804, -13.92422997499142], [-60.5498313518804, -13.915246822150223], [-60.558814504721596, -13.915246822150223], [-60.558814504721596, -13.906263669309027], [-60.56779765756279, -13.906263669309027], [-60.56779765756279, -13.92422997499142]]]}, 'id': '+13285+9898', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.56779765756279, -13.969145739197401], [-60.5498313518804, -13.969145739197401], [-60.5498313518804, -13.951179433515009], [-60.56779765756279, -13.951179433515009], [-60.56779765756279, -13.969145739197401]]]}, 'id': '+13285+9903', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -15.199837678441142], [-60.5408481990392, -15.199837678441142], [-60.5408481990392, -15.190854525599946], [-60.5498313518804, -15.190854525599946], [-60.5498313518804, -15.199837678441142]]]}, 'id': '+13286+10040', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -15.208820831282338], [-60.5408481990392, -15.208820831282338], [-60.5408481990392, -15.199837678441142], [-60.53186504619801, -15.199837678441142], [-60.53186504619801, -15.190854525599946], [-60.5408481990392, -15.190854525599946], [-60.5408481990392, -15.199837678441142], [-60.5498313518804, -15.199837678441142], [-60.5498313518804, -15.208820831282338]]]}, 'id': '+13286+10041', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -15.361534429582647], [-60.5408481990392, -15.361534429582647], [-60.5408481990392, -15.352551276741465], [-60.5498313518804, -15.352551276741465], [-60.5498313518804, -15.361534429582647]]]}, 'id': '+13286+10058', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -15.415433346629825], [-60.5408481990392, -15.415433346629825], [-60.5408481990392, -15.40645019378863], [-60.5498313518804, -15.40645019378863], [-60.5498313518804, -15.415433346629825]]]}, 'id': '+13286+10064', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -15.801708918801225], [-60.5408481990392, -15.801708918801225], [-60.5408481990392, -15.783742613118832], [-60.5498313518804, -15.783742613118832], [-60.5498313518804, -15.801708918801225]]]}, 'id': '+13286+10107', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -15.810692071642421], [-60.5408481990392, -15.810692071642421], [-60.5408481990392, -15.801708918801225], [-60.5498313518804, -15.801708918801225], [-60.5498313518804, -15.810692071642421]]]}, 'id': '+13286+10108', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -15.8286583773248], [-60.5408481990392, -15.8286583773248], [-60.5408481990392, -15.819675224483603], [-60.5498313518804, -15.819675224483603], [-60.5498313518804, -15.8286583773248]]]}, 'id': '+13286+10110', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -15.96340566994273], [-60.5408481990392, -15.96340566994273], [-60.5408481990392, -15.954422517101534], [-60.52288189335681, -15.954422517101534], [-60.52288189335681, -15.936456211419141], [-60.513898740515614, -15.936456211419141], [-60.513898740515614, -15.92747305857796], [-60.52288189335681, -15.92747305857796], [-60.52288189335681, -15.936456211419141], [-60.53186504619801, -15.936456211419141], [-60.53186504619801, -15.945439364260338], [-60.5408481990392, -15.945439364260338], [-60.5408481990392, -15.954422517101534], [-60.5498313518804, -15.954422517101534], [-60.5498313518804, -15.96340566994273]]]}, 'id': '+13286+10125', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -16.05323719835468], [-60.5408481990392, -16.05323719835468], [-60.5408481990392, -16.044254045513483], [-60.5498313518804, -16.044254045513483], [-60.5498313518804, -16.05323719835468]]]}, 'id': '+13286+10135', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -16.116119268243054], [-60.5408481990392, -16.116119268243054], [-60.5408481990392, -16.107136115401858], [-60.5498313518804, -16.107136115401858], [-60.5498313518804, -16.116119268243054]]]}, 'id': '+13286+10142', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -16.196967643813807], [-60.5408481990392, -16.196967643813807], [-60.5408481990392, -16.18798449097261], [-60.5498313518804, -16.18798449097261], [-60.5498313518804, -16.196967643813807]]]}, 'id': '+13286+10151', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -16.48442853473206], [-60.5408481990392, -16.48442853473206], [-60.5408481990392, -16.475445381890864], [-60.53186504619801, -16.475445381890864], [-60.53186504619801, -16.466462229049668], [-60.5498313518804, -16.466462229049668], [-60.5498313518804, -16.48442853473206]]]}, 'id': '+13286+10183', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -16.6012095216676], [-60.5408481990392, -16.6012095216676], [-60.5408481990392, -16.592226368826402], [-60.5498313518804, -16.592226368826402], [-60.5498313518804, -16.6012095216676]]]}, 'id': '+13286+10196', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -13.86134790510306], [-60.5408481990392, -13.86134790510306], [-60.5408481990392, -13.852364752261863], [-60.5498313518804, -13.852364752261863], [-60.5498313518804, -13.86134790510306]]]}, 'id': '+13286+9891', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -15.163905067076357], [-60.53186504619801, -15.163905067076357], [-60.53186504619801, -15.145938761393964], [-60.5408481990392, -15.145938761393964], [-60.5408481990392, -15.136955608552768], [-60.56779765756279, -15.136955608552768], [-60.56779765756279, -15.145938761393964], [-60.5498313518804, -15.145938761393964], [-60.5498313518804, -15.163905067076357]]]}, 'id': '+13287+10036', 'properties': {'count': 7, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5408481990392, -15.18187137275875], [-60.53186504619801, -15.18187137275875], [-60.53186504619801, -15.172888219917553], [-60.5408481990392, -15.172888219917553], [-60.5408481990392, -15.18187137275875]]]}, 'id': '+13287+10038', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5408481990392, -15.226787136964731], [-60.53186504619801, -15.226787136964731], [-60.53186504619801, -15.217803984123535], [-60.52288189335681, -15.217803984123535], [-60.52288189335681, -15.208820831282338], [-60.53186504619801, -15.208820831282338], [-60.53186504619801, -15.217803984123535], [-60.5408481990392, -15.217803984123535], [-60.5408481990392, -15.226787136964731]]]}, 'id': '+13287+10043', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5408481990392, -15.325601818217876], [-60.53186504619801, -15.325601818217876], [-60.53186504619801, -15.31661866537668], [-60.5408481990392, -15.31661866537668], [-60.5408481990392, -15.325601818217876]]]}, 'id': '+13287+10054', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5408481990392, -15.487298569359382], [-60.53186504619801, -15.487298569359382], [-60.53186504619801, -15.478315416518186], [-60.5408481990392, -15.478315416518186], [-60.5408481990392, -15.487298569359382]]]}, 'id': '+13287+10072', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5408481990392, -15.684927931865687], [-60.53186504619801, -15.684927931865687], [-60.53186504619801, -15.67594477902449], [-60.5408481990392, -15.67594477902449], [-60.5408481990392, -15.684927931865687]]]}, 'id': '+13287+10094', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5408481990392, -15.792725765960029], [-60.53186504619801, -15.792725765960029], [-60.53186504619801, -15.783742613118832], [-60.5408481990392, -15.783742613118832], [-60.5408481990392, -15.792725765960029]]]}, 'id': '+13287+10106', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5408481990392, -15.810692071642421], [-60.53186504619801, -15.810692071642421], [-60.53186504619801, -15.801708918801225], [-60.5408481990392, -15.801708918801225], [-60.5408481990392, -15.810692071642421]]]}, 'id': '+13287+10108', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5408481990392, -15.855607835848389], [-60.53186504619801, -15.855607835848389], [-60.53186504619801, -15.846624683007192], [-60.52288189335681, -15.846624683007192], [-60.52288189335681, -15.837641530165996], [-60.53186504619801, -15.837641530165996], [-60.53186504619801, -15.846624683007192], [-60.5408481990392, -15.846624683007192], [-60.5408481990392, -15.837641530165996], [-60.5498313518804, -15.837641530165996], [-60.5498313518804, -15.846624683007192], [-60.5408481990392, -15.846624683007192], [-60.5408481990392, -15.855607835848389]]]}, 'id': '+13287+10113', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -16.15205187960784], [-60.53186504619801, -16.15205187960784], [-60.53186504619801, -16.143068726766643], [-60.513898740515614, -16.143068726766643], [-60.513898740515614, -16.134085573925447], [-60.53186504619801, -16.134085573925447], [-60.53186504619801, -16.143068726766643], [-60.5498313518804, -16.143068726766643], [-60.5498313518804, -16.15205187960784]]]}, 'id': '+13287+10146', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5408481990392, -16.16103503244902], [-60.53186504619801, -16.16103503244902], [-60.53186504619801, -16.15205187960784], [-60.52288189335681, -16.15205187960784], [-60.52288189335681, -16.143068726766643], [-60.53186504619801, -16.143068726766643], [-60.53186504619801, -16.12510242108425], [-60.5408481990392, -16.12510242108425], [-60.5408481990392, -16.134085573925447], [-60.5498313518804, -16.134085573925447], [-60.5498313518804, -16.12510242108425], [-60.558814504721596, -16.12510242108425], [-60.558814504721596, -16.134085573925447], [-60.5498313518804, -16.134085573925447], [-60.5498313518804, -16.143068726766643], [-60.558814504721596, -16.143068726766643], [-60.558814504721596, -16.15205187960784], [-60.5498313518804, -16.15205187960784], [-60.5498313518804, -16.143068726766643], [-60.53186504619801, -16.143068726766643], [-60.53186504619801, -16.15205187960784], [-60.5408481990392, -16.15205187960784], [-60.5408481990392, -16.16103503244902]]]}, 'id': '+13287+10147', 'properties': {'count': 7, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5408481990392, -16.18798449097261], [-60.53186504619801, -16.18798449097261], [-60.53186504619801, -16.179001338131414], [-60.5408481990392, -16.179001338131414], [-60.5408481990392, -16.18798449097261]]]}, 'id': '+13287+10150', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5408481990392, -13.933213127832616], [-60.53186504619801, -13.933213127832616], [-60.53186504619801, -13.92422997499142], [-60.5408481990392, -13.92422997499142], [-60.5408481990392, -13.933213127832616]]]}, 'id': '+13287+9899', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -15.0920398443468], [-60.52288189335681, -15.0920398443468], [-60.52288189335681, -15.074073538664408], [-60.53186504619801, -15.074073538664408], [-60.53186504619801, -15.083056691505604], [-60.5498313518804, -15.083056691505604], [-60.5498313518804, -15.0920398443468]]]}, 'id': '+13288+10028', 'properties': {'count': 4, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.53186504619801, -15.40645019378863], [-60.52288189335681, -15.40645019378863], [-60.52288189335681, -15.397467040947433], [-60.53186504619801, -15.397467040947433], [-60.53186504619801, -15.40645019378863]]]}, 'id': '+13288+10063', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5408481990392, -15.424416499471022], [-60.52288189335681, -15.424416499471022], [-60.52288189335681, -15.415433346629825], [-60.5408481990392, -15.415433346629825], [-60.5408481990392, -15.424416499471022]]]}, 'id': '+13288+10065', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.53186504619801, -15.469332263677003], [-60.52288189335681, -15.469332263677003], [-60.52288189335681, -15.460349110835807], [-60.53186504619801, -15.460349110835807], [-60.53186504619801, -15.469332263677003]]]}, 'id': '+13288+10070', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.53186504619801, -15.505264875041775], [-60.52288189335681, -15.505264875041775], [-60.52288189335681, -15.496281722200578], [-60.53186504619801, -15.496281722200578], [-60.53186504619801, -15.505264875041775]]]}, 'id': '+13288+10074', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.53186504619801, -15.54119748640656], [-60.52288189335681, -15.54119748640656], [-60.52288189335681, -15.532214333565364], [-60.53186504619801, -15.532214333565364], [-60.53186504619801, -15.523231180724167], [-60.52288189335681, -15.523231180724167], [-60.52288189335681, -15.51424802788297], [-60.53186504619801, -15.51424802788297], [-60.53186504619801, -15.496281722200578], [-60.5498313518804, -15.496281722200578], [-60.5498313518804, -15.478315416518186], [-60.558814504721596, -15.478315416518186], [-60.558814504721596, -15.496281722200578], [-60.5498313518804, -15.496281722200578], [-60.5498313518804, -15.51424802788297], [-60.5408481990392, -15.51424802788297], [-60.5408481990392, -15.532214333565364], [-60.53186504619801, -15.532214333565364], [-60.53186504619801, -15.54119748640656]]]}, 'id': '+13288+10078', 'properties': {'count': 10, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.53186504619801, -15.586113250612527], [-60.52288189335681, -15.586113250612527], [-60.52288189335681, -15.577130097771345], [-60.513898740515614, -15.577130097771345], [-60.513898740515614, -15.568146944930149], [-60.52288189335681, -15.568146944930149], [-60.52288189335681, -15.577130097771345], [-60.53186504619801, -15.577130097771345], [-60.53186504619801, -15.586113250612527]]]}, 'id': '+13288+10083', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.53186504619801, -15.648995320500902], [-60.52288189335681, -15.648995320500902], [-60.52288189335681, -15.640012167659705], [-60.513898740515614, -15.640012167659705], [-60.513898740515614, -15.631029014818509], [-60.53186504619801, -15.631029014818509], [-60.53186504619801, -15.648995320500902]]]}, 'id': '+13288+10090', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.53186504619801, -15.810692071642421], [-60.52288189335681, -15.810692071642421], [-60.52288189335681, -15.801708918801225], [-60.53186504619801, -15.801708918801225], [-60.53186504619801, -15.810692071642421]]]}, 'id': '+13288+10108', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.53186504619801, -15.882557294371978], [-60.52288189335681, -15.882557294371978], [-60.52288189335681, -15.873574141530781], [-60.53186504619801, -15.873574141530781], [-60.53186504619801, -15.882557294371978]]]}, 'id': '+13288+10116', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.53186504619801, -15.936456211419141], [-60.52288189335681, -15.936456211419141], [-60.52288189335681, -15.92747305857796], [-60.53186504619801, -15.92747305857796], [-60.53186504619801, -15.936456211419141]]]}, 'id': '+13288+10122', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.53186504619801, -16.0352708926723], [-60.52288189335681, -16.0352708926723], [-60.52288189335681, -16.008321434148712], [-60.53186504619801, -16.008321434148712], [-60.53186504619801, -16.01730458698991], [-60.5408481990392, -16.01730458698991], [-60.5408481990392, -16.026287739831105], [-60.53186504619801, -16.026287739831105], [-60.53186504619801, -16.0352708926723]]]}, 'id': '+13288+10133', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.53186504619801, -16.116119268243054], [-60.52288189335681, -16.116119268243054], [-60.52288189335681, -16.107136115401858], [-60.513898740515614, -16.107136115401858], [-60.513898740515614, -16.089169809719465], [-60.52288189335681, -16.089169809719465], [-60.52288189335681, -16.08018665687827], [-60.5408481990392, -16.08018665687827], [-60.5408481990392, -16.089169809719465], [-60.5498313518804, -16.089169809719465], [-60.5498313518804, -16.08018665687827], [-60.558814504721596, -16.08018665687827], [-60.558814504721596, -16.089169809719465], [-60.5498313518804, -16.089169809719465], [-60.5498313518804, -16.09815296256066], [-60.558814504721596, -16.09815296256066], [-60.558814504721596, -16.107136115401858], [-60.5498313518804, -16.107136115401858], [-60.5498313518804, -16.09815296256066], [-60.5408481990392, -16.09815296256066], [-60.5408481990392, -16.107136115401858], [-60.53186504619801, -16.107136115401858], [-60.53186504619801, -16.116119268243054]], [[-60.52288189335681, -16.09815296256066], [-60.52288189335681, -16.089169809719465], [-60.53186504619801, -16.089169809719465], [-60.53186504619801, -16.09815296256066], [-60.52288189335681, -16.09815296256066]]]}, 'id': '+13288+10142', 'properties': {'count': 11, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.53186504619801, -16.170018185290218], [-60.52288189335681, -16.170018185290218], [-60.52288189335681, -16.16103503244902], [-60.53186504619801, -16.16103503244902], [-60.53186504619801, -16.170018185290218]]]}, 'id': '+13288+10148', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5408481990392, -16.223917102337396], [-60.52288189335681, -16.223917102337396], [-60.52288189335681, -16.2149339494962], [-60.5408481990392, -16.2149339494962], [-60.5408481990392, -16.223917102337396]]]}, 'id': '+13288+10154', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5408481990392, -13.83439844657947], [-60.52288189335681, -13.83439844657947], [-60.52288189335681, -13.825415293738274], [-60.5408481990392, -13.825415293738274], [-60.5408481990392, -13.816432140897078], [-60.558814504721596, -13.816432140897078], [-60.558814504721596, -13.825415293738274], [-60.5408481990392, -13.825415293738274], [-60.5408481990392, -13.83439844657947]]]}, 'id': '+13288+9888', 'properties': {'count': 4, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.53186504619801, -13.879314210785438], [-60.52288189335681, -13.879314210785438], [-60.52288189335681, -13.870331057944242], [-60.513898740515614, -13.870331057944242], [-60.513898740515614, -13.86134790510306], [-60.52288189335681, -13.86134790510306], [-60.52288189335681, -13.870331057944242], [-60.53186504619801, -13.870331057944242], [-60.53186504619801, -13.879314210785438]]]}, 'id': '+13288+9893', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5408481990392, -15.029157774458426], [-60.513898740515614, -15.029157774458426], [-60.513898740515614, -15.02017462161723], [-60.5408481990392, -15.02017462161723], [-60.5408481990392, -15.029157774458426]]]}, 'id': '+13289+10021', 'properties': {'count': 3, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -15.172888219917553], [-60.513898740515614, -15.172888219917553], [-60.513898740515614, -15.163905067076357], [-60.52288189335681, -15.163905067076357], [-60.52288189335681, -15.172888219917553]]]}, 'id': '+13289+10037', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -15.370517582423844], [-60.513898740515614, -15.370517582423844], [-60.513898740515614, -15.361534429582647], [-60.52288189335681, -15.361534429582647], [-60.52288189335681, -15.370517582423844]]]}, 'id': '+13289+10059', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -15.45136595799461], [-60.513898740515614, -15.45136595799461], [-60.513898740515614, -15.442382805153414], [-60.52288189335681, -15.442382805153414], [-60.52288189335681, -15.45136595799461]]]}, 'id': '+13289+10068', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -15.460349110835807], [-60.513898740515614, -15.460349110835807], [-60.513898740515614, -15.45136595799461], [-60.52288189335681, -15.45136595799461], [-60.52288189335681, -15.460349110835807]]]}, 'id': '+13289+10069', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -15.523231180724167], [-60.513898740515614, -15.523231180724167], [-60.513898740515614, -15.51424802788297], [-60.52288189335681, -15.51424802788297], [-60.52288189335681, -15.523231180724167]]]}, 'id': '+13289+10076', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -15.684927931865687], [-60.513898740515614, -15.684927931865687], [-60.513898740515614, -15.67594477902449], [-60.52288189335681, -15.67594477902449], [-60.52288189335681, -15.684927931865687]]]}, 'id': '+13289+10094', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -15.792725765960029], [-60.513898740515614, -15.792725765960029], [-60.513898740515614, -15.783742613118832], [-60.52288189335681, -15.783742613118832], [-60.52288189335681, -15.792725765960029]]]}, 'id': '+13289+10106', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -15.846624683007192], [-60.513898740515614, -15.846624683007192], [-60.513898740515614, -15.837641530165996], [-60.52288189335681, -15.837641530165996], [-60.52288189335681, -15.8286583773248], [-60.50491558767442, -15.8286583773248], [-60.50491558767442, -15.819675224483603], [-60.52288189335681, -15.819675224483603], [-60.52288189335681, -15.8286583773248], [-60.5408481990392, -15.8286583773248], [-60.5408481990392, -15.837641530165996], [-60.52288189335681, -15.837641530165996], [-60.52288189335681, -15.846624683007192]]]}, 'id': '+13289+10112', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -16.008321434148712], [-60.513898740515614, -16.008321434148712], [-60.513898740515614, -15.999338281307516], [-60.52288189335681, -15.999338281307516], [-60.52288189335681, -16.008321434148712]]]}, 'id': '+13289+10130', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -16.026287739831105], [-60.513898740515614, -16.026287739831105], [-60.513898740515614, -16.01730458698991], [-60.52288189335681, -16.01730458698991], [-60.52288189335681, -16.026287739831105]]]}, 'id': '+13289+10132', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.5498313518804, -16.071203504037072], [-60.513898740515614, -16.071203504037072], [-60.513898740515614, -16.062220351195876], [-60.50491558767442, -16.062220351195876], [-60.50491558767442, -16.05323719835468], [-60.52288189335681, -16.05323719835468], [-60.52288189335681, -16.062220351195876], [-60.53186504619801, -16.062220351195876], [-60.53186504619801, -16.05323719835468], [-60.56779765756279, -16.05323719835468], [-60.56779765756279, -16.062220351195876], [-60.5498313518804, -16.062220351195876], [-60.5498313518804, -16.071203504037072]]]}, 'id': '+13289+10137', 'properties': {'count': 10, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -16.232900255178592], [-60.513898740515614, -16.232900255178592], [-60.513898740515614, -16.223917102337396], [-60.52288189335681, -16.223917102337396], [-60.52288189335681, -16.232900255178592]]]}, 'id': '+13289+10155', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -16.286799172225756], [-60.513898740515614, -16.286799172225756], [-60.513898740515614, -16.27781601938456], [-60.52288189335681, -16.27781601938456], [-60.52288189335681, -16.286799172225756]]]}, 'id': '+13289+10161', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -16.34968124211413], [-60.513898740515614, -16.34968124211413], [-60.513898740515614, -16.340698089272934], [-60.52288189335681, -16.340698089272934], [-60.52288189335681, -16.34968124211413]]]}, 'id': '+13289+10168', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -13.807448988055882], [-60.513898740515614, -13.807448988055882], [-60.513898740515614, -13.798465835214685], [-60.52288189335681, -13.798465835214685], [-60.52288189335681, -13.807448988055882]]]}, 'id': '+13289+9885', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -13.816432140897078], [-60.513898740515614, -13.816432140897078], [-60.513898740515614, -13.807448988055882], [-60.52288189335681, -13.807448988055882], [-60.52288189335681, -13.816432140897078]]]}, 'id': '+13289+9886', 'properties': {'count': 1, 'label': 11}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -13.825415293738274], [-60.513898740515614, -13.825415293738274], [-60.513898740515614, -13.816432140897078], [-60.52288189335681, -13.816432140897078], [-60.52288189335681, -13.825415293738274]]]}, 'id': '+13289+9887', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -13.843381599420667], [-60.513898740515614, -13.843381599420667], [-60.513898740515614, -13.83439844657947], [-60.52288189335681, -13.83439844657947], [-60.52288189335681, -13.843381599420667]]]}, 'id': '+13289+9889', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -13.969145739197401], [-60.513898740515614, -13.969145739197401], [-60.513898740515614, -13.960162586356205], [-60.486949281992025, -13.960162586356205], [-60.486949281992025, -13.951179433515009], [-60.513898740515614, -13.951179433515009], [-60.513898740515614, -13.960162586356205], [-60.52288189335681, -13.960162586356205], [-60.52288189335681, -13.942196280673812], [-60.53186504619801, -13.942196280673812], [-60.53186504619801, -13.960162586356205], [-60.52288189335681, -13.960162586356205], [-60.52288189335681, -13.969145739197401]]]}, 'id': '+13289+9903', 'properties': {'count': 6, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.513898740515614, -15.693911084706883], [-60.50491558767442, -15.693911084706883], [-60.50491558767442, -15.684927931865687], [-60.513898740515614, -15.684927931865687], [-60.513898740515614, -15.693911084706883]]]}, 'id': '+13290+10095', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.513898740515614, -15.819675224483603], [-60.50491558767442, -15.819675224483603], [-60.50491558767442, -15.810692071642421], [-60.513898740515614, -15.810692071642421], [-60.513898740515614, -15.819675224483603]]]}, 'id': '+13290+10109', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.513898740515614, -15.873574141530781], [-60.50491558767442, -15.873574141530781], [-60.50491558767442, -15.855607835848389], [-60.513898740515614, -15.855607835848389], [-60.513898740515614, -15.873574141530781]]]}, 'id': '+13290+10115', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.513898740515614, -16.026287739831105], [-60.50491558767442, -16.026287739831105], [-60.50491558767442, -16.01730458698991], [-60.513898740515614, -16.01730458698991], [-60.513898740515614, -16.026287739831105]]]}, 'id': '+13290+10132', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.52288189335681, -16.05323719835468], [-60.50491558767442, -16.05323719835468], [-60.50491558767442, -16.0352708926723], [-60.513898740515614, -16.0352708926723], [-60.513898740515614, -16.044254045513483], [-60.52288189335681, -16.044254045513483], [-60.52288189335681, -16.0352708926723], [-60.53186504619801, -16.0352708926723], [-60.53186504619801, -16.026287739831105], [-60.5498313518804, -16.026287739831105], [-60.5498313518804, -16.0352708926723], [-60.53186504619801, -16.0352708926723], [-60.53186504619801, -16.044254045513483], [-60.52288189335681, -16.044254045513483], [-60.52288189335681, -16.05323719835468]]]}, 'id': '+13290+10135', 'properties': {'count': 6, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.513898740515614, -16.170018185290218], [-60.50491558767442, -16.170018185290218], [-60.50491558767442, -16.15205187960784], [-60.52288189335681, -16.15205187960784], [-60.52288189335681, -16.16103503244902], [-60.513898740515614, -16.16103503244902], [-60.513898740515614, -16.170018185290218]]]}, 'id': '+13290+10148', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.513898740515614, -14.023044656244565], [-60.50491558767442, -14.023044656244565], [-60.50491558767442, -14.014061503403369], [-60.513898740515614, -14.014061503403369], [-60.513898740515614, -14.023044656244565]]]}, 'id': '+13290+9909', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.50491558767442, -15.208820831282338], [-60.49593243483322, -15.208820831282338], [-60.49593243483322, -15.199837678441142], [-60.50491558767442, -15.199837678441142], [-60.50491558767442, -15.208820831282338]]]}, 'id': '+13291+10041', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.513898740515614, -15.325601818217876], [-60.49593243483322, -15.325601818217876], [-60.49593243483322, -15.307635512535484], [-60.47796612915083, -15.307635512535484], [-60.47796612915083, -15.298652359694287], [-60.45999982346845, -15.298652359694287], [-60.45999982346845, -15.307635512535484], [-60.44203351778606, -15.307635512535484], [-60.44203351778606, -15.289669206853091], [-60.451016670627254, -15.289669206853091], [-60.451016670627254, -15.298652359694287], [-60.45999982346845, -15.298652359694287], [-60.45999982346845, -15.280686054011895], [-60.46898297630965, -15.280686054011895], [-60.46898297630965, -15.271702901170698], [-60.47796612915083, -15.271702901170698], [-60.47796612915083, -15.262719748329502], [-60.45999982346845, -15.262719748329502], [-60.45999982346845, -15.235770289805927], [-60.47796612915083, -15.235770289805927], [-60.47796612915083, -15.253736595488306], [-60.513898740515614, -15.253736595488306], [-60.513898740515614, -15.262719748329502], [-60.52288189335681, -15.262719748329502], [-60.52288189335681, -15.253736595488306], [-60.53186504619801, -15.253736595488306], [-60.53186504619801, -15.262719748329502], [-60.52288189335681, -15.262719748329502], [-60.52288189335681, -15.271702901170698], [-60.513898740515614, -15.271702901170698], [-60.513898740515614, -15.280686054011895], [-60.50491558767442, -15.280686054011895], [-60.50491558767442, -15.289669206853091], [-60.49593243483322, -15.289669206853091], [-60.49593243483322, -15.307635512535484], [-60.50491558767442, -15.307635512535484], [-60.50491558767442, -15.31661866537668], [-60.513898740515614, -15.31661866537668], [-60.513898740515614, -15.325601818217876]], [[-60.50491558767442, -15.271702901170698], [-60.50491558767442, -15.262719748329502], [-60.513898740515614, -15.262719748329502], [-60.513898740515614, -15.271702901170698], [-60.50491558767442, -15.271702901170698]]]}, 'id': '+13291+10054', 'properties': {'count': 37, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.50491558767442, -15.442382805153414], [-60.49593243483322, -15.442382805153414], [-60.49593243483322, -15.433399652312218], [-60.50491558767442, -15.433399652312218], [-60.50491558767442, -15.442382805153414]]]}, 'id': '+13291+10067', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.50491558767442, -15.478315416518186], [-60.49593243483322, -15.478315416518186], [-60.49593243483322, -15.460349110835807], [-60.513898740515614, -15.460349110835807], [-60.513898740515614, -15.469332263677003], [-60.50491558767442, -15.469332263677003], [-60.50491558767442, -15.478315416518186]]]}, 'id': '+13291+10071', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.513898740515614, -15.51424802788297], [-60.49593243483322, -15.51424802788297], [-60.49593243483322, -15.505264875041775], [-60.50491558767442, -15.505264875041775], [-60.50491558767442, -15.487298569359382], [-60.513898740515614, -15.487298569359382], [-60.513898740515614, -15.478315416518186], [-60.52288189335681, -15.478315416518186], [-60.52288189335681, -15.487298569359382], [-60.513898740515614, -15.487298569359382], [-60.513898740515614, -15.51424802788297]]]}, 'id': '+13291+10075', 'properties': {'count': 5, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.50491558767442, -15.640012167659705], [-60.49593243483322, -15.640012167659705], [-60.49593243483322, -15.631029014818509], [-60.50491558767442, -15.631029014818509], [-60.50491558767442, -15.640012167659705]]]}, 'id': '+13291+10089', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.50491558767442, -15.8286583773248], [-60.49593243483322, -15.8286583773248], [-60.49593243483322, -15.819675224483603], [-60.50491558767442, -15.819675224483603], [-60.50491558767442, -15.8286583773248]]]}, 'id': '+13291+10110', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.50491558767442, -15.864590988689585], [-60.49593243483322, -15.864590988689585], [-60.49593243483322, -15.855607835848389], [-60.50491558767442, -15.855607835848389], [-60.50491558767442, -15.846624683007192], [-60.49593243483322, -15.846624683007192], [-60.49593243483322, -15.837641530165996], [-60.513898740515614, -15.837641530165996], [-60.513898740515614, -15.855607835848389], [-60.52288189335681, -15.855607835848389], [-60.52288189335681, -15.864590988689585], [-60.513898740515614, -15.864590988689585], [-60.513898740515614, -15.855607835848389], [-60.50491558767442, -15.855607835848389], [-60.50491558767442, -15.864590988689585]]]}, 'id': '+13291+10114', 'properties': {'count': 5, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.50491558767442, -16.044254045513483], [-60.49593243483322, -16.044254045513483], [-60.49593243483322, -16.0352708926723], [-60.50491558767442, -16.0352708926723], [-60.50491558767442, -16.044254045513483]]]}, 'id': '+13291+10134', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.50491558767442, -13.825415293738274], [-60.49593243483322, -13.825415293738274], [-60.49593243483322, -13.816432140897078], [-60.50491558767442, -13.816432140897078], [-60.50491558767442, -13.825415293738274]]]}, 'id': '+13291+9887', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.50491558767442, -14.014061503403369], [-60.49593243483322, -14.014061503403369], [-60.49593243483322, -14.005078350562172], [-60.50491558767442, -14.005078350562172], [-60.50491558767442, -14.014061503403369]]]}, 'id': '+13291+9908', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -14.876444176158117], [-60.486949281992025, -14.876444176158117], [-60.486949281992025, -14.86746102331692], [-60.49593243483322, -14.86746102331692], [-60.49593243483322, -14.876444176158117]]]}, 'id': '+13292+10004', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -15.253736595488306], [-60.486949281992025, -15.253736595488306], [-60.486949281992025, -15.24475344264711], [-60.49593243483322, -15.24475344264711], [-60.49593243483322, -15.253736595488306]]]}, 'id': '+13292+10046', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -15.415433346629825], [-60.486949281992025, -15.415433346629825], [-60.486949281992025, -15.397467040947433], [-60.47796612915083, -15.397467040947433], [-60.47796612915083, -15.388483888106236], [-60.46898297630965, -15.388483888106236], [-60.46898297630965, -15.37950073526504], [-60.47796612915083, -15.37950073526504], [-60.47796612915083, -15.388483888106236], [-60.486949281992025, -15.388483888106236], [-60.486949281992025, -15.397467040947433], [-60.49593243483322, -15.397467040947433], [-60.49593243483322, -15.415433346629825]]]}, 'id': '+13292+10064', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -15.460349110835807], [-60.486949281992025, -15.460349110835807], [-60.486949281992025, -15.45136595799461], [-60.49593243483322, -15.45136595799461], [-60.49593243483322, -15.460349110835807]]]}, 'id': '+13292+10069', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -15.54119748640656], [-60.486949281992025, -15.54119748640656], [-60.486949281992025, -15.532214333565364], [-60.47796612915083, -15.532214333565364], [-60.47796612915083, -15.523231180724167], [-60.486949281992025, -15.523231180724167], [-60.486949281992025, -15.51424802788297], [-60.47796612915083, -15.51424802788297], [-60.47796612915083, -15.496281722200578], [-60.486949281992025, -15.496281722200578], [-60.486949281992025, -15.505264875041775], [-60.49593243483322, -15.505264875041775], [-60.49593243483322, -15.523231180724167], [-60.50491558767442, -15.523231180724167], [-60.50491558767442, -15.51424802788297], [-60.513898740515614, -15.51424802788297], [-60.513898740515614, -15.523231180724167], [-60.50491558767442, -15.523231180724167], [-60.50491558767442, -15.532214333565364], [-60.49593243483322, -15.532214333565364], [-60.49593243483322, -15.54119748640656]], [[-60.486949281992025, -15.532214333565364], [-60.486949281992025, -15.523231180724167], [-60.49593243483322, -15.523231180724167], [-60.49593243483322, -15.532214333565364], [-60.486949281992025, -15.532214333565364]]]}, 'id': '+13292+10078', 'properties': {'count': 8, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.50491558767442, -15.550180639247756], [-60.486949281992025, -15.550180639247756], [-60.486949281992025, -15.54119748640656], [-60.47796612915083, -15.54119748640656], [-60.47796612915083, -15.532214333565364], [-60.486949281992025, -15.532214333565364], [-60.486949281992025, -15.54119748640656], [-60.50491558767442, -15.54119748640656], [-60.50491558767442, -15.550180639247756]]]}, 'id': '+13292+10079', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -15.622045861977313], [-60.486949281992025, -15.622045861977313], [-60.486949281992025, -15.613062709136116], [-60.49593243483322, -15.613062709136116], [-60.49593243483322, -15.622045861977313]]]}, 'id': '+13292+10087', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -15.702894237548065], [-60.486949281992025, -15.702894237548065], [-60.486949281992025, -15.693911084706883], [-60.47796612915083, -15.693911084706883], [-60.47796612915083, -15.684927931865687], [-60.46898297630965, -15.684927931865687], [-60.46898297630965, -15.67594477902449], [-60.45999982346845, -15.67594477902449], [-60.45999982346845, -15.666961626183294], [-60.451016670627254, -15.666961626183294], [-60.451016670627254, -15.648995320500902], [-60.44203351778606, -15.648995320500902], [-60.44203351778606, -15.666961626183294], [-60.43305036494486, -15.666961626183294], [-60.43305036494486, -15.67594477902449], [-60.424067212103665, -15.67594477902449], [-60.424067212103665, -15.648995320500902], [-60.41508405926247, -15.648995320500902], [-60.41508405926247, -15.657978473342098], [-60.397117753580076, -15.657978473342098], [-60.397117753580076, -15.640012167659705], [-60.38813460073888, -15.640012167659705], [-60.38813460073888, -15.631029014818509], [-60.397117753580076, -15.631029014818509], [-60.397117753580076, -15.613062709136116], [-60.40610090642127, -15.613062709136116], [-60.40610090642127, -15.60407955629492], [-60.424067212103665, -15.60407955629492], [-60.424067212103665, -15.568146944930149], [-60.43305036494486, -15.568146944930149], [-60.43305036494486, -15.60407955629492], [-60.424067212103665, -15.60407955629492], [-60.424067212103665, -15.613062709136116], [-60.41508405926247, -15.613062709136116], [-60.41508405926247, -15.622045861977313], [-60.424067212103665, -15.622045861977313], [-60.424067212103665, -15.640012167659705], [-60.43305036494486, -15.640012167659705], [-60.43305036494486, -15.613062709136116], [-60.44203351778606, -15.613062709136116], [-60.44203351778606, -15.631029014818509], [-60.451016670627254, -15.631029014818509], [-60.451016670627254, -15.622045861977313], [-60.45999982346845, -15.622045861977313], [-60.45999982346845, -15.613062709136116], [-60.46898297630965, -15.613062709136116], [-60.46898297630965, -15.622045861977313], [-60.45999982346845, -15.622045861977313], [-60.45999982346845, -15.631029014818509], [-60.451016670627254, -15.631029014818509], [-60.451016670627254, -15.648995320500902], [-60.45999982346845, -15.648995320500902], [-60.45999982346845, -15.640012167659705], [-60.46898297630965, -15.640012167659705], [-60.46898297630965, -15.657978473342098], [-60.486949281992025, -15.657978473342098], [-60.486949281992025, -15.648995320500902], [-60.50491558767442, -15.648995320500902], [-60.50491558767442, -15.657978473342098], [-60.49593243483322, -15.657978473342098], [-60.49593243483322, -15.702894237548065]], [[-60.40610090642127, -15.640012167659705], [-60.40610090642127, -15.631029014818509], [-60.41508405926247, -15.631029014818509], [-60.41508405926247, -15.640012167659705], [-60.40610090642127, -15.640012167659705]], [[-60.47796612915083, -15.684927931865687], [-60.47796612915083, -15.666961626183294], [-60.486949281992025, -15.666961626183294], [-60.486949281992025, -15.684927931865687], [-60.47796612915083, -15.684927931865687]]]}, 'id': '+13292+10096', 'properties': {'count': 51, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -15.711877390389262], [-60.486949281992025, -15.711877390389262], [-60.486949281992025, -15.702894237548065], [-60.49593243483322, -15.702894237548065], [-60.49593243483322, -15.711877390389262]]]}, 'id': '+13292+10097', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.50491558767442, -15.792725765960029], [-60.486949281992025, -15.792725765960029], [-60.486949281992025, -15.774759460277636], [-60.47796612915083, -15.774759460277636], [-60.47796612915083, -15.76577630743644], [-60.486949281992025, -15.76577630743644], [-60.486949281992025, -15.756793154595243], [-60.49593243483322, -15.756793154595243], [-60.49593243483322, -15.747810001754047], [-60.50491558767442, -15.747810001754047], [-60.50491558767442, -15.756793154595243], [-60.49593243483322, -15.756793154595243], [-60.49593243483322, -15.76577630743644], [-60.486949281992025, -15.76577630743644], [-60.486949281992025, -15.774759460277636], [-60.49593243483322, -15.774759460277636], [-60.49593243483322, -15.783742613118832], [-60.50491558767442, -15.783742613118832], [-60.50491558767442, -15.792725765960029]]]}, 'id': '+13292+10106', 'properties': {'count': 6, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -15.891540447213174], [-60.486949281992025, -15.891540447213174], [-60.486949281992025, -15.882557294371978], [-60.49593243483322, -15.882557294371978], [-60.49593243483322, -15.891540447213174]]]}, 'id': '+13292+10117', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -15.981371975625123], [-60.486949281992025, -15.981371975625123], [-60.486949281992025, -15.972388822783927], [-60.49593243483322, -15.972388822783927], [-60.49593243483322, -15.981371975625123]]]}, 'id': '+13292+10127', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.50491558767442, -16.143068726766643], [-60.486949281992025, -16.143068726766643], [-60.486949281992025, -16.134085573925447], [-60.47796612915083, -16.134085573925447], [-60.47796612915083, -16.107136115401858], [-60.486949281992025, -16.107136115401858], [-60.486949281992025, -16.116119268243054], [-60.49593243483322, -16.116119268243054], [-60.49593243483322, -16.071203504037072], [-60.486949281992025, -16.071203504037072], [-60.486949281992025, -16.062220351195876], [-60.49593243483322, -16.062220351195876], [-60.49593243483322, -16.071203504037072], [-60.56779765756279, -16.071203504037072], [-60.56779765756279, -16.08018665687827], [-60.50491558767442, -16.08018665687827], [-60.50491558767442, -16.089169809719465], [-60.513898740515614, -16.089169809719465], [-60.513898740515614, -16.107136115401858], [-60.52288189335681, -16.107136115401858], [-60.52288189335681, -16.12510242108425], [-60.513898740515614, -16.12510242108425], [-60.513898740515614, -16.107136115401858], [-60.50491558767442, -16.107136115401858], [-60.50491558767442, -16.116119268243054], [-60.49593243483322, -16.116119268243054], [-60.49593243483322, -16.12510242108425], [-60.50491558767442, -16.12510242108425], [-60.50491558767442, -16.143068726766643]]]}, 'id': '+13292+10145', 'properties': {'count': 25, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -16.196967643813807], [-60.486949281992025, -16.196967643813807], [-60.486949281992025, -16.18798449097261], [-60.49593243483322, -16.18798449097261], [-60.49593243483322, -16.179001338131414], [-60.46898297630965, -16.179001338131414], [-60.46898297630965, -16.170018185290218], [-60.47796612915083, -16.170018185290218], [-60.47796612915083, -16.15205187960784], [-60.49593243483322, -16.15205187960784], [-60.49593243483322, -16.16103503244902], [-60.486949281992025, -16.16103503244902], [-60.486949281992025, -16.170018185290218], [-60.49593243483322, -16.170018185290218], [-60.49593243483322, -16.179001338131414], [-60.50491558767442, -16.179001338131414], [-60.50491558767442, -16.18798449097261], [-60.49593243483322, -16.18798449097261], [-60.49593243483322, -16.196967643813807]]]}, 'id': '+13292+10151', 'properties': {'count': 8, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -16.25984971370218], [-60.486949281992025, -16.25984971370218], [-60.486949281992025, -16.250866560860985], [-60.49593243483322, -16.250866560860985], [-60.49593243483322, -16.25984971370218]]]}, 'id': '+13292+10158', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -13.83439844657947], [-60.486949281992025, -13.83439844657947], [-60.486949281992025, -13.825415293738274], [-60.49593243483322, -13.825415293738274], [-60.49593243483322, -13.83439844657947]]]}, 'id': '+13292+9888', 'properties': {'count': 1, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -13.89728051646783], [-60.486949281992025, -13.89728051646783], [-60.486949281992025, -13.888297363626634], [-60.49593243483322, -13.888297363626634], [-60.49593243483322, -13.89728051646783]]]}, 'id': '+13292+9895', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -13.915246822150223], [-60.486949281992025, -13.915246822150223], [-60.486949281992025, -13.906263669309027], [-60.49593243483322, -13.906263669309027], [-60.49593243483322, -13.915246822150223]]]}, 'id': '+13292+9897', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -13.969145739197401], [-60.486949281992025, -13.969145739197401], [-60.486949281992025, -13.960162586356205], [-60.49593243483322, -13.960162586356205], [-60.49593243483322, -13.969145739197401]]]}, 'id': '+13292+9903', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -14.157791948862496], [-60.486949281992025, -14.157791948862496], [-60.486949281992025, -14.1488087960213], [-60.49593243483322, -14.1488087960213], [-60.49593243483322, -14.139825643180103], [-60.50491558767442, -14.139825643180103], [-60.50491558767442, -14.1488087960213], [-60.49593243483322, -14.1488087960213], [-60.49593243483322, -14.157791948862496]]]}, 'id': '+13292+9924', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.486949281992025, -15.235770289805927], [-60.47796612915083, -15.235770289805927], [-60.47796612915083, -15.226787136964731], [-60.46898297630965, -15.226787136964731], [-60.46898297630965, -15.217803984123535], [-60.47796612915083, -15.217803984123535], [-60.47796612915083, -15.226787136964731], [-60.486949281992025, -15.226787136964731], [-60.486949281992025, -15.235770289805927]]]}, 'id': '+13293+10044', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.486949281992025, -15.361534429582647], [-60.47796612915083, -15.361534429582647], [-60.47796612915083, -15.352551276741465], [-60.486949281992025, -15.352551276741465], [-60.486949281992025, -15.361534429582647]]]}, 'id': '+13293+10058', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.486949281992025, -15.45136595799461], [-60.47796612915083, -15.45136595799461], [-60.47796612915083, -15.424416499471022], [-60.49593243483322, -15.424416499471022], [-60.49593243483322, -15.433399652312218], [-60.486949281992025, -15.433399652312218], [-60.486949281992025, -15.45136595799461]]]}, 'id': '+13293+10068', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.486949281992025, -15.478315416518186], [-60.47796612915083, -15.478315416518186], [-60.47796612915083, -15.460349110835807], [-60.486949281992025, -15.460349110835807], [-60.486949281992025, -15.478315416518186]]]}, 'id': '+13293+10071', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.486949281992025, -15.631029014818509], [-60.47796612915083, -15.631029014818509], [-60.47796612915083, -15.622045861977313], [-60.486949281992025, -15.622045861977313], [-60.486949281992025, -15.631029014818509]]]}, 'id': '+13293+10088', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.486949281992025, -15.855607835848389], [-60.47796612915083, -15.855607835848389], [-60.47796612915083, -15.846624683007192], [-60.486949281992025, -15.846624683007192], [-60.486949281992025, -15.855607835848389]]]}, 'id': '+13293+10113', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.486949281992025, -15.891540447213174], [-60.47796612915083, -15.891540447213174], [-60.47796612915083, -15.882557294371978], [-60.486949281992025, -15.882557294371978], [-60.486949281992025, -15.891540447213174]]]}, 'id': '+13293+10117', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.486949281992025, -16.071203504037072], [-60.47796612915083, -16.071203504037072], [-60.47796612915083, -16.062220351195876], [-60.486949281992025, -16.062220351195876], [-60.486949281992025, -16.071203504037072]]]}, 'id': '+13293+10137', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.486949281992025, -16.09815296256066], [-60.47796612915083, -16.09815296256066], [-60.47796612915083, -16.089169809719465], [-60.46898297630965, -16.089169809719465], [-60.46898297630965, -16.08018665687827], [-60.47796612915083, -16.08018665687827], [-60.47796612915083, -16.089169809719465], [-60.486949281992025, -16.089169809719465], [-60.486949281992025, -16.09815296256066]]]}, 'id': '+13293+10140', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.486949281992025, -16.34968124211413], [-60.47796612915083, -16.34968124211413], [-60.47796612915083, -16.340698089272934], [-60.486949281992025, -16.340698089272934], [-60.486949281992025, -16.34968124211413]]]}, 'id': '+13293+10168', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.49593243483322, -16.592226368826402], [-60.47796612915083, -16.592226368826402], [-60.47796612915083, -16.57426006314401], [-60.46898297630965, -16.57426006314401], [-60.46898297630965, -16.583243215985206], [-60.45999982346845, -16.583243215985206], [-60.45999982346845, -16.565276910302813], [-60.451016670627254, -16.565276910302813], [-60.451016670627254, -16.57426006314401], [-60.44203351778606, -16.57426006314401], [-60.44203351778606, -16.565276910302813], [-60.424067212103665, -16.565276910302813], [-60.424067212103665, -16.556293757461617], [-60.41508405926247, -16.556293757461617], [-60.41508405926247, -16.54731060462042], [-60.37016829505649, -16.54731060462042], [-60.37016829505649, -16.538327451779224], [-60.36118514221529, -16.538327451779224], [-60.36118514221529, -16.520361146096832], [-60.37016829505649, -16.520361146096832], [-60.37016829505649, -16.538327451779224], [-60.379151447897684, -16.538327451779224], [-60.379151447897684, -16.520361146096832], [-60.38813460073888, -16.520361146096832], [-60.38813460073888, -16.50239484041444], [-60.379151447897684, -16.50239484041444], [-60.379151447897684, -16.493411687573257], [-60.397117753580076, -16.493411687573257], [-60.397117753580076, -16.48442853473206], [-60.40610090642127, -16.48442853473206], [-60.40610090642127, -16.493411687573257], [-60.41508405926247, -16.493411687573257], [-60.41508405926247, -16.48442853473206], [-60.424067212103665, -16.48442853473206], [-60.424067212103665, -16.475445381890864], [-60.41508405926247, -16.475445381890864], [-60.41508405926247, -16.466462229049668], [-60.424067212103665, -16.466462229049668], [-60.424067212103665, -16.475445381890864], [-60.43305036494486, -16.475445381890864], [-60.43305036494486, -16.430529617684883], [-60.44203351778606, -16.430529617684883], [-60.44203351778606, -16.421546464843686], [-60.424067212103665, -16.421546464843686], [-60.424067212103665, -16.430529617684883], [-60.41508405926247, -16.430529617684883], [-60.41508405926247, -16.43951277052608], [-60.40610090642127, -16.43951277052608], [-60.40610090642127, -16.448495923367275], [-60.397117753580076, -16.448495923367275], [-60.397117753580076, -16.43951277052608], [-60.38813460073888, -16.43951277052608], [-60.38813460073888, -16.430529617684883], [-60.37016829505649, -16.430529617684883], [-60.37016829505649, -16.466462229049668], [-60.379151447897684, -16.466462229049668], [-60.379151447897684, -16.45747907620847], [-60.38813460073888, -16.45747907620847], [-60.38813460073888, -16.466462229049668], [-60.379151447897684, -16.466462229049668], [-60.379151447897684, -16.48442853473206], [-60.37016829505649, -16.48442853473206], [-60.37016829505649, -16.466462229049668], [-60.36118514221529, -16.466462229049668], [-60.36118514221529, -16.48442853473206], [-60.35220198937411, -16.48442853473206], [-60.35220198937411, -16.50239484041444], [-60.34321883653291, -16.50239484041444], [-60.34321883653291, -16.475445381890864], [-60.31626937800932, -16.475445381890864], [-60.31626937800932, -16.45747907620847], [-60.32525253085052, -16.45747907620847], [-60.32525253085052, -16.43951277052608], [-60.334235683691716, -16.43951277052608], [-60.334235683691716, -16.421546464843686], [-60.32525253085052, -16.421546464843686], [-60.32525253085052, -16.41256331200249], [-60.30728622516813, -16.41256331200249], [-60.30728622516813, -16.421546464843686], [-60.31626937800932, -16.421546464843686], [-60.31626937800932, -16.430529617684883], [-60.30728622516813, -16.430529617684883], [-60.30728622516813, -16.421546464843686], [-60.29830307232693, -16.421546464843686], [-60.29830307232693, -16.430529617684883], [-60.289319919485735, -16.430529617684883], [-60.289319919485735, -16.421546464843686], [-60.29830307232693, -16.421546464843686], [-60.29830307232693, -16.403580159161294], [-60.289319919485735, -16.403580159161294], [-60.289319919485735, -16.41256331200249], [-60.28033676664454, -16.41256331200249], [-60.28033676664454, -16.403580159161294], [-60.27135361380334, -16.403580159161294], [-60.27135361380334, -16.41256331200249], [-60.262370460962146, -16.41256331200249], [-60.262370460962146, -16.394597006320097], [-60.25338730812095, -16.394597006320097], [-60.25338730812095, -16.403580159161294], [-60.23542100243857, -16.403580159161294], [-60.23542100243857, -16.421546464843686], [-60.21745469675618, -16.421546464843686], [-60.21745469675618, -16.430529617684883], [-60.20847154391498, -16.430529617684883], [-60.20847154391498, -16.43951277052608], [-60.19050523823259, -16.43951277052608], [-60.19050523823259, -16.45747907620847], [-60.199488391073785, -16.45747907620847], [-60.199488391073785, -16.466462229049668], [-60.20847154391498, -16.466462229049668], [-60.20847154391498, -16.475445381890864], [-60.21745469675618, -16.475445381890864], [-60.21745469675618, -16.466462229049668], [-60.23542100243857, -16.466462229049668], [-60.23542100243857, -16.475445381890864], [-60.24440415527977, -16.475445381890864], [-60.24440415527977, -16.41256331200249], [-60.25338730812095, -16.41256331200249], [-60.25338730812095, -16.421546464843686], [-60.262370460962146, -16.421546464843686], [-60.262370460962146, -16.430529617684883], [-60.25338730812095, -16.430529617684883], [-60.25338730812095, -16.45747907620847], [-60.28033676664454, -16.45747907620847], [-60.28033676664454, -16.448495923367275], [-60.27135361380334, -16.448495923367275], [-60.27135361380334, -16.421546464843686], [-60.28033676664454, -16.421546464843686], [-60.28033676664454, -16.43951277052608], [-60.30728622516813, -16.43951277052608], [-60.30728622516813, -16.448495923367275], [-60.289319919485735, -16.448495923367275], [-60.289319919485735, -16.45747907620847], [-60.29830307232693, -16.45747907620847], [-60.29830307232693, -16.466462229049668], [-60.28033676664454, -16.466462229049668], [-60.28033676664454, -16.48442853473206], [-60.27135361380334, -16.48442853473206], [-60.27135361380334, -16.493411687573257], [-60.25338730812095, -16.493411687573257], [-60.25338730812095, -16.48442853473206], [-60.23542100243857, -16.48442853473206], [-60.23542100243857, -16.475445381890864], [-60.21745469675618, -16.475445381890864], [-60.21745469675618, -16.493411687573257], [-60.20847154391498, -16.493411687573257], [-60.20847154391498, -16.48442853473206], [-60.19050523823259, -16.48442853473206], [-60.19050523823259, -16.466462229049668], [-60.14558947402661, -16.466462229049668], [-60.14558947402661, -16.43951277052608], [-60.13660632118541, -16.43951277052608], [-60.13660632118541, -16.448495923367275], [-60.12762316834423, -16.448495923367275], [-60.12762316834423, -16.430529617684883], [-60.11864001550303, -16.430529617684883], [-60.11864001550303, -16.43951277052608], [-60.10067370982064, -16.43951277052608], [-60.10067370982064, -16.430529617684883], [-60.08270740413825, -16.430529617684883], [-60.08270740413825, -16.421546464843686], [-60.07372425129705, -16.421546464843686], [-60.07372425129705, -16.403580159161294], [-60.064741098455855, -16.403580159161294], [-60.064741098455855, -16.41256331200249], [-60.05575794561466, -16.41256331200249], [-60.05575794561466, -16.403580159161294], [-60.037791639932266, -16.403580159161294], [-60.037791639932266, -16.394597006320097], [-60.02880848709107, -16.394597006320097], [-60.02880848709107, -16.385613853478915], [-60.01982533424987, -16.385613853478915], [-60.01982533424987, -16.367647547796523], [-60.02880848709107, -16.367647547796523], [-60.02880848709107, -16.358664394955326], [-60.037791639932266, -16.358664394955326], [-60.037791639932266, -16.331714936431737], [-60.04677479277346, -16.331714936431737], [-60.04677479277346, -16.32273178359054], [-60.037791639932266, -16.32273178359054], [-60.037791639932266, -16.313748630749345], [-60.04677479277346, -16.313748630749345], [-60.04677479277346, -16.32273178359054], [-60.05575794561466, -16.32273178359054], [-60.05575794561466, -16.331714936431737], [-60.08270740413825, -16.331714936431737], [-60.08270740413825, -16.32273178359054], [-60.091690556979444, -16.32273178359054], [-60.091690556979444, -16.313748630749345], [-60.07372425129705, -16.313748630749345], [-60.07372425129705, -16.30476547790815], [-60.08270740413825, -16.30476547790815], [-60.08270740413825, -16.295782325066952], [-60.109656862661836, -16.295782325066952], [-60.109656862661836, -16.286799172225756], [-60.11864001550303, -16.286799172225756], [-60.11864001550303, -16.295782325066952], [-60.154572626867804, -16.295782325066952], [-60.154572626867804, -16.30476547790815], [-60.163555779709, -16.30476547790815], [-60.163555779709, -16.313748630749345], [-60.14558947402661, -16.313748630749345], [-60.14558947402661, -16.32273178359054], [-60.163555779709, -16.32273178359054], [-60.163555779709, -16.340698089272934], [-60.1725389325502, -16.340698089272934], [-60.1725389325502, -16.34968124211413], [-60.18152208539139, -16.34968124211413], [-60.18152208539139, -16.358664394955326], [-60.19050523823259, -16.358664394955326], [-60.19050523823259, -16.367647547796523], [-60.199488391073785, -16.367647547796523], [-60.199488391073785, -16.358664394955326], [-60.20847154391498, -16.358664394955326], [-60.20847154391498, -16.34968124211413], [-60.199488391073785, -16.34968124211413], [-60.199488391073785, -16.32273178359054], [-60.19050523823259, -16.32273178359054], [-60.19050523823259, -16.340698089272934], [-60.18152208539139, -16.340698089272934], [-60.18152208539139, -16.32273178359054], [-60.1725389325502, -16.32273178359054], [-60.1725389325502, -16.313748630749345], [-60.18152208539139, -16.313748630749345], [-60.18152208539139, -16.32273178359054], [-60.19050523823259, -16.32273178359054], [-60.19050523823259, -16.313748630749345], [-60.199488391073785, -16.313748630749345], [-60.199488391073785, -16.30476547790815], [-60.21745469675618, -16.30476547790815], [-60.21745469675618, -16.295782325066952], [-60.23542100243857, -16.295782325066952], [-60.23542100243857, -16.286799172225756], [-60.24440415527977, -16.286799172225756], [-60.24440415527977, -16.27781601938456], [-60.23542100243857, -16.27781601938456], [-60.23542100243857, -16.268832866543377], [-60.25338730812095, -16.268832866543377], [-60.25338730812095, -16.286799172225756], [-60.262370460962146, -16.286799172225756], [-60.262370460962146, -16.268832866543377], [-60.27135361380334, -16.268832866543377], [-60.27135361380334, -16.27781601938456], [-60.28033676664454, -16.27781601938456], [-60.28033676664454, -16.268832866543377], [-60.289319919485735, -16.268832866543377], [-60.289319919485735, -16.27781601938456], [-60.28033676664454, -16.27781601938456], [-60.28033676664454, -16.286799172225756], [-60.262370460962146, -16.286799172225756], [-60.262370460962146, -16.295782325066952], [-60.289319919485735, -16.295782325066952], [-60.289319919485735, -16.313748630749345], [-60.25338730812095, -16.313748630749345], [-60.25338730812095, -16.340698089272934], [-60.262370460962146, -16.340698089272934], [-60.262370460962146, -16.37663070063772], [-60.25338730812095, -16.37663070063772], [-60.25338730812095, -16.385613853478915], [-60.262370460962146, -16.385613853478915], [-60.262370460962146, -16.394597006320097], [-60.27135361380334, -16.394597006320097], [-60.27135361380334, -16.385613853478915], [-60.28033676664454, -16.385613853478915], [-60.28033676664454, -16.37663070063772], [-60.289319919485735, -16.37663070063772], [-60.289319919485735, -16.367647547796523], [-60.29830307232693, -16.367647547796523], [-60.29830307232693, -16.37663070063772], [-60.31626937800932, -16.37663070063772], [-60.31626937800932, -16.385613853478915], [-60.28033676664454, -16.385613853478915], [-60.28033676664454, -16.394597006320097], [-60.29830307232693, -16.394597006320097], [-60.29830307232693, -16.403580159161294], [-60.31626937800932, -16.403580159161294], [-60.31626937800932, -16.394597006320097], [-60.32525253085052, -16.394597006320097], [-60.32525253085052, -16.385613853478915], [-60.334235683691716, -16.385613853478915], [-60.334235683691716, -16.37663070063772], [-60.32525253085052, -16.37663070063772], [-60.32525253085052, -16.367647547796523], [-60.334235683691716, -16.367647547796523], [-60.334235683691716, -16.37663070063772], [-60.35220198937411, -16.37663070063772], [-60.35220198937411, -16.394597006320097], [-60.34321883653291, -16.394597006320097], [-60.34321883653291, -16.403580159161294], [-60.334235683691716, -16.403580159161294], [-60.334235683691716, -16.394597006320097], [-60.32525253085052, -16.394597006320097], [-60.32525253085052, -16.41256331200249], [-60.35220198937411, -16.41256331200249], [-60.35220198937411, -16.403580159161294], [-60.36118514221529, -16.403580159161294], [-60.36118514221529, -16.421546464843686], [-60.37016829505649, -16.421546464843686], [-60.37016829505649, -16.41256331200249], [-60.379151447897684, -16.41256331200249], [-60.379151447897684, -16.403580159161294], [-60.38813460073888, -16.403580159161294], [-60.38813460073888, -16.394597006320097], [-60.397117753580076, -16.394597006320097], [-60.397117753580076, -16.37663070063772], [-60.38813460073888, -16.37663070063772], [-60.38813460073888, -16.34968124211413], [-60.424067212103665, -16.34968124211413], [-60.424067212103665, -16.358664394955326], [-60.43305036494486, -16.358664394955326], [-60.43305036494486, -16.340698089272934], [-60.451016670627254, -16.340698089272934], [-60.451016670627254, -16.331714936431737], [-60.45999982346845, -16.331714936431737], [-60.45999982346845, -16.340698089272934], [-60.451016670627254, -16.340698089272934], [-60.451016670627254, -16.34968124211413], [-60.44203351778606, -16.34968124211413], [-60.44203351778606, -16.358664394955326], [-60.451016670627254, -16.358664394955326], [-60.451016670627254, -16.385613853478915], [-60.45999982346845, -16.385613853478915], [-60.45999982346845, -16.367647547796523], [-60.47796612915083, -16.367647547796523], [-60.47796612915083, -16.358664394955326], [-60.5498313518804, -16.358664394955326], [-60.5498313518804, -16.34968124211413], [-60.558814504721596, -16.34968124211413], [-60.558814504721596, -16.340698089272934], [-60.57678081040399, -16.340698089272934], [-60.57678081040399, -16.32273178359054], [-60.585763963245185, -16.32273178359054], [-60.585763963245185, -16.331714936431737], [-60.59474711608637, -16.331714936431737], [-60.59474711608637, -16.34968124211413], [-60.60373026892756, -16.34968124211413], [-60.60373026892756, -16.358664394955326], [-60.61271342176876, -16.358664394955326], [-60.61271342176876, -16.34968124211413], [-60.621696574609956, -16.34968124211413], [-60.621696574609956, -16.358664394955326], [-60.63067972745115, -16.358664394955326], [-60.63067972745115, -16.34968124211413], [-60.63966288029235, -16.34968124211413], [-60.63966288029235, -16.358664394955326], [-60.648646033133545, -16.358664394955326], [-60.648646033133545, -16.385613853478915], [-60.63067972745115, -16.385613853478915], [-60.63067972745115, -16.403580159161294], [-60.63966288029235, -16.403580159161294], [-60.63966288029235, -16.394597006320097], [-60.648646033133545, -16.394597006320097], [-60.648646033133545, -16.403580159161294], [-60.63966288029235, -16.403580159161294], [-60.63966288029235, -16.41256331200249], [-60.648646033133545, -16.41256331200249], [-60.648646033133545, -16.421546464843686], [-60.63966288029235, -16.421546464843686], [-60.63966288029235, -16.41256331200249], [-60.63067972745115, -16.41256331200249], [-60.63067972745115, -16.430529617684883], [-60.61271342176876, -16.430529617684883], [-60.61271342176876, -16.43951277052608], [-60.60373026892756, -16.43951277052608], [-60.60373026892756, -16.448495923367275], [-60.59474711608637, -16.448495923367275], [-60.59474711608637, -16.45747907620847], [-60.60373026892756, -16.45747907620847], [-60.60373026892756, -16.466462229049668], [-60.59474711608637, -16.466462229049668], [-60.59474711608637, -16.45747907620847], [-60.585763963245185, -16.45747907620847], [-60.585763963245185, -16.448495923367275], [-60.56779765756279, -16.448495923367275], [-60.56779765756279, -16.45747907620847], [-60.57678081040399, -16.45747907620847], [-60.57678081040399, -16.466462229049668], [-60.56779765756279, -16.466462229049668], [-60.56779765756279, -16.45747907620847], [-60.558814504721596, -16.45747907620847], [-60.558814504721596, -16.448495923367275], [-60.56779765756279, -16.448495923367275], [-60.56779765756279, -16.43951277052608], [-60.5498313518804, -16.43951277052608], [-60.5498313518804, -16.430529617684883], [-60.56779765756279, -16.430529617684883], [-60.56779765756279, -16.43951277052608], [-60.585763963245185, -16.43951277052608], [-60.585763963245185, -16.430529617684883], [-60.59474711608637, -16.430529617684883], [-60.59474711608637, -16.421546464843686], [-60.56779765756279, -16.421546464843686], [-60.56779765756279, -16.41256331200249], [-60.558814504721596, -16.41256331200249], [-60.558814504721596, -16.421546464843686], [-60.5498313518804, -16.421546464843686], [-60.5498313518804, -16.403580159161294], [-60.5408481990392, -16.403580159161294], [-60.5408481990392, -16.41256331200249], [-60.53186504619801, -16.41256331200249], [-60.53186504619801, -16.403580159161294], [-60.52288189335681, -16.403580159161294], [-60.52288189335681, -16.430529617684883], [-60.53186504619801, -16.430529617684883], [-60.53186504619801, -16.448495923367275], [-60.513898740515614, -16.448495923367275], [-60.513898740515614, -16.45747907620847], [-60.50491558767442, -16.45747907620847], [-60.50491558767442, -16.43951277052608], [-60.486949281992025, -16.43951277052608], [-60.486949281992025, -16.448495923367275], [-60.49593243483322, -16.448495923367275], [-60.49593243483322, -16.466462229049668], [-60.50491558767442, -16.466462229049668], [-60.50491558767442, -16.475445381890864], [-60.513898740515614, -16.475445381890864], [-60.513898740515614, -16.493411687573257], [-60.486949281992025, -16.493411687573257], [-60.486949281992025, -16.50239484041444], [-60.45999982346845, -16.50239484041444], [-60.45999982346845, -16.511377993255635], [-60.451016670627254, -16.511377993255635], [-60.451016670627254, -16.50239484041444], [-60.44203351778606, -16.50239484041444], [-60.44203351778606, -16.520361146096832], [-60.451016670627254, -16.520361146096832], [-60.451016670627254, -16.529344298938028], [-60.45999982346845, -16.529344298938028], [-60.45999982346845, -16.556293757461617], [-60.47796612915083, -16.556293757461617], [-60.47796612915083, -16.57426006314401], [-60.486949281992025, -16.57426006314401], [-60.486949281992025, -16.583243215985206], [-60.49593243483322, -16.583243215985206], [-60.49593243483322, -16.592226368826402]], [[-60.558814504721596, -16.367647547796523], [-60.558814504721596, -16.34968124211413], [-60.57678081040399, -16.34968124211413], [-60.57678081040399, -16.358664394955326], [-60.56779765756279, -16.358664394955326], [-60.56779765756279, -16.367647547796523], [-60.558814504721596, -16.367647547796523]], [[-60.397117753580076, -16.367647547796523], [-60.397117753580076, -16.358664394955326], [-60.41508405926247, -16.358664394955326], [-60.41508405926247, -16.367647547796523], [-60.397117753580076, -16.367647547796523]], [[-60.43305036494486, -16.37663070063772], [-60.43305036494486, -16.358664394955326], [-60.44203351778606, -16.358664394955326], [-60.44203351778606, -16.37663070063772], [-60.43305036494486, -16.37663070063772]], [[-60.61271342176876, -16.385613853478915], [-60.61271342176876, -16.37663070063772], [-60.621696574609956, -16.37663070063772], [-60.621696574609956, -16.385613853478915], [-60.61271342176876, -16.385613853478915]], [[-60.513898740515614, -16.394597006320097], [-60.513898740515614, -16.385613853478915], [-60.52288189335681, -16.385613853478915], [-60.52288189335681, -16.394597006320097], [-60.513898740515614, -16.394597006320097]], [[-60.621696574609956, -16.41256331200249], [-60.621696574609956, -16.403580159161294], [-60.63067972745115, -16.403580159161294], [-60.63067972745115, -16.41256331200249], [-60.621696574609956, -16.41256331200249]], [[-60.56779765756279, -16.41256331200249], [-60.56779765756279, -16.394597006320097], [-60.585763963245185, -16.394597006320097], [-60.585763963245185, -16.403580159161294], [-60.57678081040399, -16.403580159161294], [-60.57678081040399, -16.41256331200249], [-60.56779765756279, -16.41256331200249]], [[-60.334235683691716, -16.394597006320097], [-60.334235683691716, -16.385613853478915], [-60.34321883653291, -16.385613853478915], [-60.34321883653291, -16.394597006320097], [-60.334235683691716, -16.394597006320097]], [[-60.23542100243857, -16.30476547790815], [-60.23542100243857, -16.295782325066952], [-60.24440415527977, -16.295782325066952], [-60.24440415527977, -16.30476547790815], [-60.23542100243857, -16.30476547790815]], [[-60.24440415527977, -16.313748630749345], [-60.24440415527977, -16.30476547790815], [-60.25338730812095, -16.30476547790815], [-60.25338730812095, -16.313748630749345], [-60.24440415527977, -16.313748630749345]], [[-60.24440415527977, -16.358664394955326], [-60.24440415527977, -16.34968124211413], [-60.25338730812095, -16.34968124211413], [-60.25338730812095, -16.358664394955326], [-60.24440415527977, -16.358664394955326]], [[-60.21745469675618, -16.358664394955326], [-60.21745469675618, -16.34968124211413], [-60.20847154391498, -16.34968124211413], [-60.20847154391498, -16.340698089272934], [-60.21745469675618, -16.340698089272934], [-60.21745469675618, -16.331714936431737], [-60.20847154391498, -16.331714936431737], [-60.20847154391498, -16.32273178359054], [-60.199488391073785, -16.32273178359054], [-60.199488391073785, -16.313748630749345], [-60.21745469675618, -16.313748630749345], [-60.21745469675618, -16.30476547790815], [-60.23542100243857, -16.30476547790815], [-60.23542100243857, -16.313748630749345], [-60.226437849597374, -16.313748630749345], [-60.226437849597374, -16.32273178359054], [-60.23542100243857, -16.32273178359054], [-60.23542100243857, -16.313748630749345], [-60.24440415527977, -16.313748630749345], [-60.24440415527977, -16.331714936431737], [-60.23542100243857, -16.331714936431737], [-60.23542100243857, -16.358664394955326], [-60.21745469675618, -16.358664394955326]], [[-60.109656862661836, -16.313748630749345], [-60.109656862661836, -16.30476547790815], [-60.11864001550303, -16.30476547790815], [-60.11864001550303, -16.313748630749345], [-60.109656862661836, -16.313748630749345]], [[-60.12762316834423, -16.32273178359054], [-60.12762316834423, -16.30476547790815], [-60.13660632118541, -16.30476547790815], [-60.13660632118541, -16.32273178359054], [-60.12762316834423, -16.32273178359054]], [[-60.11864001550303, -16.331714936431737], [-60.11864001550303, -16.32273178359054], [-60.12762316834423, -16.32273178359054], [-60.12762316834423, -16.331714936431737], [-60.11864001550303, -16.331714936431737]], [[-60.10067370982064, -16.340698089272934], [-60.10067370982064, -16.32273178359054], [-60.109656862661836, -16.32273178359054], [-60.109656862661836, -16.340698089272934], [-60.10067370982064, -16.340698089272934]], [[-60.04677479277346, -16.340698089272934], [-60.04677479277346, -16.331714936431737], [-60.05575794561466, -16.331714936431737], [-60.05575794561466, -16.340698089272934], [-60.04677479277346, -16.340698089272934]], [[-60.154572626867804, -16.34968124211413], [-60.154572626867804, -16.340698089272934], [-60.163555779709, -16.340698089272934], [-60.163555779709, -16.34968124211413], [-60.154572626867804, -16.34968124211413]], [[-60.109656862661836, -16.34968124211413], [-60.109656862661836, -16.340698089272934], [-60.11864001550303, -16.340698089272934], [-60.11864001550303, -16.34968124211413], [-60.109656862661836, -16.34968124211413]], [[-60.05575794561466, -16.34968124211413], [-60.05575794561466, -16.340698089272934], [-60.064741098455855, -16.340698089272934], [-60.064741098455855, -16.34968124211413], [-60.05575794561466, -16.34968124211413]], [[-60.14558947402661, -16.358664394955326], [-60.14558947402661, -16.34968124211413], [-60.154572626867804, -16.34968124211413], [-60.154572626867804, -16.358664394955326], [-60.14558947402661, -16.358664394955326]], [[-60.23542100243857, -16.367647547796523], [-60.23542100243857, -16.358664394955326], [-60.24440415527977, -16.358664394955326], [-60.24440415527977, -16.367647547796523], [-60.23542100243857, -16.367647547796523]], [[-60.11864001550303, -16.367647547796523], [-60.11864001550303, -16.34968124211413], [-60.13660632118541, -16.34968124211413], [-60.13660632118541, -16.358664394955326], [-60.12762316834423, -16.358664394955326], [-60.12762316834423, -16.367647547796523], [-60.11864001550303, -16.367647547796523]], [[-60.07372425129705, -16.367647547796523], [-60.07372425129705, -16.358664394955326], [-60.08270740413825, -16.358664394955326], [-60.08270740413825, -16.367647547796523], [-60.07372425129705, -16.367647547796523]], [[-60.24440415527977, -16.37663070063772], [-60.24440415527977, -16.367647547796523], [-60.25338730812095, -16.367647547796523], [-60.25338730812095, -16.37663070063772], [-60.24440415527977, -16.37663070063772]], [[-60.163555779709, -16.37663070063772], [-60.163555779709, -16.34968124211413], [-60.1725389325502, -16.34968124211413], [-60.1725389325502, -16.358664394955326], [-60.18152208539139, -16.358664394955326], [-60.18152208539139, -16.367647547796523], [-60.1725389325502, -16.367647547796523], [-60.1725389325502, -16.37663070063772], [-60.163555779709, -16.37663070063772]], [[-60.05575794561466, -16.385613853478915], [-60.05575794561466, -16.37663070063772], [-60.07372425129705, -16.37663070063772], [-60.07372425129705, -16.385613853478915], [-60.05575794561466, -16.385613853478915]], [[-60.02880848709107, -16.385613853478915], [-60.02880848709107, -16.37663070063772], [-60.037791639932266, -16.37663070063772], [-60.037791639932266, -16.385613853478915], [-60.02880848709107, -16.385613853478915]], [[-60.091690556979444, -16.394597006320097], [-60.091690556979444, -16.37663070063772], [-60.10067370982064, -16.37663070063772], [-60.10067370982064, -16.394597006320097], [-60.091690556979444, -16.394597006320097]], [[-60.11864001550303, -16.403580159161294], [-60.11864001550303, -16.394597006320097], [-60.109656862661836, -16.394597006320097], [-60.109656862661836, -16.367647547796523], [-60.11864001550303, -16.367647547796523], [-60.11864001550303, -16.37663070063772], [-60.12762316834423, -16.37663070063772], [-60.12762316834423, -16.403580159161294], [-60.11864001550303, -16.403580159161294]], [[-60.05575794561466, -16.403580159161294], [-60.05575794561466, -16.394597006320097], [-60.064741098455855, -16.394597006320097], [-60.064741098455855, -16.403580159161294], [-60.05575794561466, -16.403580159161294]], [[-60.1725389325502, -16.41256331200249], [-60.1725389325502, -16.394597006320097], [-60.154572626867804, -16.394597006320097], [-60.154572626867804, -16.385613853478915], [-60.1725389325502, -16.385613853478915], [-60.1725389325502, -16.37663070063772], [-60.199488391073785, -16.37663070063772], [-60.199488391073785, -16.385613853478915], [-60.18152208539139, -16.385613853478915], [-60.18152208539139, -16.394597006320097], [-60.19050523823259, -16.394597006320097], [-60.19050523823259, -16.403580159161294], [-60.18152208539139, -16.403580159161294], [-60.18152208539139, -16.41256331200249], [-60.1725389325502, -16.41256331200249]], [[-60.14558947402661, -16.41256331200249], [-60.14558947402661, -16.403580159161294], [-60.163555779709, -16.403580159161294], [-60.163555779709, -16.41256331200249], [-60.14558947402661, -16.41256331200249]], [[-60.18152208539139, -16.421546464843686], [-60.18152208539139, -16.41256331200249], [-60.19050523823259, -16.41256331200249], [-60.19050523823259, -16.421546464843686], [-60.18152208539139, -16.421546464843686]], [[-60.60373026892756, -16.430529617684883], [-60.60373026892756, -16.421546464843686], [-60.61271342176876, -16.421546464843686], [-60.61271342176876, -16.430529617684883], [-60.60373026892756, -16.430529617684883]], [[-60.486949281992025, -16.430529617684883], [-60.486949281992025, -16.421546464843686], [-60.49593243483322, -16.421546464843686], [-60.49593243483322, -16.430529617684883], [-60.486949281992025, -16.430529617684883]], [[-60.199488391073785, -16.430529617684883], [-60.199488391073785, -16.41256331200249], [-60.20847154391498, -16.41256331200249], [-60.20847154391498, -16.430529617684883], [-60.199488391073785, -16.430529617684883]], [[-60.12762316834423, -16.430529617684883], [-60.12762316834423, -16.41256331200249], [-60.14558947402661, -16.41256331200249], [-60.14558947402661, -16.421546464843686], [-60.13660632118541, -16.421546464843686], [-60.13660632118541, -16.430529617684883], [-60.12762316834423, -16.430529617684883]], [[-60.10067370982064, -16.430529617684883], [-60.10067370982064, -16.421546464843686], [-60.091690556979444, -16.421546464843686], [-60.091690556979444, -16.41256331200249], [-60.109656862661836, -16.41256331200249], [-60.109656862661836, -16.421546464843686], [-60.11864001550303, -16.421546464843686], [-60.11864001550303, -16.430529617684883], [-60.10067370982064, -16.430529617684883]], [[-60.513898740515614, -16.43951277052608], [-60.513898740515614, -16.430529617684883], [-60.52288189335681, -16.430529617684883], [-60.52288189335681, -16.43951277052608], [-60.513898740515614, -16.43951277052608]], [[-60.47796612915083, -16.43951277052608], [-60.47796612915083, -16.430529617684883], [-60.486949281992025, -16.430529617684883], [-60.486949281992025, -16.43951277052608], [-60.47796612915083, -16.43951277052608]], [[-60.585763963245185, -16.448495923367275], [-60.585763963245185, -16.43951277052608], [-60.59474711608637, -16.43951277052608], [-60.59474711608637, -16.448495923367275], [-60.585763963245185, -16.448495923367275]], [[-60.1725389325502, -16.448495923367275], [-60.1725389325502, -16.43951277052608], [-60.163555779709, -16.43951277052608], [-60.163555779709, -16.421546464843686], [-60.1725389325502, -16.421546464843686], [-60.1725389325502, -16.430529617684883], [-60.18152208539139, -16.430529617684883], [-60.18152208539139, -16.448495923367275], [-60.1725389325502, -16.448495923367275]], [[-60.154572626867804, -16.45747907620847], [-60.154572626867804, -16.448495923367275], [-60.163555779709, -16.448495923367275], [-60.163555779709, -16.45747907620847], [-60.154572626867804, -16.45747907620847]], [[-60.45999982346845, -16.466462229049668], [-60.45999982346845, -16.45747907620847], [-60.46898297630965, -16.45747907620847], [-60.46898297630965, -16.466462229049668], [-60.45999982346845, -16.466462229049668]], [[-60.35220198937411, -16.466462229049668], [-60.35220198937411, -16.45747907620847], [-60.36118514221529, -16.45747907620847], [-60.36118514221529, -16.466462229049668], [-60.35220198937411, -16.466462229049668]], [[-60.334235683691716, -16.466462229049668], [-60.334235683691716, -16.45747907620847], [-60.34321883653291, -16.45747907620847], [-60.34321883653291, -16.466462229049668], [-60.334235683691716, -16.466462229049668]], [[-60.451016670627254, -16.475445381890864], [-60.451016670627254, -16.466462229049668], [-60.45999982346845, -16.466462229049668], [-60.45999982346845, -16.475445381890864], [-60.451016670627254, -16.475445381890864]], [[-60.34321883653291, -16.475445381890864], [-60.34321883653291, -16.466462229049668], [-60.35220198937411, -16.466462229049668], [-60.35220198937411, -16.475445381890864], [-60.34321883653291, -16.475445381890864]], [[-60.45999982346845, -16.48442853473206], [-60.45999982346845, -16.475445381890864], [-60.46898297630965, -16.475445381890864], [-60.46898297630965, -16.48442853473206], [-60.45999982346845, -16.48442853473206]], [[-60.25338730812095, -16.48442853473206], [-60.25338730812095, -16.475445381890864], [-60.27135361380334, -16.475445381890864], [-60.27135361380334, -16.48442853473206], [-60.25338730812095, -16.48442853473206]], [[-60.424067212103665, -16.529344298938028], [-60.424067212103665, -16.520361146096832], [-60.43305036494486, -16.520361146096832], [-60.43305036494486, -16.529344298938028], [-60.424067212103665, -16.529344298938028]], [[-60.40610090642127, -16.529344298938028], [-60.40610090642127, -16.520361146096832], [-60.397117753580076, -16.520361146096832], [-60.397117753580076, -16.50239484041444], [-60.41508405926247, -16.50239484041444], [-60.41508405926247, -16.493411687573257], [-60.424067212103665, -16.493411687573257], [-60.424067212103665, -16.48442853473206], [-60.43305036494486, -16.48442853473206], [-60.43305036494486, -16.50239484041444], [-60.424067212103665, -16.50239484041444], [-60.424067212103665, -16.520361146096832], [-60.41508405926247, -16.520361146096832], [-60.41508405926247, -16.529344298938028], [-60.40610090642127, -16.529344298938028]], [[-60.38813460073888, -16.529344298938028], [-60.38813460073888, -16.520361146096832], [-60.397117753580076, -16.520361146096832], [-60.397117753580076, -16.529344298938028], [-60.38813460073888, -16.529344298938028]], [[-60.43305036494486, -16.538327451779224], [-60.43305036494486, -16.529344298938028], [-60.451016670627254, -16.529344298938028], [-60.451016670627254, -16.538327451779224], [-60.43305036494486, -16.538327451779224]], [[-60.41508405926247, -16.538327451779224], [-60.41508405926247, -16.529344298938028], [-60.424067212103665, -16.529344298938028], [-60.424067212103665, -16.538327451779224], [-60.41508405926247, -16.538327451779224]], [[-60.397117753580076, -16.538327451779224], [-60.397117753580076, -16.529344298938028], [-60.40610090642127, -16.529344298938028], [-60.40610090642127, -16.538327451779224], [-60.397117753580076, -16.538327451779224]], [[-60.44203351778606, -16.556293757461617], [-60.44203351778606, -16.54731060462042], [-60.451016670627254, -16.54731060462042], [-60.451016670627254, -16.556293757461617], [-60.44203351778606, -16.556293757461617]]]}, 'id': '+13293+10195', 'properties': {'count': 719, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.47796612915083, -15.433399652312218], [-60.46898297630965, -15.433399652312218], [-60.46898297630965, -15.415433346629825], [-60.47796612915083, -15.415433346629825], [-60.47796612915083, -15.433399652312218]]]}, 'id': '+13294+10066', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.486949281992025, -15.523231180724167], [-60.46898297630965, -15.523231180724167], [-60.46898297630965, -15.51424802788297], [-60.45999982346845, -15.51424802788297], [-60.45999982346845, -15.505264875041775], [-60.451016670627254, -15.505264875041775], [-60.451016670627254, -15.496281722200578], [-60.45999982346845, -15.496281722200578], [-60.45999982346845, -15.505264875041775], [-60.46898297630965, -15.505264875041775], [-60.46898297630965, -15.51424802788297], [-60.486949281992025, -15.51424802788297], [-60.486949281992025, -15.523231180724167]]]}, 'id': '+13294+10076', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.47796612915083, -15.54119748640656], [-60.46898297630965, -15.54119748640656], [-60.46898297630965, -15.532214333565364], [-60.47796612915083, -15.532214333565364], [-60.47796612915083, -15.54119748640656]]]}, 'id': '+13294+10078', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.47796612915083, -15.882557294371978], [-60.46898297630965, -15.882557294371978], [-60.46898297630965, -15.873574141530781], [-60.45999982346845, -15.873574141530781], [-60.45999982346845, -15.864590988689585], [-60.47796612915083, -15.864590988689585], [-60.47796612915083, -15.882557294371978]]]}, 'id': '+13294+10116', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.47796612915083, -16.170018185290218], [-60.46898297630965, -16.170018185290218], [-60.46898297630965, -16.16103503244902], [-60.47796612915083, -16.16103503244902], [-60.47796612915083, -16.170018185290218]]]}, 'id': '+13294+10148', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.47796612915083, -16.18798449097261], [-60.46898297630965, -16.18798449097261], [-60.46898297630965, -16.179001338131414], [-60.47796612915083, -16.179001338131414], [-60.47796612915083, -16.18798449097261]]]}, 'id': '+13294+10150', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.47796612915083, -16.232900255178592], [-60.46898297630965, -16.232900255178592], [-60.46898297630965, -16.2149339494962], [-60.47796612915083, -16.2149339494962], [-60.47796612915083, -16.232900255178592]]]}, 'id': '+13294+10155', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.47796612915083, -16.268832866543377], [-60.46898297630965, -16.268832866543377], [-60.46898297630965, -16.250866560860985], [-60.47796612915083, -16.250866560860985], [-60.47796612915083, -16.268832866543377]]]}, 'id': '+13294+10159', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.486949281992025, -16.27781601938456], [-60.46898297630965, -16.27781601938456], [-60.46898297630965, -16.268832866543377], [-60.47796612915083, -16.268832866543377], [-60.47796612915083, -16.25984971370218], [-60.49593243483322, -16.25984971370218], [-60.49593243483322, -16.268832866543377], [-60.486949281992025, -16.268832866543377], [-60.486949281992025, -16.27781601938456]]]}, 'id': '+13294+10160', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.47796612915083, -13.879314210785438], [-60.46898297630965, -13.879314210785438], [-60.46898297630965, -13.870331057944242], [-60.47796612915083, -13.870331057944242], [-60.47796612915083, -13.879314210785438]]]}, 'id': '+13294+9893', 'properties': {'count': 1, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.46898297630965, -15.496281722200578], [-60.45999982346845, -15.496281722200578], [-60.45999982346845, -15.487298569359382], [-60.46898297630965, -15.487298569359382], [-60.46898297630965, -15.496281722200578]]]}, 'id': '+13295+10073', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.46898297630965, -15.505264875041775], [-60.45999982346845, -15.505264875041775], [-60.45999982346845, -15.496281722200578], [-60.46898297630965, -15.496281722200578], [-60.46898297630965, -15.505264875041775]]]}, 'id': '+13295+10074', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.46898297630965, -15.568146944930149], [-60.45999982346845, -15.568146944930149], [-60.45999982346845, -15.559163792088953], [-60.46898297630965, -15.559163792088953], [-60.46898297630965, -15.568146944930149]]]}, 'id': '+13295+10081', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.46898297630965, -15.577130097771345], [-60.45999982346845, -15.577130097771345], [-60.45999982346845, -15.568146944930149], [-60.46898297630965, -15.568146944930149], [-60.46898297630965, -15.577130097771345]]]}, 'id': '+13295+10082', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.46898297630965, -15.73882684891285], [-60.45999982346845, -15.73882684891285], [-60.45999982346845, -15.729843696071654], [-60.46898297630965, -15.729843696071654], [-60.46898297630965, -15.73882684891285]]]}, 'id': '+13295+10100', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.46898297630965, -15.846624683007192], [-60.45999982346845, -15.846624683007192], [-60.45999982346845, -15.8286583773248], [-60.46898297630965, -15.8286583773248], [-60.46898297630965, -15.846624683007192]]]}, 'id': '+13295+10112', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.46898297630965, -15.855607835848389], [-60.45999982346845, -15.855607835848389], [-60.45999982346845, -15.846624683007192], [-60.451016670627254, -15.846624683007192], [-60.451016670627254, -15.837641530165996], [-60.45999982346845, -15.837641530165996], [-60.45999982346845, -15.846624683007192], [-60.46898297630965, -15.846624683007192], [-60.46898297630965, -15.837641530165996], [-60.47796612915083, -15.837641530165996], [-60.47796612915083, -15.846624683007192], [-60.46898297630965, -15.846624683007192], [-60.46898297630965, -15.855607835848389]]]}, 'id': '+13295+10113', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.46898297630965, -16.12510242108425], [-60.45999982346845, -16.12510242108425], [-60.45999982346845, -16.116119268243054], [-60.46898297630965, -16.116119268243054], [-60.46898297630965, -16.12510242108425]]]}, 'id': '+13295+10143', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.46898297630965, -16.331714936431737], [-60.45999982346845, -16.331714936431737], [-60.45999982346845, -16.32273178359054], [-60.46898297630965, -16.32273178359054], [-60.46898297630965, -16.331714936431737]]]}, 'id': '+13295+10166', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.46898297630965, -13.906263669309027], [-60.45999982346845, -13.906263669309027], [-60.45999982346845, -13.89728051646783], [-60.46898297630965, -13.89728051646783], [-60.46898297630965, -13.906263669309027]]]}, 'id': '+13295+9896', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.45999982346845, -15.388483888106236], [-60.451016670627254, -15.388483888106236], [-60.451016670627254, -15.370517582423844], [-60.44203351778606, -15.370517582423844], [-60.44203351778606, -15.361534429582647], [-60.451016670627254, -15.361534429582647], [-60.451016670627254, -15.352551276741465], [-60.424067212103665, -15.352551276741465], [-60.424067212103665, -15.343568123900269], [-60.43305036494486, -15.343568123900269], [-60.43305036494486, -15.334584971059073], [-60.44203351778606, -15.334584971059073], [-60.44203351778606, -15.325601818217876], [-60.451016670627254, -15.325601818217876], [-60.451016670627254, -15.31661866537668], [-60.44203351778606, -15.31661866537668], [-60.44203351778606, -15.307635512535484], [-60.45999982346845, -15.307635512535484], [-60.45999982346845, -15.31661866537668], [-60.46898297630965, -15.31661866537668], [-60.46898297630965, -15.307635512535484], [-60.486949281992025, -15.307635512535484], [-60.486949281992025, -15.325601818217876], [-60.47796612915083, -15.325601818217876], [-60.47796612915083, -15.334584971059073], [-60.486949281992025, -15.334584971059073], [-60.486949281992025, -15.352551276741465], [-60.47796612915083, -15.352551276741465], [-60.47796612915083, -15.361534429582647], [-60.45999982346845, -15.361534429582647], [-60.45999982346845, -15.370517582423844], [-60.46898297630965, -15.370517582423844], [-60.46898297630965, -15.37950073526504], [-60.45999982346845, -15.37950073526504], [-60.45999982346845, -15.388483888106236]], [[-60.45999982346845, -15.352551276741465], [-60.45999982346845, -15.343568123900269], [-60.47796612915083, -15.343568123900269], [-60.47796612915083, -15.352551276741465], [-60.45999982346845, -15.352551276741465]]]}, 'id': '+13296+10061', 'properties': {'count': 31, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.46898297630965, -15.460349110835807], [-60.451016670627254, -15.460349110835807], [-60.451016670627254, -15.45136595799461], [-60.45999982346845, -15.45136595799461], [-60.45999982346845, -15.442382805153414], [-60.46898297630965, -15.442382805153414], [-60.46898297630965, -15.460349110835807]]]}, 'id': '+13296+10069', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.45999982346845, -15.60407955629492], [-60.451016670627254, -15.60407955629492], [-60.451016670627254, -15.595096403453724], [-60.45999982346845, -15.595096403453724], [-60.45999982346845, -15.60407955629492]]]}, 'id': '+13296+10085', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.45999982346845, -15.747810001754047], [-60.451016670627254, -15.747810001754047], [-60.451016670627254, -15.73882684891285], [-60.45999982346845, -15.73882684891285], [-60.45999982346845, -15.747810001754047]]]}, 'id': '+13296+10101', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.45999982346845, -15.819675224483603], [-60.451016670627254, -15.819675224483603], [-60.451016670627254, -15.810692071642421], [-60.45999982346845, -15.810692071642421], [-60.45999982346845, -15.819675224483603]]]}, 'id': '+13296+10109', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.45999982346845, -15.891540447213174], [-60.451016670627254, -15.891540447213174], [-60.451016670627254, -15.882557294371978], [-60.45999982346845, -15.882557294371978], [-60.45999982346845, -15.891540447213174]]]}, 'id': '+13296+10117', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.45999982346845, -16.143068726766643], [-60.451016670627254, -16.143068726766643], [-60.451016670627254, -16.134085573925447], [-60.45999982346845, -16.134085573925447], [-60.45999982346845, -16.143068726766643]]]}, 'id': '+13296+10145', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.45999982346845, -16.15205187960784], [-60.451016670627254, -16.15205187960784], [-60.451016670627254, -16.143068726766643], [-60.45999982346845, -16.143068726766643], [-60.45999982346845, -16.15205187960784]]]}, 'id': '+13296+10146', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.45999982346845, -16.179001338131414], [-60.451016670627254, -16.179001338131414], [-60.451016670627254, -16.16103503244902], [-60.45999982346845, -16.16103503244902], [-60.45999982346845, -16.179001338131414]]]}, 'id': '+13296+10149', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.45999982346845, -16.196967643813807], [-60.451016670627254, -16.196967643813807], [-60.451016670627254, -16.18798449097261], [-60.45999982346845, -16.18798449097261], [-60.45999982346845, -16.196967643813807]]]}, 'id': '+13296+10151', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.45999982346845, -16.37663070063772], [-60.451016670627254, -16.37663070063772], [-60.451016670627254, -16.358664394955326], [-60.47796612915083, -16.358664394955326], [-60.47796612915083, -16.367647547796523], [-60.45999982346845, -16.367647547796523], [-60.45999982346845, -16.37663070063772]]]}, 'id': '+13296+10171', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.45999982346845, -13.86134790510306], [-60.451016670627254, -13.86134790510306], [-60.451016670627254, -13.852364752261863], [-60.45999982346845, -13.852364752261863], [-60.45999982346845, -13.86134790510306]]]}, 'id': '+13296+9891', 'properties': {'count': 1, 'label': 9}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.45999982346845, -15.559163792088953], [-60.44203351778606, -15.559163792088953], [-60.44203351778606, -15.550180639247756], [-60.45999982346845, -15.550180639247756], [-60.45999982346845, -15.559163792088953]]]}, 'id': '+13297+10080', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.451016670627254, -15.792725765960029], [-60.44203351778606, -15.792725765960029], [-60.44203351778606, -15.783742613118832], [-60.451016670627254, -15.783742613118832], [-60.451016670627254, -15.792725765960029]]]}, 'id': '+13297+10106', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.451016670627254, -15.873574141530781], [-60.44203351778606, -15.873574141530781], [-60.44203351778606, -15.864590988689585], [-60.451016670627254, -15.864590988689585], [-60.451016670627254, -15.855607835848389], [-60.45999982346845, -15.855607835848389], [-60.45999982346845, -15.864590988689585], [-60.451016670627254, -15.864590988689585], [-60.451016670627254, -15.873574141530781]]]}, 'id': '+13297+10115', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.451016670627254, -15.882557294371978], [-60.44203351778606, -15.882557294371978], [-60.44203351778606, -15.873574141530781], [-60.451016670627254, -15.873574141530781], [-60.451016670627254, -15.882557294371978]]]}, 'id': '+13297+10116', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.451016670627254, -16.071203504037072], [-60.44203351778606, -16.071203504037072], [-60.44203351778606, -16.062220351195876], [-60.451016670627254, -16.062220351195876], [-60.451016670627254, -16.071203504037072]]]}, 'id': '+13297+10137', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.451016670627254, -16.116119268243054], [-60.44203351778606, -16.116119268243054], [-60.44203351778606, -16.09815296256066], [-60.45999982346845, -16.09815296256066], [-60.45999982346845, -16.089169809719465], [-60.46898297630965, -16.089169809719465], [-60.46898297630965, -16.107136115401858], [-60.451016670627254, -16.107136115401858], [-60.451016670627254, -16.116119268243054]]]}, 'id': '+13297+10142', 'properties': {'count': 5, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.451016670627254, -16.170018185290218], [-60.44203351778606, -16.170018185290218], [-60.44203351778606, -16.16103503244902], [-60.424067212103665, -16.16103503244902], [-60.424067212103665, -16.15205187960784], [-60.43305036494486, -16.15205187960784], [-60.43305036494486, -16.143068726766643], [-60.41508405926247, -16.143068726766643], [-60.41508405926247, -16.134085573925447], [-60.424067212103665, -16.134085573925447], [-60.424067212103665, -16.12510242108425], [-60.44203351778606, -16.12510242108425], [-60.44203351778606, -16.116119268243054], [-60.45999982346845, -16.116119268243054], [-60.45999982346845, -16.134085573925447], [-60.46898297630965, -16.134085573925447], [-60.46898297630965, -16.143068726766643], [-60.47796612915083, -16.143068726766643], [-60.47796612915083, -16.15205187960784], [-60.45999982346845, -16.15205187960784], [-60.45999982346845, -16.134085573925447], [-60.451016670627254, -16.134085573925447], [-60.451016670627254, -16.170018185290218]], [[-60.43305036494486, -16.143068726766643], [-60.43305036494486, -16.134085573925447], [-60.44203351778606, -16.134085573925447], [-60.44203351778606, -16.143068726766643], [-60.43305036494486, -16.143068726766643]]]}, 'id': '+13297+10148', 'properties': {'count': 18, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.451016670627254, -16.196967643813807], [-60.44203351778606, -16.196967643813807], [-60.44203351778606, -16.18798449097261], [-60.451016670627254, -16.18798449097261], [-60.451016670627254, -16.196967643813807]]]}, 'id': '+13297+10151', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.451016670627254, -16.232900255178592], [-60.44203351778606, -16.232900255178592], [-60.44203351778606, -16.2149339494962], [-60.43305036494486, -16.2149339494962], [-60.43305036494486, -16.205950796655003], [-60.451016670627254, -16.205950796655003], [-60.451016670627254, -16.196967643813807], [-60.46898297630965, -16.196967643813807], [-60.46898297630965, -16.18798449097261], [-60.47796612915083, -16.18798449097261], [-60.47796612915083, -16.179001338131414], [-60.49593243483322, -16.179001338131414], [-60.49593243483322, -16.170018185290218], [-60.486949281992025, -16.170018185290218], [-60.486949281992025, -16.16103503244902], [-60.49593243483322, -16.16103503244902], [-60.49593243483322, -16.170018185290218], [-60.513898740515614, -16.170018185290218], [-60.513898740515614, -16.179001338131414], [-60.52288189335681, -16.179001338131414], [-60.52288189335681, -16.18798449097261], [-60.50491558767442, -16.18798449097261], [-60.50491558767442, -16.205950796655003], [-60.513898740515614, -16.205950796655003], [-60.513898740515614, -16.2149339494962], [-60.52288189335681, -16.2149339494962], [-60.52288189335681, -16.223917102337396], [-60.513898740515614, -16.223917102337396], [-60.513898740515614, -16.2149339494962], [-60.49593243483322, -16.2149339494962], [-60.49593243483322, -16.223917102337396], [-60.47796612915083, -16.223917102337396], [-60.47796612915083, -16.2149339494962], [-60.451016670627254, -16.2149339494962], [-60.451016670627254, -16.232900255178592]], [[-60.49593243483322, -16.18798449097261], [-60.49593243483322, -16.179001338131414], [-60.50491558767442, -16.179001338131414], [-60.50491558767442, -16.18798449097261], [-60.49593243483322, -16.18798449097261]], [[-60.486949281992025, -16.205950796655003], [-60.486949281992025, -16.18798449097261], [-60.49593243483322, -16.18798449097261], [-60.49593243483322, -16.205950796655003], [-60.486949281992025, -16.205950796655003]], [[-60.46898297630965, -16.205950796655003], [-60.46898297630965, -16.196967643813807], [-60.47796612915083, -16.196967643813807], [-60.47796612915083, -16.205950796655003], [-60.46898297630965, -16.205950796655003]], [[-60.47796612915083, -16.2149339494962], [-60.47796612915083, -16.205950796655003], [-60.486949281992025, -16.205950796655003], [-60.486949281992025, -16.2149339494962], [-60.47796612915083, -16.2149339494962]]]}, 'id': '+13297+10155', 'properties': {'count': 27, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.451016670627254, -13.933213127832616], [-60.44203351778606, -13.933213127832616], [-60.44203351778606, -13.92422997499142], [-60.451016670627254, -13.92422997499142], [-60.451016670627254, -13.933213127832616]]]}, 'id': '+13297+9899', 'properties': {'count': 1, 'label': 4}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.451016670627254, -13.942196280673812], [-60.44203351778606, -13.942196280673812], [-60.44203351778606, -13.933213127832616], [-60.451016670627254, -13.933213127832616], [-60.451016670627254, -13.942196280673812]]]}, 'id': '+13297+9900', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.44203351778606, -15.487298569359382], [-60.43305036494486, -15.487298569359382], [-60.43305036494486, -15.478315416518186], [-60.44203351778606, -15.478315416518186], [-60.44203351778606, -15.469332263677003], [-60.451016670627254, -15.469332263677003], [-60.451016670627254, -15.478315416518186], [-60.44203351778606, -15.478315416518186], [-60.44203351778606, -15.487298569359382]]]}, 'id': '+13298+10072', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.44203351778606, -15.532214333565364], [-60.43305036494486, -15.532214333565364], [-60.43305036494486, -15.523231180724167], [-60.44203351778606, -15.523231180724167], [-60.44203351778606, -15.532214333565364]]]}, 'id': '+13298+10077', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.45999982346845, -15.54119748640656], [-60.43305036494486, -15.54119748640656], [-60.43305036494486, -15.532214333565364], [-60.44203351778606, -15.532214333565364], [-60.44203351778606, -15.523231180724167], [-60.43305036494486, -15.523231180724167], [-60.43305036494486, -15.51424802788297], [-60.44203351778606, -15.51424802788297], [-60.44203351778606, -15.523231180724167], [-60.451016670627254, -15.523231180724167], [-60.451016670627254, -15.532214333565364], [-60.45999982346845, -15.532214333565364], [-60.45999982346845, -15.54119748640656]]]}, 'id': '+13298+10078', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.451016670627254, -15.577130097771345], [-60.43305036494486, -15.577130097771345], [-60.43305036494486, -15.559163792088953], [-60.41508405926247, -15.559163792088953], [-60.41508405926247, -15.550180639247756], [-60.424067212103665, -15.550180639247756], [-60.424067212103665, -15.54119748640656], [-60.43305036494486, -15.54119748640656], [-60.43305036494486, -15.550180639247756], [-60.44203351778606, -15.550180639247756], [-60.44203351778606, -15.568146944930149], [-60.451016670627254, -15.568146944930149], [-60.451016670627254, -15.577130097771345]]]}, 'id': '+13298+10082', 'properties': {'count': 7, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.44203351778606, -15.720860543230458], [-60.43305036494486, -15.720860543230458], [-60.43305036494486, -15.711877390389262], [-60.44203351778606, -15.711877390389262], [-60.44203351778606, -15.720860543230458]]]}, 'id': '+13298+10098', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.44203351778606, -15.774759460277636], [-60.43305036494486, -15.774759460277636], [-60.43305036494486, -15.76577630743644], [-60.44203351778606, -15.76577630743644], [-60.44203351778606, -15.774759460277636]]]}, 'id': '+13298+10104', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.44203351778606, -15.936456211419141], [-60.43305036494486, -15.936456211419141], [-60.43305036494486, -15.92747305857796], [-60.44203351778606, -15.92747305857796], [-60.44203351778606, -15.936456211419141]]]}, 'id': '+13298+10122', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.44203351778606, -16.05323719835468], [-60.43305036494486, -16.05323719835468], [-60.43305036494486, -16.044254045513483], [-60.44203351778606, -16.044254045513483], [-60.44203351778606, -16.05323719835468]]]}, 'id': '+13298+10135', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.44203351778606, -16.143068726766643], [-60.43305036494486, -16.143068726766643], [-60.43305036494486, -16.134085573925447], [-60.44203351778606, -16.134085573925447], [-60.44203351778606, -16.143068726766643]]]}, 'id': '+13298+10145', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.45999982346845, -16.18798449097261], [-60.43305036494486, -16.18798449097261], [-60.43305036494486, -16.179001338131414], [-60.45999982346845, -16.179001338131414], [-60.45999982346845, -16.18798449097261]]]}, 'id': '+13298+10150', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.44203351778606, -16.232900255178592], [-60.43305036494486, -16.232900255178592], [-60.43305036494486, -16.2149339494962], [-60.424067212103665, -16.2149339494962], [-60.424067212103665, -16.205950796655003], [-60.43305036494486, -16.205950796655003], [-60.43305036494486, -16.2149339494962], [-60.44203351778606, -16.2149339494962], [-60.44203351778606, -16.232900255178592]]]}, 'id': '+13298+10155', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.44203351778606, -14.05897726760935], [-60.43305036494486, -14.05897726760935], [-60.43305036494486, -14.049994114768154], [-60.424067212103665, -14.049994114768154], [-60.424067212103665, -14.041010961926958], [-60.41508405926247, -14.041010961926958], [-60.41508405926247, -14.023044656244565], [-60.40610090642127, -14.023044656244565], [-60.40610090642127, -13.996095197720976], [-60.41508405926247, -13.996095197720976], [-60.41508405926247, -13.978128892038598], [-60.424067212103665, -13.978128892038598], [-60.424067212103665, -13.969145739197401], [-60.43305036494486, -13.969145739197401], [-60.43305036494486, -13.942196280673812], [-60.451016670627254, -13.942196280673812], [-60.451016670627254, -13.92422997499142], [-60.45999982346845, -13.92422997499142], [-60.45999982346845, -13.906263669309027], [-60.46898297630965, -13.906263669309027], [-60.46898297630965, -13.89728051646783], [-60.47796612915083, -13.89728051646783], [-60.47796612915083, -13.906263669309027], [-60.486949281992025, -13.906263669309027], [-60.486949281992025, -13.89728051646783], [-60.49593243483322, -13.89728051646783], [-60.49593243483322, -13.906263669309027], [-60.486949281992025, -13.906263669309027], [-60.486949281992025, -13.915246822150223], [-60.50491558767442, -13.915246822150223], [-60.50491558767442, -13.906263669309027], [-60.53186504619801, -13.906263669309027], [-60.53186504619801, -13.915246822150223], [-60.50491558767442, -13.915246822150223], [-60.50491558767442, -13.942196280673812], [-60.486949281992025, -13.942196280673812], [-60.486949281992025, -13.951179433515009], [-60.46898297630965, -13.951179433515009], [-60.46898297630965, -13.960162586356205], [-60.47796612915083, -13.960162586356205], [-60.47796612915083, -13.978128892038598], [-60.486949281992025, -13.978128892038598], [-60.486949281992025, -13.98711204487978], [-60.49593243483322, -13.98711204487978], [-60.49593243483322, -13.996095197720976], [-60.486949281992025, -13.996095197720976], [-60.486949281992025, -13.98711204487978], [-60.47796612915083, -13.98711204487978], [-60.47796612915083, -14.005078350562172], [-60.45999982346845, -14.005078350562172], [-60.45999982346845, -13.996095197720976], [-60.44203351778606, -13.996095197720976], [-60.44203351778606, -14.005078350562172], [-60.451016670627254, -14.005078350562172], [-60.451016670627254, -14.014061503403369], [-60.46898297630965, -14.014061503403369], [-60.46898297630965, -14.023044656244565], [-60.451016670627254, -14.023044656244565], [-60.451016670627254, -14.014061503403369], [-60.44203351778606, -14.014061503403369], [-60.44203351778606, -14.032027809085761], [-60.46898297630965, -14.032027809085761], [-60.46898297630965, -14.041010961926958], [-60.451016670627254, -14.041010961926958], [-60.451016670627254, -14.049994114768154], [-60.44203351778606, -14.049994114768154], [-60.44203351778606, -14.05897726760935]], [[-60.45999982346845, -13.933213127832616], [-60.45999982346845, -13.92422997499142], [-60.46898297630965, -13.92422997499142], [-60.46898297630965, -13.933213127832616], [-60.45999982346845, -13.933213127832616]], [[-60.47796612915083, -13.942196280673812], [-60.47796612915083, -13.933213127832616], [-60.486949281992025, -13.933213127832616], [-60.486949281992025, -13.942196280673812], [-60.47796612915083, -13.942196280673812]], [[-60.451016670627254, -13.951179433515009], [-60.451016670627254, -13.942196280673812], [-60.45999982346845, -13.942196280673812], [-60.45999982346845, -13.951179433515009], [-60.451016670627254, -13.951179433515009]], [[-60.44203351778606, -13.960162586356205], [-60.44203351778606, -13.951179433515009], [-60.451016670627254, -13.951179433515009], [-60.451016670627254, -13.960162586356205], [-60.44203351778606, -13.960162586356205]], [[-60.45999982346845, -13.978128892038598], [-60.45999982346845, -13.969145739197401], [-60.451016670627254, -13.969145739197401], [-60.451016670627254, -13.960162586356205], [-60.46898297630965, -13.960162586356205], [-60.46898297630965, -13.978128892038598], [-60.45999982346845, -13.978128892038598]], [[-60.46898297630965, -13.98711204487978], [-60.46898297630965, -13.978128892038598], [-60.47796612915083, -13.978128892038598], [-60.47796612915083, -13.98711204487978], [-60.46898297630965, -13.98711204487978]], [[-60.424067212103665, -13.996095197720976], [-60.424067212103665, -13.978128892038598], [-60.43305036494486, -13.978128892038598], [-60.43305036494486, -13.996095197720976], [-60.424067212103665, -13.996095197720976]], [[-60.424067212103665, -14.023044656244565], [-60.424067212103665, -14.005078350562172], [-60.43305036494486, -14.005078350562172], [-60.43305036494486, -14.023044656244565], [-60.424067212103665, -14.023044656244565]], [[-60.43305036494486, -14.049994114768154], [-60.43305036494486, -14.041010961926958], [-60.44203351778606, -14.041010961926958], [-60.44203351778606, -14.049994114768154], [-60.43305036494486, -14.049994114768154]]]}, 'id': '+13298+9913', 'properties': {'count': 79, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.43305036494486, -15.289669206853091], [-60.424067212103665, -15.289669206853091], [-60.424067212103665, -15.280686054011895], [-60.43305036494486, -15.280686054011895], [-60.43305036494486, -15.271702901170698], [-60.44203351778606, -15.271702901170698], [-60.44203351778606, -15.253736595488306], [-60.451016670627254, -15.253736595488306], [-60.451016670627254, -15.280686054011895], [-60.43305036494486, -15.280686054011895], [-60.43305036494486, -15.289669206853091]]]}, 'id': '+13299+10050', 'properties': {'count': 5, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.44203351778606, -15.370517582423844], [-60.424067212103665, -15.370517582423844], [-60.424067212103665, -15.361534429582647], [-60.44203351778606, -15.361534429582647], [-60.44203351778606, -15.370517582423844]]]}, 'id': '+13299+10059', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.43305036494486, -15.505264875041775], [-60.424067212103665, -15.505264875041775], [-60.424067212103665, -15.496281722200578], [-60.43305036494486, -15.496281722200578], [-60.43305036494486, -15.505264875041775]]]}, 'id': '+13299+10074', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.43305036494486, -15.568146944930149], [-60.424067212103665, -15.568146944930149], [-60.424067212103665, -15.559163792088953], [-60.43305036494486, -15.559163792088953], [-60.43305036494486, -15.568146944930149]]]}, 'id': '+13299+10081', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.43305036494486, -15.729843696071654], [-60.424067212103665, -15.729843696071654], [-60.424067212103665, -15.702894237548065], [-60.44203351778606, -15.702894237548065], [-60.44203351778606, -15.711877390389262], [-60.43305036494486, -15.711877390389262], [-60.43305036494486, -15.729843696071654]]]}, 'id': '+13299+10099', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.43305036494486, -15.92747305857796], [-60.424067212103665, -15.92747305857796], [-60.424067212103665, -15.918489905736763], [-60.43305036494486, -15.918489905736763], [-60.43305036494486, -15.92747305857796]]]}, 'id': '+13299+10121', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.43305036494486, -15.954422517101534], [-60.424067212103665, -15.954422517101534], [-60.424067212103665, -15.936456211419141], [-60.43305036494486, -15.936456211419141], [-60.43305036494486, -15.954422517101534]]]}, 'id': '+13299+10124', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.43305036494486, -16.196967643813807], [-60.424067212103665, -16.196967643813807], [-60.424067212103665, -16.18798449097261], [-60.43305036494486, -16.18798449097261], [-60.43305036494486, -16.196967643813807]]]}, 'id': '+13299+10151', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.43305036494486, -16.250866560860985], [-60.424067212103665, -16.250866560860985], [-60.424067212103665, -16.24188340801979], [-60.43305036494486, -16.24188340801979], [-60.43305036494486, -16.250866560860985]]]}, 'id': '+13299+10157', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.43305036494486, -16.313748630749345], [-60.424067212103665, -16.313748630749345], [-60.424067212103665, -16.30476547790815], [-60.43305036494486, -16.30476547790815], [-60.43305036494486, -16.313748630749345]]]}, 'id': '+13299+10164', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.424067212103665, -15.352551276741465], [-60.41508405926247, -15.352551276741465], [-60.41508405926247, -15.343568123900269], [-60.424067212103665, -15.343568123900269], [-60.424067212103665, -15.352551276741465]]]}, 'id': '+13300+10057', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.424067212103665, -15.505264875041775], [-60.41508405926247, -15.505264875041775], [-60.41508405926247, -15.496281722200578], [-60.424067212103665, -15.496281722200578], [-60.424067212103665, -15.505264875041775]]]}, 'id': '+13300+10074', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.424067212103665, -15.550180639247756], [-60.41508405926247, -15.550180639247756], [-60.41508405926247, -15.532214333565364], [-60.424067212103665, -15.532214333565364], [-60.424067212103665, -15.550180639247756]]]}, 'id': '+13300+10079', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.424067212103665, -15.666961626183294], [-60.41508405926247, -15.666961626183294], [-60.41508405926247, -15.657978473342098], [-60.424067212103665, -15.657978473342098], [-60.424067212103665, -15.666961626183294]]]}, 'id': '+13300+10092', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.43305036494486, -15.693911084706883], [-60.41508405926247, -15.693911084706883], [-60.41508405926247, -15.684927931865687], [-60.43305036494486, -15.684927931865687], [-60.43305036494486, -15.693911084706883]]]}, 'id': '+13300+10095', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.424067212103665, -15.774759460277636], [-60.41508405926247, -15.774759460277636], [-60.41508405926247, -15.76577630743644], [-60.424067212103665, -15.76577630743644], [-60.424067212103665, -15.774759460277636]]]}, 'id': '+13300+10104', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.424067212103665, -16.062220351195876], [-60.41508405926247, -16.062220351195876], [-60.41508405926247, -16.05323719835468], [-60.424067212103665, -16.05323719835468], [-60.424067212103665, -16.062220351195876]]]}, 'id': '+13300+10136', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.424067212103665, -16.16103503244902], [-60.41508405926247, -16.16103503244902], [-60.41508405926247, -16.15205187960784], [-60.424067212103665, -16.15205187960784], [-60.424067212103665, -16.16103503244902]]]}, 'id': '+13300+10147', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.424067212103665, -16.170018185290218], [-60.41508405926247, -16.170018185290218], [-60.41508405926247, -16.16103503244902], [-60.424067212103665, -16.16103503244902], [-60.424067212103665, -16.170018185290218]]]}, 'id': '+13300+10148', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.41508405926247, -15.361534429582647], [-60.40610090642127, -15.361534429582647], [-60.40610090642127, -15.334584971059073], [-60.41508405926247, -15.334584971059073], [-60.41508405926247, -15.361534429582647]]]}, 'id': '+13301+10058', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.424067212103665, -15.388483888106236], [-60.40610090642127, -15.388483888106236], [-60.40610090642127, -15.370517582423844], [-60.424067212103665, -15.370517582423844], [-60.424067212103665, -15.388483888106236]]]}, 'id': '+13301+10061', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.41508405926247, -15.424416499471022], [-60.40610090642127, -15.424416499471022], [-60.40610090642127, -15.415433346629825], [-60.38813460073888, -15.415433346629825], [-60.38813460073888, -15.40645019378863], [-60.41508405926247, -15.40645019378863], [-60.41508405926247, -15.424416499471022]]]}, 'id': '+13301+10065', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.41508405926247, -15.523231180724167], [-60.40610090642127, -15.523231180724167], [-60.40610090642127, -15.51424802788297], [-60.41508405926247, -15.51424802788297], [-60.41508405926247, -15.523231180724167]]]}, 'id': '+13301+10076', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.41508405926247, -15.756793154595243], [-60.40610090642127, -15.756793154595243], [-60.40610090642127, -15.747810001754047], [-60.41508405926247, -15.747810001754047], [-60.41508405926247, -15.756793154595243]]]}, 'id': '+13301+10102', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.41508405926247, -16.044254045513483], [-60.40610090642127, -16.044254045513483], [-60.40610090642127, -16.0352708926723], [-60.41508405926247, -16.0352708926723], [-60.41508405926247, -16.044254045513483]]]}, 'id': '+13301+10134', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.41508405926247, -16.24188340801979], [-60.40610090642127, -16.24188340801979], [-60.40610090642127, -16.232900255178592], [-60.41508405926247, -16.232900255178592], [-60.41508405926247, -16.24188340801979]]]}, 'id': '+13301+10156', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.41508405926247, -16.27781601938456], [-60.40610090642127, -16.27781601938456], [-60.40610090642127, -16.268832866543377], [-60.41508405926247, -16.268832866543377], [-60.41508405926247, -16.27781601938456]]]}, 'id': '+13301+10160', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.41508405926247, -13.996095197720976], [-60.40610090642127, -13.996095197720976], [-60.40610090642127, -13.98711204487978], [-60.41508405926247, -13.98711204487978], [-60.41508405926247, -13.996095197720976]]]}, 'id': '+13301+9906', 'properties': {'count': 1, 'label': 8}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.424067212103665, -15.31661866537668], [-60.397117753580076, -15.31661866537668], [-60.397117753580076, -15.298652359694287], [-60.40610090642127, -15.298652359694287], [-60.40610090642127, -15.280686054011895], [-60.424067212103665, -15.280686054011895], [-60.424067212103665, -15.289669206853091], [-60.41508405926247, -15.289669206853091], [-60.41508405926247, -15.307635512535484], [-60.424067212103665, -15.307635512535484], [-60.424067212103665, -15.31661866537668]]]}, 'id': '+13302+10053', 'properties': {'count': 8, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.40610090642127, -15.54119748640656], [-60.397117753580076, -15.54119748640656], [-60.397117753580076, -15.532214333565364], [-60.40610090642127, -15.532214333565364], [-60.40610090642127, -15.54119748640656]]]}, 'id': '+13302+10078', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.40610090642127, -15.67594477902449], [-60.397117753580076, -15.67594477902449], [-60.397117753580076, -15.666961626183294], [-60.40610090642127, -15.666961626183294], [-60.40610090642127, -15.67594477902449]]]}, 'id': '+13302+10093', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.40610090642127, -15.693911084706883], [-60.397117753580076, -15.693911084706883], [-60.397117753580076, -15.684927931865687], [-60.40610090642127, -15.684927931865687], [-60.40610090642127, -15.693911084706883]]]}, 'id': '+13302+10095', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.40610090642127, -15.945439364260338], [-60.397117753580076, -15.945439364260338], [-60.397117753580076, -15.936456211419141], [-60.40610090642127, -15.936456211419141], [-60.40610090642127, -15.945439364260338]]]}, 'id': '+13302+10123', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.40610090642127, -15.999338281307516], [-60.397117753580076, -15.999338281307516], [-60.397117753580076, -15.981371975625123], [-60.40610090642127, -15.981371975625123], [-60.40610090642127, -15.999338281307516]]]}, 'id': '+13302+10129', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.40610090642127, -16.15205187960784], [-60.397117753580076, -16.15205187960784], [-60.397117753580076, -16.143068726766643], [-60.40610090642127, -16.143068726766643], [-60.40610090642127, -16.12510242108425], [-60.397117753580076, -16.12510242108425], [-60.397117753580076, -16.107136115401858], [-60.38813460073888, -16.107136115401858], [-60.38813460073888, -16.09815296256066], [-60.397117753580076, -16.09815296256066], [-60.397117753580076, -16.107136115401858], [-60.40610090642127, -16.107136115401858], [-60.40610090642127, -16.12510242108425], [-60.41508405926247, -16.12510242108425], [-60.41508405926247, -16.08018665687827], [-60.424067212103665, -16.08018665687827], [-60.424067212103665, -16.071203504037072], [-60.43305036494486, -16.071203504037072], [-60.43305036494486, -16.08018665687827], [-60.451016670627254, -16.08018665687827], [-60.451016670627254, -16.089169809719465], [-60.43305036494486, -16.089169809719465], [-60.43305036494486, -16.08018665687827], [-60.424067212103665, -16.08018665687827], [-60.424067212103665, -16.09815296256066], [-60.43305036494486, -16.09815296256066], [-60.43305036494486, -16.116119268243054], [-60.424067212103665, -16.116119268243054], [-60.424067212103665, -16.134085573925447], [-60.41508405926247, -16.134085573925447], [-60.41508405926247, -16.143068726766643], [-60.40610090642127, -16.143068726766643], [-60.40610090642127, -16.15205187960784]]]}, 'id': '+13302+10146', 'properties': {'count': 17, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.40610090642127, -16.170018185290218], [-60.397117753580076, -16.170018185290218], [-60.397117753580076, -16.16103503244902], [-60.40610090642127, -16.16103503244902], [-60.40610090642127, -16.170018185290218]]]}, 'id': '+13302+10148', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.41508405926247, -16.205950796655003], [-60.397117753580076, -16.205950796655003], [-60.397117753580076, -16.196967643813807], [-60.41508405926247, -16.196967643813807], [-60.41508405926247, -16.205950796655003]]]}, 'id': '+13302+10152', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.41508405926247, -16.223917102337396], [-60.397117753580076, -16.223917102337396], [-60.397117753580076, -16.2149339494962], [-60.41508405926247, -16.2149339494962], [-60.41508405926247, -16.223917102337396]]]}, 'id': '+13302+10154', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.40610090642127, -16.232900255178592], [-60.397117753580076, -16.232900255178592], [-60.397117753580076, -16.223917102337396], [-60.40610090642127, -16.223917102337396], [-60.40610090642127, -16.232900255178592]]]}, 'id': '+13302+10155', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.40610090642127, -16.295782325066952], [-60.397117753580076, -16.295782325066952], [-60.397117753580076, -16.286799172225756], [-60.40610090642127, -16.286799172225756], [-60.40610090642127, -16.295782325066952]]]}, 'id': '+13302+10162', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.397117753580076, -15.334584971059073], [-60.38813460073888, -15.334584971059073], [-60.38813460073888, -15.325601818217876], [-60.397117753580076, -15.325601818217876], [-60.397117753580076, -15.334584971059073]]]}, 'id': '+13303+10055', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.397117753580076, -15.577130097771345], [-60.38813460073888, -15.577130097771345], [-60.38813460073888, -15.568146944930149], [-60.397117753580076, -15.568146944930149], [-60.397117753580076, -15.577130097771345]]]}, 'id': '+13303+10082', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.397117753580076, -15.801708918801225], [-60.38813460073888, -15.801708918801225], [-60.38813460073888, -15.783742613118832], [-60.379151447897684, -15.783742613118832], [-60.379151447897684, -15.774759460277636], [-60.40610090642127, -15.774759460277636], [-60.40610090642127, -15.76577630743644], [-60.41508405926247, -15.76577630743644], [-60.41508405926247, -15.774759460277636], [-60.40610090642127, -15.774759460277636], [-60.40610090642127, -15.792725765960029], [-60.397117753580076, -15.792725765960029], [-60.397117753580076, -15.801708918801225]]]}, 'id': '+13303+10107', 'properties': {'count': 7, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.397117753580076, -16.089169809719465], [-60.38813460073888, -16.089169809719465], [-60.38813460073888, -16.071203504037072], [-60.397117753580076, -16.071203504037072], [-60.397117753580076, -16.062220351195876], [-60.40610090642127, -16.062220351195876], [-60.40610090642127, -16.08018665687827], [-60.397117753580076, -16.08018665687827], [-60.397117753580076, -16.089169809719465]]]}, 'id': '+13303+10139', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.397117753580076, -16.179001338131414], [-60.38813460073888, -16.179001338131414], [-60.38813460073888, -16.16103503244902], [-60.397117753580076, -16.16103503244902], [-60.397117753580076, -16.15205187960784], [-60.41508405926247, -16.15205187960784], [-60.41508405926247, -16.16103503244902], [-60.397117753580076, -16.16103503244902], [-60.397117753580076, -16.179001338131414]]]}, 'id': '+13303+10149', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.38813460073888, -15.424416499471022], [-60.379151447897684, -15.424416499471022], [-60.379151447897684, -15.415433346629825], [-60.38813460073888, -15.415433346629825], [-60.38813460073888, -15.424416499471022]]]}, 'id': '+13304+10065', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.38813460073888, -15.469332263677003], [-60.379151447897684, -15.469332263677003], [-60.379151447897684, -15.460349110835807], [-60.38813460073888, -15.460349110835807], [-60.38813460073888, -15.469332263677003]]]}, 'id': '+13304+10070', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.38813460073888, -15.595096403453724], [-60.379151447897684, -15.595096403453724], [-60.379151447897684, -15.586113250612527], [-60.38813460073888, -15.586113250612527], [-60.38813460073888, -15.595096403453724]]]}, 'id': '+13304+10084', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.38813460073888, -15.711877390389262], [-60.379151447897684, -15.711877390389262], [-60.379151447897684, -15.702894237548065], [-60.36118514221529, -15.702894237548065], [-60.36118514221529, -15.693911084706883], [-60.37016829505649, -15.693911084706883], [-60.37016829505649, -15.67594477902449], [-60.38813460073888, -15.67594477902449], [-60.38813460073888, -15.711877390389262]]]}, 'id': '+13304+10097', 'properties': {'count': 8, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.38813460073888, -15.720860543230458], [-60.379151447897684, -15.720860543230458], [-60.379151447897684, -15.711877390389262], [-60.38813460073888, -15.711877390389262], [-60.38813460073888, -15.720860543230458]]]}, 'id': '+13304+10098', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.38813460073888, -15.747810001754047], [-60.379151447897684, -15.747810001754047], [-60.379151447897684, -15.73882684891285], [-60.38813460073888, -15.73882684891285], [-60.38813460073888, -15.747810001754047]]]}, 'id': '+13304+10101', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.38813460073888, -15.891540447213174], [-60.379151447897684, -15.891540447213174], [-60.379151447897684, -15.882557294371978], [-60.37016829505649, -15.882557294371978], [-60.37016829505649, -15.873574141530781], [-60.379151447897684, -15.873574141530781], [-60.379151447897684, -15.864590988689585], [-60.38813460073888, -15.864590988689585], [-60.38813460073888, -15.873574141530781], [-60.379151447897684, -15.873574141530781], [-60.379151447897684, -15.882557294371978], [-60.38813460073888, -15.882557294371978], [-60.38813460073888, -15.891540447213174]]]}, 'id': '+13304+10117', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.38813460073888, -15.972388822783927], [-60.379151447897684, -15.972388822783927], [-60.379151447897684, -15.96340566994273], [-60.38813460073888, -15.96340566994273], [-60.38813460073888, -15.972388822783927]]]}, 'id': '+13304+10126', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.38813460073888, -16.044254045513483], [-60.379151447897684, -16.044254045513483], [-60.379151447897684, -16.01730458698991], [-60.397117753580076, -16.01730458698991], [-60.397117753580076, -16.026287739831105], [-60.38813460073888, -16.026287739831105], [-60.38813460073888, -16.044254045513483]]]}, 'id': '+13304+10134', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.38813460073888, -16.286799172225756], [-60.379151447897684, -16.286799172225756], [-60.379151447897684, -16.27781601938456], [-60.38813460073888, -16.27781601938456], [-60.38813460073888, -16.268832866543377], [-60.40610090642127, -16.268832866543377], [-60.40610090642127, -16.25984971370218], [-60.41508405926247, -16.25984971370218], [-60.41508405926247, -16.268832866543377], [-60.424067212103665, -16.268832866543377], [-60.424067212103665, -16.27781601938456], [-60.41508405926247, -16.27781601938456], [-60.41508405926247, -16.268832866543377], [-60.40610090642127, -16.268832866543377], [-60.40610090642127, -16.27781601938456], [-60.38813460073888, -16.27781601938456], [-60.38813460073888, -16.286799172225756]]]}, 'id': '+13304+10161', 'properties': {'count': 5, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.38813460073888, -16.331714936431737], [-60.379151447897684, -16.331714936431737], [-60.379151447897684, -16.32273178359054], [-60.38813460073888, -16.32273178359054], [-60.38813460073888, -16.331714936431737]]]}, 'id': '+13304+10166', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.38813460073888, -16.394597006320097], [-60.379151447897684, -16.394597006320097], [-60.379151447897684, -16.385613853478915], [-60.38813460073888, -16.385613853478915], [-60.38813460073888, -16.394597006320097]]]}, 'id': '+13304+10173', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.379151447897684, -15.325601818217876], [-60.37016829505649, -15.325601818217876], [-60.37016829505649, -15.31661866537668], [-60.379151447897684, -15.31661866537668], [-60.379151447897684, -15.325601818217876]]]}, 'id': '+13305+10054', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.379151447897684, -15.559163792088953], [-60.37016829505649, -15.559163792088953], [-60.37016829505649, -15.550180639247756], [-60.379151447897684, -15.550180639247756], [-60.379151447897684, -15.54119748640656], [-60.38813460073888, -15.54119748640656], [-60.38813460073888, -15.550180639247756], [-60.379151447897684, -15.550180639247756], [-60.379151447897684, -15.559163792088953]]]}, 'id': '+13305+10080', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.379151447897684, -15.801708918801225], [-60.37016829505649, -15.801708918801225], [-60.37016829505649, -15.792725765960029], [-60.379151447897684, -15.792725765960029], [-60.379151447897684, -15.801708918801225]]]}, 'id': '+13305+10107', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.379151447897684, -15.8286583773248], [-60.37016829505649, -15.8286583773248], [-60.37016829505649, -15.819675224483603], [-60.379151447897684, -15.819675224483603], [-60.379151447897684, -15.8286583773248]]]}, 'id': '+13305+10110', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.379151447897684, -16.08018665687827], [-60.37016829505649, -16.08018665687827], [-60.37016829505649, -16.071203504037072], [-60.36118514221529, -16.071203504037072], [-60.36118514221529, -16.062220351195876], [-60.37016829505649, -16.062220351195876], [-60.37016829505649, -16.05323719835468], [-60.379151447897684, -16.05323719835468], [-60.379151447897684, -16.044254045513483], [-60.37016829505649, -16.044254045513483], [-60.37016829505649, -16.026287739831105], [-60.36118514221529, -16.026287739831105], [-60.36118514221529, -16.008321434148712], [-60.397117753580076, -16.008321434148712], [-60.397117753580076, -15.999338281307516], [-60.37016829505649, -15.999338281307516], [-60.37016829505649, -15.99035512846632], [-60.35220198937411, -15.99035512846632], [-60.35220198937411, -15.981371975625123], [-60.34321883653291, -15.981371975625123], [-60.34321883653291, -15.99035512846632], [-60.334235683691716, -15.99035512846632], [-60.334235683691716, -15.999338281307516], [-60.31626937800932, -15.999338281307516], [-60.31626937800932, -16.008321434148712], [-60.30728622516813, -16.008321434148712], [-60.30728622516813, -15.999338281307516], [-60.31626937800932, -15.999338281307516], [-60.31626937800932, -15.99035512846632], [-60.334235683691716, -15.99035512846632], [-60.334235683691716, -15.981371975625123], [-60.34321883653291, -15.981371975625123], [-60.34321883653291, -15.96340566994273], [-60.334235683691716, -15.96340566994273], [-60.334235683691716, -15.972388822783927], [-60.32525253085052, -15.972388822783927], [-60.32525253085052, -15.96340566994273], [-60.334235683691716, -15.96340566994273], [-60.334235683691716, -15.954422517101534], [-60.31626937800932, -15.954422517101534], [-60.31626937800932, -15.96340566994273], [-60.30728622516813, -15.96340566994273], [-60.30728622516813, -15.954422517101534], [-60.29830307232693, -15.954422517101534], [-60.29830307232693, -15.945439364260338], [-60.30728622516813, -15.945439364260338], [-60.30728622516813, -15.92747305857796], [-60.29830307232693, -15.92747305857796], [-60.29830307232693, -15.909506752895567], [-60.27135361380334, -15.909506752895567], [-60.27135361380334, -15.918489905736763], [-60.262370460962146, -15.918489905736763], [-60.262370460962146, -15.909506752895567], [-60.27135361380334, -15.909506752895567], [-60.27135361380334, -15.90052360005437], [-60.24440415527977, -15.90052360005437], [-60.24440415527977, -15.891540447213174], [-60.25338730812095, -15.891540447213174], [-60.25338730812095, -15.873574141530781], [-60.262370460962146, -15.873574141530781], [-60.262370460962146, -15.855607835848389], [-60.24440415527977, -15.855607835848389], [-60.24440415527977, -15.882557294371978], [-60.23542100243857, -15.882557294371978], [-60.23542100243857, -15.855607835848389], [-60.226437849597374, -15.855607835848389], [-60.226437849597374, -15.819675224483603], [-60.20847154391498, -15.819675224483603], [-60.20847154391498, -15.8286583773248], [-60.199488391073785, -15.8286583773248], [-60.199488391073785, -15.819675224483603], [-60.20847154391498, -15.819675224483603], [-60.20847154391498, -15.810692071642421], [-60.23542100243857, -15.810692071642421], [-60.23542100243857, -15.792725765960029], [-60.24440415527977, -15.792725765960029], [-60.24440415527977, -15.783742613118832], [-60.25338730812095, -15.783742613118832], [-60.25338730812095, -15.774759460277636], [-60.23542100243857, -15.774759460277636], [-60.23542100243857, -15.756793154595243], [-60.21745469675618, -15.756793154595243], [-60.21745469675618, -15.76577630743644], [-60.20847154391498, -15.76577630743644], [-60.20847154391498, -15.729843696071654], [-60.21745469675618, -15.729843696071654], [-60.21745469675618, -15.720860543230458], [-60.226437849597374, -15.720860543230458], [-60.226437849597374, -15.711877390389262], [-60.21745469675618, -15.711877390389262], [-60.21745469675618, -15.702894237548065], [-60.20847154391498, -15.702894237548065], [-60.20847154391498, -15.693911084706883], [-60.21745469675618, -15.693911084706883], [-60.21745469675618, -15.684927931865687], [-60.226437849597374, -15.684927931865687], [-60.226437849597374, -15.711877390389262], [-60.23542100243857, -15.711877390389262], [-60.23542100243857, -15.702894237548065], [-60.25338730812095, -15.702894237548065], [-60.25338730812095, -15.729843696071654], [-60.28033676664454, -15.729843696071654], [-60.28033676664454, -15.73882684891285], [-60.29830307232693, -15.73882684891285], [-60.29830307232693, -15.747810001754047], [-60.289319919485735, -15.747810001754047], [-60.289319919485735, -15.756793154595243], [-60.29830307232693, -15.756793154595243], [-60.29830307232693, -15.783742613118832], [-60.28033676664454, -15.783742613118832], [-60.28033676664454, -15.792725765960029], [-60.289319919485735, -15.792725765960029], [-60.289319919485735, -15.801708918801225], [-60.27135361380334, -15.801708918801225], [-60.27135361380334, -15.810692071642421], [-60.25338730812095, -15.810692071642421], [-60.25338730812095, -15.8286583773248], [-60.262370460962146, -15.8286583773248], [-60.262370460962146, -15.819675224483603], [-60.27135361380334, -15.819675224483603], [-60.27135361380334, -15.8286583773248], [-60.262370460962146, -15.8286583773248], [-60.262370460962146, -15.837641530165996], [-60.289319919485735, -15.837641530165996], [-60.289319919485735, -15.819675224483603], [-60.29830307232693, -15.819675224483603], [-60.29830307232693, -15.837641530165996], [-60.30728622516813, -15.837641530165996], [-60.30728622516813, -15.846624683007192], [-60.32525253085052, -15.846624683007192], [-60.32525253085052, -15.855607835848389], [-60.334235683691716, -15.855607835848389], [-60.334235683691716, -15.873574141530781], [-60.34321883653291, -15.873574141530781], [-60.34321883653291, -15.864590988689585], [-60.35220198937411, -15.864590988689585], [-60.35220198937411, -15.873574141530781], [-60.34321883653291, -15.873574141530781], [-60.34321883653291, -15.891540447213174], [-60.37016829505649, -15.891540447213174], [-60.37016829505649, -15.918489905736763], [-60.36118514221529, -15.918489905736763], [-60.36118514221529, -15.92747305857796], [-60.334235683691716, -15.92747305857796], [-60.334235683691716, -15.936456211419141], [-60.35220198937411, -15.936456211419141], [-60.35220198937411, -15.945439364260338], [-60.34321883653291, -15.945439364260338], [-60.34321883653291, -15.954422517101534], [-60.35220198937411, -15.954422517101534], [-60.35220198937411, -15.981371975625123], [-60.37016829505649, -15.981371975625123], [-60.37016829505649, -15.972388822783927], [-60.36118514221529, -15.972388822783927], [-60.36118514221529, -15.96340566994273], [-60.37016829505649, -15.96340566994273], [-60.37016829505649, -15.954422517101534], [-60.38813460073888, -15.954422517101534], [-60.38813460073888, -15.96340566994273], [-60.40610090642127, -15.96340566994273], [-60.40610090642127, -15.972388822783927], [-60.38813460073888, -15.972388822783927], [-60.38813460073888, -15.96340566994273], [-60.37016829505649, -15.96340566994273], [-60.37016829505649, -15.972388822783927], [-60.379151447897684, -15.972388822783927], [-60.379151447897684, -15.981371975625123], [-60.397117753580076, -15.981371975625123], [-60.397117753580076, -15.999338281307516], [-60.40610090642127, -15.999338281307516], [-60.40610090642127, -15.981371975625123], [-60.41508405926247, -15.981371975625123], [-60.41508405926247, -15.972388822783927], [-60.424067212103665, -15.972388822783927], [-60.424067212103665, -15.99035512846632], [-60.43305036494486, -15.99035512846632], [-60.43305036494486, -15.972388822783927], [-60.44203351778606, -15.972388822783927], [-60.44203351778606, -15.981371975625123], [-60.451016670627254, -15.981371975625123], [-60.451016670627254, -15.96340566994273], [-60.43305036494486, -15.96340566994273], [-60.43305036494486, -15.945439364260338], [-60.451016670627254, -15.945439364260338], [-60.451016670627254, -15.954422517101534], [-60.45999982346845, -15.954422517101534], [-60.45999982346845, -15.90052360005437], [-60.451016670627254, -15.90052360005437], [-60.451016670627254, -15.891540447213174], [-60.45999982346845, -15.891540447213174], [-60.45999982346845, -15.90052360005437], [-60.486949281992025, -15.90052360005437], [-60.486949281992025, -15.909506752895567], [-60.49593243483322, -15.909506752895567], [-60.49593243483322, -15.90052360005437], [-60.50491558767442, -15.90052360005437], [-60.50491558767442, -15.909506752895567], [-60.53186504619801, -15.909506752895567], [-60.53186504619801, -15.90052360005437], [-60.52288189335681, -15.90052360005437], [-60.52288189335681, -15.882557294371978], [-60.5498313518804, -15.882557294371978], [-60.5498313518804, -15.873574141530781], [-60.558814504721596, -15.873574141530781], [-60.558814504721596, -15.882557294371978], [-60.5498313518804, -15.882557294371978], [-60.5498313518804, -15.891540447213174], [-60.53186504619801, -15.891540447213174], [-60.53186504619801, -15.90052360005437], [-60.558814504721596, -15.90052360005437], [-60.558814504721596, -15.909506752895567], [-60.56779765756279, -15.909506752895567], [-60.56779765756279, -15.918489905736763], [-60.558814504721596, -15.918489905736763], [-60.558814504721596, -15.909506752895567], [-60.5498313518804, -15.909506752895567], [-60.5498313518804, -15.92747305857796], [-60.558814504721596, -15.92747305857796], [-60.558814504721596, -15.936456211419141], [-60.56779765756279, -15.936456211419141], [-60.56779765756279, -15.945439364260338], [-60.5498313518804, -15.945439364260338], [-60.5498313518804, -15.954422517101534], [-60.5408481990392, -15.954422517101534], [-60.5408481990392, -15.945439364260338], [-60.5498313518804, -15.945439364260338], [-60.5498313518804, -15.92747305857796], [-60.5408481990392, -15.92747305857796], [-60.5408481990392, -15.918489905736763], [-60.513898740515614, -15.918489905736763], [-60.513898740515614, -15.92747305857796], [-60.49593243483322, -15.92747305857796], [-60.49593243483322, -15.936456211419141], [-60.50491558767442, -15.936456211419141], [-60.50491558767442, -15.945439364260338], [-60.52288189335681, -15.945439364260338], [-60.52288189335681, -15.954422517101534], [-60.53186504619801, -15.954422517101534], [-60.53186504619801, -15.972388822783927], [-60.5408481990392, -15.972388822783927], [-60.5408481990392, -15.981371975625123], [-60.558814504721596, -15.981371975625123], [-60.558814504721596, -15.999338281307516], [-60.5498313518804, -15.999338281307516], [-60.5498313518804, -16.008321434148712], [-60.5408481990392, -16.008321434148712], [-60.5408481990392, -16.01730458698991], [-60.53186504619801, -16.01730458698991], [-60.53186504619801, -16.008321434148712], [-60.5408481990392, -16.008321434148712], [-60.5408481990392, -15.999338281307516], [-60.5498313518804, -15.999338281307516], [-60.5498313518804, -15.99035512846632], [-60.5408481990392, -15.99035512846632], [-60.5408481990392, -15.981371975625123], [-60.53186504619801, -15.981371975625123], [-60.53186504619801, -15.972388822783927], [-60.50491558767442, -15.972388822783927], [-60.50491558767442, -15.96340566994273], [-60.513898740515614, -15.96340566994273], [-60.513898740515614, -15.954422517101534], [-60.50491558767442, -15.954422517101534], [-60.50491558767442, -15.945439364260338], [-60.486949281992025, -15.945439364260338], [-60.486949281992025, -15.936456211419141], [-60.47796612915083, -15.936456211419141], [-60.47796612915083, -15.96340566994273], [-60.46898297630965, -15.96340566994273], [-60.46898297630965, -15.981371975625123], [-60.47796612915083, -15.981371975625123], [-60.47796612915083, -15.972388822783927], [-60.486949281992025, -15.972388822783927], [-60.486949281992025, -15.954422517101534], [-60.49593243483322, -15.954422517101534], [-60.49593243483322, -15.972388822783927], [-60.486949281992025, -15.972388822783927], [-60.486949281992025, -15.999338281307516], [-60.50491558767442, -15.999338281307516], [-60.50491558767442, -16.008321434148712], [-60.486949281992025, -16.008321434148712], [-60.486949281992025, -15.999338281307516], [-60.47796612915083, -15.999338281307516], [-60.47796612915083, -15.99035512846632], [-60.46898297630965, -15.99035512846632], [-60.46898297630965, -15.999338281307516], [-60.45999982346845, -15.999338281307516], [-60.45999982346845, -16.01730458698991], [-60.44203351778606, -16.01730458698991], [-60.44203351778606, -16.0352708926723], [-60.46898297630965, -16.0352708926723], [-60.46898297630965, -16.044254045513483], [-60.47796612915083, -16.044254045513483], [-60.47796612915083, -16.062220351195876], [-60.46898297630965, -16.062220351195876], [-60.46898297630965, -16.071203504037072], [-60.45999982346845, -16.071203504037072], [-60.45999982346845, -16.062220351195876], [-60.46898297630965, -16.062220351195876], [-60.46898297630965, -16.044254045513483], [-60.45999982346845, -16.044254045513483], [-60.45999982346845, -16.05323719835468], [-60.44203351778606, -16.05323719835468], [-60.44203351778606, -16.044254045513483], [-60.43305036494486, -16.044254045513483], [-60.43305036494486, -16.062220351195876], [-60.424067212103665, -16.062220351195876], [-60.424067212103665, -16.044254045513483], [-60.41508405926247, -16.044254045513483], [-60.41508405926247, -16.071203504037072], [-60.40610090642127, -16.071203504037072], [-60.40610090642127, -16.05323719835468], [-60.379151447897684, -16.05323719835468], [-60.379151447897684, -16.062220351195876], [-60.37016829505649, -16.062220351195876], [-60.37016829505649, -16.071203504037072], [-60.379151447897684, -16.071203504037072], [-60.379151447897684, -16.08018665687827]], [[-60.49593243483322, -15.918489905736763], [-60.49593243483322, -15.909506752895567], [-60.50491558767442, -15.909506752895567], [-60.50491558767442, -15.918489905736763], [-60.49593243483322, -15.918489905736763]], [[-60.46898297630965, -15.918489905736763], [-60.46898297630965, -15.909506752895567], [-60.47796612915083, -15.909506752895567], [-60.47796612915083, -15.918489905736763], [-60.46898297630965, -15.918489905736763]], [[-60.486949281992025, -15.92747305857796], [-60.486949281992025, -15.918489905736763], [-60.49593243483322, -15.918489905736763], [-60.49593243483322, -15.92747305857796], [-60.486949281992025, -15.92747305857796]], [[-60.45999982346845, -15.96340566994273], [-60.45999982346845, -15.954422517101534], [-60.46898297630965, -15.954422517101534], [-60.46898297630965, -15.96340566994273], [-60.45999982346845, -15.96340566994273]], [[-60.24440415527977, -15.76577630743644], [-60.24440415527977, -15.747810001754047], [-60.25338730812095, -15.747810001754047], [-60.25338730812095, -15.76577630743644], [-60.24440415527977, -15.76577630743644]], [[-60.262370460962146, -15.774759460277636], [-60.262370460962146, -15.76577630743644], [-60.27135361380334, -15.76577630743644], [-60.27135361380334, -15.774759460277636], [-60.262370460962146, -15.774759460277636]], [[-60.262370460962146, -15.792725765960029], [-60.262370460962146, -15.783742613118832], [-60.27135361380334, -15.783742613118832], [-60.27135361380334, -15.792725765960029], [-60.262370460962146, -15.792725765960029]], [[-60.23542100243857, -15.846624683007192], [-60.23542100243857, -15.8286583773248], [-60.25338730812095, -15.8286583773248], [-60.25338730812095, -15.837641530165996], [-60.24440415527977, -15.837641530165996], [-60.24440415527977, -15.846624683007192], [-60.23542100243857, -15.846624683007192]], [[-60.289319919485735, -15.855607835848389], [-60.289319919485735, -15.846624683007192], [-60.29830307232693, -15.846624683007192], [-60.29830307232693, -15.855607835848389], [-60.289319919485735, -15.855607835848389]], [[-60.28033676664454, -15.873574141530781], [-60.28033676664454, -15.864590988689585], [-60.289319919485735, -15.864590988689585], [-60.289319919485735, -15.873574141530781], [-60.28033676664454, -15.873574141530781]], [[-60.31626937800932, -15.891540447213174], [-60.31626937800932, -15.882557294371978], [-60.334235683691716, -15.882557294371978], [-60.334235683691716, -15.891540447213174], [-60.31626937800932, -15.891540447213174]], [[-60.27135361380334, -15.891540447213174], [-60.27135361380334, -15.882557294371978], [-60.262370460962146, -15.882557294371978], [-60.262370460962146, -15.873574141530781], [-60.28033676664454, -15.873574141530781], [-60.28033676664454, -15.891540447213174], [-60.27135361380334, -15.891540447213174]], [[-60.34321883653291, -15.909506752895567], [-60.34321883653291, -15.90052360005437], [-60.36118514221529, -15.90052360005437], [-60.36118514221529, -15.909506752895567], [-60.34321883653291, -15.909506752895567]], [[-60.30728622516813, -15.92747305857796], [-60.30728622516813, -15.918489905736763], [-60.32525253085052, -15.918489905736763], [-60.32525253085052, -15.92747305857796], [-60.30728622516813, -15.92747305857796]], [[-60.37016829505649, -15.99035512846632], [-60.37016829505649, -15.981371975625123], [-60.379151447897684, -15.981371975625123], [-60.379151447897684, -15.99035512846632], [-60.37016829505649, -15.99035512846632]], [[-60.451016670627254, -15.999338281307516], [-60.451016670627254, -15.99035512846632], [-60.45999982346845, -15.99035512846632], [-60.45999982346845, -15.999338281307516], [-60.451016670627254, -15.999338281307516]], [[-60.43305036494486, -15.999338281307516], [-60.43305036494486, -15.99035512846632], [-60.44203351778606, -15.99035512846632], [-60.44203351778606, -15.999338281307516], [-60.43305036494486, -15.999338281307516]], [[-60.43305036494486, -16.01730458698991], [-60.43305036494486, -16.008321434148712], [-60.44203351778606, -16.008321434148712], [-60.44203351778606, -16.01730458698991], [-60.43305036494486, -16.01730458698991]], [[-60.40610090642127, -16.01730458698991], [-60.40610090642127, -16.008321434148712], [-60.41508405926247, -16.008321434148712], [-60.41508405926247, -16.01730458698991], [-60.40610090642127, -16.01730458698991]], [[-60.40610090642127, -16.044254045513483], [-60.40610090642127, -16.026287739831105], [-60.424067212103665, -16.026287739831105], [-60.424067212103665, -16.01730458698991], [-60.43305036494486, -16.01730458698991], [-60.43305036494486, -16.0352708926723], [-60.41508405926247, -16.0352708926723], [-60.41508405926247, -16.044254045513483], [-60.40610090642127, -16.044254045513483]], [[-60.379151447897684, -16.044254045513483], [-60.379151447897684, -16.026287739831105], [-60.37016829505649, -16.026287739831105], [-60.37016829505649, -16.01730458698991], [-60.397117753580076, -16.01730458698991], [-60.397117753580076, -16.026287739831105], [-60.38813460073888, -16.026287739831105], [-60.38813460073888, -16.044254045513483], [-60.379151447897684, -16.044254045513483]]]}, 'id': '+13305+10138', 'properties': {'count': 345, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.379151447897684, -16.16103503244902], [-60.37016829505649, -16.16103503244902], [-60.37016829505649, -16.15205187960784], [-60.379151447897684, -16.15205187960784], [-60.379151447897684, -16.143068726766643], [-60.35220198937411, -16.143068726766643], [-60.35220198937411, -16.134085573925447], [-60.36118514221529, -16.134085573925447], [-60.36118514221529, -16.12510242108425], [-60.35220198937411, -16.12510242108425], [-60.35220198937411, -16.116119268243054], [-60.32525253085052, -16.116119268243054], [-60.32525253085052, -16.12510242108425], [-60.31626937800932, -16.12510242108425], [-60.31626937800932, -16.116119268243054], [-60.30728622516813, -16.116119268243054], [-60.30728622516813, -16.107136115401858], [-60.31626937800932, -16.107136115401858], [-60.31626937800932, -16.116119268243054], [-60.32525253085052, -16.116119268243054], [-60.32525253085052, -16.107136115401858], [-60.34321883653291, -16.107136115401858], [-60.34321883653291, -16.09815296256066], [-60.35220198937411, -16.09815296256066], [-60.35220198937411, -16.116119268243054], [-60.379151447897684, -16.116119268243054], [-60.379151447897684, -16.107136115401858], [-60.397117753580076, -16.107136115401858], [-60.397117753580076, -16.089169809719465], [-60.41508405926247, -16.089169809719465], [-60.41508405926247, -16.12510242108425], [-60.40610090642127, -16.12510242108425], [-60.40610090642127, -16.107136115401858], [-60.397117753580076, -16.107136115401858], [-60.397117753580076, -16.134085573925447], [-60.379151447897684, -16.134085573925447], [-60.379151447897684, -16.143068726766643], [-60.38813460073888, -16.143068726766643], [-60.38813460073888, -16.15205187960784], [-60.379151447897684, -16.15205187960784], [-60.379151447897684, -16.16103503244902]], [[-60.379151447897684, -16.12510242108425], [-60.379151447897684, -16.116119268243054], [-60.38813460073888, -16.116119268243054], [-60.38813460073888, -16.12510242108425], [-60.379151447897684, -16.12510242108425]]]}, 'id': '+13305+10147', 'properties': {'count': 27, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.41508405926247, -16.25984971370218], [-60.37016829505649, -16.25984971370218], [-60.37016829505649, -16.232900255178592], [-60.34321883653291, -16.232900255178592], [-60.34321883653291, -16.223917102337396], [-60.32525253085052, -16.223917102337396], [-60.32525253085052, -16.232900255178592], [-60.31626937800932, -16.232900255178592], [-60.31626937800932, -16.223917102337396], [-60.32525253085052, -16.223917102337396], [-60.32525253085052, -16.205950796655003], [-60.31626937800932, -16.205950796655003], [-60.31626937800932, -16.196967643813807], [-60.32525253085052, -16.196967643813807], [-60.32525253085052, -16.205950796655003], [-60.334235683691716, -16.205950796655003], [-60.334235683691716, -16.196967643813807], [-60.34321883653291, -16.196967643813807], [-60.34321883653291, -16.18798449097261], [-60.35220198937411, -16.18798449097261], [-60.35220198937411, -16.196967643813807], [-60.36118514221529, -16.196967643813807], [-60.36118514221529, -16.18798449097261], [-60.37016829505649, -16.18798449097261], [-60.37016829505649, -16.179001338131414], [-60.379151447897684, -16.179001338131414], [-60.379151447897684, -16.196967643813807], [-60.38813460073888, -16.196967643813807], [-60.38813460073888, -16.2149339494962], [-60.379151447897684, -16.2149339494962], [-60.379151447897684, -16.223917102337396], [-60.38813460073888, -16.223917102337396], [-60.38813460073888, -16.24188340801979], [-60.379151447897684, -16.24188340801979], [-60.379151447897684, -16.250866560860985], [-60.397117753580076, -16.250866560860985], [-60.397117753580076, -16.24188340801979], [-60.41508405926247, -16.24188340801979], [-60.41508405926247, -16.232900255178592], [-60.424067212103665, -16.232900255178592], [-60.424067212103665, -16.24188340801979], [-60.41508405926247, -16.24188340801979], [-60.41508405926247, -16.25984971370218]], [[-60.36118514221529, -16.205950796655003], [-60.36118514221529, -16.196967643813807], [-60.37016829505649, -16.196967643813807], [-60.37016829505649, -16.205950796655003], [-60.36118514221529, -16.205950796655003]], [[-60.334235683691716, -16.2149339494962], [-60.334235683691716, -16.205950796655003], [-60.34321883653291, -16.205950796655003], [-60.34321883653291, -16.196967643813807], [-60.35220198937411, -16.196967643813807], [-60.35220198937411, -16.2149339494962], [-60.334235683691716, -16.2149339494962]]]}, 'id': '+13305+10158', 'properties': {'count': 37, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.379151447897684, -16.34968124211413], [-60.37016829505649, -16.34968124211413], [-60.37016829505649, -16.340698089272934], [-60.379151447897684, -16.340698089272934], [-60.379151447897684, -16.34968124211413]]]}, 'id': '+13305+10168', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.37016829505649, -15.76577630743644], [-60.36118514221529, -15.76577630743644], [-60.36118514221529, -15.747810001754047], [-60.334235683691716, -15.747810001754047], [-60.334235683691716, -15.73882684891285], [-60.35220198937411, -15.73882684891285], [-60.35220198937411, -15.729843696071654], [-60.34321883653291, -15.729843696071654], [-60.34321883653291, -15.720860543230458], [-60.35220198937411, -15.720860543230458], [-60.35220198937411, -15.729843696071654], [-60.37016829505649, -15.729843696071654], [-60.37016829505649, -15.73882684891285], [-60.379151447897684, -15.73882684891285], [-60.379151447897684, -15.729843696071654], [-60.38813460073888, -15.729843696071654], [-60.38813460073888, -15.73882684891285], [-60.379151447897684, -15.73882684891285], [-60.379151447897684, -15.747810001754047], [-60.397117753580076, -15.747810001754047], [-60.397117753580076, -15.756793154595243], [-60.379151447897684, -15.756793154595243], [-60.379151447897684, -15.747810001754047], [-60.37016829505649, -15.747810001754047], [-60.37016829505649, -15.76577630743644]]]}, 'id': '+13306+10103', 'properties': {'count': 13, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.37016829505649, -15.999338281307516], [-60.36118514221529, -15.999338281307516], [-60.36118514221529, -15.99035512846632], [-60.37016829505649, -15.99035512846632], [-60.37016829505649, -15.999338281307516]]]}, 'id': '+13306+10129', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.379151447897684, -16.09815296256066], [-60.36118514221529, -16.09815296256066], [-60.36118514221529, -16.071203504037072], [-60.35220198937411, -16.071203504037072], [-60.35220198937411, -16.05323719835468], [-60.36118514221529, -16.05323719835468], [-60.36118514221529, -16.0352708926723], [-60.37016829505649, -16.0352708926723], [-60.37016829505649, -16.062220351195876], [-60.379151447897684, -16.062220351195876], [-60.379151447897684, -16.05323719835468], [-60.38813460073888, -16.05323719835468], [-60.38813460073888, -16.062220351195876], [-60.397117753580076, -16.062220351195876], [-60.397117753580076, -16.05323719835468], [-60.40610090642127, -16.05323719835468], [-60.40610090642127, -16.062220351195876], [-60.397117753580076, -16.062220351195876], [-60.397117753580076, -16.071203504037072], [-60.37016829505649, -16.071203504037072], [-60.37016829505649, -16.08018665687827], [-60.379151447897684, -16.08018665687827], [-60.379151447897684, -16.09815296256066]], [[-60.36118514221529, -16.071203504037072], [-60.36118514221529, -16.062220351195876], [-60.37016829505649, -16.062220351195876], [-60.37016829505649, -16.071203504037072], [-60.36118514221529, -16.071203504037072]]]}, 'id': '+13306+10140', 'properties': {'count': 15, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.37016829505649, -16.16103503244902], [-60.36118514221529, -16.16103503244902], [-60.36118514221529, -16.143068726766643], [-60.379151447897684, -16.143068726766643], [-60.379151447897684, -16.134085573925447], [-60.38813460073888, -16.134085573925447], [-60.38813460073888, -16.143068726766643], [-60.379151447897684, -16.143068726766643], [-60.379151447897684, -16.15205187960784], [-60.38813460073888, -16.15205187960784], [-60.38813460073888, -16.16103503244902], [-60.379151447897684, -16.16103503244902], [-60.379151447897684, -16.15205187960784], [-60.37016829505649, -16.15205187960784], [-60.37016829505649, -16.16103503244902]]]}, 'id': '+13306+10147', 'properties': {'count': 5, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.37016829505649, -16.286799172225756], [-60.36118514221529, -16.286799172225756], [-60.36118514221529, -16.27781601938456], [-60.37016829505649, -16.27781601938456], [-60.37016829505649, -16.286799172225756]]]}, 'id': '+13306+10161', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.37016829505649, -16.37663070063772], [-60.36118514221529, -16.37663070063772], [-60.36118514221529, -16.367647547796523], [-60.37016829505649, -16.367647547796523], [-60.37016829505649, -16.37663070063772]]]}, 'id': '+13306+10171', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.37016829505649, -16.511377993255635], [-60.36118514221529, -16.511377993255635], [-60.36118514221529, -16.493411687573257], [-60.37016829505649, -16.493411687573257], [-60.37016829505649, -16.511377993255635]]]}, 'id': '+13306+10186', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.36118514221529, -14.966275704570066], [-60.35220198937411, -14.966275704570066], [-60.35220198937411, -14.95729255172887], [-60.36118514221529, -14.95729255172887], [-60.36118514221529, -14.966275704570066]]]}, 'id': '+13307+10014', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.36118514221529, -15.40645019378863], [-60.35220198937411, -15.40645019378863], [-60.35220198937411, -15.397467040947433], [-60.36118514221529, -15.397467040947433], [-60.36118514221529, -15.388483888106236], [-60.34321883653291, -15.388483888106236], [-60.34321883653291, -15.397467040947433], [-60.334235683691716, -15.397467040947433], [-60.334235683691716, -15.388483888106236], [-60.34321883653291, -15.388483888106236], [-60.34321883653291, -15.37950073526504], [-60.37016829505649, -15.37950073526504], [-60.37016829505649, -15.397467040947433], [-60.36118514221529, -15.397467040947433], [-60.36118514221529, -15.40645019378863]]]}, 'id': '+13307+10063', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.36118514221529, -15.54119748640656], [-60.35220198937411, -15.54119748640656], [-60.35220198937411, -15.532214333565364], [-60.34321883653291, -15.532214333565364], [-60.34321883653291, -15.523231180724167], [-60.35220198937411, -15.523231180724167], [-60.35220198937411, -15.532214333565364], [-60.36118514221529, -15.532214333565364], [-60.36118514221529, -15.54119748640656]]]}, 'id': '+13307+10078', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.36118514221529, -15.559163792088953], [-60.35220198937411, -15.559163792088953], [-60.35220198937411, -15.550180639247756], [-60.36118514221529, -15.550180639247756], [-60.36118514221529, -15.559163792088953]]]}, 'id': '+13307+10080', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.36118514221529, -15.792725765960029], [-60.35220198937411, -15.792725765960029], [-60.35220198937411, -15.783742613118832], [-60.36118514221529, -15.783742613118832], [-60.36118514221529, -15.792725765960029]]]}, 'id': '+13307+10106', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.36118514221529, -15.819675224483603], [-60.35220198937411, -15.819675224483603], [-60.35220198937411, -15.810692071642421], [-60.36118514221529, -15.810692071642421], [-60.36118514221529, -15.819675224483603]]]}, 'id': '+13307+10109', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.36118514221529, -15.972388822783927], [-60.35220198937411, -15.972388822783927], [-60.35220198937411, -15.96340566994273], [-60.36118514221529, -15.96340566994273], [-60.36118514221529, -15.972388822783927]]]}, 'id': '+13307+10126', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.36118514221529, -16.18798449097261], [-60.35220198937411, -16.18798449097261], [-60.35220198937411, -16.170018185290218], [-60.36118514221529, -16.170018185290218], [-60.36118514221529, -16.16103503244902], [-60.34321883653291, -16.16103503244902], [-60.34321883653291, -16.15205187960784], [-60.36118514221529, -16.15205187960784], [-60.36118514221529, -16.16103503244902], [-60.37016829505649, -16.16103503244902], [-60.37016829505649, -16.170018185290218], [-60.38813460073888, -16.170018185290218], [-60.38813460073888, -16.179001338131414], [-60.36118514221529, -16.179001338131414], [-60.36118514221529, -16.18798449097261]]]}, 'id': '+13307+10150', 'properties': {'count': 8, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.36118514221529, -16.196967643813807], [-60.35220198937411, -16.196967643813807], [-60.35220198937411, -16.18798449097261], [-60.36118514221529, -16.18798449097261], [-60.36118514221529, -16.196967643813807]]]}, 'id': '+13307+10151', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.397117753580076, -15.370517582423844], [-60.34321883653291, -15.370517582423844], [-60.34321883653291, -15.361534429582647], [-60.37016829505649, -15.361534429582647], [-60.37016829505649, -15.343568123900269], [-60.379151447897684, -15.343568123900269], [-60.379151447897684, -15.361534429582647], [-60.397117753580076, -15.361534429582647], [-60.397117753580076, -15.370517582423844]]]}, 'id': '+13308+10059', 'properties': {'count': 8, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.35220198937411, -15.397467040947433], [-60.34321883653291, -15.397467040947433], [-60.34321883653291, -15.388483888106236], [-60.35220198937411, -15.388483888106236], [-60.35220198937411, -15.397467040947433]]]}, 'id': '+13308+10062', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.35220198937411, -15.640012167659705], [-60.34321883653291, -15.640012167659705], [-60.34321883653291, -15.631029014818509], [-60.35220198937411, -15.631029014818509], [-60.35220198937411, -15.640012167659705]]]}, 'id': '+13308+10089', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.35220198937411, -15.891540447213174], [-60.34321883653291, -15.891540447213174], [-60.34321883653291, -15.882557294371978], [-60.35220198937411, -15.882557294371978], [-60.35220198937411, -15.891540447213174]]]}, 'id': '+13308+10117', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.35220198937411, -16.08018665687827], [-60.34321883653291, -16.08018665687827], [-60.34321883653291, -16.071203504037072], [-60.334235683691716, -16.071203504037072], [-60.334235683691716, -16.05323719835468], [-60.34321883653291, -16.05323719835468], [-60.34321883653291, -16.044254045513483], [-60.334235683691716, -16.044254045513483], [-60.334235683691716, -16.0352708926723], [-60.34321883653291, -16.0352708926723], [-60.34321883653291, -16.026287739831105], [-60.35220198937411, -16.026287739831105], [-60.35220198937411, -16.0352708926723], [-60.36118514221529, -16.0352708926723], [-60.36118514221529, -16.05323719835468], [-60.35220198937411, -16.05323719835468], [-60.35220198937411, -16.08018665687827]]]}, 'id': '+13308+10138', 'properties': {'count': 11, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.35220198937411, -16.15205187960784], [-60.34321883653291, -16.15205187960784], [-60.34321883653291, -16.134085573925447], [-60.35220198937411, -16.134085573925447], [-60.35220198937411, -16.15205187960784]]]}, 'id': '+13308+10146', 'properties': {'count': 2, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.379151447897684, -15.505264875041775], [-60.334235683691716, -15.505264875041775], [-60.334235683691716, -15.487298569359382], [-60.36118514221529, -15.487298569359382], [-60.36118514221529, -15.478315416518186], [-60.35220198937411, -15.478315416518186], [-60.35220198937411, -15.469332263677003], [-60.32525253085052, -15.469332263677003], [-60.32525253085052, -15.478315416518186], [-60.31626937800932, -15.478315416518186], [-60.31626937800932, -15.469332263677003], [-60.30728622516813, -15.469332263677003], [-60.30728622516813, -15.460349110835807], [-60.334235683691716, -15.460349110835807], [-60.334235683691716, -15.45136595799461], [-60.32525253085052, -15.45136595799461], [-60.32525253085052, -15.433399652312218], [-60.334235683691716, -15.433399652312218], [-60.334235683691716, -15.424416499471022], [-60.34321883653291, -15.424416499471022], [-60.34321883653291, -15.433399652312218], [-60.334235683691716, -15.433399652312218], [-60.334235683691716, -15.45136595799461], [-60.37016829505649, -15.45136595799461], [-60.37016829505649, -15.460349110835807], [-60.36118514221529, -15.460349110835807], [-60.36118514221529, -15.469332263677003], [-60.37016829505649, -15.469332263677003], [-60.37016829505649, -15.487298569359382], [-60.379151447897684, -15.487298569359382], [-60.379151447897684, -15.478315416518186], [-60.38813460073888, -15.478315416518186], [-60.38813460073888, -15.487298569359382], [-60.379151447897684, -15.487298569359382], [-60.379151447897684, -15.505264875041775]], [[-60.36118514221529, -15.496281722200578], [-60.36118514221529, -15.487298569359382], [-60.37016829505649, -15.487298569359382], [-60.37016829505649, -15.496281722200578], [-60.36118514221529, -15.496281722200578]]]}, 'id': '+13309+10074', 'properties': {'count': 27, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.34321883653291, -15.586113250612527], [-60.334235683691716, -15.586113250612527], [-60.334235683691716, -15.577130097771345], [-60.34321883653291, -15.577130097771345], [-60.34321883653291, -15.559163792088953], [-60.35220198937411, -15.559163792088953], [-60.35220198937411, -15.577130097771345], [-60.34321883653291, -15.577130097771345], [-60.34321883653291, -15.586113250612527]]]}, 'id': '+13309+10083', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.34321883653291, -15.936456211419141], [-60.334235683691716, -15.936456211419141], [-60.334235683691716, -15.92747305857796], [-60.34321883653291, -15.92747305857796], [-60.34321883653291, -15.936456211419141]]]}, 'id': '+13309+10122', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.34321883653291, -16.107136115401858], [-60.334235683691716, -16.107136115401858], [-60.334235683691716, -16.09815296256066], [-60.34321883653291, -16.09815296256066], [-60.34321883653291, -16.107136115401858]]]}, 'id': '+13309+10141', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.34321883653291, -16.143068726766643], [-60.334235683691716, -16.143068726766643], [-60.334235683691716, -16.134085573925447], [-60.31626937800932, -16.134085573925447], [-60.31626937800932, -16.12510242108425], [-60.30728622516813, -16.12510242108425], [-60.30728622516813, -16.116119268243054], [-60.31626937800932, -16.116119268243054], [-60.31626937800932, -16.12510242108425], [-60.334235683691716, -16.12510242108425], [-60.334235683691716, -16.134085573925447], [-60.34321883653291, -16.134085573925447], [-60.34321883653291, -16.143068726766643]]]}, 'id': '+13309+10145', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.34321883653291, -16.25984971370218], [-60.334235683691716, -16.25984971370218], [-60.334235683691716, -16.250866560860985], [-60.34321883653291, -16.250866560860985], [-60.34321883653291, -16.25984971370218]]]}, 'id': '+13309+10158', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.34321883653291, -16.34968124211413], [-60.334235683691716, -16.34968124211413], [-60.334235683691716, -16.340698089272934], [-60.34321883653291, -16.340698089272934], [-60.34321883653291, -16.34968124211413]]]}, 'id': '+13309+10168', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.35220198937411, -16.367647547796523], [-60.334235683691716, -16.367647547796523], [-60.334235683691716, -16.358664394955326], [-60.35220198937411, -16.358664394955326], [-60.35220198937411, -16.367647547796523]]]}, 'id': '+13309+10170', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.334235683691716, -15.496281722200578], [-60.32525253085052, -15.496281722200578], [-60.32525253085052, -15.487298569359382], [-60.31626937800932, -15.487298569359382], [-60.31626937800932, -15.478315416518186], [-60.289319919485735, -15.478315416518186], [-60.289319919485735, -15.469332263677003], [-60.28033676664454, -15.469332263677003], [-60.28033676664454, -15.460349110835807], [-60.289319919485735, -15.460349110835807], [-60.289319919485735, -15.469332263677003], [-60.31626937800932, -15.469332263677003], [-60.31626937800932, -15.478315416518186], [-60.334235683691716, -15.478315416518186], [-60.334235683691716, -15.469332263677003], [-60.35220198937411, -15.469332263677003], [-60.35220198937411, -15.478315416518186], [-60.334235683691716, -15.478315416518186], [-60.334235683691716, -15.496281722200578]]]}, 'id': '+13310+10073', 'properties': {'count': 9, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.334235683691716, -15.622045861977313], [-60.32525253085052, -15.622045861977313], [-60.32525253085052, -15.595096403453724], [-60.34321883653291, -15.595096403453724], [-60.34321883653291, -15.577130097771345], [-60.35220198937411, -15.577130097771345], [-60.35220198937411, -15.568146944930149], [-60.36118514221529, -15.568146944930149], [-60.36118514221529, -15.577130097771345], [-60.37016829505649, -15.577130097771345], [-60.37016829505649, -15.586113250612527], [-60.36118514221529, -15.586113250612527], [-60.36118514221529, -15.595096403453724], [-60.34321883653291, -15.595096403453724], [-60.34321883653291, -15.60407955629492], [-60.334235683691716, -15.60407955629492], [-60.334235683691716, -15.622045861977313]]]}, 'id': '+13310+10087', 'properties': {'count': 10, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.34321883653291, -15.684927931865687], [-60.32525253085052, -15.684927931865687], [-60.32525253085052, -15.67594477902449], [-60.334235683691716, -15.67594477902449], [-60.334235683691716, -15.657978473342098], [-60.32525253085052, -15.657978473342098], [-60.32525253085052, -15.648995320500902], [-60.34321883653291, -15.648995320500902], [-60.34321883653291, -15.684927931865687]]]}, 'id': '+13310+10094', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.334235683691716, -16.107136115401858], [-60.32525253085052, -16.107136115401858], [-60.32525253085052, -16.09815296256066], [-60.334235683691716, -16.09815296256066], [-60.334235683691716, -16.107136115401858]]]}, 'id': '+13310+10141', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.34321883653291, -16.170018185290218], [-60.32525253085052, -16.170018185290218], [-60.32525253085052, -16.16103503244902], [-60.334235683691716, -16.16103503244902], [-60.334235683691716, -16.143068726766643], [-60.31626937800932, -16.143068726766643], [-60.31626937800932, -16.134085573925447], [-60.334235683691716, -16.134085573925447], [-60.334235683691716, -16.12510242108425], [-60.32525253085052, -16.12510242108425], [-60.32525253085052, -16.116119268243054], [-60.34321883653291, -16.116119268243054], [-60.34321883653291, -16.12510242108425], [-60.36118514221529, -16.12510242108425], [-60.36118514221529, -16.134085573925447], [-60.334235683691716, -16.134085573925447], [-60.334235683691716, -16.143068726766643], [-60.34321883653291, -16.143068726766643], [-60.34321883653291, -16.170018185290218]]]}, 'id': '+13310+10148', 'properties': {'count': 11, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.34321883653291, -16.24188340801979], [-60.32525253085052, -16.24188340801979], [-60.32525253085052, -16.232900255178592], [-60.334235683691716, -16.232900255178592], [-60.334235683691716, -16.223917102337396], [-60.34321883653291, -16.223917102337396], [-60.34321883653291, -16.24188340801979]]]}, 'id': '+13310+10156', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.34321883653291, -16.529344298938028], [-60.32525253085052, -16.529344298938028], [-60.32525253085052, -16.520361146096832], [-60.30728622516813, -16.520361146096832], [-60.30728622516813, -16.511377993255635], [-60.289319919485735, -16.511377993255635], [-60.289319919485735, -16.493411687573257], [-60.29830307232693, -16.493411687573257], [-60.29830307232693, -16.48442853473206], [-60.30728622516813, -16.48442853473206], [-60.30728622516813, -16.493411687573257], [-60.29830307232693, -16.493411687573257], [-60.29830307232693, -16.50239484041444], [-60.31626937800932, -16.50239484041444], [-60.31626937800932, -16.48442853473206], [-60.32525253085052, -16.48442853473206], [-60.32525253085052, -16.493411687573257], [-60.334235683691716, -16.493411687573257], [-60.334235683691716, -16.50239484041444], [-60.31626937800932, -16.50239484041444], [-60.31626937800932, -16.511377993255635], [-60.34321883653291, -16.511377993255635], [-60.34321883653291, -16.529344298938028]]]}, 'id': '+13310+10188', 'properties': {'count': 14, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.36118514221529, -15.0920398443468], [-60.31626937800932, -15.0920398443468], [-60.31626937800932, -15.083056691505604], [-60.30728622516813, -15.083056691505604], [-60.30728622516813, -15.065090385823211], [-60.289319919485735, -15.065090385823211], [-60.289319919485735, -15.074073538664408], [-60.27135361380334, -15.074073538664408], [-60.27135361380334, -15.065090385823211], [-60.25338730812095, -15.065090385823211], [-60.25338730812095, -15.056107232982015], [-60.27135361380334, -15.056107232982015], [-60.27135361380334, -15.029157774458426], [-60.262370460962146, -15.029157774458426], [-60.262370460962146, -15.02017462161723], [-60.27135361380334, -15.02017462161723], [-60.27135361380334, -15.002208315934851], [-60.289319919485735, -15.002208315934851], [-60.289319919485735, -15.011191468776047], [-60.28033676664454, -15.011191468776047], [-60.28033676664454, -15.02017462161723], [-60.30728622516813, -15.02017462161723], [-60.30728622516813, -15.011191468776047], [-60.29830307232693, -15.011191468776047], [-60.29830307232693, -14.993225163093655], [-60.30728622516813, -14.993225163093655], [-60.30728622516813, -15.002208315934851], [-60.31626937800932, -15.002208315934851], [-60.31626937800932, -14.993225163093655], [-60.32525253085052, -14.993225163093655], [-60.32525253085052, -15.002208315934851], [-60.334235683691716, -15.002208315934851], [-60.334235683691716, -14.993225163093655], [-60.34321883653291, -14.993225163093655], [-60.34321883653291, -14.984242010252458], [-60.35220198937411, -14.984242010252458], [-60.35220198937411, -14.975258857411262], [-60.37016829505649, -14.975258857411262], [-60.37016829505649, -14.966275704570066], [-60.379151447897684, -14.966275704570066], [-60.379151447897684, -14.95729255172887], [-60.38813460073888, -14.95729255172887], [-60.38813460073888, -14.948309398887673], [-60.379151447897684, -14.948309398887673], [-60.379151447897684, -14.939326246046477], [-60.38813460073888, -14.939326246046477], [-60.38813460073888, -14.948309398887673], [-60.397117753580076, -14.948309398887673], [-60.397117753580076, -14.939326246046477], [-60.424067212103665, -14.939326246046477], [-60.424067212103665, -14.93034309320528], [-60.44203351778606, -14.93034309320528], [-60.44203351778606, -14.921359940364084], [-60.451016670627254, -14.921359940364084], [-60.451016670627254, -14.93034309320528], [-60.45999982346845, -14.93034309320528], [-60.45999982346845, -14.921359940364084], [-60.46898297630965, -14.921359940364084], [-60.46898297630965, -14.912376787522888], [-60.451016670627254, -14.912376787522888], [-60.451016670627254, -14.885427328999313], [-60.44203351778606, -14.885427328999313], [-60.44203351778606, -14.876444176158117], [-60.451016670627254, -14.876444176158117], [-60.451016670627254, -14.86746102331692], [-60.45999982346845, -14.86746102331692], [-60.45999982346845, -14.858477870475724], [-60.46898297630965, -14.858477870475724], [-60.46898297630965, -14.885427328999313], [-60.47796612915083, -14.885427328999313], [-60.47796612915083, -14.903393634681692], [-60.486949281992025, -14.903393634681692], [-60.486949281992025, -14.89441048184051], [-60.49593243483322, -14.89441048184051], [-60.49593243483322, -14.885427328999313], [-60.50491558767442, -14.885427328999313], [-60.50491558767442, -14.858477870475724], [-60.513898740515614, -14.858477870475724], [-60.513898740515614, -14.885427328999313], [-60.53186504619801, -14.885427328999313], [-60.53186504619801, -14.876444176158117], [-60.52288189335681, -14.876444176158117], [-60.52288189335681, -14.86746102331692], [-60.5408481990392, -14.86746102331692], [-60.5408481990392, -14.858477870475724], [-60.5498313518804, -14.858477870475724], [-60.5498313518804, -14.840511564793331], [-60.558814504721596, -14.840511564793331], [-60.558814504721596, -14.831528411952135], [-60.5498313518804, -14.831528411952135], [-60.5498313518804, -14.813562106269742], [-60.558814504721596, -14.813562106269742], [-60.558814504721596, -14.804578953428546], [-60.61271342176876, -14.804578953428546], [-60.61271342176876, -14.777629494904971], [-60.621696574609956, -14.777629494904971], [-60.621696574609956, -14.759663189222579], [-60.63966288029235, -14.759663189222579], [-60.63966288029235, -14.750680036381382], [-60.648646033133545, -14.750680036381382], [-60.648646033133545, -14.759663189222579], [-60.66661233881594, -14.759663189222579], [-60.66661233881594, -14.741696883540186], [-60.675595491657134, -14.741696883540186], [-60.675595491657134, -14.73271373069899], [-60.66661233881594, -14.73271373069899], [-60.66661233881594, -14.723730577857793], [-60.69356179733953, -14.723730577857793], [-60.69356179733953, -14.714747425016597], [-60.675595491657134, -14.714747425016597], [-60.675595491657134, -14.7057642721754], [-60.69356179733953, -14.7057642721754], [-60.69356179733953, -14.687797966493008], [-60.711528103021905, -14.687797966493008], [-60.711528103021905, -14.678814813651812], [-60.7205112558631, -14.678814813651812], [-60.7205112558631, -14.66983166081063], [-60.7294944087043, -14.66983166081063], [-60.7294944087043, -14.651865355128237], [-60.74746071438669, -14.651865355128237], [-60.74746071438669, -14.660848507969433], [-60.75644386722789, -14.660848507969433], [-60.75644386722789, -14.651865355128237], [-60.79237647859267, -14.651865355128237], [-60.79237647859267, -14.678814813651812], [-60.810342784275065, -14.678814813651812], [-60.810342784275065, -14.66983166081063], [-60.80135963143387, -14.66983166081063], [-60.80135963143387, -14.660848507969433], [-60.81932593711625, -14.660848507969433], [-60.81932593711625, -14.66983166081063], [-60.82830908995744, -14.66983166081063], [-60.82830908995744, -14.651865355128237], [-60.83729224279864, -14.651865355128237], [-60.83729224279864, -14.660848507969433], [-60.846275395639836, -14.660848507969433], [-60.846275395639836, -14.66983166081063], [-60.85525854848103, -14.66983166081063], [-60.85525854848103, -14.687797966493008], [-60.846275395639836, -14.687797966493008], [-60.846275395639836, -14.696781119334204], [-60.83729224279864, -14.696781119334204], [-60.83729224279864, -14.7057642721754], [-60.846275395639836, -14.7057642721754], [-60.846275395639836, -14.714747425016597], [-60.82830908995744, -14.714747425016597], [-60.82830908995744, -14.73271373069899], [-60.810342784275065, -14.73271373069899], [-60.810342784275065, -14.741696883540186], [-60.81932593711625, -14.741696883540186], [-60.81932593711625, -14.768646342063775], [-60.810342784275065, -14.768646342063775], [-60.810342784275065, -14.786612647746153], [-60.79237647859267, -14.786612647746153], [-60.79237647859267, -14.813562106269742], [-60.783393325751476, -14.813562106269742], [-60.783393325751476, -14.822545259110939], [-60.77441017291028, -14.822545259110939], [-60.77441017291028, -14.831528411952135], [-60.76542702006908, -14.831528411952135], [-60.76542702006908, -14.840511564793331], [-60.74746071438669, -14.840511564793331], [-60.74746071438669, -14.849494717634528], [-60.738477561545494, -14.849494717634528], [-60.738477561545494, -14.86746102331692], [-60.7294944087043, -14.86746102331692], [-60.7294944087043, -14.876444176158117], [-60.7205112558631, -14.876444176158117], [-60.7205112558631, -14.885427328999313], [-60.711528103021905, -14.885427328999313], [-60.711528103021905, -14.89441048184051], [-60.70254495018071, -14.89441048184051], [-60.70254495018071, -14.912376787522888], [-60.675595491657134, -14.912376787522888], [-60.675595491657134, -14.93034309320528], [-60.68457864449833, -14.93034309320528], [-60.68457864449833, -14.948309398887673], [-60.675595491657134, -14.948309398887673], [-60.675595491657134, -14.93034309320528], [-60.66661233881594, -14.93034309320528], [-60.66661233881594, -14.939326246046477], [-60.648646033133545, -14.939326246046477], [-60.648646033133545, -14.948309398887673], [-60.63966288029235, -14.948309398887673], [-60.63966288029235, -14.966275704570066], [-60.63067972745115, -14.966275704570066], [-60.63067972745115, -14.975258857411262], [-60.621696574609956, -14.975258857411262], [-60.621696574609956, -14.984242010252458], [-60.61271342176876, -14.984242010252458], [-60.61271342176876, -14.993225163093655], [-60.59474711608637, -14.993225163093655], [-60.59474711608637, -15.002208315934851], [-60.585763963245185, -15.002208315934851], [-60.585763963245185, -15.011191468776047], [-60.57678081040399, -15.011191468776047], [-60.57678081040399, -15.02017462161723], [-60.585763963245185, -15.02017462161723], [-60.585763963245185, -15.038140927299622], [-60.558814504721596, -15.038140927299622], [-60.558814504721596, -15.065090385823211], [-60.56779765756279, -15.065090385823211], [-60.56779765756279, -15.083056691505604], [-60.558814504721596, -15.083056691505604], [-60.558814504721596, -15.065090385823211], [-60.5498313518804, -15.065090385823211], [-60.5498313518804, -15.056107232982015], [-60.5408481990392, -15.056107232982015], [-60.5408481990392, -15.083056691505604], [-60.53186504619801, -15.083056691505604], [-60.53186504619801, -15.065090385823211], [-60.52288189335681, -15.065090385823211], [-60.52288189335681, -15.0920398443468], [-60.50491558767442, -15.0920398443468], [-60.50491558767442, -15.083056691505604], [-60.486949281992025, -15.083056691505604], [-60.486949281992025, -15.0920398443468], [-60.37016829505649, -15.0920398443468], [-60.37016829505649, -15.083056691505604], [-60.36118514221529, -15.083056691505604], [-60.36118514221529, -15.0920398443468]], [[-60.810342784275065, -14.696781119334204], [-60.810342784275065, -14.678814813651812], [-60.81932593711625, -14.678814813651812], [-60.81932593711625, -14.696781119334204], [-60.810342784275065, -14.696781119334204]], [[-60.70254495018071, -14.7057642721754], [-60.70254495018071, -14.696781119334204], [-60.711528103021905, -14.696781119334204], [-60.711528103021905, -14.7057642721754], [-60.70254495018071, -14.7057642721754]], [[-60.810342784275065, -14.714747425016597], [-60.810342784275065, -14.7057642721754], [-60.81932593711625, -14.7057642721754], [-60.81932593711625, -14.714747425016597], [-60.810342784275065, -14.714747425016597]], [[-60.783393325751476, -14.73271373069899], [-60.783393325751476, -14.723730577857793], [-60.79237647859267, -14.723730577857793], [-60.79237647859267, -14.73271373069899], [-60.783393325751476, -14.73271373069899]], [[-60.76542702006908, -14.73271373069899], [-60.76542702006908, -14.714747425016597], [-60.783393325751476, -14.714747425016597], [-60.783393325751476, -14.723730577857793], [-60.77441017291028, -14.723730577857793], [-60.77441017291028, -14.73271373069899], [-60.76542702006908, -14.73271373069899]], [[-60.783393325751476, -14.759663189222579], [-60.783393325751476, -14.741696883540186], [-60.79237647859267, -14.741696883540186], [-60.79237647859267, -14.73271373069899], [-60.80135963143387, -14.73271373069899], [-60.80135963143387, -14.741696883540186], [-60.810342784275065, -14.741696883540186], [-60.810342784275065, -14.759663189222579], [-60.783393325751476, -14.759663189222579]], [[-60.738477561545494, -14.759663189222579], [-60.738477561545494, -14.750680036381382], [-60.74746071438669, -14.750680036381382], [-60.74746071438669, -14.759663189222579], [-60.738477561545494, -14.759663189222579]], [[-60.74746071438669, -14.768646342063775], [-60.74746071438669, -14.759663189222579], [-60.75644386722789, -14.759663189222579], [-60.75644386722789, -14.750680036381382], [-60.76542702006908, -14.750680036381382], [-60.76542702006908, -14.768646342063775], [-60.74746071438669, -14.768646342063775]], [[-60.79237647859267, -14.777629494904971], [-60.79237647859267, -14.768646342063775], [-60.80135963143387, -14.768646342063775], [-60.80135963143387, -14.777629494904971], [-60.79237647859267, -14.777629494904971]], [[-60.74746071438669, -14.786612647746153], [-60.74746071438669, -14.777629494904971], [-60.75644386722789, -14.777629494904971], [-60.75644386722789, -14.786612647746153], [-60.74746071438669, -14.786612647746153]], [[-60.66661233881594, -14.79559580058735], [-60.66661233881594, -14.777629494904971], [-60.675595491657134, -14.777629494904971], [-60.675595491657134, -14.79559580058735], [-60.66661233881594, -14.79559580058735]], [[-60.77441017291028, -14.804578953428546], [-60.77441017291028, -14.79559580058735], [-60.783393325751476, -14.79559580058735], [-60.783393325751476, -14.804578953428546], [-60.77441017291028, -14.804578953428546]], [[-60.69356179733953, -14.822545259110939], [-60.69356179733953, -14.813562106269742], [-60.70254495018071, -14.813562106269742], [-60.70254495018071, -14.822545259110939], [-60.69356179733953, -14.822545259110939]], [[-60.648646033133545, -14.822545259110939], [-60.648646033133545, -14.813562106269742], [-60.66661233881594, -14.813562106269742], [-60.66661233881594, -14.822545259110939], [-60.648646033133545, -14.822545259110939]], [[-60.558814504721596, -14.822545259110939], [-60.558814504721596, -14.813562106269742], [-60.56779765756279, -14.813562106269742], [-60.56779765756279, -14.822545259110939], [-60.558814504721596, -14.822545259110939]], [[-60.558814504721596, -14.849494717634528], [-60.558814504721596, -14.840511564793331], [-60.56779765756279, -14.840511564793331], [-60.56779765756279, -14.849494717634528], [-60.558814504721596, -14.849494717634528]], [[-60.648646033133545, -14.858477870475724], [-60.648646033133545, -14.831528411952135], [-60.66661233881594, -14.831528411952135], [-60.66661233881594, -14.840511564793331], [-60.69356179733953, -14.840511564793331], [-60.69356179733953, -14.849494717634528], [-60.65762918597474, -14.849494717634528], [-60.65762918597474, -14.858477870475724], [-60.648646033133545, -14.858477870475724]], [[-60.56779765756279, -14.858477870475724], [-60.56779765756279, -14.849494717634528], [-60.57678081040399, -14.849494717634528], [-60.57678081040399, -14.858477870475724], [-60.56779765756279, -14.858477870475724]], [[-60.5408481990392, -14.876444176158117], [-60.5408481990392, -14.86746102331692], [-60.5498313518804, -14.86746102331692], [-60.5498313518804, -14.876444176158117], [-60.5408481990392, -14.876444176158117]], [[-60.648646033133545, -14.89441048184051], [-60.648646033133545, -14.885427328999313], [-60.65762918597474, -14.885427328999313], [-60.65762918597474, -14.89441048184051], [-60.648646033133545, -14.89441048184051]], [[-60.585763963245185, -14.89441048184051], [-60.585763963245185, -14.885427328999313], [-60.59474711608637, -14.885427328999313], [-60.59474711608637, -14.89441048184051], [-60.585763963245185, -14.89441048184051]], [[-60.45999982346845, -14.89441048184051], [-60.45999982346845, -14.885427328999313], [-60.46898297630965, -14.885427328999313], [-60.46898297630965, -14.89441048184051], [-60.45999982346845, -14.89441048184051]], [[-60.60373026892756, -14.903393634681692], [-60.60373026892756, -14.885427328999313], [-60.59474711608637, -14.885427328999313], [-60.59474711608637, -14.876444176158117], [-60.585763963245185, -14.876444176158117], [-60.585763963245185, -14.822545259110939], [-60.61271342176876, -14.822545259110939], [-60.61271342176876, -14.831528411952135], [-60.60373026892756, -14.831528411952135], [-60.60373026892756, -14.840511564793331], [-60.59474711608637, -14.840511564793331], [-60.59474711608637, -14.86746102331692], [-60.60373026892756, -14.86746102331692], [-60.60373026892756, -14.876444176158117], [-60.61271342176876, -14.876444176158117], [-60.61271342176876, -14.903393634681692], [-60.60373026892756, -14.903393634681692]], [[-60.50491558767442, -14.903393634681692], [-60.50491558767442, -14.89441048184051], [-60.52288189335681, -14.89441048184051], [-60.52288189335681, -14.903393634681692], [-60.50491558767442, -14.903393634681692]], [[-60.5498313518804, -14.912376787522888], [-60.5498313518804, -14.903393634681692], [-60.558814504721596, -14.903393634681692], [-60.558814504721596, -14.912376787522888], [-60.5498313518804, -14.912376787522888]], [[-60.65762918597474, -14.93034309320528], [-60.65762918597474, -14.921359940364084], [-60.66661233881594, -14.921359940364084], [-60.66661233881594, -14.93034309320528], [-60.65762918597474, -14.93034309320528]], [[-60.63067972745115, -14.948309398887673], [-60.63067972745115, -14.93034309320528], [-60.648646033133545, -14.93034309320528], [-60.648646033133545, -14.939326246046477], [-60.63966288029235, -14.939326246046477], [-60.63966288029235, -14.948309398887673], [-60.63067972745115, -14.948309398887673]], [[-60.558814504721596, -14.948309398887673], [-60.558814504721596, -14.939326246046477], [-60.5498313518804, -14.939326246046477], [-60.5498313518804, -14.93034309320528], [-60.57678081040399, -14.93034309320528], [-60.57678081040399, -14.939326246046477], [-60.56779765756279, -14.939326246046477], [-60.56779765756279, -14.948309398887673], [-60.558814504721596, -14.948309398887673]], [[-60.56779765756279, -14.95729255172887], [-60.56779765756279, -14.948309398887673], [-60.57678081040399, -14.948309398887673], [-60.57678081040399, -14.939326246046477], [-60.585763963245185, -14.939326246046477], [-60.585763963245185, -14.93034309320528], [-60.57678081040399, -14.93034309320528], [-60.57678081040399, -14.921359940364084], [-60.56779765756279, -14.921359940364084], [-60.56779765756279, -14.903393634681692], [-60.558814504721596, -14.903393634681692], [-60.558814504721596, -14.89441048184051], [-60.56779765756279, -14.89441048184051], [-60.56779765756279, -14.885427328999313], [-60.57678081040399, -14.885427328999313], [-60.57678081040399, -14.912376787522888], [-60.59474711608637, -14.912376787522888], [-60.59474711608637, -14.903393634681692], [-60.60373026892756, -14.903393634681692], [-60.60373026892756, -14.912376787522888], [-60.61271342176876, -14.912376787522888], [-60.61271342176876, -14.939326246046477], [-60.60373026892756, -14.939326246046477], [-60.60373026892756, -14.921359940364084], [-60.59474711608637, -14.921359940364084], [-60.59474711608637, -14.948309398887673], [-60.585763963245185, -14.948309398887673], [-60.585763963245185, -14.95729255172887], [-60.56779765756279, -14.95729255172887]], [[-60.49593243483322, -14.95729255172887], [-60.49593243483322, -14.939326246046477], [-60.486949281992025, -14.939326246046477], [-60.486949281992025, -14.93034309320528], [-60.49593243483322, -14.93034309320528], [-60.49593243483322, -14.921359940364084], [-60.513898740515614, -14.921359940364084], [-60.513898740515614, -14.93034309320528], [-60.52288189335681, -14.93034309320528], [-60.52288189335681, -14.948309398887673], [-60.513898740515614, -14.948309398887673], [-60.513898740515614, -14.95729255172887], [-60.49593243483322, -14.95729255172887]], [[-60.451016670627254, -14.95729255172887], [-60.451016670627254, -14.939326246046477], [-60.45999982346845, -14.939326246046477], [-60.45999982346845, -14.93034309320528], [-60.47796612915083, -14.93034309320528], [-60.47796612915083, -14.948309398887673], [-60.45999982346845, -14.948309398887673], [-60.45999982346845, -14.95729255172887], [-60.451016670627254, -14.95729255172887]], [[-60.43305036494486, -14.95729255172887], [-60.43305036494486, -14.948309398887673], [-60.44203351778606, -14.948309398887673], [-60.44203351778606, -14.95729255172887], [-60.43305036494486, -14.95729255172887]], [[-60.585763963245185, -14.966275704570066], [-60.585763963245185, -14.95729255172887], [-60.59474711608637, -14.95729255172887], [-60.59474711608637, -14.948309398887673], [-60.61271342176876, -14.948309398887673], [-60.61271342176876, -14.95729255172887], [-60.60373026892756, -14.95729255172887], [-60.60373026892756, -14.966275704570066], [-60.585763963245185, -14.966275704570066]], [[-60.397117753580076, -14.966275704570066], [-60.397117753580076, -14.95729255172887], [-60.40610090642127, -14.95729255172887], [-60.40610090642127, -14.966275704570066], [-60.397117753580076, -14.966275704570066]], [[-60.60373026892756, -14.975258857411262], [-60.60373026892756, -14.966275704570066], [-60.61271342176876, -14.966275704570066], [-60.61271342176876, -14.975258857411262], [-60.60373026892756, -14.975258857411262]], [[-60.57678081040399, -14.975258857411262], [-60.57678081040399, -14.966275704570066], [-60.585763963245185, -14.966275704570066], [-60.585763963245185, -14.975258857411262], [-60.57678081040399, -14.975258857411262]], [[-60.558814504721596, -14.975258857411262], [-60.558814504721596, -14.966275704570066], [-60.56779765756279, -14.966275704570066], [-60.56779765756279, -14.975258857411262], [-60.558814504721596, -14.975258857411262]], [[-60.50491558767442, -14.975258857411262], [-60.50491558767442, -14.966275704570066], [-60.513898740515614, -14.966275704570066], [-60.513898740515614, -14.975258857411262], [-60.50491558767442, -14.975258857411262]], [[-60.46898297630965, -14.975258857411262], [-60.46898297630965, -14.966275704570066], [-60.486949281992025, -14.966275704570066], [-60.486949281992025, -14.975258857411262], [-60.46898297630965, -14.975258857411262]], [[-60.43305036494486, -14.975258857411262], [-60.43305036494486, -14.966275704570066], [-60.44203351778606, -14.966275704570066], [-60.44203351778606, -14.975258857411262], [-60.43305036494486, -14.975258857411262]], [[-60.59474711608637, -14.984242010252458], [-60.59474711608637, -14.975258857411262], [-60.60373026892756, -14.975258857411262], [-60.60373026892756, -14.984242010252458], [-60.59474711608637, -14.984242010252458]], [[-60.56779765756279, -14.984242010252458], [-60.56779765756279, -14.975258857411262], [-60.57678081040399, -14.975258857411262], [-60.57678081040399, -14.984242010252458], [-60.56779765756279, -14.984242010252458]], [[-60.44203351778606, -14.984242010252458], [-60.44203351778606, -14.975258857411262], [-60.451016670627254, -14.975258857411262], [-60.451016670627254, -14.984242010252458], [-60.44203351778606, -14.984242010252458]], [[-60.585763963245185, -14.993225163093655], [-60.585763963245185, -14.984242010252458], [-60.59474711608637, -14.984242010252458], [-60.59474711608637, -14.993225163093655], [-60.585763963245185, -14.993225163093655]], [[-60.49593243483322, -14.993225163093655], [-60.49593243483322, -14.984242010252458], [-60.50491558767442, -14.984242010252458], [-60.50491558767442, -14.993225163093655], [-60.49593243483322, -14.993225163093655]], [[-60.379151447897684, -14.993225163093655], [-60.379151447897684, -14.984242010252458], [-60.38813460073888, -14.984242010252458], [-60.38813460073888, -14.993225163093655], [-60.379151447897684, -14.993225163093655]], [[-60.486949281992025, -15.002208315934851], [-60.486949281992025, -14.993225163093655], [-60.49593243483322, -14.993225163093655], [-60.49593243483322, -15.002208315934851], [-60.486949281992025, -15.002208315934851]], [[-60.44203351778606, -15.002208315934851], [-60.44203351778606, -14.993225163093655], [-60.451016670627254, -14.993225163093655], [-60.451016670627254, -15.002208315934851], [-60.44203351778606, -15.002208315934851]], [[-60.46898297630965, -15.011191468776047], [-60.46898297630965, -14.984242010252458], [-60.486949281992025, -14.984242010252458], [-60.486949281992025, -14.993225163093655], [-60.47796612915083, -14.993225163093655], [-60.47796612915083, -15.002208315934851], [-60.486949281992025, -15.002208315934851], [-60.486949281992025, -15.011191468776047], [-60.46898297630965, -15.011191468776047]], [[-60.31626937800932, -15.011191468776047], [-60.31626937800932, -15.002208315934851], [-60.32525253085052, -15.002208315934851], [-60.32525253085052, -15.011191468776047], [-60.31626937800932, -15.011191468776047]], [[-60.37016829505649, -15.02017462161723], [-60.37016829505649, -15.002208315934851], [-60.379151447897684, -15.002208315934851], [-60.379151447897684, -15.02017462161723], [-60.37016829505649, -15.02017462161723]], [[-60.34321883653291, -15.02017462161723], [-60.34321883653291, -15.011191468776047], [-60.334235683691716, -15.011191468776047], [-60.334235683691716, -15.002208315934851], [-60.34321883653291, -15.002208315934851], [-60.34321883653291, -14.993225163093655], [-60.35220198937411, -14.993225163093655], [-60.35220198937411, -15.02017462161723], [-60.34321883653291, -15.02017462161723]], [[-60.32525253085052, -15.02017462161723], [-60.32525253085052, -15.011191468776047], [-60.334235683691716, -15.011191468776047], [-60.334235683691716, -15.02017462161723], [-60.32525253085052, -15.02017462161723]], [[-60.513898740515614, -15.029157774458426], [-60.513898740515614, -15.011191468776047], [-60.52288189335681, -15.011191468776047], [-60.52288189335681, -15.02017462161723], [-60.5408481990392, -15.02017462161723], [-60.5408481990392, -15.029157774458426], [-60.513898740515614, -15.029157774458426]], [[-60.379151447897684, -15.029157774458426], [-60.379151447897684, -15.02017462161723], [-60.38813460073888, -15.02017462161723], [-60.38813460073888, -15.029157774458426], [-60.379151447897684, -15.029157774458426]], [[-60.31626937800932, -15.029157774458426], [-60.31626937800932, -15.02017462161723], [-60.32525253085052, -15.02017462161723], [-60.32525253085052, -15.029157774458426], [-60.31626937800932, -15.029157774458426]], [[-60.27135361380334, -15.029157774458426], [-60.27135361380334, -15.02017462161723], [-60.28033676664454, -15.02017462161723], [-60.28033676664454, -15.029157774458426], [-60.27135361380334, -15.029157774458426]], [[-60.5498313518804, -15.038140927299622], [-60.5498313518804, -15.029157774458426], [-60.558814504721596, -15.029157774458426], [-60.558814504721596, -15.038140927299622], [-60.5498313518804, -15.038140927299622]], [[-60.31626937800932, -15.047124080140819], [-60.31626937800932, -15.038140927299622], [-60.32525253085052, -15.038140927299622], [-60.32525253085052, -15.047124080140819], [-60.31626937800932, -15.047124080140819]], [[-60.34321883653291, -15.056107232982015], [-60.34321883653291, -15.047124080140819], [-60.35220198937411, -15.047124080140819], [-60.35220198937411, -15.056107232982015], [-60.34321883653291, -15.056107232982015]], [[-60.289319919485735, -15.056107232982015], [-60.289319919485735, -15.047124080140819], [-60.30728622516813, -15.047124080140819], [-60.30728622516813, -15.056107232982015], [-60.289319919485735, -15.056107232982015]], [[-60.38813460073888, -15.065090385823211], [-60.38813460073888, -15.056107232982015], [-60.379151447897684, -15.056107232982015], [-60.379151447897684, -15.038140927299622], [-60.397117753580076, -15.038140927299622], [-60.397117753580076, -15.029157774458426], [-60.40610090642127, -15.029157774458426], [-60.40610090642127, -15.047124080140819], [-60.397117753580076, -15.047124080140819], [-60.397117753580076, -15.065090385823211], [-60.38813460073888, -15.065090385823211]], [[-60.36118514221529, -15.065090385823211], [-60.36118514221529, -15.056107232982015], [-60.37016829505649, -15.056107232982015], [-60.37016829505649, -15.065090385823211], [-60.36118514221529, -15.065090385823211]], [[-60.28033676664454, -15.065090385823211], [-60.28033676664454, -15.056107232982015], [-60.289319919485735, -15.056107232982015], [-60.289319919485735, -15.065090385823211], [-60.28033676664454, -15.065090385823211]], [[-60.40610090642127, -15.074073538664408], [-60.40610090642127, -15.065090385823211], [-60.41508405926247, -15.065090385823211], [-60.41508405926247, -15.074073538664408], [-60.40610090642127, -15.074073538664408]], [[-60.37016829505649, -15.074073538664408], [-60.37016829505649, -15.065090385823211], [-60.379151447897684, -15.065090385823211], [-60.379151447897684, -15.074073538664408], [-60.37016829505649, -15.074073538664408]], [[-60.31626937800932, -15.074073538664408], [-60.31626937800932, -15.065090385823211], [-60.32525253085052, -15.065090385823211], [-60.32525253085052, -15.074073538664408], [-60.31626937800932, -15.074073538664408]]]}, 'id': '+13311+10028', 'properties': {'count': 1016, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.32525253085052, -15.415433346629825], [-60.31626937800932, -15.415433346629825], [-60.31626937800932, -15.40645019378863], [-60.32525253085052, -15.40645019378863], [-60.32525253085052, -15.415433346629825]]]}, 'id': '+13311+10064', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.32525253085052, -15.460349110835807], [-60.31626937800932, -15.460349110835807], [-60.31626937800932, -15.45136595799461], [-60.30728622516813, -15.45136595799461], [-60.30728622516813, -15.442382805153414], [-60.31626937800932, -15.442382805153414], [-60.31626937800932, -15.45136595799461], [-60.32525253085052, -15.45136595799461], [-60.32525253085052, -15.460349110835807]]]}, 'id': '+13311+10069', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.334235683691716, -15.550180639247756], [-60.31626937800932, -15.550180639247756], [-60.31626937800932, -15.532214333565364], [-60.30728622516813, -15.532214333565364], [-60.30728622516813, -15.523231180724167], [-60.289319919485735, -15.523231180724167], [-60.289319919485735, -15.51424802788297], [-60.29830307232693, -15.51424802788297], [-60.29830307232693, -15.505264875041775], [-60.289319919485735, -15.505264875041775], [-60.289319919485735, -15.496281722200578], [-60.29830307232693, -15.496281722200578], [-60.29830307232693, -15.487298569359382], [-60.32525253085052, -15.487298569359382], [-60.32525253085052, -15.505264875041775], [-60.31626937800932, -15.505264875041775], [-60.31626937800932, -15.51424802788297], [-60.334235683691716, -15.51424802788297], [-60.334235683691716, -15.523231180724167], [-60.32525253085052, -15.523231180724167], [-60.32525253085052, -15.54119748640656], [-60.334235683691716, -15.54119748640656], [-60.334235683691716, -15.550180639247756]]]}, 'id': '+13311+10079', 'properties': {'count': 19, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.32525253085052, -15.586113250612527], [-60.31626937800932, -15.586113250612527], [-60.31626937800932, -15.577130097771345], [-60.32525253085052, -15.577130097771345], [-60.32525253085052, -15.586113250612527]]]}, 'id': '+13311+10083', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.334235683691716, -15.631029014818509], [-60.31626937800932, -15.631029014818509], [-60.31626937800932, -15.622045861977313], [-60.334235683691716, -15.622045861977313], [-60.334235683691716, -15.631029014818509]]]}, 'id': '+13311+10088', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.32525253085052, -15.720860543230458], [-60.31626937800932, -15.720860543230458], [-60.31626937800932, -15.711877390389262], [-60.32525253085052, -15.711877390389262], [-60.32525253085052, -15.720860543230458]]]}, 'id': '+13311+10098', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.32525253085052, -15.747810001754047], [-60.31626937800932, -15.747810001754047], [-60.31626937800932, -15.73882684891285], [-60.32525253085052, -15.73882684891285], [-60.32525253085052, -15.747810001754047]]]}, 'id': '+13311+10101', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.32525253085052, -15.837641530165996], [-60.31626937800932, -15.837641530165996], [-60.31626937800932, -15.8286583773248], [-60.32525253085052, -15.8286583773248], [-60.32525253085052, -15.837641530165996]]]}, 'id': '+13311+10111', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.32525253085052, -16.18798449097261], [-60.31626937800932, -16.18798449097261], [-60.31626937800932, -16.170018185290218], [-60.30728622516813, -16.170018185290218], [-60.30728622516813, -16.16103503244902], [-60.31626937800932, -16.16103503244902], [-60.31626937800932, -16.15205187960784], [-60.29830307232693, -16.15205187960784], [-60.29830307232693, -16.143068726766643], [-60.31626937800932, -16.143068726766643], [-60.31626937800932, -16.15205187960784], [-60.334235683691716, -16.15205187960784], [-60.334235683691716, -16.16103503244902], [-60.31626937800932, -16.16103503244902], [-60.31626937800932, -16.170018185290218], [-60.334235683691716, -16.170018185290218], [-60.334235683691716, -16.179001338131414], [-60.32525253085052, -16.179001338131414], [-60.32525253085052, -16.18798449097261]]]}, 'id': '+13311+10150', 'properties': {'count': 8, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.32525253085052, -16.196967643813807], [-60.31626937800932, -16.196967643813807], [-60.31626937800932, -16.18798449097261], [-60.30728622516813, -16.18798449097261], [-60.30728622516813, -16.179001338131414], [-60.28033676664454, -16.179001338131414], [-60.28033676664454, -16.170018185290218], [-60.27135361380334, -16.170018185290218], [-60.27135361380334, -16.16103503244902], [-60.262370460962146, -16.16103503244902], [-60.262370460962146, -16.143068726766643], [-60.27135361380334, -16.143068726766643], [-60.27135361380334, -16.15205187960784], [-60.289319919485735, -16.15205187960784], [-60.289319919485735, -16.134085573925447], [-60.29830307232693, -16.134085573925447], [-60.29830307232693, -16.12510242108425], [-60.289319919485735, -16.12510242108425], [-60.289319919485735, -16.107136115401858], [-60.29830307232693, -16.107136115401858], [-60.29830307232693, -16.116119268243054], [-60.30728622516813, -16.116119268243054], [-60.30728622516813, -16.134085573925447], [-60.29830307232693, -16.134085573925447], [-60.29830307232693, -16.15205187960784], [-60.30728622516813, -16.15205187960784], [-60.30728622516813, -16.170018185290218], [-60.31626937800932, -16.170018185290218], [-60.31626937800932, -16.18798449097261], [-60.32525253085052, -16.18798449097261], [-60.32525253085052, -16.196967643813807]], [[-60.28033676664454, -16.170018185290218], [-60.28033676664454, -16.16103503244902], [-60.289319919485735, -16.16103503244902], [-60.289319919485735, -16.15205187960784], [-60.29830307232693, -16.15205187960784], [-60.29830307232693, -16.170018185290218], [-60.28033676664454, -16.170018185290218]]]}, 'id': '+13311+10151', 'properties': {'count': 19, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.32525253085052, -16.250866560860985], [-60.31626937800932, -16.250866560860985], [-60.31626937800932, -16.24188340801979], [-60.32525253085052, -16.24188340801979], [-60.32525253085052, -16.250866560860985]]]}, 'id': '+13311+10157', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.31626937800932, -15.424416499471022], [-60.30728622516813, -15.424416499471022], [-60.30728622516813, -15.415433346629825], [-60.31626937800932, -15.415433346629825], [-60.31626937800932, -15.424416499471022]]]}, 'id': '+13312+10065', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.31626937800932, -15.442382805153414], [-60.30728622516813, -15.442382805153414], [-60.30728622516813, -15.433399652312218], [-60.31626937800932, -15.433399652312218], [-60.31626937800932, -15.442382805153414]]]}, 'id': '+13312+10067', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.31626937800932, -15.631029014818509], [-60.30728622516813, -15.631029014818509], [-60.30728622516813, -15.622045861977313], [-60.31626937800932, -15.622045861977313], [-60.31626937800932, -15.631029014818509]]]}, 'id': '+13312+10088', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.31626937800932, -15.666961626183294], [-60.30728622516813, -15.666961626183294], [-60.30728622516813, -15.657978473342098], [-60.29830307232693, -15.657978473342098], [-60.29830307232693, -15.648995320500902], [-60.31626937800932, -15.648995320500902], [-60.31626937800932, -15.666961626183294]]]}, 'id': '+13312+10092', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.31626937800932, -16.026287739831105], [-60.30728622516813, -16.026287739831105], [-60.30728622516813, -16.01730458698991], [-60.31626937800932, -16.01730458698991], [-60.31626937800932, -16.026287739831105]]]}, 'id': '+13312+10132', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.31626937800932, -16.295782325066952], [-60.30728622516813, -16.295782325066952], [-60.30728622516813, -16.286799172225756], [-60.31626937800932, -16.286799172225756], [-60.31626937800932, -16.27781601938456], [-60.32525253085052, -16.27781601938456], [-60.32525253085052, -16.286799172225756], [-60.31626937800932, -16.286799172225756], [-60.31626937800932, -16.295782325066952]]]}, 'id': '+13312+10162', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.30728622516813, -16.09815296256066], [-60.29830307232693, -16.09815296256066], [-60.29830307232693, -16.089169809719465], [-60.30728622516813, -16.089169809719465], [-60.30728622516813, -16.09815296256066]]]}, 'id': '+13313+10140', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.30728622516813, -16.196967643813807], [-60.29830307232693, -16.196967643813807], [-60.29830307232693, -16.18798449097261], [-60.289319919485735, -16.18798449097261], [-60.289319919485735, -16.179001338131414], [-60.29830307232693, -16.179001338131414], [-60.29830307232693, -16.18798449097261], [-60.30728622516813, -16.18798449097261], [-60.30728622516813, -16.196967643813807]]]}, 'id': '+13313+10151', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.30728622516813, -16.2149339494962], [-60.29830307232693, -16.2149339494962], [-60.29830307232693, -16.205950796655003], [-60.30728622516813, -16.205950796655003], [-60.30728622516813, -16.2149339494962]]]}, 'id': '+13313+10153', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.30728622516813, -16.295782325066952], [-60.29830307232693, -16.295782325066952], [-60.29830307232693, -16.286799172225756], [-60.30728622516813, -16.286799172225756], [-60.30728622516813, -16.295782325066952]]]}, 'id': '+13313+10162', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.30728622516813, -16.37663070063772], [-60.29830307232693, -16.37663070063772], [-60.29830307232693, -16.367647547796523], [-60.289319919485735, -16.367647547796523], [-60.289319919485735, -16.358664394955326], [-60.30728622516813, -16.358664394955326], [-60.30728622516813, -16.37663070063772]]]}, 'id': '+13313+10171', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.29830307232693, -15.424416499471022], [-60.289319919485735, -15.424416499471022], [-60.289319919485735, -15.415433346629825], [-60.29830307232693, -15.415433346629825], [-60.29830307232693, -15.424416499471022]]]}, 'id': '+13314+10065', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.29830307232693, -15.460349110835807], [-60.289319919485735, -15.460349110835807], [-60.289319919485735, -15.442382805153414], [-60.27135361380334, -15.442382805153414], [-60.27135361380334, -15.433399652312218], [-60.28033676664454, -15.433399652312218], [-60.28033676664454, -15.424416499471022], [-60.289319919485735, -15.424416499471022], [-60.289319919485735, -15.433399652312218], [-60.29830307232693, -15.433399652312218], [-60.29830307232693, -15.460349110835807]]]}, 'id': '+13314+10069', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.29830307232693, -15.640012167659705], [-60.289319919485735, -15.640012167659705], [-60.289319919485735, -15.631029014818509], [-60.29830307232693, -15.631029014818509], [-60.29830307232693, -15.640012167659705]]]}, 'id': '+13314+10089', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.30728622516813, -15.936456211419141], [-60.289319919485735, -15.936456211419141], [-60.289319919485735, -15.909506752895567], [-60.29830307232693, -15.909506752895567], [-60.29830307232693, -15.92747305857796], [-60.30728622516813, -15.92747305857796], [-60.30728622516813, -15.936456211419141]]]}, 'id': '+13314+10122', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.29830307232693, -15.96340566994273], [-60.289319919485735, -15.96340566994273], [-60.289319919485735, -15.954422517101534], [-60.29830307232693, -15.954422517101534], [-60.29830307232693, -15.96340566994273]]]}, 'id': '+13314+10125', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.30728622516813, -16.026287739831105], [-60.289319919485735, -16.026287739831105], [-60.289319919485735, -15.99035512846632], [-60.29830307232693, -15.99035512846632], [-60.29830307232693, -15.972388822783927], [-60.31626937800932, -15.972388822783927], [-60.31626937800932, -15.99035512846632], [-60.29830307232693, -15.99035512846632], [-60.29830307232693, -15.999338281307516], [-60.30728622516813, -15.999338281307516], [-60.30728622516813, -16.008321434148712], [-60.31626937800932, -16.008321434148712], [-60.31626937800932, -16.01730458698991], [-60.30728622516813, -16.01730458698991], [-60.30728622516813, -16.026287739831105]]]}, 'id': '+13314+10132', 'properties': {'count': 12, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.30728622516813, -16.25984971370218], [-60.289319919485735, -16.25984971370218], [-60.289319919485735, -16.250866560860985], [-60.30728622516813, -16.250866560860985], [-60.30728622516813, -16.25984971370218]]]}, 'id': '+13314+10158', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.29830307232693, -16.27781601938456], [-60.289319919485735, -16.27781601938456], [-60.289319919485735, -16.268832866543377], [-60.29830307232693, -16.268832866543377], [-60.29830307232693, -16.25984971370218], [-60.30728622516813, -16.25984971370218], [-60.30728622516813, -16.268832866543377], [-60.29830307232693, -16.268832866543377], [-60.29830307232693, -16.27781601938456]]]}, 'id': '+13314+10160', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.29830307232693, -16.358664394955326], [-60.289319919485735, -16.358664394955326], [-60.289319919485735, -16.34968124211413], [-60.29830307232693, -16.34968124211413], [-60.29830307232693, -16.340698089272934], [-60.30728622516813, -16.340698089272934], [-60.30728622516813, -16.34968124211413], [-60.29830307232693, -16.34968124211413], [-60.29830307232693, -16.358664394955326]]]}, 'id': '+13314+10169', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.289319919485735, -15.460349110835807], [-60.28033676664454, -15.460349110835807], [-60.28033676664454, -15.45136595799461], [-60.289319919485735, -15.45136595799461], [-60.289319919485735, -15.460349110835807]]]}, 'id': '+13315+10069', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.289319919485735, -15.496281722200578], [-60.28033676664454, -15.496281722200578], [-60.28033676664454, -15.487298569359382], [-60.289319919485735, -15.487298569359382], [-60.289319919485735, -15.496281722200578]]]}, 'id': '+13315+10073', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.289319919485735, -15.73882684891285], [-60.28033676664454, -15.73882684891285], [-60.28033676664454, -15.729843696071654], [-60.289319919485735, -15.729843696071654], [-60.289319919485735, -15.73882684891285]]]}, 'id': '+13315+10100', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.289319919485735, -15.936456211419141], [-60.28033676664454, -15.936456211419141], [-60.28033676664454, -15.918489905736763], [-60.289319919485735, -15.918489905736763], [-60.289319919485735, -15.936456211419141]]]}, 'id': '+13315+10122', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.289319919485735, -15.954422517101534], [-60.28033676664454, -15.954422517101534], [-60.28033676664454, -15.945439364260338], [-60.289319919485735, -15.945439364260338], [-60.289319919485735, -15.954422517101534]]]}, 'id': '+13315+10124', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.29830307232693, -16.196967643813807], [-60.28033676664454, -16.196967643813807], [-60.28033676664454, -16.18798449097261], [-60.29830307232693, -16.18798449097261], [-60.29830307232693, -16.196967643813807]]]}, 'id': '+13315+10151', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.289319919485735, -16.24188340801979], [-60.28033676664454, -16.24188340801979], [-60.28033676664454, -16.223917102337396], [-60.30728622516813, -16.223917102337396], [-60.30728622516813, -16.205950796655003], [-60.32525253085052, -16.205950796655003], [-60.32525253085052, -16.2149339494962], [-60.31626937800932, -16.2149339494962], [-60.31626937800932, -16.232900255178592], [-60.30728622516813, -16.232900255178592], [-60.30728622516813, -16.24188340801979], [-60.29830307232693, -16.24188340801979], [-60.29830307232693, -16.232900255178592], [-60.289319919485735, -16.232900255178592], [-60.289319919485735, -16.24188340801979]]]}, 'id': '+13315+10156', 'properties': {'count': 9, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.28033676664454, -15.882557294371978], [-60.27135361380334, -15.882557294371978], [-60.27135361380334, -15.873574141530781], [-60.28033676664454, -15.873574141530781], [-60.28033676664454, -15.882557294371978]]]}, 'id': '+13316+10116', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.28033676664454, -15.99035512846632], [-60.27135361380334, -15.99035512846632], [-60.27135361380334, -15.981371975625123], [-60.28033676664454, -15.981371975625123], [-60.28033676664454, -15.99035512846632]]]}, 'id': '+13316+10128', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.289319919485735, -16.15205187960784], [-60.27135361380334, -16.15205187960784], [-60.27135361380334, -16.143068726766643], [-60.262370460962146, -16.143068726766643], [-60.262370460962146, -16.134085573925447], [-60.289319919485735, -16.134085573925447], [-60.289319919485735, -16.15205187960784]]]}, 'id': '+13316+10146', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.28033676664454, -16.179001338131414], [-60.27135361380334, -16.179001338131414], [-60.27135361380334, -16.170018185290218], [-60.28033676664454, -16.170018185290218], [-60.28033676664454, -16.179001338131414]]]}, 'id': '+13316+10149', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.28033676664454, -16.2149339494962], [-60.27135361380334, -16.2149339494962], [-60.27135361380334, -16.205950796655003], [-60.28033676664454, -16.205950796655003], [-60.28033676664454, -16.2149339494962]]]}, 'id': '+13316+10153', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.28033676664454, -16.232900255178592], [-60.27135361380334, -16.232900255178592], [-60.27135361380334, -16.2149339494962], [-60.262370460962146, -16.2149339494962], [-60.262370460962146, -16.205950796655003], [-60.27135361380334, -16.205950796655003], [-60.27135361380334, -16.2149339494962], [-60.28033676664454, -16.2149339494962], [-60.28033676664454, -16.232900255178592]]]}, 'id': '+13316+10155', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.28033676664454, -16.34968124211413], [-60.27135361380334, -16.34968124211413], [-60.27135361380334, -16.340698089272934], [-60.28033676664454, -16.340698089272934], [-60.28033676664454, -16.34968124211413]]]}, 'id': '+13316+10168', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.27135361380334, -15.0920398443468], [-60.262370460962146, -15.0920398443468], [-60.262370460962146, -15.083056691505604], [-60.25338730812095, -15.083056691505604], [-60.25338730812095, -15.074073538664408], [-60.262370460962146, -15.074073538664408], [-60.262370460962146, -15.083056691505604], [-60.27135361380334, -15.083056691505604], [-60.27135361380334, -15.0920398443468]]]}, 'id': '+13317+10028', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.27135361380334, -15.45136595799461], [-60.262370460962146, -15.45136595799461], [-60.262370460962146, -15.442382805153414], [-60.27135361380334, -15.442382805153414], [-60.27135361380334, -15.45136595799461]]]}, 'id': '+13317+10068', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.27135361380334, -15.51424802788297], [-60.262370460962146, -15.51424802788297], [-60.262370460962146, -15.505264875041775], [-60.27135361380334, -15.505264875041775], [-60.27135361380334, -15.51424802788297]]]}, 'id': '+13317+10075', 'properties': {'count': 1, 'label': 4}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.27135361380334, -15.568146944930149], [-60.262370460962146, -15.568146944930149], [-60.262370460962146, -15.559163792088953], [-60.27135361380334, -15.559163792088953], [-60.27135361380334, -15.568146944930149]]]}, 'id': '+13317+10081', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.28033676664454, -15.60407955629492], [-60.262370460962146, -15.60407955629492], [-60.262370460962146, -15.586113250612527], [-60.27135361380334, -15.586113250612527], [-60.27135361380334, -15.595096403453724], [-60.28033676664454, -15.595096403453724], [-60.28033676664454, -15.60407955629492]]]}, 'id': '+13317+10085', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.27135361380334, -15.837641530165996], [-60.262370460962146, -15.837641530165996], [-60.262370460962146, -15.8286583773248], [-60.27135361380334, -15.8286583773248], [-60.27135361380334, -15.837641530165996]]]}, 'id': '+13317+10111', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.27135361380334, -15.981371975625123], [-60.262370460962146, -15.981371975625123], [-60.262370460962146, -15.972388822783927], [-60.27135361380334, -15.972388822783927], [-60.27135361380334, -15.981371975625123]]]}, 'id': '+13317+10127', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.27135361380334, -16.09815296256066], [-60.262370460962146, -16.09815296256066], [-60.262370460962146, -16.089169809719465], [-60.27135361380334, -16.089169809719465], [-60.27135361380334, -16.09815296256066]]]}, 'id': '+13317+10140', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.27135361380334, -16.12510242108425], [-60.262370460962146, -16.12510242108425], [-60.262370460962146, -16.107136115401858], [-60.27135361380334, -16.107136115401858], [-60.27135361380334, -16.12510242108425]]]}, 'id': '+13317+10143', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.27135361380334, -16.134085573925447], [-60.262370460962146, -16.134085573925447], [-60.262370460962146, -16.12510242108425], [-60.27135361380334, -16.12510242108425], [-60.27135361380334, -16.134085573925447]]]}, 'id': '+13317+10144', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.28033676664454, -16.196967643813807], [-60.262370460962146, -16.196967643813807], [-60.262370460962146, -16.18798449097261], [-60.28033676664454, -16.18798449097261], [-60.28033676664454, -16.196967643813807]]]}, 'id': '+13317+10151', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.262370460962146, -15.047124080140819], [-60.25338730812095, -15.047124080140819], [-60.25338730812095, -15.038140927299622], [-60.262370460962146, -15.038140927299622], [-60.262370460962146, -15.047124080140819]]]}, 'id': '+13318+10023', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.27135361380334, -15.478315416518186], [-60.25338730812095, -15.478315416518186], [-60.25338730812095, -15.460349110835807], [-60.262370460962146, -15.460349110835807], [-60.262370460962146, -15.45136595799461], [-60.28033676664454, -15.45136595799461], [-60.28033676664454, -15.469332263677003], [-60.27135361380334, -15.469332263677003], [-60.27135361380334, -15.478315416518186]]]}, 'id': '+13318+10071', 'properties': {'count': 7, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.262370460962146, -15.648995320500902], [-60.25338730812095, -15.648995320500902], [-60.25338730812095, -15.640012167659705], [-60.262370460962146, -15.640012167659705], [-60.262370460962146, -15.613062709136116], [-60.28033676664454, -15.613062709136116], [-60.28033676664454, -15.622045861977313], [-60.27135361380334, -15.622045861977313], [-60.27135361380334, -15.640012167659705], [-60.262370460962146, -15.640012167659705], [-60.262370460962146, -15.648995320500902]]]}, 'id': '+13318+10090', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.262370460962146, -15.729843696071654], [-60.25338730812095, -15.729843696071654], [-60.25338730812095, -15.720860543230458], [-60.262370460962146, -15.720860543230458], [-60.262370460962146, -15.729843696071654]]]}, 'id': '+13318+10099', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.262370460962146, -15.945439364260338], [-60.25338730812095, -15.945439364260338], [-60.25338730812095, -15.936456211419141], [-60.262370460962146, -15.936456211419141], [-60.262370460962146, -15.945439364260338]]]}, 'id': '+13318+10123', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.262370460962146, -16.232900255178592], [-60.25338730812095, -16.232900255178592], [-60.25338730812095, -16.223917102337396], [-60.262370460962146, -16.223917102337396], [-60.262370460962146, -16.232900255178592]]]}, 'id': '+13318+10155', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.262370460962146, -16.24188340801979], [-60.25338730812095, -16.24188340801979], [-60.25338730812095, -16.232900255178592], [-60.262370460962146, -16.232900255178592], [-60.262370460962146, -16.24188340801979]]]}, 'id': '+13318+10156', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.262370460962146, -16.27781601938456], [-60.25338730812095, -16.27781601938456], [-60.25338730812095, -16.268832866543377], [-60.24440415527977, -16.268832866543377], [-60.24440415527977, -16.25984971370218], [-60.25338730812095, -16.25984971370218], [-60.25338730812095, -16.268832866543377], [-60.262370460962146, -16.268832866543377], [-60.262370460962146, -16.27781601938456]]]}, 'id': '+13318+10160', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.27135361380334, -16.331714936431737], [-60.25338730812095, -16.331714936431737], [-60.25338730812095, -16.32273178359054], [-60.262370460962146, -16.32273178359054], [-60.262370460962146, -16.313748630749345], [-60.27135361380334, -16.313748630749345], [-60.27135361380334, -16.331714936431737]]]}, 'id': '+13318+10166', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.25338730812095, -15.478315416518186], [-60.24440415527977, -15.478315416518186], [-60.24440415527977, -15.469332263677003], [-60.25338730812095, -15.469332263677003], [-60.25338730812095, -15.478315416518186]]]}, 'id': '+13319+10071', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.262370460962146, -15.595096403453724], [-60.24440415527977, -15.595096403453724], [-60.24440415527977, -15.586113250612527], [-60.262370460962146, -15.586113250612527], [-60.262370460962146, -15.568146944930149], [-60.27135361380334, -15.568146944930149], [-60.27135361380334, -15.577130097771345], [-60.28033676664454, -15.577130097771345], [-60.28033676664454, -15.586113250612527], [-60.289319919485735, -15.586113250612527], [-60.289319919485735, -15.577130097771345], [-60.29830307232693, -15.577130097771345], [-60.29830307232693, -15.595096403453724], [-60.28033676664454, -15.595096403453724], [-60.28033676664454, -15.586113250612527], [-60.262370460962146, -15.586113250612527], [-60.262370460962146, -15.595096403453724]]]}, 'id': '+13319+10084', 'properties': {'count': 8, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.25338730812095, -15.891540447213174], [-60.24440415527977, -15.891540447213174], [-60.24440415527977, -15.864590988689585], [-60.25338730812095, -15.864590988689585], [-60.25338730812095, -15.855607835848389], [-60.262370460962146, -15.855607835848389], [-60.262370460962146, -15.873574141530781], [-60.25338730812095, -15.873574141530781], [-60.25338730812095, -15.891540447213174]]]}, 'id': '+13319+10117', 'properties': {'count': 5, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.25338730812095, -15.99035512846632], [-60.24440415527977, -15.99035512846632], [-60.24440415527977, -15.981371975625123], [-60.23542100243857, -15.981371975625123], [-60.23542100243857, -15.972388822783927], [-60.262370460962146, -15.972388822783927], [-60.262370460962146, -15.981371975625123], [-60.25338730812095, -15.981371975625123], [-60.25338730812095, -15.99035512846632]]]}, 'id': '+13319+10128', 'properties': {'count': 4, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.25338730812095, -16.18798449097261], [-60.24440415527977, -16.18798449097261], [-60.24440415527977, -16.179001338131414], [-60.25338730812095, -16.179001338131414], [-60.25338730812095, -16.18798449097261]]]}, 'id': '+13319+10150', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.24440415527977, -15.550180639247756], [-60.23542100243857, -15.550180639247756], [-60.23542100243857, -15.54119748640656], [-60.24440415527977, -15.54119748640656], [-60.24440415527977, -15.550180639247756]]]}, 'id': '+13320+10079', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.25338730812095, -15.648995320500902], [-60.23542100243857, -15.648995320500902], [-60.23542100243857, -15.631029014818509], [-60.24440415527977, -15.631029014818509], [-60.24440415527977, -15.640012167659705], [-60.25338730812095, -15.640012167659705], [-60.25338730812095, -15.648995320500902]]]}, 'id': '+13320+10090', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.24440415527977, -15.67594477902449], [-60.23542100243857, -15.67594477902449], [-60.23542100243857, -15.666961626183294], [-60.24440415527977, -15.666961626183294], [-60.24440415527977, -15.67594477902449]]]}, 'id': '+13320+10093', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.24440415527977, -15.693911084706883], [-60.23542100243857, -15.693911084706883], [-60.23542100243857, -15.684927931865687], [-60.24440415527977, -15.684927931865687], [-60.24440415527977, -15.693911084706883]]]}, 'id': '+13320+10095', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.24440415527977, -16.15205187960784], [-60.23542100243857, -16.15205187960784], [-60.23542100243857, -16.143068726766643], [-60.24440415527977, -16.143068726766643], [-60.24440415527977, -16.15205187960784]]]}, 'id': '+13320+10146', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.24440415527977, -16.16103503244902], [-60.23542100243857, -16.16103503244902], [-60.23542100243857, -16.15205187960784], [-60.24440415527977, -16.15205187960784], [-60.24440415527977, -16.16103503244902]]]}, 'id': '+13320+10147', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.24440415527977, -16.196967643813807], [-60.23542100243857, -16.196967643813807], [-60.23542100243857, -16.18798449097261], [-60.24440415527977, -16.18798449097261], [-60.24440415527977, -16.196967643813807]]]}, 'id': '+13320+10151', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.23542100243857, -15.613062709136116], [-60.226437849597374, -15.613062709136116], [-60.226437849597374, -15.60407955629492], [-60.23542100243857, -15.60407955629492], [-60.23542100243857, -15.613062709136116]]]}, 'id': '+13321+10086', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.23542100243857, -15.92747305857796], [-60.226437849597374, -15.92747305857796], [-60.226437849597374, -15.918489905736763], [-60.23542100243857, -15.918489905736763], [-60.23542100243857, -15.92747305857796]]]}, 'id': '+13321+10121', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.23542100243857, -16.044254045513483], [-60.226437849597374, -16.044254045513483], [-60.226437849597374, -16.0352708926723], [-60.23542100243857, -16.0352708926723], [-60.23542100243857, -16.044254045513483]]]}, 'id': '+13321+10134', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.23542100243857, -16.179001338131414], [-60.226437849597374, -16.179001338131414], [-60.226437849597374, -16.16103503244902], [-60.23542100243857, -16.16103503244902], [-60.23542100243857, -16.179001338131414]]]}, 'id': '+13321+10149', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.23542100243857, -16.250866560860985], [-60.226437849597374, -16.250866560860985], [-60.226437849597374, -16.24188340801979], [-60.23542100243857, -16.24188340801979], [-60.23542100243857, -16.232900255178592], [-60.21745469675618, -16.232900255178592], [-60.21745469675618, -16.223917102337396], [-60.226437849597374, -16.223917102337396], [-60.226437849597374, -16.2149339494962], [-60.23542100243857, -16.2149339494962], [-60.23542100243857, -16.205950796655003], [-60.24440415527977, -16.205950796655003], [-60.24440415527977, -16.196967643813807], [-60.25338730812095, -16.196967643813807], [-60.25338730812095, -16.205950796655003], [-60.24440415527977, -16.205950796655003], [-60.24440415527977, -16.24188340801979], [-60.25338730812095, -16.24188340801979], [-60.25338730812095, -16.250866560860985], [-60.24440415527977, -16.250866560860985], [-60.24440415527977, -16.24188340801979], [-60.23542100243857, -16.24188340801979], [-60.23542100243857, -16.250866560860985]]]}, 'id': '+13321+10157', 'properties': {'count': 10, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.23542100243857, -16.45747907620847], [-60.226437849597374, -16.45747907620847], [-60.226437849597374, -16.448495923367275], [-60.21745469675618, -16.448495923367275], [-60.21745469675618, -16.43951277052608], [-60.226437849597374, -16.43951277052608], [-60.226437849597374, -16.430529617684883], [-60.23542100243857, -16.430529617684883], [-60.23542100243857, -16.43951277052608], [-60.226437849597374, -16.43951277052608], [-60.226437849597374, -16.448495923367275], [-60.23542100243857, -16.448495923367275], [-60.23542100243857, -16.45747907620847]]]}, 'id': '+13321+10180', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.226437849597374, -15.666961626183294], [-60.21745469675618, -15.666961626183294], [-60.21745469675618, -15.648995320500902], [-60.226437849597374, -15.648995320500902], [-60.226437849597374, -15.666961626183294]]]}, 'id': '+13322+10092', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.226437849597374, -15.67594477902449], [-60.21745469675618, -15.67594477902449], [-60.21745469675618, -15.666961626183294], [-60.226437849597374, -15.666961626183294], [-60.226437849597374, -15.67594477902449]]]}, 'id': '+13322+10093', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.226437849597374, -15.720860543230458], [-60.21745469675618, -15.720860543230458], [-60.21745469675618, -15.711877390389262], [-60.226437849597374, -15.711877390389262], [-60.226437849597374, -15.720860543230458]]]}, 'id': '+13322+10098', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.24440415527977, -15.918489905736763], [-60.21745469675618, -15.918489905736763], [-60.21745469675618, -15.90052360005437], [-60.226437849597374, -15.90052360005437], [-60.226437849597374, -15.882557294371978], [-60.20847154391498, -15.882557294371978], [-60.20847154391498, -15.864590988689585], [-60.21745469675618, -15.864590988689585], [-60.21745469675618, -15.837641530165996], [-60.20847154391498, -15.837641530165996], [-60.20847154391498, -15.819675224483603], [-60.226437849597374, -15.819675224483603], [-60.226437849597374, -15.855607835848389], [-60.23542100243857, -15.855607835848389], [-60.23542100243857, -15.90052360005437], [-60.226437849597374, -15.90052360005437], [-60.226437849597374, -15.909506752895567], [-60.24440415527977, -15.909506752895567], [-60.24440415527977, -15.918489905736763]]]}, 'id': '+13322+10120', 'properties': {'count': 20, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.226437849597374, -16.25984971370218], [-60.21745469675618, -16.25984971370218], [-60.21745469675618, -16.250866560860985], [-60.226437849597374, -16.250866560860985], [-60.226437849597374, -16.25984971370218]]]}, 'id': '+13322+10158', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.226437849597374, -15.810692071642421], [-60.20847154391498, -15.810692071642421], [-60.20847154391498, -15.801708918801225], [-60.21745469675618, -15.801708918801225], [-60.21745469675618, -15.783742613118832], [-60.20847154391498, -15.783742613118832], [-60.20847154391498, -15.76577630743644], [-60.21745469675618, -15.76577630743644], [-60.21745469675618, -15.756793154595243], [-60.23542100243857, -15.756793154595243], [-60.23542100243857, -15.774759460277636], [-60.226437849597374, -15.774759460277636], [-60.226437849597374, -15.783742613118832], [-60.23542100243857, -15.783742613118832], [-60.23542100243857, -15.792725765960029], [-60.226437849597374, -15.792725765960029], [-60.226437849597374, -15.810692071642421]], [[-60.21745469675618, -15.774759460277636], [-60.21745469675618, -15.76577630743644], [-60.226437849597374, -15.76577630743644], [-60.226437849597374, -15.774759460277636], [-60.21745469675618, -15.774759460277636]]]}, 'id': '+13323+10108', 'properties': {'count': 11, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.21745469675618, -15.855607835848389], [-60.20847154391498, -15.855607835848389], [-60.20847154391498, -15.837641530165996], [-60.21745469675618, -15.837641530165996], [-60.21745469675618, -15.855607835848389]]]}, 'id': '+13323+10113', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.21745469675618, -15.918489905736763], [-60.20847154391498, -15.918489905736763], [-60.20847154391498, -15.90052360005437], [-60.21745469675618, -15.90052360005437], [-60.21745469675618, -15.891540447213174], [-60.226437849597374, -15.891540447213174], [-60.226437849597374, -15.90052360005437], [-60.21745469675618, -15.90052360005437], [-60.21745469675618, -15.918489905736763]]]}, 'id': '+13323+10120', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.226437849597374, -15.981371975625123], [-60.20847154391498, -15.981371975625123], [-60.20847154391498, -15.972388822783927], [-60.21745469675618, -15.972388822783927], [-60.21745469675618, -15.96340566994273], [-60.20847154391498, -15.96340566994273], [-60.20847154391498, -15.954422517101534], [-60.21745469675618, -15.954422517101534], [-60.21745469675618, -15.945439364260338], [-60.226437849597374, -15.945439364260338], [-60.226437849597374, -15.954422517101534], [-60.23542100243857, -15.954422517101534], [-60.23542100243857, -15.945439364260338], [-60.24440415527977, -15.945439364260338], [-60.24440415527977, -15.954422517101534], [-60.25338730812095, -15.954422517101534], [-60.25338730812095, -15.96340566994273], [-60.262370460962146, -15.96340566994273], [-60.262370460962146, -15.945439364260338], [-60.27135361380334, -15.945439364260338], [-60.27135361380334, -15.972388822783927], [-60.226437849597374, -15.972388822783927], [-60.226437849597374, -15.981371975625123]], [[-60.21745469675618, -15.96340566994273], [-60.21745469675618, -15.954422517101534], [-60.226437849597374, -15.954422517101534], [-60.226437849597374, -15.96340566994273], [-60.21745469675618, -15.96340566994273]]]}, 'id': '+13323+10127', 'properties': {'count': 16, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.20847154391498, -15.792725765960029], [-60.199488391073785, -15.792725765960029], [-60.199488391073785, -15.783742613118832], [-60.20847154391498, -15.783742613118832], [-60.20847154391498, -15.792725765960029]]]}, 'id': '+13324+10106', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.20847154391498, -15.873574141530781], [-60.199488391073785, -15.873574141530781], [-60.199488391073785, -15.846624683007192], [-60.20847154391498, -15.846624683007192], [-60.20847154391498, -15.873574141530781]]]}, 'id': '+13324+10115', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.20847154391498, -15.945439364260338], [-60.199488391073785, -15.945439364260338], [-60.199488391073785, -15.936456211419141], [-60.20847154391498, -15.936456211419141], [-60.20847154391498, -15.945439364260338]]]}, 'id': '+13324+10123', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.20847154391498, -16.170018185290218], [-60.199488391073785, -16.170018185290218], [-60.199488391073785, -16.16103503244902], [-60.20847154391498, -16.16103503244902], [-60.20847154391498, -16.170018185290218]]]}, 'id': '+13324+10148', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.20847154391498, -16.24188340801979], [-60.199488391073785, -16.24188340801979], [-60.199488391073785, -16.232900255178592], [-60.19050523823259, -16.232900255178592], [-60.19050523823259, -16.223917102337396], [-60.20847154391498, -16.223917102337396], [-60.20847154391498, -16.24188340801979]]]}, 'id': '+13324+10156', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.20847154391498, -16.25984971370218], [-60.199488391073785, -16.25984971370218], [-60.199488391073785, -16.250866560860985], [-60.20847154391498, -16.250866560860985], [-60.20847154391498, -16.25984971370218]]]}, 'id': '+13324+10158', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.20847154391498, -16.295782325066952], [-60.199488391073785, -16.295782325066952], [-60.199488391073785, -16.286799172225756], [-60.20847154391498, -16.286799172225756], [-60.20847154391498, -16.27781601938456], [-60.21745469675618, -16.27781601938456], [-60.21745469675618, -16.286799172225756], [-60.20847154391498, -16.286799172225756], [-60.20847154391498, -16.295782325066952]]]}, 'id': '+13324+10162', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.199488391073785, -15.873574141530781], [-60.19050523823259, -15.873574141530781], [-60.19050523823259, -15.864590988689585], [-60.199488391073785, -15.864590988689585], [-60.199488391073785, -15.873574141530781]]]}, 'id': '+13325+10115', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.199488391073785, -15.999338281307516], [-60.19050523823259, -15.999338281307516], [-60.19050523823259, -15.99035512846632], [-60.199488391073785, -15.99035512846632], [-60.199488391073785, -15.981371975625123], [-60.20847154391498, -15.981371975625123], [-60.20847154391498, -15.99035512846632], [-60.199488391073785, -15.99035512846632], [-60.199488391073785, -15.999338281307516]]]}, 'id': '+13325+10129', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.20847154391498, -16.2149339494962], [-60.19050523823259, -16.2149339494962], [-60.19050523823259, -16.205950796655003], [-60.20847154391498, -16.205950796655003], [-60.20847154391498, -16.196967643813807], [-60.21745469675618, -16.196967643813807], [-60.21745469675618, -16.205950796655003], [-60.20847154391498, -16.205950796655003], [-60.20847154391498, -16.2149339494962]]]}, 'id': '+13325+10153', 'properties': {'count': 3, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.19050523823259, -15.96340566994273], [-60.18152208539139, -15.96340566994273], [-60.18152208539139, -15.954422517101534], [-60.19050523823259, -15.954422517101534], [-60.19050523823259, -15.96340566994273]]]}, 'id': '+13326+10125', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.19050523823259, -16.044254045513483], [-60.18152208539139, -16.044254045513483], [-60.18152208539139, -16.0352708926723], [-60.19050523823259, -16.0352708926723], [-60.19050523823259, -16.044254045513483]]]}, 'id': '+13326+10134', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.19050523823259, -16.196967643813807], [-60.18152208539139, -16.196967643813807], [-60.18152208539139, -16.18798449097261], [-60.19050523823259, -16.18798449097261], [-60.19050523823259, -16.179001338131414], [-60.199488391073785, -16.179001338131414], [-60.199488391073785, -16.18798449097261], [-60.19050523823259, -16.18798449097261], [-60.19050523823259, -16.196967643813807]]]}, 'id': '+13326+10151', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.19050523823259, -16.24188340801979], [-60.18152208539139, -16.24188340801979], [-60.18152208539139, -16.232900255178592], [-60.19050523823259, -16.232900255178592], [-60.19050523823259, -16.24188340801979]]]}, 'id': '+13326+10156', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.19050523823259, -16.295782325066952], [-60.18152208539139, -16.295782325066952], [-60.18152208539139, -16.286799172225756], [-60.163555779709, -16.286799172225756], [-60.163555779709, -16.27781601938456], [-60.18152208539139, -16.27781601938456], [-60.18152208539139, -16.268832866543377], [-60.19050523823259, -16.268832866543377], [-60.19050523823259, -16.27781601938456], [-60.18152208539139, -16.27781601938456], [-60.18152208539139, -16.286799172225756], [-60.19050523823259, -16.286799172225756], [-60.19050523823259, -16.295782325066952]]]}, 'id': '+13326+10162', 'properties': {'count': 4, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.19050523823259, -16.32273178359054], [-60.18152208539139, -16.32273178359054], [-60.18152208539139, -16.313748630749345], [-60.1725389325502, -16.313748630749345], [-60.1725389325502, -16.30476547790815], [-60.18152208539139, -16.30476547790815], [-60.18152208539139, -16.313748630749345], [-60.19050523823259, -16.313748630749345], [-60.19050523823259, -16.32273178359054]]]}, 'id': '+13326+10165', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.18152208539139, -16.116119268243054], [-60.1725389325502, -16.116119268243054], [-60.1725389325502, -16.107136115401858], [-60.18152208539139, -16.107136115401858], [-60.18152208539139, -16.116119268243054]]]}, 'id': '+13327+10142', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.19050523823259, -16.16103503244902], [-60.1725389325502, -16.16103503244902], [-60.1725389325502, -16.15205187960784], [-60.18152208539139, -16.15205187960784], [-60.18152208539139, -16.143068726766643], [-60.1725389325502, -16.143068726766643], [-60.1725389325502, -16.134085573925447], [-60.18152208539139, -16.134085573925447], [-60.18152208539139, -16.143068726766643], [-60.199488391073785, -16.143068726766643], [-60.199488391073785, -16.15205187960784], [-60.19050523823259, -16.15205187960784], [-60.19050523823259, -16.16103503244902]]]}, 'id': '+13327+10147', 'properties': {'count': 5, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.18152208539139, -16.24188340801979], [-60.1725389325502, -16.24188340801979], [-60.1725389325502, -16.223917102337396], [-60.18152208539139, -16.223917102337396], [-60.18152208539139, -16.24188340801979]]]}, 'id': '+13327+10156', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.18152208539139, -16.25984971370218], [-60.1725389325502, -16.25984971370218], [-60.1725389325502, -16.250866560860985], [-60.18152208539139, -16.250866560860985], [-60.18152208539139, -16.25984971370218]]]}, 'id': '+13327+10158', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.19050523823259, -16.268832866543377], [-60.1725389325502, -16.268832866543377], [-60.1725389325502, -16.25984971370218], [-60.19050523823259, -16.25984971370218], [-60.19050523823259, -16.268832866543377]]]}, 'id': '+13327+10159', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.1725389325502, -16.331714936431737], [-60.163555779709, -16.331714936431737], [-60.163555779709, -16.32273178359054], [-60.1725389325502, -16.32273178359054], [-60.1725389325502, -16.331714936431737]]]}, 'id': '+13328+10166', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.12762316834423, -16.394597006320097], [-60.11864001550303, -16.394597006320097], [-60.11864001550303, -16.385613853478915], [-60.109656862661836, -16.385613853478915], [-60.109656862661836, -16.37663070063772], [-60.12762316834423, -16.37663070063772], [-60.12762316834423, -16.394597006320097]]]}, 'id': '+13333+10173', 'properties': {'count': 3, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.109656862661836, -16.295782325066952], [-60.10067370982064, -16.295782325066952], [-60.10067370982064, -16.286799172225756], [-60.109656862661836, -16.286799172225756], [-60.109656862661836, -16.27781601938456], [-60.12762316834423, -16.27781601938456], [-60.12762316834423, -16.286799172225756], [-60.109656862661836, -16.286799172225756], [-60.109656862661836, -16.295782325066952]]]}, 'id': '+13335+10162', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.091690556979444, -16.32273178359054], [-60.08270740413825, -16.32273178359054], [-60.08270740413825, -16.313748630749345], [-60.091690556979444, -16.313748630749345], [-60.091690556979444, -16.32273178359054]]]}, 'id': '+13337+10165', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.091690556979444, -16.295782325066952], [-60.07372425129705, -16.295782325066952], [-60.07372425129705, -16.286799172225756], [-60.08270740413825, -16.286799172225756], [-60.08270740413825, -16.27781601938456], [-60.091690556979444, -16.27781601938456], [-60.091690556979444, -16.295782325066952]]]}, 'id': '+13338+10162', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.064741098455855, -16.27781601938456], [-60.05575794561466, -16.27781601938456], [-60.05575794561466, -16.268832866543377], [-60.064741098455855, -16.268832866543377], [-60.064741098455855, -16.27781601938456]]]}, 'id': '+13340+10160', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.07372425129705, -16.32273178359054], [-60.05575794561466, -16.32273178359054], [-60.05575794561466, -16.313748630749345], [-60.07372425129705, -16.313748630749345], [-60.07372425129705, -16.32273178359054]]]}, 'id': '+13340+10165', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.05575794561466, -16.286799172225756], [-60.04677479277346, -16.286799172225756], [-60.04677479277346, -16.27781601938456], [-60.05575794561466, -16.27781601938456], [-60.05575794561466, -16.286799172225756]]]}, 'id': '+13341+10161', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.037791639932266, -16.30476547790815], [-60.02880848709107, -16.30476547790815], [-60.02880848709107, -16.295782325066952], [-60.037791639932266, -16.295782325066952], [-60.037791639932266, -16.30476547790815]]]}, 'id': '+13343+10163', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.02880848709107, -16.30476547790815], [-60.01982533424987, -16.30476547790815], [-60.01982533424987, -16.295782325066952], [-60.02880848709107, -16.295782325066952], [-60.02880848709107, -16.30476547790815]]]}, 'id': '+13344+10163', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-60.01982533424987, -16.295782325066952], [-60.01084218140869, -16.295782325066952], [-60.01084218140869, -16.286799172225756], [-60.01982533424987, -16.286799172225756], [-60.01982533424987, -16.295782325066952]]]}, 'id': '+13345+10162', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.9928758757263, -16.27781601938456], [-59.9838927228851, -16.27781601938456], [-59.9838927228851, -16.268832866543377], [-59.9928758757263, -16.268832866543377], [-59.9928758757263, -16.27781601938456]]]}, 'id': '+13348+10160', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.9928758757263, -16.37663070063772], [-59.9838927228851, -16.37663070063772], [-59.9838927228851, -16.367647547796523], [-59.974909570043906, -16.367647547796523], [-59.974909570043906, -16.358664394955326], [-59.9838927228851, -16.358664394955326], [-59.9838927228851, -16.34968124211413], [-59.9928758757263, -16.34968124211413], [-59.9928758757263, -16.32273178359054], [-59.9838927228851, -16.32273178359054], [-59.9838927228851, -16.313748630749345], [-59.974909570043906, -16.313748630749345], [-59.974909570043906, -16.30476547790815], [-59.9928758757263, -16.30476547790815], [-59.9928758757263, -16.295782325066952], [-59.9838927228851, -16.295782325066952], [-59.9838927228851, -16.27781601938456], [-59.9928758757263, -16.27781601938456], [-59.9928758757263, -16.295782325066952], [-60.001859028567495, -16.295782325066952], [-60.001859028567495, -16.30476547790815], [-60.01982533424987, -16.30476547790815], [-60.01982533424987, -16.313748630749345], [-60.02880848709107, -16.313748630749345], [-60.02880848709107, -16.32273178359054], [-60.01982533424987, -16.32273178359054], [-60.01982533424987, -16.340698089272934], [-60.01084218140869, -16.340698089272934], [-60.01084218140869, -16.358664394955326], [-60.001859028567495, -16.358664394955326], [-60.001859028567495, -16.367647547796523], [-59.9928758757263, -16.367647547796523], [-59.9928758757263, -16.37663070063772]], [[-60.001859028567495, -16.340698089272934], [-60.001859028567495, -16.32273178359054], [-59.9928758757263, -16.32273178359054], [-59.9928758757263, -16.313748630749345], [-60.01982533424987, -16.313748630749345], [-60.01982533424987, -16.32273178359054], [-60.01084218140869, -16.32273178359054], [-60.01084218140869, -16.340698089272934], [-60.001859028567495, -16.340698089272934]], [[-59.9838927228851, -16.367647547796523], [-59.9838927228851, -16.358664394955326], [-59.9928758757263, -16.358664394955326], [-59.9928758757263, -16.367647547796523], [-59.9838927228851, -16.367647547796523]]]}, 'id': '+13348+10171', 'properties': {'count': 22, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.9838927228851, -16.340698089272934], [-59.974909570043906, -16.340698089272934], [-59.974909570043906, -16.331714936431737], [-59.96592641720271, -16.331714936431737], [-59.96592641720271, -16.32273178359054], [-59.95694326436151, -16.32273178359054], [-59.95694326436151, -16.313748630749345], [-59.96592641720271, -16.313748630749345], [-59.96592641720271, -16.32273178359054], [-59.974909570043906, -16.32273178359054], [-59.974909570043906, -16.331714936431737], [-59.9838927228851, -16.331714936431737], [-59.9838927228851, -16.340698089272934]]]}, 'id': '+13349+10167', 'properties': {'count': 3, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.96592641720271, -16.30476547790815], [-59.95694326436151, -16.30476547790815], [-59.95694326436151, -16.295782325066952], [-59.96592641720271, -16.295782325066952], [-59.96592641720271, -16.30476547790815]]]}, 'id': '+13351+10163', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.96592641720271, -16.37663070063772], [-59.95694326436151, -16.37663070063772], [-59.95694326436151, -16.358664394955326], [-59.96592641720271, -16.358664394955326], [-59.96592641720271, -16.34968124211413], [-59.93897695867912, -16.34968124211413], [-59.93897695867912, -16.331714936431737], [-59.94796011152032, -16.331714936431737], [-59.94796011152032, -16.340698089272934], [-59.96592641720271, -16.340698089272934], [-59.96592641720271, -16.34968124211413], [-59.974909570043906, -16.34968124211413], [-59.974909570043906, -16.358664394955326], [-59.96592641720271, -16.358664394955326], [-59.96592641720271, -16.37663070063772]]]}, 'id': '+13351+10171', 'properties': {'count': 7, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.95694326436151, -16.286799172225756], [-59.94796011152032, -16.286799172225756], [-59.94796011152032, -16.27781601938456], [-59.95694326436151, -16.27781601938456], [-59.95694326436151, -16.268832866543377], [-59.96592641720271, -16.268832866543377], [-59.96592641720271, -16.27781601938456], [-59.95694326436151, -16.27781601938456], [-59.95694326436151, -16.286799172225756]]]}, 'id': '+13352+10161', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.94796011152032, -16.27781601938456], [-59.93897695867912, -16.27781601938456], [-59.93897695867912, -16.268832866543377], [-59.94796011152032, -16.268832866543377], [-59.94796011152032, -16.27781601938456]]]}, 'id': '+13353+10160', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.94796011152032, -16.30476547790815], [-59.93897695867912, -16.30476547790815], [-59.93897695867912, -16.295782325066952], [-59.94796011152032, -16.295782325066952], [-59.94796011152032, -16.30476547790815]]]}, 'id': '+13353+10163', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.929993805837924, -16.295782325066952], [-59.92101065299673, -16.295782325066952], [-59.92101065299673, -16.286799172225756], [-59.91202750015553, -16.286799172225756], [-59.91202750015553, -16.268832866543377], [-59.929993805837924, -16.268832866543377], [-59.929993805837924, -16.27781601938456], [-59.93897695867912, -16.27781601938456], [-59.93897695867912, -16.286799172225756], [-59.929993805837924, -16.286799172225756], [-59.929993805837924, -16.295782325066952]]]}, 'id': '+13355+10162', 'properties': {'count': 6, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.91202750015553, -16.30476547790815], [-59.903044347314335, -16.30476547790815], [-59.903044347314335, -16.295782325066952], [-59.91202750015553, -16.295782325066952], [-59.91202750015553, -16.30476547790815]]]}, 'id': '+13357+10163', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.91202750015553, -16.313748630749345], [-59.903044347314335, -16.313748630749345], [-59.903044347314335, -16.30476547790815], [-59.91202750015553, -16.30476547790815], [-59.91202750015553, -16.313748630749345]]]}, 'id': '+13357+10164', 'properties': {'count': 1, 'label': 10}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.91202750015553, -16.331714936431737], [-59.903044347314335, -16.331714936431737], [-59.903044347314335, -16.32273178359054], [-59.91202750015553, -16.32273178359054], [-59.91202750015553, -16.331714936431737]]]}, 'id': '+13357+10166', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.867111735949564, -16.340698089272934], [-59.85812858310837, -16.340698089272934], [-59.85812858310837, -16.331714936431737], [-59.84914543026717, -16.331714936431737], [-59.84914543026717, -16.32273178359054], [-59.840162277425975, -16.32273178359054], [-59.840162277425975, -16.30476547790815], [-59.84914543026717, -16.30476547790815], [-59.84914543026717, -16.32273178359054], [-59.85812858310837, -16.32273178359054], [-59.85812858310837, -16.313748630749345], [-59.867111735949564, -16.313748630749345], [-59.867111735949564, -16.32273178359054], [-59.85812858310837, -16.32273178359054], [-59.85812858310837, -16.331714936431737], [-59.867111735949564, -16.331714936431737], [-59.867111735949564, -16.340698089272934]]]}, 'id': '+13362+10167', 'properties': {'count': 5, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.867111735949564, -16.385613853478915], [-59.85812858310837, -16.385613853478915], [-59.85812858310837, -16.367647547796523], [-59.867111735949564, -16.367647547796523], [-59.867111735949564, -16.385613853478915]]]}, 'id': '+13362+10172', 'properties': {'count': 2, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.87609488879076, -16.403580159161294], [-59.85812858310837, -16.403580159161294], [-59.85812858310837, -16.385613853478915], [-59.867111735949564, -16.385613853478915], [-59.867111735949564, -16.37663070063772], [-59.87609488879076, -16.37663070063772], [-59.87609488879076, -16.367647547796523], [-59.85812858310837, -16.367647547796523], [-59.85812858310837, -16.358664394955326], [-59.88507804163196, -16.358664394955326], [-59.88507804163196, -16.385613853478915], [-59.89406119447315, -16.385613853478915], [-59.89406119447315, -16.358664394955326], [-59.903044347314335, -16.358664394955326], [-59.903044347314335, -16.34968124211413], [-59.867111735949564, -16.34968124211413], [-59.867111735949564, -16.340698089272934], [-59.87609488879076, -16.340698089272934], [-59.87609488879076, -16.331714936431737], [-59.867111735949564, -16.331714936431737], [-59.867111735949564, -16.30476547790815], [-59.903044347314335, -16.30476547790815], [-59.903044347314335, -16.313748630749345], [-59.92101065299673, -16.313748630749345], [-59.92101065299673, -16.30476547790815], [-59.929993805837924, -16.30476547790815], [-59.929993805837924, -16.34968124211413], [-59.92101065299673, -16.34968124211413], [-59.92101065299673, -16.358664394955326], [-59.929993805837924, -16.358664394955326], [-59.929993805837924, -16.37663070063772], [-59.93897695867912, -16.37663070063772], [-59.93897695867912, -16.358664394955326], [-59.95694326436151, -16.358664394955326], [-59.95694326436151, -16.367647547796523], [-59.94796011152032, -16.367647547796523], [-59.94796011152032, -16.37663070063772], [-59.95694326436151, -16.37663070063772], [-59.95694326436151, -16.385613853478915], [-59.929993805837924, -16.385613853478915], [-59.929993805837924, -16.394597006320097], [-59.91202750015553, -16.394597006320097], [-59.91202750015553, -16.385613853478915], [-59.92101065299673, -16.385613853478915], [-59.92101065299673, -16.37663070063772], [-59.91202750015553, -16.37663070063772], [-59.91202750015553, -16.367647547796523], [-59.903044347314335, -16.367647547796523], [-59.903044347314335, -16.394597006320097], [-59.87609488879076, -16.394597006320097], [-59.87609488879076, -16.403580159161294]], [[-59.87609488879076, -16.32273178359054], [-59.87609488879076, -16.313748630749345], [-59.903044347314335, -16.313748630749345], [-59.903044347314335, -16.32273178359054], [-59.87609488879076, -16.32273178359054]], [[-59.903044347314335, -16.340698089272934], [-59.903044347314335, -16.32273178359054], [-59.92101065299673, -16.32273178359054], [-59.92101065299673, -16.331714936431737], [-59.91202750015553, -16.331714936431737], [-59.91202750015553, -16.340698089272934], [-59.903044347314335, -16.340698089272934]]]}, 'id': '+13362+10174', 'properties': {'count': 58, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.84914543026717, -16.27781601938456], [-59.840162277425975, -16.27781601938456], [-59.840162277425975, -16.268832866543377], [-59.84914543026717, -16.268832866543377], [-59.84914543026717, -16.27781601938456]]]}, 'id': '+13364+10160', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.83117912458478, -16.313748630749345], [-59.82219597174358, -16.313748630749345], [-59.82219597174358, -16.30476547790815], [-59.83117912458478, -16.30476547790815], [-59.83117912458478, -16.313748630749345]]]}, 'id': '+13366+10164', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.83117912458478, -16.32273178359054], [-59.82219597174358, -16.32273178359054], [-59.82219597174358, -16.313748630749345], [-59.83117912458478, -16.313748630749345], [-59.83117912458478, -16.32273178359054]]]}, 'id': '+13366+10165', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.82219597174358, -16.358664394955326], [-59.813212818902386, -16.358664394955326], [-59.813212818902386, -16.34968124211413], [-59.82219597174358, -16.34968124211413], [-59.82219597174358, -16.358664394955326]]]}, 'id': '+13367+10169', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.813212818902386, -16.295782325066952], [-59.80422966606119, -16.295782325066952], [-59.80422966606119, -16.27781601938456], [-59.813212818902386, -16.27781601938456], [-59.813212818902386, -16.295782325066952]]]}, 'id': '+13368+10162', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.813212818902386, -16.32273178359054], [-59.80422966606119, -16.32273178359054], [-59.80422966606119, -16.313748630749345], [-59.813212818902386, -16.313748630749345], [-59.813212818902386, -16.32273178359054]]]}, 'id': '+13368+10165', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.813212818902386, -16.403580159161294], [-59.80422966606119, -16.403580159161294], [-59.80422966606119, -16.394597006320097], [-59.79524651321999, -16.394597006320097], [-59.79524651321999, -16.385613853478915], [-59.78626336037881, -16.385613853478915], [-59.78626336037881, -16.37663070063772], [-59.79524651321999, -16.37663070063772], [-59.79524651321999, -16.367647547796523], [-59.80422966606119, -16.367647547796523], [-59.80422966606119, -16.37663070063772], [-59.79524651321999, -16.37663070063772], [-59.79524651321999, -16.385613853478915], [-59.813212818902386, -16.385613853478915], [-59.813212818902386, -16.358664394955326], [-59.82219597174358, -16.358664394955326], [-59.82219597174358, -16.331714936431737], [-59.840162277425975, -16.331714936431737], [-59.840162277425975, -16.358664394955326], [-59.84914543026717, -16.358664394955326], [-59.84914543026717, -16.37663070063772], [-59.83117912458478, -16.37663070063772], [-59.83117912458478, -16.385613853478915], [-59.840162277425975, -16.385613853478915], [-59.840162277425975, -16.394597006320097], [-59.84914543026717, -16.394597006320097], [-59.84914543026717, -16.403580159161294], [-59.83117912458478, -16.403580159161294], [-59.83117912458478, -16.394597006320097], [-59.813212818902386, -16.394597006320097], [-59.813212818902386, -16.403580159161294]], [[-59.83117912458478, -16.367647547796523], [-59.83117912458478, -16.358664394955326], [-59.840162277425975, -16.358664394955326], [-59.840162277425975, -16.367647547796523], [-59.83117912458478, -16.367647547796523]], [[-59.82219597174358, -16.37663070063772], [-59.82219597174358, -16.367647547796523], [-59.83117912458478, -16.367647547796523], [-59.83117912458478, -16.37663070063772], [-59.82219597174358, -16.37663070063772]]]}, 'id': '+13368+10174', 'properties': {'count': 24, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.80422966606119, -16.295782325066952], [-59.79524651321999, -16.295782325066952], [-59.79524651321999, -16.286799172225756], [-59.80422966606119, -16.286799172225756], [-59.80422966606119, -16.295782325066952]]]}, 'id': '+13369+10162', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.79524651321999, -16.27781601938456], [-59.78626336037881, -16.27781601938456], [-59.78626336037881, -16.268832866543377], [-59.79524651321999, -16.268832866543377], [-59.79524651321999, -16.27781601938456]]]}, 'id': '+13370+10160', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.78626336037881, -16.34968124211413], [-59.777280207537615, -16.34968124211413], [-59.777280207537615, -16.331714936431737], [-59.78626336037881, -16.331714936431737], [-59.78626336037881, -16.34968124211413]]]}, 'id': '+13371+10168', 'properties': {'count': 2, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.78626336037881, -16.394597006320097], [-59.777280207537615, -16.394597006320097], [-59.777280207537615, -16.385613853478915], [-59.78626336037881, -16.385613853478915], [-59.78626336037881, -16.394597006320097]]]}, 'id': '+13371+10173', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.777280207537615, -16.286799172225756], [-59.76829705469642, -16.286799172225756], [-59.76829705469642, -16.27781601938456], [-59.75931390185522, -16.27781601938456], [-59.75931390185522, -16.268832866543377], [-59.76829705469642, -16.268832866543377], [-59.76829705469642, -16.27781601938456], [-59.777280207537615, -16.27781601938456], [-59.777280207537615, -16.286799172225756]]]}, 'id': '+13372+10161', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.75931390185522, -16.394597006320097], [-59.750330749014026, -16.394597006320097], [-59.750330749014026, -16.385613853478915], [-59.75931390185522, -16.385613853478915], [-59.75931390185522, -16.394597006320097]]]}, 'id': '+13374+10173', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.750330749014026, -16.32273178359054], [-59.74134759617283, -16.32273178359054], [-59.74134759617283, -16.313748630749345], [-59.750330749014026, -16.313748630749345], [-59.750330749014026, -16.32273178359054]]]}, 'id': '+13375+10165', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.750330749014026, -16.421546464843686], [-59.74134759617283, -16.421546464843686], [-59.74134759617283, -16.403580159161294], [-59.750330749014026, -16.403580159161294], [-59.750330749014026, -16.421546464843686]]]}, 'id': '+13375+10176', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.74134759617283, -16.37663070063772], [-59.73236444333163, -16.37663070063772], [-59.73236444333163, -16.358664394955326], [-59.72338129049044, -16.358664394955326], [-59.72338129049044, -16.331714936431737], [-59.74134759617283, -16.331714936431737], [-59.74134759617283, -16.340698089272934], [-59.750330749014026, -16.340698089272934], [-59.750330749014026, -16.34968124211413], [-59.75931390185522, -16.34968124211413], [-59.75931390185522, -16.32273178359054], [-59.76829705469642, -16.32273178359054], [-59.76829705469642, -16.313748630749345], [-59.777280207537615, -16.313748630749345], [-59.777280207537615, -16.32273178359054], [-59.76829705469642, -16.32273178359054], [-59.76829705469642, -16.331714936431737], [-59.777280207537615, -16.331714936431737], [-59.777280207537615, -16.340698089272934], [-59.76829705469642, -16.340698089272934], [-59.76829705469642, -16.34968124211413], [-59.75931390185522, -16.34968124211413], [-59.75931390185522, -16.367647547796523], [-59.750330749014026, -16.367647547796523], [-59.750330749014026, -16.358664394955326], [-59.74134759617283, -16.358664394955326], [-59.74134759617283, -16.37663070063772]], [[-59.73236444333163, -16.34968124211413], [-59.73236444333163, -16.340698089272934], [-59.74134759617283, -16.340698089272934], [-59.74134759617283, -16.34968124211413], [-59.73236444333163, -16.34968124211413]]]}, 'id': '+13376+10171', 'properties': {'count': 16, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.73236444333163, -16.295782325066952], [-59.72338129049044, -16.295782325066952], [-59.72338129049044, -16.286799172225756], [-59.73236444333163, -16.286799172225756], [-59.73236444333163, -16.27781601938456], [-59.74134759617283, -16.27781601938456], [-59.74134759617283, -16.286799172225756], [-59.73236444333163, -16.286799172225756], [-59.73236444333163, -16.295782325066952]]]}, 'id': '+13377+10162', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.73236444333163, -16.32273178359054], [-59.72338129049044, -16.32273178359054], [-59.72338129049044, -16.30476547790815], [-59.73236444333163, -16.30476547790815], [-59.73236444333163, -16.32273178359054]]]}, 'id': '+13377+10165', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.73236444333163, -16.37663070063772], [-59.72338129049044, -16.37663070063772], [-59.72338129049044, -16.367647547796523], [-59.73236444333163, -16.367647547796523], [-59.73236444333163, -16.37663070063772]]]}, 'id': '+13377+10171', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.72338129049044, -16.394597006320097], [-59.71439813764924, -16.394597006320097], [-59.71439813764924, -16.385613853478915], [-59.72338129049044, -16.385613853478915], [-59.72338129049044, -16.394597006320097]]]}, 'id': '+13378+10173', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.71439813764924, -16.37663070063772], [-59.705414984808044, -16.37663070063772], [-59.705414984808044, -16.367647547796523], [-59.71439813764924, -16.367647547796523], [-59.71439813764924, -16.37663070063772]]]}, 'id': '+13379+10171', 'properties': {'count': 1, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.72338129049044, -16.385613853478915], [-59.705414984808044, -16.385613853478915], [-59.705414984808044, -16.37663070063772], [-59.72338129049044, -16.37663070063772], [-59.72338129049044, -16.385613853478915]]]}, 'id': '+13379+10172', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.71439813764924, -16.430529617684883], [-59.705414984808044, -16.430529617684883], [-59.705414984808044, -16.421546464843686], [-59.71439813764924, -16.421546464843686], [-59.71439813764924, -16.41256331200249], [-59.73236444333163, -16.41256331200249], [-59.73236444333163, -16.421546464843686], [-59.71439813764924, -16.421546464843686], [-59.71439813764924, -16.430529617684883]]]}, 'id': '+13379+10177', 'properties': {'count': 3, 'label': 12}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.66948237344327, -16.394597006320097], [-59.66049922060208, -16.394597006320097], [-59.66049922060208, -16.385613853478915], [-59.642532914919684, -16.385613853478915], [-59.642532914919684, -16.37663070063772], [-59.63354976207849, -16.37663070063772], [-59.63354976207849, -16.367647547796523], [-59.642532914919684, -16.367647547796523], [-59.642532914919684, -16.358664394955326], [-59.65151606776088, -16.358664394955326], [-59.65151606776088, -16.34968124211413], [-59.642532914919684, -16.34968124211413], [-59.642532914919684, -16.340698089272934], [-59.66948237344327, -16.340698089272934], [-59.66948237344327, -16.331714936431737], [-59.642532914919684, -16.331714936431737], [-59.642532914919684, -16.313748630749345], [-59.63354976207849, -16.313748630749345], [-59.63354976207849, -16.30476547790815], [-59.615583456396095, -16.30476547790815], [-59.615583456396095, -16.313748630749345], [-59.588633997872506, -16.313748630749345], [-59.588633997872506, -16.30476547790815], [-59.615583456396095, -16.30476547790815], [-59.615583456396095, -16.295782325066952], [-59.5976171507137, -16.295782325066952], [-59.5976171507137, -16.286799172225756], [-59.588633997872506, -16.286799172225756], [-59.588633997872506, -16.27781601938456], [-59.615583456396095, -16.27781601938456], [-59.615583456396095, -16.286799172225756], [-59.642532914919684, -16.286799172225756], [-59.642532914919684, -16.27781601938456], [-59.65151606776088, -16.27781601938456], [-59.65151606776088, -16.286799172225756], [-59.66049922060208, -16.286799172225756], [-59.66049922060208, -16.30476547790815], [-59.642532914919684, -16.30476547790815], [-59.642532914919684, -16.313748630749345], [-59.65151606776088, -16.313748630749345], [-59.65151606776088, -16.32273178359054], [-59.678465526284455, -16.32273178359054], [-59.678465526284455, -16.340698089272934], [-59.68744867912565, -16.340698089272934], [-59.68744867912565, -16.331714936431737], [-59.69643183196685, -16.331714936431737], [-59.69643183196685, -16.32273178359054], [-59.705414984808044, -16.32273178359054], [-59.705414984808044, -16.313748630749345], [-59.69643183196685, -16.313748630749345], [-59.69643183196685, -16.30476547790815], [-59.678465526284455, -16.30476547790815], [-59.678465526284455, -16.295782325066952], [-59.68744867912565, -16.295782325066952], [-59.68744867912565, -16.286799172225756], [-59.66948237344327, -16.286799172225756], [-59.66948237344327, -16.27781601938456], [-59.69643183196685, -16.27781601938456], [-59.69643183196685, -16.30476547790815], [-59.705414984808044, -16.30476547790815], [-59.705414984808044, -16.286799172225756], [-59.71439813764924, -16.286799172225756], [-59.71439813764924, -16.30476547790815], [-59.705414984808044, -16.30476547790815], [-59.705414984808044, -16.313748630749345], [-59.71439813764924, -16.313748630749345], [-59.71439813764924, -16.32273178359054], [-59.705414984808044, -16.32273178359054], [-59.705414984808044, -16.331714936431737], [-59.69643183196685, -16.331714936431737], [-59.69643183196685, -16.340698089272934], [-59.705414984808044, -16.340698089272934], [-59.705414984808044, -16.34968124211413], [-59.678465526284455, -16.34968124211413], [-59.678465526284455, -16.367647547796523], [-59.68744867912565, -16.367647547796523], [-59.68744867912565, -16.358664394955326], [-59.705414984808044, -16.358664394955326], [-59.705414984808044, -16.367647547796523], [-59.68744867912565, -16.367647547796523], [-59.68744867912565, -16.37663070063772], [-59.678465526284455, -16.37663070063772], [-59.678465526284455, -16.367647547796523], [-59.66948237344327, -16.367647547796523], [-59.66948237344327, -16.34968124211413], [-59.66049922060208, -16.34968124211413], [-59.66049922060208, -16.367647547796523], [-59.642532914919684, -16.367647547796523], [-59.642532914919684, -16.37663070063772], [-59.66049922060208, -16.37663070063772], [-59.66049922060208, -16.385613853478915], [-59.66948237344327, -16.385613853478915], [-59.66948237344327, -16.394597006320097]], [[-59.642532914919684, -16.295782325066952], [-59.642532914919684, -16.286799172225756], [-59.65151606776088, -16.286799172225756], [-59.65151606776088, -16.295782325066952], [-59.642532914919684, -16.295782325066952]], [[-59.66948237344327, -16.34968124211413], [-59.66948237344327, -16.340698089272934], [-59.678465526284455, -16.340698089272934], [-59.678465526284455, -16.34968124211413], [-59.66948237344327, -16.34968124211413]]]}, 'id': '+13384+10173', 'properties': {'count': 55, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.63354976207849, -16.286799172225756], [-59.62456660923729, -16.286799172225756], [-59.62456660923729, -16.27781601938456], [-59.63354976207849, -16.27781601938456], [-59.63354976207849, -16.286799172225756]]]}, 'id': '+13388+10161', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.63354976207849, -16.340698089272934], [-59.62456660923729, -16.340698089272934], [-59.62456660923729, -16.331714936431737], [-59.63354976207849, -16.331714936431737], [-59.63354976207849, -16.340698089272934]]]}, 'id': '+13388+10167', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.62456660923729, -16.37663070063772], [-59.615583456396095, -16.37663070063772], [-59.615583456396095, -16.34968124211413], [-59.62456660923729, -16.34968124211413], [-59.62456660923729, -16.37663070063772]]]}, 'id': '+13389+10171', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.615583456396095, -16.43951277052608], [-59.6066003035549, -16.43951277052608], [-59.6066003035549, -16.430529617684883], [-59.615583456396095, -16.430529617684883], [-59.615583456396095, -16.43951277052608]]]}, 'id': '+13390+10178', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.6066003035549, -16.340698089272934], [-59.5976171507137, -16.340698089272934], [-59.5976171507137, -16.32273178359054], [-59.6066003035549, -16.32273178359054], [-59.6066003035549, -16.340698089272934]]]}, 'id': '+13391+10167', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.6066003035549, -16.421546464843686], [-59.5976171507137, -16.421546464843686], [-59.5976171507137, -16.41256331200249], [-59.6066003035549, -16.41256331200249], [-59.6066003035549, -16.394597006320097], [-59.62456660923729, -16.394597006320097], [-59.62456660923729, -16.403580159161294], [-59.615583456396095, -16.403580159161294], [-59.615583456396095, -16.41256331200249], [-59.6066003035549, -16.41256331200249], [-59.6066003035549, -16.421546464843686]]]}, 'id': '+13391+10176', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.5976171507137, -16.403580159161294], [-59.588633997872506, -16.403580159161294], [-59.588633997872506, -16.394597006320097], [-59.5976171507137, -16.394597006320097], [-59.5976171507137, -16.403580159161294]]]}, 'id': '+13392+10174', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.588633997872506, -16.34968124211413], [-59.57965084503131, -16.34968124211413], [-59.57965084503131, -16.331714936431737], [-59.588633997872506, -16.331714936431737], [-59.588633997872506, -16.34968124211413]]]}, 'id': '+13393+10168', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.5976171507137, -16.43951277052608], [-59.57965084503131, -16.43951277052608], [-59.57965084503131, -16.430529617684883], [-59.57066769219011, -16.430529617684883], [-59.57066769219011, -16.421546464843686], [-59.588633997872506, -16.421546464843686], [-59.588633997872506, -16.430529617684883], [-59.5976171507137, -16.430529617684883], [-59.5976171507137, -16.43951277052608]]]}, 'id': '+13393+10178', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.57965084503131, -16.37663070063772], [-59.57066769219011, -16.37663070063772], [-59.57066769219011, -16.358664394955326], [-59.57965084503131, -16.358664394955326], [-59.57965084503131, -16.37663070063772]]]}, 'id': '+13394+10171', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.57066769219011, -16.30476547790815], [-59.56168453934892, -16.30476547790815], [-59.56168453934892, -16.295782325066952], [-59.57066769219011, -16.295782325066952], [-59.57066769219011, -16.30476547790815]]]}, 'id': '+13395+10163', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.57066769219011, -16.367647547796523], [-59.56168453934892, -16.367647547796523], [-59.56168453934892, -16.358664394955326], [-59.57066769219011, -16.358664394955326], [-59.57066769219011, -16.367647547796523]]]}, 'id': '+13395+10170', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.57066769219011, -16.430529617684883], [-59.56168453934892, -16.430529617684883], [-59.56168453934892, -16.421546464843686], [-59.57066769219011, -16.421546464843686], [-59.57066769219011, -16.430529617684883]]]}, 'id': '+13395+10177', 'properties': {'count': 1, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.57066769219011, -16.286799172225756], [-59.552701386507735, -16.286799172225756], [-59.552701386507735, -16.27781601938456], [-59.57066769219011, -16.27781601938456], [-59.57066769219011, -16.286799172225756]]]}, 'id': '+13396+10161', 'properties': {'count': 2, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.56168453934892, -16.421546464843686], [-59.552701386507735, -16.421546464843686], [-59.552701386507735, -16.41256331200249], [-59.56168453934892, -16.41256331200249], [-59.56168453934892, -16.421546464843686]]]}, 'id': '+13396+10176', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.552701386507735, -16.331714936431737], [-59.54371823366654, -16.331714936431737], [-59.54371823366654, -16.32273178359054], [-59.552701386507735, -16.32273178359054], [-59.552701386507735, -16.331714936431737]]]}, 'id': '+13397+10166', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.54371823366654, -16.286799172225756], [-59.53473508082534, -16.286799172225756], [-59.53473508082534, -16.27781601938456], [-59.54371823366654, -16.27781601938456], [-59.54371823366654, -16.286799172225756]]]}, 'id': '+13398+10161', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.54371823366654, -16.30476547790815], [-59.53473508082534, -16.30476547790815], [-59.53473508082534, -16.295782325066952], [-59.54371823366654, -16.295782325066952], [-59.54371823366654, -16.30476547790815]]]}, 'id': '+13398+10163', 'properties': {'count': 1, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.54371823366654, -16.394597006320097], [-59.53473508082534, -16.394597006320097], [-59.53473508082534, -16.385613853478915], [-59.54371823366654, -16.385613853478915], [-59.54371823366654, -16.394597006320097]]]}, 'id': '+13398+10173', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.53473508082534, -16.421546464843686], [-59.525751927984146, -16.421546464843686], [-59.525751927984146, -16.41256331200249], [-59.53473508082534, -16.41256331200249], [-59.53473508082534, -16.403580159161294], [-59.525751927984146, -16.403580159161294], [-59.525751927984146, -16.394597006320097], [-59.54371823366654, -16.394597006320097], [-59.54371823366654, -16.385613853478915], [-59.552701386507735, -16.385613853478915], [-59.552701386507735, -16.394597006320097], [-59.56168453934892, -16.394597006320097], [-59.56168453934892, -16.403580159161294], [-59.57965084503131, -16.403580159161294], [-59.57965084503131, -16.41256331200249], [-59.56168453934892, -16.41256331200249], [-59.56168453934892, -16.403580159161294], [-59.552701386507735, -16.403580159161294], [-59.552701386507735, -16.394597006320097], [-59.54371823366654, -16.394597006320097], [-59.54371823366654, -16.41256331200249], [-59.552701386507735, -16.41256331200249], [-59.552701386507735, -16.421546464843686], [-59.54371823366654, -16.421546464843686], [-59.54371823366654, -16.41256331200249], [-59.53473508082534, -16.41256331200249], [-59.53473508082534, -16.421546464843686]]]}, 'id': '+13399+10176', 'properties': {'count': 9, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.552701386507735, -16.43951277052608], [-59.525751927984146, -16.43951277052608], [-59.525751927984146, -16.430529617684883], [-59.552701386507735, -16.430529617684883], [-59.552701386507735, -16.43951277052608]]]}, 'id': '+13399+10178', 'properties': {'count': 3, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.525751927984146, -16.367647547796523], [-59.51676877514295, -16.367647547796523], [-59.51676877514295, -16.358664394955326], [-59.525751927984146, -16.358664394955326], [-59.525751927984146, -16.367647547796523]]]}, 'id': '+13400+10170', 'properties': {'count': 1, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.525751927984146, -16.43951277052608], [-59.51676877514295, -16.43951277052608], [-59.51676877514295, -16.430529617684883], [-59.50778562230175, -16.430529617684883], [-59.50778562230175, -16.421546464843686], [-59.51676877514295, -16.421546464843686], [-59.51676877514295, -16.430529617684883], [-59.525751927984146, -16.430529617684883], [-59.525751927984146, -16.43951277052608]]]}, 'id': '+13400+10178', 'properties': {'count': 2, 'label': 3}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.53473508082534, -16.385613853478915], [-59.50778562230175, -16.385613853478915], [-59.50778562230175, -16.367647547796523], [-59.53473508082534, -16.367647547796523], [-59.53473508082534, -16.385613853478915]]]}, 'id': '+13401+10172', 'properties': {'count': 6, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.50778562230175, -16.295782325066952], [-59.49880246946056, -16.295782325066952], [-59.49880246946056, -16.27781601938456], [-59.525751927984146, -16.27781601938456], [-59.525751927984146, -16.286799172225756], [-59.50778562230175, -16.286799172225756], [-59.50778562230175, -16.295782325066952]]]}, 'id': '+13402+10162', 'properties': {'count': 4, 'label': 2}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.50778562230175, -16.30476547790815], [-59.49880246946056, -16.30476547790815], [-59.49880246946056, -16.295782325066952], [-59.50778562230175, -16.295782325066952], [-59.50778562230175, -16.286799172225756], [-59.51676877514295, -16.286799172225756], [-59.51676877514295, -16.295782325066952], [-59.50778562230175, -16.295782325066952], [-59.50778562230175, -16.30476547790815]]]}, 'id': '+13402+10163', 'properties': {'count': 2, 'label': 15}}, {'type': 'Feature', 'geometry': {'geodesic': False, 'type': 'Polygon', 'coordinates': [[[-59.50778562230175, -16.340698089272934], [-59.49880246946056, -16.340698089272934], [-59.49880246946056, -16.32273178359054], [-59.50778562230175, -16.32273178359054], [-59.50778562230175, -16.313748630749345], [-59.525751927984146, -16.313748630749345], [-59.525751927984146, -16.30476547790815], [-59.53473508082534, -16.30476547790815], [-59.53473508082534, -16.313748630749345], [-59.525751927984146, -16.313748630749345], [-59.525751927984146, -16.32273178359054], [-59.53473508082534, -16.32273178359054], [-59.53473508082534, -16.331714936431737], [-59.525751927984146, -16.331714936431737], [-59.525751927984146, -16.32273178359054], [-59.51676877514295, -16.32273178359054], [-59.51676877514295, -16.331714936431737], [-59.50778562230175, -16.331714936431737], [-59.50778562230175, -16.340698089272934]]]}, 'id': '+13402+10167', 'properties': {'count': 7, 'label': 15}}]}\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 12,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXsAAAGdCAYAAADzI9OUAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAACEqElEQVR4nO2deVhU1RvHvwwgiMqiQAgiuIBobmTmWq64ZGVlVKa2meZSruVSqam5Zy5lmmmaZtmPtNVQUWnV3MHcABcEQdwQEZV17u8POtczd+69c2eYYQZ4P88zDzP3nnPuuQN8z3vf8573OAmCIIAgCIKo1Ojs3QGCIAjC9pDYEwRBVAFI7AmCIKoAJPYEQRBVABJ7giCIKgCJPUEQRBWAxJ4gCKIKQGJPEARRBXCxdwfsgV6vR2ZmJmrVqgUnJyd7d4cgCEIRQRBw69YtBAYGQqez3D6vkmKfmZmJ4OBge3eDIAhCM+np6ahXr57F9auk2NeqVQtA6Zfn6elp594QBEEok5ubi+DgYFG3LKVKij1z3Xh6epLYEwRRISiry5kmaAmCIKoAJPYEQRBVABJ7giCIKgCJPUEQRBWAxJ4gCKIKQGJPEARRBSCxJwiCqAKQ2BMEQVQBSOwJgiCqACT2BEEQVQASe4IgiCqATcV+zpw56NixIzw8PODt7W10/vr16+jTpw8CAwPh5uaG4OBgvPHGG8jNzVVtNzQ0FE5OTgav+fPn2+guCIIgKj42TYRWWFiI6OhodOjQAWvXrjU6r9Pp0L9/f3zwwQfw8/PDmTNnMHr0aGRnZ+Prr79WbXvWrFkYNmyY+LmsGeEIgiAqMzYV+5kzZwIA1q9fL3vex8cHI0eOFD+HhIRg1KhRWLRokcm2a9WqhYCAAKv0k6h6hK5ehNThbwMA9Fnh0AUk27lHBGFbHMpnn5mZia1bt6JLly4my86fPx916tRBZGQkFi1ahOLiYsWyBQUFyM3NNXgRjkevh2aV27WY0IeuXgRdQDJCV5s2MAiiIuMQYj9w4EB4eHggKCgInp6eWLNmjWr5MWPGYPPmzYiPj8frr7+OuXPnYtKkSYrl582bBy8vL/FFu1TZHzlh33lgusHnsPlLFOtH6aI1X0utHdfs0odbJv4EUWkRzGTy5MkCANXXqVOnDOqsW7dO8PLyUmzz0qVLwqlTp4Qff/xRaNasmTBy5Eiz+rR27VrBxcVFyM/Plz2fn58v3Lx5U3ylp6cLAISbN2+adR3CtvR0esbgc+N5H5lVXkpU25ll7hNB2JubN29aRa+cBEEQzBkcrl69iuvXr6uWadiwIapVqyZ+Xr9+PcaNG4ecnByT7f/11194+OGHkZmZibp162rq04kTJ9C8eXOcPn0aTZo0MVk+NzcXXl5euHnzJu1UVU70emiWkeVuDcLmL0HKlPGy56J00UhZ9RAAY8udt/aV6hOEI2AtvTJ7gtbPzw9+fn4WX9AUer0eQKmfXSsJCQnQ6XTw9/e3VbcIC2EiX1ahl4o6L9bsfcqU8QibvwRFtUvnb8IfbKHonqn30EUAQHz3xWXqF0FUFGzqs09LS0NCQgLS0tJQUlKChIQEJCQkIC8vDwDw66+/Yt26dTh+/DhSU1Oxbds2jBgxAp06dUJoaCgA4MCBA4iIiEBGRgYAYN++fVi6dCkSExNx7tw5bNq0CePHj8fgwYPh4+Njy9upsjAx1TqJGaWLFn3q1rLmlaxv6fGUKeOROvxtpA5/W/Ha3fZMFN/3DR5r8tojDg8xo6cE4aBYxamkwEsvvSTr04+PjxcEQRD27NkjdOjQQfDy8hLc3d2FsLAwYfLkycKNGzfENuLj4wUAwvnz5wVBEITDhw8L7dq1E+s0bdpUmDt3rqK/Xg5r+cCqGo3nfSSEfLZQ1lfOHzPla7dmfyyl6+4JQp96Y8TPIZ8tLHObBGEL7OazrwyQz14bSq4TUz5uNT+6lvNlIUoXjTh9jMlrsXtpvCJVPBabvsymfSMIS7CWXjlE6CXhmCiJnlooo1o9reeVUAu3ZOd4oZe7lqkBi4SeqKyQ2BOaSZkyXpz8NCX41kZqsUtRO8fDi3nKlPHI/7I0RuHsUt+ydZAgHBwSe8IsWHSLtSxgrYujtIq5KdiEbN/gsegbPBbuL5UOXo3GXZOdrC3vQY0gbAX57MlnXyEwZdmbg6kIHPLdE46EtfSKxL6SiT0TKTmx6hs8FrHpy+zUs8oDDQREeWK3RVWEY9N4RSowBaJvXWrFss+OIPrWtNbLExJ6oiJCPvtKAvN9F2dkAgCazr4o666ITV+mKPTl7Z+uiEKvBPn2CUeHxL6CETZ/CfRZ4QDurVTlJzlT53ZElC7aQNCZwDNftBKOYrGak9HSHkj7R24doiJAYl9BCJu/RBQVpY02onTRpekC5nY0OM4iT4BSQdeSIsCeOLrFH6ePMYjqYUIfpYsmC59wWEjsKwhSy5G3Lpk4xuljEDZ/icGqUJ6+wWMRvmW2+L6iYm/Ln5/ojk1fJg6mLkGBit89QdgbisapQNE40glN6apR6erQ8C2z0WjcNQOXDjvGODM61KCONeAHEkeYCLYF7HehFOFErh3CWlDoZRmoqGKvBSXxCd8yG8kDpollGLYQe3YNtiqVH1yKMzI1uWnkBjZHdO/w3yW7t6ow2BHlB+XGqWLI5W83BXPZMHjfPaPxilQ0XpFaJrdO+JbZmuu7BAVqcsNIhd2eQq/WX17M5fpYkd1lROWCLHsHtOyVrFgtrgEmLsyqTh4wzcCqZ++VRKgslijfpjTXTKNx1zRb9Y6I3O9E7unDJShQDH91CQoUz0mfoGiBG6EVsuwrOXxIJfvJC72StRmbvgxnRoeKrhPeuudFXy7xV1mTgfHi1WjcNfHFcAkKRN/gsXafYLUEuUFKbv6ECb0U9gTFQ1Y/UZ6Q2DswfJSN0jmtMNEP3zLbyL0DWM+iZ21JhZ+nrNa9ow0WclZ/nD4GsenLUJyRKfvdqi1uIwhbQGLvgDDh4C17OX+7EilTxotuAylBPjkASt07vNj0DR5rJMpq8HHmrB32XiklQ3FGpmK/pMgJulLOenvDD8rsBUAMx5R+H2TRE3ahTPtcVVBsuS0h256vp9Mzstv3mduWtA2ldpWuFfbdLKP3/DE52HZ9/BZ9/BZ+5mBpPUdE6+9Trhz7HthP9nvkXwQhB21LWAbKY4K2LKGCfF05a1Zq9cbpY2SvFzZ/CZzCSjd3Z1Z7/pcuyLjhLfrueaQWKB/1w/zN0ph9PpxTasnzxxw1dFKOsvZVGo4J3Jus5b8juacXfvVzUe1icf8Aa/SLqJhYTa+sMvRUMMo6UmqxwspiqWmx9MyxBsO+myValF13TxDCvpulaN1LrXpLN+AO+25WlbNWzbXQ+adAQbj3Xfd0ekZoPO8jcYN3ompjLcuexN4KqP2D21LwpC4ApWv1qTfGwJ3Sp94Yk2LvKNjSxWGL35ucW0bLdyr9Pcpdn4S/amItvaIJWjORPnpr2QTbVpiz8EiaBZPF36uVsycs9JSf8LQ2Wve0NWdCVTpJC6h/p7ybTi6On3eluWbT9hOE5ZDYm4mSQEhTDSu9t0V/lBZgMc6MDjUQLPZezm9fnkjXESiV0VLOlkjFWms/tAwSSmG17HjKlPGy6ywIwlxI7K2EnJUtZ+VZiimBkQ4uvDCw9932TDRr5SYTK1ul7dViWfMT1faenGTfB78ylkf6OzL1PZsaDJTuN2z+EoSuXqRalyCkkNiXEf4fUu6f0xyR1nodU22xVMdlpTxdOmrfgy1dOWp9URJvpe/F3D7yq22Z8EuvrfS9uGa7GAm+nFuOIBgk9hYil09eqYwpIdNyLVODglQQ5R7547svNmthjzkLuSoTSiuXrelG4lMkA/cGEOm15f4+UqaMNwrLBO4tmCMIOUjsLUROCKSuFGu6cSxtQ2rhd9szEd32TERs+jJ02zNRtW55LelXujdL7lnLwGiqvtx7pf5YOhiaMwEst6I6dfjb4u5ljIwb3gDIwicUsFJ0UIXCGqFMWkLl7B1nzsfKs/BLacy9tKyp1bVVDVuGorLfCb+q1hJYTD4PhWlWHijOvgxYW+zlzqnVs/R6ZUVtMZUg3BsUePrUG2PxwqqyYu/BUg1rDQLSNRBakftuaKCunJDYlwFb5MYpb2Ey53pMrNWERU3QLRUkc7Bk4HQELP1eejo943AL2AjHhMS+DJTly+PFx5QFXxaLuCwiJ70uL/YMEprKh6MPjIRl0ApaO8GSjvHwE2f8ObVFMFqiayyFXVe6AXls+jLxmKOslOVxtDz1FQmldQgUj08wSOzNRCmcUrq035RYWyNCR0ssvdzetX2DxxrtYGVP+NQIhGUofXfS8Eyi6kIpji1IGaoUY+9ogqW2Z63cBiN8ymKiYqNlv2KiYkB70NoJtcVU5S30ptwe0n923sqXi6HnNyUnHBOtrq7Qd/aaVZ6o/FAaPQuxxsYk5d0HqS+fP8ZD1r3jI/07khohqXM7ktATBpAbx8zHIkfdB9USmCvn7FJfuwi8o7m9KhJqf4daVv4SFQdy49iJ8k7KZUti05ehOCPTLKEvazoCnsryPZYnfOZNfmNzNaJ00ej10Cyb941wbEjsCZMCzqc6luZpcRQcrT+2RroZjSnOP13Llt0hKgAk9g5EeQqWVOC1WNmNV6TaLLd9We+9qjwlFGdkyn5XvHUv9/QZ+s7eKjcgEobQBK0DUZ6CJV0cpuYDPjM6VPzJojwY1grxqypiXVakrhupVS8VfaDqPfUQ8tjUsp8zZw46duwIDw8PeHt7q5a9fv066tWrBycnJ+Tk5KiWzc7OxqBBg+Dp6Qlvb28MHToUeXl51uu4HdD6D2kNy1rNbcO3z1Igp0wZj77BY9F4RSpS53YULUdbxHKTMKmj9LuLTV8m7kLG5mJYeYIAbCz2hYWFiI6OxsiRI02WHTp0KFq2bKmp3UGDBuHEiROIi4vDL7/8gj/++APDhw8va3ftipKlLcVaVrTS3qc88d0XAyiNu5dakGxQsLZbx5Ldvio7UbpocSMZ9ruTWyfBfza1oQ5R9bCp2M+cORPjx49HixYtVMutXLkSOTk5eOutt0y2eerUKWzfvh1r1qxBu3bt0LlzZ3z88cfYvHkzMjMzTdZ3ZExtcWir6/HXarwiFQDEjTGidNEIiT4G4J47x1Z+e0BejKq6i0cq7lo2TDG1ibstf4eEY2L3CdqTJ09i1qxZ2LBhA3Q6093Zt28fvL298eCDD4rHevbsCZ1Oh/3798vWKSgoQG5ursHLETDHyrKVRSYVfCYoSS+vRMqU8QZ+35Qp48WXlG57JpZJQFhdpYVCxD20RN9IDQe5CVuiamFXsS8oKMDAgQOxaNEi1K9fX1OdrKws+Pv7GxxzcXFB7dq1kZWVJVtn3rx58PLyEl/BwcFl7rulmBsBY0lZS/rCPrNX78BW0GeFG03cSjNppkwZj7D5SxDffTHqPXQRgPlb9bGBREpVt+gtRe5vjAZOwmyxnzJlCpycnFRfp0+f1tTW1KlT0bRpUwwePNjsjpvD1KlTcfPmTfGVnp5u0+vJ4Wgrb9nqVT6Lp9QC7B3YyqgeL8r8ezYIsP1t+WOmIEGyHsyvz0MrlQkA5u9Be+XKFeHUqVOqr4KCAoM669atE7y8vIzaatWqlaDT6QRnZ2fB2dlZ0Ol0AgDB2dlZmD59uuz1165dK3h7exscKyoqEpydnYWtW7dqugdb7FTFqIgbSLAtFrXsoyvd75T/zB+3dIu8ivj92QNLvie13zPhuFhLr8yOs/fz84Ofn59VBpotW7bg7t274ueDBw/i1VdfxZ9//olGjRrJ1unQoQNycnJw+PBhtGnTBgCwZ88e6PV6tGvXzir9MoWapaRmQanVK2/rS8mK5p9A+D6x4yn/hVzy7hz2vvGKVGBKaTt8CobwLbMhpNQUy6tBFqg2zPme6ImJAGC+ZW8OFy5cEI4ePSrMnDlTqFmzpnD06FHh6NGjwq1bt2TLx8fHCwCEGzduiMf2798vNGnSRLh48aJ4rE+fPkJkZKSwf/9+4a+//hLCwsKEgQMHau6XLS37iobU0tNq4QuC/L61XXdPkN3ykLZBtC9k1VdcKsS2hNOnT0dkZCRmzJiBvLw8REZGIjIyEocOHdLcxp07d5CUlISioiLx2KZNmxAREYEePXrg0UcfRefOnbF69Wpb3IJZmLKWy+Oa5l6L99NL4/z5V+rcjgCM/fByfvn8L0sfGPkdseTi9OXa0urnJ2vVPLTuoEZUXijFcRlShlY21AQ0dW5HVRdM2PwlqPfQRcR3X4xueyaKC7LYe7Yalx2X1qVdlQhCHkpx7MCYWtDiqDArX2oFxuljNInxxQP1AMBA6NnP+O6LEd99sWjph2+ZjfAts8U0DDy04IcgbIBVnEoVDFv57Hm/qKW+UaV6Wtuzp0+2T70xQtfdE8yq03jeR6I/X6tfn79HaWQQQVQ2KoTPvjKj1VduiQ9drp6pKB9T5cq66Yiatc3OxaYvM3DZsHwu7DMPs+xZPXP6xi/wUor7JwjCEPLZW9Fnb0p0+YVMpibKtIZiKpWz10Ia3l+vlIaXD++Ursi1FPL7E5UVa+kViX05TdBacwWtnJBLV8RqHVSsAW/1s0la4J7PPuOGt3hea7w933bjFama8sEQRGWEJmgrOFoncfl0BuwnE3Lpk4Q05YEthF7OncMLN5ukBUonanmhTx4wDaHv7BWTcGlx3aRMGU9CTxBWgCx7M0dKc6xl6QpUW1nZ9k4LzA8ATPj5kMuMG95mbWpOEMQ9yLK3E5ZmqpROvPKWuXQBk9ImJnJ1lfpUniGefOpjqeXPb4AiRWnSl++7XD1CHUcO7yXsB4l9OcO7WKQiLY1zZ8hF5vCDh1bL3hYiIBVjOV+81KpndZTcOXzf+bokYtqQ7npGEACJfbmhFvrIxFuuDH+Ob4v/KS2rdH25OpbAomzCt8wWxVi6TaH7S8UGdZIHTBNFPiT6mOx8gxpRumgU79K25wFBaREIY8hnb4d0CdLIGcB0qKZWtMTjWyoELLyRiT3bppBZ81K3TOMVqWIZVo4fIMydx+DDOvl2CKIyQz77CoqagEt99tYUena+LELPfsamLzMQcYZ0gdOZ0aFGO1o1GndNdgtCKXL3zefVIaEnCPMgy97Klr05i6FMYYnvVS76x9oLr9QWMMmdUytvztMGa4d2XiKqEmTZVwCUUgZbUt/c6yrNAfDtSjf3jtJFK0bISDcsUULunFp5cwZGqdDTJCRBaIcsexv47JWiSyzxwVuCVAy17ElqibVsTb+5o6V9IAhHgSx7B8bUloW2Fi9mpSuFcJpKtaAVawl92PwlFm3zSBCEdsiyt1E0jppFakvL3lxxLA/LmZKUEYTlkGXv4NhrVaulE7qW1teCPYSe/PkEYQiJfTlSXi6JsuSuV+uj3ORtWXaVsuWOVOT+IQhDSOztgKMJkdrAwMfXmxtpYwpL6mrdNIYgCEPIZ2+nDcfLKyLH2shluLS0HfLjE4RpyGdfgamoQg+UCjxLYFbWdmhjcYIoP8iyt5Nlz7CF8Duam8jRoVh+wpEhy55QRCnvPSEPCT1RFSCxtxOmMl5as/2ypF2wFHLREIRjQWJvJ6SraaW7WjmCtVnWVMjWwhZPJzQYEVUNEns7YGoTE1td09oWvlQwtSRKk6tnCnP2/NWKow9GBGFtSOztgFbxktvD1tLr2WIQkW5aoiag1grZVMNeT0OO8BRGEKYgsXdgWJSItcSET3ZmytKXm1NQmgfQIt5yOe5NUR7poAmiqkChl3YOvTSF0q5VWnK6W2OQsCQsUamOJb58UwnlyiODKFnuhD2h0MtKDp+mmJ/ElVr65lr+5m48Lt3gRK4ttTo8vNCb47fnN06x5sbpWiChJyoLJPYOiLkbg/Pl5aJ75ITRkgFCrg2lAcCUGJvy76vtU0vWNkGYD7lxHNCNY6sYfHMHEaU2zBmEytr/8pjYtRZRumi4BAUiNn2ZvbtCVCKspVck9g4o9gwtm4aXpU1boeUalAiNILRBPvsqgLVCL5XatAZybhtTLiRzUNsAnSAI7ZDYVzAcNcRQbRCR67NWq146qcte0hh/RyBKF42+wWPt3Q2CkMXF3h0gtFPeE5Omrmdq4GHnU+d2tEp/lDZPcRSXEPnrCUeGxL6CwwRZ6t9nlHXlbVkpj8HJEYSeIBwdmqB14AlaS7BGxI1a21osfTmfvdzG5nH6GM35dNRwBMu+b/BYsuoJm0ATtFUYaaoDfpK0PDc114J00Zc0fj5lyniLF1sx7C30BFERsKnYz5kzBx07doSHhwe8vb1Vy16/fh316tWDk5MTcnJyVMuGhobCycnJ4DV//nzrddzBYQIqTaUgt6DKHMyZ/JVbUGUqhYPUAuc3M2coCXfo6kWa+2YPyKonHB2bin1hYSGio6MxcuRIk2WHDh2Kli1bam571qxZuHTpkvh68803y9LVCoktQjMtvT5/TCn0Uir07LOcwEst/NThb5e5v7bEUaOkCIJhU7GfOXMmxo8fjxYtWqiWW7lyJXJycvDWW29pbrtWrVoICAgQXzVq1Chrd6s8prJbWjKgaMmTw3CkMEpzYU86JPqEo2J3n/3Jkycxa9YsbNiwATqd9u7Mnz8fderUQWRkJBYtWoTi4mLFsgUFBcjNzTV4VQXk8tao+fsZ0lW7WurIfVY6pgVLsmNKP5e38DrKDmMEIYddxb6goAADBw7EokWLUL9+fc31xowZg82bNyM+Ph6vv/465s6di0mTJimWnzdvHry8vMRXcHCwNbrv0MhN1kp9+ryYs89q9flMnNJ2LM1GyS9CKstEq7VSSZS1Pln2hKNitthPmTLFaHJU+jp9+rSmtqZOnYqmTZti8ODBZvVhwoQJ6Nq1K1q2bIkRI0Zg8eLF+Pjjj1FQUKB4nZs3b4qv9PR0s65XEdEifmplLBVPpQHGEvjsl6YwNdiEzV9iUojLOmCQZU84MmaL/cSJE3Hq1CnVV8OGDTW1tWfPHsTExMDFxQUuLi7o0aMHAMDX1xczZszQ3Kd27dqhuLgYqampsufd3Nzg6elp8KrsSK10OatTLjWyXD21ti3tk1JaAemErlZrn/U/dW5H9A0ea3A/bDKYhJioypi9gtbPzw9+fn5WufiWLVtw9+5d8fPBgwfx6quv4s8//0SjRo00t5OQkACdTgd/f3+r9KsyoDXNgVJsvpZUCOZa8dIQUcD6IYspU8YDUwyPhb6zF1Hv7DW4vi0XnzFooRXhSNjUZ5+WloaEhASkpaWhpKQECQkJSEhIQF5eHgCgUaNGaN68ufhq0KABAKBp06aicB84cAARERHIyMgAAOzbtw9Lly5FYmIizp07h02bNmH8+PEYPHgwfHx8bHk7FRZzRVmL5W5p2CdfVot1Xxbk5hys2b4pSOgJR8KmuXGmT5+OL7/8UvwcGRkJAIiPj0fXrl01tXHnzh0kJSWhqKgIQKlLZvPmzXj//fdRUFCABg0aYPz48ZgwYYLV+18ZkRNpS8RPLSRTy0peJSGUW6ylBbmUCZbeF7l7iMoI5capAv57hjRpmlTY1MRRzgXCn9Ny3fLGnCcUEnnCUaGdqspAVRf7ioA5feUjdkL/882HzV+C0Hf2mqxbUb4PoupCidAIs6kowmZK6PlNTHiYGydKF61J6FlZa60TIAhHhiz7KmTZVya07lalVfQZ5gyIFG1DlAdk2ROVBnOsaWn+e1OLrqy1S5YcsenLEL5lts3aJwhrQpZ9FbTsK5LvXglmVSuJvbkWvRIXYloiecA0q7RFEJZAlj1hEWVd/WqrGHUt7fPCXl7uk5DoY+VyHYKwNST2VQxL87eUdWMUc66jlNZBGkdfHtsRugQF0iQsUSkgsa/C2CtDo1z0CxP5sPlLFAcUaX9tLfR8P8g3T1R0yGdfBX32gPl+e7680qKssvSFYc4m5Myyt2Y0jhRr3idBWAL57IkyUZZUCaZcOmV5YmACbmqvWgCq2xoyyhKNY47rSik7qFwcP+W8J+wBiT1hhJaMl2qYawWzeYQ4fYyscPOirib8jVekmnVdJVLndizTpu1K3w+JPGFPyI1TRd041ubu7XwU5RfBw7M6XFxtl19PaVKWn0SVhmQyV46SlS919bBy7DrhW2arhl8q5Qqy9WYpRNWA3DiETVGKiJETsNzrtzD9ifkY4Pcq9nz9FwoLimzSJ7XoG6VQTFZeizsndW5HqyzCIlcN4YiQ2BMivKDH6WOQdjoDd2/nGx2X8t1HPyMh/gQAYNErK5B28iLOHD2P0wdSUFxUjHPHLgAAbt3Iw6Vzl8vpbkoJm7/EpICz87yFzw8qphZV2cLlQxDWhsSeMIAJ+pmE89i6dBuyL90w8KnLEdwkCG37RqJ2gDcA4PjfpzG17xyM6zwNv/9vH6Y9MR/7fz2CPV//hX0/HbK4b6aic2LTlyE2fZno0tHiw+ctf6n7hiAqE+SzJ5+9EacPpGDF2HVo1aUZnp3UH561axlZ9VcvXseVtGu4v2MT8djs5z7CHzH7FNvt8MSDmPXDZJPXt2SxFJ8+ofGKVIP3Z0aHGvjfAaDRuGuKrh9TPnq50FBrWOjkwyfkIJ89YTOupF1DxEONseebv5B1/goAYGfJ//Dr57vEMilHzmHVhPXYumyb+MpIuWT2tcLmL7HKYikm3Kxu3+CxSJkyHmdGh6LxilQxJbKQUhMAcHapryj8WhdM8WmVpX0sa4gnCT1ha8iyJ8tekV1f/YHMM1kQBAGCIGDLkl/wzITHcV+IHzx9a2HGkwvNao9Z9if2JuG5DZtREHrvu9eygMpUOaloM+ucT0XM2nEKy0OjcdcMyp9d6mtk0ast2FLqi6VWPgk+IYe19Mqme9ASFZuegx/BqAcnIeXIefHYV7O/Q+26Pgh7oIFFbZ78JxmfT96I7iV67HHKRUGIp8185Mwdc2Z0KPoGj8WZ0aHiOSGlJs6Mrmm4AjflngtJDOXk6phC6+5YStBKXcKWkBuHUOWVDwbCy7cWJnw+AmM+HQYAyL50A/u3HTG7rZTD57By/Hqc+DsJp/5JQdcjd/HKv064cDJdtZ6cdS23U5Uc4VtmwyksT3TnqA0sbGEWE/ozo0OtlirZXChKh7A25MYhN45Jjv1xEk3bh2FqnzlI/O2E1dtfuGs6Iru3UC0jJ+y8cKv53Xl3DgADC5+HRe/w59mxhx9pgEnr34CLq4tBTh5pbh5bDA5k7VdtaIKWKDdaPtIMrtVcMWzBYExa/0a5X1/Jgjdl2TORZwMBE/HGK1JFEWfv5YSefe7cORR/fvcP8m8XYNoT843y9vCfbbkzFkGUBbLsybLXTJQuGmtOLMFr91vXx167rg8W7pqOkKb1FMsoJUFj55RSGzChTx4wDX2Dx+LsUl8IKTUNYvCVLH0AePmYE/7euh9FhcUICPXD1YvZaNunNTZ3dFOsQ9Y9YU3IsifKDd5/HNwkELN+NB0rbw7jVg1HvfC6qmVM+doBGIRSSt064Vtm4+xSX7E8W4AVm75MtOzlkqllX7qB4qISODk5ISv1KkqKS/DPL4cx8J9Cxf5YK+2CFPLjE2WBonEIkzCrcsvVL5CelInp/RdYpd3qNd1RXFgM9xpucHZ2NjinZWEV7zN3CsuTXQgV5JOD+O6LDSx+6Xv8Z+0zn75TWJ5Y/yd4A707AADafHIK1zNvAADybtzGcr8HkXTwLFaE3ja6bsqU8YiysoVP1j1RFsiNQ24cTZQUl+DZusMwecObeLff3DK1VcunBrz8PPHSzOdwcl8yug3sjKbtwlTr8G4cJvBspawW1FbFsnP80wA/qcu7eTqsOWuQ36ff8ChZsQds487hIfGvGpAbhyhfnICgsACsfWdTmZvq/Up3rDu9HE3aNkbX5zqiftMgxbK864K39JkrBpCfqNW6KrbbnomygwBzBTHXD2Pfa43QsGWI+DnnSo5i27aerCW3DmEOJPaEJpydnbH4t5l47PVeZW7r0vnL+OeXw/j4jTX45M21uJx6Ff/+eQqF+YU4tDNRLMcvMmILnZhVL90EnBd3OaEP8smRLR/ffTEAGLXHBoDkAdPgFJZnMNDsef7e4PT3DwcR+s5eAyue+f1Tpoyn6BzCYSCxJzSTd+M2lo/6vExtBDa6D9VruuP3mL3w8vPE2JXD0bBlCD4Zsxa/rIrD7OjFYlmpm4LPf8Nnt5Tz10s/x3dfjG57Jhr1h4l+bPoyCCk1IaTUVLT0xX70eVLx/r5r3wsT5jyNTwMfQJ96YwDYzsInNw5hDiT2RLlRt+F9eHn2QDw9th/CIhsiLLIhTvydhKsXr6PHCw8jK/UK+rzaHb+u2a3YBm+BMxeLNJ5e+p59ZlY8X4cnZcp4g8lZVibIJwdBPjkmJ4w/vq81Ms9mYe07m7Dw5U9w9o17KSVsEaFDbhzCHGiCliZoNXPjcg6erTvM4vr1wuuiS3RHnNqfjCO7/hWP8ytoCwuKMKThaHybsVo8L5cEjR1rvCLVwK+uZJUzN440Moef6GWTsXJtys0LSCdg2z/eBo1ahmLnht9wNf06ACC24Bs0XrcEqcPfFtuw9sQtb+FTfp3KB03QEhWOi8mXsGnOFgOhB4CP31iL5aPXIC+nNKrlzs07WD56DbYu3WZQTrrZuJylzcfYS+PtmdCzc9I2lBZXKU32Si31f34+jE1ztohCDwBNFy6Da7aLar2yIrfjFf+ZngAIgMSecABadI5Ai4ebwtXNBctHfo7hi4bgn58PoUHL+rIhl4yw+UtEX7sUqUC7v1Qs69phbiG5CVpm/cu1DwCP/nJd9jjPS/864eVEYO1Uwygmawu+1JqXfibBJ2hRFWF3Uo6eR9aFq4js0Rx7fzyAMSuHoVHrUDTr0AQp/7l3pNY8b+VLE6JJ0yUIKTURmz5NNp6ewVv1ci4cNtA8HV/q07+VnYeTh8+ZvLff/1e6c1fjyAZIObxQU6ZOS5Ba8kzs2XFy7RBk2ROa8axTC9P+N8Hq7aYcPocjcccwOWo2CvOLUM3NFc063NvukBd2pXTHDGmGS6B0gAjfMhuNxl0zsuDPLvU1SJDGwwYFftL2SNwxHIk7hhQNQs+oHeCNXdF1jfpuy7BMsuQJKST2hGacXZwRcn+wzdo/d+wC9CV63LhyE0MajsKcgfK+eVOCH75ltjjhysQ/JPqYrE+ed9GcXeprlFCtb/BYNBp3TfMiLTlyrubi+b0FBsfKY1NzEnyCh8SeMIvgJoGYt/09m7VfVFiMZwNeQ1bqVfzx3T/o7/0i+nu/iHdvqydKk4PF5Uut+UbjrolbEsqFWkojemLTl6luQG4KfYkely9cBQA0m38UE6/4iOdYSKYt3SzkwiEAEnvCTHQ6HR7s1Qozf5hk82vpS/S4k3sXd3LvYtOcLSbL824eZomHzV+CM6NDEaePETcgB+755XnLXpobh6VLYO3++fwgi+8lfmA9hL6zF3dy76LgrnHGTFv58hlk5RMk9kSFZNhpV4TNLE1VED7rIIB7rhE+hp5Z7nLhicy6b7wiVSzHh2Y2GncNQkrpPrUPLD+JIQ1HW9TX1LkdjWLrpRPOoe/stZkFzu5b7jsgqg4k9kSF4Y0LNcT3n0cUwa9ebQCAoBfw/cN9cSahdGN06cSqU1geLsS0NJgQbTj2KoTCQqNJWVafDQQAcCbhPIqLSizuNy/0Xr61ENgoQPx8/O/TBmVtlQufh4k+PwgQlR9aQUsraC1i708HMePJheV+3SdG9caZhFSc3JtkdK5Bi/pYnbhY3JGK0WjcNXHzcCakHieuI2xHJpLe9ENBM8M4+uQB03A2MRV9Yr8HADy0KhlX0q7BGrhVr4akaQ8CACZe8cGWpdsUxb28Njsnn75jUyFW0M6ZMwcdO3aEh4cHvL29Zcs4OTkZvTZv3qzabnZ2NgYNGgRPT094e3tj6NChyMvLU61DVA5++nSHrNC7e7ihxcNNcXD7UaO0xGeX+sIpLA8uQYGigA5xDcTNa7fQcUuJgRXPfPUph8+h7cokhL6z12pCDwBJ0x7Ek3E3Edv7SfEYnzXzk4DWVruWVmi1bdXApmJfWFiI6OhojBw5UrXcunXrcOnSJfH15JNPqpYfNGgQTpw4gbi4OPzyyy/4448/MHz4cCv2nKho1PD2wAvvDsClc1dUy6XO7YjGK1IRt/UwAODmtVxc6SGg+uFcJA+YhqSDZzD3Qmssfec7vPj+cxgwrh8GjOsH9xrKe86aQ+g7e5F7PQ/ZWTmy5z589VODvpYXtPiq8mPTFbQzZ84EAKxfv161nLe3NwICAlTLME6dOoXt27fj4MGDePDB0sfhjz/+GI8++ig+/PBDBAYGlqnPRMWlTl0frJz3K5LTlynGxTdekYqX3+yOL979GgBwPfMGam8AHh7QDs0XTkXQu+egL9Gj/WNtcOlsFn745iCcXFzgWas68m8XyLZpLs4uOri4OiueP/3WGDi7lJ5n+3eVh0uHt+pJ9CsfDjFBO3r0aPj6+uKhhx7CF198AbVphH379sHb21sUegDo2bMndDod9u/fL1unoKAAubm5Bi+ibDRqFYqoF7vYuxsAgFFLX8HQeaVhkVIXDg/bYPz75dugL9EbnDtzNBW9Y6uJx//55TC+nrsVC78djUHDH5a1xC0l5ch5rJnyFbZIEr0xPn5jLdZP22wQjlkeE7dSaAK3cmH33DizZs1C9+7d4eHhgZ07d2LUqFHIy8vDmDFjZMtnZWXB39/f4JiLiwtq166NrKws2Trz5s0TnzII63DzWi7ST2fYuxsAgH//PAkvX09EDemiuviJLa7ykjl36dxlg71lGRtn/g/JZqRG0ErKkfOK57atjkNAqB+KpjQwyphZXsgJPbl6KjZmW/ZTpkyRnVTlX6dPnzbd0H9MmzYNnTp1QmRkJCZPnoxJkyZh0aJF5nZLlalTp+LmzZviKz093artV0X86/uixcNN7d0NAMCfW/Zjx/rfsPT1z1TLMas/p1D7n31C/Ancyb1bpv6Zw3vfTsDM70sXrMkJvT2Ell2TRL5iY7bZMHHiRLz88suqZRo2bGhpf9CuXTvMnj0bBQUFcHMznhQLCAjAlSuGk3DFxcXIzs5W9Pu7ubnJtkVYTtqpDBTmF+HTQwsAAN/M24o/t8i70cqDGp7V8dS4fuLnL3S9xLzyO7/8Da9/+CKmvli6peL2K6vwaPUXUFRQVO79bNOrFfyDfXEt4zoK7hbi2O8nxXPTv3sLP3z8KxbsnIZq1auh5tRNaNo+HB8H3xLL2MOlIpcrn4S/4mG22Pv5+cHPz88WfQEAJCQkwMfHR1GcO3TogJycHBw+fBht2rQBAOzZswd6vR7t2rWzWb8IQ5q0bYSQZvXg5Vsa9+tZx77rFXKu5uKziV9i7q/vAgDaRLXEDx9vx+YF3+NO7l28FLsebOr+zQ7v2EXo7+/UBFM2volq7qVzA4Ig4P2nF+HY7ycxPWYiOjzeBstHrsbIByZh1dFFeGnmc/j+41+BYPl8+vaChL5iYlOHYFpaGrKzs5GWloaSkhIkJCQAABo3boyaNWvi559/xuXLl9G+fXu4u7sjLi4Oc+fOxVtvvSW2ceDAAbz44ovYvXs3goKC0LRpU/Tp0wfDhg3DqlWrUFRUhDfeeAPPP/88ReKUI27V3eBW/d6ArHO2/1z/tYxs8X31mtXxzMTH0P+NPvjkzbX4a9V+fPDLVHw+aSOSDpyxS/9O/J2EtVM2YeLaUeKxwEYBeGJUH/y0cgeCI4Kw4ewnuHMrHyMeeBufJXyIyB7NseC/77lv8Fic+W+SNmXKeLtOnJJ1X/Gw6X/o9OnTERkZiRkzZiAvLw+RkZGIjIzEoUOHAACurq5YsWIFOnTogNatW+Ozzz7DRx99hBkzZoht3LlzB0lJSSgqumeJbdq0CREREejRowceffRRdO7cGatXrza6PlF+jFnxGh6J7qB43sXVGTW8PGzah5LiEty6cW9xnWs1V3jUqg7POrXw7ubx2Lr0F2SlXoWXn32eQkKbB2PERy8ZHJu4ZiQe7NUSLq7OeLvHTBTmF8GjljvcqleDTqeDW3U3UdT5vPu2TpxmChL6igelS6B0CRYjte5WTViPbZ/vko1Hb945Ai++/ywm9Zxls/64urmi6/MdMWndG6rl+gaPhdO1q3Zx5bTt0xpvfTEKtQPupTme1n8+npv0JJp3ipCtw77nKF00XIICkf+lCy4eqCcmT7OXhU+CXz5UiHQJROUlN/sW1iUtx7XMbFy9eB2ZZ7Mw8J2n8ehrPXF/p3u7TN3fqQnu79QEDVqEILJ7C3zw8xSb9cmvXm08OrQHjv91Csf/OoWs1HsT+bwgLt36JmAnG+fg9gQsH/W5mN9eC3w0TGz6MgOhl5axBXH6GKNrkdBXPOweZ09UTI7/dRrfL/8V99X3Q91G9+Fq+nVEdm+OkUteBgB8NGwV8nLyMOWrsTi5NwmtuzUHALTr1wbvb30bO9bHAwCSD53F9cwbVulT5tnLGP/IdPHzs2/3x7AFgwEYiuGMpxaiqLAY1dxd0aZXK9y8dks2346t+PuHg3B2dcHQuS8gsFEAIh4Kg2edWji651/cvZWPDk88CCcnJwDGT09Rumg0DgpEsaTNsPlLEGrjfkv7QYJfsSDLnrAI//q+8K/vi9QTaUbn9v50ECOXvoyO/R9C3Je/4ejufw3Od3ryIcz6YTJm/TAZzTo2Mapva7o+2xGu1VzwxKg+mPXDZLwy+/ly78MfMfsw46mF2L4uHlEvdsGlc5fx55b9+PvHAwYryKWCyqx7djxs/hKjlbWWWt5ydeSOkdBXTMhnTz77MpH4+wkc++0kNsz8HyIeaoxHojvi5tWbeG7yk3ih/gjodDoMnh4Nv3q10fW5TgZ1j+w6hsm9LN/b1RStu92P1+YPRpO2jQ2Ob1sdh6zUqxg69wXkXL2JDTP+h59X7bRZP0zR55Vu8Pb3wtPjH4OPv9z6XmDE4SFY1WZjOfeMcATIZ084BM7OOhyKSwQAFBYUoaigCAPGP4ZaPjXx4oxn8cToPlj99gasnrQRu776AwBw/K9TWPvO1zYVeqB09euaKV8h6dBZg+MbZ8Vg4NSn8O3CHyEIgG+9Ouj+Qmeb9kWN7evi0e6xNng24DXZyVap0FOuGsISSOyJMuHh6SGGVHr7e6Hz0+0Qu3YPlo5Yjf5v9sVTY/oCAK6mX8cf3+0DAJz6JwWb539fLv1LiD+BcU8tNzg2dN4grJ26CW7Vq+HX1bvwwjtP4+VZz6NxZINy6ZMSSu4XqUXPykg3UicINUjsiTLRsGUIGrcOBQAciTuGaxdLRb1hyxBAELCEy1eTfOgsZj/3EXZt+qPc+tf9hc744o93AHDJvYZ0QZuoVuj7Wnc0eagxUk+k4+8fDmB6zETA1bXc+sbzwXMfYfZzH+F27h3VcnEbfkfi7ycAlGbxJAitkNgTZabv0B5YEDcdLbs0w+eTv8Kzbz2BI7uPQa8XEDXkXhrk65k38EfMPpxLvFBufTu9PwXppzMBGE42duzfFm7V3RDUOAALXvwYJ/clIe3URaCo/GPvgXvfTWF+Ed5/unS7RzY4jTg8RPy5bto3mDJ4tdE+sgRhCpqgpQnaMvPjiu3wuc8L4Q82wpznl2DsyuFwqeaC+k2DIOgF7P3xIGZFL7ZrHxv99/Qx7X8TENS4rni8ML8Quzb+gc8nf4XqtdzF5Gn2IrR5MCZveBONWxu6lEYcHoLOv/bHptV/4tvED+BZuxYASjtcFbCWXlGcPWExf3y3D6smfonbN+/A2VkH95ruyLmSi3f7zcWKg/Oh0+kQ5RKN2IJvMD1mol0F/2xCKgCg8G6hwfFq7tXQ88UuKCnR4/hfp+Af7IvNC37AsAWDcWT3vzi8M7Fc+zn5yzex8KVPsDrx3nfFLHsAeG1ClCj0BGEOZNmTZW8xBWlNEPOpH75cWFf2/Nbr6+Beww0XkzLxZvt3UCARWnvgEhQo6+suKSlBSbEeOp0TigqKUM29GkqKSzC203s4c1R5oxFrsmzvHDSObIDCu4Wo6V3DIJ59xOEheGTHU/h6zhZM+HwEur/wsFF9in+vnJBlT9idf/5Zh583rEPtAMhu2/d0nVfKv1MmKM7IxJmj540ib5ydneHsXLrvq4tr6b+Fs4szqtd0h5dvLdzKzoNeb1u7aGzH0vTMHrWq48ebGwyEe2nTNbgdeAe3svPg/F//mLiz0EwSekINmqAlLKbLsx3x+b8fYUHcdHR5VjnjpaMxss0knE1M1VQ2oIE/lu2dg+YPN0VwRBAAoJq7K0Ka1bNhD+/BfPI71/+G54OGIy/nNh7s1dLAiqfFVoQWSOwJi7lxOQfbVu/CO4/OQcqR8/DyrTi+5DEd3kFhQRFSjqjvLztp/RsIalwXi+NnYuXhBYh4qDHqNQlExk09PtzzPgIby++OVhaadQwX30ut9e1f7MHfPxwUP+uzwikih9AEiT1hMQdij+LmtVwMnTsIb3w8FK3+S3bWquv96Ni/LTr2b4u2fVrbt5MKFBUU468t/2DXRu0x/27V3TDtfxMAlMa4t+p6P56Z8LjV+/bBz1MBGE7M1m3oj+CIIIQ2D4Z/fV/E6WPQN3gsege2MhoQSPwJOchnT1hMUFhduFWvhq7PdYI+KxxZ3T5B9RruePH9aPjXL926MjvrBp4LHG7nnhojCAI+eXOtwa5RllA/IghhbRoi5bD6E4K5MD/8tcxsHNqe8N+1AuHqXg1Z569g+/k9+PrwLDGXDu/WId89IQdF41A0jsXos8KhC0hWLeOoYs+oXdcHubrqiE1fhr7BY02uSs3LuY2d63/D09zm5l/P3Yp1731jlf48PrI33vj4Veh0pQ/dh3YmYmqfD2TLLv3rA9zfsYlqFA5F6FR8KBEaYXd0AckmXQbVa1VHj0HGYYL25PnJT+LVOS9gR2YiHnmmPe4PK901Skv6gZreNQyEHijNrqnzrAWdZy3UbxqEfsN6wlshe6UpnF10KCoowv8W/ai5Tpw+BoX5hVg7dRN+XLHd4JxLEO3LTJRCYk+UCVP+4uo13DF6+asOJfj93+iDgVOfgi4gGX1e7Q6g9CmFxxy/d7MOTaCrVQu6WrVw8cpdvDjzWbyx/FXovL2g0zmZ1bcfPo7FqglfwrdeHQBASLN66Du0h2zZ/y36ETcu5wAAPh69BrFrd6NOoI/Z/SeqBiT2hFWRcxnU8qmJfsOj7NAbY17/8EWsfedrFBeV7vUUEOqHF99/1sgdZa5FzJ4Kdlz9DLUDfHByXzI69YiwKDb/gahW6D6wNOWyX706iOzRQrbc3h8PYuHLn2BW9IfYtTMJkze8iTljvkbf4LFwCQo0yIpJGTIJmqAlbEqULhpfnf8UK8evs3dXAABtoloiol0YdM6ldk4NrxpoHv4kgFKxZ/MQxRmZ4gbfUveOnG+fHVs/bTNO7D2N0/vPIP+O8cbrWvjxk1j8tCJW/JxzJVex7KEdpekc2j/eBtOHrTc6T5kxCQZZ9oRNYGGDcfoY+AR4o/8bfdGq6/1YdXQRVh1dhD6vdLNLv2ZFL0ZQWF1xAhSAaNXLTThLxVLOPRK7djfq13HF3h8P4ty/F5AQf8JioQeAxN9OICH+3iv1RLrJOge2HUHLpnWMjpN1TzAoGoeiccqFosIi3Mm9Cy9fT2xbHYfVb2/EnVt3y70fC3ZOQ6tu96OkqAQvh48Rjz/06APYse2EgbjzkSxMKIszMg2s/V1f/YFP3lyL2zfvoFbtmriVnVeOd2OIzlmHtn1a43BClsFx/p76Bo9FcYZxymfCcaFoHKJC4VrNFV6+nojSReNO7l08M/Fxu1j3NX1q4NWIsbh14zauXryOqxev43pmNuI2/IZ+T7Y0KMv83kqTnXq9Hnk5t3H7ZumGI/YUegDQl+ixf9sRtG1jPN/ABit+s3KiakFiT5QrcfoYuNd0R63aNeHp64nadX3gWq38po5Gt52CzLOX8XzQcHEStsUjzTA9ZiLcqlcDYCiMgOFkLXtfVFiE2DW7sWLMF+XWdy24uDrDvYab+JmtH5CDInaqFjRBS9icKF00fs77Cjev5uK+ED88PqIXAOBaZjZ6Dn4YHw1bhdMHzpR7v5g7I/92Phq0qI92/dpAnxWO2PRkgzIsNQFwbwA4tT8FX8/dWu59VsPF1RmdB7THn3+cR2z6MsWdrEjkqyZk2RM248TeJBQXFePD+Pfx55Z/sG11nMH5r2bGYHirt+wi9Az3Gm6oVr0aYtfuEWPteUuYuTxi05cZ+L4nPPMJhi96sXw7qwB72vD09cRff8rn3uddN2xjc/4YDQCVH7LsCZvx88odSE9qgcVDP0XzzhFY8sds8dyFk+nIunDVjr0DOj3ZFgGh/hg+aa54TBeQjFhJ8Is01JJ97uM/Eo1ah4q7YNmL4oxMuLg6o2m7xghqXBfDFt6LhBI3WVdIm8COkx+/8kPROBSNUybU8uOUlJRg6eurcfvmbdy4fBNTvxqDQzuPAQD++n4/DsYeLc+uGqDTOWHKV2PRpesr2P7LSvH4xzN/EoVdSSBZREucPgaJv5/A6rc3IvnQ2XLrO6P9423g7VealsHdww2jl79qMDDJWevsfihnTsXBWnpFYk9ibxUO7UzE2YRUdH2uI+4LKc14qdfrEfPhz7hxOQd/f78ftQNr4+TeJDv39B41vDzQ++Vu2LpsGwCgYasQDJ07CDOGrxd93krbGPIkxB/HmilfIelg+Qi+t78XPGq5Y9KXb+Kt5z41moRVE3sA2JGZaJQamcTfcaHQS8Lh2PP1n8hIuQQA2Dz/exTcKcCaKV9hy5JfkJV6VRT6hx6NtGc3RW7fvCMKPcPJCaLQA/eiWdR82q27NUeLh5vZtK88wxYMxpV8Z7z13KcADN1M/MAkdc/syEzEjsxE6AKSDSx83tWjNKlLVHzIZ0+Umb9/OID9247gzq272LL0F9RrEoj7Qv2x+u2NGP/Z6wCAjDNZOLQzAaOXvYqkA2dw4Ff7uXCUOJd4AYm/nUDbPpEGIskWUvFI/fiPRHfAyX+Sbfrk4hIUiE6dQrDkve/FY3wf1J5A5CZjyVdftSCxJ8rEvp8PYe3UTWj5SDPUruuDA78eRe61W+j2fCe413BDh8cfBADkXr8F36DaSD2ejg792+LEviT8/f0BO/denriNv8M3qDYiuxsmIJOzoHlXT73wujYR++kxE/HTyh3IvnQDf/99QTyuJe+NOSkSeIueBoHKB7lxCIs5uP0oVk1Yj/SkTDSKbIAJq19H2AMN8NHwVbhxOUcUegDwrFMLPQY9jMgezXHmyDmr7+xUVlo80lTcYvD8sQvIOn/FwALmQy+ZgPYNHmuQTuH5yU/i/k5NrNqvB6Ja4uEB7fHw06WvEVP6olljbyz+X+kOWwte+hgTu82AXq/H9Us3MLHbDHw+aaPYJ7kVs2oWfZw+hnLgV1JogpYmaC0i8fcT+CNmn5i62LdebWye9z1++SwOd/PyERwRhI//mYvxD08T67Tqej9ad2uO5aPXIPvSDXt1XZaHB7RDm6hWWD9tMwaMfwz9Xo9CLZ+a4nlmwTOUrOrLF67i9s07GNVrAWqU5CP3+i2D88ERQXj46XaqC7Kcfeug5Np1AKViv2DHNPz0aallfzcvX5xnaNCiPi4mX0JRQRFcggLx09kP8eeW/dj55W9IPHHVooyXNFHreFhLr8iNQ1hE03ZhaNgyRBREfVY4LqeNwN28fABA+ukMDG02Dtcz74l6Rsol7P7qD9y6cdsufTZF90EPIyv1KnTOOiOhVxJAqZuECez2rE9x/dINDAoZiZLiEgBAcJNALP1rNlzdXPHYiF5YNfFL/BGzDwDw7jfjcH+nCACAb1BtHP/rNCZ0mW7Q9vfLfzVIHnf+3zS4BAWi1t1cuCEfLzZ6A8VFJWjUOtTkvSq5bChCp/JCbhzCbE7tT8GiV1bALe8B6LPCUVJcgoK7Tii8W2hQjhd6ACjML3JYoXd1c0X1Gu54edZzGDD+MYOolG13vxbLqaUMZpE77DWu07soKS5BNXdXVHN3RUADf3jUqo7qNdzhV68OAkL9oXPWwbWaC/xD/PBC/RHwq1cHTk5O8K/vi6btw/DBz1PE9pnQu7g6Y+b3k9Dikab4fM8UfHf8b2w6GI/rmTdwJ/cOTvx9GlF9mgJQXxnL3DlKfn3+HKVHrviQG4fcOBax96eD+Ov7/Zi07g188e7X+HnlTuTlOKaQm6JV1/vx4Z73Fc8PazEB83dOQ526pVv+KQmfNN69VvFt5N8uwE+5pT7043+dwp6v/8KYT4cZ1TW12Xncht/xyZi1eHHGsxgw/jGj871dnoV/iB82nl1h0Ee2+MsakKVvHyjOnrAb+XcKcOXCNYNjr859AdETH7dTj8rGuWMXcCXNOHXD5QtXce7YBfiH+MLF1RnAPVGW5sqRCrVQVIx64YEIbR4sHmveuams0PNx7jzsCQEA2vV7AM9MeBxefvL/7A1ahiA4Ikhsh/XHUnGW9kmpj0TFgcSeMJszR85h46wY1G9SKi51G96HOoE+eG3iB4r7pToyt7LzELt2j9HxXz/fhQldpuO1+YPxfGTpRLOpSU92Xp93CyfP3MDyvXNVyzPxZBk42WeWkiE2fRluXLmJ7V/sgV+9Oug5+BHZhU+rjizC0WOXAVg3bJKflGZuH+nm7ETFgCZoCYto1jEcz095ChdTLqF55wgENwkCkIwWnWNwdPe/9u6eWYTeH4yGLUPw55Z/UK9JICAIqF6rOtr1ewC512+hhpeHal54uQHA2cdHfJ9/p0DMA+QXXAcRD4UBMJ4kZQLPu0tuXLmJ55tMwNiFA7Fsxo9Y/NpKRTFnAwZr29w8OHL94e9NnxWO3oGtALRCnN5kc4SDYVPLfs6cOejYsSM8PDzg7e0tW8bJycnotXnzZtV2Q0NDjerMnz/fBndAKHEl7RoSfz+BfT8dwu/rnwMAHNn9L+oE+pio6XiknkjHrOjFmBW9GLu/+gPpSZmI/+Zv/P39AWz/5QT8g30BAD+e+RCP9m+Bd5a9YFD/TMJ5/Pr5LlxMzjQ4/tb8Z9A3eCyeajIJB7cn4OD2BPy1dT9+/XwXkiSJ05jrhRdoABjYcirGLhyIR4f1lI3zZ7CYf+b64S1wU0LP2pFG4rCBh53r17avwXmiYmFTy76wsBDR0dHo0KED1q5dq1hu3bp16NOnj/hZaWDgmTVrFoYNu+f/rFWrVpn6SpjHucQL+Gzil/AJ8EZJcR+k7GqJnCsrHG5DD0t45JkOWDz0U7R//EFs/eYQgHtx9l/+/R7e7PAuoKsuln/z8aVoHu6Dj2f9jNj0ZYho4IkmDzbCspGrUZyXD//6vpjw+QgApfMDe77+E/7/JYuTIhXR7Vn38t9I97/l4Vf2yj2BqFn30sRp7BrsnqUbt/CuJkti+Qn7YFOxnzlzJgBg/fr1quW8vb0REBBgVtu1atUyuw5hXVKO3Nsoo2P3Gnhi0sNwdnHGB88vsWOvLIf5p/f/egTb18Xj379O44s/3gVwz63x88qdeHpsP9wX4gsnnQ5fz92CGp4eeKjvA1i0+wmxrS1LSxc+ubq5YuDUp8XjDVuGoGHLEFF8mWDyFjRgOCHK+sV+8pE2cq4WttMWn3ralHXPDzKsXfaev3/aw7bi4hATtKNHj4avry8eeughfPHFF9ASDTp//nzUqVMHkZGRWLRoEYqLixXLFhQUIDc31+BFWE5QWF088cq9aJxOfXPQ+onvoM8KR5dnO2pa1OMo7MhMFN8XZ2Ti4PYErJ26CUDpIrAVY77A4tdWom/wWGw9NR+7v/4T3QZ2wuG4Y/ho2EqkXSvCqXM38cd3+3D879PoGzwWz016ErX/C9N0cXXGI9Htsfi1lVj82kpxty45n7ica0QtdYFLUKDoalGy5gFDd49SWSlSi52P8CEqJnafoJ01axa6d+8ODw8P7Ny5E6NGjUJeXh7GjBmjWGfMmDF44IEHULt2bezduxdTp07FpUuX8NFHH8mWnzdvnviUQZQdn/u80ab/Qvy0biEA4OKF5vjinU2IfutnHF71P2Sdv2LnHmqnd2ArMb87AKRdLzKY6Ny/7QgAYHPGaiwdsRo39G7IvX4L27/4L3ont3Sh0+kMYPzD0/DxP3MR8VAYanp7IPvSDRTmF2HeoGU4tCMRDVuG4LHXS9NLSC17flcpS5CfSDU+p5YTR+6Y9IkDAHo9NAs7D0w3Kk84NmYvqpoyZQoWLFigWubUqVOIiIgQP69fvx7jxo1DTk6OyfanT5+OdevWIT093WRZxhdffIHXX38deXl5cHNzMzpfUFCAgoIC8XNubi6Cg4NpUZWF6LPCsW+HJ95/pYHB8fc2j8e2z3dVmGgcZtXzwsgLP0/T9mFIPnQOzTqGI/92gWwit6iXuiB+Vwr6PdkSLbs0w9IRq3ErO088H9mjBRbGlYqknA9dKqxaLXDe184WUfHuH7mdt0xF6KjtckWUL3bbqerq1au4fv26apmGDRuiWrVq4mdzxH7btm147LHHkJ+fLyvccpw4cQLNmzfH6dOn0aSJ6ayDtILWci6dv4zp/Rfg7q18XJbsIesXXAe3svOQf7tAobZjICfyWmGCKodvUG1M3vAmvpzxLcatGg4nnQ5vtp+KpX+W7r3rXtMddRvcpyr0DLU0BlKkq2Tl8t5o3XWLlVWy6onyx26J0Pz8/ODnJx9JYA0SEhLg4+OjWehZHZ1OB39/f5v1iyilML8Iqcfln7qupqsbAY6CJSLPUBJ6ALiWkY07uXcx8/tJqOHlAWcXZxTlF2Hxayvxyf7S0GBTuWqYKPMDgproy+XVZwPSjsxEMYqH7zsv5nKDjlJiNKJiY9MJ2rS0NCQkJCAtLQ0lJSVISEhAQkIC8vJKH21//vlnrFmzBsePH8eZM2ewcuVKzJ07F2+++abYxoEDBxAREYGMjAwAwL59+7B06VIkJibi3Llz2LRpE8aPH4/BgwfDx6fixXhXNOqF18UHv0y1dzcclhlPLUTy4XPQOesw9P5xKCosxo3LN6HX61GYXyibS15qiTNLXYtlz8rwkTrbDsaK2w+y+QC5pGfSyB+lY1quTzg+Nk2E9vLLL+PLL780Oh4fH4+uXbti+/btmDp1Ks6cOQNBENC4cWOMHDkSw4YNg05XOg799ttv6NatG86fP4/Q0FAcOXIEo0aNwunTp1FQUIAGDRpgyJAhmDBhguanAXLjWE7GmUsY13kacq7ctHdXbMaOzET0a9tX1Yo3xcJd09Gq6/141P0F+NznhbfXv4HtX+zGO5vGKfrL+UlbwDgiRmsCNmld3qcvd56/NiU7czzs5rOvDJDYW05hQRH++fkQZj8rH/lUGSiL2PM+ffbexdUZnZ9uh3e/GQ9AW/oCJfE2J2WDXJvbDsYaxN8rlVNrjxZTlS+U9ZKwCzmXc/Dvn6ew7O8P0Lrb/QhsXDkXtm07GGtRPX6AEH3lRSXilofSiBi5TJcMllmTtaPmMukbPFY1hp4dl85XSK+vxX1Tlicewn6QZU+WvdnkXr+FhPjjAIB/fjmMuA2/27lH1sUW0TqNIxtgbuy7+PePkwhsFIDGkYZhq2wiVRo9oxW1VAo8ak8VUt+9XKgmReiUP7QtIVHuFNwtwM5PuiDr6mj878Of7N0dm6MWZqmEXPnuL3RG2qkM3MrOw5G4YzibkIqS4hKUFJfg3LE0tO3TusxuEWkqBebHNyfUUrqwSylShz1FyJUhHBdy4xCauZN7F8snB1dooefTI5jCGu6KQe8NwKtzSrNkvh61EE+N64fUE+n4fPJXOLQjEZdTryD/jvG6BHOsejl4oTcVMSMNtZRbzSuN5pGLKiIcG7LsiSqFkmuGrZxlP12CAuESZL7gS58Gvl23D32H9gBwz9pu91A9OOmc0O6xNmjyYCOjNnhx5id7leCtd1a3dM5hmcF5qVsGMN8yJ399xYUse4LgYINBcUamxZO0Ur5d8AN6v9wNH776KXpENcGNrBw0bRcmK/SAoXi7BAUiTh+jmtaYz2/PjvVr21dxK0Etk7AstbF0Vyqy5isuZNkTBOQt/tLNOjJN+u7583LlOj75ELx8ayF27W6kXS8CALSC8mSpXP54NvkqzWAptwhKmj5BLcma6VW0xk8FPPqscJOhnIRjQNE4FI2jmRuXc/BsXeMNsys7lkzUMu7v1AS16/pg3740jJv9JC6nXsU3a/82KicVaIa5k6xq5+Uoy4bkbP6DxN62UJw9YVdadb0fn//7ET7/9yP0G9bT3t2xKVqFXs6vfuLvJCQdOAMAWDrtB1mhl24IIo21V3LH8PB5dKTx+5bku+GvqZQBUxeQTEJfgSA3DqGJkpISTOo5C5szVgMAqrm7opZPTQCAp2/l3hLSHMteWnbNiSUY3nIiInu0QOIJwyyhLDaeR25/WeY/Zz95X73Ub8+7fpQGB7ZHrRqUDK3yQZY9oZn8OwW4ffMO5jy/BEe2dENft+fR1+15fLvgB3t3zWaYI/TFGZmigG+7+zVcggLhH1wHQWF1jYSetQ0Y7h7FrqXkuuGPMx++dONxaaglE2v2U7qXrBrmbGdIODYk9oQmnJ2d8WXKx7iemY1//zyFD4aHorioBMVFJdDrK/+0j1LoY2mIpuG54oxM9G/8FmoW5uHpplNw6Zb698OvfJWKK7+RuHSClln20slhNR+/nMUu9xSgVcTJ6q84kNgTmnk0eCw+e2sDgsLq2rsr5Qaz1Pl4d/6lZPUXZ2Qi52oufj63WNN15PaL5YVeilyqYpegQKNwUblIG7lrSdEq4pTiuOJA0TgUjWM254+n4dNx6wAAV9KuIfNMlp17pI65uW6YpS4VerXy0sVPWhZDMaSLnlieHLVcN0ppkBnmpCpWS5GgFcqEaTsoxXEZILE3H+mKS31WOLLSXbFhUQB2f1dbczsBoX7w8PLAucQLNumnHEr7ypqLnLuGPy43KJha+coLuxpyq2DVkBNfpVWzluawNzXgENaBQi+JciVOHyNayGxV5b8nPjFL6AGgVdfm6DnoEav3Tw1zhZ65aEzl0ZHz10txvZkte7w4I9Ngy0CtaBVlOQFWm3eQQ6uLhlw5FQMSe0IzvGjqApLRsGUInp/yFJp1NL3JO0/T9mFo1iHcdEEbsyMz0eDF4FMlSI8rwVvnvHgOGP+YUV56qXvIVDoEOSyJgtES4QNos9gpCqfiQXH2hCbYPze/PD7sgYa4c+uumNteKyUleuhL9Fbvo1aY0LLBS+rmMdfHryTiALD5i73Y/MVeo4gZae56aVgkQy6mHjDPt87/zpS2Q5Sz7tUyZ8qtDyB3jmNDlj2hGZegQFEAzyScx6JXV+DzSRtxen+KpvqNIxugz9DuSD54Fqf/W1VqTbSmL5Za6FJR7x3YyuiYUoilWtvS8kppgaWrZ+Vi5XkhlSYnkyKtK7fKlV+8xU8Es6cQ6TVJyCs+ZNkTJtFnhcMlqK/o2gjfMhvrXftg5/rfzGrHL7gO8jNewI71XQAAj790DQ8+tRAAsHL8emSdv2JxH7VMwkotdlORNmptsnrbDsZqfgJgAsvPffRr29dIXJklLnWn3NvNSj1FgZaNS9TCOtX6LoeWCWbC/pBlT4jEr26LcQ+/h3EPv4eje/41OFeckQldQDKuFvyNN3YHoHnnCAyc+pTmtpf8MQtD5w1Co67xGLdqOHoMfhgN27+Djk+0Rccn2sLDs3qZ+q5FcPkycv51ufI7MhPFQUHqrjEHZj2z7xEotbi3HYyFPitc1lqXE2J+AxE1pAuwgHuCrbRXbVmsd8pz7/iQZU+ItHlmDxKPfINtq+Pwyi/rkdB9MfoGj8W2g6XWaM7JppjUvweuZ95A4u8ncPvmHU3turq54pfVcZi08BPo/JPh4++FQO8BqFbvoI3vSBmlOHgm7LxVz6x3vqySuLkEBaLBfW5IOXLe6Byfk4YXfCm6gGTos8INrqnPCse2g4A+Kxax6aaTj8lZ9tJVunILuMyBr0MTto4PWfaEyJ/f/YPdm/4AAISuu4bogNdQs+g2rhXtheB3Cq917QAnnQ7vbh6PtFMZuJ55Q1O7AaF+GL3sVQNhq938JGp61xAt2kW7Z8DF1dn6N8XB3Ce8/13Ox85+MsGXe2qQ+vD5z+cvF8ha/szalrPipcfYd8Usf5ZhUjo48O3JJVHjyykht9OVXBmlqB1+MRjhuNCiKlpUJaLX67Huvc3YPP97o3POLs7wr++LdaeXQeesQ0lxCZptnYvZJ3ZgzQemXRqtut6PhV9/DV1AMkYcHgIAWNVmI/JTm0BfJwETu87AmaPG1rA10bq4igm11B+vtrJWp3OCk04Ht+rVUOjpY/TksO3CEhQVFOHJ8EkAzLekpZuE8H79srhfWH0t7agNBITtsJZekRuHENHpdNDpnGTPlRSX4MP49+Hs4ixOFIYAqLmoBDW8PESXjs99XqjmXk2spy/R48blHHj5eYpCf7Zt/n8ngYWThuPP71609a0ZwO8zCxi6dHjfvHRgYCIvFfoaXh6o6V0DALBh3y7xOBPnvsFjcTYhFZ9P/kpsp9Q9FmvkspGLwWfCziZ0AYiunOKMTKOJXnMwZ6JWbQNzS1fhEuUHuXEIA+oE1oaXQn760W2nIHzLbAPfb7+J/+CVDwaicWQD1PSugTNP1MTak0vw1flP8dX5T7Hq6CJ06N8W076dAACi0DNhqNvgPjSObFAOd2bIjsxEo6RhWiYZ+cEAALx8a+GVDwZiw75d+Or8pwa+eObH/unsh7iSdg21A7zxxR/vGA0W/L63/E9e6FmbfMQOK8MfN9eFY0lZqUuHhW8Sjg2JPWHAE6N6Y/A0+cm2nCs3US3pNvRZ4QZW3Kr5sVix7Qc8M+FxhG65iZ1f/o781NJVtTWL2uC95Z8BkJ/EG7ZgMFZs+wGPvR6FB3q2UHyysAZMVJkfvndgK2w7GGuQxRKQn7RVovPT7fH4gDGi5Q3AaAFTXs4dHN6ZiGcmPI6tS7YBAL5M+RiZub9BnxWOmMtrZOP45fZ3ZWLMPzUwonTRoqXPo8VqN7VqVppaWQp7WiEcFxJ7wohJgYfQ5dkOsufeuN7UyHfMLOSBr03FgHGPIfG34yioeS/SZlRGO9VojcS9NTB03iA8+eajcHYtP8+i1IevtGm49LOS+Ctt0Ve9pjvemL4IF5Mz4aRzQnFGJqb2+QCrJn6J3oGtcHJfaT2p0PZr29dom0FpXnu2bSFzozBL31xMpVHmURJ28t07NuSzJ4xIHjANsTm7cXJvMiLah+HwjkTcuXUXHrWqI6hxAP5a9yA6v3LoP4FJNrBAB71n2FapmOarXu982gc4ty4emz74DkUFRWXq+4WYlgiJPqaprJzQM9QyWfLH0k5dBKA8gQoAN6/mYnCDVgCWiuczz15G5tnLaN3tfgSE+gMwfPJhrh7+CUourQIL52SDAuu30naF5iBtg/2UG+zIjeP4UDQOReMosmN9PNr0aoX4b/5G3o088fh9IX54VGaTcTbRKBUo1WtkJkIXkIwfV2xH9qUb+HruVuvdgInrKuXG4dG6LWHbPq3x2vzBaNgyxEDo9VnhWLP4PcQs/tmojlv1aiip7St+Zk9I0ph+hlKeHKV9aeXcQOZgrluGTTgT1oXy2ZcBEnvz4EWDz4mulB89fMtsnO600Uj4GcxCHXF4CD4N2i+2/dXs7/DV7O9QUlxi9XtguzixVbGA+amPhy0YjDu37mLTB1tkz7fp1Qqhzeph+KS5AErdOndu3UV/L+Noo2rurnj27f4YMnKaQWoErWjdtISJv5rwyw0eppBGMAH3Bk2KyrEulM+esBm8Nc4m+/gl/TsyEw0mAaXlT3faCEA+wyKb3NVnhWNVm9JyIw4Pwfrpm/Htgh9sIvQAjKJf5LJcmuKZIW/juclP4qWZz8meP7wzEVuWbsN7r76ED6eMgT4rHO63W8GzTi28+P6zAErF0a16NSz7ew42f7EXAMQwTLmFS2pIJ2cB5WyYLGRTDmlqBbU+qO3ApQtIJqF3YMiyJ8veCKkbgkcXkIzwLbNFv7jUBcKn7eVFlIUiyonBuve+KTf3DQC8vW40lgxfheIi8waWhx6NhI+/NybMXYqRfZ5A2z6t8e3CHw2eFNj7URntUG9RJN5ZugoAcLf6Uayf/i1i1+xGSW1fg6cMFskjjejRsohJSaSlcfxq7hWpZa+U8lgKm1OgGHvbQouqCJuizwpHxN9DkDwg2UjwT3faiIiYIUgeMA0AcCFmNpIHTEP4ltkAzF9g021gZ7PFfvSyV9H4gdL4/Le7v69ZuCd9+QZ6RA1DzwvmuXFKB7XSzJ0FtY5h6qarqB3gjWuZ2ejN6eJr3R/Fe5vHI3Tpj5i09BO89dzzKCnRA5iHOzfvoP3jbfD33xf+E9/o/yzusSjOaAUgGi5BzALX5tZRiq8vPV56rnTBlfY2tE620qRsxYLEnjCAtzBPd9oIfdZGA4sTKLU6Q6KjAW7/ESb04VtmAzEtxXZ44ZcOAKxM/To90LDVE2btSxvaPBjNO0UAALZdOILnWj+CbxNK8/ooifikL99Al2c7AtpS+hjAt+l2qyVC7y+1lCct/ATevu9gy9LS+Pn00xm4ffMOUo6cQw72Y/zqOxAEoJ53NwDAU03a44UJjwMoHUD6tQ0UwyfN2ZwcULfqpeGZ1kTaHosGotBLx4bEnjCi9B+Xn5CNFnOo8/HcTOAZyQOmcS6DUqtfugqUh6VPWNUmGcBbmvs3ZsVraN45wqCdbxPCkZ69G+M6TwNw26jOW1+MQrfnO8HF1QX4b/CyZCPy6xnZeK7Vw2jxyIeYHvMWdu1YjW2frxHPj//sdTRtHyZ+DvLqJvaxuKgY61Nuw92j2n8pJ1oByBT3C1CDpVFgvnmWMlkp+Zm1FzjxYaC8sPP9IRwbmqAlRKJ00eLSe6UJP/5z8oBpoiuH1e/Xtq9YVzoY8BQWFKGosEhMn/DpoQWoF14XMZfXKNZxdXPFxDUjcWp/Cp6tOwwXTqaL0S6vRz2GkmI98nKMhd6tejV41qmFvm4DxWMsg+T2ws34cM/78PCsDrfq1Yzq8njUqg69XkDO1VzcvHYL+XcKEPViF/yYcgA7MhPx2OtR+GTMFzi9PwXL986BN9qJdfVZ4dBdbwYvfVs84fmiUU58LZOzsenLZLcvZHXNWSmr1L6WutLtEXdkJpJVXwEgy54wsNalk7O9A1vhQkxLsRybUDSIn5csZGKTlGwgkLPqf1j+K6q5V8PPeV9BnxUO54BkrDu9HBlnLsG1mguKCouN6jw15lE8Et0BfV7tLvZvULNuuHPrLmb9NBnpp+Xj4UctexUdHn9QrCMXRvpjzgZsWx2Hzyd/hVo+NQzqX8vIhk+AN1YnLsbIB94GAFxMysTClz/B9P9NRK//wg3HrixN/NascX9MeuoFvP7hdnz46qdYuf0ng/akic5KRXSsYqSL1KqWs7Dv7WJlnKueMeLwEMSmb5T9jhhycwCm1hlQbH3FgKJxKBpHhIk7Hy/Ni7rUymcCcyGmJU532mgU+cEse9765/lm3vfwrFMT3QZ2Rn+vFxGnj8HbPWdi8oY38VLjNxByf7BRnZ6DHkGvl7si58pN5J3vi2kvtUXOlZuq9yUXWild7QoAe/dtxLWMbDzxzFiDe5kzcAmmLllpUCfp4BnErtmNF959Gv71/cR2dAHJ+GjYKgx85yksH/U53v1mPJ6q/TIaRzbAysMLDb5nOdeHVPDZUxafL55/KuDdKVKhl0tdLC2nJU2CUhnpcYrKsQ20qKoMkNjLI10By4u/XAifnNjz8G6ckOhjRkJw4dRF/PzpDjRqHQq/YF+07NIMJ/cmoV6TQIzr9B6m/W8CmrRtbFBn67JtCG/TEPt+OoSfV+3E3TzlVAwBoX4IDKsLABgyPRrNGj1hcF4aXiqX7kDuJ+On75ZB0At4asyjAOTFbv+vR/Dtgh9wNy8fK7b9YPRUIRV8XqCV8s9IBVtugGBI25KmYFBCTvBZW/z1SeBtj8MvqpozZw46duwIDw8PeHt7K5Zbv349WrZsCXd3d/j7+2P06NGq7ebn52P06NGoU6cOatasiQEDBuDy5ctW7n3VQC2VQZQuWpy8VHpMZyKTPGCagRCGb5ktCj1z78gJwvdLt6HFI82QfSkHc55fgtg1u/F2j5k4vDMRTduH4cCvR43qPD22H5p3borDz+1EQAN/o/Pefp7o+lxHdH2uI16Z8wIW7JiGBTumoXmnCKP7YAvFpDtAyeW56R3YSvxOege2Qtr13dAX60WhV2LBkOWYseUtPNhLfeNyBstcySc+48syNw7rOxNvpZw40vdyv4e+wWONyvNzAEzg5Sx59pP/W6Lsl46JzcS+sLAQ0dHRGDlypGKZjz76CO+++y6mTJmCEydOYNeuXejdu7dqu+PHj8fPP/+MmJgY/P7778jMzMTTTz9t7e5XGdg/Ku+/lqYwZhj56v9Dbps95rqJ08eI76XlWna9H0GNAzDovQHwD/HFJ2+uBQB88e43ePeb8Rgyo/RabGcrxsHtR9H3n0HIvX7L6Lo1vGugeeemaN65KRZNuncP7Nq9A1sZiDu7J6lg8ffMrwxlcxuh9wfj6XH9DMrK5QTqO7QHvHw9MXTeIMWyLEc+L/z8eSay/FNAv7Z9ZVesKrlglLYVZE8GzHIX+y2ZjJVeR/pdyfWXcDAEG7Nu3TrBy8vL6Hh2drZQvXp1YdeuXZrbysnJEVxdXYWYmBjx2KlTpwQAwr59+zS3c/PmTQGAcPPmTc11Khs9nZ4xevHHpWVKLoXJtqN03FyGt54oXuvZwGHi9V8/NNio7PsDFsn2v6fTM8Kg0JHCuve+Ed59bK6wetJGsR1pf/lj/D0r3Z+pMuylhPR60jZ7Oj0j9Kk3RizTp94Y8bP0p7QffD3+Gkr15cpLry29N+n9sv4p9YmwHtbSK7tF48TFxUGv1yMjIwNNmzbFrVu30LFjRyxevBjBwcYTcwBw+PBhFBUVoWfPexkXIyIiUL9+fezbtw/t27eXrVdQUICCggLxc25urnVvpoKhZpUplZFa9cyPX5ZIDDlfubRfzKovjcffCH1WOPq88g3OHbuAzDNZBuVHfvQyCvML4X2fN/zr+yLjv/NyVql08llL35R80+Z+B3w70gVnLM3BtoP3UiYwS7k0K+a9CVkWay9nSUs3AJfG4zOLnn9aYN+L4YKse/Mahjtmyd8TLa5yXOwWZ3/u3Dno9XrMnTsXS5cuxXfffYfs7GxERUWhsLBQtk5WVhaqVatmNAdw3333ISsrS7YOAMybNw9eXl7iS2kwqaqouTEYzLXD/qmZD1uuDjsm596RogtIxub53+Nq2jXZ86vabBSFHgAi/h6Cdv3aQBh7HX7BdcRydQJ9MCX4CK5fuoG6Df3Rsuv96PpcR6M+MdeH0sQifz9ahN4U/PaB/Ge5NplfnLmagHsuEX5FMkM6icsLuRbR5QcLPoaftc3a1/J75OsRjolZlv2UKVOwYMEC1TKnTp1CRESEahkA0Ov1KCoqwvLly9GrVy8AwDfffIOAgADEx8eb9N2bw9SpUzFhwgTxc25ubpUVfFP55ZUojdLBfytPYRBVIidEpe9bodHBe0ItXajF2jgcl4hbN0oXQ02PmYgaXh4GAn+2bb6YmoH5/7tkPIafcrYb9bPb853QrEMTg2OlA5VhFIwa0vtREnr+CUGr1c++R76+9D3fD36DcWbNSxOQSWPsLc2cKVdXuk8vUXExy7KfOHEiTp06pfpq2LChprbq1i0NiWvWrJl4zM/PD76+vkhLS5OtExAQgMLCQuTk5Bgcv3z5MgICAhSv5ebmBk9PT4MXYR5KURwsJl9ORF2CAsUVsgDQ6KC7gbjJ8c387/FAz9JFXMyFI732iMND0HPww5i3/V1c+qARLr12P3Kv3cKrP3oZCT1gKLgs5l7OlcL6JM3iyVu2cpY57xJSmsCWs/Dl9gTg22GrmVkUDnO5MIFnddjELj/BymNu6mQetdTIRMXCLLH38/NDRESE6qtaNfUl54xOnToBAJKSksRj2dnZuHbtGkJCQmTrtGnTBq6urti9e7d4LCkpCWlpaejQQX7PVMI68C4b3sUgdXVIo0yAe6LNLHWeT8etw+n9Z8TP4+fFirnuPw3aL9uXVW02IqRZML6Z/z1+f/wnFAbXRA3vGpi08BPF/vPROHJCz8MGBPZTmnpYTlCVkr2xOnJ+fbV2lM5vOxgrWuNRumiDQUDqijEXubBN9jumVbIVH5v57NPS0pCQkIC0tDSUlJQgISEBCQkJyMsr3d4uPDwc/fv3x9ixY7F3714cP34cL730EiIiItCtW2nyqIyMDERERODAgQMAAC8vLwwdOhQTJkxAfHw8Dh8+jFdeeQUdOnRQnJwlrAfbzFq6cQkf583KARDTLMiJPOPl2c/jq9RP8d2Vtfjfv8fRqHm+wUSgGpO/fBNTXuiDFstPwtnl3p8y3z8W78/aUhJDXqyVrq9khZsDP2hIB0fWpvQYL+al6YoNY+Bj05eJZeSse2kcvRJs8DAXaR1zfPxE+WEzsZ8+fToiIyMxY8YM5OXlITIyEpGRkTh06JBYZsOGDWjXrh369euHLl26wNXVFdu3b4erqysAoKioCElJSbhz545YZ8mSJXjssccwYMAAPPLIIwgICMDWreW38UVFRkmcmOjIiY8U3p/NuxzYQiD+GtKNv+XcGR61quMZ/6Hw8vXE1PwHDQSWPRHwbbJj059cgGf8hyL1RDo+S/wQmy6sxKlzP+PtHu8bWN/JA6ZpFmW5SVS58wxTO1zJXVdtYluuTTZpy4s73x9pagRpP+Vy3Mi5dMoysSqtS08BjgmlS6hC/ntTlinzITc66C4eYz53aQoFRqOD7jjbNt9kZIvSed5vzV+Xn9SVTmKyydt3H5uLQzsSoS/RI3VuR4S9fwAPP9MeU7+ybAWnUipmaXI4Pk+/ltQB/Pcu/U6UJmZN7eWq9Ltj7xly+8uykEt+opdPzsaidAjHwOHTJRCOB2+5S0WHF/pVbTZiVZuNsiLeO7CVwUTrqjYbRRdC+JbZqhOV7LjSxCvjbNt80fqV6y8Lx5zzyzuoHeANAOi19TI6D2hnsdADyhYpb41L3UFKIguUirb0nJJPXro5jLSMnLjLtcXHu+uzwo388Lxff0dmoljPVGZLouJDln0VsuwBeeuTP6Zk3apZkvwxfn9acyYLo3TRqvvZKrU3f8hy3M69g5mffYEm60ciZcp4zdfU0ielwVHJopfrq/Q7l/ve5FJLy90vK2fKt65kmfOWvnS/W2bp08Iox4KyXpaBqir2pgRbKl5KwsVWz/JtsicCvj5fx5R7Q62P0nb4GHwARpEyciJsatNtJZRcMEqZQE21I4e0j1rcSaxNud+TVND5wUGa9ljrmgLCftCG44RF8EIoFUbpRCgv6tL6/GdepOQsUjUBMRVqKCdC0ugepScRvo6aIGtZTSuHpQOI3HXYxKxam3K/C+lCNj4qim9LKWMlW2ymhpzfnyz/igf57KsQUitQGm/O+5XPts1XFFE+CyXvx2bhhCzcUS3qhPdFK1mV0jkGZtWrwe/TKoU9AWhxSfHXNzd2no86MhWGyNrWBSSL6ZNZO2qDH3uvNpCy/vGhl0p71Uq/a77fUmEnoa+YkBunCrtxgHtiM+LwEHwatF/WTcB/5t01DCbArL7UzSLtA+/zVosQ0uJSMLe83H0pHVeKuNFyLTkLXWmQ0RLBo+a/Z0i3KQTu5aLn+yyNyJHC/PbFGZnYkZnIpWww3hWLsD0UjUNYBSYEagufeCuTL8eOs+gdZpXyKRKk8JEgpXl2EmWFQyk8VM21EqWLNlhdaqoPciilQzDVL3aMHVfL5KkFpeuwp4a+wWMNngIA+RWwSv1TCq90CQoUM2/ybjy+rNx2ioTjQ2JPiPATddINTKSP+cy6k1rnWq0+5gaR80NLhY7/acr/X5YQwji98QphLfD3zwYx/rjc04B0IJG7Jvsu+IVW/HfGf/dyq2Slm56wn9JNUnjxLs7IRMgP2ejXtq+BRc9W5kbpojV9x7SK1vEgN04Vd+MAxqF/WuuqWbkMObeP2jXU2uRz1UgpS7SNXCgqQ6srSamcUvSSqfbVQmB5Nwsv4EruID6klS/D7ynLp2Tg3XD8k4DcoivpZK2pPQoI8yE3DmE2aoIk3XOVR25SVEmUpROazKWjtU21gYMJlpzVqJSgjMfUebU6apPNakgjmnhrXUmcpb8PHlaHLY5iWTHZACDNac+eVvj2mZXOizd7r88Kx6dB+w2e3vgnA6kLR2rlSzdxJxwHEvsqhBaxkgpNlC7aKGWCWnvSY3LWOMtqKY1Y4V1HckLIuzOY71rNxcO7pFibLFKIX+1rzj0xEZRGESl9t9L71meFY8ThIapibmrQk/aLPZlJNydnZaQRN9sOxooiHqWLFgeObQdjRTeRS1CgYj+U8vPwVj1Z9o4HiX0VQotLQinqhP9pzjG5f3q1OHKpBS1tVynuX0sIInBv85PkAdNwIaalJleUEnLRRAz+PqQiqMWtpSS0Si4mdo8sIZ3UTy9Xll9YJR14pe0w1Pz1JPCODYk9YZCAjCE3mSiH1ugSqdtGybpVu6409bCpyVTp/qrSgSR5wDTR0tdqTTMXDP+UoeSSUhqgtKIWpcQjnQgGSkW5OCMT2w7GymYk5dtjMf5K2zAyV5E0Xz777uV89oTjQWJfxZATC+amUVqwxIRCbscm6XE5mNuGhyUzA4BRGe1M9pHvC2As/HJIY8yZQPORJdI0zKZgE6d8aoZVbTYaWfHmtmkKpYFI6vqSfne9A1thR2ai6JZRu1aULhr92vY1Cs9kFj7/vQH3curwWBLNRJQPlC6hCmEqRn1HZqJBJAZ7L7fQiBfZURntsCpAWaTZecAwyoRdx5Rbg2/XVA556f0ArcRrMuED7kWn8AOA2qQz67vceYalEUHm1JHmz9FStzSFxTKDayntvMW7adh7tYih2HTD1M/m3g9RfpBlTxjAC6+cCEv/8Zllqwa/yMqUEPBPEXILipTqS61JaT/1WeG4ENNSrC+NhmEWrNJELy+ufF014Zf+lPbRHAuYuZlMCapSf6RPZ6YGCt6al+5MxrchfU9WveNCYk+IlDV7o1IZc5bW8xO7zO3Ai62SmMidY20wYTvdaaNsfXZMLgJlR2ai0ZyGljBPuVBW6ferFO6qJJpy/nK+PL/Qje8/+8yHgcrtGiaF+eL5fsolx6MonIoBuXEIA7SsUjWFOeJuqg+lgq2tntoipFJxNs6Vz1aJFmeUWrLhW2YjhCsj+qQPGveNt+6V7lmL+EmfWNQWjcm5b+6tqL1XXu4JjFHq4rpXTy6iSC4lcunPe8nVpIMBn06ZhXESjgOtoK1CK2gZaitpHQlTK1PN6a9c/L/cAqCIv4eI4ZkMuX1epStWTeWiVytjqa/fknpsHkYq8EruK7XvWMs9E2WHNi8pA1VR7HkLl/9ZmWACJudqUENuUxCGNGGY0vdm+ARRiqnv15YiaUqIlcIw5VBaSyBXjp/MpgHAOpDYl4GqJvaVUdjV0CpOfHk2QPDb8/EC7hIUqOiakBNO6YAjnQeQTm5aG1MDnzlirFRWaRMTc79/Qh3KjUNopqr908nFmyvBhKl3YCuEb5mN2PRlRuGdcfrSbJrS3PHsp/RacuGhfBkW9mnLCU12PX5PXwbbUUxr9AwbmPjFW2xQVBrozP2bMzXhLd18hZWXy/apBbk1I5UdEnuiyiC3S9OFmJbi5+QB00QhlJbjJ2v5dqSWLbOkpdFBTJxYZI8tBEYu/FROdKVRSkq7avECzOqwY+y+pWsQWFmlgURp1yyDyXAZWMw/mzcxVV4J6dOUmguPfZauPuYHGr6MtA5fVq6d8obcOFXAjUMYwtwP4Vtmi5OxvKtL6vaSyxEj9eMz1NwmUrRa9XJuOGv4xLW493gXl/Q4Q+qn15Ium/8+lbY5VPudMMzdD5cN5lpWacvNbamJtZY5GlPXloN89mWAxJ7gYYLG/hGZGPHpFgDIChT/JCAVRTnRK4vo2xtLhc7cetIBhhdcwzBQ222CLp1wV1tEpxbFJB0sLBmkSezLAIl95cWcaBigVCTOLvXF6U4bRbFn/mg5ePcBm7C9l5pB22KqslrlZZlwL2tdU0itfHPqaLmekrCGb5ltlOfIUpHVErEmFXS1+yjr75smaAniPyz1hUbpSjfwON1po4FPWs1CZAuG5ISewfzVWidgzfXfl2XCvax1WUI5NRHkn3bUJsv55GzSvENKQi/np4/SySe04xP7sWR7cj55pfda13iYCghwlFQSJPZEpUDJHaAE/w/LR6awDT1M/fPyOXZ4TIm8nJWnxdUjvSdrTvQpZTtVQ6mPcfoY8QmJRfAo9ZU9PUmziLJ2pO0Cyv59OfjMqix/k1y7UsucibfcpKvSvcgd5ye+5RbwlTck9kSFR8nK0pL2QS5MkiUAk07KAsabd/QObCXmgmfvGczKZT8Bdf+8OXH3ZVk9LEXrHsEMrU8sWnMtyUWvyMFb9aYiceL0MQarheXaHXF4iGL0DWtD6hbk/77UnhIA+f0X7AmJPVEp0SKGconAth2MVbUemeWv1R3Ai7+1YruVxEt6jL8/U64uredMpXlm1zNVRgvS3yGbmNUSchmli9a8IxhfR9qG9Kd0MFDqqxL2FHyaoKUJ2ioLH/XBHrU/S+qC15v8jl4PzcLOA9NlyyiJmDl5Zkzl0JFbDGUJ7MlFrT1TYZ1yTxxq34E1XExKIsxvji53LTlrXMukvdykrFwIplx0jrSvSplBLRV6mqAlCA5LLWVeBD9L6iK+b7gyBb0emgWgNDmaVgFT8vfLCZNaumZrYc6gwfonN6BpbcdacwlyAq3mnpPzxcttt6nUR77+iMNDMOLwEAPfvZo/X4rcmoTega2sOs9iCST2RIWGFyhAu+izf2D2j6sLSMYwr0vi+ciaadh5YDri9DFIHjBNXHEavmU2XIICDfz5fAw4a1vNJSDts61Ru46cK0Jq3TKhNzesVY5GB90VRVgNfoJW6l4xNTmvNikrd51VbTYabLgjtdy1TCQ7IpTPnqjQSP+5TAko+0eVE2ue75r64/X/8sMztwpLrSBNb8zakObJKYslZy2/t5Y25FwM/GAod7ws/eKFVAktk+usP3KuF/E6evn5FH4Clx035YM3FaUlV740TNUxFs2RZU9UGkyFLEbp7i3Tl0bVMOv+u6b+ACCGDgKlA4hLUCAajbuGkOhj4iStqWupYcotUl6P/Oy+edRCD9l7Sy3Ysgq9XFmpi0XJzSO1xvkJXC3XVBoAlCbLWRiqvd03DBJ7osKh9M/DfM1q0RO8yJuKmWYpj/kVtWywkPvHZ1kg2Tm1soDy9oOsjhaR0BJmagqlSCL2WcltYWoxkVakYm0NlEJw1dq3RJTlnny0PCXYAxJ7osJhKqJCWlYqIvqscDFKxZTQ8dkd+cyL0kyRckIh5+7hUYtXN2U9W1tM5Kx46fcmFU9rWqyOIoiA+YvMpFE67KnQGi4va0KhlxR6WWHRGs7G/tnkEpmp/UOq+d+lURqmMhoqtW9K1OWuq7Ws3PW0lJOWlYYeKoUgWoIjiTwP78/XCv93JrdWw9JkbRR6SVR51NLu8vCCEpu+DNsOxhqd48tIrX6tQsb7+Rl8GgZLhE3JtSH1FWvpo1L0ipr7REvUiTk+fEd0b8hhjtBL8/LzhgR7WTsrpyWQZU+WfaVASXDkLFHpwhephd6vbV/RZcNns9Ri/TPBlxuIlK5pzj3KXVfpnNb+yrWh1o7U6lfrJ1+nLBO7VRmy7AmCQ80y5S0vqehKc+D0Dmwlm95YnxWuKGzStAtycelyx6UTyKbWCPDzD3ICbG7YpznWuNpEsDlPPoT9sJnYz5kzBx07doSHhwe8vb0Vy61fvx4tW7aEu7s7/P39MXr0aNV2u3btCicnJ4PXiBEjrNx7ojKx7WCsuBDKJSjQyErnH6+lgsQnsZIT4zh9jOY0AmqTdXIhkHJl2E9TbhdzMBWVJL221IVk7iBD2AebiX1hYSGio6MxcuRIxTIfffQR3n33XUyZMgUnTpzArl270Lt3b5NtDxs2DJcuXRJfCxcutGbXiUqGLiBZFHTpdoJKm5QAxj54JsZKUSlye8Dy12LH1CZx1cRSzrqWq2NKcE1NNitd29Tks/Qe5SKhCPthc5/9+vXrMW7cOOTk5Bgcv3HjBoKCgvDzzz+jR48emtvr2rUrWrdujaVLl1rcJ/LZVy0s3fsTgME+tXKf+fb5hGmA9nwy0kGjLP5tc1wqWuY55MrJTfSSP952VHiffVxcHPR6PTIyMtC0aVPUq1cPzz77LNLT003W3bRpE3x9fdG8eXNMnToVd+7cUS1fUFCA3NxcgxdRdWC7UFmCVOhPd5KP0uDbZ/HzalatNI++OSGWSnVYPS3WtNQtI21P6qaRflaLziEcE7vlxjl37hz0ej3mzp2LZcuWwcvLC++99x6ioqJw7NgxVKtWTbbeCy+8gJCQEAQGBuLYsWOYPHkykpKSsHXrVsVrzZs3DzNnzrTVrRBVhOQB09A3+Bpi/7NHTMX5K1nZbHNzwNA1Y651bKqsXKy8lnbIB185MUvsp0yZggULFqiWOXXqFCIiIky2pdfrUVRUhOXLl6NXr14AgG+++QYBAQGIj49X9N0PHz5cfN+iRQvUrVsXPXr0wNmzZ9GoUSPZOlOnTsWECRPEz7m5uQgODjbZR4KQwvv4eZdNqaCanqgFILp8+LwpvLWsFA9vKZbEwKuFeRIVE7PEfuLEiXj55ZdVyzRs2FBTW3Xr1gUANGvWTDzm5+cHX19fpKWlae5Tu3alGwmfOXNGUezd3Nzg5uamuU2CUIJ3v/CbmZi7ktSUPz9OHyM7P2Apav1S8s2TyFcuzBJ7Pz8/+Pn5WeXCnTp1AgAkJSWhXr16AIDs7Gxcu3YNISEhmttJSEgAcG/wIAhbUSq+96z33oGt4BJUGsPPJ0uzBDkLnxf6slj7lrhiSOgrHzaboE1LS0NCQgLS0tJQUlKChIQEJCQkIC8vDwAQHh6O/v37Y+zYsdi7dy+OHz+Ol156CREREejWrRsAICMjAxEREThw4AAA4OzZs5g9ezYOHz6M1NRU/PTTT3jxxRfxyCOPoGXLlra6FYJQpDgjUzEXihbkVsIqxbLH6WPEXZSsDUXTVH5sNkE7ffp0fPnll+LnyMhIAEB8fDy6du0KANiwYQPGjx+Pfv36QafToUuXLti+fTtcXV0BAEVFRUhKShKjbapVq4Zdu3Zh6dKluH37NoKDgzFgwAC89957troNghBRcqmw1MbmIBfhEqWLNthjVY5VbTaWrgg2HbRm8vpE1YJy41CcPWEh4VtmIyT6mEV1mZW+JzUcyQOmiVkW1SZGtZSRYio/DuH4WEuvaFtCgrCQRuOuodjcOgfdxd2aVrXZCLS550Jhm1xL494bHXQ3O90uDyUhIwBKhEYQFmHphKycaD9z6opB/nRelHmhX9VmozggMNTSMPMCT0JPkNgThBlE6aIRvmW2xROy/OQqe/96k99xtm2+kXtGzqKXlmN9Yj/NzcFPVB3IjUMQZsBcIlHQLqb8pOuqNhsB/b1zchY9s8jPts03KCvXF6UdlciSJ6TQBC1N0BIWUNbYdT5uXm7ilS+vlO6ABL1qUOEToRFEVaNv8FjFSBreFy9NNCb1u1PaYMISyI1DEOUEc+Xwgl+6i1ZtxKYvw4jDQ9DooLtifenkLEGYA7lxyI1DWIjSJiBa4bdDBEo3VuH3wGXCX5awS6LiQ3H2BOFAlNXi3nYwFsAy9Gvb1yrtEYQUEnuCsBBTljyft14Ow/BN420TCcKa0AQtQdgILdsSmtp3liCsBVn2BFFGlFwuWnZ8IncNUV6Q2BNEGTC1ETd/XK4OQZQXJPYEYWPY7lZq+9UShK0hsScIG0MiTzgCNEFLEGXE2huEE4QtILEnCCtCgk84KiT2BFFGSOCJigCJPUEQRBWAxJ4gCKIKQGJPEARRBSCxJwiCqAKQ2BMEQVQBSOwJgiCqACT2BEEQVQASe4IgiCoAiT1BEEQVgMSeIAiiCkBiTxAEUQUgsScIgqgCkNgTBEFUAUjsCYIgqgAk9gRBEFWAKrktoSAIAIDc3Fw794QgCEIdplNMtyylSor9rVu3AADBwcF27glBEIQ2bt26BS8vL4vrOwllHS4qIHq9HpmZmahVqxacnJxsfr3c3FwEBwcjPT0dnp6eNr+eraH7cVwq070AdD9AqUV/69YtBAYGQqez3PNeJS17nU6HevXqlft1PT09K8UfLIPux3GpTPcC0P2UxaJn0AQtQRBEFYDEniAIogpAYl8OuLm5YcaMGXBzc7N3V6wC3Y/jUpnuBaD7sSZVcoKWIAiiqkGWPUEQRBWAxJ4gCKIKQGJPEARRBSCxJwiCqAKQ2FuRbdu2oV27dqhevTp8fHzw5JNPiucSExMxcOBABAcHo3r16mjatCmWLVtmss3s7GwMGjQInp6e8Pb2xtChQ5GXl2fDuyhF7V4AYMyYMWjTpg3c3NzQunVrTW127doVTk5OBq8RI0ZYv/My2OJ+8vPzMXr0aNSpUwc1a9bEgAEDcPnyZet3XgZT95OWloZ+/frBw8MD/v7+ePvtt1FcXKzaZmhoqNHvZ/78+Ta8i1JscS/2+r/R8h3+73//Q+vWreHh4YGQkBAsWrTIKu2aRCCswnfffSf4+PgIK1euFJKSkoQTJ04I3377rXh+7dq1wpgxY4TffvtNOHv2rLBx40ahevXqwscff6zabp8+fYRWrVoJ//zzj/Dnn38KjRs3FgYOHGjXexEEQXjzzTeFTz75RBgyZIjQqlUrTe126dJFGDZsmHDp0iXxdfPmTRvcgSG2up8RI0YIwcHBwu7du4VDhw4J7du3Fzp27GiDOzDE1P0UFxcLzZs3F3r27CkcPXpU+PXXXwVfX19h6tSpqu2GhIQIs2bNMvj95OXlVch7scf/jSCY/g5//fVXwcXFRVi5cqVw9uxZ4ZdffhHq1q1rUges8bshsbcCRUVFQlBQkLBmzRqz6o0aNUro1q2b4vmTJ08KAISDBw+Kx2JjYwUnJychIyPD4v6qYe69zJgxwyyxHzt2rOWdswBb3U9OTo7g6uoqxMTEiMdOnTolABD27dtnaXdNouV+fv31V0Gn0wlZWVnisZUrVwqenp5CQUGBYr2QkBBhyZIl1uyuKra6F3v83zBMfYcDBw4UnnnmGYNjy5cvF+rVqyfo9XqL29UCuXGswJEjR5CRkQGdTofIyEjUrVsXffv2xfHjx1Xr3bx5E7Vr11Y8v2/fPnh7e+PBBx8Uj/Xs2RM6nQ779++3Wv95LL0XrWzatAm+vr5o3rw5pk6dijt37lilXSVsdT+HDx9GUVERevbsKR6LiIhA/fr1sW/fvrJ2WxEt97Nv3z60aNEC9913n3isd+/eyM3NxYkTJ1Tbnz9/PurUqYPIyEgsWrTIpLvEEe/FHv83PGrfYUFBAdzd3Q3KV69eHRcvXsSFCxcsblcLJPZW4Ny5cwCA999/H++99x5++eUX+Pj4oGvXrsjOzpats3fvXnz77bcYPny4YrtZWVnw9/c3OObi4oLatWsjKyvLejfAYcm9aOWFF17AV199hfj4eEydOhUbN27E4MGDrdFtRWx1P1lZWahWrRq8vb0Njt933302+90A2u4nKyvLQBxZv9g5JcaMGYPNmzcjPj4er7/+OubOnYtJkybZ6E5sdy/2+L9hmPoOe/fuja1bt2L37t3Q6/VITk7G4sWLAQCXLl2yuF1NlOm5oJIzefJkAYDq69SpU8KmTZsEAMJnn30m1s3Pzxd8fX2FVatWGbX777//Cr6+vsLs2bNVrz9nzhwhPDzc6Lifn5/w6aefOsS9mOPGkbJ7924BgHDmzBmz69r7fjZt2iRUq1bN6Hjbtm2FSZMm2fV+hg0bJvTq1cug/du3bwsAhF9//VVzn9auXSu4uLgI+fn5FeperPl/Y879yCH9DvV6vTBp0iTB3d1dcHZ2Fnx8fIT3339fACD8888/mvtkye+mSqY41srEiRPx8ssvq5Zp2LChOCI3a9ZMPO7m5oaGDRsiLS3NoPzJkyfRo0cPDB8+HO+9955q2wEBAbhy5YrBseLiYmRnZyMgIMCMO7HNvZSVdu3aAQDOnDmDRo0amVXX3vcTEBCAwsJC5OTkGFj3ly9fNvt3A1j3fgICAnDgwAGDuixKyJy+tWvXDsXFxUhNTUWTJk0017P3vVjz/wbQfj9ySL9DJycnLFiwAHPnzkVWVhb8/Pywe/du1Ta0tKsFEnsV/Pz84OfnZ7IcC9lLSkpC586dAQBFRUVITU1FSEiIWO7EiRPo3r07XnrpJcyZM8dkux06dEBOTg4OHz6MNm3aAAD27NkDvV4vCqW97sUaJCQkAADq1q1rdl1730+bNm3g6uqK3bt3Y8CAAQCApKQkpKWloUOHDma3Z8376dChA+bMmYMrV66I7oy4uDh4enoaCKspEhISoNPpjFwijn4v1vy/Med+5FD6Dp2dnREUFAQA+Oabb9ChQwezrmHR70bzMwChytixY4WgoCBhx44dwunTp4WhQ4cK/v7+QnZ2tiAIpa4bPz8/YfDgwQbhU1euXBHb2L9/v9CkSRPh4sWL4rE+ffoIkZGRwv79+4W//vpLCAsLs3kImal7EQRBSElJEY4ePSq8/vrrQnh4uHD06FHh6NGjYoTExYsXhSZNmgj79+8XBEEQzpw5I8yaNUs4dOiQcP78eeHHH38UGjZsKDzyyCM2vRdb3Y8glIZe1q9fX9izZ49w6NAhoUOHDkKHDh3sfj8sXLFXr15CQkKCsH37dsHPz88gXFH6t7Z3715hyZIlQkJCgnD27Fnhq6++Evz8/IQXX3yxwt2LINjn/0bLd3j16lVh5cqVwqlTp4SjR48KY8aMEdzd3Q3+rmz1uyGxtxKFhYXCxIkTBX9/f6FWrVpCz549hePHj4vnZ8yYIevrCwkJEcvEx8cLAITz58+Lx65fvy4MHDhQqFmzpuDp6Sm88sorwq1bt+x6L4JQGkYpdz+s7+fPnxcACPHx8YIgCEJaWprwyCOPCLVr1xbc3NyExo0bC2+//Xa5xNnb4n4EQRDu3r0rjBo1SvDx8RE8PDyEp556Srh06ZJD3E9qaqrQt29foXr16oKvr68wceJEoaioSDwv/Vs7fPiw0K5dO8HLy0twd3cXmjZtKsydO9dsf70j3Isg2Of/Rst3ePXqVaF9+/ZCjRo1BA8PD6FHjx5Gvnpb/W4oxTFBEEQVgEIvCYIgqgAk9gRBEFUAEnuCIIgqAIk9QRBEFYDEniAIogpAYk8QBFEFILEnCIKoApDYEwRBVAFI7AmCIKoAJPYEQRBVABJ7giCIKgCJPUEQRBXg/1WpmYgFaJd7AAAAAElFTkSuQmCC",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "\n",
+ "vectorize = natural_lands.updateMask(VEGDISTSTATUS.gt(5))#.clipToCollection(features)\n",
+ "\n",
+ "# Vectorize the masked classification\n",
+ "vectors = vectorize.reduceToVectors(\n",
+ "# vectors = VEGDISTSTATUS.gt(5).selfMask().reduceToVectors(\n",
+ " geometryType='polygon', # Create polygons\n",
+ " # reducer=ee.Reducer.countEvery(), # Count all pixels in each polygon\n",
+ " # reducer=ee.Reducer.sum().group(groupField=1, groupName=\"classification\"),\n",
+ " scale=1000, # Scale in meters (adjust based on dataset resolution)\n",
+ " # maxPixels=1e8, # Adjust for larger areas\n",
+ " geometry=features,\n",
+ " eightConnected=True,\n",
+ ")\n",
+ "\n",
+ "# Print vectorized result metadata\n",
+ "print(\"Vectorized Features Metadata:\")\n",
+ "print(vectors.getInfo())\n",
+ "\n",
+ "gdf = gpd.GeoDataFrame.from_features(vectors.getInfo()['features'])\n",
+ "gdf.plot(column=\"label\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 13,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " geometry | \n",
+ " count | \n",
+ " label | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 | \n",
+ " POLYGON ((-62.13985 -13.7805, -62.13087 -13.78... | \n",
+ " 1 | \n",
+ " 2 | \n",
+ "
\n",
+ " \n",
+ " 1 | \n",
+ " POLYGON ((-62.13985 -14.13983, -62.13087 -14.1... | \n",
+ " 1 | \n",
+ " 2 | \n",
+ "
\n",
+ " \n",
+ " 2 | \n",
+ " POLYGON ((-62.13087 -13.76253, -62.12188 -13.7... | \n",
+ " 1 | \n",
+ " 2 | \n",
+ "
\n",
+ " \n",
+ " 3 | \n",
+ " POLYGON ((-62.13985 -13.92423, -62.12188 -13.9... | \n",
+ " 16 | \n",
+ " 2 | \n",
+ "
\n",
+ " \n",
+ " 4 | \n",
+ " POLYGON ((-62.13087 -14.04101, -62.12188 -14.0... | \n",
+ " 1 | \n",
+ " 2 | \n",
+ "
\n",
+ " \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ "
\n",
+ " \n",
+ " 2182 | \n",
+ " POLYGON ((-59.52575 -16.43951, -59.51677 -16.4... | \n",
+ " 2 | \n",
+ " 3 | \n",
+ "
\n",
+ " \n",
+ " 2183 | \n",
+ " POLYGON ((-59.53474 -16.38561, -59.50779 -16.3... | \n",
+ " 6 | \n",
+ " 2 | \n",
+ "
\n",
+ " \n",
+ " 2184 | \n",
+ " POLYGON ((-59.50779 -16.29578, -59.4988 -16.29... | \n",
+ " 4 | \n",
+ " 2 | \n",
+ "
\n",
+ " \n",
+ " 2185 | \n",
+ " POLYGON ((-59.50779 -16.30477, -59.4988 -16.30... | \n",
+ " 2 | \n",
+ " 15 | \n",
+ "
\n",
+ " \n",
+ " 2186 | \n",
+ " POLYGON ((-59.50779 -16.3407, -59.4988 -16.340... | \n",
+ " 7 | \n",
+ " 15 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
2187 rows à 3 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " geometry count label\n",
+ "0 POLYGON ((-62.13985 -13.7805, -62.13087 -13.78... 1 2\n",
+ "1 POLYGON ((-62.13985 -14.13983, -62.13087 -14.1... 1 2\n",
+ "2 POLYGON ((-62.13087 -13.76253, -62.12188 -13.7... 1 2\n",
+ "3 POLYGON ((-62.13985 -13.92423, -62.12188 -13.9... 16 2\n",
+ "4 POLYGON ((-62.13087 -14.04101, -62.12188 -14.0... 1 2\n",
+ "... ... ... ...\n",
+ "2182 POLYGON ((-59.52575 -16.43951, -59.51677 -16.4... 2 3\n",
+ "2183 POLYGON ((-59.53474 -16.38561, -59.50779 -16.3... 6 2\n",
+ "2184 POLYGON ((-59.50779 -16.29578, -59.4988 -16.29... 4 2\n",
+ "2185 POLYGON ((-59.50779 -16.30477, -59.4988 -16.30... 2 15\n",
+ "2186 POLYGON ((-59.50779 -16.3407, -59.4988 -16.340... 7 15\n",
+ "\n",
+ "[2187 rows x 3 columns]"
+ ]
+ },
+ "execution_count": 13,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "gdf"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": ".venv",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.11.9"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/pyproject.toml b/pyproject.toml
index 4dd6e55..f611980 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -19,7 +19,8 @@ dependencies = [
"watchdog>=5.0.3",
"uvicorn[standard]>=0.32.0",
"streamlit-folium>=0.23.2",
- "matplotlib>=3.9.2",
+ "earthengine-api>=1.4.0",
+ "geojson-pydantic>=1.1.2",
]
[dependency-groups]
@@ -27,6 +28,9 @@ dev = [
"jupyterlab>=4.3.0",
"pre-commit>=4.0.1",
"ruff>=0.7.3",
+ "pytest>=8.3.3",
+ "matplotlib>=3.9.2",
+ "geopandas>=1.0.1",
]
[tool.ruff]
diff --git a/tests/test_dist_agent.py b/tests/test_dist_agent.py
new file mode 100644
index 0000000..f517ddf
--- /dev/null
+++ b/tests/test_dist_agent.py
@@ -0,0 +1,27 @@
+from zeno.agents.distalert.agent import graph
+from zeno.agents.maingraph.utils.state import GraphState
+
+
+def test_distalert_agent():
+ initial_state = GraphState(
+ question="Provide data about disturbance alerts in Aveiro summarized by landcover"
+ )
+ for level, data in graph.stream(
+ initial_state, stream_mode="updates", subgraphs=True
+ ):
+ print(f"Level {level}")
+ for key, val in data.items():
+ print(f"Messager is {key}")
+ for key2, val2 in val.items():
+ if key2 == "messages":
+ for msg in val.get("messages", []):
+ print(msg.content)
+ if hasattr(msg, "tool_calls"):
+ print(msg.tool_calls)
+ if hasattr(msg, "artifact"):
+ print(str(msg.artifact)[:500])
+ else:
+ print(key2, val2)
+ pass
+
+test_distalert_agent()
diff --git a/tests/test_dist_alerts.py b/tests/test_dist_alerts.py
new file mode 100644
index 0000000..8d2d0e3
--- /dev/null
+++ b/tests/test_dist_alerts.py
@@ -0,0 +1,14 @@
+
+from zeno.tools.dist.dist_alerts_tool import dist_alerts_tool
+
+
+def test_dist_alert_tool():
+
+ natural_lands = "WRI/SBTN/naturalLands/v1/2020"
+ features = ["PRT.6.2.5_1"]
+ result = dist_alerts_tool.invoke(
+ input={"features": features, "landcover": natural_lands, "threshold": 5}
+ )
+
+ assert len(result) == 1
+ assert "PRT.6.2.5_1" in result
diff --git a/tests/test_location_matcher.py b/tests/test_location_matcher.py
new file mode 100644
index 0000000..c847ed4
--- /dev/null
+++ b/tests/test_location_matcher.py
@@ -0,0 +1,36 @@
+from zeno.tools.location.location_matcher import LocationMatcher
+
+
+def test_location_matcher():
+ matcher = LocationMatcher("/Users/tam/Downloads/gadm41_PRT.gpkg")
+ # Test queries demonstrating priority order
+ test_queries = {
+ "lisboa": ["PRT.12.7.18_1", "PRT.12.7.49_1", "PRT.12.7.17_1"],
+ "Lamego": ["PRT.20.5.11_1", "PRT.9.6.4_1", "PRT.20.5.9_1"],
+ "Sao Joao": ["PRT.12.7.41_1", "PRT.12.7.45_1", "PRT.12.7.49_1"],
+ "Castelo Branco": ["PRT.6.2.5_1", "PRT.6.2.7_1", "PRT.6.2.10_1"],
+ }
+
+ for query, expected in test_queries.items():
+ matches = matcher.find_matches(query)
+ assert list(matches.GID_3) == expected
+
+
+def test_location_matcher_bbox():
+ matcher = LocationMatcher("/Users/tam/Downloads/gadm41_PRT.gpkg")
+ coords = (
+ -28.759502410999914,
+ 38.517414093000184,
+ -28.699558257999968,
+ 38.57793426600017,
+ )
+ matches = matcher.find_by_bbox(*coords)
+
+ assert "PRT.2.4.2_1" in matches
+ assert len(matches) == 5
+
+
+def test_location_matcher_id():
+ matcher = LocationMatcher("/Users/tam/Downloads/gadm41_PRT.gpkg")
+ result = matcher.get_by_id("PRT.6.2.5_1")
+ assert result["features"][0]["properties"]["GID_3"] == "PRT.6.2.5_1"
diff --git a/uv.lock b/uv.lock
index 44efa74..7f3c7ef 100644
--- a/uv.lock
+++ b/uv.lock
@@ -18,7 +18,7 @@ wheels = [
[[package]]
name = "aiohttp"
-version = "3.11.2"
+version = "3.11.8"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "aiohappyeyeballs" },
@@ -29,53 +29,53 @@ dependencies = [
{ name = "propcache" },
{ name = "yarl" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/55/68/97e4fab2add44bbd4b0107379d6900e80556c9a5d8ff548385690807b3f6/aiohttp-3.11.2.tar.gz", hash = "sha256:68d1f46f9387db3785508f5225d3acbc5825ca13d9c29f2b5cce203d5863eb79", size = 7658216 }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/5c/0b/19fd7fca18e288edf050c39504504dd58f836e43df70a05322276fe65d46/aiohttp-3.11.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:50e0aee4adc9abcd2109c618a8d1b2c93b85ac277b24a003ab147d91e068b06d", size = 706493 },
- { url = "https://files.pythonhosted.org/packages/59/82/be16718d07bb9bbdf12b06c248019e254bdf5f55d8565f0e015754cb924c/aiohttp-3.11.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9aa4e68f1e4f303971ec42976fb170204fb5092de199034b57199a1747e78a2d", size = 466353 },
- { url = "https://files.pythonhosted.org/packages/8c/19/9303464572565e3c3791ba8bfe07ab6cc071b36513b69e5a37ea2656b7a4/aiohttp-3.11.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d84930b4145991214602372edd7305fc76b700220db79ac0dd57d3afd0f0a1ca", size = 453879 },
- { url = "https://files.pythonhosted.org/packages/d8/f4/0b47884b3e8ef8916207abea6bcfe43b31380cc06dea23ad3a4335d1c61f/aiohttp-3.11.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4ec8afd362356b8798c8caa806e91deb3f0602d8ffae8e91d2d3ced2a90c35e", size = 1684883 },
- { url = "https://files.pythonhosted.org/packages/b6/ff/f9f701e1edc002dd19b1de1a75aeeee2a912988dca368b24d01cd7e57a9d/aiohttp-3.11.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fb0544a0e8294a5a5e20d3cacdaaa9a911d7c0a9150f5264aef36e7d8fdfa07e", size = 1741049 },
- { url = "https://files.pythonhosted.org/packages/1d/6a/7f2bb6b527462b61cfb95d305f918d8090fb5408b330e3fdb949f2d44c2a/aiohttp-3.11.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7b0a1618060e3f5aa73d3526ca2108a16a1b6bf86612cd0bb2ddcbef9879d06", size = 1780767 },
- { url = "https://files.pythonhosted.org/packages/42/8b/e379af81ff3ca28ed3b0ba050cd67365c2b33a575e8cdcd932baa51adf39/aiohttp-3.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d878a0186023ac391861958035174d0486f3259cabf8fd94e591985468da3ea", size = 1676641 },
- { url = "https://files.pythonhosted.org/packages/50/a8/2be8e7042edae7767cef5461ab383a73e13b45bcd07d74a3a0ccc97c6d1b/aiohttp-3.11.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e33a7eddcd07545ccf5c3ab230f60314a17dc33e285475e8405e26e21f02660", size = 1619605 },
- { url = "https://files.pythonhosted.org/packages/16/23/79966a67a7301f15cabe0d350e703f6d55fc111268912fe9ad9425af4dfd/aiohttp-3.11.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4d7fad8c456d180a6d2f44c41cfab4b80e2e81451815825097db48b8293f59d5", size = 1643102 },
- { url = "https://files.pythonhosted.org/packages/f0/81/cc0c32f49879e96d11a363be4cdd396944d8725d366352bd8dbc7e6f112e/aiohttp-3.11.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8d954ba0eae7f33884d27dc00629ca4389d249eb8d26ca07c30911257cae8c96", size = 1647233 },
- { url = "https://files.pythonhosted.org/packages/cf/b3/cbf424e5bd888adf7d28dcd905454d6a03ebca9aa3904ed1d9b4c960cae8/aiohttp-3.11.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:afa55e863224e664a782effa62245df73fdfc55aee539bed6efacf35f6d4e4b7", size = 1730812 },
- { url = "https://files.pythonhosted.org/packages/64/88/7ee1985eead8949508c4cd74465a43ac51fd46fd3bb6b1a1bd61dead4dbb/aiohttp-3.11.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:10a5f91c319d9d4afba812f72984816b5fcd20742232ff7ecc1610ffbf3fc64d", size = 1751332 },
- { url = "https://files.pythonhosted.org/packages/75/47/d4318c6dc66b91236e65c46b76813d9a63db8b546c6cb6ccd49b1fad5f53/aiohttp-3.11.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6e8e19a80ba194db5c06915a9df23c0c06e0e9ca9a4db9386a6056cca555a027", size = 1692518 },
- { url = "https://files.pythonhosted.org/packages/ef/4b/7ed90469a6f471d032d6cdee08c5a1efa48fd45b467e90f98ef497ee388a/aiohttp-3.11.2-cp311-cp311-win32.whl", hash = "sha256:9c8d1db4f65bbc9d75b7b271d68fb996f1c8c81a525263862477d93611856c2d", size = 414673 },
- { url = "https://files.pythonhosted.org/packages/7b/92/74c4c5736e82de1d2575f3347d4fde42dad31979d7238706f118854c402c/aiohttp-3.11.2-cp311-cp311-win_amd64.whl", hash = "sha256:2adb967454e10e69478ba4a8d8afbba48a7c7a8619216b7c807f8481cc66ddfb", size = 440662 },
- { url = "https://files.pythonhosted.org/packages/0e/f8/e342cfe27681b1f846f05e7374800deec8162067094ae28e7ab4d7c3bfdf/aiohttp-3.11.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:f833a80d9de9307d736b6af58c235b17ef7f90ebea7b9c49cd274dec7a66a2f1", size = 702017 },
- { url = "https://files.pythonhosted.org/packages/de/8c/e15aec18009ef73f6f1b1e4c077ce27d0c7045643106eda058f329eac364/aiohttp-3.11.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:382f853516664d2ebfc75dc01da4a10fdef5edcb335fe7b45cf471ce758ecb18", size = 461696 },
- { url = "https://files.pythonhosted.org/packages/4c/c6/2ea8c333f6c26cc48eb35e7bc369124ece9591bb8ef236cf72cb568da4f7/aiohttp-3.11.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d3a2bcf6c81639a165da93469e1e0aff67c956721f3fa9c0560f07dd1e505116", size = 454142 },
- { url = "https://files.pythonhosted.org/packages/ea/d4/259a3883bafe107ab43aff367afb59b8a92a89269130340422176e01ef98/aiohttp-3.11.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de3b4d5fb5d69749104b880a157f38baeea7765c93d9cd3837cedd5b84729e10", size = 1678074 },
- { url = "https://files.pythonhosted.org/packages/cc/ae/849abce780c9f4d765c8b18f9be77a6dae3165452cfe99aed346b016fa30/aiohttp-3.11.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0a90a0dc4b054b5af299a900bf950fe8f9e3e54322bc405005f30aa5cacc5c98", size = 1734328 },
- { url = "https://files.pythonhosted.org/packages/1a/9d/ea38bfedcb327d16ce8123ab70d924e3d8c935e166d3de42537024da239f/aiohttp-3.11.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:32334f35824811dd20a12cc90825d000e6b50faaeaa71408d42269151a66140d", size = 1788462 },
- { url = "https://files.pythonhosted.org/packages/26/e4/5deb69474fbadcbbe272f61fc31a75ad5e8b831a619fcb80c8d9c5be2ab6/aiohttp-3.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0cba0b8d25aa2d450762f3dd6df85498f5e7c3ad0ddeb516ef2b03510f0eea32", size = 1686944 },
- { url = "https://files.pythonhosted.org/packages/e2/2d/deb6af863dc31af4f443e951ec8afefac44caf2b1603a34b8fcf372d58e4/aiohttp-3.11.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bbb2dbc2701ab7e9307ca3a8fa4999c5b28246968e0a0202a5afabf48a42e22", size = 1618178 },
- { url = "https://files.pythonhosted.org/packages/1d/7b/0bb81a27a9f48599ff6662c7a79a4a6aa5c3ee4fe03c91d1fea060259c75/aiohttp-3.11.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:97fba98fc5d9ccd3d33909e898d00f2494d6a9eec7cbda3d030632e2c8bb4d00", size = 1635351 },
- { url = "https://files.pythonhosted.org/packages/56/52/c96ba7e70cc9b12e16c28239d740a2625d2d8abb57827648da06f173a18b/aiohttp-3.11.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0ebdf5087e2ce903d8220cc45dcece90c2199ae4395fd83ca616fcc81010db2c", size = 1649162 },
- { url = "https://files.pythonhosted.org/packages/7d/be/18699f1767cfb4b236c9334e6829ebf94c5dbc36d72502fd4df82fc20eb9/aiohttp-3.11.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:122768e3ae9ce74f981b46edefea9c6e5a40aea38aba3ac50168e6370459bf20", size = 1697112 },
- { url = "https://files.pythonhosted.org/packages/bb/b0/2a357d4bbb4fb11284827e9db2ad6d16119779affc1271ae791ee3242ceb/aiohttp-3.11.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5587da333b7d280a312715b843d43e734652aa382cba824a84a67c81f75b338b", size = 1728003 },
- { url = "https://files.pythonhosted.org/packages/e3/15/2da3f1300eb993f8a011545ad4b82d56ed6e684fc38a043fa79b629eec35/aiohttp-3.11.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:85de9904bc360fd29a98885d2bfcbd4e02ab33c53353cb70607f2bea2cb92468", size = 1688295 },
- { url = "https://files.pythonhosted.org/packages/2b/6e/b1e643188e4f26bae8d3c9aed7a40fee21ec71fb36ca1868fb6ad83c1a44/aiohttp-3.11.2-cp312-cp312-win32.whl", hash = "sha256:b470de64d17156c37e91effc109d3b032b39867000e2c126732fe01d034441f9", size = 409773 },
- { url = "https://files.pythonhosted.org/packages/6d/2c/5f45a92c3858e0c1b9072f5429cf68e4918ec5c7c32ebe38305faa7761fe/aiohttp-3.11.2-cp312-cp312-win_amd64.whl", hash = "sha256:3f617a48b70f4843d54f52440ea1e58da6bdab07b391a3a6aed8d3b311a4cc04", size = 436230 },
- { url = "https://files.pythonhosted.org/packages/2d/54/d1f8f63bccc5329580cb473dedc2f0d9e8682491163d98e182f9b3eb53db/aiohttp-3.11.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5d90b5a3b0f32a5fecf5dd83d828713986c019585f5cddf40d288ff77f366615", size = 695491 },
- { url = "https://files.pythonhosted.org/packages/19/8d/7f66861a7239f895b271fdffc3a4308c6e619a5020014437b995c5b71c9e/aiohttp-3.11.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d23854e5867650d40cba54d49956aad8081452aa80b2cf0d8c310633f4f48510", size = 458268 },
- { url = "https://files.pythonhosted.org/packages/4b/6f/cd7477819050ff819b5affd724a13d52832771d3b3da310f3abedafcaf1c/aiohttp-3.11.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:486273d3b5af75a80c31c311988931bdd2a4b96a74d5c7f422bad948f99988ef", size = 451154 },
- { url = "https://files.pythonhosted.org/packages/b2/bf/f87345e82156dcdc5d5b547f57074a5144d8036db2e9a7ea3f2047ae04b8/aiohttp-3.11.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9075313f8e41b481e4cb10af405054564b0247dc335db5398ed05f8ec38787e2", size = 1662053 },
- { url = "https://files.pythonhosted.org/packages/33/b0/689ebc9582c3db2aa7f8c2752179264087f11b25d3dbb9f9a3f53257c829/aiohttp-3.11.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44b69c69c194ffacbc50165911cf023a4b1b06422d1e1199d3aea82eac17004e", size = 1713248 },
- { url = "https://files.pythonhosted.org/packages/f5/0d/ce17f71443d4c0ab1c097be0bab32c82e95e41e2c7e12dd8445a8f000e35/aiohttp-3.11.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b339d91ac9060bd6ecdc595a82dc151045e5d74f566e0864ef3f2ba0887fec42", size = 1769628 },
- { url = "https://files.pythonhosted.org/packages/9c/a6/2eabd3a480d7a8ef0800d9e9ad40f7411c868256343ccd655ba809ed1856/aiohttp-3.11.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64e8f5178958a9954043bc8cd10a5ae97352c3f2fc99aa01f2aebb0026010910", size = 1672970 },
- { url = "https://files.pythonhosted.org/packages/f9/4e/fb1184d90a4a1db78d57193434d0a63f78ff4985852b66ed0b1fc91969d7/aiohttp-3.11.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3129151378f858cdc4a0a4df355c9a0d060ab49e2eea7e62e9f085bac100551b", size = 1599866 },
- { url = "https://files.pythonhosted.org/packages/8b/f3/2e8e9cb2b6e623d17c685b5112d76adba0a305905b1fcc4f1dc5d2ce6aab/aiohttp-3.11.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:14eb6c628432720e41b4fab1ada879d56cfe7034159849e083eb536b4c2afa99", size = 1616817 },
- { url = "https://files.pythonhosted.org/packages/c3/78/598d8a49d7aea14fa8a274d115ab09d2f6c0b35de0db26cc68dc6d6dda6d/aiohttp-3.11.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:e57a10aacedcf24666f4c90d03e599f71d172d1c5e00dcf48205c445806745b0", size = 1616944 },
- { url = "https://files.pythonhosted.org/packages/02/53/aa9491b43f7f2a0b0ea43b6b269074a795b2964e7562389010dab1503531/aiohttp-3.11.2-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:66e58a2e8c7609a3545c4b38fb8b01a6b8346c4862e529534f7674c5265a97b8", size = 1684225 },
- { url = "https://files.pythonhosted.org/packages/4e/0a/3b6aa94de5e88a2a0d629740fa725101228ad005ee244259e4cc8a837def/aiohttp-3.11.2-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:9b6d15adc9768ff167614ca853f7eeb6ee5f1d55d5660e3af85ce6744fed2b82", size = 1714720 },
- { url = "https://files.pythonhosted.org/packages/22/77/75b3a9cfe9c9ec901787f094379f4763c277aac8260f102e6056265dc0de/aiohttp-3.11.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2914061f5ca573f990ec14191e6998752fa8fe50d518e3405410353c3f44aa5d", size = 1670310 },
- { url = "https://files.pythonhosted.org/packages/db/6b/7a99a3d14df8a383f842ee96f17ee9a53b6ebba0d9ed82adbd40e5c70a0e/aiohttp-3.11.2-cp313-cp313-win32.whl", hash = "sha256:1c2496182e577042e0e07a328d91c949da9e77a2047c7291071e734cd7a6e780", size = 408542 },
- { url = "https://files.pythonhosted.org/packages/db/aa/ed3747ecd096c3cd85d8aca0c419079494b344f827349998570233428813/aiohttp-3.11.2-cp313-cp313-win_amd64.whl", hash = "sha256:cccb2937bece1310c5c0163d0406aba170a2e5fb1f0444d7b0e7fdc9bd6bb713", size = 434560 },
+sdist = { url = "https://files.pythonhosted.org/packages/2c/e5/c7ad0689e8ab74c3ec9bf20e0f667e1278b3738ae19ae3fed21e6a0543ca/aiohttp-3.11.8.tar.gz", hash = "sha256:7bc9d64a2350cbb29a9732334e1a0743cbb6844de1731cbdf5949b235653f3fd", size = 7667904 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/22/95/af92cedf27707a77b4827e45922f87fde9eed1aee9817c2d93fa6f8b54b9/aiohttp-3.11.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f8dd02b44555893adfe7cc4b3b454fee04f9dcec45cf66ef5bb53ebf393f0505", size = 707895 },
+ { url = "https://files.pythonhosted.org/packages/d0/a5/8f28d1b1e37810bf9957dfbbc376da5f8cc377b029dec0e20d5ddacc2253/aiohttp-3.11.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:658052941324edea3dee1f681375e70779f55e437e07bdfc4b5bbe65ad53cefb", size = 467535 },
+ { url = "https://files.pythonhosted.org/packages/c9/eb/65c5a4163f79a8dcf8ceb69ca012bf5d14c599819ffa4b52b52aaef0c878/aiohttp-3.11.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6c829471a9e2266da4a0666f8a9e215f19320f79778af379c1c7db324ac24ed2", size = 454817 },
+ { url = "https://files.pythonhosted.org/packages/58/f5/7939dbf646708ecc90a8c56d3c4b6602628d9cc2ec0df6a99d9b6004ad4a/aiohttp-3.11.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d21951756690f5d86d0215da38eb0fd65def03b5e2a1c08a4a39718a6d0d48f2", size = 1685395 },
+ { url = "https://files.pythonhosted.org/packages/ee/00/619262f2f8d0966c55753bbe65020594462072c0dc485b24de0e7f0229b1/aiohttp-3.11.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2fa50ddc6b21cc1ae23e13524d6f75b27e279fdf5cf905b2df6fd171891ac4e2", size = 1742815 },
+ { url = "https://files.pythonhosted.org/packages/55/d0/9be70ee6125a4be06aec54157ed47720426c0d3319bcf816c42ef64487be/aiohttp-3.11.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2a5afbd805e449048ecebb1a256176e953d4ca9e48bab387d4d1c8524f1c7a95", size = 1783689 },
+ { url = "https://files.pythonhosted.org/packages/56/6a/f5f2edab5d5a5ebc00447d906d12822cdc4e80ce8d9aa10b66bbec38caf4/aiohttp-3.11.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea68db69f2a4ddc24b28b8e754fc0b963ed7f9b9a76137f06fe44643d6821fbd", size = 1675581 },
+ { url = "https://files.pythonhosted.org/packages/b0/17/9937026e4e152cd475d88e01fe95e0f792165503115d7d12d9a6cd817173/aiohttp-3.11.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80b3ac163145660ce660aed2f1005e6d4de840d39728990b7250525eeec4e4a8", size = 1621760 },
+ { url = "https://files.pythonhosted.org/packages/d3/ee/eb9037cd040a27b234d07d714b9e167e6ea56b8a41cdaa365d17a7bcb4a4/aiohttp-3.11.8-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e9ac0cce897904b77e109e5403ed713187dbdf96832bfd061ac07164264be16c", size = 1652785 },
+ { url = "https://files.pythonhosted.org/packages/b7/34/1c0422065285b272c0ddb63cf61dfb42bdbc0d6c3cc51e59ac1023226c31/aiohttp-3.11.8-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3260c77cff4e35245bc517658bd54d7a64787f71f3c4f723877c82f22835b032", size = 1649670 },
+ { url = "https://files.pythonhosted.org/packages/e0/d2/fc45946781450f2cde010b757c609e1189985961d590300a8637ee4c0b87/aiohttp-3.11.8-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f7fd9c11ffad6b022bf02a41a70418cb2ab3b33f2c27842a5999e3ab78daf280", size = 1732519 },
+ { url = "https://files.pythonhosted.org/packages/c3/b1/56f72200edf9eaae46f9dbbda6434bd970afe48ec8ee494e1cf65c04a8fd/aiohttp-3.11.8-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:16bda233a7b159ab08107e8858fedca90a9de287057fab54cafde51bd83f9819", size = 1753866 },
+ { url = "https://files.pythonhosted.org/packages/9f/29/907e42c94e534a94d4b281ace2ae66d339ab84d8976cdb7dc429d098eb0d/aiohttp-3.11.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4867008617bbf86e9fb5b00f72dd0e3a00a579b32233caff834320867f9b7cac", size = 1692152 },
+ { url = "https://files.pythonhosted.org/packages/d7/83/f03968fcbedd92db3131d927b2aedc221003e1d1ce188b39ec4da49a6a5b/aiohttp-3.11.8-cp311-cp311-win32.whl", hash = "sha256:17e6b9d8e29e3bfc7f893f327e92c9769d3582cee2fb1652c1431ac3f60115a0", size = 415560 },
+ { url = "https://files.pythonhosted.org/packages/5f/c2/44848c66e0538b8cbd708346754efc7928be5071b0ed0bbbe0db21608306/aiohttp-3.11.8-cp311-cp311-win_amd64.whl", hash = "sha256:7f3be4961a5c2c670f31caab7641a37ea2a97031f0d8ae15bcfd36b6bf273200", size = 441670 },
+ { url = "https://files.pythonhosted.org/packages/74/bb/975dcefc5d2238f24815ef1df7358643108ae8efe7371d1c700efd1d813a/aiohttp-3.11.8-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0e3b5bfef913d6be270c81976fbc0cbf66625cd92663bbb7e03b3adbd6aa4ac6", size = 703595 },
+ { url = "https://files.pythonhosted.org/packages/f4/f4/4480ffeca247026a89a828ff701f726a39029d63c20d0c3575c05cc21045/aiohttp-3.11.8-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cb51a81cb637b9a072c9cfae1839e35c6579638861eb3479eb5d6e6ce8bc6782", size = 462675 },
+ { url = "https://files.pythonhosted.org/packages/9d/3a/34fb0a91f667eea7050c299c3d84993db953385b1d5c287173a5bdd7a2c0/aiohttp-3.11.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:dd2ca84e5f7a35f313a62eb7d6a50bac6760b60bafce34586750712731c0aeff", size = 455270 },
+ { url = "https://files.pythonhosted.org/packages/80/b2/6b7b7728552700b8af03ce1370a4da65d8b7d769d6303c5d453968c7e335/aiohttp-3.11.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:47c6663df9446aa848b478413219600da4b54bc0409e1ac4bc80fb1a81501363", size = 1679484 },
+ { url = "https://files.pythonhosted.org/packages/86/ae/92cd1a78ab4a962dc57482006b770c436d0ddb30b20cea954279577baec0/aiohttp-3.11.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c665ed4b52256614858b20711bbbd2755b0e19ec86870f8ff1645acf9ae9e760", size = 1736045 },
+ { url = "https://files.pythonhosted.org/packages/17/9d/37ebdcb0f7da1b8e902accc239592e2824d13d0f723acb36dd4a4201ecc4/aiohttp-3.11.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35d4545e7684da7a954ffc2dce495462cb16a902dffdebe98572408f6aaaee83", size = 1790952 },
+ { url = "https://files.pythonhosted.org/packages/02/9e/d572035320752770c00e6b821f4641493a611976f4dec85012b86b49be8e/aiohttp-3.11.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85be3899e6860dd2cd3f4370ded6708e939d00d5ec922a8eb328d114db605a47", size = 1689079 },
+ { url = "https://files.pythonhosted.org/packages/b3/f2/faff5fa14c51161a6f074ed56295562bc80b1c54f9933186c4cccabf6ded/aiohttp-3.11.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a0ed9f1f2697713c48efc9ec483ad5d062e4aa91854f090a3eba0b19c002851d", size = 1616554 },
+ { url = "https://files.pythonhosted.org/packages/b3/ea/00412278060ea50c2d5c8a48e7f7f94e95e2170079b67c6772475d153927/aiohttp-3.11.8-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:c0dbae99737badf3f5e862088a118e28d3b36f03eb608a6382eddfd68178e05b", size = 1643126 },
+ { url = "https://files.pythonhosted.org/packages/1f/93/9cb3e20cb8f73f00b94f92864f7e1937fd2b33059b2536f6532a2afabe6a/aiohttp-3.11.8-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:beae08f900b2980af4353a0200eb162b39f276fd8a6e43079a540f83964671f4", size = 1649517 },
+ { url = "https://files.pythonhosted.org/packages/e3/27/24e8dc49f4f524d728dcb757f74d9b3f5a652ecb5d20158e175b73186280/aiohttp-3.11.8-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:d6f9e5fd1b3ecbaca3e04a15a02d1fa213248608caee99fd5bdddd4759959cf7", size = 1697243 },
+ { url = "https://files.pythonhosted.org/packages/16/bf/480de7d40affc95a046c8580e54ff4875a73ac5e7b8cafca9877f0cf089a/aiohttp-3.11.8-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a7def89a41fe32120d89cd4577f5efbab3c52234c5890066ced8a2f7202dff88", size = 1730902 },
+ { url = "https://files.pythonhosted.org/packages/24/ce/74ed004d72a3d41933ac729765cd58aea8b61fd287fc870abc42f2d6b978/aiohttp-3.11.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:98f596cf59292e779bc387f22378a3d2c5e052c9fe2bf822ac4f547c6fe57758", size = 1696230 },
+ { url = "https://files.pythonhosted.org/packages/a5/22/fdba63fc388ec880e99868609761671598b01bb402e063d69c338eaf8a27/aiohttp-3.11.8-cp312-cp312-win32.whl", hash = "sha256:b64fa6b76b35b695cd3e5c42a4e568cbea8d41c9e59165e2a43da00976e2027e", size = 410669 },
+ { url = "https://files.pythonhosted.org/packages/7e/b8/37683614a4db2763b56376d4a532cceb0496b7984e1596e2da4b7c953166/aiohttp-3.11.8-cp312-cp312-win_amd64.whl", hash = "sha256:afba47981ff73b1794c00dce774334dcfe62664b3b4f78f278b77d21ce9daf43", size = 437086 },
+ { url = "https://files.pythonhosted.org/packages/56/12/97a55a4fe36a68e6e51749c2edd546b4792bc47039d78b766273d91178af/aiohttp-3.11.8-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a81525430da5ca356fae6e889daeb6f5cc0d5f0cef88e59cdde48e2394ea1365", size = 696879 },
+ { url = "https://files.pythonhosted.org/packages/da/4c/e84542b25315be8e4ec2fd06cfb31713d940fd94d378d7737f357ec7254c/aiohttp-3.11.8-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7565689e86a88c1d258351ebd14e343337b76a56ca5c0a2c1db96ec28149386f", size = 459325 },
+ { url = "https://files.pythonhosted.org/packages/6b/b5/db278214e5f915c7b203ff66735d1a1e9bfc4e8f331ebe72e74e92cfab7c/aiohttp-3.11.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d0f9dbe9763c014c408ad51a027dc9582518e992dc63e2ffe359ac1b4840a560", size = 452061 },
+ { url = "https://files.pythonhosted.org/packages/4a/64/00f313ef75b1ac3d3c0bc408da78ffa0e7698cfd9cd55ab1af3693af74ed/aiohttp-3.11.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8ca580edc3ccd7f6ea76ad9cf59f5a8756d338e770b5eda7be26bcda8fa7ef53", size = 1662840 },
+ { url = "https://files.pythonhosted.org/packages/3b/9d/eaea2168b1bbe13c31c378e887d92802f352cf28ea09acbbffed84eb908e/aiohttp-3.11.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7d141631a7348038fc7b5d1a81b3c9afa9aa056188ded7902fe754028fdea5c5", size = 1716479 },
+ { url = "https://files.pythonhosted.org/packages/f1/51/37f8e30e2053e472febe091006b0c763d02538acb1f52d6af2e5d0d7e656/aiohttp-3.11.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:64e6b14608a56a4c76c60daac730b0c0eeaf9d10dfc3231f7fc26521a0d628fd", size = 1772536 },
+ { url = "https://files.pythonhosted.org/packages/6e/de/70b3caf16eb51cc92ba560800d52c2ce0bd71f0cb94eaa22ba0ba93dfe6a/aiohttp-3.11.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0983d0ce329f2f9dbeb355c3744bd6333f34e0dc56025b6b7d4f285b90acb51e", size = 1673785 },
+ { url = "https://files.pythonhosted.org/packages/90/40/d9d6164452f05a5019394b0e76ff2068d5b0d85b0213f369c7435264fde0/aiohttp-3.11.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d96b93a46a3742880fa21bcb35c6c40cf27714ec0fb8ec85fe444d73b95131b9", size = 1601468 },
+ { url = "https://files.pythonhosted.org/packages/7c/b0/e2b1964aed11246b4bdc35c0f04b4d353fd9826e33b86e382f05f338e51c/aiohttp-3.11.8-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f4f1779c3142d913c509c2ed1de8b8f920e07a5cd65ac1f57c61cfb6bfded5a4", size = 1614807 },
+ { url = "https://files.pythonhosted.org/packages/22/74/f1bd4c746c74520af3fac8efc34f7191a2b07c32f595009e54049e8b3746/aiohttp-3.11.8-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:48be7cff468c9c0d86a02e6a826e1fe159094b16d5aa2c17703e7317f791b0f9", size = 1616589 },
+ { url = "https://files.pythonhosted.org/packages/35/25/283d0da0573a0c32ae00b0d407e4219308c13b338b8f86e0b77339090349/aiohttp-3.11.8-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:daea456b79ca2bacc7f062845bbb1139c3b3231fc83169da5a682cf385416dd1", size = 1684232 },
+ { url = "https://files.pythonhosted.org/packages/51/31/b7dd54d33dd604adb988e4fe4cd35b311f03efc4701743f307041b97e749/aiohttp-3.11.8-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c92e763cf641e10ad9342597d20060ba23de5e411aada96660e679e3f9371189", size = 1714593 },
+ { url = "https://files.pythonhosted.org/packages/bd/8e/76f7919864c755c90696df132686b2a9fd9725e7ad9073db4ac9b52e872f/aiohttp-3.11.8-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a750ee5a177e0f873d6b2d7d0fa6e1e7c658fc0ca8ea56438dcba2ac94bedb09", size = 1669610 },
+ { url = "https://files.pythonhosted.org/packages/ec/93/bde417393de7545c194f0aefc9b4062a2b7d0e8ae8e7c85f5fa74971b433/aiohttp-3.11.8-cp313-cp313-win32.whl", hash = "sha256:4448c9c7f77bad48a6569062c0c16deb77fbb7363de1dc71ed087f66fb3b3c96", size = 409458 },
+ { url = "https://files.pythonhosted.org/packages/da/e7/45d57621d9caba3c7d2687618c0e12025e477bd035834cf9ec3334e82810/aiohttp-3.11.8-cp313-cp313-win_amd64.whl", hash = "sha256:481075a1949de79a8a6841e0086f2f5f464785c592cf527ed0db2c0cbd0e1ba2", size = 435403 },
]
[[package]]
@@ -92,18 +92,18 @@ wheels = [
[[package]]
name = "altair"
-version = "5.4.1"
+version = "5.5.0"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "jinja2" },
{ name = "jsonschema" },
{ name = "narwhals" },
{ name = "packaging" },
- { name = "typing-extensions", marker = "python_full_version < '3.13'" },
+ { name = "typing-extensions", marker = "python_full_version < '3.14'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/ae/09/38904138a49f29e529b61b4f39954a6837f443d828c1bc57814be7bd4813/altair-5.4.1.tar.gz", hash = "sha256:0ce8c2e66546cb327e5f2d7572ec0e7c6feece816203215613962f0ec1d76a82", size = 636465 }
+sdist = { url = "https://files.pythonhosted.org/packages/16/b1/f2969c7bdb8ad8bbdda031687defdce2c19afba2aa2c8e1d2a17f78376d8/altair-5.5.0.tar.gz", hash = "sha256:d960ebe6178c56de3855a68c47b516be38640b73fb3b5111c2a9ca90546dd73d", size = 705305 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/9b/52/4a86a4fa1cc2aae79137cc9510b7080c3e5aede2310d14fae5486feec7f7/altair-5.4.1-py3-none-any.whl", hash = "sha256:0fb130b8297a569d08991fb6fe763582e7569f8a04643bbd9212436e3be04aef", size = 658150 },
+ { url = "https://files.pythonhosted.org/packages/aa/f3/0b6ced594e51cc95d8c1fc1640d3623770d01e4969d29c0bd09945fafefa/altair-5.5.0-py3-none-any.whl", hash = "sha256:91a310b926508d560fe0148d02a194f38b824122641ef528113d029fcd129f8c", size = 731200 },
]
[[package]]
@@ -260,32 +260,32 @@ wheels = [
[[package]]
name = "bcrypt"
-version = "4.2.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/e4/7e/d95e7d96d4828e965891af92e43b52a4cd3395dc1c1ef4ee62748d0471d0/bcrypt-4.2.0.tar.gz", hash = "sha256:cf69eaf5185fd58f268f805b505ce31f9b9fc2d64b376642164e9244540c1221", size = 24294 }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/a9/81/4e8f5bc0cd947e91fb720e1737371922854da47a94bc9630454e7b2845f8/bcrypt-4.2.0-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:096a15d26ed6ce37a14c1ac1e48119660f21b24cba457f160a4b830f3fe6b5cb", size = 471568 },
- { url = "https://files.pythonhosted.org/packages/05/d2/1be1e16aedec04bcf8d0156e01b987d16a2063d38e64c3f28030a3427d61/bcrypt-4.2.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c02d944ca89d9b1922ceb8a46460dd17df1ba37ab66feac4870f6862a1533c00", size = 277372 },
- { url = "https://files.pythonhosted.org/packages/e3/96/7a654027638ad9b7589effb6db77eb63eba64319dfeaf9c0f4ca953e5f76/bcrypt-4.2.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d84cf6d877918620b687b8fd1bf7781d11e8a0998f576c7aa939776b512b98d", size = 273488 },
- { url = "https://files.pythonhosted.org/packages/46/54/dc7b58abeb4a3d95bab653405935e27ba32f21b812d8ff38f271fb6f7f55/bcrypt-4.2.0-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:1bb429fedbe0249465cdd85a58e8376f31bb315e484f16e68ca4c786dcc04291", size = 277759 },
- { url = "https://files.pythonhosted.org/packages/ac/be/da233c5f11fce3f8adec05e8e532b299b64833cc962f49331cdd0e614fa9/bcrypt-4.2.0-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:655ea221910bcac76ea08aaa76df427ef8625f92e55a8ee44fbf7753dbabb328", size = 273796 },
- { url = "https://files.pythonhosted.org/packages/b0/b8/8b4add88d55a263cf1c6b8cf66c735280954a04223fcd2880120cc767ac3/bcrypt-4.2.0-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:1ee38e858bf5d0287c39b7a1fc59eec64bbf880c7d504d3a06a96c16e14058e7", size = 311082 },
- { url = "https://files.pythonhosted.org/packages/7b/76/2aa660679abbdc7f8ee961552e4bb6415a81b303e55e9374533f22770203/bcrypt-4.2.0-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:0da52759f7f30e83f1e30a888d9163a81353ef224d82dc58eb5bb52efcabc399", size = 305912 },
- { url = "https://files.pythonhosted.org/packages/00/03/2af7c45034aba6002d4f2b728c1a385676b4eab7d764410e34fd768009f2/bcrypt-4.2.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:3698393a1b1f1fd5714524193849d0c6d524d33523acca37cd28f02899285060", size = 325185 },
- { url = "https://files.pythonhosted.org/packages/dc/5d/6843443ce4ab3af40bddb6c7c085ed4a8418b3396f7a17e60e6d9888416c/bcrypt-4.2.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:762a2c5fb35f89606a9fde5e51392dad0cd1ab7ae64149a8b935fe8d79dd5ed7", size = 335188 },
- { url = "https://files.pythonhosted.org/packages/cb/4c/ff8ca83d816052fba36def1d24e97d9a85739b9bbf428c0d0ecd296a07c8/bcrypt-4.2.0-cp37-abi3-win32.whl", hash = "sha256:5a1e8aa9b28ae28020a3ac4b053117fb51c57a010b9f969603ed885f23841458", size = 156481 },
- { url = "https://files.pythonhosted.org/packages/65/f1/e09626c88a56cda488810fb29d5035f1662873777ed337880856b9d204ae/bcrypt-4.2.0-cp37-abi3-win_amd64.whl", hash = "sha256:8f6ede91359e5df88d1f5c1ef47428a4420136f3ce97763e31b86dd8280fbdf5", size = 151336 },
- { url = "https://files.pythonhosted.org/packages/96/86/8c6a84daed4dd878fbab094400c9174c43d9b838ace077a2f8ee8bc3ae12/bcrypt-4.2.0-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:c52aac18ea1f4a4f65963ea4f9530c306b56ccd0c6f8c8da0c06976e34a6e841", size = 472414 },
- { url = "https://files.pythonhosted.org/packages/f6/05/e394515f4e23c17662e5aeb4d1859b11dc651be01a3bd03c2e919a155901/bcrypt-4.2.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3bbbfb2734f0e4f37c5136130405332640a1e46e6b23e000eeff2ba8d005da68", size = 277599 },
- { url = "https://files.pythonhosted.org/packages/4b/3b/ad784eac415937c53da48983756105d267b91e56aa53ba8a1b2014b8d930/bcrypt-4.2.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3413bd60460f76097ee2e0a493ccebe4a7601918219c02f503984f0a7ee0aebe", size = 273491 },
- { url = "https://files.pythonhosted.org/packages/cc/14/b9ff8e0218bee95e517b70e91130effb4511e8827ac1ab00b4e30943a3f6/bcrypt-4.2.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:8d7bb9c42801035e61c109c345a28ed7e84426ae4865511eb82e913df18f58c2", size = 277934 },
- { url = "https://files.pythonhosted.org/packages/3e/d0/31938bb697600a04864246acde4918c4190a938f891fd11883eaaf41327a/bcrypt-4.2.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:3d3a6d28cb2305b43feac298774b997e372e56c7c7afd90a12b3dc49b189151c", size = 273804 },
- { url = "https://files.pythonhosted.org/packages/e7/c3/dae866739989e3f04ae304e1201932571708cb292a28b2f1b93283e2dcd8/bcrypt-4.2.0-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:9c1c4ad86351339c5f320ca372dfba6cb6beb25e8efc659bedd918d921956bae", size = 311275 },
- { url = "https://files.pythonhosted.org/packages/5d/2c/019bc2c63c6125ddf0483ee7d914a405860327767d437913942b476e9c9b/bcrypt-4.2.0-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:27fe0f57bb5573104b5a6de5e4153c60814c711b29364c10a75a54bb6d7ff48d", size = 306355 },
- { url = "https://files.pythonhosted.org/packages/75/fe/9e137727f122bbe29771d56afbf4e0dbc85968caa8957806f86404a5bfe1/bcrypt-4.2.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:8ac68872c82f1add6a20bd489870c71b00ebacd2e9134a8aa3f98a0052ab4b0e", size = 325381 },
- { url = "https://files.pythonhosted.org/packages/1a/d4/586b9c18a327561ea4cd336ff4586cca1a7aa0f5ee04e23a8a8bb9ca64f1/bcrypt-4.2.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:cb2a8ec2bc07d3553ccebf0746bbf3d19426d1c6d1adbd4fa48925f66af7b9e8", size = 335685 },
- { url = "https://files.pythonhosted.org/packages/24/55/1a7127faf4576138bb278b91e9c75307490178979d69c8e6e273f74b974f/bcrypt-4.2.0-cp39-abi3-win32.whl", hash = "sha256:77800b7147c9dc905db1cba26abe31e504d8247ac73580b4aa179f98e6608f34", size = 155857 },
- { url = "https://files.pythonhosted.org/packages/1c/2a/c74052e54162ec639266d91539cca7cbf3d1d3b8b36afbfeaee0ea6a1702/bcrypt-4.2.0-cp39-abi3-win_amd64.whl", hash = "sha256:61ed14326ee023917ecd093ee6ef422a72f3aec6f07e21ea5f10622b735538a9", size = 151717 },
+version = "4.2.1"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/56/8c/dd696962612e4cd83c40a9e6b3db77bfe65a830f4b9af44098708584686c/bcrypt-4.2.1.tar.gz", hash = "sha256:6765386e3ab87f569b276988742039baab087b2cdb01e809d74e74503c2faafe", size = 24427 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/bc/ca/e17b08c523adb93d5f07a226b2bd45a7c6e96b359e31c1e99f9db58cb8c3/bcrypt-4.2.1-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:1340411a0894b7d3ef562fb233e4b6ed58add185228650942bdc885362f32c17", size = 489982 },
+ { url = "https://files.pythonhosted.org/packages/6a/be/e7c6e0fd6087ee8fc6d77d8d9e817e9339d879737509019b9a9012a1d96f/bcrypt-4.2.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1ee315739bc8387aa36ff127afc99120ee452924e0df517a8f3e4c0187a0f5f", size = 273108 },
+ { url = "https://files.pythonhosted.org/packages/d6/53/ac084b7d985aee1a5f2b086d501f550862596dbf73220663b8c17427e7f2/bcrypt-4.2.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8dbd0747208912b1e4ce730c6725cb56c07ac734b3629b60d4398f082ea718ad", size = 278733 },
+ { url = "https://files.pythonhosted.org/packages/8e/ab/b8710a3d6231c587e575ead0b1c45bb99f5454f9f579c9d7312c17b069cc/bcrypt-4.2.1-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:aaa2e285be097050dba798d537b6efd9b698aa88eef52ec98d23dcd6d7cf6fea", size = 273856 },
+ { url = "https://files.pythonhosted.org/packages/9d/e5/2fd1ea6395358ffdfd4afe370d5b52f71408f618f781772a48971ef3b92b/bcrypt-4.2.1-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:76d3e352b32f4eeb34703370e370997065d28a561e4a18afe4fef07249cb4396", size = 279067 },
+ { url = "https://files.pythonhosted.org/packages/4e/ef/f2cb7a0f7e1ed800a604f8ab256fb0afcf03c1540ad94ff771ce31e794aa/bcrypt-4.2.1-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:b7703ede632dc945ed1172d6f24e9f30f27b1b1a067f32f68bf169c5f08d0425", size = 306851 },
+ { url = "https://files.pythonhosted.org/packages/de/cb/578b0023c6a5ca16a177b9044ba6bd6032277bd3ef020fb863eccd22e49b/bcrypt-4.2.1-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:89df2aea2c43be1e1fa066df5f86c8ce822ab70a30e4c210968669565c0f4685", size = 310793 },
+ { url = "https://files.pythonhosted.org/packages/98/bc/9d501ee9d754f63d4b1086b64756c284facc3696de9b556c146279a124a5/bcrypt-4.2.1-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:04e56e3fe8308a88b77e0afd20bec516f74aecf391cdd6e374f15cbed32783d6", size = 320957 },
+ { url = "https://files.pythonhosted.org/packages/a1/25/2ec4ce5740abc43182bfc064b9acbbf5a493991246985e8b2bfe231ead64/bcrypt-4.2.1-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:cfdf3d7530c790432046c40cda41dfee8c83e29482e6a604f8930b9930e94139", size = 339958 },
+ { url = "https://files.pythonhosted.org/packages/6d/64/fd67788f64817727897d31e9cdeeeba3941eaad8540733c05c7eac4aa998/bcrypt-4.2.1-cp37-abi3-win32.whl", hash = "sha256:adadd36274510a01f33e6dc08f5824b97c9580583bd4487c564fc4617b328005", size = 160912 },
+ { url = "https://files.pythonhosted.org/packages/00/8f/fe834eaa54abbd7cab8607e5020fa3a0557e929555b9e4ca404b4adaab06/bcrypt-4.2.1-cp37-abi3-win_amd64.whl", hash = "sha256:8c458cd103e6c5d1d85cf600e546a639f234964d0228909d8f8dbeebff82d526", size = 152981 },
+ { url = "https://files.pythonhosted.org/packages/4a/57/23b46933206daf5384b5397d9878746d2249fe9d45efaa8e1467c87d3048/bcrypt-4.2.1-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:8ad2f4528cbf0febe80e5a3a57d7a74e6635e41af1ea5675282a33d769fba413", size = 489842 },
+ { url = "https://files.pythonhosted.org/packages/fd/28/3ea8a39ddd4938b6c6b6136816d72ba5e659e2d82b53d843c8c53455ac4d/bcrypt-4.2.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:909faa1027900f2252a9ca5dfebd25fc0ef1417943824783d1c8418dd7d6df4a", size = 272500 },
+ { url = "https://files.pythonhosted.org/packages/77/7f/b43622999f5d4de06237a195ac5501ac83516adf571b907228cd14bac8fe/bcrypt-4.2.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cde78d385d5e93ece5479a0a87f73cd6fa26b171c786a884f955e165032b262c", size = 278368 },
+ { url = "https://files.pythonhosted.org/packages/50/68/f2e3959014b4d8874c747e6e171d46d3e63a3a39aaca8417a8d837eda0a8/bcrypt-4.2.1-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:533e7f3bcf2f07caee7ad98124fab7499cb3333ba2274f7a36cf1daee7409d99", size = 273335 },
+ { url = "https://files.pythonhosted.org/packages/d6/c3/4b4bad4da852924427c651589d464ad1aa624f94dd904ddda8493b0a35e5/bcrypt-4.2.1-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:687cf30e6681eeda39548a93ce9bfbb300e48b4d445a43db4298d2474d2a1e54", size = 278614 },
+ { url = "https://files.pythonhosted.org/packages/6e/5a/ee107961e84c41af2ac201d0460f962b6622ff391255ffd46429e9e09dc1/bcrypt-4.2.1-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:041fa0155c9004eb98a232d54da05c0b41d4b8e66b6fc3cb71b4b3f6144ba837", size = 306464 },
+ { url = "https://files.pythonhosted.org/packages/5c/72/916e14fa12d2b1d1fc6c26ea195337419da6dd23d0bf53ac61ef3739e5c5/bcrypt-4.2.1-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:f85b1ffa09240c89aa2e1ae9f3b1c687104f7b2b9d2098da4e923f1b7082d331", size = 310674 },
+ { url = "https://files.pythonhosted.org/packages/97/92/3dc76d8bfa23300591eec248e950f85bd78eb608c96bd4747ce4cc06acdb/bcrypt-4.2.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:c6f5fa3775966cca251848d4d5393ab016b3afed251163c1436fefdec3b02c84", size = 320577 },
+ { url = "https://files.pythonhosted.org/packages/5d/ab/a6c0da5c2cf86600f74402a72b06dfe365e1a1d30783b1bbeec460fd57d1/bcrypt-4.2.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:807261df60a8b1ccd13e6599c779014a362ae4e795f5c59747f60208daddd96d", size = 339836 },
+ { url = "https://files.pythonhosted.org/packages/b4/b4/e75b6e9a72a030a04362034022ebe317c5b735d04db6ad79237101ae4a5c/bcrypt-4.2.1-cp39-abi3-win32.whl", hash = "sha256:b588af02b89d9fad33e5f98f7838bf590d6d692df7153647724a7f20c186f6bf", size = 160911 },
+ { url = "https://files.pythonhosted.org/packages/76/b9/d51d34e6cd6d887adddb28a8680a1d34235cc45b9d6e238ce39b98199ca0/bcrypt-4.2.1-cp39-abi3-win_amd64.whl", hash = "sha256:e84e0e6f8e40a242b11bce56c313edc2be121cec3e0ec2d76fce01f6af33c07c", size = 153078 },
]
[[package]]
@@ -495,7 +495,7 @@ wheels = [
[[package]]
name = "chromadb"
-version = "0.5.18"
+version = "0.5.20"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "bcrypt" },
@@ -527,9 +527,9 @@ dependencies = [
{ name = "typing-extensions" },
{ name = "uvicorn", extra = ["standard"] },
]
-sdist = { url = "https://files.pythonhosted.org/packages/15/95/d1a3f14c864e37d009606b82bd837090902b5e5a8e892fcab07eeaec0438/chromadb-0.5.18.tar.gz", hash = "sha256:cfbb3e5aeeb1dd532b47d80ed9185e8a9886c09af41c8e6123edf94395d76aec", size = 33620708 }
+sdist = { url = "https://files.pythonhosted.org/packages/03/31/6c8e05405bb02b4a1f71f9aa3eef242415565dabf6afc1bde7f64f726963/chromadb-0.5.20.tar.gz", hash = "sha256:19513a23b2d20059866216bfd80195d1d4a160ffba234b8899f5e80978160ca7", size = 33664540 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/82/85/4d2f8b9202153105ad4514ae09e9fe6f3b353a45e44e0ef7eca03dd8b9dc/chromadb-0.5.18-py3-none-any.whl", hash = "sha256:9dd3827b5e04b4ff0a5ea0df28a78bac88a09f45be37fcd7fe20f879b57c43cf", size = 615499 },
+ { url = "https://files.pythonhosted.org/packages/5f/7a/10bf5dc92d13cc03230190fcc5016a0b138d99e5b36b8b89ee0fe1680e10/chromadb-0.5.20-py3-none-any.whl", hash = "sha256:9550ba1b6dce911e35cac2568b301badf4b42f457b99a432bdeec2b6b9dd3680", size = 617884 },
]
[[package]]
@@ -652,23 +652,23 @@ wheels = [
[[package]]
name = "debugpy"
-version = "1.8.8"
+version = "1.8.9"
source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/e4/5e/7667b95c9d7ddb25c047143a3a47685f9be2a5d3d177a85a730b22dc6e5c/debugpy-1.8.8.zip", hash = "sha256:e6355385db85cbd666be703a96ab7351bc9e6c61d694893206f8001e22aee091", size = 4928684 }
+sdist = { url = "https://files.pythonhosted.org/packages/88/92/15b454c516c4c53cc8c03967e4be12b65a1ea36db3bb4513a7453f75c8d8/debugpy-1.8.9.zip", hash = "sha256:1339e14c7d980407248f09824d1b25ff5c5616651689f1e0f0e51bdead3ea13e", size = 4921695 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/38/55/6b5596ea6d5490e17abc2896f1fbe83d31205a22629805daccd30686721c/debugpy-1.8.8-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:c399023146e40ae373753a58d1be0a98bf6397fadc737b97ad612886b53df318", size = 2187057 },
- { url = "https://files.pythonhosted.org/packages/3f/f7/c2ee07f6335c3620c1435aef2c4d3d4853f6b7fb0789aa2c52a84498ef90/debugpy-1.8.8-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:09cc7b162586ea2171eea055985da2702b0723f6f907a423c9b2da5996ad67ba", size = 3139844 },
- { url = "https://files.pythonhosted.org/packages/0d/68/01d335338b68bdebab11de573f4631c7bf0404666ccbf474621123497702/debugpy-1.8.8-cp311-cp311-win32.whl", hash = "sha256:eea8821d998ebeb02f0625dd0d76839ddde8cbf8152ebbe289dd7acf2cdc6b98", size = 5049405 },
- { url = "https://files.pythonhosted.org/packages/22/1d/3f69460b4b8f01dace3882513de71a446eb37ee57fe2112be948fadebde8/debugpy-1.8.8-cp311-cp311-win_amd64.whl", hash = "sha256:d4483836da2a533f4b1454dffc9f668096ac0433de855f0c22cdce8c9f7e10c4", size = 5075025 },
- { url = "https://files.pythonhosted.org/packages/c2/04/8e79824c4d9100049bda056aeaf8f2765d1325a4521a87f8bb373c977236/debugpy-1.8.8-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:0cc94186340be87b9ac5a707184ec8f36547fb66636d1029ff4f1cc020e53996", size = 2514549 },
- { url = "https://files.pythonhosted.org/packages/a5/6b/c336d1eba1aedc9f654aefcdfe47ec41657d149f28ca1477c5f9009681c6/debugpy-1.8.8-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64674e95916e53c2e9540a056e5f489e0ad4872645399d778f7c598eacb7b7f9", size = 4229617 },
- { url = "https://files.pythonhosted.org/packages/63/9c/d9276c41e9e14164b31bcba789c87a355c091d0fc2d4e4e36a4881c9aa54/debugpy-1.8.8-cp312-cp312-win32.whl", hash = "sha256:5c6e885dbf12015aed73770f29dec7023cb310d0dc2ba8bfbeb5c8e43f80edc9", size = 5167033 },
- { url = "https://files.pythonhosted.org/packages/6d/1c/fd4bc22196b2d0defaa9f644ea4d676d0cb53b6434091b5fa2d4e49c85f2/debugpy-1.8.8-cp312-cp312-win_amd64.whl", hash = "sha256:19ffbd84e757a6ca0113574d1bf5a2298b3947320a3e9d7d8dc3377f02d9f864", size = 5209968 },
- { url = "https://files.pythonhosted.org/packages/90/45/6745f342bbf41bde7eb5dbf5567b794a4a5498a7a729146cb3101b875b30/debugpy-1.8.8-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:705cd123a773d184860ed8dae99becd879dfec361098edbefb5fc0d3683eb804", size = 2499523 },
- { url = "https://files.pythonhosted.org/packages/5c/39/0374610062a384648db9b7b315d0c906facf23613bfd19527135a7c0a420/debugpy-1.8.8-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:890fd16803f50aa9cb1a9b9b25b5ec321656dd6b78157c74283de241993d086f", size = 4218219 },
- { url = "https://files.pythonhosted.org/packages/cc/19/5b8a68eb9bbafd6bfd27ba0ed93d411f3fd50935ecdd2df242de2110a7c9/debugpy-1.8.8-cp313-cp313-win32.whl", hash = "sha256:90244598214bbe704aa47556ec591d2f9869ff9e042e301a2859c57106649add", size = 5171845 },
- { url = "https://files.pythonhosted.org/packages/cd/04/7381dab68e40ca877d5beffc25ad1a0d3d2557cf7465405435fac9e27ef5/debugpy-1.8.8-cp313-cp313-win_amd64.whl", hash = "sha256:4b93e4832fd4a759a0c465c967214ed0c8a6e8914bced63a28ddb0dd8c5f078b", size = 5206890 },
- { url = "https://files.pythonhosted.org/packages/03/99/ec2190d03df5dbd610418919bd1c3d8e6f61d0a97894e11ade6d3260cfb8/debugpy-1.8.8-py2.py3-none-any.whl", hash = "sha256:ec684553aba5b4066d4de510859922419febc710df7bba04fe9e7ef3de15d34f", size = 5157124 },
+ { url = "https://files.pythonhosted.org/packages/f7/bf/c41b688ad490d644b3bcca505a87ea58ec0442234def9a641ba62dce9c11/debugpy-1.8.9-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:b74a49753e21e33e7cf030883a92fa607bddc4ede1aa4145172debc637780040", size = 2179080 },
+ { url = "https://files.pythonhosted.org/packages/f4/dd/e9de11423db7bde62469fbd932243c64f66d6d87924976f49ec336415522/debugpy-1.8.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:62d22dacdb0e296966d7d74a7141aaab4bec123fa43d1a35ddcb39bf9fd29d70", size = 3137893 },
+ { url = "https://files.pythonhosted.org/packages/2c/bf/e1f2c81220591728f35585b4abd67e71e9b39b3cb983f428b23d4ca6c22e/debugpy-1.8.9-cp311-cp311-win32.whl", hash = "sha256:8138efff315cd09b8dcd14226a21afda4ca582284bf4215126d87342bba1cc66", size = 5042644 },
+ { url = "https://files.pythonhosted.org/packages/96/20/a407252954fd2812771e4ea3ab523f73889fd5027e305dec5ee4f0af149a/debugpy-1.8.9-cp311-cp311-win_amd64.whl", hash = "sha256:ff54ef77ad9f5c425398efb150239f6fe8e20c53ae2f68367eba7ece1e96226d", size = 5066943 },
+ { url = "https://files.pythonhosted.org/packages/da/ab/1420baf8404d2b499349a44de5037133e06d489009032ce016fedb66eea1/debugpy-1.8.9-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:957363d9a7a6612a37458d9a15e72d03a635047f946e5fceee74b50d52a9c8e2", size = 2504180 },
+ { url = "https://files.pythonhosted.org/packages/58/ec/e0f88c6764314bda7887274e0b980812709b3d6363dcae124a49a9ceaa3c/debugpy-1.8.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e565fc54b680292b418bb809f1386f17081d1346dca9a871bf69a8ac4071afe", size = 4224563 },
+ { url = "https://files.pythonhosted.org/packages/dd/49/d9ea004ee2e4531d2b528841689ee2ba01c6a4b58840efd15e57dd866a86/debugpy-1.8.9-cp312-cp312-win32.whl", hash = "sha256:3e59842d6c4569c65ceb3751075ff8d7e6a6ada209ceca6308c9bde932bcef11", size = 5163641 },
+ { url = "https://files.pythonhosted.org/packages/b1/63/c8b0718024c1187a446316037680e1564bf063c6665c815f17b42c244aba/debugpy-1.8.9-cp312-cp312-win_amd64.whl", hash = "sha256:66eeae42f3137eb428ea3a86d4a55f28da9bd5a4a3d369ba95ecc3a92c1bba53", size = 5203862 },
+ { url = "https://files.pythonhosted.org/packages/cc/8d/eb12dcb977a2d166aac6614e60daddd1eef72881a0343717d7deb0d4868c/debugpy-1.8.9-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:957ecffff80d47cafa9b6545de9e016ae8c9547c98a538ee96ab5947115fb3dd", size = 2489077 },
+ { url = "https://files.pythonhosted.org/packages/87/2b/3b7a00d8d2bb891cfa33240575c2d5fc3fa6e0bc75567f4ece59b9d3d6ea/debugpy-1.8.9-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1efbb3ff61487e2c16b3e033bc8595aea578222c08aaf3c4bf0f93fadbd662ee", size = 4219198 },
+ { url = "https://files.pythonhosted.org/packages/5f/a1/f489026a65fabfff8c73bd51b880c130d636e02b1847564141fe3957d94f/debugpy-1.8.9-cp313-cp313-win32.whl", hash = "sha256:7c4d65d03bee875bcb211c76c1d8f10f600c305dbd734beaed4077e902606fee", size = 5163014 },
+ { url = "https://files.pythonhosted.org/packages/e6/84/6070908dd163121358eb9d76fcc94f05bc99d2f89a85fe1b86167bc34ec6/debugpy-1.8.9-cp313-cp313-win_amd64.whl", hash = "sha256:e46b420dc1bea64e5bbedd678148be512442bc589b0111bd799367cde051e71a", size = 5203529 },
+ { url = "https://files.pythonhosted.org/packages/2d/23/3f5804202da11c950dc0caae4a62d0c9aadabdb2daeb5f7aa09838647b5d/debugpy-1.8.9-py2.py3-none-any.whl", hash = "sha256:cc37a6c9987ad743d9c3a14fa1b1a14b7e4e6041f9dd0c8abf8895fe7a97b899", size = 5166094 },
]
[[package]]
@@ -737,6 +737,23 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/4c/a3/ac312faeceffd2d8f86bc6dcb5c401188ba5a01bc88e69bed97578a0dfcd/durationpy-0.9-py3-none-any.whl", hash = "sha256:e65359a7af5cedad07fb77a2dd3f390f8eb0b74cb845589fa6c057086834dd38", size = 3461 },
]
+[[package]]
+name = "earthengine-api"
+version = "1.4.1"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "google-api-python-client" },
+ { name = "google-auth" },
+ { name = "google-auth-httplib2" },
+ { name = "google-cloud-storage" },
+ { name = "httplib2" },
+ { name = "requests" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/df/bc/c8dbdc3f63fff98dcd95afabef71572af733660de33bfcfa8c41babfd41b/earthengine_api-1.4.1.tar.gz", hash = "sha256:fead2e6c5c3d8005c759083c05e79ac509ea2072b47d10f1ae03c1ab33a32bf5", size = 411462 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/f7/4d/69e50b01aad651ad51ad6c889b2034bdae5d49966b8b93a579e704e60866/earthengine_api-1.4.1-py3-none-any.whl", hash = "sha256:db382aa2a8ca39a35d5ff3e1a14c92a0b362dd1fd5697e6bb3f4242b778b36d9", size = 457229 },
+]
+
[[package]]
name = "email-validator"
version = "2.2.0"
@@ -801,41 +818,13 @@ standard = [
{ name = "uvicorn", extra = ["standard"] },
]
-[package.optional-dependencies]
-standard = [
- { name = "email-validator" },
- { name = "fastapi-cli", extra = ["standard"] },
- { name = "httpx" },
- { name = "jinja2" },
- { name = "python-multipart" },
- { name = "uvicorn", extra = ["standard"] },
-]
-
-[[package]]
-name = "fastapi-cli"
-version = "0.0.5"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "typer" },
- { name = "uvicorn", extra = ["standard"] },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/c5/f8/1ad5ce32d029aeb9117e9a5a9b3e314a8477525d60c12a9b7730a3c186ec/fastapi_cli-0.0.5.tar.gz", hash = "sha256:d30e1239c6f46fcb95e606f02cdda59a1e2fa778a54b64686b3ff27f6211ff9f", size = 15571 }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/24/ea/4b5011012ac925fe2f83b19d0e09cee9d324141ec7bf5e78bb2817f96513/fastapi_cli-0.0.5-py3-none-any.whl", hash = "sha256:e94d847524648c748a5350673546bbf9bcaeb086b33c24f2e82e021436866a46", size = 9489 },
-]
-
-[package.optional-dependencies]
-standard = [
- { name = "uvicorn", extra = ["standard"] },
-]
-
[[package]]
name = "fastjsonschema"
-version = "2.20.0"
+version = "2.21.0"
source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/03/3f/3ad5e7be13b4b8b55f4477141885ab2364f65d5f6ad5f7a9daffd634d066/fastjsonschema-2.20.0.tar.gz", hash = "sha256:3d48fc5300ee96f5d116f10fe6f28d938e6008f59a6a025c2649475b87f76a23", size = 373056 }
+sdist = { url = "https://files.pythonhosted.org/packages/31/d0/492a26afa3bdd0cb5dd78f59d7f4ca902d8e335856530e599e0d1ed9140d/fastjsonschema-2.21.0.tar.gz", hash = "sha256:a02026bbbedc83729da3bfff215564b71902757f33f60089f1abae193daa4771", size = 373839 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/6d/ca/086311cdfc017ec964b2436fe0c98c1f4efcb7e4c328956a22456e497655/fastjsonschema-2.20.0-py3-none-any.whl", hash = "sha256:5875f0b0fa7a0043a91e93a9b8f793bcbbba9691e7fd83dca95c28ba26d21f0a", size = 23543 },
+ { url = "https://files.pythonhosted.org/packages/3f/3a/404a60bb9789ce4daecbb4ec780bee1c46d2ea5258cf689b7ab63acefd6f/fastjsonschema-2.21.0-py3-none-any.whl", hash = "sha256:5b23b8e7c9c6adc0ecb91c03a0768cb48cd154d9159378a69c8318532e0b5cbf", size = 23911 },
]
[[package]]
@@ -977,6 +966,35 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/c6/b2/454d6e7f0158951d8a78c2e1eb4f69ae81beb8dca5fee9809c6c99e9d0d0/fsspec-2024.10.0-py3-none-any.whl", hash = "sha256:03b9a6785766a4de40368b88906366755e2819e758b83705c88cd7cb5fe81871", size = 179641 },
]
+[[package]]
+name = "geojson-pydantic"
+version = "1.1.2"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "pydantic" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/1d/92/f9fa6432ca49e5e702ed9e95155e919440087f3e3f99bb6ad5d06d153813/geojson_pydantic-1.1.2.tar.gz", hash = "sha256:be3b686e059dad95caff1ea411f020333b2c6182d87fcc4f69d1cbde2cca2c09", size = 9231 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/26/ee/b0f25682efc6a799156d2ede4540d102f0e455119cc8436135911e387a1f/geojson_pydantic-1.1.2-py3-none-any.whl", hash = "sha256:2488736307c1717469419110b31413277fc1095eb2137592d5417e6100268d0f", size = 8721 },
+]
+
+[[package]]
+name = "geopandas"
+version = "1.0.1"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "numpy" },
+ { name = "packaging" },
+ { name = "pandas" },
+ { name = "pyogrio" },
+ { name = "pyproj" },
+ { name = "shapely" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/39/08/2cf5d85356e45b10b8d066cf4c3ba1e9e3185423c48104eed87e8afd0455/geopandas-1.0.1.tar.gz", hash = "sha256:b8bf70a5534588205b7a56646e2082fb1de9a03599651b3d80c99ea4c2ca08ab", size = 317736 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/c4/64/7d344cfcef5efddf9cf32f59af7f855828e9d74b5f862eddf5bfd9f25323/geopandas-1.0.1-py3-none-any.whl", hash = "sha256:01e147d9420cc374d26f51fc23716ac307f32b49406e4bd8462c07e82ed1d3d6", size = 323587 },
+]
+
[[package]]
name = "gitdb"
version = "4.0.11"
@@ -1001,6 +1019,38 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/e9/bd/cc3a402a6439c15c3d4294333e13042b915bbeab54edc457c723931fed3f/GitPython-3.1.43-py3-none-any.whl", hash = "sha256:eec7ec56b92aad751f9912a73404bc02ba212a23adb2c7098ee668417051a1ff", size = 207337 },
]
+[[package]]
+name = "google-api-core"
+version = "2.23.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "google-auth" },
+ { name = "googleapis-common-protos" },
+ { name = "proto-plus" },
+ { name = "protobuf" },
+ { name = "requests" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/fa/6b/b98553c2061c4e2186f5bbfb1aa1a6ef13fc0775c096d18595d3c99ba023/google_api_core-2.23.0.tar.gz", hash = "sha256:2ceb087315e6af43f256704b871d99326b1f12a9d6ce99beaedec99ba26a0ace", size = 160094 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/17/a4/c26886d57d90032c5f74c2e80aefdc38ec58551fc46bd4ce79fb2c9389fa/google_api_core-2.23.0-py3-none-any.whl", hash = "sha256:c20100d4c4c41070cf365f1d8ddf5365915291b5eb11b83829fbd1c999b5122f", size = 156554 },
+]
+
+[[package]]
+name = "google-api-python-client"
+version = "2.154.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "google-api-core" },
+ { name = "google-auth" },
+ { name = "google-auth-httplib2" },
+ { name = "httplib2" },
+ { name = "uritemplate" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/b8/fa/861931cf33f3d91d0d17001af3249cfc2af2b5a1b8472604420c025f3339/google_api_python_client-2.154.0.tar.gz", hash = "sha256:1b420062e03bfcaa1c79e2e00a612d29a6a934151ceb3d272fe150a656dc8f17", size = 12070143 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/56/3f/adf5f6b963307765209fc27943516c7c605d250234b01899d524b8f01fe3/google_api_python_client-2.154.0-py2.py3-none-any.whl", hash = "sha256:a521bbbb2ec0ba9d6f307cdd64ed6e21eeac372d1bd7493a4ab5022941f784ad", size = 12573774 },
+]
+
[[package]]
name = "google-auth"
version = "2.36.0"
@@ -1015,6 +1065,79 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/2d/9a/3d5087d27865c2f0431b942b5c4500b7d1b744dd3262fdc973a4c39d099e/google_auth-2.36.0-py2.py3-none-any.whl", hash = "sha256:51a15d47028b66fd36e5c64a82d2d57480075bccc7da37cde257fc94177a61fb", size = 209519 },
]
+[[package]]
+name = "google-auth-httplib2"
+version = "0.2.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "google-auth" },
+ { name = "httplib2" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/56/be/217a598a818567b28e859ff087f347475c807a5649296fb5a817c58dacef/google-auth-httplib2-0.2.0.tar.gz", hash = "sha256:38aa7badf48f974f1eb9861794e9c0cb2a0511a4ec0679b1f886d108f5640e05", size = 10842 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/be/8a/fe34d2f3f9470a27b01c9e76226965863f153d5fbe276f83608562e49c04/google_auth_httplib2-0.2.0-py2.py3-none-any.whl", hash = "sha256:b65a0a2123300dd71281a7bf6e64d65a0759287df52729bdd1ae2e47dc311a3d", size = 9253 },
+]
+
+[[package]]
+name = "google-cloud-core"
+version = "2.4.1"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "google-api-core" },
+ { name = "google-auth" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/b8/1f/9d1e0ba6919668608570418a9a51e47070ac15aeff64261fb092d8be94c0/google-cloud-core-2.4.1.tar.gz", hash = "sha256:9b7749272a812bde58fff28868d0c5e2f585b82f37e09a1f6ed2d4d10f134073", size = 35587 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/5e/0f/2e2061e3fbcb9d535d5da3f58cc8de4947df1786fe6a1355960feb05a681/google_cloud_core-2.4.1-py2.py3-none-any.whl", hash = "sha256:a9e6a4422b9ac5c29f79a0ede9485473338e2ce78d91f2370c01e730eab22e61", size = 29233 },
+]
+
+[[package]]
+name = "google-cloud-storage"
+version = "2.18.2"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "google-api-core" },
+ { name = "google-auth" },
+ { name = "google-cloud-core" },
+ { name = "google-crc32c" },
+ { name = "google-resumable-media" },
+ { name = "requests" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/d6/b7/1554cdeb55d9626a4b8720746cba8119af35527b12e1780164f9ba0f659a/google_cloud_storage-2.18.2.tar.gz", hash = "sha256:aaf7acd70cdad9f274d29332673fcab98708d0e1f4dceb5a5356aaef06af4d99", size = 5532864 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/fc/da/95db7bd4f0bd1644378ac1702c565c0210b004754d925a74f526a710c087/google_cloud_storage-2.18.2-py2.py3-none-any.whl", hash = "sha256:97a4d45c368b7d401ed48c4fdfe86e1e1cb96401c9e199e419d289e2c0370166", size = 130466 },
+]
+
+[[package]]
+name = "google-crc32c"
+version = "1.6.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/67/72/c3298da1a3773102359c5a78f20dae8925f5ea876e37354415f68594a6fb/google_crc32c-1.6.0.tar.gz", hash = "sha256:6eceb6ad197656a1ff49ebfbbfa870678c75be4344feb35ac1edf694309413dc", size = 14472 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/7d/14/ab47972ac79b6e7b03c8be3a7ef44b530a60e69555668dbbf08fc5692a98/google_crc32c-1.6.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:f7a1fc29803712f80879b0806cb83ab24ce62fc8daf0569f2204a0cfd7f68ed4", size = 30267 },
+ { url = "https://files.pythonhosted.org/packages/54/7d/738cb0d25ee55629e7d07da686decf03864a366e5e863091a97b7bd2b8aa/google_crc32c-1.6.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:40b05ab32a5067525670880eb5d169529089a26fe35dce8891127aeddc1950e8", size = 30112 },
+ { url = "https://files.pythonhosted.org/packages/3e/6d/33ca50cbdeec09c31bb5dac277c90994edee975662a4c890bda7ffac90ef/google_crc32c-1.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a9e4b426c3702f3cd23b933436487eb34e01e00327fac20c9aebb68ccf34117d", size = 32861 },
+ { url = "https://files.pythonhosted.org/packages/67/1e/4870896fc81ec77b1b5ebae7fdd680d5a4d40e19a4b6d724032f996ca77a/google_crc32c-1.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51c4f54dd8c6dfeb58d1df5e4f7f97df8abf17a36626a217f169893d1d7f3e9f", size = 32490 },
+ { url = "https://files.pythonhosted.org/packages/00/9c/f5f5af3ddaa7a639d915f8f58b09bbb8d1db90ecd0459b62cd430eb9a4b6/google_crc32c-1.6.0-cp311-cp311-win_amd64.whl", hash = "sha256:bb8b3c75bd157010459b15222c3fd30577042a7060e29d42dabce449c087f2b3", size = 33446 },
+ { url = "https://files.pythonhosted.org/packages/cf/41/65a91657d6a8123c6c12f9aac72127b6ac76dda9e2ba1834026a842eb77c/google_crc32c-1.6.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:ed767bf4ba90104c1216b68111613f0d5926fb3780660ea1198fc469af410e9d", size = 30268 },
+ { url = "https://files.pythonhosted.org/packages/59/d0/ee743a267c7d5c4bb8bd865f7d4c039505f1c8a4b439df047fdc17be9769/google_crc32c-1.6.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:62f6d4a29fea082ac4a3c9be5e415218255cf11684ac6ef5488eea0c9132689b", size = 30113 },
+ { url = "https://files.pythonhosted.org/packages/25/53/e5e449c368dd26ade5fb2bb209e046d4309ed0623be65b13f0ce026cb520/google_crc32c-1.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c87d98c7c4a69066fd31701c4e10d178a648c2cac3452e62c6b24dc51f9fcc00", size = 32995 },
+ { url = "https://files.pythonhosted.org/packages/52/12/9bf6042d5b0ac8c25afed562fb78e51b0641474097e4139e858b45de40a5/google_crc32c-1.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bd5e7d2445d1a958c266bfa5d04c39932dc54093fa391736dbfdb0f1929c1fb3", size = 32614 },
+ { url = "https://files.pythonhosted.org/packages/76/29/fc20f5ec36eac1eea0d0b2de4118c774c5f59c513f2a8630d4db6991f3e0/google_crc32c-1.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:7aec8e88a3583515f9e0957fe4f5f6d8d4997e36d0f61624e70469771584c760", size = 33445 },
+]
+
+[[package]]
+name = "google-resumable-media"
+version = "2.7.2"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "google-crc32c" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/58/5a/0efdc02665dca14e0837b62c8a1a93132c264bd02054a15abb2218afe0ae/google_resumable_media-2.7.2.tar.gz", hash = "sha256:5280aed4629f2b60b847b0d42f9857fd4935c11af266744df33d8074cae92fe0", size = 2163099 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/82/35/b8d3baf8c46695858cb9d8835a53baa1eeb9906ddaf2f728a5f5b640fd1e/google_resumable_media-2.7.2-py2.py3-none-any.whl", hash = "sha256:3ce7551e9fe6d99e9a126101d2536612bb73486721951e9562fee0f90c6ababa", size = 81251 },
+]
+
[[package]]
name = "googleapis-common-protos"
version = "1.66.0"
@@ -1071,37 +1194,37 @@ wheels = [
[[package]]
name = "grpcio"
-version = "1.67.1"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/20/53/d9282a66a5db45981499190b77790570617a604a38f3d103d0400974aeb5/grpcio-1.67.1.tar.gz", hash = "sha256:3dc2ed4cabea4dc14d5e708c2b426205956077cc5de419b4d4079315017e9732", size = 12580022 }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/59/2c/b60d6ea1f63a20a8d09c6db95c4f9a16497913fb3048ce0990ed81aeeca0/grpcio-1.67.1-cp311-cp311-linux_armv7l.whl", hash = "sha256:7818c0454027ae3384235a65210bbf5464bd715450e30a3d40385453a85a70cb", size = 5119075 },
- { url = "https://files.pythonhosted.org/packages/b3/9a/e1956f7ca582a22dd1f17b9e26fcb8229051b0ce6d33b47227824772feec/grpcio-1.67.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ea33986b70f83844cd00814cee4451055cd8cab36f00ac64a31f5bb09b31919e", size = 11009159 },
- { url = "https://files.pythonhosted.org/packages/43/a8/35fbbba580c4adb1d40d12e244cf9f7c74a379073c0a0ca9d1b5338675a1/grpcio-1.67.1-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:c7a01337407dd89005527623a4a72c5c8e2894d22bead0895306b23c6695698f", size = 5629476 },
- { url = "https://files.pythonhosted.org/packages/77/c9/864d336e167263d14dfccb4dbfa7fce634d45775609895287189a03f1fc3/grpcio-1.67.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80b866f73224b0634f4312a4674c1be21b2b4afa73cb20953cbbb73a6b36c3cc", size = 6239901 },
- { url = "https://files.pythonhosted.org/packages/f7/1e/0011408ebabf9bd69f4f87cc1515cbfe2094e5a32316f8714a75fd8ddfcb/grpcio-1.67.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9fff78ba10d4250bfc07a01bd6254a6d87dc67f9627adece85c0b2ed754fa96", size = 5881010 },
- { url = "https://files.pythonhosted.org/packages/b4/7d/fbca85ee9123fb296d4eff8df566f458d738186d0067dec6f0aa2fd79d71/grpcio-1.67.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8a23cbcc5bb11ea7dc6163078be36c065db68d915c24f5faa4f872c573bb400f", size = 6580706 },
- { url = "https://files.pythonhosted.org/packages/75/7a/766149dcfa2dfa81835bf7df623944c1f636a15fcb9b6138ebe29baf0bc6/grpcio-1.67.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1a65b503d008f066e994f34f456e0647e5ceb34cfcec5ad180b1b44020ad4970", size = 6161799 },
- { url = "https://files.pythonhosted.org/packages/09/13/5b75ae88810aaea19e846f5380611837de411181df51fd7a7d10cb178dcb/grpcio-1.67.1-cp311-cp311-win32.whl", hash = "sha256:e29ca27bec8e163dca0c98084040edec3bc49afd10f18b412f483cc68c712744", size = 3616330 },
- { url = "https://files.pythonhosted.org/packages/aa/39/38117259613f68f072778c9638a61579c0cfa5678c2558706b10dd1d11d3/grpcio-1.67.1-cp311-cp311-win_amd64.whl", hash = "sha256:786a5b18544622bfb1e25cc08402bd44ea83edfb04b93798d85dca4d1a0b5be5", size = 4354535 },
- { url = "https://files.pythonhosted.org/packages/6e/25/6f95bd18d5f506364379eabc0d5874873cc7dbdaf0757df8d1e82bc07a88/grpcio-1.67.1-cp312-cp312-linux_armv7l.whl", hash = "sha256:267d1745894200e4c604958da5f856da6293f063327cb049a51fe67348e4f953", size = 5089809 },
- { url = "https://files.pythonhosted.org/packages/10/3f/d79e32e5d0354be33a12db2267c66d3cfeff700dd5ccdd09fd44a3ff4fb6/grpcio-1.67.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:85f69fdc1d28ce7cff8de3f9c67db2b0ca9ba4449644488c1e0303c146135ddb", size = 10981985 },
- { url = "https://files.pythonhosted.org/packages/21/f2/36fbc14b3542e3a1c20fb98bd60c4732c55a44e374a4eb68f91f28f14aab/grpcio-1.67.1-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:f26b0b547eb8d00e195274cdfc63ce64c8fc2d3e2d00b12bf468ece41a0423a0", size = 5588770 },
- { url = "https://files.pythonhosted.org/packages/0d/af/bbc1305df60c4e65de8c12820a942b5e37f9cf684ef5e49a63fbb1476a73/grpcio-1.67.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4422581cdc628f77302270ff839a44f4c24fdc57887dc2a45b7e53d8fc2376af", size = 6214476 },
- { url = "https://files.pythonhosted.org/packages/92/cf/1d4c3e93efa93223e06a5c83ac27e32935f998bc368e276ef858b8883154/grpcio-1.67.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d7616d2ded471231c701489190379e0c311ee0a6c756f3c03e6a62b95a7146e", size = 5850129 },
- { url = "https://files.pythonhosted.org/packages/ae/ca/26195b66cb253ac4d5ef59846e354d335c9581dba891624011da0e95d67b/grpcio-1.67.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8a00efecde9d6fcc3ab00c13f816313c040a28450e5e25739c24f432fc6d3c75", size = 6568489 },
- { url = "https://files.pythonhosted.org/packages/d1/94/16550ad6b3f13b96f0856ee5dfc2554efac28539ee84a51d7b14526da985/grpcio-1.67.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:699e964923b70f3101393710793289e42845791ea07565654ada0969522d0a38", size = 6149369 },
- { url = "https://files.pythonhosted.org/packages/33/0d/4c3b2587e8ad7f121b597329e6c2620374fccbc2e4e1aa3c73ccc670fde4/grpcio-1.67.1-cp312-cp312-win32.whl", hash = "sha256:4e7b904484a634a0fff132958dabdb10d63e0927398273917da3ee103e8d1f78", size = 3599176 },
- { url = "https://files.pythonhosted.org/packages/7d/36/0c03e2d80db69e2472cf81c6123aa7d14741de7cf790117291a703ae6ae1/grpcio-1.67.1-cp312-cp312-win_amd64.whl", hash = "sha256:5721e66a594a6c4204458004852719b38f3d5522082be9061d6510b455c90afc", size = 4346574 },
- { url = "https://files.pythonhosted.org/packages/12/d2/2f032b7a153c7723ea3dea08bffa4bcaca9e0e5bdf643ce565b76da87461/grpcio-1.67.1-cp313-cp313-linux_armv7l.whl", hash = "sha256:aa0162e56fd10a5547fac8774c4899fc3e18c1aa4a4759d0ce2cd00d3696ea6b", size = 5091487 },
- { url = "https://files.pythonhosted.org/packages/d0/ae/ea2ff6bd2475a082eb97db1104a903cf5fc57c88c87c10b3c3f41a184fc0/grpcio-1.67.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:beee96c8c0b1a75d556fe57b92b58b4347c77a65781ee2ac749d550f2a365dc1", size = 10943530 },
- { url = "https://files.pythonhosted.org/packages/07/62/646be83d1a78edf8d69b56647327c9afc223e3140a744c59b25fbb279c3b/grpcio-1.67.1-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:a93deda571a1bf94ec1f6fcda2872dad3ae538700d94dc283c672a3b508ba3af", size = 5589079 },
- { url = "https://files.pythonhosted.org/packages/d0/25/71513d0a1b2072ce80d7f5909a93596b7ed10348b2ea4fdcbad23f6017bf/grpcio-1.67.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e6f255980afef598a9e64a24efce87b625e3e3c80a45162d111a461a9f92955", size = 6213542 },
- { url = "https://files.pythonhosted.org/packages/76/9a/d21236297111052dcb5dc85cd77dc7bf25ba67a0f55ae028b2af19a704bc/grpcio-1.67.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e838cad2176ebd5d4a8bb03955138d6589ce9e2ce5d51c3ada34396dbd2dba8", size = 5850211 },
- { url = "https://files.pythonhosted.org/packages/2d/fe/70b1da9037f5055be14f359026c238821b9bcf6ca38a8d760f59a589aacd/grpcio-1.67.1-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:a6703916c43b1d468d0756c8077b12017a9fcb6a1ef13faf49e67d20d7ebda62", size = 6572129 },
- { url = "https://files.pythonhosted.org/packages/74/0d/7df509a2cd2a54814598caf2fb759f3e0b93764431ff410f2175a6efb9e4/grpcio-1.67.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:917e8d8994eed1d86b907ba2a61b9f0aef27a2155bca6cbb322430fc7135b7bb", size = 6149819 },
- { url = "https://files.pythonhosted.org/packages/0a/08/bc3b0155600898fd10f16b79054e1cca6cb644fa3c250c0fe59385df5e6f/grpcio-1.67.1-cp313-cp313-win32.whl", hash = "sha256:e279330bef1744040db8fc432becc8a727b84f456ab62b744d3fdb83f327e121", size = 3596561 },
- { url = "https://files.pythonhosted.org/packages/5a/96/44759eca966720d0f3e1b105c43f8ad4590c97bf8eb3cd489656e9590baa/grpcio-1.67.1-cp313-cp313-win_amd64.whl", hash = "sha256:fa0c739ad8b1996bd24823950e3cb5152ae91fca1c09cc791190bf1627ffefba", size = 4346042 },
+version = "1.68.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/d5/da/132615afbfc722df4bba963844843a205aa298fd5f9a03fa2995e8dddf11/grpcio-1.68.0.tar.gz", hash = "sha256:7e7483d39b4a4fddb9906671e9ea21aaad4f031cdfc349fec76bdfa1e404543a", size = 12682655 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/cf/5f/019594ff8130ce84f9317cfc1e3d2c2beef2b74fd8822c5f1dfe237cb0d5/grpcio-1.68.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:3b2b559beb2d433129441783e5f42e3be40a9e1a89ec906efabf26591c5cd415", size = 5180685 },
+ { url = "https://files.pythonhosted.org/packages/7b/59/34dae935bbb42f3e8929c90e9dfff49090cef412cf767cf4f14cd01ded18/grpcio-1.68.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e46541de8425a4d6829ac6c5d9b16c03c292105fe9ebf78cb1c31e8d242f9155", size = 11150577 },
+ { url = "https://files.pythonhosted.org/packages/a6/5e/3df718124aadfc5d565c70ebe6a32c9ee747a9ccf211041596dd471fd763/grpcio-1.68.0-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:c1245651f3c9ea92a2db4f95d37b7597db6b246d5892bca6ee8c0e90d76fb73c", size = 5685490 },
+ { url = "https://files.pythonhosted.org/packages/4c/57/4e39ac1030875e0497debc9d5a4b3a1478ee1bd957ba4b87c27fcd7a3545/grpcio-1.68.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f1931c7aa85be0fa6cea6af388e576f3bf6baee9e5d481c586980c774debcb4", size = 6316329 },
+ { url = "https://files.pythonhosted.org/packages/26/fe/9208707b0c07d28bb9f466340e4f052142fe40d54ea5c2d57870ba0d6860/grpcio-1.68.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b0ff09c81e3aded7a183bc6473639b46b6caa9c1901d6f5e2cba24b95e59e30", size = 5939890 },
+ { url = "https://files.pythonhosted.org/packages/05/b9/e344bf744e095e2795fe942ce432add2d03761c3c440a5747705ff5b8efb/grpcio-1.68.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8c73f9fbbaee1a132487e31585aa83987ddf626426d703ebcb9a528cf231c9b1", size = 6644776 },
+ { url = "https://files.pythonhosted.org/packages/ef/bf/0856c5fa93c3e1bd9f42da62a7aa6988c7a8f95f30dc4f9a3d631f75bb8e/grpcio-1.68.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6b2f98165ea2790ea159393a2246b56f580d24d7da0d0342c18a085299c40a75", size = 6211889 },
+ { url = "https://files.pythonhosted.org/packages/63/40/eac5203baf7f45c56b16645c81a4c8ed515510fe81322371e8625758239b/grpcio-1.68.0-cp311-cp311-win32.whl", hash = "sha256:e1e7ed311afb351ff0d0e583a66fcb39675be112d61e7cfd6c8269884a98afbc", size = 3650597 },
+ { url = "https://files.pythonhosted.org/packages/e4/31/120ec7132e6b82a0df91952f71aa0aa5e9f23d70152b58d96fac9b3e7cfe/grpcio-1.68.0-cp311-cp311-win_amd64.whl", hash = "sha256:e0d2f68eaa0a755edd9a47d40e50dba6df2bceda66960dee1218da81a2834d27", size = 4400445 },
+ { url = "https://files.pythonhosted.org/packages/30/66/79508e13feee4182e6f2ea260ad4eea96b8b396bbf81334660142a6eecab/grpcio-1.68.0-cp312-cp312-linux_armv7l.whl", hash = "sha256:8af6137cc4ae8e421690d276e7627cfc726d4293f6607acf9ea7260bd8fc3d7d", size = 5147575 },
+ { url = "https://files.pythonhosted.org/packages/41/8d/19ffe12a736f57e9860bad506c0e711dd3c9c7c9f06030cfd87fa3eb6b45/grpcio-1.68.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:4028b8e9a3bff6f377698587d642e24bd221810c06579a18420a17688e421af7", size = 11126767 },
+ { url = "https://files.pythonhosted.org/packages/9c/c6/9aa8178d0fa3c893531a3ef38fa65a0e9997047ded9a8a20e3aa5706f923/grpcio-1.68.0-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:f60fa2adf281fd73ae3a50677572521edca34ba373a45b457b5ebe87c2d01e1d", size = 5644649 },
+ { url = "https://files.pythonhosted.org/packages/36/91/e2c451a103b8b595d3e3725fc78c76242d38a96cfe22dd9a47c31faba99d/grpcio-1.68.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e18589e747c1e70b60fab6767ff99b2d0c359ea1db8a2cb524477f93cdbedf5b", size = 6292623 },
+ { url = "https://files.pythonhosted.org/packages/0b/5f/cbb2c0dfb3f7b893b30d6daca0a7829067f302c55f20b9c470111f48e6e3/grpcio-1.68.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e0d30f3fee9372796f54d3100b31ee70972eaadcc87314be369360248a3dcffe", size = 5905873 },
+ { url = "https://files.pythonhosted.org/packages/9d/37/ddc32a46baccac6a0a3cdcabd6908d23dfa526f061a1b81211fe029489c7/grpcio-1.68.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:7e0a3e72c0e9a1acab77bef14a73a416630b7fd2cbd893c0a873edc47c42c8cd", size = 6630863 },
+ { url = "https://files.pythonhosted.org/packages/45/69/4f74f67ae33be4422bd20050e09ad8b5318f8827a7eb153507de8fb78aef/grpcio-1.68.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a831dcc343440969aaa812004685ed322cdb526cd197112d0db303b0da1e8659", size = 6200368 },
+ { url = "https://files.pythonhosted.org/packages/91/e9/25e51915cd972e8c66daf29644e653135f967d7411eccd2651fa347a6337/grpcio-1.68.0-cp312-cp312-win32.whl", hash = "sha256:5a180328e92b9a0050958ced34dddcb86fec5a8b332f5a229e353dafc16cd332", size = 3637786 },
+ { url = "https://files.pythonhosted.org/packages/e2/1d/b1250907a727f08de6508d752f367e4b46d113d4eac9eb919ebd9da6a5d6/grpcio-1.68.0-cp312-cp312-win_amd64.whl", hash = "sha256:2bddd04a790b69f7a7385f6a112f46ea0b34c4746f361ebafe9ca0be567c78e9", size = 4390622 },
+ { url = "https://files.pythonhosted.org/packages/fb/2d/d9cbdb75dc99141705f08474e97b181034c2e53a345d94b58e3c55f4dd92/grpcio-1.68.0-cp313-cp313-linux_armv7l.whl", hash = "sha256:fc05759ffbd7875e0ff2bd877be1438dfe97c9312bbc558c8284a9afa1d0f40e", size = 5149697 },
+ { url = "https://files.pythonhosted.org/packages/6f/37/a848871a5adba8cd571fa89e8aabc40ca0c475bd78b2e645e1649b20e095/grpcio-1.68.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:15fa1fe25d365a13bc6d52fcac0e3ee1f9baebdde2c9b3b2425f8a4979fccea1", size = 11084394 },
+ { url = "https://files.pythonhosted.org/packages/1f/52/b09374aab9c9c2f66627ce7de39eef41d73670aa0f75286d91dcc22a2dd8/grpcio-1.68.0-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:32a9cb4686eb2e89d97022ecb9e1606d132f85c444354c17a7dbde4a455e4a3b", size = 5645417 },
+ { url = "https://files.pythonhosted.org/packages/01/78/ec5ad7c44d7adaf0b932fd41ce8c59a95177a8c79c947c77204600b652db/grpcio-1.68.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dba037ff8d284c8e7ea9a510c8ae0f5b016004f13c3648f72411c464b67ff2fb", size = 6291062 },
+ { url = "https://files.pythonhosted.org/packages/f7/7f/7f5a1a8dc63a42b78ca930d195eb0c97aa7a09e8553bb3a07b7cf37f6bc1/grpcio-1.68.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0efbbd849867e0e569af09e165363ade75cf84f5229b2698d53cf22c7a4f9e21", size = 5906505 },
+ { url = "https://files.pythonhosted.org/packages/41/7b/0b048b8ad1a09fab5f4567fba2a569fb9106c4c1bb473c009c25659542cb/grpcio-1.68.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:4e300e6978df0b65cc2d100c54e097c10dfc7018b9bd890bbbf08022d47f766d", size = 6635069 },
+ { url = "https://files.pythonhosted.org/packages/5e/c5/9f0ebc9cfba8309a15a9786c953ce99eaf4e1ca2df402b3c5ecf42493bd4/grpcio-1.68.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:6f9c7ad1a23e1047f827385f4713b5b8c6c7d325705be1dd3e31fb00dcb2f665", size = 6200683 },
+ { url = "https://files.pythonhosted.org/packages/ce/e1/d3eba05299d5acdae6c11d056308b885f1d1be0b328baa8233d5d139ec1d/grpcio-1.68.0-cp313-cp313-win32.whl", hash = "sha256:3ac7f10850fd0487fcce169c3c55509101c3bde2a3b454869639df2176b60a03", size = 3637301 },
+ { url = "https://files.pythonhosted.org/packages/3c/c1/decb2b368a54c00a6ee815c3f610903f36432e3cb591d43369319826b05e/grpcio-1.68.0-cp313-cp313-win_amd64.whl", hash = "sha256:afbf45a62ba85a720491bfe9b2642f8761ff348006f5ef67e4622621f116b04a", size = 4390939 },
]
[[package]]
@@ -1126,6 +1249,18 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/87/f5/72347bc88306acb359581ac4d52f23c0ef445b57157adedb9aee0cd689d2/httpcore-1.0.7-py3-none-any.whl", hash = "sha256:a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd", size = 78551 },
]
+[[package]]
+name = "httplib2"
+version = "0.22.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "pyparsing" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/3d/ad/2371116b22d616c194aa25ec410c9c6c37f23599dcd590502b74db197584/httplib2-0.22.0.tar.gz", hash = "sha256:d7a10bc5ef5ab08322488bde8c726eeee5c8618723fdb399597ec58f3d82df81", size = 351116 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/a8/6c/d2fbdaaa5959339d53ba38e94c123e4e84b8fbc4b84beb0e70d7c1608486/httplib2-0.22.0-py3-none-any.whl", hash = "sha256:14ae0a53c1ba8f3d37e9e27cf37eabb0fb9980f435ba405d546948b009dd64dc", size = 96854 },
+]
+
[[package]]
name = "httptools"
version = "0.6.4"
@@ -1182,7 +1317,7 @@ wheels = [
[[package]]
name = "huggingface-hub"
-version = "0.26.2"
+version = "0.26.3"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "filelock" },
@@ -1193,9 +1328,9 @@ dependencies = [
{ name = "tqdm" },
{ name = "typing-extensions" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/d5/a8/882ae5d1cfa7c9c5be32feee4cee56d9873078913953423e47a756da110d/huggingface_hub-0.26.2.tar.gz", hash = "sha256:b100d853465d965733964d123939ba287da60a547087783ddff8a323f340332b", size = 375621 }
+sdist = { url = "https://files.pythonhosted.org/packages/4c/66/fa78b1cbcae512a30c2d4c702eba0e3a771ad7b304f85d5df0b339ad82f7/huggingface_hub-0.26.3.tar.gz", hash = "sha256:90e1fe62ffc26757a073aaad618422b899ccf9447c2bba8c902a90bef5b42e1d", size = 375690 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/60/bf/cea0b9720c32fa01b0c4ec4b16b9f4ae34ca106b202ebbae9f03ab98cd8f/huggingface_hub-0.26.2-py3-none-any.whl", hash = "sha256:98c2a5a8e786c7b2cb6fdeb2740893cba4d53e312572ed3d8afafda65b128c46", size = 447536 },
+ { url = "https://files.pythonhosted.org/packages/95/9b/3068fb3ae0b498eb66960ca5f4d92a81c91458cacd4dc17bfa6d40ce90fb/huggingface_hub-0.26.3-py3-none-any.whl", hash = "sha256:e66aa99e569c2d5419240a9e553ad07245a5b1300350bfbc5a4945cf7432991b", size = 447570 },
]
[[package]]
@@ -1212,11 +1347,11 @@ wheels = [
[[package]]
name = "identify"
-version = "2.6.2"
+version = "2.6.3"
source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/02/79/7a520fc5011e02ca3f3285b5f6820eaf80443eb73e3733f73c02fb42ba0b/identify-2.6.2.tar.gz", hash = "sha256:fab5c716c24d7a789775228823797296a2994b075fb6080ac83a102772a98cbd", size = 99113 }
+sdist = { url = "https://files.pythonhosted.org/packages/1a/5f/05f0d167be94585d502b4adf8c7af31f1dc0b1c7e14f9938a88fdbbcf4a7/identify-2.6.3.tar.gz", hash = "sha256:62f5dae9b5fef52c84cc188514e9ea4f3f636b1d8799ab5ebc475471f9e47a02", size = 99179 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/e0/86/c4395700f3c5475424fb5c41e20c16be28d10c904aee4d005ba3217fc8e7/identify-2.6.2-py2.py3-none-any.whl", hash = "sha256:c097384259f49e372f4ea00a19719d95ae27dd5ff0fd77ad630aa891306b82f3", size = 98982 },
+ { url = "https://files.pythonhosted.org/packages/c9/f5/09644a3ad803fae9eca8efa17e1f2aef380c7f0b02f7ec4e8d446e51d64a/identify-2.6.3-py2.py3-none-any.whl", hash = "sha256:9edba65473324c2ea9684b1f944fe3191db3345e50b6d04571d10ed164f8d7bd", size = 99049 },
]
[[package]]
@@ -1249,6 +1384,15 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/e1/6a/4604f9ae2fa62ef47b9de2fa5ad599589d28c9fd1d335f32759813dfa91e/importlib_resources-6.4.5-py3-none-any.whl", hash = "sha256:ac29d5f956f01d5e4bb63102a5a19957f1b9175e45649977264a1416783bb717", size = 36115 },
]
+[[package]]
+name = "iniconfig"
+version = "2.0.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/d7/4b/cbd8e699e64a6f16ca3a8220661b5f83792b3017d0f79807cb8708d33913/iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", size = 4646 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374", size = 5892 },
+]
+
[[package]]
name = "ipykernel"
version = "6.29.5"
@@ -1332,55 +1476,57 @@ wheels = [
[[package]]
name = "jiter"
-version = "0.7.1"
+version = "0.8.0"
source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/46/e5/50ff23c9bba2722d2f0f55ba51e57f7cbab9a4be758e6b9b263ef51e6024/jiter-0.7.1.tar.gz", hash = "sha256:448cf4f74f7363c34cdef26214da527e8eeffd88ba06d0b80b485ad0667baf5d", size = 162334 }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/26/e5/18b30b3015ae1df916cadd42b428f9a47a7277a52b041e4caf939e6c3c21/jiter-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ad04a23a91f3d10d69d6c87a5f4471b61c2c5cd6e112e85136594a02043f462c", size = 291198 },
- { url = "https://files.pythonhosted.org/packages/7d/e3/a70e5b98602d24c617e829d6714b3e4f7f9912fdc2844682653dafb5eba0/jiter-0.7.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e47a554de88dff701226bb5722b7f1b6bccd0b98f1748459b7e56acac2707a5", size = 303513 },
- { url = "https://files.pythonhosted.org/packages/34/35/c44064c12e2d189dd3a6135e3b4f9f64167d81abada4eeb0dd75313ad9ad/jiter-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1e44fff69c814a2e96a20b4ecee3e2365e9b15cf5fe4e00869d18396daa91dab", size = 328470 },
- { url = "https://files.pythonhosted.org/packages/de/88/55747df3d3472a08d25ab59752cc7a2682c9bfb38d8dbe00d5fadc35ae49/jiter-0.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:df0a1d05081541b45743c965436f8b5a1048d6fd726e4a030113a2699a6046ea", size = 347484 },
- { url = "https://files.pythonhosted.org/packages/8e/f6/afa8d156b7c166dceae66e01d0aa9933f7c3afcc5af3901e717237e5b98c/jiter-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f22cf8f236a645cb6d8ffe2a64edb5d2b66fb148bf7c75eea0cb36d17014a7bc", size = 373483 },
- { url = "https://files.pythonhosted.org/packages/b7/ab/38c652c71bfd7a8e00fc0962a6985186e9741cfd9dde00a0d8c0138a9c07/jiter-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:da8589f50b728ea4bf22e0632eefa125c8aa9c38ed202a5ee6ca371f05eeb3ff", size = 390563 },
- { url = "https://files.pythonhosted.org/packages/62/02/1dacf3b95d13f36298a261723c52b45701db485ee104f7677cb931697395/jiter-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f20de711224f2ca2dbb166a8d512f6ff48c9c38cc06b51f796520eb4722cc2ce", size = 325508 },
- { url = "https://files.pythonhosted.org/packages/b9/a8/ac3509099030304b28c226b432347f5420297e8bec4cb1f27f716a4f23cf/jiter-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8a9803396032117b85ec8cbf008a54590644a062fedd0425cbdb95e4b2b60479", size = 365355 },
- { url = "https://files.pythonhosted.org/packages/92/fe/85fc2dd31473bf71b1e78311d09bb1f90211b5b327b9b884684d45e9ae48/jiter-0.7.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:3d8bae77c82741032e9d89a4026479061aba6e646de3bf5f2fc1ae2bbd9d06e0", size = 514802 },
- { url = "https://files.pythonhosted.org/packages/06/8c/fa1f8b98618b476c346ad57e9eb85293cd2acd7680926b2f27f884c7aebc/jiter-0.7.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3dc9939e576bbc68c813fc82f6620353ed68c194c7bcf3d58dc822591ec12490", size = 497983 },
- { url = "https://files.pythonhosted.org/packages/ee/13/0e726eaee6c5dcd14582d28e90a1381ff4ab1c6b583e597f4e0d4a0950bd/jiter-0.7.1-cp311-none-win32.whl", hash = "sha256:f7605d24cd6fab156ec89e7924578e21604feee9c4f1e9da34d8b67f63e54892", size = 198800 },
- { url = "https://files.pythonhosted.org/packages/2b/30/6a79fd25f36660cec4fb46c5fd0d52375584fdc7a874889b24111cb666af/jiter-0.7.1-cp311-none-win_amd64.whl", hash = "sha256:f3ea649e7751a1a29ea5ecc03c4ada0a833846c59c6da75d747899f9b48b7282", size = 203785 },
- { url = "https://files.pythonhosted.org/packages/10/b3/de89eae8f57dc0ee5f6e3aa1ffcdee0364ef9ef85be81006fd17d7710ffa/jiter-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:ad36a1155cbd92e7a084a568f7dc6023497df781adf2390c345dd77a120905ca", size = 291900 },
- { url = "https://files.pythonhosted.org/packages/c0/ff/0d804eff4751fceeabc6311d4b07e956daa06fa58f05931887dc7454466b/jiter-0.7.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7ba52e6aaed2dc5c81a3d9b5e4ab95b039c4592c66ac973879ba57c3506492bb", size = 304390 },
- { url = "https://files.pythonhosted.org/packages/e8/26/c258bef532d113a7ac26242893fc9760040a4846dec731098b7f5ac3fca7/jiter-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2b7de0b6f6728b678540c7927587e23f715284596724be203af952418acb8a2d", size = 328710 },
- { url = "https://files.pythonhosted.org/packages/71/92/644dc215cbb9816112e28f3b43a8c8e769f083434a05fc3afd269c444f51/jiter-0.7.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9463b62bd53c2fb85529c700c6a3beb2ee54fde8bef714b150601616dcb184a6", size = 347569 },
- { url = "https://files.pythonhosted.org/packages/c6/02/795a3535262c54595bd97e375cc03b443717febb37723a7f9c077049825b/jiter-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:627164ec01d28af56e1f549da84caf0fe06da3880ebc7b7ee1ca15df106ae172", size = 373641 },
- { url = "https://files.pythonhosted.org/packages/7d/35/c7e9a06a49116e3618954f6c8a26816a7959c0f9e5617b0073e4145c5d6d/jiter-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:25d0e5bf64e368b0aa9e0a559c3ab2f9b67e35fe7269e8a0d81f48bbd10e8963", size = 388828 },
- { url = "https://files.pythonhosted.org/packages/fb/05/894144e4cbc1b9d46756db512268a90f84fc1d8bd28f1a17e0fef5aaf5c5/jiter-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c244261306f08f8008b3087059601997016549cb8bb23cf4317a4827f07b7d74", size = 325511 },
- { url = "https://files.pythonhosted.org/packages/19/d3/e6674ac34de53787504e4fb309084f824df321f24113121d94bf53808be3/jiter-0.7.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7ded4e4b75b68b843b7cea5cd7c55f738c20e1394c68c2cb10adb655526c5f1b", size = 365940 },
- { url = "https://files.pythonhosted.org/packages/e9/ca/c773f0ce186090cc69a2c97b8dab3dad14ae9988a657a20d879458a8407e/jiter-0.7.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:80dae4f1889b9d09e5f4de6b58c490d9c8ce7730e35e0b8643ab62b1538f095c", size = 515430 },
- { url = "https://files.pythonhosted.org/packages/16/5f/c98f6e6362fbc7c87ad384ba8506983fca9bb55ea0af7efcb23e7dd22817/jiter-0.7.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5970cf8ec943b51bce7f4b98d2e1ed3ada170c2a789e2db3cb484486591a176a", size = 497389 },
- { url = "https://files.pythonhosted.org/packages/30/60/f60e12469afc9096bac3df0fda53de707ed5105d84322a0d1bc4ad03ee3e/jiter-0.7.1-cp312-none-win32.whl", hash = "sha256:701d90220d6ecb3125d46853c8ca8a5bc158de8c49af60fd706475a49fee157e", size = 198546 },
- { url = "https://files.pythonhosted.org/packages/01/d2/d8ec257544f7991384a46fccee6abdc5065cfede26354bb2c86251858a92/jiter-0.7.1-cp312-none-win_amd64.whl", hash = "sha256:7824c3ecf9ecf3321c37f4e4d4411aad49c666ee5bc2a937071bdd80917e4533", size = 202792 },
- { url = "https://files.pythonhosted.org/packages/b5/cf/00a93a9968fc21b9ecfcabb130a8c822138594ac4a00b7bff9cbb38daa7f/jiter-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:097676a37778ba3c80cb53f34abd6943ceb0848263c21bf423ae98b090f6c6ba", size = 291039 },
- { url = "https://files.pythonhosted.org/packages/22/9a/0eb3eddffeca703f6adaaf117ba93ac3336fb323206259a86c2993cec9ad/jiter-0.7.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3298af506d4271257c0a8f48668b0f47048d69351675dd8500f22420d4eec378", size = 302468 },
- { url = "https://files.pythonhosted.org/packages/b1/95/b4da75e93752edfd6dd0df8f7723a6575e8a8bdce2e82f4458eb5564936a/jiter-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:12fd88cfe6067e2199964839c19bd2b422ca3fd792949b8f44bb8a4e7d21946a", size = 328401 },
- { url = "https://files.pythonhosted.org/packages/28/af/7fa53804a2e7e309ce66822c9484fd7d4f8ef452be3937aab8a93a82c54b/jiter-0.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dacca921efcd21939123c8ea8883a54b9fa7f6545c8019ffcf4f762985b6d0c8", size = 347237 },
- { url = "https://files.pythonhosted.org/packages/30/0c/0b89bd3dce7d330d8ee878b0a95899b73e30cb55d2b2c41998276350d4a0/jiter-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de3674a5fe1f6713a746d25ad9c32cd32fadc824e64b9d6159b3b34fd9134143", size = 373558 },
- { url = "https://files.pythonhosted.org/packages/24/96/c75633b99d57dd8b8457f88f51201805c93b314e369fba69829d726bc2a5/jiter-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65df9dbae6d67e0788a05b4bad5706ad40f6f911e0137eb416b9eead6ba6f044", size = 388251 },
- { url = "https://files.pythonhosted.org/packages/64/39/369e6ff198003f55acfcdb58169c774473082d3303cddcd24334af534c4e/jiter-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ba9a358d59a0a55cccaa4957e6ae10b1a25ffdabda863c0343c51817610501d", size = 325020 },
- { url = "https://files.pythonhosted.org/packages/80/26/0c386fa233a78997db5fa7b362e6f35a37d2656d09e521b0600f29933992/jiter-0.7.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:576eb0f0c6207e9ede2b11ec01d9c2182973986514f9c60bc3b3b5d5798c8f50", size = 365211 },
- { url = "https://files.pythonhosted.org/packages/21/4e/bfebe799924a39f181874b5e9041b792ee67768a8b160814e016a7c9a40d/jiter-0.7.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:e550e29cdf3577d2c970a18f3959e6b8646fd60ef1b0507e5947dc73703b5627", size = 514904 },
- { url = "https://files.pythonhosted.org/packages/a7/81/b3c72c6691acd29cf707df1a0b300e6726385b3c1ced8dc20424c4452699/jiter-0.7.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:81d968dbf3ce0db2e0e4dec6b0a0d5d94f846ee84caf779b07cab49f5325ae43", size = 497102 },
- { url = "https://files.pythonhosted.org/packages/1e/c3/766f9ec97df0441597878c7949da2b241a12a381c3affa7ca761734c8c74/jiter-0.7.1-cp313-none-win32.whl", hash = "sha256:f892e547e6e79a1506eb571a676cf2f480a4533675f834e9ae98de84f9b941ac", size = 198119 },
- { url = "https://files.pythonhosted.org/packages/76/01/cbc0136784a3ffefb5ca5326f8167780c5c3de0c81b6b81b773a973c571e/jiter-0.7.1-cp313-none-win_amd64.whl", hash = "sha256:0302f0940b1455b2a7fb0409b8d5b31183db70d2b07fd177906d83bf941385d1", size = 199236 },
+sdist = { url = "https://files.pythonhosted.org/packages/78/1e/3462be93c2443392a710ae1c2bba2239f44bbf0c826baea77da9f8311678/jiter-0.8.0.tar.gz", hash = "sha256:86fee98b569d4cc511ff2e3ec131354fafebd9348a487549c31ad371ae730310", size = 162953 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/84/e8/336b77bdda32e9a6167ca80b454905772c515a65c35e93d97ed6dc9b6fc0/jiter-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:f6f4e645efd96b4690b9b6091dbd4e0fa2885ba5c57a0305c1916b75b4f30ff6", size = 304423 },
+ { url = "https://files.pythonhosted.org/packages/c9/87/28f93b5373cbca74ac3c6fd6e2025113f1a73164beb7cd966cdaed88cf70/jiter-0.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f61cf6d93c1ade9b8245c9f14b7900feadb0b7899dbe4aa8de268b705647df81", size = 310783 },
+ { url = "https://files.pythonhosted.org/packages/57/2b/a23342154077995562bedb9c6dc85c6d113910ae54a225118f2b4f6e5765/jiter-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0396bc5cb1309c6dab085e70bb3913cdd92218315e47b44afe9eace68ee8adaa", size = 333675 },
+ { url = "https://files.pythonhosted.org/packages/ee/cb/26dc6e8ae37208e5adc992fc762172efd65b658756e78daf803916d49996/jiter-0.8.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:62d0e42ec5dc772bd8554a304358220be5d97d721c4648b23f3a9c01ccc2cb26", size = 354158 },
+ { url = "https://files.pythonhosted.org/packages/e7/5e/de7b2bab00b9648940bb31e34c5b13fffe890e3695560cb72439f8fdd44a/jiter-0.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec4b711989860705733fc59fb8c41b2def97041cea656b37cf6c8ea8dee1c3f4", size = 380842 },
+ { url = "https://files.pythonhosted.org/packages/91/c1/f5bad3882d27359a3eb8110f2a0cf9e8fa7a6ffc0b1f7bdb9ad2c5a6facb/jiter-0.8.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:859cc35bf304ab066d88f10a44a3251a9cd057fb11ec23e00be22206db878f4f", size = 388716 },
+ { url = "https://files.pythonhosted.org/packages/bc/8c/052f85d911045c720ddd15bfbb71edc1c9043b54f5ab946d0f5cac7ac02c/jiter-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5000195921aa293b39b9b5bc959d7fa658e7f18f938c0e52732da8e3cc70a278", size = 343308 },
+ { url = "https://files.pythonhosted.org/packages/6c/90/d703274855ee34f4da7b50877042bdef9650298a7125067630a62191db7e/jiter-0.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:36050284c0abde57aba34964d3920f3d6228211b65df7187059bb7c7f143759a", size = 374680 },
+ { url = "https://files.pythonhosted.org/packages/7f/42/6af2ca86e7434ab3c028ddb9c38edcdbff2c3edbd599d0ca5b21aa9dfc02/jiter-0.8.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a88f608e050cfe45c48d771e86ecdbf5258314c883c986d4217cc79e1fb5f689", size = 512131 },
+ { url = "https://files.pythonhosted.org/packages/9d/6c/afc4f73accfb9570a4b729840e4e3607196b924fddbdc346d0f02e662375/jiter-0.8.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:646cf4237665b2e13b4159d8f26d53f59bc9f2e6e135e3a508a2e5dd26d978c6", size = 505038 },
+ { url = "https://files.pythonhosted.org/packages/eb/cf/c3b6821151db25f617d83ff00022dd5769375ead7ab65bf68874b21e0bba/jiter-0.8.0-cp311-none-win32.whl", hash = "sha256:21fe5b8345db1b3023052b2ade9bb4d369417827242892051244af8fae8ba231", size = 204655 },
+ { url = "https://files.pythonhosted.org/packages/f8/72/a3084e9c81ff934c1aa3529ff7c45b6d10d3b5dc649223fb14d7fa1fd6ed/jiter-0.8.0-cp311-none-win_amd64.whl", hash = "sha256:30c2161c5493acf6b6c3c909973fb64ae863747def01cc7574f3954e0a15042c", size = 208198 },
+ { url = "https://files.pythonhosted.org/packages/d1/63/93084c4079b30e7832e1fb907045f8eca146d5d9a67bc62d311332416ab8/jiter-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:d91a52d8f49ada2672a4b808a0c5c25d28f320a2c9ca690e30ebd561eb5a1002", size = 304424 },
+ { url = "https://files.pythonhosted.org/packages/d2/68/ae698958b4d7d27632056cbfeae70e9d7a89ca0954ac6d0ef486afe5d8da/jiter-0.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c38cf25cf7862f61410b7a49684d34eb3b5bcbd7ddaf4773eea40e0bd43de706", size = 309584 },
+ { url = "https://files.pythonhosted.org/packages/05/b3/d04a1398644c5848339c201e81d1c0d5125097bfd84fd92ebebfe724659c/jiter-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6189beb5c4b3117624be6b2e84545cff7611f5855d02de2d06ff68e316182be", size = 333677 },
+ { url = "https://files.pythonhosted.org/packages/41/cd/76869353a0f5a91cf544bef80a9529d090b7d4254835997507738220e133/jiter-0.8.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e13fa849c0e30643554add089983caa82f027d69fad8f50acadcb21c462244ab", size = 354157 },
+ { url = "https://files.pythonhosted.org/packages/34/9e/64adbc6d578a80debf7a1e81871257266e2149eede59300de7641dcd1a5e/jiter-0.8.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d7765ca159d0a58e8e0f8ca972cd6d26a33bc97b4480d0d2309856763807cd28", size = 380841 },
+ { url = "https://files.pythonhosted.org/packages/9d/ef/4ae8f15859d4dae10bef6d1d4a7258fc450b1f9db635becd19403d906ba4/jiter-0.8.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1b0befe7c6e9fc867d5bed21bab0131dfe27d1fa5cd52ba2bced67da33730b7d", size = 388714 },
+ { url = "https://files.pythonhosted.org/packages/3d/dd/3e7e3cdacda1990c1f09d9d2abdf2f37e80f8a9abd17804d61a74d8403fd/jiter-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7d6363d4c6f1052b1d8b494eb9a72667c3ef5f80ebacfe18712728e85327000", size = 341876 },
+ { url = "https://files.pythonhosted.org/packages/44/5b/c9533eb01eee153fd6f936e76a35583f8e244d7a5db9c2b64b4451167368/jiter-0.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a873e57009863eeac3e3969e4653f07031d6270d037d6224415074ac17e5505c", size = 374683 },
+ { url = "https://files.pythonhosted.org/packages/f8/2f/34696e31a79c1b0b30e430dfdcd7c6ee7b5fd0f5b0df4503c1b01ec9bcba/jiter-0.8.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:2582912473c0d9940791479fe1bf2976a34f212eb8e0a82ee9e645ac275c5d16", size = 512132 },
+ { url = "https://files.pythonhosted.org/packages/3b/b3/041d97047a30b529d5d99b3cc5d9d58fc71d9c73f106e827ba28a99058b9/jiter-0.8.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:646163201af42f55393ee6e8f6136b8df488253a6533f4230a64242ecbfe6048", size = 505039 },
+ { url = "https://files.pythonhosted.org/packages/59/5b/630995b058aa26e8ba9b15731b121cec9fc0e105d5ae93d2ed754a0e44f5/jiter-0.8.0-cp312-none-win32.whl", hash = "sha256:96e75c9abfbf7387cba89a324d2356d86d8897ac58c956017d062ad510832dae", size = 205267 },
+ { url = "https://files.pythonhosted.org/packages/1b/0e/1b79afa5616309d4e2e84980c62a3f73c4035e5b856ad7601aebbb5a7db0/jiter-0.8.0-cp312-none-win_amd64.whl", hash = "sha256:ed6074552b4a32e047b52dad5ab497223721efbd0e9efe68c67749f094a092f7", size = 206572 },
+ { url = "https://files.pythonhosted.org/packages/78/56/8f8ab198d9080c19f692649364d87c4a487cb8568b958aa5ce4a14379cbf/jiter-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:dd5e351cb9b3e676ec3360a85ea96def515ad2b83c8ae3a251ce84985a2c9a6f", size = 304426 },
+ { url = "https://files.pythonhosted.org/packages/21/bc/b4a61e32dc4702840ce5088149a91b2f9e10ad121e62ab09a49124f387c5/jiter-0.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ba9f12b0f801ecd5ed0cec29041dc425d1050922b434314c592fc30d51022467", size = 309656 },
+ { url = "https://files.pythonhosted.org/packages/3a/c7/e662c2ad78d3f0aa9eb91f69e004298421bb288f988baa95cab5468b3434/jiter-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a7ba461c3681728d556392e8ae56fb44a550155a24905f01982317b367c21dd4", size = 333677 },
+ { url = "https://files.pythonhosted.org/packages/d1/c8/406bf24e38f55005daa7514d22c6c798911ba197642cac1711eb623706b6/jiter-0.8.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3a15ed47ab09576db560dbc5c2c5a64477535beb056cd7d997d5dd0f2798770e", size = 354159 },
+ { url = "https://files.pythonhosted.org/packages/90/33/c7813184b29ecd20f651f1e335e0814e02bc96e5cf5531ec52397362b9cd/jiter-0.8.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cef55042816d0737142b0ec056c0356a5f681fb8d6aa8499b158e87098f4c6f8", size = 380842 },
+ { url = "https://files.pythonhosted.org/packages/ab/db/8e0ce77a5581783710de8ce70893d3a7e3fd38c8daa506c7d2be24e95c96/jiter-0.8.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:549f170215adeb5e866f10617c3d019d8eb4e6d4e3c6b724b3b8c056514a3487", size = 388715 },
+ { url = "https://files.pythonhosted.org/packages/22/04/b78c51485637bc8c16594ed58300d4d60754392ee5939019d38a91426805/jiter-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f867edeb279d22020877640d2ea728de5817378c60a51be8af731a8a8f525306", size = 343333 },
+ { url = "https://files.pythonhosted.org/packages/49/a3/ada1efbe7dda5c911d39610a946b70b7a5d55ef5b6fe54da3d02ae95e453/jiter-0.8.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:aef8845f463093799db4464cee2aa59d61aa8edcb3762aaa4aacbec3f478c929", size = 374682 },
+ { url = "https://files.pythonhosted.org/packages/dc/b4/cf5bcbfeeca7af7236060cb63cf9804c386be51005f6dac0465a2269034e/jiter-0.8.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:d0d6e22e4062c3d3c1bf3594baa2f67fc9dcdda8275abad99e468e0c6540bc54", size = 512132 },
+ { url = "https://files.pythonhosted.org/packages/d6/9b/f759873e9b87176acd2c8301d28fbbfee7cf1b17b80e6c5c21872d7a5b4a/jiter-0.8.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:079e62e64696241ac3f408e337aaac09137ed760ccf2b72b1094b48745c13641", size = 505038 },
+ { url = "https://files.pythonhosted.org/packages/d1/d9/f888c4c1580516fa305b5199c136153416c51b010161f5086829df7ebbe6/jiter-0.8.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:74d2b56ed3da5760544df53b5f5c39782e68efb64dc3aa0bba4cc08815e6fae8", size = 308637 },
+ { url = "https://files.pythonhosted.org/packages/ff/ce/09003b57df19d8645cfbd327eb0848e0c3228f2bbfc3102a79ae43287c37/jiter-0.8.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:798dafe108cba58a7bb0a50d4d5971f98bb7f3c974e1373e750de6eb21c1a329", size = 341071 },
+ { url = "https://files.pythonhosted.org/packages/1e/5d/fcb55694705c045aaae0b1640e3cfc3dbe20e7b2642dfb2efdcc6e32822d/jiter-0.8.0-cp313-none-win32.whl", hash = "sha256:ca6d3064dfc743eb0d3d7539d89d4ba886957c717567adc72744341c1e3573c9", size = 204830 },
+ { url = "https://files.pythonhosted.org/packages/08/25/60931e5b0d0ad1a17c471b9e1727421f2abe6fa7612c6716ffcacf6f70ab/jiter-0.8.0-cp313-none-win_amd64.whl", hash = "sha256:38caedda64fe1f04b06d7011fc15e86b3b837ed5088657bf778656551e3cd8f9", size = 202905 },
]
[[package]]
name = "json5"
-version = "0.9.28"
+version = "0.10.0"
source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/9e/99/7cf7b9a08984203937bf8c9afd28ff64f733d0f6ccb677888f4bcd82af25/json5-0.9.28.tar.gz", hash = "sha256:1f82f36e615bc5b42f1bbd49dbc94b12563c56408c6ffa06414ea310890e9a6e", size = 41853 }
+sdist = { url = "https://files.pythonhosted.org/packages/85/3d/bbe62f3d0c05a689c711cff57b2e3ac3d3e526380adb7c781989f075115c/json5-0.10.0.tar.gz", hash = "sha256:e66941c8f0a02026943c52c2eb34ebeb2a6f819a0be05920a6f5243cd30fd559", size = 48202 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/2b/ea/ef9cd2423087fe726f3f24b2e747ca915004e66215e36b0580c912199752/json5-0.9.28-py3-none-any.whl", hash = "sha256:29c56f1accdd8bc2e037321237662034a7e07921e2b7223281a5ce2c46f0c4df", size = 30984 },
+ { url = "https://files.pythonhosted.org/packages/aa/42/797895b952b682c3dafe23b1834507ee7f02f4d6299b65aaa61425763278/json5-0.10.0-py3-none-any.whl", hash = "sha256:19b23410220a7271e8377f81ba8aacba2fdd56947fbb137ee5977cbe1f5e8dfa", size = 34049 },
]
[[package]]
@@ -1548,7 +1694,7 @@ wheels = [
[[package]]
name = "jupyterlab"
-version = "4.3.0"
+version = "4.3.1"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "async-lru" },
@@ -1565,9 +1711,9 @@ dependencies = [
{ name = "tornado" },
{ name = "traitlets" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/1b/19/67c3dd19789337396f2e43d9d8373d5e59b4ce6ad8df51edde83bf2156fd/jupyterlab-4.3.0.tar.gz", hash = "sha256:7c6835cbf8df0af0ec8a39332e85ff11693fb9a468205343b4fc0bfbc74817e5", size = 21797258 }
+sdist = { url = "https://files.pythonhosted.org/packages/37/4b/f56825c4715e213f8d7784a1185eac74820eb86f3e2bf3753c22e839222d/jupyterlab-4.3.1.tar.gz", hash = "sha256:a4a338327556443521731d82f2a6ccf926df478914ca029616621704d47c3c65", size = 21796326 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/2c/61/e87b188e224c040ff5a30fd63ea61d1767e419d23abb9c731693d6de0a64/jupyterlab-4.3.0-py3-none-any.whl", hash = "sha256:f67e1095ad61ae04349024f0b40345062ab108a0c6998d9810fec6a3c1a70cd5", size = 11662506 },
+ { url = "https://files.pythonhosted.org/packages/15/73/b7ce0f27ef4597dfb89fdb6376000584c1ce40a11ee66a66af6cd536de23/jupyterlab-4.3.1-py3-none-any.whl", hash = "sha256:2d9a1c305bc748e277819a17a5d5e22452e533e835f4237b2f30f3b0e491e01f", size = 11663829 },
]
[[package]]
@@ -1677,7 +1823,7 @@ wheels = [
[[package]]
name = "langchain"
-version = "0.3.7"
+version = "0.3.9"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "aiohttp" },
@@ -1691,9 +1837,9 @@ dependencies = [
{ name = "sqlalchemy" },
{ name = "tenacity" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/82/59/1ce98c59890fbdbf865510fc6821c9f4d2455ca065b11e7aaa8635239b92/langchain-0.3.7.tar.gz", hash = "sha256:2e4f83bf794ba38562f7ba0ede8171d7e28a583c0cec6f8595cfe72147d336b2", size = 416796 }
+sdist = { url = "https://files.pythonhosted.org/packages/88/9e/7cf5c9653d545461b8e29d70cb2e029dbd5d10cd771968f342a35d324b8f/langchain-0.3.9.tar.gz", hash = "sha256:4950c4ad627d0aa95ce6bda7de453e22059b7e7836b562a8f781fb0b05d7294c", size = 419365 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/49/09/72630413a7ded27684e33392a0ff52ff1c8ea6749fee641319e75f82072b/langchain-0.3.7-py3-none-any.whl", hash = "sha256:cf4af1d5751dacdc278df3de1ff3cbbd8ca7eb55d39deadccdd7fb3d3ee02ac0", size = 1005562 },
+ { url = "https://files.pythonhosted.org/packages/7d/04/1990e724a3cc3cc858f48f524facabbcab6857b5690ddf1f747899e0baab/langchain-0.3.9-py3-none-any.whl", hash = "sha256:ade5a1fee2f94f2e976a6c387f97d62cc7f0b9f26cfe0132a41d2bda761e1045", size = 1008401 },
]
[[package]]
@@ -1728,7 +1874,7 @@ wheels = [
[[package]]
name = "langchain-community"
-version = "0.3.7"
+version = "0.3.8"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "aiohttp" },
@@ -1744,14 +1890,14 @@ dependencies = [
{ name = "sqlalchemy" },
{ name = "tenacity" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/96/ce/967a8fd96be2bcc40899c52c1109086b2baa14044d3f88ecd448ccbcea03/langchain_community-0.3.7.tar.gz", hash = "sha256:5b7a5cea82bedbf3ea276eac56128e00dbaf86561991cfc80fb21175a343c9a3", size = 1650233 }
+sdist = { url = "https://files.pythonhosted.org/packages/0b/d3/11870afbbe1e3bbf510b451a881d68481229f635f84d390d8bc26e7fa487/langchain_community-0.3.8.tar.gz", hash = "sha256:f7575a717d95208d0e969c090104622783c6a38a5527657aa5aa38776fadc835", size = 1667696 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/cc/19/f8af1cdefe326730ae02bd653f7382693153baf0bac7a69537d7811cad5f/langchain_community-0.3.7-py3-none-any.whl", hash = "sha256:048f89d9a54b0720a0f865d5d469494e088cb9970a2397b19446ce0d84867141", size = 2420792 },
+ { url = "https://files.pythonhosted.org/packages/ee/09/fe45363955df325fb0aba3757b6b5bb0c530b6de257481c445ba39492dbf/langchain_community-0.3.8-py3-none-any.whl", hash = "sha256:191b3fcdf6b2e92934f4daeba5f5d0ac684b03772b15ef9d3c3fbcd86bd6cd64", size = 2441029 },
]
[[package]]
name = "langchain-core"
-version = "0.3.19"
+version = "0.3.21"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "jsonpatch" },
@@ -1762,9 +1908,9 @@ dependencies = [
{ name = "tenacity" },
{ name = "typing-extensions" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/48/d9/9a22466b62e86628058b5e2ef6b0ccaff5f026e364f93c47b8e912654414/langchain_core-0.3.19.tar.gz", hash = "sha256:126d9e8cadb2a5b8d1793a228c0783a3b608e36064d5a2ef1a4d38d07a344523", size = 328367 }
+sdist = { url = "https://files.pythonhosted.org/packages/64/0c/9388d0959dff69fbca6e0f79076811cb1a494e06d04c8a880079228edded/langchain_core-0.3.21.tar.gz", hash = "sha256:561b52b258ffa50a9fb11d7a1940ebfd915654d1ec95b35e81dfd5ee84143411", size = 328597 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/a1/25/5bd49cda589e98908e40591214c98cac52f7eb37230bbe493dbd883b9a89/langchain_core-0.3.19-py3-none-any.whl", hash = "sha256:562b7cc3c15dfaa9270cb1496990c1f3b3e0b660c4d6a3236d7f693346f2a96c", size = 409323 },
+ { url = "https://files.pythonhosted.org/packages/9b/50/e0bd90fc481d1cc8c2039ad6161b20fc8e396a7cba6064a4f1e8e5afea62/langchain_core-0.3.21-py3-none-any.whl", hash = "sha256:7e723dff80946a1198976c6876fea8326dc82566ef9bcb5f8d9188f738733665", size = 409467 },
]
[[package]]
@@ -1782,16 +1928,16 @@ wheels = [
[[package]]
name = "langchain-openai"
-version = "0.2.8"
+version = "0.2.10"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "langchain-core" },
{ name = "openai" },
{ name = "tiktoken" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/58/65/f6f7e36840a0ed7bea281a0f2fff11190a1a708125cee6f49750e2acdfac/langchain_openai-0.2.8.tar.gz", hash = "sha256:48d22fa05bb8f7b371be47d05c7a3f42a68ff0e704647b86cc1bfc44e140f01b", size = 43217 }
+sdist = { url = "https://files.pythonhosted.org/packages/d6/46/3ca4e0e6205fcd8ced434918234f3d4560baa346f662b42878627f0c9426/langchain_openai-0.2.10.tar.gz", hash = "sha256:878200a84d80353fc47720631bf591157e56b6a3923e5f7b13c7f61c82999b50", size = 43442 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/69/08/305828ff8f7e9b9c9cbc389aa708bb001bb55a503c52b47a9c01272af4b5/langchain_openai-0.2.8-py3-none-any.whl", hash = "sha256:0116b104d203377d2f4f61095e1d3ce1ba50e446d1a75397eaf0d1fcdf2c0d7b", size = 50416 },
+ { url = "https://files.pythonhosted.org/packages/c3/36/a5426bf8195af460aefefe9c15bbf091a549cfd9cb243efd167d6a7b3a42/langchain_openai-0.2.10-py3-none-any.whl", hash = "sha256:b06a14d99ab81343f23ced83de21fc1cfcd79c9fb96fdbd9070ad018038c5602", size = 50650 },
]
[[package]]
@@ -1808,7 +1954,7 @@ wheels = [
[[package]]
name = "langfuse"
-version = "2.53.9"
+version = "2.54.1"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "anyio" },
@@ -1819,66 +1965,66 @@ dependencies = [
{ name = "pydantic" },
{ name = "wrapt" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/0d/f8/9f067b1915869ce73d29ef18d68efc0352ed80d7595373608783386b362b/langfuse-2.53.9.tar.gz", hash = "sha256:6bfecf86e28c684034ae52a0b19535c94cc86923085267b548d63e5c1ce2b82c", size = 123983 }
+sdist = { url = "https://files.pythonhosted.org/packages/9d/3e/e48d76f0e19df3640710427f48dde06e3271c0c012d774b8b4ee4f27561c/langfuse-2.54.1.tar.gz", hash = "sha256:7efc70799740ffa0ac7e04066e0596fb6433e8e501fc850c6a4e7967de6de8a7", size = 136706 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/0f/b4/aca347143c978ee92b3ff19edb681d3484076a4d1f16ce98032927acbb02/langfuse-2.53.9-py3-none-any.whl", hash = "sha256:04363bc323f7513621c88a997003f7b906ae8f5d096bd54221cfcb6bf7a6f16a", size = 222025 },
+ { url = "https://files.pythonhosted.org/packages/c0/8c/530f6a4650cede4c8fd8b67a743218388820be3170f6b7b1999657739869/langfuse-2.54.1-py3-none-any.whl", hash = "sha256:1f1261cf763886758c70e192133340ff296169cc0930cde725eee52d467eb661", size = 247880 },
]
[[package]]
name = "langgraph"
-version = "0.2.48"
+version = "0.2.53"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "langchain-core" },
{ name = "langgraph-checkpoint" },
{ name = "langgraph-sdk" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/dc/f2/c43bdc18d754636fe8b948b1aba8eadcd1f16cfd8b1f2fb7462cf4dddb9f/langgraph-0.2.48.tar.gz", hash = "sha256:ab8e5d0c2d7ee68bc45054073637afa8519f42da8b4a09f1b0fb97bb096c74ac", size = 106253 }
+sdist = { url = "https://files.pythonhosted.org/packages/f6/6f/9059adade11c28f3d668f3f21859bf09e2daae08d4459669db2faf41965e/langgraph-0.2.53.tar.gz", hash = "sha256:b83232a04f2b536cbeac542f9ad7e0265f41ac6b7c6706ba8e031e0e80cb13a6", size = 106471 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/80/81/16825faa2165c02490cbe581abc160f3291ba1bbf9f10e51caab8e2d5b6d/langgraph-0.2.48-py3-none-any.whl", hash = "sha256:919d0a2b5cbdedbf4d668da60c2467b81129190b7b6e6892ca1fe40caedd3678", size = 124822 },
+ { url = "https://files.pythonhosted.org/packages/d9/2a/711ba319f9656d2906de5371eb1aacc5833d358f7483fdd25febfc604de7/langgraph-0.2.53-py3-none-any.whl", hash = "sha256:b34b67d0a12ae0ba6f03af97ad0f744bc609bd0328e8b734618cc039985cfdea", size = 125066 },
]
[[package]]
name = "langgraph-checkpoint"
-version = "2.0.4"
+version = "2.0.7"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "langchain-core" },
{ name = "msgpack" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/a9/f0/611786da5e973264a0e24ed04eabf7e04fac62598fe3ca16e4a67bda41d6/langgraph_checkpoint-2.0.4.tar.gz", hash = "sha256:17a20857090f805629a062986da739f003030e90388292e01614adcfb323d502", size = 20557 }
+sdist = { url = "https://files.pythonhosted.org/packages/a7/f8/e5d45b0e3c6d42c39e1bb10dac20ef0dbc209e909e155c748c8630a87e0c/langgraph_checkpoint-2.0.7.tar.gz", hash = "sha256:88d648a331d20aa8ce65280de34a34a9190380b004f6afcc5f9894fe3abeed08", size = 31240 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/17/78/56f96f1151697fc4c826f59845a09cdb0f5c20917d84f4cfbeb50e3e810b/langgraph_checkpoint-2.0.4-py3-none-any.whl", hash = "sha256:0039b937d5de951145acc196e7cf64e2e38cc9475c75040855cbf9edcc69ff89", size = 23454 },
+ { url = "https://files.pythonhosted.org/packages/00/25/d60b81da371e7158749e3f7ce2c5a7ec671896d41056e2e22d9150a86f50/langgraph_checkpoint-2.0.7-py3-none-any.whl", hash = "sha256:9709f672e1c5a47e13352067c2ffa114dd91d443967b7ce8a1d36d6fc170370e", size = 35278 },
]
[[package]]
name = "langgraph-sdk"
-version = "0.1.36"
+version = "0.1.40"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "httpx" },
{ name = "httpx-sse" },
{ name = "orjson" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/ca/df/9316a356f75027d5d70a6b694fa31ed62b1070d5ae9013e84c3c8829a9b6/langgraph_sdk-0.1.36.tar.gz", hash = "sha256:2a2c651b7851ba15aeaab7e4e3ea7fd8357ef1cb0b592f264916fa990cdda6e7", size = 28215 }
+sdist = { url = "https://files.pythonhosted.org/packages/7a/16/a52dd2435e8b02d7bb133bed529af2be7c8b45a4152c89400b28e6237cd4/langgraph_sdk-0.1.40.tar.gz", hash = "sha256:ab2719ac7274612a791a7a0ad9395d250357106cba8ba81bca9968fc91009af2", size = 28547 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/6a/ad/d2fdb570373afe03bc7110561a4866e9d5175d8f7b2cda2a04f84265b1fd/langgraph_sdk-0.1.36-py3-none-any.whl", hash = "sha256:b11e1f0bc67631134d09d50c812dc73f9eb30394764ae1144d7d2a786a715355", size = 29071 },
+ { url = "https://files.pythonhosted.org/packages/bf/3f/6de5ef15eae8c479bcc2ce8dd4d7396fb4eb82ce42c83b50025a29bd29fa/langgraph_sdk-0.1.40-py3-none-any.whl", hash = "sha256:8810cca5e4144cf3a5441fc76b4ee6e658ec95f932d3a0bf9ad63de117e925b9", size = 29425 },
]
[[package]]
name = "langsmith"
-version = "0.1.143"
+version = "0.1.147"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "httpx" },
- { name = "orjson" },
+ { name = "orjson", marker = "platform_python_implementation != 'PyPy'" },
{ name = "pydantic" },
{ name = "requests" },
{ name = "requests-toolbelt" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/be/a1/e47eb77a648b37cfdaa35b69c288974ddf5109990e6de63730e2e94a3f38/langsmith-0.1.143.tar.gz", hash = "sha256:4c5159e5cd84b3f8499433009e72d2076dd2daf6c044ac8a3611b30d0d0161c5", size = 295197 }
+sdist = { url = "https://files.pythonhosted.org/packages/6c/56/201dd94d492ae47c1bf9b50cacc1985113dc2288d8f15857e1f4a6818376/langsmith-0.1.147.tar.gz", hash = "sha256:2e933220318a4e73034657103b3b1a3a6109cc5db3566a7e8e03be8d6d7def7a", size = 300453 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/f8/53/0a22394aa520176b1981e9b7f02090425731b575e9ae28f86a7f5341208c/langsmith-0.1.143-py3-none-any.whl", hash = "sha256:ba0d827269e9b03a90fababe41fa3e4e3f833300b95add10184f7e67167dde6f", size = 306964 },
+ { url = "https://files.pythonhosted.org/packages/de/f0/63b06b99b730b9954f8709f6f7d9b8d076fa0a973e472efe278089bde42b/langsmith-0.1.147-py3-none-any.whl", hash = "sha256:7166fc23b965ccf839d64945a78e9f1157757add228b086141eb03a60d699a15", size = 311812 },
]
[[package]]
@@ -2205,11 +2351,11 @@ wheels = [
[[package]]
name = "narwhals"
-version = "1.13.5"
+version = "1.14.2"
source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/9b/e5/f80c6e1591e952d57b53e16d4f9b16f56d1e8347c4989632679685569389/narwhals-1.13.5.tar.gz", hash = "sha256:2e71b70895759af455a83583052bb9dbada9f72efad786d8d1b2f38078054e73", size = 175110 }
+sdist = { url = "https://files.pythonhosted.org/packages/1d/f0/26c7fde4db697e166582e526627e6824252b6c462a2cd2e97ae117f5a69e/narwhals-1.14.2.tar.gz", hash = "sha256:287406a3777d102f981d27c5827a6b5a9d8bd8c89c79cd9fbe46e2956425f078", size = 191364 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/ad/18/3cf5f8b188424313833f085f4ae0452b7db858a687281e2e2ca893a296cc/narwhals-1.13.5-py3-none-any.whl", hash = "sha256:91fe95ffdece9e3837780b6cd32f4309a41f39b285bc9d42d60eaff47d48b39a", size = 208096 },
+ { url = "https://files.pythonhosted.org/packages/ba/eb/988fdc5380e263f3f4ce40dd544720edc2ae5bd8f85c019ccdc6668399e5/narwhals-1.14.2-py3-none-any.whl", hash = "sha256:2e784800b87c9e1ff47984da0046d957320f39b64c08f0e5b1b1a1208694935c", size = 225143 },
]
[[package]]
@@ -2333,19 +2479,20 @@ wheels = [
[[package]]
name = "ollama"
-version = "0.3.3"
+version = "0.4.1"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "httpx" },
+ { name = "pydantic" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/a6/8e/60a9b065eb796ef3996451cbe2d8044f6b030696166693b9805ae33b8b4c/ollama-0.3.3.tar.gz", hash = "sha256:f90a6d61803117f40b0e8ff17465cab5e1eb24758a473cfe8101aff38bc13b51", size = 10390 }
+sdist = { url = "https://files.pythonhosted.org/packages/d7/74/88cd1cce88c8ae5430ef2913ea86e946745cb94a59349c27e074d5d19393/ollama-0.4.1.tar.gz", hash = "sha256:8c6b5e7ff80dd0b8692150b03359f60bac7ca162b088c604069409142a684ad3", size = 12882 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/6a/ca/d22905ac3f768523f778189d38c9c6cd9edf4fa9dd09cb5a3fc57b184f90/ollama-0.3.3-py3-none-any.whl", hash = "sha256:ca6242ce78ab34758082b7392df3f9f6c2cb1d070a9dede1a4c545c929e16dba", size = 10267 },
+ { url = "https://files.pythonhosted.org/packages/bb/bd/77240baf373e4e04639d1a78a589dad2565cc80572cb8f1d56c8f6244f39/ollama-0.4.1-py3-none-any.whl", hash = "sha256:b6fb16aa5a3652633e1716acb12cf2f44aa18beb229329e46a0302734822dfad", size = 12901 },
]
[[package]]
name = "onnxruntime"
-version = "1.20.0"
+version = "1.20.1"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "coloredlogs" },
@@ -2356,27 +2503,27 @@ dependencies = [
{ name = "sympy" },
]
wheels = [
- { url = "https://files.pythonhosted.org/packages/43/d3/3b7e17266a4d360af0a93965021ef8192d833233658a9d59501fbaf1341a/onnxruntime-1.20.0-cp311-cp311-macosx_13_0_universal2.whl", hash = "sha256:3398354e9145c68edc09dbc72265401150027e76716ae758e8d9b52e6a7ddca0", size = 30979965 },
- { url = "https://files.pythonhosted.org/packages/ef/db/f9f3a2cac589f557c1227d27e288eeb248830613dd1a5b5c17f26894e802/onnxruntime-1.20.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8a831b720d0a7be8241a230cb06f592e8bb66652d7cea54ce02d83769651fdee", size = 11946136 },
- { url = "https://files.pythonhosted.org/packages/53/d8/93706484c8e0db2dfde8559e74b5a9ab74d203a0471671121188c212f7cb/onnxruntime-1.20.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:041fefe60af844ebd90f344c84f908201490555cd0a6d78dd0a7acdc27b59972", size = 13318583 },
- { url = "https://files.pythonhosted.org/packages/e6/0a/274c6f967ba5ebaca3bac63b021ab0d69023ebef492cb6fbb5b613101102/onnxruntime-1.20.0-cp311-cp311-win32.whl", hash = "sha256:83da64d2824809d0f6977db8bfc5091f742c26f09dfd66a3934e673780f5f87a", size = 9804364 },
- { url = "https://files.pythonhosted.org/packages/cc/3b/c77a44f4d9bb8a8c776e6c5bed19d0f86ce843495aab80cd34aaba596f5d/onnxruntime-1.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:bfa390046332f5fca6f8af8c9d17164621ac52e66b11518e187278b19364800c", size = 11320070 },
- { url = "https://files.pythonhosted.org/packages/f8/49/9e3373f4e43c67041ada8da99acef92e075440a4bf1cb0e3b4bcb9c09458/onnxruntime-1.20.0-cp312-cp312-macosx_13_0_universal2.whl", hash = "sha256:97c2b91bfea063f9c3457422d28a336bfd2859001cd880645adfa7184e29dd79", size = 30990476 },
- { url = "https://files.pythonhosted.org/packages/8d/bd/4b15cfc8242577376ed8eb8f10239422945cfa7e52b89db487ceea912c3b/onnxruntime-1.20.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:51e7b34e398089c4ed8d0f50722d7a64a4d5f11b38c4a42576458a03c6dbc72e", size = 11942243 },
- { url = "https://files.pythonhosted.org/packages/ba/db/7e65fcf45f5485193158999c194470f40be4bb6c82ec7e70401f78220dec/onnxruntime-1.20.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0e259378ff2843321e0bf4552adcbee48822c91d77d42dde78b87dcdf10ad01f", size = 13313619 },
- { url = "https://files.pythonhosted.org/packages/75/c1/0a89acee34b78b01010d8d88ea1ff86579dea58354b0109e3240498078f2/onnxruntime-1.20.0-cp312-cp312-win32.whl", hash = "sha256:428abc1f7d8eb425887e2b7726044f2af7b5a098359455e7d2d92343f04ad0ff", size = 9805406 },
- { url = "https://files.pythonhosted.org/packages/bc/27/2601f0e2bd5c8ae8ff73daa47895a5d9f552971304b3f3ecf9167f466a95/onnxruntime-1.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:d5f23cbfeb546e16ffea81c28d2e796a53197fdc6c92540648e2aa53a7c7a637", size = 11322309 },
- { url = "https://files.pythonhosted.org/packages/4e/df/142ba2a6c840d315ff08122c52a0670e63ff07b48eb016ec6fc890ad5791/onnxruntime-1.20.0-cp313-cp313-macosx_13_0_universal2.whl", hash = "sha256:95b91126bc3e1754868da1d3d2d08a7a10279b8ff5cea5e34e92fbe3fd691dcf", size = 30990500 },
- { url = "https://files.pythonhosted.org/packages/7e/ba/0a144e819d027726bc340e40d6073e01b36031d77721dc9800ce045d8ede/onnxruntime-1.20.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d57c10d7729347d6663f32b3f569f33d69a95e150d37ff6af4be9b9ab1ffdc25", size = 11942350 },
- { url = "https://files.pythonhosted.org/packages/84/df/d62303a3657bec4d6fc817dd05428278c13daaad7d99e5f0f70b7c098d0e/onnxruntime-1.20.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b9c38735dac127d0eeb957ec312c8f1ae90ecae2779a55b2fa279aa7bd116cbd", size = 13315947 },
- { url = "https://files.pythonhosted.org/packages/96/00/1740c6d5a6fed87dfb69388ec88b77ff5e453b745be0e65db0371e10bc50/onnxruntime-1.20.0-cp313-cp313-win_amd64.whl", hash = "sha256:25514cec4ea251d492aa1e38a7395d8801e64a4c940a154aef84cfad97ae4628", size = 11322362 },
- { url = "https://files.pythonhosted.org/packages/11/15/099b97c6ecbd4aeb66fb5b18b379d67b4162698c0c286cc5d2928984fd59/onnxruntime-1.20.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:640ad9ea72d322f0325a51544eddb54f4fa843c4348573c88a9cb44f46678f3f", size = 11942537 },
- { url = "https://files.pythonhosted.org/packages/ca/4f/d1d7642706ddce8c253255b52cf8a6fdb6d4aca171a7a476188039816b79/onnxruntime-1.20.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dc4e7c10c98c1f407835448c26a7e14ebff3234f131e1fbc53bd9500c828df89", size = 13319499 },
+ { url = "https://files.pythonhosted.org/packages/95/8d/2634e2959b34aa8a0037989f4229e9abcfa484e9c228f99633b3241768a6/onnxruntime-1.20.1-cp311-cp311-macosx_13_0_universal2.whl", hash = "sha256:06bfbf02ca9ab5f28946e0f912a562a5f005301d0c419283dc57b3ed7969bb7b", size = 30998725 },
+ { url = "https://files.pythonhosted.org/packages/a5/da/c44bf9bd66cd6d9018a921f053f28d819445c4d84b4dd4777271b0fe52a2/onnxruntime-1.20.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f6243e34d74423bdd1edf0ae9596dd61023b260f546ee17d701723915f06a9f7", size = 11955227 },
+ { url = "https://files.pythonhosted.org/packages/11/ac/4120dfb74c8e45cce1c664fc7f7ce010edd587ba67ac41489f7432eb9381/onnxruntime-1.20.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5eec64c0269dcdb8d9a9a53dc4d64f87b9e0c19801d9321246a53b7eb5a7d1bc", size = 13331703 },
+ { url = "https://files.pythonhosted.org/packages/12/f1/cefacac137f7bb7bfba57c50c478150fcd3c54aca72762ac2c05ce0532c1/onnxruntime-1.20.1-cp311-cp311-win32.whl", hash = "sha256:a19bc6e8c70e2485a1725b3d517a2319603acc14c1f1a017dda0afe6d4665b41", size = 9813977 },
+ { url = "https://files.pythonhosted.org/packages/2c/2d/2d4d202c0bcfb3a4cc2b171abb9328672d7f91d7af9ea52572722c6d8d96/onnxruntime-1.20.1-cp311-cp311-win_amd64.whl", hash = "sha256:8508887eb1c5f9537a4071768723ec7c30c28eb2518a00d0adcd32c89dea3221", size = 11329895 },
+ { url = "https://files.pythonhosted.org/packages/e5/39/9335e0874f68f7d27103cbffc0e235e32e26759202df6085716375c078bb/onnxruntime-1.20.1-cp312-cp312-macosx_13_0_universal2.whl", hash = "sha256:22b0655e2bf4f2161d52706e31f517a0e54939dc393e92577df51808a7edc8c9", size = 31007580 },
+ { url = "https://files.pythonhosted.org/packages/c5/9d/a42a84e10f1744dd27c6f2f9280cc3fb98f869dd19b7cd042e391ee2ab61/onnxruntime-1.20.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f1f56e898815963d6dc4ee1c35fc6c36506466eff6d16f3cb9848cea4e8c8172", size = 11952833 },
+ { url = "https://files.pythonhosted.org/packages/47/42/2f71f5680834688a9c81becbe5c5bb996fd33eaed5c66ae0606c3b1d6a02/onnxruntime-1.20.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bb71a814f66517a65628c9e4a2bb530a6edd2cd5d87ffa0af0f6f773a027d99e", size = 13333903 },
+ { url = "https://files.pythonhosted.org/packages/c8/f1/aabfdf91d013320aa2fc46cf43c88ca0182860ff15df872b4552254a9680/onnxruntime-1.20.1-cp312-cp312-win32.whl", hash = "sha256:bd386cc9ee5f686ee8a75ba74037750aca55183085bf1941da8efcfe12d5b120", size = 9814562 },
+ { url = "https://files.pythonhosted.org/packages/dd/80/76979e0b744307d488c79e41051117634b956612cc731f1028eb17ee7294/onnxruntime-1.20.1-cp312-cp312-win_amd64.whl", hash = "sha256:19c2d843eb074f385e8bbb753a40df780511061a63f9def1b216bf53860223fb", size = 11331482 },
+ { url = "https://files.pythonhosted.org/packages/f7/71/c5d980ac4189589267a06f758bd6c5667d07e55656bed6c6c0580733ad07/onnxruntime-1.20.1-cp313-cp313-macosx_13_0_universal2.whl", hash = "sha256:cc01437a32d0042b606f462245c8bbae269e5442797f6213e36ce61d5abdd8cc", size = 31007574 },
+ { url = "https://files.pythonhosted.org/packages/81/0d/13bbd9489be2a6944f4a940084bfe388f1100472f38c07080a46fbd4ab96/onnxruntime-1.20.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fb44b08e017a648924dbe91b82d89b0c105b1adcfe31e90d1dc06b8677ad37be", size = 11951459 },
+ { url = "https://files.pythonhosted.org/packages/c0/ea/4454ae122874fd52bbb8a961262de81c5f932edeb1b72217f594c700d6ef/onnxruntime-1.20.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bda6aebdf7917c1d811f21d41633df00c58aff2bef2f598f69289c1f1dabc4b3", size = 13331620 },
+ { url = "https://files.pythonhosted.org/packages/d8/e0/50db43188ca1c945decaa8fc2a024c33446d31afed40149897d4f9de505f/onnxruntime-1.20.1-cp313-cp313-win_amd64.whl", hash = "sha256:d30367df7e70f1d9fc5a6a68106f5961686d39b54d3221f760085524e8d38e16", size = 11331758 },
+ { url = "https://files.pythonhosted.org/packages/d8/55/3821c5fd60b52a6c82a00bba18531793c93c4addfe64fbf061e235c5617a/onnxruntime-1.20.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c9158465745423b2b5d97ed25aa7740c7d38d2993ee2e5c3bfacb0c4145c49d8", size = 11950342 },
+ { url = "https://files.pythonhosted.org/packages/14/56/fd990ca222cef4f9f4a9400567b9a15b220dee2eafffb16b2adbc55c8281/onnxruntime-1.20.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0df6f2df83d61f46e842dbcde610ede27218947c33e994545a22333491e72a3b", size = 13337040 },
]
[[package]]
name = "openai"
-version = "1.54.4"
+version = "1.55.2"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "anyio" },
@@ -2388,39 +2535,39 @@ dependencies = [
{ name = "tqdm" },
{ name = "typing-extensions" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/7e/95/83845be5ddd46ce0a35fd602a3366ec2d7fd6b2be6fb760ca553e2488ea1/openai-1.54.4.tar.gz", hash = "sha256:50f3656e45401c54e973fa05dc29f3f0b0d19348d685b2f7ddb4d92bf7b1b6bf", size = 314159 }
+sdist = { url = "https://files.pythonhosted.org/packages/e2/ae/ef32e19631f752d3b10bbfa0bda2b3f63865438635bee7356d4b3c8a6bf6/openai-1.55.2.tar.gz", hash = "sha256:5cc0b1162b65dcdf670b4b41448f18dd470d2724ca04821ab1e86b6b4e88650b", size = 314465 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/c7/d8/3e4cf8a5f544bef575d3502fedd81a15e317f591022de940647bdd0cc017/openai-1.54.4-py3-none-any.whl", hash = "sha256:0d95cef99346bf9b6d7fbf57faf61a673924c3e34fa8af84c9ffe04660673a7e", size = 389581 },
+ { url = "https://files.pythonhosted.org/packages/cb/d7/6ae403b1fd5667621f8a4b6d2eec954da7ab7efd2ba1b0b41c6c791af67a/openai-1.55.2-py3-none-any.whl", hash = "sha256:3027c7fa4a33ed759f4a3d076093fcfa1c55658660c889bec33f651e2dc77922", size = 389537 },
]
[[package]]
name = "opentelemetry-api"
-version = "1.28.1"
+version = "1.28.2"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "deprecated" },
{ name = "importlib-metadata" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/4e/f7/5f8771e591f7641ba019904e2a6be151998a6c8f3e1137654773ca060b04/opentelemetry_api-1.28.1.tar.gz", hash = "sha256:6fa7295a12c707f5aebef82da3d9ec5afe6992f3e42bfe7bec0339a44b3518e7", size = 62804 }
+sdist = { url = "https://files.pythonhosted.org/packages/51/34/e4e9245c868c6490a46ffedf6bd5b0f512bbc0a848b19e3a51f6bbad648c/opentelemetry_api-1.28.2.tar.gz", hash = "sha256:ecdc70c7139f17f9b0cf3742d57d7020e3e8315d6cffcdf1a12a905d45b19cc0", size = 62796 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/d5/39/7a9c2fde8e0309e9fd339aa953110a49ebbdf8797eb497d8357f1933ec5d/opentelemetry_api-1.28.1-py3-none-any.whl", hash = "sha256:bfe86c95576cf19a914497f439fd79c9553a38de0adbdc26f7cfc46b0c00b16c", size = 64316 },
+ { url = "https://files.pythonhosted.org/packages/4d/58/b17393cdfc149e14ee84c662abf921993dcce8058628359ef1f49e2abb97/opentelemetry_api-1.28.2-py3-none-any.whl", hash = "sha256:6fcec89e265beb258fe6b1acaaa3c8c705a934bd977b9f534a2b7c0d2d4275a6", size = 64302 },
]
[[package]]
name = "opentelemetry-exporter-otlp-proto-common"
-version = "1.28.1"
+version = "1.28.2"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "opentelemetry-proto" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/47/ff/99803ddffb90bc895b2f665fa9d79efee8fa9a0fe3cc6d318c19ce18b4d9/opentelemetry_exporter_otlp_proto_common-1.28.1.tar.gz", hash = "sha256:6e55e7f5d59296cc87a74c08b8e0ddf87403f73a62302ec7ee042c1a1f4a8f70", size = 19040 }
+sdist = { url = "https://files.pythonhosted.org/packages/60/cd/cd990f891b64e7698b8a6b6ab90dfac7f957db5a3d06788acd52f73ad4c0/opentelemetry_exporter_otlp_proto_common-1.28.2.tar.gz", hash = "sha256:7aebaa5fc9ff6029374546df1f3a62616fda07fccd9c6a8b7892ec130dd8baca", size = 19136 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/2a/b1/33d69035e87fbd7c962be00315c3ea2567a6a45be71946d2b3bf008719b3/opentelemetry_exporter_otlp_proto_common-1.28.1-py3-none-any.whl", hash = "sha256:56ea6cf28c90f767733f046a54525dc7271a25faff86b1955e5252b55f4e007f", size = 18452 },
+ { url = "https://files.pythonhosted.org/packages/2a/4d/769f3b1b1c6af5e603da50349ba31af757897540a75d666de22d39461055/opentelemetry_exporter_otlp_proto_common-1.28.2-py3-none-any.whl", hash = "sha256:545b1943b574f666c35b3d6cc67cb0b111060727e93a1e2866e346b33bff2a12", size = 18460 },
]
[[package]]
name = "opentelemetry-exporter-otlp-proto-grpc"
-version = "1.28.1"
+version = "1.28.2"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "deprecated" },
@@ -2431,14 +2578,14 @@ dependencies = [
{ name = "opentelemetry-proto" },
{ name = "opentelemetry-sdk" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/02/22/0b350c488c1a20c840b674f4256d8248efad3105211c0ef824c94b89e54f/opentelemetry_exporter_otlp_proto_grpc-1.28.1.tar.gz", hash = "sha256:9c84a103734d0c9cf9a4ba973d9c15c21996a554ab2bbd6208b3925873912642", size = 26234 }
+sdist = { url = "https://files.pythonhosted.org/packages/f7/4c/b5374467e97f2b290611de746d0e6cab3a07aec865d6b99d11535cd60059/opentelemetry_exporter_otlp_proto_grpc-1.28.2.tar.gz", hash = "sha256:07c10378380bbb01a7f621a5ce833fc1fab816e971140cd3ea1cd587840bc0e6", size = 26227 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/b3/a2/80d2afb742dbbb61d21e3617aa4a45dde955f46fb5881614f300baccf8f1/opentelemetry_exporter_otlp_proto_grpc-1.28.1-py3-none-any.whl", hash = "sha256:fd494b9dd7869975138cef68d52ed45b9ca584c1fa31bef2d01ecfd537445dfa", size = 18532 },
+ { url = "https://files.pythonhosted.org/packages/dd/7e/6af5a7de87988cfc951db86f7fd0ecaabc20bc112fd9cfe06b8a01f11400/opentelemetry_exporter_otlp_proto_grpc-1.28.2-py3-none-any.whl", hash = "sha256:6083d9300863aab35bfce7c172d5fc1007686e6f8dff366eae460cd9a21592e2", size = 18518 },
]
[[package]]
name = "opentelemetry-instrumentation"
-version = "0.49b1"
+version = "0.49b2"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "opentelemetry-api" },
@@ -2446,14 +2593,14 @@ dependencies = [
{ name = "packaging" },
{ name = "wrapt" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/2a/2c/ce74e9f484a07d13cc91c36dd75d76aee2e651ad95beb967e208f5c15988/opentelemetry_instrumentation-0.49b1.tar.gz", hash = "sha256:2d0e41181b7957ba061bb436b969ad90545ac3eba65f290830009b4264d2824e", size = 26465 }
+sdist = { url = "https://files.pythonhosted.org/packages/6f/1f/9fa51f6f64f4d179f4e3370eb042176ff7717682428552f5e1f4c5efcc09/opentelemetry_instrumentation-0.49b2.tar.gz", hash = "sha256:8cf00cc8d9d479e4b72adb9bd267ec544308c602b7188598db5a687e77b298e2", size = 26480 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/ca/98/9c40915677f24b6bd0bd4ec6e84f929815a581d78cd67eab5213c630c6b6/opentelemetry_instrumentation-0.49b1-py3-none-any.whl", hash = "sha256:0a9d3821736104013693ef3b8a9d29b41f2f3a81ee2d8c9288b52d62bae5747c", size = 30688 },
+ { url = "https://files.pythonhosted.org/packages/ef/e3/ad23372525653b0221212d5e2a71bd97aae64cc35f90cbf0c70de57dfa4e/opentelemetry_instrumentation-0.49b2-py3-none-any.whl", hash = "sha256:f6d782b0ef9fef4a4c745298651c65f5c532c34cd4c40d230ab5b9f3b3b4d151", size = 30693 },
]
[[package]]
name = "opentelemetry-instrumentation-asgi"
-version = "0.49b1"
+version = "0.49b2"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "asgiref" },
@@ -2462,14 +2609,14 @@ dependencies = [
{ name = "opentelemetry-semantic-conventions" },
{ name = "opentelemetry-util-http" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/44/ad/4ba8c2d42c264792e0acf2f689d80545fab4e903cea0375bd348dedd8b22/opentelemetry_instrumentation_asgi-0.49b1.tar.gz", hash = "sha256:d1a2b4cb76490be28bcad3c0f562c4b3c84157148c922ca298bb04ed9e36c005", size = 24120 }
+sdist = { url = "https://files.pythonhosted.org/packages/84/42/079079bd7c0423bfab987a6457e34468b6ddccf501d3c91d2795c200d65d/opentelemetry_instrumentation_asgi-0.49b2.tar.gz", hash = "sha256:2af5faf062878330714efe700127b837038c4d9d3b70b451ab2424d5076d6c1c", size = 24106 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/2e/e1/8beef3d2cbe83b12e03f9aff20ccf3624b627b4cf49859492f5489f1d637/opentelemetry_instrumentation_asgi-0.49b1-py3-none-any.whl", hash = "sha256:8dcbc438cb138789fcb20ae38b6e7f23088e066d77b54bae205c5744856603c6", size = 16325 },
+ { url = "https://files.pythonhosted.org/packages/3f/82/06a56e786de3ea0ef4703ed313d9d8395fb4bc9ae740cc71415178ae8bff/opentelemetry_instrumentation_asgi-0.49b2-py3-none-any.whl", hash = "sha256:c8ede13ed781402458a800411cb7ec16a25386dc21de8e5b9a568b386a1dc5f4", size = 16305 },
]
[[package]]
name = "opentelemetry-instrumentation-fastapi"
-version = "0.49b1"
+version = "0.49b2"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "opentelemetry-api" },
@@ -2478,92 +2625,100 @@ dependencies = [
{ name = "opentelemetry-semantic-conventions" },
{ name = "opentelemetry-util-http" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/ad/81/16c599d1c481bca863dd420953145081ad0d83347d36180fea9e74fdc1c3/opentelemetry_instrumentation_fastapi-0.49b1.tar.gz", hash = "sha256:13d9d4d70b4bb831468b8e40807353731cad7fbfaeedde0070d93bcb2c417b07", size = 19229 }
+sdist = { url = "https://files.pythonhosted.org/packages/87/ed/a1275d5aac63edfad0afb012d2d5917412f09ac5f773c86b465b2b0d2549/opentelemetry_instrumentation_fastapi-0.49b2.tar.gz", hash = "sha256:3aa81ed7acf6aa5236d96e90a1218c5e84a9c0dce8fa63bf34ceee6218354b63", size = 19217 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/17/9a/dcd672be2bb9279e76b85d51ea895260466fc1353eb9cbc07f430fd6f330/opentelemetry_instrumentation_fastapi-0.49b1-py3-none-any.whl", hash = "sha256:3398940102c8ef613b9c55fc4f179cc92413de456f6bec6eeb1995270de2b087", size = 12101 },
+ { url = "https://files.pythonhosted.org/packages/d3/a9/ef2678c16caf5dc2f84628bfafdbc90139e3c78d9017afd07fbd51b1eeef/opentelemetry_instrumentation_fastapi-0.49b2-py3-none-any.whl", hash = "sha256:c66331d05bf806d7ca4f9579c1db7383aad31a9f6665dbaa2b7c9a4c1e830892", size = 12082 },
]
[[package]]
name = "opentelemetry-proto"
-version = "1.28.1"
+version = "1.28.2"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "protobuf" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/00/5d/da18070fbd436baa49bad9f1393b2346f650800aa5b3a7b2d3640510eb0e/opentelemetry_proto-1.28.1.tar.gz", hash = "sha256:6f9e9d9958822ab3e3cdcd2a24806d62aa10282349fd4338aafe32c69c87fc15", size = 34333 }
+sdist = { url = "https://files.pythonhosted.org/packages/d0/45/96c4f34c79fd87dc8a1c0c432f23a5a202729f21e4e63c8b36fc8e57767a/opentelemetry_proto-1.28.2.tar.gz", hash = "sha256:7c0d125a6b71af88bfeeda16bfdd0ff63dc2cf0039baf6f49fa133b203e3f566", size = 34316 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/3b/cb/272d2ef811dba0b98d7dcd23687900d8ba6855fd289119c4cf44c1dc77c7/opentelemetry_proto-1.28.1-py3-none-any.whl", hash = "sha256:cb406ec69f1d11439e60fb43c6b744783fc8ee4deecdab61b3e29f112b0602f9", size = 55831 },
+ { url = "https://files.pythonhosted.org/packages/1d/12/646f48d6d698a6df0437a22b591387440dc4888c8752d1a1300f730da710/opentelemetry_proto-1.28.2-py3-none-any.whl", hash = "sha256:0837498f59db55086462915e5898d0b1a18c1392f6db4d7e937143072a72370c", size = 55818 },
]
[[package]]
name = "opentelemetry-sdk"
-version = "1.28.1"
+version = "1.28.2"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "opentelemetry-api" },
{ name = "opentelemetry-semantic-conventions" },
{ name = "typing-extensions" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/f2/c8/83996963ca80c149583260c22492022c9b48c854d4ca877aa3b6be8fbd3d/opentelemetry_sdk-1.28.1.tar.gz", hash = "sha256:100fa371b2046ffba6a340c18f0b2a0463acad7461e5177e126693b613a6ca57", size = 157162 }
+sdist = { url = "https://files.pythonhosted.org/packages/4b/f4/840a5af4efe48d7fb4c456ad60fd624673e871a60d6494f7ff8a934755d4/opentelemetry_sdk-1.28.2.tar.gz", hash = "sha256:5fed24c5497e10df30282456fe2910f83377797511de07d14cec0d3e0a1a3110", size = 157272 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/7c/f3/09e86288ee3aace7306b2778127565f64c53d6ec1634dd67d128848d5a4f/opentelemetry_sdk-1.28.1-py3-none-any.whl", hash = "sha256:72aad7f5fcbe37113c4ab4899f6cdeb6ac77ed3e62f25a85e3627b12583dad0f", size = 118732 },
+ { url = "https://files.pythonhosted.org/packages/da/8b/4f2b418496c08016d4384f9b1c4725a8af7faafa248d624be4bb95993ce1/opentelemetry_sdk-1.28.2-py3-none-any.whl", hash = "sha256:93336c129556f1e3ccd21442b94d3521759541521861b2214c499571b85cb71b", size = 118757 },
]
[[package]]
name = "opentelemetry-semantic-conventions"
-version = "0.49b1"
+version = "0.49b2"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "deprecated" },
{ name = "opentelemetry-api" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/bf/61/2715d9d24842ef2250cbd6a44198b6d134b6238d515c6b2f9042ea5aee63/opentelemetry_semantic_conventions-0.49b1.tar.gz", hash = "sha256:91817883b159ffb94c2ca9548509c4fe0aafce7c24f437aa6ac3fc613aa9a758", size = 95221 }
+sdist = { url = "https://files.pythonhosted.org/packages/7d/0a/e3b93f94aa3223c6fd8e743502a1fefd4fb3a753d8f501ce2a418f7c0bd4/opentelemetry_semantic_conventions-0.49b2.tar.gz", hash = "sha256:44e32ce6a5bb8d7c0c617f84b9dc1c8deda1045a07dc16a688cc7cbeab679997", size = 95213 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/04/1d/01ad9c2a8f8346258bf87c20fc024c8baa410492e2c6b397140383381a28/opentelemetry_semantic_conventions-0.49b1-py3-none-any.whl", hash = "sha256:dd6f3ac8169d2198c752e1a63f827e5f5e110ae9b0ce33f2aad9a3baf0739743", size = 159213 },
+ { url = "https://files.pythonhosted.org/packages/b1/be/6661c8f76708bb3ba38c90be8fa8d7ffe17ccbc5cbbc229334f5535f6448/opentelemetry_semantic_conventions-0.49b2-py3-none-any.whl", hash = "sha256:51e7e1d0daa958782b6c2a8ed05e5f0e7dd0716fc327ac058777b8659649ee54", size = 159199 },
]
[[package]]
name = "opentelemetry-util-http"
-version = "0.49b1"
+version = "0.49b2"
source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/c4/1f/f2a734beb7d6c51745867b3daa08bc4a727a7a272232ff9f43770d4d0213/opentelemetry_util_http-0.49b1.tar.gz", hash = "sha256:6c2bc6f7e20e286dbdfcccb9d895fa290ec9d7c596cdf2e06bf1d8e434b2edd0", size = 7864 }
+sdist = { url = "https://files.pythonhosted.org/packages/96/28/ac5b1a0fd210ecb6c86c5e04256ba09c8308eb41e116097b9e2714d4b8dd/opentelemetry_util_http-0.49b2.tar.gz", hash = "sha256:5958c7009f79146bbe98b0fdb23d9d7bf1ea9cd154a1c199029b1a89e0557199", size = 7861 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/74/f6/911f49a8ebac7986d839bbfd9fd813db00e8305878f7d04cd9a0747021e0/opentelemetry_util_http-0.49b1-py3-none-any.whl", hash = "sha256:0290b942f7888b6310df6803e52e12f4043b8f224db0659f62dc7b70059eb94f", size = 6945 },
+ { url = "https://files.pythonhosted.org/packages/19/22/9128f10d1c2868ee42df7e10937d00f154a69bee87c416ca9b20a6af6c54/opentelemetry_util_http-0.49b2-py3-none-any.whl", hash = "sha256:e325d6511c6bee7b43170eb0c93261a210ec57e20ab1d7a99838515ef6d2bf58", size = 6941 },
]
[[package]]
name = "orjson"
-version = "3.10.11"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/db/3a/10320029954badc7eaa338a15ee279043436f396e965dafc169610e4933f/orjson-3.10.11.tar.gz", hash = "sha256:e35b6d730de6384d5b2dab5fd23f0d76fae8bbc8c353c2f78210aa5fa4beb3ef", size = 5444879 }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/1e/25/c869a1fbd481dcb02c70032fd6a7243de7582bc48c7cae03d6f0985a11c0/orjson-3.10.11-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:1444f9cb7c14055d595de1036f74ecd6ce15f04a715e73f33bb6326c9cef01b6", size = 266432 },
- { url = "https://files.pythonhosted.org/packages/6a/a4/2307155ee92457d28345308f7d8c0e712348404723025613adeffcb531d0/orjson-3.10.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdec57fe3b4bdebcc08a946db3365630332dbe575125ff3d80a3272ebd0ddafe", size = 151884 },
- { url = "https://files.pythonhosted.org/packages/aa/82/daf1b2596dd49fe44a1bd92367568faf6966dcb5d7f99fd437c3d0dc2de6/orjson-3.10.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eed32f33a0ea6ef36ccc1d37f8d17f28a1d6e8eefae5928f76aff8f1df85e67", size = 167371 },
- { url = "https://files.pythonhosted.org/packages/63/a8/680578e4589be5fdcfe0186bdd7dc6fe4a39d30e293a9da833cbedd5a56e/orjson-3.10.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80df27dd8697242b904f4ea54820e2d98d3f51f91e97e358fc13359721233e4b", size = 154368 },
- { url = "https://files.pythonhosted.org/packages/6e/ce/9cb394b5b01ef34579eeca6d704b21f97248f607067ce95a24ba9ea2698e/orjson-3.10.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:705f03cee0cb797256d54de6695ef219e5bc8c8120b6654dd460848d57a9af3d", size = 165725 },
- { url = "https://files.pythonhosted.org/packages/49/24/55eeb05cfb36b9e950d05743e6f6fdb7d5f33ca951a27b06ea6d03371aed/orjson-3.10.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03246774131701de8e7059b2e382597da43144a9a7400f178b2a32feafc54bd5", size = 142522 },
- { url = "https://files.pythonhosted.org/packages/94/0c/3a6a289e56dcc9fe67dc6b6d33c91dc5491f9ec4a03745efd739d2acf0ff/orjson-3.10.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8b5759063a6c940a69c728ea70d7c33583991c6982915a839c8da5f957e0103a", size = 146934 },
- { url = "https://files.pythonhosted.org/packages/1d/5c/a08c0e90a91e2526029a4681ff8c6fc4495b8bab77d48801144e378c7da9/orjson-3.10.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:677f23e32491520eebb19c99bb34675daf5410c449c13416f7f0d93e2cf5f981", size = 142904 },
- { url = "https://files.pythonhosted.org/packages/2c/c9/710286a60b14e88288ca014d43befb08bb0a4a6a0f51b875f8c2f05e8205/orjson-3.10.11-cp311-none-win32.whl", hash = "sha256:a11225d7b30468dcb099498296ffac36b4673a8398ca30fdaec1e6c20df6aa55", size = 144459 },
- { url = "https://files.pythonhosted.org/packages/7d/68/ef7b920e0a09e02b1a30daca1b4864938463797995c2fabe457c1500220a/orjson-3.10.11-cp311-none-win_amd64.whl", hash = "sha256:df8c677df2f9f385fcc85ab859704045fa88d4668bc9991a527c86e710392bec", size = 136444 },
- { url = "https://files.pythonhosted.org/packages/78/f2/a712dbcef6d84ff53e13056e7dc69d9d4844bd1e35e51b7431679ddd154d/orjson-3.10.11-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:360a4e2c0943da7c21505e47cf6bd725588962ff1d739b99b14e2f7f3545ba51", size = 266505 },
- { url = "https://files.pythonhosted.org/packages/94/54/53970831786d71f98fdc13c0f80451324c9b5c20fbf42f42ef6147607ee7/orjson-3.10.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:496e2cb45de21c369079ef2d662670a4892c81573bcc143c4205cae98282ba97", size = 151745 },
- { url = "https://files.pythonhosted.org/packages/35/38/482667da1ca7ef95d44d4d2328257a144fd2752383e688637c53ed474d2a/orjson-3.10.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7dfa8db55c9792d53c5952900c6a919cfa377b4f4534c7a786484a6a4a350c19", size = 167274 },
- { url = "https://files.pythonhosted.org/packages/23/2f/5bb0a03e819781d82dadb733fde8ebbe20d1777d1a33715d45ada4d82ce8/orjson-3.10.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51f3382415747e0dbda9dade6f1e1a01a9d37f630d8c9049a8ed0e385b7a90c0", size = 154605 },
- { url = "https://files.pythonhosted.org/packages/49/e9/14cc34d45c7bd51665aff9b1bb6b83475a61c52edb0d753fffe1adc97764/orjson-3.10.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f35a1b9f50a219f470e0e497ca30b285c9f34948d3c8160d5ad3a755d9299433", size = 165874 },
- { url = "https://files.pythonhosted.org/packages/7b/61/c2781ecf90f99623e97c67a31e8553f38a1ecebaf3189485726ac8641576/orjson-3.10.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f3b7c5803138e67028dde33450e054c87e0703afbe730c105f1fcd873496d5", size = 142813 },
- { url = "https://files.pythonhosted.org/packages/4d/4f/18c83f78b501b6608569b1610fcb5a25c9bb9ab6a7eb4b3a55131e0fba37/orjson-3.10.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f91d9eb554310472bd09f5347950b24442600594c2edc1421403d7610a0998fd", size = 146762 },
- { url = "https://files.pythonhosted.org/packages/ba/19/ea80d5b575abd3f76a790409c2b7b8a60f3fc9447965c27d09613b8bddf4/orjson-3.10.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dfbb2d460a855c9744bbc8e36f9c3a997c4b27d842f3d5559ed54326e6911f9b", size = 143186 },
- { url = "https://files.pythonhosted.org/packages/2c/f5/d835fee01a0284d4b78effc24d16e7609daac2ff6b6851ca1bdd3b6194fc/orjson-3.10.11-cp312-none-win32.whl", hash = "sha256:d4a62c49c506d4d73f59514986cadebb7e8d186ad510c518f439176cf8d5359d", size = 144489 },
- { url = "https://files.pythonhosted.org/packages/03/60/748e0e205060dec74328dfd835e47902eb5522ae011766da76bfff64e2f4/orjson-3.10.11-cp312-none-win_amd64.whl", hash = "sha256:f1eec3421a558ff7a9b010a6c7effcfa0ade65327a71bb9b02a1c3b77a247284", size = 136614 },
- { url = "https://files.pythonhosted.org/packages/13/92/400970baf46b987c058469e9e779fb7a40d54a5754914d3634cca417e054/orjson-3.10.11-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c46294faa4e4d0eb73ab68f1a794d2cbf7bab33b1dda2ac2959ffb7c61591899", size = 266402 },
- { url = "https://files.pythonhosted.org/packages/3c/fa/f126fc2d817552bd1f67466205abdcbff64eab16f6844fe6df2853528675/orjson-3.10.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e5834d7d6e58a36846e059d00559cb9ed20410664f3ad156cd2cc239a11230", size = 140826 },
- { url = "https://files.pythonhosted.org/packages/ad/18/9b9664d7d4af5b4fe9fe6600b7654afc0684bba528260afdde10c4a530aa/orjson-3.10.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2fc947e5350fdce548bfc94f434e8760d5cafa97fb9c495d2fef6757aa02ec0", size = 142593 },
- { url = "https://files.pythonhosted.org/packages/20/f9/a30c68f12778d5e58e6b5cdd26f86ee2d0babce1a475073043f46fdd8402/orjson-3.10.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0efabbf839388a1dab5b72b5d3baedbd6039ac83f3b55736eb9934ea5494d258", size = 146777 },
- { url = "https://files.pythonhosted.org/packages/f2/97/12047b0c0e9b391d589fb76eb40538f522edc664f650f8e352fdaaf77ff5/orjson-3.10.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a3f29634260708c200c4fe148e42b4aae97d7b9fee417fbdd74f8cfc265f15b0", size = 142961 },
- { url = "https://files.pythonhosted.org/packages/a4/97/d904e26c1cabf2dd6ab1b0909e9b790af28a7f0fcb9d8378d7320d4869eb/orjson-3.10.11-cp313-none-win32.whl", hash = "sha256:1a1222ffcee8a09476bbdd5d4f6f33d06d0d6642df2a3d78b7a195ca880d669b", size = 144486 },
- { url = "https://files.pythonhosted.org/packages/42/62/3760bd1e6e949321d99bab238d08db2b1266564d2f708af668f57109bb36/orjson-3.10.11-cp313-none-win_amd64.whl", hash = "sha256:bc274ac261cc69260913b2d1610760e55d3c0801bb3457ba7b9004420b6b4270", size = 136361 },
+version = "3.10.12"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/e0/04/bb9f72987e7f62fb591d6c880c0caaa16238e4e530cbc3bdc84a7372d75f/orjson-3.10.12.tar.gz", hash = "sha256:0a78bbda3aea0f9f079057ee1ee8a1ecf790d4f1af88dd67493c6b8ee52506ff", size = 5438647 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/d3/48/7c3cd094488f5a3bc58488555244609a8c4d105bc02f2b77e509debf0450/orjson-3.10.12-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:a734c62efa42e7df94926d70fe7d37621c783dea9f707a98cdea796964d4cf74", size = 248687 },
+ { url = "https://files.pythonhosted.org/packages/ff/90/e55f0e25c7fdd1f82551fe787f85df6f378170caca863c04c810cd8f2730/orjson-3.10.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:750f8b27259d3409eda8350c2919a58b0cfcd2054ddc1bd317a643afc646ef23", size = 136953 },
+ { url = "https://files.pythonhosted.org/packages/2a/b3/109c020cf7fee747d400de53b43b183ca9d3ebda3906ad0b858eb5479718/orjson-3.10.12-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bb52c22bfffe2857e7aa13b4622afd0dd9d16ea7cc65fd2bf318d3223b1b6252", size = 149090 },
+ { url = "https://files.pythonhosted.org/packages/96/d4/35c0275dc1350707d182a1b5da16d1184b9439848060af541285407f18f9/orjson-3.10.12-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:440d9a337ac8c199ff8251e100c62e9488924c92852362cd27af0e67308c16ef", size = 140480 },
+ { url = "https://files.pythonhosted.org/packages/3b/79/f863ff460c291ad2d882cc3b580cc444bd4ec60c9df55f6901e6c9a3f519/orjson-3.10.12-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9e15c06491c69997dfa067369baab3bf094ecb74be9912bdc4339972323f252", size = 156564 },
+ { url = "https://files.pythonhosted.org/packages/98/7e/8d5835449ddd873424ee7b1c4ba73a0369c1055750990d824081652874d6/orjson-3.10.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:362d204ad4b0b8724cf370d0cd917bb2dc913c394030da748a3bb632445ce7c4", size = 131279 },
+ { url = "https://files.pythonhosted.org/packages/46/f5/d34595b6d7f4f984c6fef289269a7f98abcdc2445ebdf90e9273487dda6b/orjson-3.10.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2b57cbb4031153db37b41622eac67329c7810e5f480fda4cfd30542186f006ae", size = 139764 },
+ { url = "https://files.pythonhosted.org/packages/b3/5b/ee6e9ddeab54a7b7806768151c2090a2d36025bc346a944f51cf172ef7f7/orjson-3.10.12-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:165c89b53ef03ce0d7c59ca5c82fa65fe13ddf52eeb22e859e58c237d4e33b9b", size = 131915 },
+ { url = "https://files.pythonhosted.org/packages/c4/45/febee5951aef6db5cd8cdb260548101d7ece0ca9d4ddadadf1766306b7a4/orjson-3.10.12-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:5dee91b8dfd54557c1a1596eb90bcd47dbcd26b0baaed919e6861f076583e9da", size = 415783 },
+ { url = "https://files.pythonhosted.org/packages/27/a5/5a8569e49f3a6c093bee954a3de95062a231196f59e59df13a48e2420081/orjson-3.10.12-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:77a4e1cfb72de6f905bdff061172adfb3caf7a4578ebf481d8f0530879476c07", size = 142387 },
+ { url = "https://files.pythonhosted.org/packages/6e/05/02550fb38c5bf758f3994f55401233a2ef304e175f473f2ac6dbf464cc8b/orjson-3.10.12-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:038d42c7bc0606443459b8fe2d1f121db474c49067d8d14c6a075bbea8bf14dd", size = 130664 },
+ { url = "https://files.pythonhosted.org/packages/8c/f4/ba31019d0646ce51f7ac75af6dabf98fd89dbf8ad87a9086da34710738e7/orjson-3.10.12-cp311-none-win32.whl", hash = "sha256:03b553c02ab39bed249bedd4abe37b2118324d1674e639b33fab3d1dafdf4d79", size = 143623 },
+ { url = "https://files.pythonhosted.org/packages/83/fe/babf08842b989acf4c46103fefbd7301f026423fab47e6f3ba07b54d7837/orjson-3.10.12-cp311-none-win_amd64.whl", hash = "sha256:8b8713b9e46a45b2af6b96f559bfb13b1e02006f4242c156cbadef27800a55a8", size = 135074 },
+ { url = "https://files.pythonhosted.org/packages/a1/2f/989adcafad49afb535da56b95d8f87d82e748548b2a86003ac129314079c/orjson-3.10.12-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:53206d72eb656ca5ac7d3a7141e83c5bbd3ac30d5eccfe019409177a57634b0d", size = 248678 },
+ { url = "https://files.pythonhosted.org/packages/69/b9/8c075e21a50c387649db262b618ebb7e4d40f4197b949c146fc225dd23da/orjson-3.10.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac8010afc2150d417ebda810e8df08dd3f544e0dd2acab5370cfa6bcc0662f8f", size = 136763 },
+ { url = "https://files.pythonhosted.org/packages/87/d3/78edf10b4ab14c19f6d918cf46a145818f4aca2b5a1773c894c5490d3a4c/orjson-3.10.12-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed459b46012ae950dd2e17150e838ab08215421487371fa79d0eced8d1461d70", size = 149137 },
+ { url = "https://files.pythonhosted.org/packages/16/81/5db8852bdf990a0ddc997fa8f16b80895b8cc77c0fe3701569ed2b4b9e78/orjson-3.10.12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8dcb9673f108a93c1b52bfc51b0af422c2d08d4fc710ce9c839faad25020bb69", size = 140567 },
+ { url = "https://files.pythonhosted.org/packages/fa/a6/9ce1e3e3db918512efadad489630c25841eb148513d21dab96f6b4157fa1/orjson-3.10.12-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:22a51ae77680c5c4652ebc63a83d5255ac7d65582891d9424b566fb3b5375ee9", size = 156620 },
+ { url = "https://files.pythonhosted.org/packages/47/d4/05133d6bea24e292d2f7628b1e19986554f7d97b6412b3e51d812e38db2d/orjson-3.10.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:910fdf2ac0637b9a77d1aad65f803bac414f0b06f720073438a7bd8906298192", size = 131555 },
+ { url = "https://files.pythonhosted.org/packages/b9/7a/b3fbffda8743135c7811e95dc2ab7cdbc5f04999b83c2957d046f1b3fac9/orjson-3.10.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:24ce85f7100160936bc2116c09d1a8492639418633119a2224114f67f63a4559", size = 139743 },
+ { url = "https://files.pythonhosted.org/packages/b5/13/95bbcc9a6584aa083da5ce5004ce3d59ea362a542a0b0938d884fd8790b6/orjson-3.10.12-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8a76ba5fc8dd9c913640292df27bff80a685bed3a3c990d59aa6ce24c352f8fc", size = 131733 },
+ { url = "https://files.pythonhosted.org/packages/e8/29/dddbb2ea6e7af426fcc3da65a370618a88141de75c6603313d70768d1df1/orjson-3.10.12-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:ff70ef093895fd53f4055ca75f93f047e088d1430888ca1229393a7c0521100f", size = 415788 },
+ { url = "https://files.pythonhosted.org/packages/53/df/4aea59324ac539975919b4705ee086aced38e351a6eb3eea0f5071dd5661/orjson-3.10.12-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:f4244b7018b5753ecd10a6d324ec1f347da130c953a9c88432c7fbc8875d13be", size = 142347 },
+ { url = "https://files.pythonhosted.org/packages/55/55/a52d83d7c49f8ff44e0daab10554490447d6c658771569e1c662aa7057fe/orjson-3.10.12-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:16135ccca03445f37921fa4b585cff9a58aa8d81ebcb27622e69bfadd220b32c", size = 130829 },
+ { url = "https://files.pythonhosted.org/packages/a1/8b/b1beb1624dd4adf7d72e2d9b73c4b529e7851c0c754f17858ea13e368b33/orjson-3.10.12-cp312-none-win32.whl", hash = "sha256:2d879c81172d583e34153d524fcba5d4adafbab8349a7b9f16ae511c2cee8708", size = 143659 },
+ { url = "https://files.pythonhosted.org/packages/13/91/634c9cd0bfc6a857fc8fab9bf1a1bd9f7f3345e0d6ca5c3d4569ceb6dcfa/orjson-3.10.12-cp312-none-win_amd64.whl", hash = "sha256:fc23f691fa0f5c140576b8c365bc942d577d861a9ee1142e4db468e4e17094fb", size = 135221 },
+ { url = "https://files.pythonhosted.org/packages/1b/bb/3f560735f46fa6f875a9d7c4c2171a58cfb19f56a633d5ad5037a924f35f/orjson-3.10.12-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:47962841b2a8aa9a258b377f5188db31ba49af47d4003a32f55d6f8b19006543", size = 248662 },
+ { url = "https://files.pythonhosted.org/packages/a3/df/54817902350636cc9270db20486442ab0e4db33b38555300a1159b439d16/orjson-3.10.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6334730e2532e77b6054e87ca84f3072bee308a45a452ea0bffbbbc40a67e296", size = 126055 },
+ { url = "https://files.pythonhosted.org/packages/2e/77/55835914894e00332601a74540840f7665e81f20b3e2b9a97614af8565ed/orjson-3.10.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:accfe93f42713c899fdac2747e8d0d5c659592df2792888c6c5f829472e4f85e", size = 131507 },
+ { url = "https://files.pythonhosted.org/packages/33/9e/b91288361898e3158062a876b5013c519a5d13e692ac7686e3486c4133ab/orjson-3.10.12-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a7974c490c014c48810d1dede6c754c3cc46598da758c25ca3b4001ac45b703f", size = 131686 },
+ { url = "https://files.pythonhosted.org/packages/b2/15/08ce117d60a4d2d3fd24e6b21db463139a658e9f52d22c9c30af279b4187/orjson-3.10.12-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:3f250ce7727b0b2682f834a3facff88e310f52f07a5dcfd852d99637d386e79e", size = 415710 },
+ { url = "https://files.pythonhosted.org/packages/71/af/c09da5ed58f9c002cf83adff7a4cdf3e6cee742aa9723395f8dcdb397233/orjson-3.10.12-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f31422ff9486ae484f10ffc51b5ab2a60359e92d0716fcce1b3593d7bb8a9af6", size = 142305 },
+ { url = "https://files.pythonhosted.org/packages/17/d1/8612038d44f33fae231e9ba480d273bac2b0383ce9e77cb06bede1224ae3/orjson-3.10.12-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5f29c5d282bb2d577c2a6bbde88d8fdcc4919c593f806aac50133f01b733846e", size = 130815 },
+ { url = "https://files.pythonhosted.org/packages/67/2c/d5f87834be3591555cfaf9aecdf28f480a6f0b4afeaac53bad534bf9518f/orjson-3.10.12-cp313-none-win32.whl", hash = "sha256:f45653775f38f63dc0e6cd4f14323984c3149c05d6007b58cb154dd080ddc0dc", size = 143664 },
+ { url = "https://files.pythonhosted.org/packages/6a/05/7d768fa3ca23c9b3e1e09117abeded1501119f1d8de0ab722938c91ab25d/orjson-3.10.12-cp313-none-win_amd64.whl", hash = "sha256:229994d0c376d5bdc91d92b3c9e6be2f1fbabd4cc1b59daae1443a46ee5e9825", size = 134944 },
]
[[package]]
@@ -2713,9 +2868,18 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/3c/a6/bc1012356d8ece4d66dd75c4b9fc6c1f6650ddd5991e421177d9f8f671be/platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb", size = 18439 },
]
+[[package]]
+name = "pluggy"
+version = "1.5.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 },
+]
+
[[package]]
name = "posthog"
-version = "3.7.0"
+version = "3.7.4"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "backoff" },
@@ -2724,9 +2888,9 @@ dependencies = [
{ name = "requests" },
{ name = "six" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/4c/7a/a6ab0d18f93255a4488196269ff53f2720821b169e1964cbf785d5f54b32/posthog-3.7.0.tar.gz", hash = "sha256:b095d4354ba23f8b346ab5daed8ecfc5108772f922006982dfe8b2d29ebc6e0e", size = 49661 }
+sdist = { url = "https://files.pythonhosted.org/packages/77/a0/7607d4fd7c52b086671d8618e76cb5b9a642311fd6f352ebd7eb035319f2/posthog-3.7.4.tar.gz", hash = "sha256:19384bd09d330f9787a7e2446aba14c8057ece56144970ea2791072d4e40cd36", size = 50174 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/c2/11/a8d4283b324cda992fbb72611c46c5c68f87902a10383dba1bde91660cc6/posthog-3.7.0-py2.py3-none-any.whl", hash = "sha256:3555161c3a9557b5666f96d8e1f17f410ea0f07db56e399e336a1656d4e5c722", size = 54359 },
+ { url = "https://files.pythonhosted.org/packages/d3/f2/5ee24cd69e2120bf87356c02ace0438b4e4fb78229fddcbf6f1c6be377d5/posthog-3.7.4-py2.py3-none-any.whl", hash = "sha256:21c18c6bf43b2de303ea4cd6e95804cc0f24c20cb2a96a8fd09da2ed50b62faa", size = 54777 },
]
[[package]]
@@ -2750,7 +2914,9 @@ name = "project-zeno"
version = "0.1.0"
source = { virtual = "." }
dependencies = [
+ { name = "earthengine-api" },
{ name = "fastapi", extra = ["standard"] },
+ { name = "geojson-pydantic" },
{ name = "langchain" },
{ name = "langchain-anthropic" },
{ name = "langchain-chroma" },
@@ -2759,7 +2925,6 @@ dependencies = [
{ name = "langchain-openai" },
{ name = "langfuse" },
{ name = "langgraph" },
- { name = "matplotlib" },
{ name = "streamlit" },
{ name = "streamlit-folium" },
{ name = "thefuzz" },
@@ -2769,14 +2934,19 @@ dependencies = [
[package.dev-dependencies]
dev = [
+ { name = "geopandas" },
{ name = "jupyterlab" },
+ { name = "matplotlib" },
{ name = "pre-commit" },
+ { name = "pytest" },
{ name = "ruff" },
]
[package.metadata]
requires-dist = [
+ { name = "earthengine-api", specifier = ">=1.4.0" },
{ name = "fastapi", extras = ["standard"], specifier = ">=0.115.4" },
+ { name = "geojson-pydantic", specifier = ">=1.1.2" },
{ name = "langchain", specifier = ">=0.3.7" },
{ name = "langchain-anthropic", specifier = ">=0.2.4" },
{ name = "langchain-chroma", specifier = ">=0.1.4" },
@@ -2785,7 +2955,6 @@ requires-dist = [
{ name = "langchain-openai", specifier = ">=0.2.6" },
{ name = "langfuse", specifier = ">=2.53.9" },
{ name = "langgraph", specifier = ">=0.2.45" },
- { name = "matplotlib", specifier = ">=3.9.2" },
{ name = "streamlit", specifier = ">=1.40.0" },
{ name = "streamlit-folium", specifier = ">=0.23.2" },
{ name = "thefuzz", specifier = ">=0.22.1" },
@@ -2795,8 +2964,11 @@ requires-dist = [
[package.metadata.requires-dev]
dev = [
+ { name = "geopandas", specifier = ">=1.0.1" },
{ name = "jupyterlab", specifier = ">=4.3.0" },
+ { name = "matplotlib", specifier = ">=3.9.2" },
{ name = "pre-commit", specifier = ">=4.0.1" },
+ { name = "pytest", specifier = ">=8.3.3" },
{ name = "ruff", specifier = ">=0.7.3" },
]
@@ -2878,18 +3050,30 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/3d/b6/e6d98278f2d49b22b4d033c9f792eda783b9ab2094b041f013fc69bcde87/propcache-0.2.0-py3-none-any.whl", hash = "sha256:2ccc28197af5313706511fab3a8b66dcd6da067a1331372c82ea1cb74285e036", size = 11603 },
]
+[[package]]
+name = "proto-plus"
+version = "1.25.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "protobuf" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/7e/05/74417b2061e1bf1b82776037cad97094228fa1c1b6e82d08a78d3fb6ddb6/proto_plus-1.25.0.tar.gz", hash = "sha256:fbb17f57f7bd05a68b7707e745e26528b0b3c34e378db91eef93912c54982d91", size = 56124 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/dd/25/0b7cc838ae3d76d46539020ec39fc92bfc9acc29367e58fe912702c2a79e/proto_plus-1.25.0-py3-none-any.whl", hash = "sha256:c91fc4a65074ade8e458e95ef8bac34d4008daa7cce4a12d6707066fca648961", size = 50126 },
+]
+
[[package]]
name = "protobuf"
-version = "5.28.3"
+version = "5.29.0"
source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/74/6e/e69eb906fddcb38f8530a12f4b410699972ab7ced4e21524ece9d546ac27/protobuf-5.28.3.tar.gz", hash = "sha256:64badbc49180a5e401f373f9ce7ab1d18b63f7dd4a9cdc43c92b9f0b481cef7b", size = 422479 }
+sdist = { url = "https://files.pythonhosted.org/packages/6a/bb/8e59a30b83102a37d24f907f417febb58e5f544d4f124dd1edcd12e078bf/protobuf-5.29.0.tar.gz", hash = "sha256:445a0c02483869ed8513a585d80020d012c6dc60075f96fa0563a724987b1001", size = 424944 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/d1/c5/05163fad52d7c43e124a545f1372d18266db36036377ad29de4271134a6a/protobuf-5.28.3-cp310-abi3-win32.whl", hash = "sha256:0c4eec6f987338617072592b97943fdbe30d019c56126493111cf24344c1cc24", size = 419624 },
- { url = "https://files.pythonhosted.org/packages/9c/4c/4563ebe001ff30dca9d7ed12e471fa098d9759712980cde1fd03a3a44fb7/protobuf-5.28.3-cp310-abi3-win_amd64.whl", hash = "sha256:91fba8f445723fcf400fdbe9ca796b19d3b1242cd873907979b9ed71e4afe868", size = 431464 },
- { url = "https://files.pythonhosted.org/packages/1c/f2/baf397f3dd1d3e4af7e3f5a0382b868d25ac068eefe1ebde05132333436c/protobuf-5.28.3-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a3f6857551e53ce35e60b403b8a27b0295f7d6eb63d10484f12bc6879c715687", size = 414743 },
- { url = "https://files.pythonhosted.org/packages/85/50/cd61a358ba1601f40e7d38bcfba22e053f40ef2c50d55b55926aecc8fec7/protobuf-5.28.3-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:3fa2de6b8b29d12c61911505d893afe7320ce7ccba4df913e2971461fa36d584", size = 316511 },
- { url = "https://files.pythonhosted.org/packages/5d/ae/3257b09328c0b4e59535e497b0c7537d4954038bdd53a2f0d2f49d15a7c4/protobuf-5.28.3-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:712319fbdddb46f21abb66cd33cb9e491a5763b2febd8f228251add221981135", size = 316624 },
- { url = "https://files.pythonhosted.org/packages/ad/c3/2377c159e28ea89a91cf1ca223f827ae8deccb2c9c401e5ca233cd73002f/protobuf-5.28.3-py3-none-any.whl", hash = "sha256:cee1757663fa32a1ee673434fcf3bf24dd54763c79690201208bafec62f19eed", size = 169511 },
+ { url = "https://files.pythonhosted.org/packages/31/cc/98140acbcc3e3a58c679d50dd4f04c3687bdd19690f388c65bb1ae4c1e5e/protobuf-5.29.0-cp310-abi3-win32.whl", hash = "sha256:ea7fb379b257911c8c020688d455e8f74efd2f734b72dc1ea4b4d7e9fd1326f2", size = 422709 },
+ { url = "https://files.pythonhosted.org/packages/c9/91/38fb97b0cbe96109fa257536ad49dffdac3c8f86b46d9c85dc9e949b5291/protobuf-5.29.0-cp310-abi3-win_amd64.whl", hash = "sha256:34a90cf30c908f47f40ebea7811f743d360e202b6f10d40c02529ebd84afc069", size = 434510 },
+ { url = "https://files.pythonhosted.org/packages/da/97/faeca508d61b231372cdc3006084fd97f21f3c8c726a2de5f2ebb8e4ab78/protobuf-5.29.0-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:c931c61d0cc143a2e756b1e7f8197a508de5365efd40f83c907a9febf36e6b43", size = 417827 },
+ { url = "https://files.pythonhosted.org/packages/eb/d6/c6a45a285374ab14499a9ef5a69e4e7b4911e641465681c1d602518d6ab2/protobuf-5.29.0-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:85286a47caf63b34fa92fdc1fd98b649a8895db595cfa746c5286eeae890a0b1", size = 319576 },
+ { url = "https://files.pythonhosted.org/packages/ee/2e/cc46181ddce0940647d21a8341bf2eddad247a5d030e8c30c7a342793978/protobuf-5.29.0-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:0d10091d6d03537c3f902279fcf11e95372bdd36a79556311da0487455791b20", size = 319672 },
+ { url = "https://files.pythonhosted.org/packages/7c/6c/dd1f0e8372ec2a8006102871d8da1466b116f3328db96972e19bf24f09ca/protobuf-5.29.0-py3-none-any.whl", hash = "sha256:88c4af76a73183e21061881360240c0cdd3c39d263b4e8fb570aaf83348d608f", size = 172553 },
]
[[package]]
@@ -2927,37 +3111,37 @@ wheels = [
[[package]]
name = "pyarrow"
-version = "18.0.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/ec/41/6bfd027410ba2cc35da4682394fdc4285dc345b1d99f7bd55e96255d0c7d/pyarrow-18.0.0.tar.gz", hash = "sha256:a6aa027b1a9d2970cf328ccd6dbe4a996bc13c39fd427f502782f5bdb9ca20f5", size = 1118457 }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/d6/63/a4854246fb3d1387e176e2989d919b8186ce3806ca244fbed27217608708/pyarrow-18.0.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:d5795e37c0a33baa618c5e054cd61f586cf76850a251e2b21355e4085def6280", size = 29532160 },
- { url = "https://files.pythonhosted.org/packages/53/dc/9a6672fb35d36323f4548b08064fb264353024538f60adaedf0c6df6b31d/pyarrow-18.0.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:5f0510608ccd6e7f02ca8596962afb8c6cc84c453e7be0da4d85f5f4f7b0328a", size = 30844030 },
- { url = "https://files.pythonhosted.org/packages/8e/f9/cfcee70dcb48bc0fee6265a5d2502ea85ccdab54957fd2dd5b327dfc8807/pyarrow-18.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:616ea2826c03c16e87f517c46296621a7c51e30400f6d0a61be645f203aa2b93", size = 39177238 },
- { url = "https://files.pythonhosted.org/packages/17/de/cd37c379dc1aa379956b15d9c89ff920cf48c239f64fbed0ca97dffa3acc/pyarrow-18.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a1824f5b029ddd289919f354bc285992cb4e32da518758c136271cf66046ef22", size = 40089208 },
- { url = "https://files.pythonhosted.org/packages/dd/80/83453dcceaa49d7aa42b0b6aaa7a0797231b9aee1cc213f286e0be3bdf89/pyarrow-18.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:6dd1b52d0d58dd8f685ced9971eb49f697d753aa7912f0a8f50833c7a7426319", size = 38606715 },
- { url = "https://files.pythonhosted.org/packages/18/f4/5687ead1672920b5ed8840398551cc3a96a1389be68b68d18aca3944e525/pyarrow-18.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:320ae9bd45ad7ecc12ec858b3e8e462578de060832b98fc4d671dee9f10d9954", size = 40040879 },
- { url = "https://files.pythonhosted.org/packages/49/11/ea314ad45f45d3245f0768dba711fd3d5deb25a9e08af298d0924ab94aee/pyarrow-18.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:2c992716cffb1088414f2b478f7af0175fd0a76fea80841b1706baa8fb0ebaad", size = 25105360 },
- { url = "https://files.pythonhosted.org/packages/e4/ea/a7f77688e6c529723b37589af4db3e7179414e223878301907c5bd49d6bc/pyarrow-18.0.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:e7ab04f272f98ebffd2a0661e4e126036f6936391ba2889ed2d44c5006237802", size = 29493113 },
- { url = "https://files.pythonhosted.org/packages/79/8a/a3af902af623a1cf4f9d4d27d81e634caf1585a819b7530728a8147e391c/pyarrow-18.0.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:03f40b65a43be159d2f97fd64dc998f769d0995a50c00f07aab58b0b3da87e1f", size = 30833386 },
- { url = "https://files.pythonhosted.org/packages/46/1e/f38b22e12e2ce9ee7c9d805ce234f68b23a0568b9a6bea223e3a99ca0068/pyarrow-18.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be08af84808dff63a76860847c48ec0416928a7b3a17c2f49a072cac7c45efbd", size = 39170798 },
- { url = "https://files.pythonhosted.org/packages/f8/fb/fd0ef3e0f03227ab183f8dc941f4ef59636d8c382e246954601dd29cf1b0/pyarrow-18.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c70c1965cde991b711a98448ccda3486f2a336457cf4ec4dca257a926e149c9", size = 40103326 },
- { url = "https://files.pythonhosted.org/packages/7c/bd/5de139adba486db5ccc1b7ecab51e328a9dce354c82c6d26c2f642b178d3/pyarrow-18.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:00178509f379415a3fcf855af020e3340254f990a8534294ec3cf674d6e255fd", size = 38583592 },
- { url = "https://files.pythonhosted.org/packages/8d/1f/9bb3b3a644892d631dbbe99053cdb5295092d2696b4bcd3d21f29624c689/pyarrow-18.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:a71ab0589a63a3e987beb2bc172e05f000a5c5be2636b4b263c44034e215b5d7", size = 40043128 },
- { url = "https://files.pythonhosted.org/packages/74/39/323621402c2b1ce7ba600d03c81cf9645b862350d7c495f3fcef37850d1d/pyarrow-18.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:fe92efcdbfa0bcf2fa602e466d7f2905500f33f09eb90bf0bcf2e6ca41b574c8", size = 25075300 },
- { url = "https://files.pythonhosted.org/packages/13/38/4a8f8e97301adbb51c0bae7e0bc39e6878609c9337543bbbd2e9b1b3046e/pyarrow-18.0.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:907ee0aa8ca576f5e0cdc20b5aeb2ad4d3953a3b4769fc4b499e00ef0266f02f", size = 29475921 },
- { url = "https://files.pythonhosted.org/packages/11/75/43aad9b0678dfcdf5cc4d632f0ead92abe5666ce5b5cc985abab75e0d410/pyarrow-18.0.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:66dcc216ebae2eb4c37b223feaf82f15b69d502821dde2da138ec5a3716e7463", size = 30811777 },
- { url = "https://files.pythonhosted.org/packages/1e/b7/477bcba6ff7e65d8045d0b6c04b36f12051385f533189617a652f551e742/pyarrow-18.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc1daf7c425f58527900876354390ee41b0ae962a73ad0959b9d829def583bb1", size = 39163582 },
- { url = "https://files.pythonhosted.org/packages/c8/a7/37be6828370a98b3ed1125daf41dc651b27e2a9506a3682da305db757f32/pyarrow-18.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:871b292d4b696b09120ed5bde894f79ee2a5f109cb84470546471df264cae136", size = 40095799 },
- { url = "https://files.pythonhosted.org/packages/5a/a0/a4eb68c3495c5e72b404c9106c4af2d02860b0a64bc9450023ed9a412c0b/pyarrow-18.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:082ba62bdcb939824ba1ce10b8acef5ab621da1f4c4805e07bfd153617ac19d4", size = 38575191 },
- { url = "https://files.pythonhosted.org/packages/95/1f/6c629156ed4b8e2262da57868930cbb8cffba318b8413043acd02db9ad97/pyarrow-18.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:2c664ab88b9766413197733c1720d3dcd4190e8fa3bbdc3710384630a0a7207b", size = 40031824 },
- { url = "https://files.pythonhosted.org/packages/00/4f/5add0884b3ee6f4f1875e9cd0e69a30905798fa1497a80ab6df4645b54b4/pyarrow-18.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:dc892be34dbd058e8d189b47db1e33a227d965ea8805a235c8a7286f7fd17d3a", size = 25068305 },
- { url = "https://files.pythonhosted.org/packages/84/f7/fa53f3062dd2e390b8b021ce2d8de064a141b4bffc2add05471b5b2ee0eb/pyarrow-18.0.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:28f9c39a56d2c78bf6b87dcc699d520ab850919d4a8c7418cd20eda49874a2ea", size = 29503390 },
- { url = "https://files.pythonhosted.org/packages/2b/d3/03bc8a5356d95098878c0fa076e69992c6abc212898cd7286cfeab0f2c60/pyarrow-18.0.0-cp313-cp313t-macosx_12_0_x86_64.whl", hash = "sha256:f1a198a50c409ab2d009fbf20956ace84567d67f2c5701511d4dd561fae6f32e", size = 30806216 },
- { url = "https://files.pythonhosted.org/packages/75/04/3b27d1352d3252abf42b0a83a2e7f6fcb7665cc98a5d3777f427eaa166bc/pyarrow-18.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5bd7fd32e3ace012d43925ea4fc8bd1b02cc6cc1e9813b518302950e89b5a22", size = 39086243 },
- { url = "https://files.pythonhosted.org/packages/30/97/861dfbe3987156f817f3d7e6feb239de1e085a6b576f62454b7bc42c2713/pyarrow-18.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:336addb8b6f5208be1b2398442c703a710b6b937b1a046065ee4db65e782ff5a", size = 40055188 },
- { url = "https://files.pythonhosted.org/packages/25/3a/14f024a1c8fb5ff67d79b616fe218bbfa06f23f198e762c6a900a843796a/pyarrow-18.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:45476490dd4adec5472c92b4d253e245258745d0ccaabe706f8d03288ed60a79", size = 38511444 },
- { url = "https://files.pythonhosted.org/packages/92/a2/81c1dd744b322c0c548f793deb521bf23500806d754128ddf6f978736dff/pyarrow-18.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:b46591222c864e7da7faa3b19455196416cd8355ff6c2cc2e65726a760a3c420", size = 40006508 },
+version = "18.1.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/7f/7b/640785a9062bb00314caa8a387abce547d2a420cf09bd6c715fe659ccffb/pyarrow-18.1.0.tar.gz", hash = "sha256:9386d3ca9c145b5539a1cfc75df07757dff870168c959b473a0bccbc3abc8c73", size = 1118671 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/9e/4d/a4988e7d82f4fbc797715db4185939a658eeffb07a25bab7262bed1ea076/pyarrow-18.1.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:eaeabf638408de2772ce3d7793b2668d4bb93807deed1725413b70e3156a7854", size = 29554860 },
+ { url = "https://files.pythonhosted.org/packages/59/03/3a42c5c1e4bd4c900ab62aa1ff6b472bdb159ba8f1c3e5deadab7222244f/pyarrow-18.1.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:3b2e2239339c538f3464308fd345113f886ad031ef8266c6f004d49769bb074c", size = 30867076 },
+ { url = "https://files.pythonhosted.org/packages/75/7e/332055ac913373e89256dce9d14b7708f55f7bd5be631456c897f0237738/pyarrow-18.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f39a2e0ed32a0970e4e46c262753417a60c43a3246972cfc2d3eb85aedd01b21", size = 39212135 },
+ { url = "https://files.pythonhosted.org/packages/8c/64/5099cdb325828722ef7ffeba9a4696f238eb0cdeae227f831c2d77fcf1bd/pyarrow-18.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e31e9417ba9c42627574bdbfeada7217ad8a4cbbe45b9d6bdd4b62abbca4c6f6", size = 40125195 },
+ { url = "https://files.pythonhosted.org/packages/83/88/1938d783727db1b178ff71bc6a6143d7939e406db83a9ec23cad3dad325c/pyarrow-18.1.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:01c034b576ce0eef554f7c3d8c341714954be9b3f5d5bc7117006b85fcf302fe", size = 38641884 },
+ { url = "https://files.pythonhosted.org/packages/5e/b5/9e14e9f7590e0eaa435ecea84dabb137284a4dbba7b3c337b58b65b76d95/pyarrow-18.1.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:f266a2c0fc31995a06ebd30bcfdb7f615d7278035ec5b1cd71c48d56daaf30b0", size = 40076877 },
+ { url = "https://files.pythonhosted.org/packages/4d/a3/817ac7fe0891a2d66e247e223080f3a6a262d8aefd77e11e8c27e6acf4e1/pyarrow-18.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:d4f13eee18433f99adefaeb7e01d83b59f73360c231d4782d9ddfaf1c3fbde0a", size = 25119811 },
+ { url = "https://files.pythonhosted.org/packages/6a/50/12829e7111b932581e51dda51d5cb39207a056c30fe31ef43f14c63c4d7e/pyarrow-18.1.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:9f3a76670b263dc41d0ae877f09124ab96ce10e4e48f3e3e4257273cee61ad0d", size = 29514620 },
+ { url = "https://files.pythonhosted.org/packages/d1/41/468c944eab157702e96abab3d07b48b8424927d4933541ab43788bb6964d/pyarrow-18.1.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:da31fbca07c435be88a0c321402c4e31a2ba61593ec7473630769de8346b54ee", size = 30856494 },
+ { url = "https://files.pythonhosted.org/packages/68/f9/29fb659b390312a7345aeb858a9d9c157552a8852522f2c8bad437c29c0a/pyarrow-18.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:543ad8459bc438efc46d29a759e1079436290bd583141384c6f7a1068ed6f992", size = 39203624 },
+ { url = "https://files.pythonhosted.org/packages/6e/f6/19360dae44200e35753c5c2889dc478154cd78e61b1f738514c9f131734d/pyarrow-18.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0743e503c55be0fdb5c08e7d44853da27f19dc854531c0570f9f394ec9671d54", size = 40139341 },
+ { url = "https://files.pythonhosted.org/packages/bb/e6/9b3afbbcf10cc724312e824af94a2e993d8ace22994d823f5c35324cebf5/pyarrow-18.1.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:d4b3d2a34780645bed6414e22dda55a92e0fcd1b8a637fba86800ad737057e33", size = 38618629 },
+ { url = "https://files.pythonhosted.org/packages/3a/2e/3b99f8a3d9e0ccae0e961978a0d0089b25fb46ebbcfb5ebae3cca179a5b3/pyarrow-18.1.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:c52f81aa6f6575058d8e2c782bf79d4f9fdc89887f16825ec3a66607a5dd8e30", size = 40078661 },
+ { url = "https://files.pythonhosted.org/packages/76/52/f8da04195000099d394012b8d42c503d7041b79f778d854f410e5f05049a/pyarrow-18.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:0ad4892617e1a6c7a551cfc827e072a633eaff758fa09f21c4ee548c30bcaf99", size = 25092330 },
+ { url = "https://files.pythonhosted.org/packages/cb/87/aa4d249732edef6ad88899399047d7e49311a55749d3c373007d034ee471/pyarrow-18.1.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:84e314d22231357d473eabec709d0ba285fa706a72377f9cc8e1cb3c8013813b", size = 29497406 },
+ { url = "https://files.pythonhosted.org/packages/3c/c7/ed6adb46d93a3177540e228b5ca30d99fc8ea3b13bdb88b6f8b6467e2cb7/pyarrow-18.1.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:f591704ac05dfd0477bb8f8e0bd4b5dc52c1cadf50503858dce3a15db6e46ff2", size = 30835095 },
+ { url = "https://files.pythonhosted.org/packages/41/d7/ed85001edfb96200ff606943cff71d64f91926ab42828676c0fc0db98963/pyarrow-18.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:acb7564204d3c40babf93a05624fc6a8ec1ab1def295c363afc40b0c9e66c191", size = 39194527 },
+ { url = "https://files.pythonhosted.org/packages/59/16/35e28eab126342fa391593415d79477e89582de411bb95232f28b131a769/pyarrow-18.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:74de649d1d2ccb778f7c3afff6085bd5092aed4c23df9feeb45dd6b16f3811aa", size = 40131443 },
+ { url = "https://files.pythonhosted.org/packages/0c/95/e855880614c8da20f4cd74fa85d7268c725cf0013dc754048593a38896a0/pyarrow-18.1.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:f96bd502cb11abb08efea6dab09c003305161cb6c9eafd432e35e76e7fa9b90c", size = 38608750 },
+ { url = "https://files.pythonhosted.org/packages/54/9d/f253554b1457d4fdb3831b7bd5f8f00f1795585a606eabf6fec0a58a9c38/pyarrow-18.1.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:36ac22d7782554754a3b50201b607d553a8d71b78cdf03b33c1125be4b52397c", size = 40066690 },
+ { url = "https://files.pythonhosted.org/packages/2f/58/8912a2563e6b8273e8aa7b605a345bba5a06204549826f6493065575ebc0/pyarrow-18.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:25dbacab8c5952df0ca6ca0af28f50d45bd31c1ff6fcf79e2d120b4a65ee7181", size = 25081054 },
+ { url = "https://files.pythonhosted.org/packages/82/f9/d06ddc06cab1ada0c2f2fd205ac8c25c2701182de1b9c4bf7a0a44844431/pyarrow-18.1.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:6a276190309aba7bc9d5bd2933230458b3521a4317acfefe69a354f2fe59f2bc", size = 29525542 },
+ { url = "https://files.pythonhosted.org/packages/ab/94/8917e3b961810587ecbdaa417f8ebac0abb25105ae667b7aa11c05876976/pyarrow-18.1.0-cp313-cp313t-macosx_12_0_x86_64.whl", hash = "sha256:ad514dbfcffe30124ce655d72771ae070f30bf850b48bc4d9d3b25993ee0e386", size = 30829412 },
+ { url = "https://files.pythonhosted.org/packages/5e/e3/3b16c3190f3d71d3b10f6758d2d5f7779ef008c4fd367cedab3ed178a9f7/pyarrow-18.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aebc13a11ed3032d8dd6e7171eb6e86d40d67a5639d96c35142bd568b9299324", size = 39119106 },
+ { url = "https://files.pythonhosted.org/packages/1d/d6/5d704b0d25c3c79532f8c0639f253ec2803b897100f64bcb3f53ced236e5/pyarrow-18.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6cf5c05f3cee251d80e98726b5c7cc9f21bab9e9783673bac58e6dfab57ecc8", size = 40090940 },
+ { url = "https://files.pythonhosted.org/packages/37/29/366bc7e588220d74ec00e497ac6710c2833c9176f0372fe0286929b2d64c/pyarrow-18.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:11b676cd410cf162d3f6a70b43fb9e1e40affbc542a1e9ed3681895f2962d3d9", size = 38548177 },
+ { url = "https://files.pythonhosted.org/packages/c8/11/fabf6ecabb1fe5b7d96889228ca2a9158c4c3bb732e3b8ee3f7f6d40b703/pyarrow-18.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:b76130d835261b38f14fc41fdfb39ad8d672afb84c447126b84d5472244cfaba", size = 40043567 },
]
[[package]]
@@ -2992,63 +3176,69 @@ wheels = [
[[package]]
name = "pydantic"
-version = "2.9.2"
+version = "2.10.2"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "annotated-types" },
{ name = "pydantic-core" },
{ name = "typing-extensions" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/a9/b7/d9e3f12af310e1120c21603644a1cd86f59060e040ec5c3a80b8f05fae30/pydantic-2.9.2.tar.gz", hash = "sha256:d155cef71265d1e9807ed1c32b4c8deec042a44a50a4188b25ac67ecd81a9c0f", size = 769917 }
+sdist = { url = "https://files.pythonhosted.org/packages/41/86/a03390cb12cf64e2a8df07c267f3eb8d5035e0f9a04bb20fb79403d2a00e/pydantic-2.10.2.tar.gz", hash = "sha256:2bc2d7f17232e0841cbba4641e65ba1eb6fafb3a08de3a091ff3ce14a197c4fa", size = 785401 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/df/e4/ba44652d562cbf0bf320e0f3810206149c8a4e99cdbf66da82e97ab53a15/pydantic-2.9.2-py3-none-any.whl", hash = "sha256:f048cec7b26778210e28a0459867920654d48e5e62db0958433636cde4254f12", size = 434928 },
+ { url = "https://files.pythonhosted.org/packages/d5/74/da832196702d0c56eb86b75bfa346db9238617e29b0b7ee3b8b4eccfe654/pydantic-2.10.2-py3-none-any.whl", hash = "sha256:cfb96e45951117c3024e6b67b25cdc33a3cb7b2fa62e239f7af1378358a1d99e", size = 456364 },
]
[[package]]
name = "pydantic-core"
-version = "2.23.4"
+version = "2.27.1"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "typing-extensions" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/e2/aa/6b6a9b9f8537b872f552ddd46dd3da230367754b6f707b8e1e963f515ea3/pydantic_core-2.23.4.tar.gz", hash = "sha256:2584f7cf844ac4d970fba483a717dbe10c1c1c96a969bf65d61ffe94df1b2863", size = 402156 }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/5d/30/890a583cd3f2be27ecf32b479d5d615710bb926d92da03e3f7838ff3e58b/pydantic_core-2.23.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:77733e3892bb0a7fa797826361ce8a9184d25c8dffaec60b7ffe928153680ba8", size = 1865160 },
- { url = "https://files.pythonhosted.org/packages/1d/9a/b634442e1253bc6889c87afe8bb59447f106ee042140bd57680b3b113ec7/pydantic_core-2.23.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b84d168f6c48fabd1f2027a3d1bdfe62f92cade1fb273a5d68e621da0e44e6d", size = 1776777 },
- { url = "https://files.pythonhosted.org/packages/75/9a/7816295124a6b08c24c96f9ce73085032d8bcbaf7e5a781cd41aa910c891/pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:df49e7a0861a8c36d089c1ed57d308623d60416dab2647a4a17fe050ba85de0e", size = 1799244 },
- { url = "https://files.pythonhosted.org/packages/a9/8f/89c1405176903e567c5f99ec53387449e62f1121894aa9fc2c4fdc51a59b/pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ff02b6d461a6de369f07ec15e465a88895f3223eb75073ffea56b84d9331f607", size = 1805307 },
- { url = "https://files.pythonhosted.org/packages/d5/a5/1a194447d0da1ef492e3470680c66048fef56fc1f1a25cafbea4bc1d1c48/pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:996a38a83508c54c78a5f41456b0103c30508fed9abcad0a59b876d7398f25fd", size = 2000663 },
- { url = "https://files.pythonhosted.org/packages/13/a5/1df8541651de4455e7d587cf556201b4f7997191e110bca3b589218745a5/pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d97683ddee4723ae8c95d1eddac7c192e8c552da0c73a925a89fa8649bf13eea", size = 2655941 },
- { url = "https://files.pythonhosted.org/packages/44/31/a3899b5ce02c4316865e390107f145089876dff7e1dfc770a231d836aed8/pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:216f9b2d7713eb98cb83c80b9c794de1f6b7e3145eef40400c62e86cee5f4e1e", size = 2052105 },
- { url = "https://files.pythonhosted.org/packages/1b/aa/98e190f8745d5ec831f6d5449344c48c0627ac5fed4e5340a44b74878f8e/pydantic_core-2.23.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6f783e0ec4803c787bcea93e13e9932edab72068f68ecffdf86a99fd5918878b", size = 1919967 },
- { url = "https://files.pythonhosted.org/packages/ae/35/b6e00b6abb2acfee3e8f85558c02a0822e9a8b2f2d812ea8b9079b118ba0/pydantic_core-2.23.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d0776dea117cf5272382634bd2a5c1b6eb16767c223c6a5317cd3e2a757c61a0", size = 1964291 },
- { url = "https://files.pythonhosted.org/packages/13/46/7bee6d32b69191cd649bbbd2361af79c472d72cb29bb2024f0b6e350ba06/pydantic_core-2.23.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d5f7a395a8cf1621939692dba2a6b6a830efa6b3cee787d82c7de1ad2930de64", size = 2109666 },
- { url = "https://files.pythonhosted.org/packages/39/ef/7b34f1b122a81b68ed0a7d0e564da9ccdc9a2924c8d6c6b5b11fa3a56970/pydantic_core-2.23.4-cp311-none-win32.whl", hash = "sha256:74b9127ffea03643e998e0c5ad9bd3811d3dac8c676e47db17b0ee7c3c3bf35f", size = 1732940 },
- { url = "https://files.pythonhosted.org/packages/2f/76/37b7e76c645843ff46c1d73e046207311ef298d3f7b2f7d8f6ac60113071/pydantic_core-2.23.4-cp311-none-win_amd64.whl", hash = "sha256:98d134c954828488b153d88ba1f34e14259284f256180ce659e8d83e9c05eaa3", size = 1916804 },
- { url = "https://files.pythonhosted.org/packages/74/7b/8e315f80666194b354966ec84b7d567da77ad927ed6323db4006cf915f3f/pydantic_core-2.23.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f3e0da4ebaef65158d4dfd7d3678aad692f7666877df0002b8a522cdf088f231", size = 1856459 },
- { url = "https://files.pythonhosted.org/packages/14/de/866bdce10ed808323d437612aca1ec9971b981e1c52e5e42ad9b8e17a6f6/pydantic_core-2.23.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f69a8e0b033b747bb3e36a44e7732f0c99f7edd5cea723d45bc0d6e95377ffee", size = 1770007 },
- { url = "https://files.pythonhosted.org/packages/dc/69/8edd5c3cd48bb833a3f7ef9b81d7666ccddd3c9a635225214e044b6e8281/pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:723314c1d51722ab28bfcd5240d858512ffd3116449c557a1336cbe3919beb87", size = 1790245 },
- { url = "https://files.pythonhosted.org/packages/80/33/9c24334e3af796ce80d2274940aae38dd4e5676298b4398eff103a79e02d/pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bb2802e667b7051a1bebbfe93684841cc9351004e2badbd6411bf357ab8d5ac8", size = 1801260 },
- { url = "https://files.pythonhosted.org/packages/a5/6f/e9567fd90104b79b101ca9d120219644d3314962caa7948dd8b965e9f83e/pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d18ca8148bebe1b0a382a27a8ee60350091a6ddaf475fa05ef50dc35b5df6327", size = 1996872 },
- { url = "https://files.pythonhosted.org/packages/2d/ad/b5f0fe9e6cfee915dd144edbd10b6e9c9c9c9d7a56b69256d124b8ac682e/pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33e3d65a85a2a4a0dc3b092b938a4062b1a05f3a9abde65ea93b233bca0e03f2", size = 2661617 },
- { url = "https://files.pythonhosted.org/packages/06/c8/7d4b708f8d05a5cbfda3243aad468052c6e99de7d0937c9146c24d9f12e9/pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:128585782e5bfa515c590ccee4b727fb76925dd04a98864182b22e89a4e6ed36", size = 2071831 },
- { url = "https://files.pythonhosted.org/packages/89/4d/3079d00c47f22c9a9a8220db088b309ad6e600a73d7a69473e3a8e5e3ea3/pydantic_core-2.23.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:68665f4c17edcceecc112dfed5dbe6f92261fb9d6054b47d01bf6371a6196126", size = 1917453 },
- { url = "https://files.pythonhosted.org/packages/e9/88/9df5b7ce880a4703fcc2d76c8c2d8eb9f861f79d0c56f4b8f5f2607ccec8/pydantic_core-2.23.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:20152074317d9bed6b7a95ade3b7d6054845d70584216160860425f4fbd5ee9e", size = 1968793 },
- { url = "https://files.pythonhosted.org/packages/e3/b9/41f7efe80f6ce2ed3ee3c2dcfe10ab7adc1172f778cc9659509a79518c43/pydantic_core-2.23.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9261d3ce84fa1d38ed649c3638feefeae23d32ba9182963e465d58d62203bd24", size = 2116872 },
- { url = "https://files.pythonhosted.org/packages/63/08/b59b7a92e03dd25554b0436554bf23e7c29abae7cce4b1c459cd92746811/pydantic_core-2.23.4-cp312-none-win32.whl", hash = "sha256:4ba762ed58e8d68657fc1281e9bb72e1c3e79cc5d464be146e260c541ec12d84", size = 1738535 },
- { url = "https://files.pythonhosted.org/packages/88/8d/479293e4d39ab409747926eec4329de5b7129beaedc3786eca070605d07f/pydantic_core-2.23.4-cp312-none-win_amd64.whl", hash = "sha256:97df63000f4fea395b2824da80e169731088656d1818a11b95f3b173747b6cd9", size = 1917992 },
- { url = "https://files.pythonhosted.org/packages/ad/ef/16ee2df472bf0e419b6bc68c05bf0145c49247a1095e85cee1463c6a44a1/pydantic_core-2.23.4-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:7530e201d10d7d14abce4fb54cfe5b94a0aefc87da539d0346a484ead376c3cc", size = 1856143 },
- { url = "https://files.pythonhosted.org/packages/da/fa/bc3dbb83605669a34a93308e297ab22be82dfb9dcf88c6cf4b4f264e0a42/pydantic_core-2.23.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:df933278128ea1cd77772673c73954e53a1c95a4fdf41eef97c2b779271bd0bd", size = 1770063 },
- { url = "https://files.pythonhosted.org/packages/4e/48/e813f3bbd257a712303ebdf55c8dc46f9589ec74b384c9f652597df3288d/pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cb3da3fd1b6a5d0279a01877713dbda118a2a4fc6f0d821a57da2e464793f05", size = 1790013 },
- { url = "https://files.pythonhosted.org/packages/b4/e0/56eda3a37929a1d297fcab1966db8c339023bcca0b64c5a84896db3fcc5c/pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:42c6dcb030aefb668a2b7009c85b27f90e51e6a3b4d5c9bc4c57631292015b0d", size = 1801077 },
- { url = "https://files.pythonhosted.org/packages/04/be/5e49376769bfbf82486da6c5c1683b891809365c20d7c7e52792ce4c71f3/pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:696dd8d674d6ce621ab9d45b205df149399e4bb9aa34102c970b721554828510", size = 1996782 },
- { url = "https://files.pythonhosted.org/packages/bc/24/e3ee6c04f1d58cc15f37bcc62f32c7478ff55142b7b3e6d42ea374ea427c/pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2971bb5ffe72cc0f555c13e19b23c85b654dd2a8f7ab493c262071377bfce9f6", size = 2661375 },
- { url = "https://files.pythonhosted.org/packages/c1/f8/11a9006de4e89d016b8de74ebb1db727dc100608bb1e6bbe9d56a3cbbcce/pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8394d940e5d400d04cad4f75c0598665cbb81aecefaca82ca85bd28264af7f9b", size = 2071635 },
- { url = "https://files.pythonhosted.org/packages/7c/45/bdce5779b59f468bdf262a5bc9eecbae87f271c51aef628d8c073b4b4b4c/pydantic_core-2.23.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0dff76e0602ca7d4cdaacc1ac4c005e0ce0dcfe095d5b5259163a80d3a10d327", size = 1916994 },
- { url = "https://files.pythonhosted.org/packages/d8/fa/c648308fe711ee1f88192cad6026ab4f925396d1293e8356de7e55be89b5/pydantic_core-2.23.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:7d32706badfe136888bdea71c0def994644e09fff0bfe47441deaed8e96fdbc6", size = 1968877 },
- { url = "https://files.pythonhosted.org/packages/16/16/b805c74b35607d24d37103007f899abc4880923b04929547ae68d478b7f4/pydantic_core-2.23.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ed541d70698978a20eb63d8c5d72f2cc6d7079d9d90f6b50bad07826f1320f5f", size = 2116814 },
- { url = "https://files.pythonhosted.org/packages/d1/58/5305e723d9fcdf1c5a655e6a4cc2a07128bf644ff4b1d98daf7a9dbf57da/pydantic_core-2.23.4-cp313-none-win32.whl", hash = "sha256:3d5639516376dce1940ea36edf408c554475369f5da2abd45d44621cb616f769", size = 1738360 },
- { url = "https://files.pythonhosted.org/packages/a5/ae/e14b0ff8b3f48e02394d8acd911376b7b66e164535687ef7dc24ea03072f/pydantic_core-2.23.4-cp313-none-win_amd64.whl", hash = "sha256:5a1504ad17ba4210df3a045132a7baeeba5a200e930f57512ee02909fc5c4cb5", size = 1919411 },
+sdist = { url = "https://files.pythonhosted.org/packages/a6/9f/7de1f19b6aea45aeb441838782d68352e71bfa98ee6fa048d5041991b33e/pydantic_core-2.27.1.tar.gz", hash = "sha256:62a763352879b84aa31058fc931884055fd75089cccbd9d58bb6afd01141b235", size = 412785 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/27/39/46fe47f2ad4746b478ba89c561cafe4428e02b3573df882334bd2964f9cb/pydantic_core-2.27.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac3b20653bdbe160febbea8aa6c079d3df19310d50ac314911ed8cc4eb7f8cb8", size = 1895553 },
+ { url = "https://files.pythonhosted.org/packages/1c/00/0804e84a78b7fdb394fff4c4f429815a10e5e0993e6ae0e0b27dd20379ee/pydantic_core-2.27.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a5a8e19d7c707c4cadb8c18f5f60c843052ae83c20fa7d44f41594c644a1d330", size = 1807220 },
+ { url = "https://files.pythonhosted.org/packages/01/de/df51b3bac9820d38371f5a261020f505025df732ce566c2a2e7970b84c8c/pydantic_core-2.27.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7f7059ca8d64fea7f238994c97d91f75965216bcbe5f695bb44f354893f11d52", size = 1829727 },
+ { url = "https://files.pythonhosted.org/packages/5f/d9/c01d19da8f9e9fbdb2bf99f8358d145a312590374d0dc9dd8dbe484a9cde/pydantic_core-2.27.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bed0f8a0eeea9fb72937ba118f9db0cb7e90773462af7962d382445f3005e5a4", size = 1854282 },
+ { url = "https://files.pythonhosted.org/packages/5f/84/7db66eb12a0dc88c006abd6f3cbbf4232d26adfd827a28638c540d8f871d/pydantic_core-2.27.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a3cb37038123447cf0f3ea4c74751f6a9d7afef0eb71aa07bf5f652b5e6a132c", size = 2037437 },
+ { url = "https://files.pythonhosted.org/packages/34/ac/a2537958db8299fbabed81167d58cc1506049dba4163433524e06a7d9f4c/pydantic_core-2.27.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:84286494f6c5d05243456e04223d5a9417d7f443c3b76065e75001beb26f88de", size = 2780899 },
+ { url = "https://files.pythonhosted.org/packages/4a/c1/3e38cd777ef832c4fdce11d204592e135ddeedb6c6f525478a53d1c7d3e5/pydantic_core-2.27.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:acc07b2cfc5b835444b44a9956846b578d27beeacd4b52e45489e93276241025", size = 2135022 },
+ { url = "https://files.pythonhosted.org/packages/7a/69/b9952829f80fd555fe04340539d90e000a146f2a003d3fcd1e7077c06c71/pydantic_core-2.27.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4fefee876e07a6e9aad7a8c8c9f85b0cdbe7df52b8a9552307b09050f7512c7e", size = 1987969 },
+ { url = "https://files.pythonhosted.org/packages/05/72/257b5824d7988af43460c4e22b63932ed651fe98804cc2793068de7ec554/pydantic_core-2.27.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:258c57abf1188926c774a4c94dd29237e77eda19462e5bb901d88adcab6af919", size = 1994625 },
+ { url = "https://files.pythonhosted.org/packages/73/c3/78ed6b7f3278a36589bcdd01243189ade7fc9b26852844938b4d7693895b/pydantic_core-2.27.1-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:35c14ac45fcfdf7167ca76cc80b2001205a8d5d16d80524e13508371fb8cdd9c", size = 2090089 },
+ { url = "https://files.pythonhosted.org/packages/8d/c8/b4139b2f78579960353c4cd987e035108c93a78371bb19ba0dc1ac3b3220/pydantic_core-2.27.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d1b26e1dff225c31897696cab7d4f0a315d4c0d9e8666dbffdb28216f3b17fdc", size = 2142496 },
+ { url = "https://files.pythonhosted.org/packages/3e/f8/171a03e97eb36c0b51981efe0f78460554a1d8311773d3d30e20c005164e/pydantic_core-2.27.1-cp311-none-win32.whl", hash = "sha256:2cdf7d86886bc6982354862204ae3b2f7f96f21a3eb0ba5ca0ac42c7b38598b9", size = 1811758 },
+ { url = "https://files.pythonhosted.org/packages/6a/fe/4e0e63c418c1c76e33974a05266e5633e879d4061f9533b1706a86f77d5b/pydantic_core-2.27.1-cp311-none-win_amd64.whl", hash = "sha256:3af385b0cee8df3746c3f406f38bcbfdc9041b5c2d5ce3e5fc6637256e60bbc5", size = 1980864 },
+ { url = "https://files.pythonhosted.org/packages/50/fc/93f7238a514c155a8ec02fc7ac6376177d449848115e4519b853820436c5/pydantic_core-2.27.1-cp311-none-win_arm64.whl", hash = "sha256:81f2ec23ddc1b476ff96563f2e8d723830b06dceae348ce02914a37cb4e74b89", size = 1864327 },
+ { url = "https://files.pythonhosted.org/packages/be/51/2e9b3788feb2aebff2aa9dfbf060ec739b38c05c46847601134cc1fed2ea/pydantic_core-2.27.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:9cbd94fc661d2bab2bc702cddd2d3370bbdcc4cd0f8f57488a81bcce90c7a54f", size = 1895239 },
+ { url = "https://files.pythonhosted.org/packages/7b/9e/f8063952e4a7d0127f5d1181addef9377505dcce3be224263b25c4f0bfd9/pydantic_core-2.27.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5f8c4718cd44ec1580e180cb739713ecda2bdee1341084c1467802a417fe0f02", size = 1805070 },
+ { url = "https://files.pythonhosted.org/packages/2c/9d/e1d6c4561d262b52e41b17a7ef8301e2ba80b61e32e94520271029feb5d8/pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:15aae984e46de8d376df515f00450d1522077254ef6b7ce189b38ecee7c9677c", size = 1828096 },
+ { url = "https://files.pythonhosted.org/packages/be/65/80ff46de4266560baa4332ae3181fffc4488ea7d37282da1a62d10ab89a4/pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1ba5e3963344ff25fc8c40da90f44b0afca8cfd89d12964feb79ac1411a260ac", size = 1857708 },
+ { url = "https://files.pythonhosted.org/packages/d5/ca/3370074ad758b04d9562b12ecdb088597f4d9d13893a48a583fb47682cdf/pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:992cea5f4f3b29d6b4f7f1726ed8ee46c8331c6b4eed6db5b40134c6fe1768bb", size = 2037751 },
+ { url = "https://files.pythonhosted.org/packages/b1/e2/4ab72d93367194317b99d051947c071aef6e3eb95f7553eaa4208ecf9ba4/pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0325336f348dbee6550d129b1627cb8f5351a9dc91aad141ffb96d4937bd9529", size = 2733863 },
+ { url = "https://files.pythonhosted.org/packages/8a/c6/8ae0831bf77f356bb73127ce5a95fe115b10f820ea480abbd72d3cc7ccf3/pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7597c07fbd11515f654d6ece3d0e4e5093edc30a436c63142d9a4b8e22f19c35", size = 2161161 },
+ { url = "https://files.pythonhosted.org/packages/f1/f4/b2fe73241da2429400fc27ddeaa43e35562f96cf5b67499b2de52b528cad/pydantic_core-2.27.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3bbd5d8cc692616d5ef6fbbbd50dbec142c7e6ad9beb66b78a96e9c16729b089", size = 1993294 },
+ { url = "https://files.pythonhosted.org/packages/77/29/4bb008823a7f4cc05828198153f9753b3bd4c104d93b8e0b1bfe4e187540/pydantic_core-2.27.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:dc61505e73298a84a2f317255fcc72b710b72980f3a1f670447a21efc88f8381", size = 2001468 },
+ { url = "https://files.pythonhosted.org/packages/f2/a9/0eaceeba41b9fad851a4107e0cf999a34ae8f0d0d1f829e2574f3d8897b0/pydantic_core-2.27.1-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:e1f735dc43da318cad19b4173dd1ffce1d84aafd6c9b782b3abc04a0d5a6f5bb", size = 2091413 },
+ { url = "https://files.pythonhosted.org/packages/d8/36/eb8697729725bc610fd73940f0d860d791dc2ad557faaefcbb3edbd2b349/pydantic_core-2.27.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:f4e5658dbffe8843a0f12366a4c2d1c316dbe09bb4dfbdc9d2d9cd6031de8aae", size = 2154735 },
+ { url = "https://files.pythonhosted.org/packages/52/e5/4f0fbd5c5995cc70d3afed1b5c754055bb67908f55b5cb8000f7112749bf/pydantic_core-2.27.1-cp312-none-win32.whl", hash = "sha256:672ebbe820bb37988c4d136eca2652ee114992d5d41c7e4858cdd90ea94ffe5c", size = 1833633 },
+ { url = "https://files.pythonhosted.org/packages/ee/f2/c61486eee27cae5ac781305658779b4a6b45f9cc9d02c90cb21b940e82cc/pydantic_core-2.27.1-cp312-none-win_amd64.whl", hash = "sha256:66ff044fd0bb1768688aecbe28b6190f6e799349221fb0de0e6f4048eca14c16", size = 1986973 },
+ { url = "https://files.pythonhosted.org/packages/df/a6/e3f12ff25f250b02f7c51be89a294689d175ac76e1096c32bf278f29ca1e/pydantic_core-2.27.1-cp312-none-win_arm64.whl", hash = "sha256:9a3b0793b1bbfd4146304e23d90045f2a9b5fd5823aa682665fbdaf2a6c28f3e", size = 1883215 },
+ { url = "https://files.pythonhosted.org/packages/0f/d6/91cb99a3c59d7b072bded9959fbeab0a9613d5a4935773c0801f1764c156/pydantic_core-2.27.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:f216dbce0e60e4d03e0c4353c7023b202d95cbaeff12e5fd2e82ea0a66905073", size = 1895033 },
+ { url = "https://files.pythonhosted.org/packages/07/42/d35033f81a28b27dedcade9e967e8a40981a765795c9ebae2045bcef05d3/pydantic_core-2.27.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a2e02889071850bbfd36b56fd6bc98945e23670773bc7a76657e90e6b6603c08", size = 1807542 },
+ { url = "https://files.pythonhosted.org/packages/41/c2/491b59e222ec7e72236e512108ecad532c7f4391a14e971c963f624f7569/pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42b0e23f119b2b456d07ca91b307ae167cc3f6c846a7b169fca5326e32fdc6cf", size = 1827854 },
+ { url = "https://files.pythonhosted.org/packages/e3/f3/363652651779113189cefdbbb619b7b07b7a67ebb6840325117cc8cc3460/pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:764be71193f87d460a03f1f7385a82e226639732214b402f9aa61f0d025f0737", size = 1857389 },
+ { url = "https://files.pythonhosted.org/packages/5f/97/be804aed6b479af5a945daec7538d8bf358d668bdadde4c7888a2506bdfb/pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1c00666a3bd2f84920a4e94434f5974d7bbc57e461318d6bb34ce9cdbbc1f6b2", size = 2037934 },
+ { url = "https://files.pythonhosted.org/packages/42/01/295f0bd4abf58902917e342ddfe5f76cf66ffabfc57c2e23c7681a1a1197/pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3ccaa88b24eebc0f849ce0a4d09e8a408ec5a94afff395eb69baf868f5183107", size = 2735176 },
+ { url = "https://files.pythonhosted.org/packages/9d/a0/cd8e9c940ead89cc37812a1a9f310fef59ba2f0b22b4e417d84ab09fa970/pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c65af9088ac534313e1963443d0ec360bb2b9cba6c2909478d22c2e363d98a51", size = 2160720 },
+ { url = "https://files.pythonhosted.org/packages/73/ae/9d0980e286627e0aeca4c352a60bd760331622c12d576e5ea4441ac7e15e/pydantic_core-2.27.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:206b5cf6f0c513baffaeae7bd817717140770c74528f3e4c3e1cec7871ddd61a", size = 1992972 },
+ { url = "https://files.pythonhosted.org/packages/bf/ba/ae4480bc0292d54b85cfb954e9d6bd226982949f8316338677d56541b85f/pydantic_core-2.27.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:062f60e512fc7fff8b8a9d680ff0ddaaef0193dba9fa83e679c0c5f5fbd018bc", size = 2001477 },
+ { url = "https://files.pythonhosted.org/packages/55/b7/e26adf48c2f943092ce54ae14c3c08d0d221ad34ce80b18a50de8ed2cba8/pydantic_core-2.27.1-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:a0697803ed7d4af5e4c1adf1670af078f8fcab7a86350e969f454daf598c4960", size = 2091186 },
+ { url = "https://files.pythonhosted.org/packages/ba/cc/8491fff5b608b3862eb36e7d29d36a1af1c945463ca4c5040bf46cc73f40/pydantic_core-2.27.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:58ca98a950171f3151c603aeea9303ef6c235f692fe555e883591103da709b23", size = 2154429 },
+ { url = "https://files.pythonhosted.org/packages/78/d8/c080592d80edd3441ab7f88f865f51dae94a157fc64283c680e9f32cf6da/pydantic_core-2.27.1-cp313-none-win32.whl", hash = "sha256:8065914ff79f7eab1599bd80406681f0ad08f8e47c880f17b416c9f8f7a26d05", size = 1833713 },
+ { url = "https://files.pythonhosted.org/packages/83/84/5ab82a9ee2538ac95a66e51f6838d6aba6e0a03a42aa185ad2fe404a4e8f/pydantic_core-2.27.1-cp313-none-win_amd64.whl", hash = "sha256:ba630d5e3db74c79300d9a5bdaaf6200172b107f263c98a0539eeecb857b2337", size = 1987897 },
+ { url = "https://files.pythonhosted.org/packages/df/c3/b15fb833926d91d982fde29c0624c9f225da743c7af801dace0d4e187e71/pydantic_core-2.27.1-cp313-none-win_arm64.whl", hash = "sha256:45cf8588c066860b623cd11c4ba687f8d7175d5f7ef65f7129df8a394c502de5", size = 1882983 },
]
[[package]]
@@ -3086,6 +3276,37 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/f7/3f/01c8b82017c199075f8f788d0d906b9ffbbc5a47dc9918a945e13d5a2bda/pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a", size = 1205513 },
]
+[[package]]
+name = "pyogrio"
+version = "0.10.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "certifi" },
+ { name = "numpy" },
+ { name = "packaging" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/a5/8f/5a784595524a79c269f2b1c880f4fdb152867df700c97005dda51997da02/pyogrio-0.10.0.tar.gz", hash = "sha256:ec051cb568324de878828fae96379b71858933413e185148acb6c162851ab23c", size = 281950 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/8d/2c/c761e6adeb81bd4029a137b3240e7214a8c9aaf225883356196afd6ef9d8/pyogrio-0.10.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:5b1a51431a27a1cb3e4e19558939c1423106e06e7b67d6285f4fba9c2d0a91b9", size = 15083526 },
+ { url = "https://files.pythonhosted.org/packages/c3/e5/983aa9ddf2ff784e973d6b2ec3e874065d6655a5329ca26311b0f3b9f92f/pyogrio-0.10.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:216d69cd77b2b4a0c9d7d449bc239f8b77f3d73f4a05d9c738a0745b236902d8", size = 16457867 },
+ { url = "https://files.pythonhosted.org/packages/fa/9a/7103eee7aa3b6ec88e072ef18a05c3aae1ed96fe00009a7a5ce139b50f30/pyogrio-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2f0b75f0077ce33256aec6278c2a9c3b79bf0637ddf4f93d3ab2609f0501d96", size = 23926332 },
+ { url = "https://files.pythonhosted.org/packages/8b/b2/2ca124343aba24b9a5dcd7c1f43da81e652849cfaf3110d3f507a80af0a1/pyogrio-0.10.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:0a47f702d29808c557d2ebea8542c23903f021eae44e16838adef2ab4281c71b", size = 23138693 },
+ { url = "https://files.pythonhosted.org/packages/ae/15/501aa4823c142232169d54255ab343f28c4ea9e7fa489b8433dcc873a942/pyogrio-0.10.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:11e6c71d12da6b445e77d0fc0198db1bd35a77e03a0685e45338cbab9ce02add", size = 24062952 },
+ { url = "https://files.pythonhosted.org/packages/94/8d/24f21e6a93ca418231aee3bddade7a0766c89c523832f29e08a8860f83e6/pyogrio-0.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:d0d74e91a9c0ff2f9abe01b556ff663977193b2d6922208406172d0fc833beff", size = 16172573 },
+ { url = "https://files.pythonhosted.org/packages/b5/b5/3c5dfd0b50cbce6f3d4e42c0484647feb1809dbe20e225c4c6abd067e69f/pyogrio-0.10.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:2d6558b180e020f71ab7aa7f82d592ed3305c9f698d98f6d0a4637ec7a84c4ce", size = 15079211 },
+ { url = "https://files.pythonhosted.org/packages/b8/9a/1ba9c707a094976f343bd0177741eaba0e842fa05ecd8ab97192db4f2ec1/pyogrio-0.10.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:a99102037eead8ba491bc57825c1e395ee31c9956d7bff7b4a9e4fdbff3a13c2", size = 16442782 },
+ { url = "https://files.pythonhosted.org/packages/5e/bb/b4250746c2c85fea5004cae93e9e25ad01516e9e94e04de780a2e78139da/pyogrio-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a4c373281d7cbf560c5b61f8f3c7442103ad7f1c7ac4ef3a84572ed7a5dd2f6", size = 23899832 },
+ { url = "https://files.pythonhosted.org/packages/bd/4c/79e47e40a8e54e79a45133786a0a58209534f580591c933d40c5ed314fe7/pyogrio-0.10.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:19f18411bdf836d24cdc08b9337eb3ec415e4ac4086ba64516b36b73a2e88622", size = 23081469 },
+ { url = "https://files.pythonhosted.org/packages/47/78/2b62c8a340bcb0ea56b9ddf2ef5fd3d1f101dc0e98816b9e6da87c5ac3b7/pyogrio-0.10.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:1abbcdd9876f30bebf1df8a0273f6cdeb29d03259290008275c7fddebe139f20", size = 24024758 },
+ { url = "https://files.pythonhosted.org/packages/43/97/34605480f06b0ad9611bf58a174eccc6f3673275f3d519cf763391892881/pyogrio-0.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:2a3e09839590d71ff832aa95c4f23fa00a2c63c3de82c1fbd4fb8d265792acfc", size = 16160294 },
+ { url = "https://files.pythonhosted.org/packages/14/4a/4c8e4f5b9edbca46e0f8d6c1c0b56c0d4af0900c29f4bea22d37853c07f3/pyogrio-0.10.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:c90478209537a31dcc65664a87a04c094bb0e08efe502908a6682b8cec0259bf", size = 15076879 },
+ { url = "https://files.pythonhosted.org/packages/5f/be/7db0644eef9ef3382518399aaf3332827c43018112d2a74f78784fd496ec/pyogrio-0.10.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:fec45e1963b7058e5a1aa98598aed07c0858512c833d6aad2c672c3ec98bbf04", size = 16440405 },
+ { url = "https://files.pythonhosted.org/packages/96/77/f199230ba86fe88b1f57e71428c169ed982de68a32d6082cd7c12d0f5d55/pyogrio-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28cb139f8a5d0365ede602230104b407ae52bb6b55173c8d5a35424d28c4a2c5", size = 23871511 },
+ { url = "https://files.pythonhosted.org/packages/25/ac/ca483bec408b59c54f7129b0244cc9de21d8461aefe89ece7bd74ad33807/pyogrio-0.10.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:cea0187fcc2d574e52af8cfab041fa0a7ad71d5ef6b94b49a3f3d2a04534a27e", size = 23048830 },
+ { url = "https://files.pythonhosted.org/packages/d7/3e/c35f2d8dad95b24e568c468f09ff60fb61945065465e0ec7868400596566/pyogrio-0.10.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:7c02b207ea8cf09c501ea3e95d29152781a00d3c32267286bc36fa457c332205", size = 23996873 },
+ { url = "https://files.pythonhosted.org/packages/27/5d/0deb16d228362a097ee3258d0a887c9c0add4b9678bb4847b08a241e124d/pyogrio-0.10.0-cp313-cp313-win_amd64.whl", hash = "sha256:02e54bcfb305af75f829044b0045f74de31b77c2d6546f7aaf96822066147848", size = 16158260 },
+]
+
[[package]]
name = "pyparsing"
version = "3.2.0"
@@ -3101,6 +3322,35 @@ version = "0.48.9"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/c7/2c/94ed7b91db81d61d7096ac8f2d325ec562fc75e35f3baea8749c85b28784/PyPika-0.48.9.tar.gz", hash = "sha256:838836a61747e7c8380cd1b7ff638694b7a7335345d0f559b04b2cd832ad5378", size = 67259 }
+[[package]]
+name = "pyproj"
+version = "3.7.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "certifi" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/47/c2/0572c8e31aebf0270f15f3368adebd10fc473de9f09567a0743a3bc41c8d/pyproj-3.7.0.tar.gz", hash = "sha256:bf658f4aaf815d9d03c8121650b6f0b8067265c36e31bc6660b98ef144d81813", size = 225577 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/e2/8f/15ff6ab10a08050e94afcd544962a1a930d0bb7ca102ad39795a847eb340/pyproj-3.7.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:e66d8d42dbdf232e121546c5a1dec097caf0454e4885c09a8e03cdcee0753c03", size = 6272213 },
+ { url = "https://files.pythonhosted.org/packages/2d/4d/610fe2a17de71b4fe210af69ce25f2d65379ba0a48299129894d0d0988ee/pyproj-3.7.0-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:7764b64a0aefe40134a2828b3a40be88f6c8b7832c45d8a9f2bd592ace4b2a3b", size = 4634548 },
+ { url = "https://files.pythonhosted.org/packages/d6/27/0327d0b0fcdfc4cf72696a2effca2963e524dcd846a0274ba503f8bf2648/pyproj-3.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:53c442c5081dc95346996f5c4323fde2caafc69c6e60b4707aa46e88244f1e04", size = 6333913 },
+ { url = "https://files.pythonhosted.org/packages/3c/e5/2cb256148c730b9c3f74bfb3c03904f5070499c6dcaea153073a9642c6c6/pyproj-3.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc5b305d4d5d7697885681d9b660623e328227612823d5c660e0a9566cb48838", size = 9460363 },
+ { url = "https://files.pythonhosted.org/packages/ba/a3/4aa1e8e78ad18aa170efd2c94c1931bf2a34c526683b874d06e40fa323f6/pyproj-3.7.0-cp311-cp311-win32.whl", hash = "sha256:de2b47d748dc41cccb6b3b713d4d7dc9aa1046a82141c8665026908726426abc", size = 5820551 },
+ { url = "https://files.pythonhosted.org/packages/26/0c/b084e8839a117eaad8cb4fbaa81bbb24c6f183de0ee95c6c4e2770ab6f09/pyproj-3.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:38cba7c4c5679e40242dd959133e95b908d3b912dd66291094fd13510e8517ff", size = 6231788 },
+ { url = "https://files.pythonhosted.org/packages/bd/19/be806b711e9ebfb80411c653054157db128fffdd7f8493e3064136c8d880/pyproj-3.7.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:8cbec92bdd6e9933ca08795c12717d1384e9b51cf4b1acf0d753db255a75c51e", size = 6261400 },
+ { url = "https://files.pythonhosted.org/packages/99/3b/8497995e8cae0049d013679c6a7ac6c57b816d590c733a388748dafe5af5/pyproj-3.7.0-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:8c4a8e4d3ba76c3adac3c087544cf92f7f9a19ea34946904a13fca48cc1c0106", size = 4637848 },
+ { url = "https://files.pythonhosted.org/packages/ea/f7/2a5b46d6f8da913d58d44942ab06ca4803b5424b73259b15344cf90040f6/pyproj-3.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82624fb42aa31f6b1a860fbc0316babd07fd712642bc31022df4e9b4056bf463", size = 6324856 },
+ { url = "https://files.pythonhosted.org/packages/36/83/c257771077bcf9da20d0e97abc834f9037c219986cc76d40183903a30464/pyproj-3.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:34e1bbb3f89c68d4a6835c40b2da8b27680eec60e8cc7cdb08c09bcc725b2b62", size = 9525831 },
+ { url = "https://files.pythonhosted.org/packages/d6/50/a635de79def69fe03cdef3a4bd3bec780c30987bce3a15dd7099afb2506f/pyproj-3.7.0-cp312-cp312-win32.whl", hash = "sha256:952515d5592167ad4436b355485f82acebed2a49b46722159e4584b75a763dd3", size = 5811864 },
+ { url = "https://files.pythonhosted.org/packages/a1/8b/96bc8c8f3eca4eb7fa3758fde0b755d1df30a19f494376e3ee8de1ef4e79/pyproj-3.7.0-cp312-cp312-win_amd64.whl", hash = "sha256:0692f806224e8ed82fe4acfa57268ff444fdaf9f330689f24c0d96e59480cce1", size = 6224720 },
+ { url = "https://files.pythonhosted.org/packages/bf/da/a17c452bea1ff4cd58d6dc573055b9c8fb6af114b7d2c694782aec770865/pyproj-3.7.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:94e8b903a9e83448fd2379c49dec3e8cd83c9ed36f54354e68b601cef56d5426", size = 6254898 },
+ { url = "https://files.pythonhosted.org/packages/c2/31/ab07b389f2caa527c95ab2ea1940d28879bd2a19e67b2529cb3e94648d26/pyproj-3.7.0-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:64cb5c17d6f6305a8b978a40f95560c87c5b363fcac40632337955664437875a", size = 4628612 },
+ { url = "https://files.pythonhosted.org/packages/1d/24/def3ded6529db3e3d8351ad73481730249ab57d8d876d502f86d7958ce06/pyproj-3.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c54e9bdda7ab9c4a5af50f9d6e6ee7704e05fafd504896b96ed1208c7aea098", size = 6315895 },
+ { url = "https://files.pythonhosted.org/packages/dd/14/07314f78302105d199fb25e73376d723efe9c2ef3906463aae209913a6d3/pyproj-3.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24fa4e9e0abba875f9524808410cc520067eaf38fd5549ed0ef7c43ac39923c9", size = 9466144 },
+ { url = "https://files.pythonhosted.org/packages/00/f2/2a116920db3496e3ff3c94d7d8d15da41374f35cfe1b9e79682eca500a61/pyproj-3.7.0-cp313-cp313-win32.whl", hash = "sha256:b9e8353fc3c79dc14d1f5ac758a1a6e4eee04102c3c0b138670f121f5ac52eb4", size = 5807180 },
+ { url = "https://files.pythonhosted.org/packages/f8/33/3c8c6302717096b54aa14ccbb271045ba04629e21cbf348f2f2dc94f69b4/pyproj-3.7.0-cp313-cp313-win_amd64.whl", hash = "sha256:10a8dc6ec61af97c89ff032647d743f8dc023645773da42ef43f7ae1125b3509", size = 6218036 },
+]
+
[[package]]
name = "pyproject-hooks"
version = "1.2.0"
@@ -3119,6 +3369,21 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/5a/dc/491b7661614ab97483abf2056be1deee4dc2490ecbf7bff9ab5cdbac86e1/pyreadline3-3.5.4-py3-none-any.whl", hash = "sha256:eaf8e6cc3c49bcccf145fc6067ba8643d1df34d604a1ec0eccbf7a18e6d3fae6", size = 83178 },
]
+[[package]]
+name = "pytest"
+version = "8.3.3"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "colorama", marker = "sys_platform == 'win32'" },
+ { name = "iniconfig" },
+ { name = "packaging" },
+ { name = "pluggy" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/8b/6c/62bbd536103af674e227c41a8f3dcd022d591f6eed5facb5a0f31ee33bbc/pytest-8.3.3.tar.gz", hash = "sha256:70b98107bd648308a7952b06e6ca9a50bc660be218d53c257cc1fc94fda10181", size = 1442487 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/6b/77/7440a06a8ead44c7757a64362dd22df5760f9b12dc5f11b6188cd2fc27a0/pytest-8.3.3-py3-none-any.whl", hash = "sha256:a6853c7375b2663155079443d2e45de913a911a11d669df02a50814944db57b2", size = 342341 },
+]
+
[[package]]
name = "python-dateutil"
version = "2.9.0.post0"
@@ -3539,27 +3804,27 @@ wheels = [
[[package]]
name = "ruff"
-version = "0.7.4"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/0b/8b/bc4e0dfa1245b07cf14300e10319b98e958a53ff074c1dd86b35253a8c2a/ruff-0.7.4.tar.gz", hash = "sha256:cd12e35031f5af6b9b93715d8c4f40360070b2041f81273d0527683d5708fce2", size = 3275547 }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/e6/4b/f5094719e254829766b807dadb766841124daba75a37da83e292ae5ad12f/ruff-0.7.4-py3-none-linux_armv6l.whl", hash = "sha256:a4919925e7684a3f18e18243cd6bea7cfb8e968a6eaa8437971f681b7ec51478", size = 10447512 },
- { url = "https://files.pythonhosted.org/packages/9e/1d/3d2d2c9f601cf6044799c5349ff5267467224cefed9b35edf5f1f36486e9/ruff-0.7.4-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:cfb365c135b830778dda8c04fb7d4280ed0b984e1aec27f574445231e20d6c63", size = 10235436 },
- { url = "https://files.pythonhosted.org/packages/62/83/42a6ec6216ded30b354b13e0e9327ef75a3c147751aaf10443756cb690e9/ruff-0.7.4-py3-none-macosx_11_0_arm64.whl", hash = "sha256:63a569b36bc66fbadec5beaa539dd81e0527cb258b94e29e0531ce41bacc1f20", size = 9888936 },
- { url = "https://files.pythonhosted.org/packages/4d/26/e1e54893b13046a6ad05ee9b89ee6f71542ba250f72b4c7a7d17c3dbf73d/ruff-0.7.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d06218747d361d06fd2fdac734e7fa92df36df93035db3dc2ad7aa9852cb109", size = 10697353 },
- { url = "https://files.pythonhosted.org/packages/21/24/98d2e109c4efc02bfef144ec6ea2c3e1217e7ce0cfddda8361d268dfd499/ruff-0.7.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e0cea28d0944f74ebc33e9f934238f15c758841f9f5edd180b5315c203293452", size = 10228078 },
- { url = "https://files.pythonhosted.org/packages/ad/b7/964c75be9bc2945fc3172241b371197bb6d948cc69e28bc4518448c368f3/ruff-0.7.4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80094ecd4793c68b2571b128f91754d60f692d64bc0d7272ec9197fdd09bf9ea", size = 11264823 },
- { url = "https://files.pythonhosted.org/packages/12/8d/20abdbf705969914ce40988fe71a554a918deaab62c38ec07483e77866f6/ruff-0.7.4-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:997512325c6620d1c4c2b15db49ef59543ef9cd0f4aa8065ec2ae5103cedc7e7", size = 11951855 },
- { url = "https://files.pythonhosted.org/packages/b8/fc/6519ce58c57b4edafcdf40920b7273dfbba64fc6ebcaae7b88e4dc1bf0a8/ruff-0.7.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:00b4cf3a6b5fad6d1a66e7574d78956bbd09abfd6c8a997798f01f5da3d46a05", size = 11516580 },
- { url = "https://files.pythonhosted.org/packages/37/1a/5ec1844e993e376a86eb2456496831ed91b4398c434d8244f89094758940/ruff-0.7.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7dbdc7d8274e1422722933d1edddfdc65b4336abf0b16dfcb9dedd6e6a517d06", size = 12692057 },
- { url = "https://files.pythonhosted.org/packages/50/90/76867152b0d3c05df29a74bb028413e90f704f0f6701c4801174ba47f959/ruff-0.7.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e92dfb5f00eaedb1501b2f906ccabfd67b2355bdf117fea9719fc99ac2145bc", size = 11085137 },
- { url = "https://files.pythonhosted.org/packages/c8/eb/0a7cb6059ac3555243bd026bb21785bbc812f7bbfa95a36c101bd72b47ae/ruff-0.7.4-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:3bd726099f277d735dc38900b6a8d6cf070f80828877941983a57bca1cd92172", size = 10681243 },
- { url = "https://files.pythonhosted.org/packages/5e/76/2270719dbee0fd35780b05c08a07b7a726c3da9f67d9ae89ef21fc18e2e5/ruff-0.7.4-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:2e32829c429dd081ee5ba39aef436603e5b22335c3d3fff013cd585806a6486a", size = 10319187 },
- { url = "https://files.pythonhosted.org/packages/9f/e5/39100f72f8ba70bec1bd329efc880dea8b6c1765ea1cb9d0c1c5f18b8d7f/ruff-0.7.4-py3-none-musllinux_1_2_i686.whl", hash = "sha256:662a63b4971807623f6f90c1fb664613f67cc182dc4d991471c23c541fee62dd", size = 10803715 },
- { url = "https://files.pythonhosted.org/packages/a5/89/40e904784f305fb56850063f70a998a64ebba68796d823dde67e89a24691/ruff-0.7.4-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:876f5e09eaae3eb76814c1d3b68879891d6fde4824c015d48e7a7da4cf066a3a", size = 11162912 },
- { url = "https://files.pythonhosted.org/packages/8d/1b/dd77503b3875c51e3dbc053fd8367b845ab8b01c9ca6d0c237082732856c/ruff-0.7.4-py3-none-win32.whl", hash = "sha256:75c53f54904be42dd52a548728a5b572344b50d9b2873d13a3f8c5e3b91f5cac", size = 8702767 },
- { url = "https://files.pythonhosted.org/packages/63/76/253ddc3e89e70165bba952ecca424b980b8d3c2598ceb4fc47904f424953/ruff-0.7.4-py3-none-win_amd64.whl", hash = "sha256:745775c7b39f914238ed1f1b0bebed0b9155a17cd8bc0b08d3c87e4703b990d6", size = 9497534 },
- { url = "https://files.pythonhosted.org/packages/aa/70/f8724f31abc0b329ca98b33d73c14020168babcf71b0cba3cded5d9d0e66/ruff-0.7.4-py3-none-win_arm64.whl", hash = "sha256:11bff065102c3ae9d3ea4dc9ecdfe5a5171349cdd0787c1fc64761212fc9cf1f", size = 8851590 },
+version = "0.8.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/b2/d6/a2373f3ba7180ddb44420d2a9d1f1510e1a4d162b3d27282bedcb09c8da9/ruff-0.8.0.tar.gz", hash = "sha256:a7ccfe6331bf8c8dad715753e157457faf7351c2b69f62f32c165c2dbcbacd44", size = 3276537 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/ec/77/e889ee3ce7fd8baa3ed1b77a03b9fb8ec1be68be1418261522fd6a5405e0/ruff-0.8.0-py3-none-linux_armv6l.whl", hash = "sha256:fcb1bf2cc6706adae9d79c8d86478677e3bbd4ced796ccad106fd4776d395fea", size = 10518283 },
+ { url = "https://files.pythonhosted.org/packages/da/c8/0a47de01edf19fb22f5f9b7964f46a68d0bdff20144d134556ffd1ba9154/ruff-0.8.0-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:295bb4c02d58ff2ef4378a1870c20af30723013f441c9d1637a008baaf928c8b", size = 10317691 },
+ { url = "https://files.pythonhosted.org/packages/41/17/9885e4a0eeae07abd2a4ebabc3246f556719f24efa477ba2739146c4635a/ruff-0.8.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:7b1f1c76b47c18fa92ee78b60d2d20d7e866c55ee603e7d19c1e991fad933a9a", size = 9940999 },
+ { url = "https://files.pythonhosted.org/packages/3e/cd/46b6f7043597eb318b5f5482c8ae8f5491cccce771e85f59d23106f2d179/ruff-0.8.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb0d4f250a7711b67ad513fde67e8870109e5ce590a801c3722580fe98c33a99", size = 10772437 },
+ { url = "https://files.pythonhosted.org/packages/5d/87/afc95aeb8bc78b1d8a3461717a4419c05aa8aa943d4c9cbd441630f85584/ruff-0.8.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0e55cce9aa93c5d0d4e3937e47b169035c7e91c8655b0974e61bb79cf398d49c", size = 10299156 },
+ { url = "https://files.pythonhosted.org/packages/65/fa/04c647bb809c4d65e8eae1ed1c654d9481b21dd942e743cd33511687b9f9/ruff-0.8.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3f4cd64916d8e732ce6b87f3f5296a8942d285bbbc161acee7fe561134af64f9", size = 11325819 },
+ { url = "https://files.pythonhosted.org/packages/90/26/7dad6e7d833d391a8a1afe4ee70ca6f36c4a297d3cca83ef10e83e9aacf3/ruff-0.8.0-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:c5c1466be2a2ebdf7c5450dd5d980cc87c8ba6976fb82582fea18823da6fa362", size = 12023927 },
+ { url = "https://files.pythonhosted.org/packages/24/a0/be5296dda6428ba8a13bda8d09fbc0e14c810b485478733886e61597ae2b/ruff-0.8.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2dabfd05b96b7b8f2da00d53c514eea842bff83e41e1cceb08ae1966254a51df", size = 11589702 },
+ { url = "https://files.pythonhosted.org/packages/26/3f/7602eb11d2886db545834182a9dbe500b8211fcbc9b4064bf9d358bbbbb4/ruff-0.8.0-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:facebdfe5a5af6b1588a1d26d170635ead6892d0e314477e80256ef4a8470cf3", size = 12782936 },
+ { url = "https://files.pythonhosted.org/packages/4c/5d/083181bdec4ec92a431c1291d3fff65eef3ded630a4b55eb735000ef5f3b/ruff-0.8.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87a8e86bae0dbd749c815211ca11e3a7bd559b9710746c559ed63106d382bd9c", size = 11138488 },
+ { url = "https://files.pythonhosted.org/packages/b7/23/c12cdef58413cee2436d6a177aa06f7a366ebbca916cf10820706f632459/ruff-0.8.0-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:85e654f0ded7befe2d61eeaf3d3b1e4ef3894469cd664ffa85006c7720f1e4a2", size = 10744474 },
+ { url = "https://files.pythonhosted.org/packages/29/61/a12f3b81520083cd7c5caa24ba61bb99fd1060256482eff0ef04cc5ccd1b/ruff-0.8.0-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:83a55679c4cb449fa527b8497cadf54f076603cc36779b2170b24f704171ce70", size = 10369029 },
+ { url = "https://files.pythonhosted.org/packages/08/2a/c013f4f3e4a54596c369cee74c24870ed1d534f31a35504908b1fc97017a/ruff-0.8.0-py3-none-musllinux_1_2_i686.whl", hash = "sha256:812e2052121634cf13cd6fddf0c1871d0ead1aad40a1a258753c04c18bb71bbd", size = 10867481 },
+ { url = "https://files.pythonhosted.org/packages/d5/f7/685b1e1d42a3e94ceb25eab23c70bdd8c0ab66a43121ef83fe6db5a58756/ruff-0.8.0-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:780d5d8523c04202184405e60c98d7595bdb498c3c6abba3b6d4cdf2ca2af426", size = 11237117 },
+ { url = "https://files.pythonhosted.org/packages/03/20/401132c0908e8837625e3b7e32df9962e7cd681a4df1e16a10e2a5b4ecda/ruff-0.8.0-py3-none-win32.whl", hash = "sha256:5fdb6efecc3eb60bba5819679466471fd7d13c53487df7248d6e27146e985468", size = 8783511 },
+ { url = "https://files.pythonhosted.org/packages/1d/5c/4d800fca7854f62ad77f2c0d99b4b585f03e2d87a6ec1ecea85543a14a3c/ruff-0.8.0-py3-none-win_amd64.whl", hash = "sha256:582891c57b96228d146725975fbb942e1f30a0c4ba19722e692ca3eb25cc9b4f", size = 9559876 },
+ { url = "https://files.pythonhosted.org/packages/5b/bc/cc8a6a5ca4960b226dc15dd8fb511dd11f2014ff89d325c0b9b9faa9871f/ruff-0.8.0-py3-none-win_arm64.whl", hash = "sha256:ba93e6294e9a737cd726b74b09a6972e36bb511f9a102f1d9a7e1ce94dd206a6", size = 8939733 },
]
[[package]]
@@ -3573,11 +3838,40 @@ wheels = [
[[package]]
name = "setuptools"
-version = "75.5.0"
+version = "75.6.0"
source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/c8/db/722a42ffdc226e950c4757b3da7b56ff5c090bb265dccd707f7b8a3c6fee/setuptools-75.5.0.tar.gz", hash = "sha256:5c4ccb41111392671f02bb5f8436dfc5a9a7185e80500531b133f5775c4163ef", size = 1336032 }
+sdist = { url = "https://files.pythonhosted.org/packages/43/54/292f26c208734e9a7f067aea4a7e282c080750c4546559b58e2e45413ca0/setuptools-75.6.0.tar.gz", hash = "sha256:8199222558df7c86216af4f84c30e9b34a61d8ba19366cc914424cdbd28252f6", size = 1337429 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/fe/df/88ccbee85aefbca071db004fdc8f8d2507d55d5a9dc27ebb93c92edb1bd8/setuptools-75.5.0-py3-none-any.whl", hash = "sha256:87cb777c3b96d638ca02031192d40390e0ad97737e27b6b4fa831bea86f2f829", size = 1222710 },
+ { url = "https://files.pythonhosted.org/packages/55/21/47d163f615df1d30c094f6c8bbb353619274edccf0327b185cc2493c2c33/setuptools-75.6.0-py3-none-any.whl", hash = "sha256:ce74b49e8f7110f9bf04883b730f4765b774ef3ef28f722cce7c273d253aaf7d", size = 1224032 },
+]
+
+[[package]]
+name = "shapely"
+version = "2.0.6"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "numpy" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/4a/89/0d20bac88016be35ff7d3c0c2ae64b477908f1b1dfa540c5d69ac7af07fe/shapely-2.0.6.tar.gz", hash = "sha256:997f6159b1484059ec239cacaa53467fd8b5564dabe186cd84ac2944663b0bf6", size = 282361 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/37/15/269d8e1f7f658a37e61f7028683c546f520e4e7cedba1e32c77ff9d3a3c7/shapely-2.0.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5aeb0f51a9db176da9a30cb2f4329b6fbd1e26d359012bb0ac3d3c7781667a9e", size = 1449578 },
+ { url = "https://files.pythonhosted.org/packages/37/63/e182e43081fffa0a2d970c480f2ef91647a6ab94098f61748c23c2a485f2/shapely-2.0.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9a7a78b0d51257a367ee115f4d41ca4d46edbd0dd280f697a8092dd3989867b2", size = 1296792 },
+ { url = "https://files.pythonhosted.org/packages/6e/5a/d019f69449329dcd517355444fdb9ddd58bec5e080b8bdba007e8e4c546d/shapely-2.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f32c23d2f43d54029f986479f7c1f6e09c6b3a19353a3833c2ffb226fb63a855", size = 2443997 },
+ { url = "https://files.pythonhosted.org/packages/25/aa/53f145e5a610a49af9ac49f2f1be1ec8659ebd5c393d66ac94e57c83b00e/shapely-2.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3dc9fb0eb56498912025f5eb352b5126f04801ed0e8bdbd867d21bdbfd7cbd0", size = 2528334 },
+ { url = "https://files.pythonhosted.org/packages/64/64/0c7b0a22b416d36f6296b92bb4219d82b53d0a7c47e16fd0a4c85f2f117c/shapely-2.0.6-cp311-cp311-win32.whl", hash = "sha256:d93b7e0e71c9f095e09454bf18dad5ea716fb6ced5df3cb044564a00723f339d", size = 1294669 },
+ { url = "https://files.pythonhosted.org/packages/b1/5a/6a67d929c467a1973b6bb9f0b00159cc343b02bf9a8d26db1abd2f87aa23/shapely-2.0.6-cp311-cp311-win_amd64.whl", hash = "sha256:c02eb6bf4cfb9fe6568502e85bb2647921ee49171bcd2d4116c7b3109724ef9b", size = 1442032 },
+ { url = "https://files.pythonhosted.org/packages/46/77/efd9f9d4b6a762f976f8b082f54c9be16f63050389500fb52e4f6cc07c1a/shapely-2.0.6-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cec9193519940e9d1b86a3b4f5af9eb6910197d24af02f247afbfb47bcb3fab0", size = 1450326 },
+ { url = "https://files.pythonhosted.org/packages/68/53/5efa6e7a4036a94fe6276cf7bbb298afded51ca3396b03981ad680c8cc7d/shapely-2.0.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:83b94a44ab04a90e88be69e7ddcc6f332da7c0a0ebb1156e1c4f568bbec983c3", size = 1298480 },
+ { url = "https://files.pythonhosted.org/packages/88/a2/1be1db4fc262e536465a52d4f19d85834724fedf2299a1b9836bc82fe8fa/shapely-2.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:537c4b2716d22c92036d00b34aac9d3775e3691f80c7aa517c2c290351f42cd8", size = 2439311 },
+ { url = "https://files.pythonhosted.org/packages/d5/7d/9a57e187cbf2fbbbdfd4044a4f9ce141c8d221f9963750d3b001f0ec080d/shapely-2.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98fea108334be345c283ce74bf064fa00cfdd718048a8af7343c59eb40f59726", size = 2524835 },
+ { url = "https://files.pythonhosted.org/packages/6d/0a/f407509ab56825f39bf8cfce1fb410238da96cf096809c3e404e5bc71ea1/shapely-2.0.6-cp312-cp312-win32.whl", hash = "sha256:42fd4cd4834747e4990227e4cbafb02242c0cffe9ce7ef9971f53ac52d80d55f", size = 1295613 },
+ { url = "https://files.pythonhosted.org/packages/7b/b3/857afd9dfbfc554f10d683ac412eac6fa260d1f4cd2967ecb655c57e831a/shapely-2.0.6-cp312-cp312-win_amd64.whl", hash = "sha256:665990c84aece05efb68a21b3523a6b2057e84a1afbef426ad287f0796ef8a48", size = 1442539 },
+ { url = "https://files.pythonhosted.org/packages/34/e8/d164ef5b0eab86088cde06dee8415519ffd5bb0dd1bd9d021e640e64237c/shapely-2.0.6-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:42805ef90783ce689a4dde2b6b2f261e2c52609226a0438d882e3ced40bb3013", size = 1445344 },
+ { url = "https://files.pythonhosted.org/packages/ce/e2/9fba7ac142f7831757a10852bfa465683724eadbc93d2d46f74a16f9af04/shapely-2.0.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6d2cb146191a47bd0cee8ff5f90b47547b82b6345c0d02dd8b25b88b68af62d7", size = 1296182 },
+ { url = "https://files.pythonhosted.org/packages/cf/dc/790d4bda27d196cd56ec66975eaae3351c65614cafd0e16ddde39ec9fb92/shapely-2.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3fdef0a1794a8fe70dc1f514440aa34426cc0ae98d9a1027fb299d45741c381", size = 2423426 },
+ { url = "https://files.pythonhosted.org/packages/af/b0/f8169f77eac7392d41e231911e0095eb1148b4d40c50ea9e34d999c89a7e/shapely-2.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c665a0301c645615a107ff7f52adafa2153beab51daf34587170d85e8ba6805", size = 2513249 },
+ { url = "https://files.pythonhosted.org/packages/f6/1d/a8c0e9ab49ff2f8e4dedd71b0122eafb22a18ad7e9d256025e1f10c84704/shapely-2.0.6-cp313-cp313-win32.whl", hash = "sha256:0334bd51828f68cd54b87d80b3e7cee93f249d82ae55a0faf3ea21c9be7b323a", size = 1294848 },
+ { url = "https://files.pythonhosted.org/packages/23/38/2bc32dd1e7e67a471d4c60971e66df0bdace88656c47a9a728ace0091075/shapely-2.0.6-cp313-cp313-win_amd64.whl", hash = "sha256:d37d070da9e0e0f0a530a621e17c0b8c3c9d04105655132a87cfff8bd77cc4c2", size = 1441371 },
]
[[package]]
@@ -3670,19 +3964,19 @@ wheels = [
[[package]]
name = "starlette"
-version = "0.41.2"
+version = "0.41.3"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "anyio" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/3e/da/1fb4bdb72ae12b834becd7e1e7e47001d32f91ec0ce8d7bc1b618d9f0bd9/starlette-0.41.2.tar.gz", hash = "sha256:9834fd799d1a87fd346deb76158668cfa0b0d56f85caefe8268e2d97c3468b62", size = 2573867 }
+sdist = { url = "https://files.pythonhosted.org/packages/1a/4c/9b5764bd22eec91c4039ef4c55334e9187085da2d8a2df7bd570869aae18/starlette-0.41.3.tar.gz", hash = "sha256:0e4ab3d16522a255be6b28260b938eae2482f98ce5cc934cb08dce8dc3ba5835", size = 2574159 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/54/43/f185bfd0ca1d213beb4293bed51d92254df23d8ceaf6c0e17146d508a776/starlette-0.41.2-py3-none-any.whl", hash = "sha256:fbc189474b4731cf30fcef52f18a8d070e3f3b46c6a04c97579e85e6ffca942d", size = 73259 },
+ { url = "https://files.pythonhosted.org/packages/96/00/2b325970b3060c7cecebab6d295afe763365822b1306a12eeab198f74323/starlette-0.41.3-py3-none-any.whl", hash = "sha256:44cedb2b7c77a9de33a8b74b2b90e9f50d11fcf25d8270ea525ad71a25374ff7", size = 73225 },
]
[[package]]
name = "streamlit"
-version = "1.40.1"
+version = "1.40.2"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "altair" },
@@ -3705,9 +3999,9 @@ dependencies = [
{ name = "typing-extensions" },
{ name = "watchdog", marker = "platform_system != 'Darwin'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/80/70/b76a32201b04a5a2a1c667fe7327cb7a3cc25d726d3863ba5863d2b0dccf/streamlit-1.40.1.tar.gz", hash = "sha256:1f2b09f04b6ad366a2c7b4d48104697d1c8bc33f48bdf7ed939cc04c12d3aec6", size = 8266452 }
+sdist = { url = "https://files.pythonhosted.org/packages/b0/e5/2bf2daa9c98658f1474bb64e7de030cbc4182b5f2b2196536efedaef02cb/streamlit-1.40.2.tar.gz", hash = "sha256:0cc131fc9b18065feaff8f6f241c81164ad37d8d9e3a85499a0240aaaf6a6a61", size = 8265763 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/9a/14/857d0734989f3d26f2f965b2e3f67568ea7a6e8a60cb9c1ed7f774b6d606/streamlit-1.40.1-py2.py3-none-any.whl", hash = "sha256:b9d7a317a0cc88edd7857c7e07dde9cf95647d3ae51cbfa8a3db82fbb8a2990d", size = 8645398 },
+ { url = "https://files.pythonhosted.org/packages/ae/53/418536f5d0b87bfbe7bbd8c001983c27e9474f82723bd2e529660fd9a534/streamlit-1.40.2-py2.py3-none-any.whl", hash = "sha256:7f6d1379a590f9625a6aee79ca73ceccff03cd2e05a3acbe5fe98915c27a7ffe", size = 8644775 },
]
[[package]]
@@ -3816,49 +4110,27 @@ wheels = [
[[package]]
name = "tokenizers"
-version = "0.20.3"
+version = "0.21.0"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "huggingface-hub" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/da/25/b1681c1c30ea3ea6e584ae3fffd552430b12faa599b558c4c4783f56d7ff/tokenizers-0.20.3.tar.gz", hash = "sha256:2278b34c5d0dd78e087e1ca7f9b1dcbf129d80211afa645f214bd6e051037539", size = 340513 }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/c6/93/6742ef9206409d5ce1fdf44d5ca1687cdc3847ba0485424e2c731e6bcf67/tokenizers-0.20.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:585b51e06ca1f4839ce7759941e66766d7b060dccfdc57c4ca1e5b9a33013a90", size = 2674224 },
- { url = "https://files.pythonhosted.org/packages/aa/14/e75ece72e99f6ef9ae07777ca9fdd78608f69466a5cecf636e9bd2f25d5c/tokenizers-0.20.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:61cbf11954f3b481d08723ebd048ba4b11e582986f9be74d2c3bdd9293a4538d", size = 2558991 },
- { url = "https://files.pythonhosted.org/packages/46/54/033b5b2ba0c3ae01e026c6f7ced147d41a2fa1c573d00a66cb97f6d7f9b3/tokenizers-0.20.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ef820880d5e4e8484e2fa54ff8d297bb32519eaa7815694dc835ace9130a3eea", size = 2892476 },
- { url = "https://files.pythonhosted.org/packages/e6/b0/cc369fb3297d61f3311cab523d16d48c869dc2f0ba32985dbf03ff811041/tokenizers-0.20.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:67ef4dcb8841a4988cd00dd288fb95dfc8e22ed021f01f37348fd51c2b055ba9", size = 2802775 },
- { url = "https://files.pythonhosted.org/packages/1a/74/62ad983e8ea6a63e04ed9c5be0b605056bf8aac2f0125f9b5e0b3e2b89fa/tokenizers-0.20.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ff1ef8bd47a02b0dc191688ccb4da53600df5d4c9a05a4b68e1e3de4823e78eb", size = 3086138 },
- { url = "https://files.pythonhosted.org/packages/6b/ac/4637ba619db25094998523f9e6f5b456e1db1f8faa770a3d925d436db0c3/tokenizers-0.20.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:444d188186eab3148baf0615b522461b41b1f0cd58cd57b862ec94b6ac9780f1", size = 3098076 },
- { url = "https://files.pythonhosted.org/packages/58/ce/9793f2dc2ce529369807c9c74e42722b05034af411d60f5730b720388c7d/tokenizers-0.20.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:37c04c032c1442740b2c2d925f1857885c07619224a533123ac7ea71ca5713da", size = 3379650 },
- { url = "https://files.pythonhosted.org/packages/50/f6/2841de926bc4118af996eaf0bdf0ea5b012245044766ffc0347e6c968e63/tokenizers-0.20.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:453c7769d22231960ee0e883d1005c93c68015025a5e4ae56275406d94a3c907", size = 2994005 },
- { url = "https://files.pythonhosted.org/packages/a3/b2/00915c4fed08e9505d37cf6eaab45b12b4bff8f6719d459abcb9ead86a4b/tokenizers-0.20.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4bb31f7b2847e439766aaa9cc7bccf7ac7088052deccdb2275c952d96f691c6a", size = 8977488 },
- { url = "https://files.pythonhosted.org/packages/e9/ac/1c069e7808181ff57bcf2d39e9b6fbee9133a55410e6ebdaa89f67c32e83/tokenizers-0.20.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:843729bf0f991b29655a069a2ff58a4c24375a553c70955e15e37a90dd4e045c", size = 9294935 },
- { url = "https://files.pythonhosted.org/packages/50/47/722feb70ee68d1c4412b12d0ea4acc2713179fd63f054913990f9e259492/tokenizers-0.20.3-cp311-none-win32.whl", hash = "sha256:efcce3a927b1e20ca694ba13f7a68c59b0bd859ef71e441db68ee42cf20c2442", size = 2197175 },
- { url = "https://files.pythonhosted.org/packages/75/68/1b4f928b15a36ed278332ac75d66d7eb65d865bf344d049c452c18447bf9/tokenizers-0.20.3-cp311-none-win_amd64.whl", hash = "sha256:88301aa0801f225725b6df5dea3d77c80365ff2362ca7e252583f2b4809c4cc0", size = 2381616 },
- { url = "https://files.pythonhosted.org/packages/07/00/92a08af2a6b0c88c50f1ab47d7189e695722ad9714b0ee78ea5e1e2e1def/tokenizers-0.20.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:49d12a32e190fad0e79e5bdb788d05da2f20d8e006b13a70859ac47fecf6ab2f", size = 2667951 },
- { url = "https://files.pythonhosted.org/packages/ec/9a/e17a352f0bffbf415cf7d73756f5c73a3219225fc5957bc2f39d52c61684/tokenizers-0.20.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:282848cacfb9c06d5e51489f38ec5aa0b3cd1e247a023061945f71f41d949d73", size = 2555167 },
- { url = "https://files.pythonhosted.org/packages/27/37/d108df55daf4f0fcf1f58554692ff71687c273d870a34693066f0847be96/tokenizers-0.20.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:abe4e08c7d0cd6154c795deb5bf81d2122f36daf075e0c12a8b050d824ef0a64", size = 2898389 },
- { url = "https://files.pythonhosted.org/packages/b2/27/32f29da16d28f59472fa7fb38e7782069748c7e9ab9854522db20341624c/tokenizers-0.20.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ca94fc1b73b3883c98f0c88c77700b13d55b49f1071dfd57df2b06f3ff7afd64", size = 2795866 },
- { url = "https://files.pythonhosted.org/packages/29/4e/8a9a3c89e128c4a40f247b501c10279d2d7ade685953407c4d94c8c0f7a7/tokenizers-0.20.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef279c7e239f95c8bdd6ff319d9870f30f0d24915b04895f55b1adcf96d6c60d", size = 3085446 },
- { url = "https://files.pythonhosted.org/packages/b4/3b/a2a7962c496ebcd95860ca99e423254f760f382cd4bd376f8895783afaf5/tokenizers-0.20.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:16384073973f6ccbde9852157a4fdfe632bb65208139c9d0c0bd0176a71fd67f", size = 3094378 },
- { url = "https://files.pythonhosted.org/packages/1f/f4/a8a33f0192a1629a3bd0afcad17d4d221bbf9276da4b95d226364208d5eb/tokenizers-0.20.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:312d522caeb8a1a42ebdec87118d99b22667782b67898a76c963c058a7e41d4f", size = 3385755 },
- { url = "https://files.pythonhosted.org/packages/9e/65/c83cb3545a65a9eaa2e13b22c93d5e00bd7624b354a44adbdc93d5d9bd91/tokenizers-0.20.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2b7cb962564785a83dafbba0144ecb7f579f1d57d8c406cdaa7f32fe32f18ad", size = 2997679 },
- { url = "https://files.pythonhosted.org/packages/55/e9/a80d4e592307688a67c7c59ab77e03687b6a8bd92eb5db763a2c80f93f57/tokenizers-0.20.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:124c5882ebb88dadae1fc788a582299fcd3a8bd84fc3e260b9918cf28b8751f5", size = 8989296 },
- { url = "https://files.pythonhosted.org/packages/90/af/60c957af8d2244321124e893828f1a4817cde1a2d08d09d423b73f19bd2f/tokenizers-0.20.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2b6e54e71f84c4202111a489879005cb14b92616a87417f6c102c833af961ea2", size = 9303621 },
- { url = "https://files.pythonhosted.org/packages/be/a9/96172310ee141009646d63a1ca267c099c462d747fe5ef7e33f74e27a683/tokenizers-0.20.3-cp312-none-win32.whl", hash = "sha256:83d9bfbe9af86f2d9df4833c22e94d94750f1d0cd9bfb22a7bb90a86f61cdb1c", size = 2188979 },
- { url = "https://files.pythonhosted.org/packages/bd/68/61d85ae7ae96dde7d0974ff3538db75d5cdc29be2e4329cd7fc51a283e22/tokenizers-0.20.3-cp312-none-win_amd64.whl", hash = "sha256:44def74cee574d609a36e17c8914311d1b5dbcfe37c55fd29369d42591b91cf2", size = 2380725 },
- { url = "https://files.pythonhosted.org/packages/07/19/36e9eaafb229616cb8502b42030fa7fe347550e76cb618de71b498fc3222/tokenizers-0.20.3-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:e0b630e0b536ef0e3c8b42c685c1bc93bd19e98c0f1543db52911f8ede42cf84", size = 2666813 },
- { url = "https://files.pythonhosted.org/packages/b9/c7/e2ce1d4f756c8a62ef93fdb4df877c2185339b6d63667b015bf70ea9d34b/tokenizers-0.20.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a02d160d2b19bcbfdf28bd9a4bf11be4cb97d0499c000d95d4c4b1a4312740b6", size = 2555354 },
- { url = "https://files.pythonhosted.org/packages/7c/cf/5309c2d173a6a67f9ec8697d8e710ea32418de6fd8541778032c202a1c3e/tokenizers-0.20.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e3d80d89b068bc30034034b5319218c7c0a91b00af19679833f55f3becb6945", size = 2897745 },
- { url = "https://files.pythonhosted.org/packages/2c/e5/af3078e32f225e680e69d61f78855880edb8d53f5850a1834d519b2b103f/tokenizers-0.20.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:174a54910bed1b089226512b4458ea60d6d6fd93060254734d3bc3540953c51c", size = 2794385 },
- { url = "https://files.pythonhosted.org/packages/0b/a7/bc421fe46650cc4eb4a913a236b88c243204f32c7480684d2f138925899e/tokenizers-0.20.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:098b8a632b8656aa5802c46689462c5c48f02510f24029d71c208ec2c822e771", size = 3084580 },
- { url = "https://files.pythonhosted.org/packages/c6/22/97e1e95ee81f75922c9f569c23cb2b1fdc7f5a7a29c4c9fae17e63f751a6/tokenizers-0.20.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:78c8c143e3ae41e718588281eb3e212c2b31623c9d6d40410ec464d7d6221fb5", size = 3093581 },
- { url = "https://files.pythonhosted.org/packages/d5/14/f0df0ee3b9e516121e23c0099bccd7b9f086ba9150021a750e99b16ce56f/tokenizers-0.20.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b26b0aadb18cd8701077362ba359a06683662d5cafe3e8e8aba10eb05c037f1", size = 3385934 },
- { url = "https://files.pythonhosted.org/packages/66/52/7a171bd4929e3ffe61a29b4340fe5b73484709f92a8162a18946e124c34c/tokenizers-0.20.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07d7851a72717321022f3774e84aa9d595a041d643fafa2e87fbc9b18711dac0", size = 2997311 },
- { url = "https://files.pythonhosted.org/packages/7c/64/f1993bb8ebf775d56875ca0d50a50f2648bfbbb143da92fe2e6ceeb4abd5/tokenizers-0.20.3-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:bd44e48a430ada902c6266a8245f5036c4fe744fcb51f699999fbe82aa438797", size = 8988601 },
- { url = "https://files.pythonhosted.org/packages/d6/3f/49fa63422159bbc2f2a4ac5bfc597d04d4ec0ad3d2ef46649b5e9a340e37/tokenizers-0.20.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:a4c186bb006ccbe1f5cc4e0380d1ce7806f5955c244074fd96abc55e27b77f01", size = 9303950 },
- { url = "https://files.pythonhosted.org/packages/66/11/79d91aeb2817ad1993ef61c690afe73e6dbedbfb21918b302ef5a2ba9bfb/tokenizers-0.20.3-cp313-none-win32.whl", hash = "sha256:6e19e0f1d854d6ab7ea0c743d06e764d1d9a546932be0a67f33087645f00fe13", size = 2188941 },
- { url = "https://files.pythonhosted.org/packages/c2/ff/ac8410f868fb8b14b5e619efa304aa119cb8a40bd7df29fc81a898e64f99/tokenizers-0.20.3-cp313-none-win_amd64.whl", hash = "sha256:d50ede425c7e60966a9680d41b58b3a0950afa1bb570488e2972fa61662c4273", size = 2380269 },
+sdist = { url = "https://files.pythonhosted.org/packages/20/41/c2be10975ca37f6ec40d7abd7e98a5213bb04f284b869c1a24e6504fd94d/tokenizers-0.21.0.tar.gz", hash = "sha256:ee0894bf311b75b0c03079f33859ae4b2334d675d4e93f5a4132e1eae2834fe4", size = 343021 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/b0/5c/8b09607b37e996dc47e70d6a7b6f4bdd4e4d5ab22fe49d7374565c7fefaf/tokenizers-0.21.0-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:3c4c93eae637e7d2aaae3d376f06085164e1660f89304c0ab2b1d08a406636b2", size = 2647461 },
+ { url = "https://files.pythonhosted.org/packages/22/7a/88e58bb297c22633ed1c9d16029316e5b5ac5ee44012164c2edede599a5e/tokenizers-0.21.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:f53ea537c925422a2e0e92a24cce96f6bc5046bbef24a1652a5edc8ba975f62e", size = 2563639 },
+ { url = "https://files.pythonhosted.org/packages/f7/14/83429177c19364df27d22bc096d4c2e431e0ba43e56c525434f1f9b0fd00/tokenizers-0.21.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b177fb54c4702ef611de0c069d9169f0004233890e0c4c5bd5508ae05abf193", size = 2903304 },
+ { url = "https://files.pythonhosted.org/packages/7e/db/3433eab42347e0dc5452d8fcc8da03f638c9accffefe5a7c78146666964a/tokenizers-0.21.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6b43779a269f4629bebb114e19c3fca0223296ae9fea8bb9a7a6c6fb0657ff8e", size = 2804378 },
+ { url = "https://files.pythonhosted.org/packages/57/8b/7da5e6f89736c2ade02816b4733983fca1c226b0c42980b1ae9dc8fcf5cc/tokenizers-0.21.0-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9aeb255802be90acfd363626753fda0064a8df06031012fe7d52fd9a905eb00e", size = 3095488 },
+ { url = "https://files.pythonhosted.org/packages/4d/f6/5ed6711093dc2c04a4e03f6461798b12669bc5a17c8be7cce1240e0b5ce8/tokenizers-0.21.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d8b09dbeb7a8d73ee204a70f94fc06ea0f17dcf0844f16102b9f414f0b7463ba", size = 3121410 },
+ { url = "https://files.pythonhosted.org/packages/81/42/07600892d48950c5e80505b81411044a2d969368cdc0d929b1c847bf6697/tokenizers-0.21.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:400832c0904f77ce87c40f1a8a27493071282f785724ae62144324f171377273", size = 3388821 },
+ { url = "https://files.pythonhosted.org/packages/22/06/69d7ce374747edaf1695a4f61b83570d91cc8bbfc51ccfecf76f56ab4aac/tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e84ca973b3a96894d1707e189c14a774b701596d579ffc7e69debfc036a61a04", size = 3008868 },
+ { url = "https://files.pythonhosted.org/packages/c8/69/54a0aee4d576045b49a0eb8bffdc495634309c823bf886042e6f46b80058/tokenizers-0.21.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:eb7202d231b273c34ec67767378cd04c767e967fda12d4a9e36208a34e2f137e", size = 8975831 },
+ { url = "https://files.pythonhosted.org/packages/f7/f3/b776061e4f3ebf2905ba1a25d90380aafd10c02d406437a8ba22d1724d76/tokenizers-0.21.0-cp39-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:089d56db6782a73a27fd8abf3ba21779f5b85d4a9f35e3b493c7bbcbbf0d539b", size = 8920746 },
+ { url = "https://files.pythonhosted.org/packages/d8/ee/ce83d5ec8b6844ad4c3ecfe3333d58ecc1adc61f0878b323a15355bcab24/tokenizers-0.21.0-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:c87ca3dc48b9b1222d984b6b7490355a6fdb411a2d810f6f05977258400ddb74", size = 9161814 },
+ { url = "https://files.pythonhosted.org/packages/18/07/3e88e65c0ed28fa93aa0c4d264988428eef3df2764c3126dc83e243cb36f/tokenizers-0.21.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:4145505a973116f91bc3ac45988a92e618a6f83eb458f49ea0790df94ee243ff", size = 9357138 },
+ { url = "https://files.pythonhosted.org/packages/15/b0/dc4572ca61555fc482ebc933f26cb407c6aceb3dc19c301c68184f8cad03/tokenizers-0.21.0-cp39-abi3-win32.whl", hash = "sha256:eb1702c2f27d25d9dd5b389cc1f2f51813e99f8ca30d9e25348db6585a97e24a", size = 2202266 },
+ { url = "https://files.pythonhosted.org/packages/44/69/d21eb253fa91622da25585d362a874fa4710be600f0ea9446d8d0217cec1/tokenizers-0.21.0-cp39-abi3-win_amd64.whl", hash = "sha256:87841da5a25a3a5f70c102de371db120f41873b854ba65e52bccd57df5a3780c", size = 2389192 },
]
[[package]]
@@ -3872,32 +4144,32 @@ wheels = [
[[package]]
name = "tornado"
-version = "6.4.1"
+version = "6.4.2"
source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/ee/66/398ac7167f1c7835406888a386f6d0d26ee5dbf197d8a571300be57662d3/tornado-6.4.1.tar.gz", hash = "sha256:92d3ab53183d8c50f8204a51e6f91d18a15d5ef261e84d452800d4ff6fc504e9", size = 500623 }
+sdist = { url = "https://files.pythonhosted.org/packages/59/45/a0daf161f7d6f36c3ea5fc0c2de619746cc3dd4c76402e9db545bd920f63/tornado-6.4.2.tar.gz", hash = "sha256:92bad5b4746e9879fd7bf1eb21dce4e3fc5128d71601f80005afa39237ad620b", size = 501135 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/00/d9/c33be3c1a7564f7d42d87a8d186371a75fd142097076767a5c27da941fef/tornado-6.4.1-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:163b0aafc8e23d8cdc3c9dfb24c5368af84a81e3364745ccb4427669bf84aec8", size = 435924 },
- { url = "https://files.pythonhosted.org/packages/2e/0f/721e113a2fac2f1d7d124b3279a1da4c77622e104084f56119875019ffab/tornado-6.4.1-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6d5ce3437e18a2b66fbadb183c1d3364fb03f2be71299e7d10dbeeb69f4b2a14", size = 433883 },
- { url = "https://files.pythonhosted.org/packages/13/cf/786b8f1e6fe1c7c675e79657448178ad65e41c1c9765ef82e7f6f765c4c5/tornado-6.4.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e20b9113cd7293f164dc46fffb13535266e713cdb87bd2d15ddb336e96cfc4", size = 437224 },
- { url = "https://files.pythonhosted.org/packages/e4/8e/a6ce4b8d5935558828b0f30f3afcb2d980566718837b3365d98e34f6067e/tornado-6.4.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8ae50a504a740365267b2a8d1a90c9fbc86b780a39170feca9bcc1787ff80842", size = 436597 },
- { url = "https://files.pythonhosted.org/packages/22/d4/54f9d12668b58336bd30defe0307e6c61589a3e687b05c366f804b7faaf0/tornado-6.4.1-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:613bf4ddf5c7a95509218b149b555621497a6cc0d46ac341b30bd9ec19eac7f3", size = 436797 },
- { url = "https://files.pythonhosted.org/packages/cf/3f/2c792e7afa7dd8b24fad7a2ed3c2f24a5ec5110c7b43a64cb6095cc106b8/tornado-6.4.1-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:25486eb223babe3eed4b8aecbac33b37e3dd6d776bc730ca14e1bf93888b979f", size = 437516 },
- { url = "https://files.pythonhosted.org/packages/71/63/c8fc62745e669ac9009044b889fc531b6f88ac0f5f183cac79eaa950bb23/tornado-6.4.1-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:454db8a7ecfcf2ff6042dde58404164d969b6f5d58b926da15e6b23817950fc4", size = 436958 },
- { url = "https://files.pythonhosted.org/packages/94/d4/f8ac1f5bd22c15fad3b527e025ce219bd526acdbd903f52053df2baecc8b/tornado-6.4.1-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a02a08cc7a9314b006f653ce40483b9b3c12cda222d6a46d4ac63bb6c9057698", size = 436882 },
- { url = "https://files.pythonhosted.org/packages/4b/3e/a8124c21cc0bbf144d7903d2a0cadab15cadaf683fa39a0f92bc567f0d4d/tornado-6.4.1-cp38-abi3-win32.whl", hash = "sha256:d9a566c40b89757c9aa8e6f032bcdb8ca8795d7c1a9762910c722b1635c9de4d", size = 438092 },
- { url = "https://files.pythonhosted.org/packages/d9/2f/3f2f05e84a7aff787a96d5fb06821323feb370fe0baed4db6ea7b1088f32/tornado-6.4.1-cp38-abi3-win_amd64.whl", hash = "sha256:b24b8982ed444378d7f21d563f4180a2de31ced9d8d84443907a0a64da2072e7", size = 438532 },
+ { url = "https://files.pythonhosted.org/packages/26/7e/71f604d8cea1b58f82ba3590290b66da1e72d840aeb37e0d5f7291bd30db/tornado-6.4.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e828cce1123e9e44ae2a50a9de3055497ab1d0aeb440c5ac23064d9e44880da1", size = 436299 },
+ { url = "https://files.pythonhosted.org/packages/96/44/87543a3b99016d0bf54fdaab30d24bf0af2e848f1d13d34a3a5380aabe16/tornado-6.4.2-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:072ce12ada169c5b00b7d92a99ba089447ccc993ea2143c9ede887e0937aa803", size = 434253 },
+ { url = "https://files.pythonhosted.org/packages/cb/fb/fdf679b4ce51bcb7210801ef4f11fdac96e9885daa402861751353beea6e/tornado-6.4.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a017d239bd1bb0919f72af256a970624241f070496635784d9bf0db640d3fec", size = 437602 },
+ { url = "https://files.pythonhosted.org/packages/4f/3b/e31aeffffc22b475a64dbeb273026a21b5b566f74dee48742817626c47dc/tornado-6.4.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c36e62ce8f63409301537222faffcef7dfc5284f27eec227389f2ad11b09d946", size = 436972 },
+ { url = "https://files.pythonhosted.org/packages/22/55/b78a464de78051a30599ceb6983b01d8f732e6f69bf37b4ed07f642ac0fc/tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca9eb02196e789c9cb5c3c7c0f04fb447dc2adffd95265b2c7223a8a615ccbf", size = 437173 },
+ { url = "https://files.pythonhosted.org/packages/79/5e/be4fb0d1684eb822c9a62fb18a3e44a06188f78aa466b2ad991d2ee31104/tornado-6.4.2-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:304463bd0772442ff4d0f5149c6f1c2135a1fae045adf070821c6cdc76980634", size = 437892 },
+ { url = "https://files.pythonhosted.org/packages/f5/33/4f91fdd94ea36e1d796147003b490fe60a0215ac5737b6f9c65e160d4fe0/tornado-6.4.2-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:c82c46813ba483a385ab2a99caeaedf92585a1f90defb5693351fa7e4ea0bf73", size = 437334 },
+ { url = "https://files.pythonhosted.org/packages/2b/ae/c1b22d4524b0e10da2f29a176fb2890386f7bd1f63aacf186444873a88a0/tornado-6.4.2-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:932d195ca9015956fa502c6b56af9eb06106140d844a335590c1ec7f5277d10c", size = 437261 },
+ { url = "https://files.pythonhosted.org/packages/b5/25/36dbd49ab6d179bcfc4c6c093a51795a4f3bed380543a8242ac3517a1751/tornado-6.4.2-cp38-abi3-win32.whl", hash = "sha256:2876cef82e6c5978fde1e0d5b1f919d756968d5b4282418f3146b79b58556482", size = 438463 },
+ { url = "https://files.pythonhosted.org/packages/61/cc/58b1adeb1bb46228442081e746fcdbc4540905c87e8add7c277540934edb/tornado-6.4.2-cp38-abi3-win_amd64.whl", hash = "sha256:908b71bf3ff37d81073356a5fadcc660eb10c1476ee6e2725588626ce7e5ca38", size = 438907 },
]
[[package]]
name = "tqdm"
-version = "4.67.0"
+version = "4.67.1"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "colorama", marker = "platform_system == 'Windows'" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/e8/4f/0153c21dc5779a49a0598c445b1978126b1344bab9ee71e53e44877e14e0/tqdm-4.67.0.tar.gz", hash = "sha256:fe5a6f95e6fe0b9755e9469b77b9c3cf850048224ecaa8293d7d2d31f97d869a", size = 169739 }
+sdist = { url = "https://files.pythonhosted.org/packages/a8/4b/29b4ef32e036bb34e4ab51796dd745cdba7ed47ad142a9f4a1eb8e0c744d/tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2", size = 169737 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/2b/78/57043611a16c655c8350b4c01b8d6abfb38cc2acb475238b62c2146186d7/tqdm-4.67.0-py3-none-any.whl", hash = "sha256:0cd8af9d56911acab92182e88d763100d4788bdf421d251616040cc4d44863be", size = 78590 },
+ { url = "https://files.pythonhosted.org/packages/d0/30/dc54f88dd4a2b5dc8a0279bdd7270e735851848b762aeb1c1184ed1f6b14/tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2", size = 78540 },
]
[[package]]
@@ -3911,7 +4183,7 @@ wheels = [
[[package]]
name = "typer"
-version = "0.13.0"
+version = "0.13.1"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "click" },
@@ -3919,9 +4191,9 @@ dependencies = [
{ name = "shellingham" },
{ name = "typing-extensions" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/e7/87/9eb07fdfa14e22ec7658b5b1147836d22df3848a22c85a4e18ed272303a5/typer-0.13.0.tar.gz", hash = "sha256:f1c7198347939361eec90139ffa0fd8b3df3a2259d5852a0f7400e476d95985c", size = 97572 }
+sdist = { url = "https://files.pythonhosted.org/packages/76/41/49ead3ad3310545e767bcb917c759b026ca9eada5d5c150c2fb6fc555568/typer-0.13.1.tar.gz", hash = "sha256:9d444cb96cc268ce6f8b94e13b4335084cef4c079998a9f4851a90229a3bd25c", size = 98631 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/18/7e/c8bfa8cbcd3ea1d25d2beb359b5c5a3f4339a7e2e5d9e3ef3e29ba3ab3b9/typer-0.13.0-py3-none-any.whl", hash = "sha256:d85fe0b777b2517cc99c8055ed735452f2659cd45e451507c76f48ce5c1d00e2", size = 44194 },
+ { url = "https://files.pythonhosted.org/packages/22/69/e90a0b4d0c16e095901679216c8ecdc728110c7c54e7b5f43a623bc4c789/typer-0.13.1-py3-none-any.whl", hash = "sha256:5b59580fd925e89463a29d363e0a43245ec02765bde9fb77d39e5d0f29dd7157", size = 44723 },
]
[[package]]
@@ -3973,6 +4245,15 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl", hash = "sha256:a44a133ea12d44a0c0f06d7d42a52d71282e77e2f937d8abd5655b8d56fc1363", size = 11140 },
]
+[[package]]
+name = "uritemplate"
+version = "4.1.1"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/d2/5a/4742fdba39cd02a56226815abfa72fe0aa81c33bed16ed045647d6000eba/uritemplate-4.1.1.tar.gz", hash = "sha256:4346edfc5c3b79f694bccd6d6099a322bbeb628dbf2cd86eea55a456ce5124f0", size = 273898 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/81/c0/7461b49cd25aeece13766f02ee576d1db528f1c37ce69aee300e075b485b/uritemplate-4.1.1-py2.py3-none-any.whl", hash = "sha256:830c08b8d99bdd312ea4ead05994a38e8936266f84b9a7878232db50b044e02e", size = 10356 },
+]
+
[[package]]
name = "urllib3"
version = "2.2.3"
@@ -3984,15 +4265,15 @@ wheels = [
[[package]]
name = "uvicorn"
-version = "0.32.0"
+version = "0.32.1"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "click" },
{ name = "h11" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/e0/fc/1d785078eefd6945f3e5bab5c076e4230698046231eb0f3747bc5c8fa992/uvicorn-0.32.0.tar.gz", hash = "sha256:f78b36b143c16f54ccdb8190d0a26b5f1901fe5a3c777e1ab29f26391af8551e", size = 77564 }
+sdist = { url = "https://files.pythonhosted.org/packages/6a/3c/21dba3e7d76138725ef307e3d7ddd29b763119b3aa459d02cc05fefcff75/uvicorn-0.32.1.tar.gz", hash = "sha256:ee9519c246a72b1c084cea8d3b44ed6026e78a4a309cbedae9c37e4cb9fbb175", size = 77630 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/eb/14/78bd0e95dd2444b6caacbca2b730671d4295ccb628ef58b81bee903629df/uvicorn-0.32.0-py3-none-any.whl", hash = "sha256:60b8f3a5ac027dcd31448f411ced12b5ef452c646f76f02f8cc3f25d8d26fd82", size = 63723 },
+ { url = "https://files.pythonhosted.org/packages/50/c1/2d27b0a15826c2b71dcf6e2f5402181ef85acf439617bb2f1453125ce1f3/uvicorn-0.32.1-py3-none-any.whl", hash = "sha256:82ad92fd58da0d12af7482ecdb5f2470a04c9c9a53ced65b9bbb4a205377602e", size = 63828 },
]
[package.optional-dependencies]
@@ -4034,16 +4315,16 @@ wheels = [
[[package]]
name = "virtualenv"
-version = "20.27.1"
+version = "20.28.0"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "distlib" },
{ name = "filelock" },
{ name = "platformdirs" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/8c/b3/7b6a79c5c8cf6d90ea681310e169cf2db2884f4d583d16c6e1d5a75a4e04/virtualenv-20.27.1.tar.gz", hash = "sha256:142c6be10212543b32c6c45d3d3893dff89112cc588b7d0879ae5a1ec03a47ba", size = 6491145 }
+sdist = { url = "https://files.pythonhosted.org/packages/bf/75/53316a5a8050069228a2f6d11f32046cfa94fbb6cc3f08703f59b873de2e/virtualenv-20.28.0.tar.gz", hash = "sha256:2c9c3262bb8e7b87ea801d715fae4495e6032450c71d2309be9550e7364049aa", size = 7650368 }
wheels = [
- { url = "https://files.pythonhosted.org/packages/ae/92/78324ff89391e00c8f4cf6b8526c41c6ef36b4ea2d2c132250b1a6fc2b8d/virtualenv-20.27.1-py3-none-any.whl", hash = "sha256:f11f1b8a29525562925f745563bfd48b189450f61fb34c4f9cc79dd5aa32a1f4", size = 3117838 },
+ { url = "https://files.pythonhosted.org/packages/10/f9/0919cf6f1432a8c4baa62511f8f8da8225432d22e83e3476f5be1a1edc6e/virtualenv-20.28.0-py3-none-any.whl", hash = "sha256:23eae1b4516ecd610481eda647f3a7c09aea295055337331bb4e6892ecce47b0", size = 4276702 },
]
[[package]]
@@ -4075,51 +4356,51 @@ wheels = [
[[package]]
name = "watchfiles"
-version = "0.24.0"
+version = "1.0.0"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "anyio" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/c8/27/2ba23c8cc85796e2d41976439b08d52f691655fdb9401362099502d1f0cf/watchfiles-0.24.0.tar.gz", hash = "sha256:afb72325b74fa7a428c009c1b8be4b4d7c2afedafb2982827ef2156646df2fe1", size = 37870 }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/85/02/366ae902cd81ca5befcd1854b5c7477b378f68861597cef854bd6dc69fbe/watchfiles-0.24.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:bdcd5538e27f188dd3c804b4a8d5f52a7fc7f87e7fd6b374b8e36a4ca03db428", size = 375579 },
- { url = "https://files.pythonhosted.org/packages/bc/67/d8c9d256791fe312fea118a8a051411337c948101a24586e2df237507976/watchfiles-0.24.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2dadf8a8014fde6addfd3c379e6ed1a981c8f0a48292d662e27cabfe4239c83c", size = 367726 },
- { url = "https://files.pythonhosted.org/packages/b1/dc/a8427b21ef46386adf824a9fec4be9d16a475b850616cfd98cf09a97a2ef/watchfiles-0.24.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6509ed3f467b79d95fc62a98229f79b1a60d1b93f101e1c61d10c95a46a84f43", size = 437735 },
- { url = "https://files.pythonhosted.org/packages/3a/21/0b20bef581a9fbfef290a822c8be645432ceb05fb0741bf3c032e0d90d9a/watchfiles-0.24.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8360f7314a070c30e4c976b183d1d8d1585a4a50c5cb603f431cebcbb4f66327", size = 433644 },
- { url = "https://files.pythonhosted.org/packages/1c/e8/d5e5f71cc443c85a72e70b24269a30e529227986096abe091040d6358ea9/watchfiles-0.24.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:316449aefacf40147a9efaf3bd7c9bdd35aaba9ac5d708bd1eb5763c9a02bef5", size = 450928 },
- { url = "https://files.pythonhosted.org/packages/61/ee/bf17f5a370c2fcff49e1fec987a6a43fd798d8427ea754ce45b38f9e117a/watchfiles-0.24.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:73bde715f940bea845a95247ea3e5eb17769ba1010efdc938ffcb967c634fa61", size = 469072 },
- { url = "https://files.pythonhosted.org/packages/a3/34/03b66d425986de3fc6077e74a74c78da298f8cb598887f664a4485e55543/watchfiles-0.24.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3770e260b18e7f4e576edca4c0a639f704088602e0bc921c5c2e721e3acb8d15", size = 475517 },
- { url = "https://files.pythonhosted.org/packages/70/eb/82f089c4f44b3171ad87a1b433abb4696f18eb67292909630d886e073abe/watchfiles-0.24.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa0fd7248cf533c259e59dc593a60973a73e881162b1a2f73360547132742823", size = 425480 },
- { url = "https://files.pythonhosted.org/packages/53/20/20509c8f5291e14e8a13104b1808cd7cf5c44acd5feaecb427a49d387774/watchfiles-0.24.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d7a2e3b7f5703ffbd500dabdefcbc9eafeff4b9444bbdd5d83d79eedf8428fab", size = 612322 },
- { url = "https://files.pythonhosted.org/packages/df/2b/5f65014a8cecc0a120f5587722068a975a692cadbe9fe4ea56b3d8e43f14/watchfiles-0.24.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d831ee0a50946d24a53821819b2327d5751b0c938b12c0653ea5be7dea9c82ec", size = 595094 },
- { url = "https://files.pythonhosted.org/packages/18/98/006d8043a82c0a09d282d669c88e587b3a05cabdd7f4900e402250a249ac/watchfiles-0.24.0-cp311-none-win32.whl", hash = "sha256:49d617df841a63b4445790a254013aea2120357ccacbed00253f9c2b5dc24e2d", size = 264191 },
- { url = "https://files.pythonhosted.org/packages/8a/8b/badd9247d6ec25f5f634a9b3d0d92e39c045824ec7e8afcedca8ee52c1e2/watchfiles-0.24.0-cp311-none-win_amd64.whl", hash = "sha256:d3dcb774e3568477275cc76554b5a565024b8ba3a0322f77c246bc7111c5bb9c", size = 277527 },
- { url = "https://files.pythonhosted.org/packages/af/19/35c957c84ee69d904299a38bae3614f7cede45f07f174f6d5a2f4dbd6033/watchfiles-0.24.0-cp311-none-win_arm64.whl", hash = "sha256:9301c689051a4857d5b10777da23fafb8e8e921bcf3abe6448a058d27fb67633", size = 266253 },
- { url = "https://files.pythonhosted.org/packages/35/82/92a7bb6dc82d183e304a5f84ae5437b59ee72d48cee805a9adda2488b237/watchfiles-0.24.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:7211b463695d1e995ca3feb38b69227e46dbd03947172585ecb0588f19b0d87a", size = 374137 },
- { url = "https://files.pythonhosted.org/packages/87/91/49e9a497ddaf4da5e3802d51ed67ff33024597c28f652b8ab1e7c0f5718b/watchfiles-0.24.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4b8693502d1967b00f2fb82fc1e744df128ba22f530e15b763c8d82baee15370", size = 367733 },
- { url = "https://files.pythonhosted.org/packages/0d/d8/90eb950ab4998effea2df4cf3a705dc594f6bc501c5a353073aa990be965/watchfiles-0.24.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdab9555053399318b953a1fe1f586e945bc8d635ce9d05e617fd9fe3a4687d6", size = 437322 },
- { url = "https://files.pythonhosted.org/packages/6c/a2/300b22e7bc2a222dd91fce121cefa7b49aa0d26a627b2777e7bdfcf1110b/watchfiles-0.24.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:34e19e56d68b0dad5cff62273107cf5d9fbaf9d75c46277aa5d803b3ef8a9e9b", size = 433409 },
- { url = "https://files.pythonhosted.org/packages/99/44/27d7708a43538ed6c26708bcccdde757da8b7efb93f4871d4cc39cffa1cc/watchfiles-0.24.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:41face41f036fee09eba33a5b53a73e9a43d5cb2c53dad8e61fa6c9f91b5a51e", size = 452142 },
- { url = "https://files.pythonhosted.org/packages/b0/ec/c4e04f755be003129a2c5f3520d2c47026f00da5ecb9ef1e4f9449637571/watchfiles-0.24.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5148c2f1ea043db13ce9b0c28456e18ecc8f14f41325aa624314095b6aa2e9ea", size = 469414 },
- { url = "https://files.pythonhosted.org/packages/c5/4e/cdd7de3e7ac6432b0abf282ec4c1a1a2ec62dfe423cf269b86861667752d/watchfiles-0.24.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7e4bd963a935aaf40b625c2499f3f4f6bbd0c3776f6d3bc7c853d04824ff1c9f", size = 472962 },
- { url = "https://files.pythonhosted.org/packages/27/69/e1da9d34da7fc59db358424f5d89a56aaafe09f6961b64e36457a80a7194/watchfiles-0.24.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c79d7719d027b7a42817c5d96461a99b6a49979c143839fc37aa5748c322f234", size = 425705 },
- { url = "https://files.pythonhosted.org/packages/e8/c1/24d0f7357be89be4a43e0a656259676ea3d7a074901f47022f32e2957798/watchfiles-0.24.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:32aa53a9a63b7f01ed32e316e354e81e9da0e6267435c7243bf8ae0f10b428ef", size = 612851 },
- { url = "https://files.pythonhosted.org/packages/c7/af/175ba9b268dec56f821639c9893b506c69fd999fe6a2e2c51de420eb2f01/watchfiles-0.24.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ce72dba6a20e39a0c628258b5c308779b8697f7676c254a845715e2a1039b968", size = 594868 },
- { url = "https://files.pythonhosted.org/packages/44/81/1f701323a9f70805bc81c74c990137123344a80ea23ab9504a99492907f8/watchfiles-0.24.0-cp312-none-win32.whl", hash = "sha256:d9018153cf57fc302a2a34cb7564870b859ed9a732d16b41a9b5cb2ebed2d444", size = 264109 },
- { url = "https://files.pythonhosted.org/packages/b4/0b/32cde5bc2ebd9f351be326837c61bdeb05ad652b793f25c91cac0b48a60b/watchfiles-0.24.0-cp312-none-win_amd64.whl", hash = "sha256:551ec3ee2a3ac9cbcf48a4ec76e42c2ef938a7e905a35b42a1267fa4b1645896", size = 277055 },
- { url = "https://files.pythonhosted.org/packages/4b/81/daade76ce33d21dbec7a15afd7479de8db786e5f7b7d249263b4ea174e08/watchfiles-0.24.0-cp312-none-win_arm64.whl", hash = "sha256:b52a65e4ea43c6d149c5f8ddb0bef8d4a1e779b77591a458a893eb416624a418", size = 266169 },
- { url = "https://files.pythonhosted.org/packages/30/dc/6e9f5447ae14f645532468a84323a942996d74d5e817837a5c8ce9d16c69/watchfiles-0.24.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:3d2e3ab79a1771c530233cadfd277fcc762656d50836c77abb2e5e72b88e3a48", size = 373764 },
- { url = "https://files.pythonhosted.org/packages/79/c0/c3a9929c372816c7fc87d8149bd722608ea58dc0986d3ef7564c79ad7112/watchfiles-0.24.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:327763da824817b38ad125dcd97595f942d720d32d879f6c4ddf843e3da3fe90", size = 367873 },
- { url = "https://files.pythonhosted.org/packages/2e/11/ff9a4445a7cfc1c98caf99042df38964af12eed47d496dd5d0d90417349f/watchfiles-0.24.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd82010f8ab451dabe36054a1622870166a67cf3fce894f68895db6f74bbdc94", size = 438381 },
- { url = "https://files.pythonhosted.org/packages/48/a3/763ba18c98211d7bb6c0f417b2d7946d346cdc359d585cc28a17b48e964b/watchfiles-0.24.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d64ba08db72e5dfd5c33be1e1e687d5e4fcce09219e8aee893a4862034081d4e", size = 432809 },
- { url = "https://files.pythonhosted.org/packages/30/4c/616c111b9d40eea2547489abaf4ffc84511e86888a166d3a4522c2ba44b5/watchfiles-0.24.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1cf1f6dd7825053f3d98f6d33f6464ebdd9ee95acd74ba2c34e183086900a827", size = 451801 },
- { url = "https://files.pythonhosted.org/packages/b6/be/d7da83307863a422abbfeb12903a76e43200c90ebe5d6afd6a59d158edea/watchfiles-0.24.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:43e3e37c15a8b6fe00c1bce2473cfa8eb3484bbeecf3aefbf259227e487a03df", size = 468886 },
- { url = "https://files.pythonhosted.org/packages/1d/d3/3dfe131ee59d5e90b932cf56aba5c996309d94dafe3d02d204364c23461c/watchfiles-0.24.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:88bcd4d0fe1d8ff43675360a72def210ebad3f3f72cabfeac08d825d2639b4ab", size = 472973 },
- { url = "https://files.pythonhosted.org/packages/42/6c/279288cc5653a289290d183b60a6d80e05f439d5bfdfaf2d113738d0f932/watchfiles-0.24.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:999928c6434372fde16c8f27143d3e97201160b48a614071261701615a2a156f", size = 425282 },
- { url = "https://files.pythonhosted.org/packages/d6/d7/58afe5e85217e845edf26d8780c2d2d2ae77675eeb8d1b8b8121d799ce52/watchfiles-0.24.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:30bbd525c3262fd9f4b1865cb8d88e21161366561cd7c9e1194819e0a33ea86b", size = 612540 },
- { url = "https://files.pythonhosted.org/packages/6d/d5/b96eeb9fe3fda137200dd2f31553670cbc731b1e13164fd69b49870b76ec/watchfiles-0.24.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:edf71b01dec9f766fb285b73930f95f730bb0943500ba0566ae234b5c1618c18", size = 593625 },
- { url = "https://files.pythonhosted.org/packages/c1/e5/c326fe52ee0054107267608d8cea275e80be4455b6079491dfd9da29f46f/watchfiles-0.24.0-cp313-none-win32.whl", hash = "sha256:f4c96283fca3ee09fb044f02156d9570d156698bc3734252175a38f0e8975f07", size = 263899 },
- { url = "https://files.pythonhosted.org/packages/a6/8b/8a7755c5e7221bb35fe4af2dc44db9174f90ebf0344fd5e9b1e8b42d381e/watchfiles-0.24.0-cp313-none-win_amd64.whl", hash = "sha256:a974231b4fdd1bb7f62064a0565a6b107d27d21d9acb50c484d2cdba515b9366", size = 276622 },
+sdist = { url = "https://files.pythonhosted.org/packages/9e/5e/5a9dfb8594b075d7c225d5fb628d498001c5dfae62298e9eb85b8754668f/watchfiles-1.0.0.tar.gz", hash = "sha256:37566c844c9ce3b5deb964fe1a23378e575e74b114618d211fbda8f59d7b5dab", size = 38187 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/a7/10/10759faea3f011b86867a534a47c9aedca667a4b3806ffeac7d8a4c8adee/watchfiles-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:fbd0ab7a9943bbddb87cbc2bf2f09317e74c77dc55b1f5657f81d04666c25269", size = 394139 },
+ { url = "https://files.pythonhosted.org/packages/b9/71/b76be784f3e48bb1929e2c1376f227608be9bda4f7ba0c06832f0d190bed/watchfiles-1.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:774ef36b16b7198669ce655d4f75b4c3d370e7f1cbdfb997fb10ee98717e2058", size = 382832 },
+ { url = "https://files.pythonhosted.org/packages/d6/88/393b33c6da4963933e810eb0b8d6b44c7ba52ed2aaf6bb7709db377289f8/watchfiles-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b4fb98100267e6a5ebaff6aaa5d20aea20240584647470be39fe4823012ac96", size = 441232 },
+ { url = "https://files.pythonhosted.org/packages/35/2c/2d2c131866f7c49ec68c504565d2336f40a595bcd857cd464a68ea0fdb42/watchfiles-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0fc3bf0effa2d8075b70badfdd7fb839d7aa9cea650d17886982840d71fdeabf", size = 447569 },
+ { url = "https://files.pythonhosted.org/packages/ab/08/373713cc4859958cdf0a38ad85740010dbbf5617441edc3480d37387024c/watchfiles-1.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:648e2b6db53eca6ef31245805cd528a16f56fa4cc15aeec97795eaf713c11435", size = 472439 },
+ { url = "https://files.pythonhosted.org/packages/2b/df/8e209910e260f58f005974a60423bb6fc243d26e8793103462870502c744/watchfiles-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa13d604fcb9417ae5f2e3de676e66aa97427d888e83662ad205bed35a313176", size = 492707 },
+ { url = "https://files.pythonhosted.org/packages/83/4d/d0673571c223a784849f45c4da6de2af960602ba5061a2f033f96606a118/watchfiles-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:936f362e7ff28311b16f0b97ec51e8f2cc451763a3264640c6ed40fb252d1ee4", size = 489294 },
+ { url = "https://files.pythonhosted.org/packages/32/ed/0c96c714408c8edab862e816b45be51dbe4e77dc7518c29b0dccc02961a8/watchfiles-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:245fab124b9faf58430da547512d91734858df13f2ddd48ecfa5e493455ffccb", size = 442559 },
+ { url = "https://files.pythonhosted.org/packages/3d/2b/665bf9aefd0f22a265f7b93e69aa4dc068d8ac5ad9ecbd974305eaeff2c0/watchfiles-1.0.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4ff9c7e84e8b644a8f985c42bcc81457240316f900fc72769aaedec9d088055a", size = 614531 },
+ { url = "https://files.pythonhosted.org/packages/9f/41/fd125e824a195219adb204b54f3affce5615f5f1b3889acd441f28d2fbd2/watchfiles-1.0.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9c9a8d8fd97defe935ef8dd53d562e68942ad65067cd1c54d6ed8a088b1d931d", size = 612852 },
+ { url = "https://files.pythonhosted.org/packages/dc/ac/750bf3625f4d3172ee7acfd952552070a88fd697935cfead79a68eb8d69d/watchfiles-1.0.0-cp311-none-win32.whl", hash = "sha256:a0abf173975eb9dd17bb14c191ee79999e650997cc644562f91df06060610e62", size = 272294 },
+ { url = "https://files.pythonhosted.org/packages/bd/04/8c18986b79d106a88f54629f8f901cd725d76227c9a9191ada8ce8c962e8/watchfiles-1.0.0-cp311-none-win_amd64.whl", hash = "sha256:2a825ba4b32c214e3855b536eb1a1f7b006511d8e64b8215aac06eb680642d84", size = 285435 },
+ { url = "https://files.pythonhosted.org/packages/b4/38/7e64929e8ca2b2a94cb9d8ddf6be9c06be8be870b6014d0f06e76b72f9cf/watchfiles-1.0.0-cp311-none-win_arm64.whl", hash = "sha256:a5a7a06cfc65e34fd0a765a7623c5ba14707a0870703888e51d3d67107589817", size = 276512 },
+ { url = "https://files.pythonhosted.org/packages/37/0a/75491ba001f1495d2a12d7f6b90738f20badac78291ca5d56bf7990c859a/watchfiles-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:28fb64b5843d94e2c2483f7b024a1280662a44409bedee8f2f51439767e2d107", size = 394139 },
+ { url = "https://files.pythonhosted.org/packages/5a/ee/935095538ff08ab68555de2bbc18acaf91f4cce8518bf32196f1ff9b8326/watchfiles-1.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e3750434c83b61abb3163b49c64b04180b85b4dabb29a294513faec57f2ffdb7", size = 382832 },
+ { url = "https://files.pythonhosted.org/packages/74/40/86787dca3ea251aabb3abfbe4beeffe9c7ae6e69de56a25d572aecde580e/watchfiles-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bedf84835069f51c7b026b3ca04e2e747ea8ed0a77c72006172c72d28c9f69fc", size = 441232 },
+ { url = "https://files.pythonhosted.org/packages/59/e2/08db1ba48a30462ec7e382c2b1de5400b09a2a7c95fe3f16d3e7da844f0c/watchfiles-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:90004553be36427c3d06ec75b804233f8f816374165d5225b93abd94ba6e7234", size = 447569 },
+ { url = "https://files.pythonhosted.org/packages/73/54/10adf42f203d876076cf0684726c102b3dba82b1c7eea2d82e5991875f62/watchfiles-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b46e15c34d4e401e976d6949ad3a74d244600d5c4b88c827a3fdf18691a46359", size = 472439 },
+ { url = "https://files.pythonhosted.org/packages/29/77/d0d3b5ec6224800cd77f5d058473d0a844d753a3dad9f53f369bc98946bc/watchfiles-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:487d15927f1b0bd24e7df921913399bb1ab94424c386bea8b267754d698f8f0e", size = 492707 },
+ { url = "https://files.pythonhosted.org/packages/c8/74/616bd8edfa7b0aaee96e4b3ad7edd0ccf0f4213a06050e965d68e0cdbaef/watchfiles-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1ff236d7a3f4b0a42f699a22fc374ba526bc55048a70cbb299661158e1bb5e1f", size = 489293 },
+ { url = "https://files.pythonhosted.org/packages/9c/1e/5335eaf5fb9a9516722c7f63f477ca1e361d8159fe46e03d96539cb80f5b/watchfiles-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c01446626574561756067f00b37e6b09c8622b0fc1e9fdbc7cbcea328d4e514", size = 442559 },
+ { url = "https://files.pythonhosted.org/packages/c7/1c/df716e9acf7931b52f48bd9b2eec9a26ff55c73b43bfdbc03ea985543d01/watchfiles-1.0.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b551c465a59596f3d08170bd7e1c532c7260dd90ed8135778038e13c5d48aa81", size = 614531 },
+ { url = "https://files.pythonhosted.org/packages/8d/38/c97d572e147234dd5f107179854efbf9ac6470db11db96f690cdb80e9b1b/watchfiles-1.0.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e1ed613ee107269f66c2df631ec0fc8efddacface85314d392a4131abe299f00", size = 612853 },
+ { url = "https://files.pythonhosted.org/packages/2d/1d/161eb1caa7e63b60428b2439efb0a87f0db4d5f4b91dd8712b6eca689954/watchfiles-1.0.0-cp312-none-win32.whl", hash = "sha256:5f75cd42e7e2254117cf37ff0e68c5b3f36c14543756b2da621408349bd9ca7c", size = 272337 },
+ { url = "https://files.pythonhosted.org/packages/fc/1d/62acefeb546d24971e8f77cf5c475307054da4c21e9c49ec1917b293368b/watchfiles-1.0.0-cp312-none-win_amd64.whl", hash = "sha256:cf517701a4a872417f4e02a136e929537743461f9ec6cdb8184d9a04f4843545", size = 285572 },
+ { url = "https://files.pythonhosted.org/packages/41/08/e20f3dbd2db59067596acc9b81345ac68a9c762352d38e789b2516719876/watchfiles-1.0.0-cp312-none-win_arm64.whl", hash = "sha256:8a2127cd68950787ee36753e6d401c8ea368f73beaeb8e54df5516a06d1ecd82", size = 276513 },
+ { url = "https://files.pythonhosted.org/packages/c6/14/e14eb2ad369b306be70423fbf6da47bc39333d2beeafb14f23d2f37fdd79/watchfiles-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:95de85c254f7fe8cbdf104731f7f87f7f73ae229493bebca3722583160e6b152", size = 394141 },
+ { url = "https://files.pythonhosted.org/packages/81/c3/738aeb2a01cbdf5fa823f702694ac72879a97fa5873d15d4607a877c7082/watchfiles-1.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:533a7cbfe700e09780bb31c06189e39c65f06c7f447326fee707fd02f9a6e945", size = 382833 },
+ { url = "https://files.pythonhosted.org/packages/ed/aa/1cc14d11be667eb7189a2daa0adf307b93d6624fee5b80b8e84c23fb2486/watchfiles-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2218e78e2c6c07b1634a550095ac2a429026b2d5cbcd49a594f893f2bb8c936", size = 441231 },
+ { url = "https://files.pythonhosted.org/packages/c5/38/96f4c3485094a164ced67ae444f3e890bdaad17d1b62c894aa8439443d81/watchfiles-1.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9122b8fdadc5b341315d255ab51d04893f417df4e6c1743b0aac8bf34e96e025", size = 447570 },
+ { url = "https://files.pythonhosted.org/packages/9e/ce/0e35e0191517fa1d876ce0b4e23c818cf3a50d825305dcb7471da8774da7/watchfiles-1.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9272fdbc0e9870dac3b505bce1466d386b4d8d6d2bacf405e603108d50446940", size = 472440 },
+ { url = "https://files.pythonhosted.org/packages/2c/b5/eb9c799c6e14f25f26573ac08734225035a8821f7dd9161c69df882fc119/watchfiles-1.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4a3b33c3aefe9067ebd87846806cd5fc0b017ab70d628aaff077ab9abf4d06b3", size = 492706 },
+ { url = "https://files.pythonhosted.org/packages/84/fa/985d4cbfe99a56d7277c0e522fd138fe5fc4d8ea6351ee3302e93ed67e63/watchfiles-1.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bc338ce9f8846543d428260fa0f9a716626963148edc937d71055d01d81e1525", size = 489295 },
+ { url = "https://files.pythonhosted.org/packages/94/1a/8bc18a170eb621a30fb01f4902d60ce362c88b1f65f3b15d45f53b467200/watchfiles-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ac778a460ea22d63c7e6fb0bc0f5b16780ff0b128f7f06e57aaec63bd339285", size = 442560 },
+ { url = "https://files.pythonhosted.org/packages/e9/e0/07ce46f1770ca1d229635efb5393ff593c41762f389532ae9c7b2ced79b0/watchfiles-1.0.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:53ae447f06f8f29f5ab40140f19abdab822387a7c426a369eb42184b021e97eb", size = 614532 },
+ { url = "https://files.pythonhosted.org/packages/7b/56/cdd2847d24249e879a001e6aed9ddeeaa24a80aabfdcb9c19389d0837dfe/watchfiles-1.0.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:1f73c2147a453315d672c1ad907abe6d40324e34a185b51e15624bc793f93cc6", size = 612852 },
+ { url = "https://files.pythonhosted.org/packages/72/c9/89a3df27c97eeef5890591a95f7afd266a32dfe55bce1f3bea3390fa56f5/watchfiles-1.0.0-cp313-none-win32.whl", hash = "sha256:eba98901a2eab909dbd79681190b9049acc650f6111fde1845484a4450761e98", size = 271721 },
+ { url = "https://files.pythonhosted.org/packages/ef/e9/6e1bd83a08d254b0394500a2bb691b7940f09fcd849f400d01491932f641/watchfiles-1.0.0-cp313-none-win_amd64.whl", hash = "sha256:d562a6114ddafb09c33246c6ace7effa71ca4b6a2324a47f4b09b6445ea78941", size = 284809 },
]
[[package]]
@@ -4202,31 +4483,47 @@ wheels = [
[[package]]
name = "wrapt"
-version = "1.16.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/95/4c/063a912e20bcef7124e0df97282a8af3ff3e4b603ce84c481d6d7346be0a/wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d", size = 53972 }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/fd/03/c188ac517f402775b90d6f312955a5e53b866c964b32119f2ed76315697e/wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09", size = 37313 },
- { url = "https://files.pythonhosted.org/packages/0f/16/ea627d7817394db04518f62934a5de59874b587b792300991b3c347ff5e0/wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d", size = 38164 },
- { url = "https://files.pythonhosted.org/packages/7f/a7/f1212ba098f3de0fd244e2de0f8791ad2539c03bef6c05a9fcb03e45b089/wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389", size = 80890 },
- { url = "https://files.pythonhosted.org/packages/b7/96/bb5e08b3d6db003c9ab219c487714c13a237ee7dcc572a555eaf1ce7dc82/wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060", size = 73118 },
- { url = "https://files.pythonhosted.org/packages/6e/52/2da48b35193e39ac53cfb141467d9f259851522d0e8c87153f0ba4205fb1/wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1", size = 80746 },
- { url = "https://files.pythonhosted.org/packages/11/fb/18ec40265ab81c0e82a934de04596b6ce972c27ba2592c8b53d5585e6bcd/wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3", size = 85668 },
- { url = "https://files.pythonhosted.org/packages/0f/ef/0ecb1fa23145560431b970418dce575cfaec555ab08617d82eb92afc7ccf/wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956", size = 78556 },
- { url = "https://files.pythonhosted.org/packages/25/62/cd284b2b747f175b5a96cbd8092b32e7369edab0644c45784871528eb852/wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d", size = 85712 },
- { url = "https://files.pythonhosted.org/packages/e5/a7/47b7ff74fbadf81b696872d5ba504966591a3468f1bc86bca2f407baef68/wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362", size = 35327 },
- { url = "https://files.pythonhosted.org/packages/cf/c3/0084351951d9579ae83a3d9e38c140371e4c6b038136909235079f2e6e78/wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89", size = 37523 },
- { url = "https://files.pythonhosted.org/packages/92/17/224132494c1e23521868cdd57cd1e903f3b6a7ba6996b7b8f077ff8ac7fe/wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b", size = 37614 },
- { url = "https://files.pythonhosted.org/packages/6a/d7/cfcd73e8f4858079ac59d9db1ec5a1349bc486ae8e9ba55698cc1f4a1dff/wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36", size = 38316 },
- { url = "https://files.pythonhosted.org/packages/7e/79/5ff0a5c54bda5aec75b36453d06be4f83d5cd4932cc84b7cb2b52cee23e2/wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73", size = 86322 },
- { url = "https://files.pythonhosted.org/packages/c4/81/e799bf5d419f422d8712108837c1d9bf6ebe3cb2a81ad94413449543a923/wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809", size = 79055 },
- { url = "https://files.pythonhosted.org/packages/62/62/30ca2405de6a20448ee557ab2cd61ab9c5900be7cbd18a2639db595f0b98/wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b", size = 87291 },
- { url = "https://files.pythonhosted.org/packages/49/4e/5d2f6d7b57fc9956bf06e944eb00463551f7d52fc73ca35cfc4c2cdb7aed/wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81", size = 90374 },
- { url = "https://files.pythonhosted.org/packages/a6/9b/c2c21b44ff5b9bf14a83252a8b973fb84923764ff63db3e6dfc3895cf2e0/wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9", size = 83896 },
- { url = "https://files.pythonhosted.org/packages/14/26/93a9fa02c6f257df54d7570dfe8011995138118d11939a4ecd82cb849613/wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c", size = 91738 },
- { url = "https://files.pythonhosted.org/packages/a2/5b/4660897233eb2c8c4de3dc7cefed114c61bacb3c28327e64150dc44ee2f6/wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc", size = 35568 },
- { url = "https://files.pythonhosted.org/packages/5c/cc/8297f9658506b224aa4bd71906447dea6bb0ba629861a758c28f67428b91/wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8", size = 37653 },
- { url = "https://files.pythonhosted.org/packages/ff/21/abdedb4cdf6ff41ebf01a74087740a709e2edb146490e4d9beea054b0b7a/wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1", size = 23362 },
+version = "1.17.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/24/a1/fc03dca9b0432725c2e8cdbf91a349d2194cf03d8523c124faebe581de09/wrapt-1.17.0.tar.gz", hash = "sha256:16187aa2317c731170a88ef35e8937ae0f533c402872c1ee5e6d079fcf320801", size = 55542 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/0e/40/def56538acddc2f764c157d565b9f989072a1d2f2a8e384324e2e104fc7d/wrapt-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:74bf625b1b4caaa7bad51d9003f8b07a468a704e0644a700e936c357c17dd45a", size = 38766 },
+ { url = "https://files.pythonhosted.org/packages/89/e2/8c299f384ae4364193724e2adad99f9504599d02a73ec9199bf3f406549d/wrapt-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f2a28eb35cf99d5f5bd12f5dd44a0f41d206db226535b37b0c60e9da162c3ed", size = 83730 },
+ { url = "https://files.pythonhosted.org/packages/29/ef/fcdb776b12df5ea7180d065b28fa6bb27ac785dddcd7202a0b6962bbdb47/wrapt-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81b1289e99cf4bad07c23393ab447e5e96db0ab50974a280f7954b071d41b489", size = 75470 },
+ { url = "https://files.pythonhosted.org/packages/55/b5/698bd0bf9fbb3ddb3a2feefbb7ad0dea1205f5d7d05b9cbab54f5db731aa/wrapt-1.17.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f2939cd4a2a52ca32bc0b359015718472d7f6de870760342e7ba295be9ebaf9", size = 83168 },
+ { url = "https://files.pythonhosted.org/packages/ce/07/701a5cee28cb4d5df030d4b2649319e36f3d9fdd8000ef1d84eb06b9860d/wrapt-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6a9653131bda68a1f029c52157fd81e11f07d485df55410401f745007bd6d339", size = 82307 },
+ { url = "https://files.pythonhosted.org/packages/42/92/c48ba92cda6f74cb914dc3c5bba9650dc80b790e121c4b987f3a46b028f5/wrapt-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4e4b4385363de9052dac1a67bfb535c376f3d19c238b5f36bddc95efae15e12d", size = 75101 },
+ { url = "https://files.pythonhosted.org/packages/8a/0a/9276d3269334138b88a2947efaaf6335f61d547698e50dff672ade24f2c6/wrapt-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bdf62d25234290db1837875d4dceb2151e4ea7f9fff2ed41c0fde23ed542eb5b", size = 81835 },
+ { url = "https://files.pythonhosted.org/packages/b9/4c/39595e692753ef656ea94b51382cc9aea662fef59d7910128f5906486f0e/wrapt-1.17.0-cp311-cp311-win32.whl", hash = "sha256:5d8fd17635b262448ab8f99230fe4dac991af1dabdbb92f7a70a6afac8a7e346", size = 36412 },
+ { url = "https://files.pythonhosted.org/packages/63/bb/c293a67fb765a2ada48f48cd0f2bb957da8161439da4c03ea123b9894c02/wrapt-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:92a3d214d5e53cb1db8b015f30d544bc9d3f7179a05feb8f16df713cecc2620a", size = 38744 },
+ { url = "https://files.pythonhosted.org/packages/85/82/518605474beafff11f1a34759f6410ab429abff9f7881858a447e0d20712/wrapt-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:89fc28495896097622c3fc238915c79365dd0ede02f9a82ce436b13bd0ab7569", size = 38904 },
+ { url = "https://files.pythonhosted.org/packages/80/6c/17c3b2fed28edfd96d8417c865ef0b4c955dc52c4e375d86f459f14340f1/wrapt-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:875d240fdbdbe9e11f9831901fb8719da0bd4e6131f83aa9f69b96d18fae7504", size = 88622 },
+ { url = "https://files.pythonhosted.org/packages/4a/11/60ecdf3b0fd3dca18978d89acb5d095a05f23299216e925fcd2717c81d93/wrapt-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5ed16d95fd142e9c72b6c10b06514ad30e846a0d0917ab406186541fe68b451", size = 80920 },
+ { url = "https://files.pythonhosted.org/packages/d2/50/dbef1a651578a3520d4534c1e434989e3620380c1ad97e309576b47f0ada/wrapt-1.17.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18b956061b8db634120b58f668592a772e87e2e78bc1f6a906cfcaa0cc7991c1", size = 89170 },
+ { url = "https://files.pythonhosted.org/packages/44/a2/78c5956bf39955288c9e0dd62e807b308c3aa15a0f611fbff52aa8d6b5ea/wrapt-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:daba396199399ccabafbfc509037ac635a6bc18510ad1add8fd16d4739cdd106", size = 86748 },
+ { url = "https://files.pythonhosted.org/packages/99/49/2ee413c78fc0bdfebe5bee590bf3becdc1fab0096a7a9c3b5c9666b2415f/wrapt-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4d63f4d446e10ad19ed01188d6c1e1bb134cde8c18b0aa2acfd973d41fcc5ada", size = 79734 },
+ { url = "https://files.pythonhosted.org/packages/c0/8c/4221b7b270e36be90f0930fe15a4755a6ea24093f90b510166e9ed7861ea/wrapt-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8a5e7cc39a45fc430af1aefc4d77ee6bad72c5bcdb1322cfde852c15192b8bd4", size = 87552 },
+ { url = "https://files.pythonhosted.org/packages/4c/6b/1aaccf3efe58eb95e10ce8e77c8909b7a6b0da93449a92c4e6d6d10b3a3d/wrapt-1.17.0-cp312-cp312-win32.whl", hash = "sha256:0a0a1a1ec28b641f2a3a2c35cbe86c00051c04fffcfcc577ffcdd707df3f8635", size = 36647 },
+ { url = "https://files.pythonhosted.org/packages/b3/4f/243f88ac49df005b9129194c6511b3642818b3e6271ddea47a15e2ee4934/wrapt-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:3c34f6896a01b84bab196f7119770fd8466c8ae3dfa73c59c0bb281e7b588ce7", size = 38830 },
+ { url = "https://files.pythonhosted.org/packages/67/9c/38294e1bb92b055222d1b8b6591604ca4468b77b1250f59c15256437644f/wrapt-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:714c12485aa52efbc0fc0ade1e9ab3a70343db82627f90f2ecbc898fdf0bb181", size = 38904 },
+ { url = "https://files.pythonhosted.org/packages/78/b6/76597fb362cbf8913a481d41b14b049a8813cd402a5d2f84e57957c813ae/wrapt-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da427d311782324a376cacb47c1a4adc43f99fd9d996ffc1b3e8529c4074d393", size = 88608 },
+ { url = "https://files.pythonhosted.org/packages/bc/69/b500884e45b3881926b5f69188dc542fb5880019d15c8a0df1ab1dfda1f7/wrapt-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ba1739fb38441a27a676f4de4123d3e858e494fac05868b7a281c0a383c098f4", size = 80879 },
+ { url = "https://files.pythonhosted.org/packages/52/31/f4cc58afe29eab8a50ac5969963010c8b60987e719c478a5024bce39bc42/wrapt-1.17.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e711fc1acc7468463bc084d1b68561e40d1eaa135d8c509a65dd534403d83d7b", size = 89119 },
+ { url = "https://files.pythonhosted.org/packages/aa/9c/05ab6bf75dbae7a9d34975fb6ee577e086c1c26cde3b6cf6051726d33c7c/wrapt-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:140ea00c87fafc42739bd74a94a5a9003f8e72c27c47cd4f61d8e05e6dec8721", size = 86778 },
+ { url = "https://files.pythonhosted.org/packages/0e/6c/4b8d42e3db355603d35fe5c9db79c28f2472a6fd1ccf4dc25ae46739672a/wrapt-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:73a96fd11d2b2e77d623a7f26e004cc31f131a365add1ce1ce9a19e55a1eef90", size = 79793 },
+ { url = "https://files.pythonhosted.org/packages/69/23/90e3a2ee210c0843b2c2a49b3b97ffcf9cad1387cb18cbeef9218631ed5a/wrapt-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0b48554952f0f387984da81ccfa73b62e52817a4386d070c75e4db7d43a28c4a", size = 87606 },
+ { url = "https://files.pythonhosted.org/packages/5f/06/3683126491ca787d8d71d8d340e775d40767c5efedb35039d987203393b7/wrapt-1.17.0-cp313-cp313-win32.whl", hash = "sha256:498fec8da10e3e62edd1e7368f4b24aa362ac0ad931e678332d1b209aec93045", size = 36651 },
+ { url = "https://files.pythonhosted.org/packages/f1/bc/3bf6d2ca0d2c030d324ef9272bea0a8fdaff68f3d1fa7be7a61da88e51f7/wrapt-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:fd136bb85f4568fffca995bd3c8d52080b1e5b225dbf1c2b17b66b4c5fa02838", size = 38835 },
+ { url = "https://files.pythonhosted.org/packages/ce/b5/251165c232d87197a81cd362eeb5104d661a2dd3aa1f0b33e4bf61dda8b8/wrapt-1.17.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:17fcf043d0b4724858f25b8826c36e08f9fb2e475410bece0ec44a22d533da9b", size = 40146 },
+ { url = "https://files.pythonhosted.org/packages/89/33/1e1bdd3e866eeb73d8c4755db1ceb8a80d5bd51ee4648b3f2247adec4e67/wrapt-1.17.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4a557d97f12813dc5e18dad9fa765ae44ddd56a672bb5de4825527c847d6379", size = 113444 },
+ { url = "https://files.pythonhosted.org/packages/9f/7c/94f53b065a43f5dc1fbdd8b80fd8f41284315b543805c956619c0b8d92f0/wrapt-1.17.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0229b247b0fc7dee0d36176cbb79dbaf2a9eb7ecc50ec3121f40ef443155fb1d", size = 101246 },
+ { url = "https://files.pythonhosted.org/packages/62/5d/640360baac6ea6018ed5e34e6e80e33cfbae2aefde24f117587cd5efd4b7/wrapt-1.17.0-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8425cfce27b8b20c9b89d77fb50e368d8306a90bf2b6eef2cdf5cd5083adf83f", size = 109320 },
+ { url = "https://files.pythonhosted.org/packages/e3/cf/6c7a00ae86a2e9482c91170aefe93f4ccda06c1ac86c4de637c69133da59/wrapt-1.17.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9c900108df470060174108012de06d45f514aa4ec21a191e7ab42988ff42a86c", size = 110193 },
+ { url = "https://files.pythonhosted.org/packages/cd/cc/aa718df0d20287e8f953ce0e2f70c0af0fba1d3c367db7ee8bdc46ea7003/wrapt-1.17.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:4e547b447073fc0dbfcbff15154c1be8823d10dab4ad401bdb1575e3fdedff1b", size = 100460 },
+ { url = "https://files.pythonhosted.org/packages/f7/16/9f3ac99fe1f6caaa789d67b4e3c562898b532c250769f5255fa8b8b93983/wrapt-1.17.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:914f66f3b6fc7b915d46c1cc424bc2441841083de01b90f9e81109c9759e43ab", size = 106347 },
+ { url = "https://files.pythonhosted.org/packages/64/85/c77a331b2c06af49a687f8b926fc2d111047a51e6f0b0a4baa01ff3a673a/wrapt-1.17.0-cp313-cp313t-win32.whl", hash = "sha256:a4192b45dff127c7d69b3bdfb4d3e47b64179a0b9900b6351859f3001397dabf", size = 37971 },
+ { url = "https://files.pythonhosted.org/packages/05/9b/b2469f8be9efed24283fd7b9eeb8e913e9bc0715cf919ea8645e428ab7af/wrapt-1.17.0-cp313-cp313t-win_amd64.whl", hash = "sha256:4f643df3d4419ea3f856c5c3f40fec1d65ea2e89ec812c83f7767c8730f9827a", size = 40755 },
+ { url = "https://files.pythonhosted.org/packages/4b/d9/a8ba5e9507a9af1917285d118388c5eb7a81834873f45df213a6fe923774/wrapt-1.17.0-py3-none-any.whl", hash = "sha256:d2c63b93548eda58abf5188e505ffed0229bf675f7c3090f8e36ad55b8cbc371", size = 23592 },
]
[[package]]
@@ -4240,64 +4537,64 @@ wheels = [
[[package]]
name = "yarl"
-version = "1.17.1"
+version = "1.18.0"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "idna" },
{ name = "multidict" },
{ name = "propcache" },
]
-sdist = { url = "https://files.pythonhosted.org/packages/54/9c/9c0a9bfa683fc1be7fdcd9687635151544d992cccd48892dc5e0a5885a29/yarl-1.17.1.tar.gz", hash = "sha256:067a63fcfda82da6b198fa73079b1ca40b7c9b7994995b6ee38acda728b64d47", size = 178163 }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/ec/0f/ce6a2c8aab9946446fb27f1e28f0fd89ce84ae913ab18a92d18078a1c7ed/yarl-1.17.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cbad927ea8ed814622305d842c93412cb47bd39a496ed0f96bfd42b922b4a217", size = 140727 },
- { url = "https://files.pythonhosted.org/packages/9d/df/204f7a502bdc3973cd9fc29e7dfad18ae48b3acafdaaf1ae07c0f41025aa/yarl-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fca4b4307ebe9c3ec77a084da3a9d1999d164693d16492ca2b64594340999988", size = 93560 },
- { url = "https://files.pythonhosted.org/packages/a2/e1/f4d522ae0560c91a4ea31113a50f00f85083be885e1092fc6e74eb43cb1d/yarl-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff5c6771c7e3511a06555afa317879b7db8d640137ba55d6ab0d0c50425cab75", size = 91497 },
- { url = "https://files.pythonhosted.org/packages/f1/82/783d97bf4a226f1a2e59b1966f2752244c2bf4dc89bc36f61d597b8e34e5/yarl-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b29beab10211a746f9846baa39275e80034e065460d99eb51e45c9a9495bcca", size = 339446 },
- { url = "https://files.pythonhosted.org/packages/e5/ff/615600647048d81289c80907165de713fbc566d1e024789863a2f6563ba3/yarl-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a52a1ffdd824fb1835272e125385c32fd8b17fbdefeedcb4d543cc23b332d74", size = 354616 },
- { url = "https://files.pythonhosted.org/packages/a5/04/bfb7adb452bd19dfe0c35354ffce8ebc3086e028e5f8270e409d17da5466/yarl-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:58c8e9620eb82a189c6c40cb6b59b4e35b2ee68b1f2afa6597732a2b467d7e8f", size = 351801 },
- { url = "https://files.pythonhosted.org/packages/10/e0/efe21edacdc4a638ce911f8cabf1c77cac3f60e9819ba7d891b9ceb6e1d4/yarl-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d216e5d9b8749563c7f2c6f7a0831057ec844c68b4c11cb10fc62d4fd373c26d", size = 343381 },
- { url = "https://files.pythonhosted.org/packages/63/f9/7bc7e69857d6fc3920ecd173592f921d5701f4a0dd3f2ae293b386cfa3bf/yarl-1.17.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:881764d610e3269964fc4bb3c19bb6fce55422828e152b885609ec176b41cf11", size = 337093 },
- { url = "https://files.pythonhosted.org/packages/93/52/99da61947466275ff17d7bc04b0ac31dfb7ec699bd8d8985dffc34c3a913/yarl-1.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8c79e9d7e3d8a32d4824250a9c6401194fb4c2ad9a0cec8f6a96e09a582c2cc0", size = 346619 },
- { url = "https://files.pythonhosted.org/packages/91/8a/8aaad86a35a16e485ba0e5de0d2ae55bf8dd0c9f1cccac12be4c91366b1d/yarl-1.17.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:299f11b44d8d3a588234adbe01112126010bd96d9139c3ba7b3badd9829261c3", size = 344347 },
- { url = "https://files.pythonhosted.org/packages/af/b6/97f29f626b4a1768ffc4b9b489533612cfcb8905c90f745aade7b2eaf75e/yarl-1.17.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:cc7d768260f4ba4ea01741c1b5fe3d3a6c70eb91c87f4c8761bbcce5181beafe", size = 350316 },
- { url = "https://files.pythonhosted.org/packages/d7/98/8e0e8b812479569bdc34d66dd3e2471176ca33be4ff5c272a01333c4b269/yarl-1.17.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:de599af166970d6a61accde358ec9ded821234cbbc8c6413acfec06056b8e860", size = 361336 },
- { url = "https://files.pythonhosted.org/packages/9e/d3/d1507efa0a85c25285f8eb51df9afa1ba1b6e446dda781d074d775b6a9af/yarl-1.17.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2b24ec55fad43e476905eceaf14f41f6478780b870eda5d08b4d6de9a60b65b4", size = 365350 },
- { url = "https://files.pythonhosted.org/packages/22/ba/ee7f1830449c96bae6f33210b7d89e8aaf3079fbdaf78ac398e50a9da404/yarl-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fb815155aac6bfa8d86184079652c9715c812d506b22cfa369196ef4e99d1b4", size = 357689 },
- { url = "https://files.pythonhosted.org/packages/a0/85/321c563dc5afe1661108831b965c512d185c61785400f5606006507d2e18/yarl-1.17.1-cp311-cp311-win32.whl", hash = "sha256:7615058aabad54416ddac99ade09a5510cf77039a3b903e94e8922f25ed203d7", size = 83635 },
- { url = "https://files.pythonhosted.org/packages/bc/da/543a32c00860588ff1235315b68f858cea30769099c32cd22b7bb266411b/yarl-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:14bc88baa44e1f84164a392827b5defb4fa8e56b93fecac3d15315e7c8e5d8b3", size = 90218 },
- { url = "https://files.pythonhosted.org/packages/5d/af/e25615c7920396219b943b9ff8b34636ae3e1ad30777649371317d7f05f8/yarl-1.17.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:327828786da2006085a4d1feb2594de6f6d26f8af48b81eb1ae950c788d97f61", size = 141839 },
- { url = "https://files.pythonhosted.org/packages/83/5e/363d9de3495c7c66592523f05d21576a811015579e0c87dd38c7b5788afd/yarl-1.17.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cc353841428d56b683a123a813e6a686e07026d6b1c5757970a877195f880c2d", size = 94125 },
- { url = "https://files.pythonhosted.org/packages/e3/a2/b65447626227ebe36f18f63ac551790068bf42c69bb22dfa3ae986170728/yarl-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c73df5b6e8fabe2ddb74876fb82d9dd44cbace0ca12e8861ce9155ad3c886139", size = 92048 },
- { url = "https://files.pythonhosted.org/packages/a1/f5/2ef86458446f85cde10582054fd5113495ef8ce8477da35aaaf26d2970ef/yarl-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bdff5e0995522706c53078f531fb586f56de9c4c81c243865dd5c66c132c3b5", size = 331472 },
- { url = "https://files.pythonhosted.org/packages/f3/6b/1ba79758ba352cdf2ad4c20cab1b982dd369aa595bb0d7601fc89bf82bee/yarl-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:06157fb3c58f2736a5e47c8fcbe1afc8b5de6fb28b14d25574af9e62150fcaac", size = 341260 },
- { url = "https://files.pythonhosted.org/packages/2d/41/4e07c2afca3f9ed3da5b0e38d43d0280d9b624a3d5c478c425e5ce17775c/yarl-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1654ec814b18be1af2c857aa9000de7a601400bd4c9ca24629b18486c2e35463", size = 340882 },
- { url = "https://files.pythonhosted.org/packages/c3/c0/cd8e94618983c1b811af082e1a7ad7764edb3a6af2bc6b468e0e686238ba/yarl-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f6595c852ca544aaeeb32d357e62c9c780eac69dcd34e40cae7b55bc4fb1147", size = 336648 },
- { url = "https://files.pythonhosted.org/packages/ac/fc/73ec4340d391ffbb8f34eb4c55429784ec9f5bd37973ce86d52d67135418/yarl-1.17.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:459e81c2fb920b5f5df744262d1498ec2c8081acdcfe18181da44c50f51312f7", size = 325019 },
- { url = "https://files.pythonhosted.org/packages/57/48/da3ebf418fc239d0a156b3bdec6b17a5446f8d2dea752299c6e47b143a85/yarl-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7e48cdb8226644e2fbd0bdb0a0f87906a3db07087f4de77a1b1b1ccfd9e93685", size = 342841 },
- { url = "https://files.pythonhosted.org/packages/5d/79/107272745a470a8167924e353a5312eb52b5a9bb58e22686adc46c94f7ec/yarl-1.17.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d9b6b28a57feb51605d6ae5e61a9044a31742db557a3b851a74c13bc61de5172", size = 341433 },
- { url = "https://files.pythonhosted.org/packages/30/9c/6459668b3b8dcc11cd061fc53e12737e740fb6b1575b49c84cbffb387b3a/yarl-1.17.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e594b22688d5747b06e957f1ef822060cb5cb35b493066e33ceac0cf882188b7", size = 344927 },
- { url = "https://files.pythonhosted.org/packages/c5/0b/93a17ed733aca8164fc3a01cb7d47b3f08854ce4f957cce67a6afdb388a0/yarl-1.17.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5f236cb5999ccd23a0ab1bd219cfe0ee3e1c1b65aaf6dd3320e972f7ec3a39da", size = 355732 },
- { url = "https://files.pythonhosted.org/packages/9a/63/ead2ed6aec3c59397e135cadc66572330325a0c24cd353cd5c94f5e63463/yarl-1.17.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a2a64e62c7a0edd07c1c917b0586655f3362d2c2d37d474db1a509efb96fea1c", size = 362123 },
- { url = "https://files.pythonhosted.org/packages/89/bf/f6b75b4c2fcf0e7bb56edc0ed74e33f37fac45dc40e5a52a3be66b02587a/yarl-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d0eea830b591dbc68e030c86a9569826145df485b2b4554874b07fea1275a199", size = 356355 },
- { url = "https://files.pythonhosted.org/packages/45/1f/50a0257cd07eef65c8c65ad6a21f5fb230012d659e021aeb6ac8a7897bf6/yarl-1.17.1-cp312-cp312-win32.whl", hash = "sha256:46ddf6e0b975cd680eb83318aa1d321cb2bf8d288d50f1754526230fcf59ba96", size = 83279 },
- { url = "https://files.pythonhosted.org/packages/bc/82/fafb2c1268d63d54ec08b3a254fbe51f4ef098211501df646026717abee3/yarl-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:117ed8b3732528a1e41af3aa6d4e08483c2f0f2e3d3d7dca7cf538b3516d93df", size = 89590 },
- { url = "https://files.pythonhosted.org/packages/06/1e/5a93e3743c20eefbc68bd89334d9c9f04f3f2334380f7bbf5e950f29511b/yarl-1.17.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5d1d42556b063d579cae59e37a38c61f4402b47d70c29f0ef15cee1acaa64488", size = 139974 },
- { url = "https://files.pythonhosted.org/packages/a1/be/4e0f6919013c7c5eaea5c31811c551ccd599d2fc80aa3dd6962f1bbdcddd/yarl-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c0167540094838ee9093ef6cc2c69d0074bbf84a432b4995835e8e5a0d984374", size = 93364 },
- { url = "https://files.pythonhosted.org/packages/73/f0/650f994bc491d0cb85df8bb45392780b90eab1e175f103a5edc61445ff67/yarl-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2f0a6423295a0d282d00e8701fe763eeefba8037e984ad5de44aa349002562ac", size = 91177 },
- { url = "https://files.pythonhosted.org/packages/f3/e8/9945ed555d14b43ede3ae8b1bd73e31068a694cad2b9d3cad0a28486c2eb/yarl-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b078134f48552c4d9527db2f7da0b5359abd49393cdf9794017baec7506170", size = 333086 },
- { url = "https://files.pythonhosted.org/packages/a6/c0/7d167e48e14d26639ca066825af8da7df1d2fcdba827e3fd6341aaf22a3b/yarl-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d401f07261dc5aa36c2e4efc308548f6ae943bfff20fcadb0a07517a26b196d8", size = 343661 },
- { url = "https://files.pythonhosted.org/packages/fa/81/80a266517531d4e3553aecd141800dbf48d02e23ebd52909e63598a80134/yarl-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5f1ac7359e17efe0b6e5fec21de34145caef22b260e978336f325d5c84e6938", size = 345196 },
- { url = "https://files.pythonhosted.org/packages/b0/77/6adc482ba7f2dc6c0d9b3b492e7cd100edfac4cfc3849c7ffa26fd7beb1a/yarl-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f63d176a81555984e91f2c84c2a574a61cab7111cc907e176f0f01538e9ff6e", size = 338743 },
- { url = "https://files.pythonhosted.org/packages/6d/cc/f0c4c0b92ff3ada517ffde2b127406c001504b225692216d969879ada89a/yarl-1.17.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e275792097c9f7e80741c36de3b61917aebecc08a67ae62899b074566ff8556", size = 326719 },
- { url = "https://files.pythonhosted.org/packages/18/3b/7bfc80d3376b5fa162189993a87a5a6a58057f88315bd0ea00610055b57a/yarl-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:81713b70bea5c1386dc2f32a8f0dab4148a2928c7495c808c541ee0aae614d67", size = 345826 },
- { url = "https://files.pythonhosted.org/packages/2e/66/cf0b0338107a5c370205c1a572432af08f36ca12ecce127f5b558398b4fd/yarl-1.17.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:aa46dce75078fceaf7cecac5817422febb4355fbdda440db55206e3bd288cfb8", size = 340335 },
- { url = "https://files.pythonhosted.org/packages/2f/52/b084b0eec0fd4d2490e1d33ace3320fad704c5f1f3deaa709f929d2d87fc/yarl-1.17.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:1ce36ded585f45b1e9bb36d0ae94765c6608b43bd2e7f5f88079f7a85c61a4d3", size = 345301 },
- { url = "https://files.pythonhosted.org/packages/ef/38/9e2036d948efd3bafcdb4976cb212166fded76615f0dfc6c1492c4ce4784/yarl-1.17.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:2d374d70fdc36f5863b84e54775452f68639bc862918602d028f89310a034ab0", size = 354205 },
- { url = "https://files.pythonhosted.org/packages/81/c1/13dfe1e70b86811733316221c696580725ceb1c46d4e4db852807e134310/yarl-1.17.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2d9f0606baaec5dd54cb99667fcf85183a7477f3766fbddbe3f385e7fc253299", size = 360501 },
- { url = "https://files.pythonhosted.org/packages/91/87/756e05c74cd8bf9e71537df4a2cae7e8211a9ebe0d2350a3e26949e1e41c/yarl-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b0341e6d9a0c0e3cdc65857ef518bb05b410dbd70d749a0d33ac0f39e81a4258", size = 359452 },
- { url = "https://files.pythonhosted.org/packages/06/b2/b2bb09c1e6d59e1c9b1b36a86caa473e22c3dbf26d1032c030e9bfb554dc/yarl-1.17.1-cp313-cp313-win32.whl", hash = "sha256:2e7ba4c9377e48fb7b20dedbd473cbcbc13e72e1826917c185157a137dac9df2", size = 308904 },
- { url = "https://files.pythonhosted.org/packages/f3/27/f084d9a5668853c1f3b246620269b14ee871ef3c3cc4f3a1dd53645b68ec/yarl-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:949681f68e0e3c25377462be4b658500e85ca24323d9619fdc41f68d46a1ffda", size = 314637 },
- { url = "https://files.pythonhosted.org/packages/52/ad/1fe7ff5f3e8869d4c5070f47b96bac2b4d15e67c100a8278d8e7876329fc/yarl-1.17.1-py3-none-any.whl", hash = "sha256:f1790a4b1e8e8e028c391175433b9c8122c39b46e1663228158e61e6f915bf06", size = 44352 },
+sdist = { url = "https://files.pythonhosted.org/packages/5e/4b/53db4ecad4d54535aff3dfda1f00d6363d79455f62b11b8ca97b82746bd2/yarl-1.18.0.tar.gz", hash = "sha256:20d95535e7d833889982bfe7cc321b7f63bf8879788fee982c76ae2b24cfb715", size = 180098 }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/06/45/6ad7135d1c4ad3a6a49e2c37dc78a1805a7871879c03c3495d64c9605d49/yarl-1.18.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:b8e8c516dc4e1a51d86ac975b0350735007e554c962281c432eaa5822aa9765c", size = 141283 },
+ { url = "https://files.pythonhosted.org/packages/45/6d/24b70ae33107d6eba303ed0ebfdf1164fe2219656e7594ca58628ebc0f1d/yarl-1.18.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2e6b4466714a73f5251d84b471475850954f1fa6acce4d3f404da1d55d644c34", size = 94082 },
+ { url = "https://files.pythonhosted.org/packages/8a/0e/da720989be11b662ca847ace58f468b52310a9b03e52ac62c144755f9d75/yarl-1.18.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c893f8c1a6d48b25961e00922724732d00b39de8bb0b451307482dc87bddcd74", size = 92017 },
+ { url = "https://files.pythonhosted.org/packages/f5/76/e5c91681fa54658943cb88673fb19b3355c3a8ae911a33a2621b6320990d/yarl-1.18.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:13aaf2bdbc8c86ddce48626b15f4987f22e80d898818d735b20bd58f17292ee8", size = 340359 },
+ { url = "https://files.pythonhosted.org/packages/cf/77/02cf72f09dea20980dea4ebe40dfb2c24916b864aec869a19f715428e0f0/yarl-1.18.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dd21c0128e301851de51bc607b0a6da50e82dc34e9601f4b508d08cc89ee7929", size = 356336 },
+ { url = "https://files.pythonhosted.org/packages/17/66/83a88d04e4fc243dd26109f3e3d6412f67819ab1142dadbce49706ef4df4/yarl-1.18.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:205de377bd23365cd85562c9c6c33844050a93661640fda38e0567d2826b50df", size = 353730 },
+ { url = "https://files.pythonhosted.org/packages/76/77/0b205a532d22756ab250ab21924d362f910a23d641c82faec1c4ad7f6077/yarl-1.18.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed69af4fe2a0949b1ea1d012bf065c77b4c7822bad4737f17807af2adb15a73c", size = 343882 },
+ { url = "https://files.pythonhosted.org/packages/0b/47/2081ddce3da6096889c3947bdc21907d0fa15939909b10219254fe116841/yarl-1.18.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8e1c18890091aa3cc8a77967943476b729dc2016f4cfe11e45d89b12519d4a93", size = 335873 },
+ { url = "https://files.pythonhosted.org/packages/25/3c/437304394494e757ae927c9a81bacc4bcdf7351a1d4e811d95b02cb6dbae/yarl-1.18.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91b8fb9427e33f83ca2ba9501221ffaac1ecf0407f758c4d2f283c523da185ee", size = 347725 },
+ { url = "https://files.pythonhosted.org/packages/c6/fb/fa6c642bc052fbe6370ed5da765579650510157dea354fe9e8177c3bc34a/yarl-1.18.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:536a7a8a53b75b2e98ff96edb2dfb91a26b81c4fed82782035767db5a465be46", size = 346161 },
+ { url = "https://files.pythonhosted.org/packages/b0/09/8c0cf68a0fcfe3b060c9e5857bb35735bc72a4cf4075043632c636d007e9/yarl-1.18.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a64619a9c47c25582190af38e9eb382279ad42e1f06034f14d794670796016c0", size = 349924 },
+ { url = "https://files.pythonhosted.org/packages/bf/4b/1efe10fd51e2cedf53195d688fa270efbcd64a015c61d029d49c20bf0af7/yarl-1.18.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c73a6bbc97ba1b5a0c3c992ae93d721c395bdbb120492759b94cc1ac71bc6350", size = 361865 },
+ { url = "https://files.pythonhosted.org/packages/0b/1b/2b5efd6df06bf938f7e154dee8e2ab22d148f3311a92bf4da642aaaf2fc5/yarl-1.18.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:a173401d7821a2a81c7b47d4e7d5c4021375a1441af0c58611c1957445055056", size = 366030 },
+ { url = "https://files.pythonhosted.org/packages/f8/db/786a5684f79278e62271038a698f56a51960f9e643be5d3eff82712f0b1c/yarl-1.18.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7520e799b1f84e095cce919bd6c23c9d49472deeef25fe1ef960b04cca51c3fc", size = 358902 },
+ { url = "https://files.pythonhosted.org/packages/91/2f/437d0de062f1a3e3cb17573971b3832232443241133580c2ba3da5001d06/yarl-1.18.0-cp311-cp311-win32.whl", hash = "sha256:c4cb992d8090d5ae5f7afa6754d7211c578be0c45f54d3d94f7781c495d56716", size = 84138 },
+ { url = "https://files.pythonhosted.org/packages/9d/85/035719a9266bce85ecde820aa3f8c46f3b18c3d7ba9ff51367b2fa4ae2a2/yarl-1.18.0-cp311-cp311-win_amd64.whl", hash = "sha256:52c136f348605974c9b1c878addd6b7a60e3bf2245833e370862009b86fa4689", size = 90765 },
+ { url = "https://files.pythonhosted.org/packages/23/36/c579b80a5c76c0d41c8e08baddb3e6940dfc20569db579a5691392c52afa/yarl-1.18.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:1ece25e2251c28bab737bdf0519c88189b3dd9492dc086a1d77336d940c28ced", size = 142376 },
+ { url = "https://files.pythonhosted.org/packages/0c/5f/e247dc7c0607a0c505fea6c839721844bee55686dfb183c7d7b8ef8a9cb1/yarl-1.18.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:454902dc1830d935c90b5b53c863ba2a98dcde0fbaa31ca2ed1ad33b2a7171c6", size = 94692 },
+ { url = "https://files.pythonhosted.org/packages/eb/e1/3081b578a6f21961711b9a1c49c2947abb3b0d0dd9537378fb06777ce8ee/yarl-1.18.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:01be8688fc211dc237e628fcc209dda412d35de7642453059a0553747018d075", size = 92527 },
+ { url = "https://files.pythonhosted.org/packages/2f/fa/d9e1b9fbafa4cc82cd3980b5314741b33c2fe16308d725449a23aed32021/yarl-1.18.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d26f1fa9fa2167bb238f6f4b20218eb4e88dd3ef21bb8f97439fa6b5313e30d", size = 332096 },
+ { url = "https://files.pythonhosted.org/packages/93/b6/dd27165114317875838e216214fb86338dc63d2e50855a8f2a12de2a7fe5/yarl-1.18.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b234a4a9248a9f000b7a5dfe84b8cb6210ee5120ae70eb72a4dcbdb4c528f72f", size = 342047 },
+ { url = "https://files.pythonhosted.org/packages/fc/9f/bad434b5279ae7a356844e14dc771c3d29eb928140bbc01621af811c8a27/yarl-1.18.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe94d1de77c4cd8caff1bd5480e22342dbd54c93929f5943495d9c1e8abe9f42", size = 341712 },
+ { url = "https://files.pythonhosted.org/packages/9a/9f/63864f43d131ba8c8cdf1bde5dd3f02f0eff8a7c883a5d7fad32f204fda5/yarl-1.18.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b4c90c5363c6b0a54188122b61edb919c2cd1119684999d08cd5e538813a28e", size = 336654 },
+ { url = "https://files.pythonhosted.org/packages/20/30/b4542bbd9be73de155213207eec019f6fe6495885f7dd59aa1ff705a041b/yarl-1.18.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49a98ecadc5a241c9ba06de08127ee4796e1009555efd791bac514207862b43d", size = 325484 },
+ { url = "https://files.pythonhosted.org/packages/69/bc/e2a9808ec26989cf0d1b98fe7b3cc45c1c6506b5ea4fe43ece5991f28f34/yarl-1.18.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9106025c7f261f9f5144f9aa7681d43867eed06349a7cfb297a1bc804de2f0d1", size = 344213 },
+ { url = "https://files.pythonhosted.org/packages/e2/17/0ee5a68886aca1a8071b0d24a1e1c0fd9970dead2ef2d5e26e027fb7ce88/yarl-1.18.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:f275ede6199d0f1ed4ea5d55a7b7573ccd40d97aee7808559e1298fe6efc8dbd", size = 340517 },
+ { url = "https://files.pythonhosted.org/packages/fd/db/1fe4ef38ee852bff5ec8f5367d718b3a7dac7520f344b8e50306f68a2940/yarl-1.18.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:f7edeb1dcc7f50a2c8e08b9dc13a413903b7817e72273f00878cb70e766bdb3b", size = 346234 },
+ { url = "https://files.pythonhosted.org/packages/b4/ee/5e5bccdb821eb9949ba66abb4d19e3299eee00282e37b42f65236120e892/yarl-1.18.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c083f6dd6951b86e484ebfc9c3524b49bcaa9c420cb4b2a78ef9f7a512bfcc85", size = 359625 },
+ { url = "https://files.pythonhosted.org/packages/3f/43/95a64d9e7ab4aa1c34fc5ea0edb35b581bc6ad33fd960a8ae34c2040b319/yarl-1.18.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:80741ec5b471fbdfb997821b2842c59660a1c930ceb42f8a84ba8ca0f25a66aa", size = 364239 },
+ { url = "https://files.pythonhosted.org/packages/40/19/09ce976c624c9d3cc898f0be5035ddef0c0759d85b2313321cfe77b69915/yarl-1.18.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b1a3297b9cad594e1ff0c040d2881d7d3a74124a3c73e00c3c71526a1234a9f7", size = 357599 },
+ { url = "https://files.pythonhosted.org/packages/7d/35/6f33fd29791af2ec161aebe8abe63e788c2b74a6c7e8f29c92e5f5e96849/yarl-1.18.0-cp312-cp312-win32.whl", hash = "sha256:cd6ab7d6776c186f544f893b45ee0c883542b35e8a493db74665d2e594d3ca75", size = 83832 },
+ { url = "https://files.pythonhosted.org/packages/4e/8e/cdb40ef98597be107de67b11e2f1f23f911e0f1416b938885d17a338e304/yarl-1.18.0-cp312-cp312-win_amd64.whl", hash = "sha256:039c299a0864d1f43c3e31570045635034ea7021db41bf4842693a72aca8df3a", size = 90132 },
+ { url = "https://files.pythonhosted.org/packages/2b/77/2196b657c66f97adaef0244e9e015f30eac0df59c31ad540f79ce328feed/yarl-1.18.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:6fb64dd45453225f57d82c4764818d7a205ee31ce193e9f0086e493916bd4f72", size = 140512 },
+ { url = "https://files.pythonhosted.org/packages/0e/d8/2bb6e26fddba5c01bad284e4571178c651b97e8e06318efcaa16e07eb9fd/yarl-1.18.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3adaaf9c6b1b4fc258584f4443f24d775a2086aee82d1387e48a8b4f3d6aecf6", size = 93875 },
+ { url = "https://files.pythonhosted.org/packages/54/e4/99fbb884dd9f814fb0037dc1783766bb9edcd57b32a76f3ec5ac5c5772d7/yarl-1.18.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:da206d1ec78438a563c5429ab808a2b23ad7bc025c8adbf08540dde202be37d5", size = 91705 },
+ { url = "https://files.pythonhosted.org/packages/3b/a2/5bd86eca9449e6b15d3b08005cf4e58e3da972240c2bee427b358c311549/yarl-1.18.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:576d258b21c1db4c6449b1c572c75d03f16a482eb380be8003682bdbe7db2f28", size = 333325 },
+ { url = "https://files.pythonhosted.org/packages/94/50/a218da5f159cd985685bc72c500bb1a7fd2d60035d2339b8a9d9e1f99194/yarl-1.18.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c60e547c0a375c4bfcdd60eef82e7e0e8698bf84c239d715f5c1278a73050393", size = 344121 },
+ { url = "https://files.pythonhosted.org/packages/a4/e3/830ae465811198b4b5ebecd674b5b3dca4d222af2155eb2144bfe190bbb8/yarl-1.18.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e3818eabaefb90adeb5e0f62f047310079d426387991106d4fbf3519eec7d90a", size = 345163 },
+ { url = "https://files.pythonhosted.org/packages/7a/74/05c4326877ca541eee77b1ef74b7ac8081343d3957af8f9291ca6eca6fec/yarl-1.18.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5f72421246c21af6a92fbc8c13b6d4c5427dfd949049b937c3b731f2f9076bd", size = 339130 },
+ { url = "https://files.pythonhosted.org/packages/29/42/842f35aa1dae25d132119ee92185e8c75d8b9b7c83346506bd31e9fa217f/yarl-1.18.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7fa7d37f2ada0f42e0723632993ed422f2a679af0e200874d9d861720a54f53e", size = 326418 },
+ { url = "https://files.pythonhosted.org/packages/f9/ed/65c0514f2d1e8b92a61f564c914381d078766cab38b5fbde355b3b3af1fb/yarl-1.18.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:42ba84e2ac26a3f252715f8ec17e6fdc0cbf95b9617c5367579fafcd7fba50eb", size = 345204 },
+ { url = "https://files.pythonhosted.org/packages/23/31/351f64f0530c372fa01160f38330f44478e7bf3092f5ce2bfcb91605561d/yarl-1.18.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:6a49ad0102c0f0ba839628d0bf45973c86ce7b590cdedf7540d5b1833ddc6f00", size = 341652 },
+ { url = "https://files.pythonhosted.org/packages/49/aa/0c6e666c218d567727c1d040d01575685e7f9b18052fd68a59c9f61fe5d9/yarl-1.18.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:96404e8d5e1bbe36bdaa84ef89dc36f0e75939e060ca5cd45451aba01db02902", size = 347257 },
+ { url = "https://files.pythonhosted.org/packages/36/0b/33a093b0e13bb8cd0f27301779661ff325270b6644929001f8f33307357d/yarl-1.18.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:a0509475d714df8f6d498935b3f307cd122c4ca76f7d426c7e1bb791bcd87eda", size = 359735 },
+ { url = "https://files.pythonhosted.org/packages/a8/92/dcc0b37c48632e71ffc2b5f8b0509347a0bde55ab5862ff755dce9dd56c4/yarl-1.18.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:1ff116f0285b5c8b3b9a2680aeca29a858b3b9e0402fc79fd850b32c2bcb9f8b", size = 365982 },
+ { url = "https://files.pythonhosted.org/packages/0e/39/30e2a24a7a6c628dccb13eb6c4a03db5f6cd1eb2c6cda56a61ddef764c11/yarl-1.18.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e2580c1d7e66e6d29d6e11855e3b1c6381971e0edd9a5066e6c14d79bc8967af", size = 360128 },
+ { url = "https://files.pythonhosted.org/packages/76/13/12b65dca23b1fb8ae44269a4d24048fd32ac90b445c985b0a46fdfa30cfe/yarl-1.18.0-cp313-cp313-win32.whl", hash = "sha256:14408cc4d34e202caba7b5ac9cc84700e3421a9e2d1b157d744d101b061a4a88", size = 309888 },
+ { url = "https://files.pythonhosted.org/packages/f6/60/478d3d41a4bf0b9e7dca74d870d114e775d1ff7156b7d1e0e9972e8f97fd/yarl-1.18.0-cp313-cp313-win_amd64.whl", hash = "sha256:1db1537e9cb846eb0ff206eac667f627794be8b71368c1ab3207ec7b6f8c5afc", size = 315459 },
+ { url = "https://files.pythonhosted.org/packages/30/9c/3f7ab894a37b1520291247cbc9ea6756228d098dae5b37eec848d404a204/yarl-1.18.0-py3-none-any.whl", hash = "sha256:dbf53db46f7cf176ee01d8d98c39381440776fcda13779d269a8ba664f69bec0", size = 44840 },
]
[[package]]
diff --git a/zeno/agents/distalert/agent.py b/zeno/agents/distalert/agent.py
new file mode 100644
index 0000000..e0beeb5
--- /dev/null
+++ b/zeno/agents/distalert/agent.py
@@ -0,0 +1,17 @@
+from langgraph.graph import END, START, StateGraph
+from langgraph.prebuilt import tools_condition
+
+from zeno.agents.distalert.utils.nodes import assistant, tool_node
+from zeno.agents.maingraph.utils.state import GraphState
+
+wf = StateGraph(GraphState)
+
+wf.add_node("assistant", assistant)
+wf.add_node("tools", tool_node)
+
+wf.add_edge(START, "assistant")
+wf.add_conditional_edges("assistant", tools_condition)
+wf.add_edge("tools", "assistant")
+wf.add_edge("assistant", END)
+
+graph = wf.compile()
diff --git a/zeno/agents/distalert/utils/nodes.py b/zeno/agents/distalert/utils/nodes.py
new file mode 100644
index 0000000..6e1b234
--- /dev/null
+++ b/zeno/agents/distalert/utils/nodes.py
@@ -0,0 +1,40 @@
+from dotenv import load_dotenv
+from langchain_core.messages import HumanMessage, SystemMessage
+from langgraph.prebuilt import ToolNode
+
+from zeno.agents.maingraph.models import ModelFactory
+from zeno.tools.dist.context_layer_tool import context_layer_tool
+from zeno.tools.dist.dist_alerts_tool import dist_alerts_tool
+from zeno.tools.location.location_tool import location_tool
+
+_ = load_dotenv(".env")
+
+tools = [dist_alerts_tool, context_layer_tool, location_tool]
+
+# model = ModelFactory().get("claude-3-5-sonnet-latest").bind_tools(tools)
+# model = ModelFactory().get("qwen2.5:7b").bind_tools(tools)
+# model = ModelFactory().get("gpt-3.5-turbo").bind_tools(tools)
+model = ModelFactory().get("gpt-4o-mini").bind_tools(tools)
+
+
+def assistant(state):
+ sys_msg = SystemMessage(
+ content="""You are a helpful assistant tasked with answering the user queries for vegetation disturbance, tree cover loss, or deforestation.
+Never try to guess locations or alert data. Always rely on tools to answer queries, and otherwise refuse to answer queries.
+Always check if a context layer is required. Check that using the `context-layer-tool`.
+Think through the solution step-by-step first and then execute.
+Use the `location-tool` to get polygons of any region or place by name.
+Use the `dist-alerts-tool` to get vegetation disturbance information, pass the context layer as input
+
+"""
+ )
+ if not state["messages"]:
+ state["messages"] = [HumanMessage(state["question"])]
+
+ return {
+ "messages": [model.invoke([sys_msg] + state["messages"])],
+ "route": "distalert",
+ }
+
+
+tool_node = ToolNode(tools)
diff --git a/zeno/agents/docfinder/agent.py b/zeno/agents/docfinder/agent.py
index da226a9..bb59c85 100644
--- a/zeno/agents/docfinder/agent.py
+++ b/zeno/agents/docfinder/agent.py
@@ -1,9 +1,14 @@
from langgraph.graph import END, START, StateGraph
from langgraph.prebuilt import ToolNode, tools_condition
-from agents.docfinder.utils.nodes import agent, generate, grade_documents, rewrite
-from tools.docretrieve.document_retrieve_tool import retriever_tool
-from agents.docfinder.utils.state import GraphState
+from zeno.agents.docfinder.utils.nodes import (
+ agent,
+ generate,
+ grade_documents,
+ rewrite,
+)
+from zeno.agents.docfinder.utils.state import GraphState
+from zeno.tools.docretrieve.document_retrieve_tool import retriever_tool
# Define a new graph
workflow = StateGraph(GraphState)
diff --git a/zeno/agents/docfinder/utils/chunk.py b/zeno/agents/docfinder/utils/chunk.py
index bac39e4..50a7837 100644
--- a/zeno/agents/docfinder/utils/chunk.py
+++ b/zeno/agents/docfinder/utils/chunk.py
@@ -41,9 +41,7 @@
docs = loader.load()
# Split into chunks
-text_splitter = RecursiveCharacterTextSplitter(
- chunk_size=1024, chunk_overlap=200
-)
+text_splitter = RecursiveCharacterTextSplitter(chunk_size=1024, chunk_overlap=200)
splits = text_splitter.split_documents(docs)
vectorstore = Chroma.from_documents(
diff --git a/zeno/agents/docfinder/utils/nodes.py b/zeno/agents/docfinder/utils/nodes.py
index f1a6e31..510dc6d 100644
--- a/zeno/agents/docfinder/utils/nodes.py
+++ b/zeno/agents/docfinder/utils/nodes.py
@@ -1,18 +1,13 @@
-from dotenv import load_dotenv
-
from typing import Literal
from langchain import hub
-from langchain_anthropic import ChatAnthropic
from langchain_core.messages import HumanMessage
from langchain_core.prompts import PromptTemplate
-from langchain_ollama import ChatOllama
from langchain_core.runnables.config import RunnableConfig
-
from pydantic import BaseModel, Field
-from tools.docretrieve.document_retrieve_tool import retriever_tool
-from agents.maingraph.models import ModelFactory
+from zeno.agents.maingraph.models import ModelFactory
+from zeno.tools.docretrieve.document_retrieve_tool import retriever_tool
def grade_documents(state, config: RunnableConfig) -> Literal["generate", "rewrite"]:
@@ -44,7 +39,7 @@ class grade(BaseModel):
input_variables=["context", "question"],
)
- model_id = config["configurable"].get("model_id")
+ model_id = config["configurable"].get("model_id", "gpt-4o-mini")
model = ModelFactory().get(model_id)
# LLM with tool and validation
@@ -87,7 +82,7 @@ def agent(state, config: RunnableConfig):
print("---CALL DOCFINDER---")
messages = [HumanMessage(content=state["question"])]
- model_id = config["configurable"].get("model_id")
+ model_id = config["configurable"].get("model_id", "claude-3-5-sonnet-latest")
model = ModelFactory().get(model_id)
model = model.bind_tools([retriever_tool])
@@ -121,7 +116,7 @@ def rewrite(state, config: RunnableConfig):
Formulate an improved question: """,
)
]
- model_id = config["configurable"].get("model_id")
+ model_id = config["configurable"].get("model_id", "gpt-4o-mini")
model = ModelFactory().get(model_id)
# Grader
@@ -150,7 +145,7 @@ def generate(state, config: RunnableConfig):
# Prompt
prompt = hub.pull("rlm/rag-prompt")
- model_id = config["configurable"].get("model_id")
+ model_id = config["configurable"].get("model_id", "gpt-4o-mini")
model = ModelFactory().get(model_id)
# Chain
diff --git a/zeno/agents/firealert/utils/nodes.py b/zeno/agents/firealert/utils/nodes.py
index 5d23092..d0de9e1 100644
--- a/zeno/agents/firealert/utils/nodes.py
+++ b/zeno/agents/firealert/utils/nodes.py
@@ -5,7 +5,7 @@
from zeno.tools.charts.basic import barchart_tool
from zeno.tools.glad.weekly_alerts_tool import glad_weekly_alerts_tool
-from zeno.tools.location.tool import location_tool
+from zeno.tools.location.location_tool import location_tool
_ = load_dotenv(".env")
diff --git a/zeno/agents/layerfinder/agent.py b/zeno/agents/layerfinder/agent.py
index 04f5612..d2cc134 100644
--- a/zeno/agents/layerfinder/agent.py
+++ b/zeno/agents/layerfinder/agent.py
@@ -1,6 +1,7 @@
-from agents.layerfinder.utils.nodes import retrieve, generate
from langgraph.graph import END, START, StateGraph
-from agents.layerfinder.utils.state import GraphState
+
+from zeno.agents.layerfinder.utils.nodes import generate, retrieve
+from zeno.agents.layerfinder.utils.state import GraphState
wf = StateGraph(GraphState)
diff --git a/zeno/agents/layerfinder/utils/nodes.py b/zeno/agents/layerfinder/utils/nodes.py
index 1018904..d7827f1 100644
--- a/zeno/agents/layerfinder/utils/nodes.py
+++ b/zeno/agents/layerfinder/utils/nodes.py
@@ -1,14 +1,9 @@
-from dotenv import load_dotenv
-
import json
-from tools.layerretrieve.layer_retrieve_tool import retriever, retriever_tool
-from langgraph.prebuilt import ToolNode
-from langchain_core.runnables.config import RunnableConfig
-from agents.maingraph.models import ModelFactory
from langchain_core.messages import HumanMessage
+from langchain_core.runnables.config import RunnableConfig
-
+from zeno.agents.maingraph.models import ModelFactory
from zeno.tools.layerretrieve.layer_retrieve_tool import retriever
# local_llm = "qwen2.5:7b"
@@ -73,7 +68,7 @@ def generate(state, config: RunnableConfig):
documents = state["documents"]
loop_step = state.get("loop_step", 0)
- model_id = config["configurable"].get("model_id")
+ model_id = config["configurable"].get("model_id", "gpt-4o-mini")
model = ModelFactory().get(model_id)
# RAG generation
@@ -116,7 +111,7 @@ def generate(state, config: RunnableConfig):
# if not state["messages"]:
# state["messages"] = [HumanMessage(state["question"])]
-# model_id = config["configurable"].get("model_id")
+# model_id = config["configurable"].get("model_id", "gpt-4o-mini")
# model = ModelFactory().get(model_id)
# llm_with_tools = model.bind_tools(tools)
@@ -127,7 +122,7 @@ def generate(state, config: RunnableConfig):
# def router(state, config: RunnableConfig):
# print("---ROUTER---")
-# model_id = config["configurable"].get("model_id")
+# model_id = config["configurable"].get("model_id", "gpt-4o-mini")
# model = ModelFactory().get(model_id, json_mode=True)
# response = model.invoke(
diff --git a/zeno/agents/maingraph/agent.py b/zeno/agents/maingraph/agent.py
index 75cdd11..ed8c420 100644
--- a/zeno/agents/maingraph/agent.py
+++ b/zeno/agents/maingraph/agent.py
@@ -1,9 +1,11 @@
from langgraph.graph import END, StateGraph
-from agents.layerfinder.utils.state import GraphState
-from agents.docfinder.agent import graph as docfinder
-from agents.layerfinder.agent import graph as layerfinder
-from agents.maingraph.utils.nodes import maingraph
-from agents.firealert.agent import graph as firealert
+
+from zeno.agents.distalert.agent import graph as distalert
+from zeno.agents.docfinder.agent import graph as docfinder
+from zeno.agents.firealert.agent import graph as firealert
+from zeno.agents.layerfinder.agent import graph as layerfinder
+from zeno.agents.maingraph.utils.nodes import maingraph
+from zeno.agents.maingraph.utils.state import GraphState
# Define a new graph
workflow = StateGraph(GraphState)
@@ -12,6 +14,7 @@
workflow.add_node("docfinder", docfinder)
workflow.add_node("layerfinder", layerfinder)
workflow.add_node("firealert", firealert)
+workflow.add_node("distalert", distalert)
workflow.set_conditional_entry_point(
maingraph,
@@ -19,10 +22,12 @@
"layerfinder": "layerfinder",
"docfinder": "docfinder",
"firealert": "firealert",
+ "distalert": "distalert",
},
)
workflow.add_edge("docfinder", END)
workflow.add_edge("layerfinder", END)
workflow.add_edge("firealert", END)
+workflow.add_edge("distalert", END)
graph = workflow.compile()
diff --git a/zeno/agents/maingraph/models.py b/zeno/agents/maingraph/models.py
index f1b07ed..71cc906 100644
--- a/zeno/agents/maingraph/models.py
+++ b/zeno/agents/maingraph/models.py
@@ -1,8 +1,9 @@
import os
-from langchain_ollama import ChatOllama
+from functools import lru_cache
+
from langchain_anthropic import ChatAnthropic
+from langchain_ollama import ChatOllama
from langchain_openai import ChatOpenAI
-from functools import lru_cache
# TODO: combine the defintions for the OpenAI models
# TODO: ChatAnthropic doesn't have a generic "json" type output. We can instead create an output parser class,
@@ -25,7 +26,7 @@
"constructor_class": ChatOllama,
"json_mode": {"param_name": "format", "param_value": "json"},
"additional_params": {
- "base_url": os.environ.get("OLLAMA_BASE_URL"),
+ # "base_url": os.environ.get("OLLAMA_BASE_URL"),
},
},
{
@@ -75,7 +76,7 @@ def __init__(self):
self.available_models = {
model["model_id"]: model
for model in MODELS_CONFIG
- if model["required_env_var"] in os.environ
+ # if model["required_env_var"] in os.environ
}
@lru_cache
diff --git a/zeno/agents/maingraph/utils/nodes.py b/zeno/agents/maingraph/utils/nodes.py
index 598050a..31873ae 100644
--- a/zeno/agents/maingraph/utils/nodes.py
+++ b/zeno/agents/maingraph/utils/nodes.py
@@ -5,37 +5,45 @@
from langchain_core.runnables.config import RunnableConfig
from langchain_ollama import ChatOllama # noqa
-from agents.maingraph.models import ModelFactory
+from zeno.agents.maingraph.models import ModelFactory
# llm_json_mode = ChatOllama(model="qwen2.5:7b", temperature=0, format="json")
llm_json_mode = ChatAnthropic(model="claude-3-5-sonnet-20241022", temperature=0)
-def generate(state):
- pass
-
-
def maingraph(state, config: RunnableConfig):
sys_msg = SystemMessage(
- content="""You are a helpful chatbot tasked with answering the user queries for WRI data API.
- You have 3 agents to choose from.
- Use the "layerfinder" agent if someone asks for available data
+ content="""You are a helpful chatbot tasked with answering the user queries about
+ the World Reource Institute, and data it provides.
+ You have several agents to choose from.
+ Use the "layerfinder" agent if someone asks for what data is available in WRI
Use the "docfinder" agent for general questions related to the World Resources Institute
Use the "firealert" agent for questions related to forest fires
- Return JSON with single key, route, that is 'layerfinder', 'docfinder' or 'firealert' depending on the question."""
+ Use the "distalert" agent for questions related to vegetation disturbances, tree cover loss, or similar
+ Return JSON with single key, route, that is 'layerfinder', 'docfinder', 'firealert', or 'distalert' depending on the question."""
)
+ if state["question"].startswith("/"):
+ route = state["question"].split(" ")[0].replace("/", "")
+ print(f"---SLASH COMMAND {route} DETECTED---")
+ if route not in ["layerfinder", "docfinder", "firealert", "distalert"]:
+ raise ValueError(f"Slash-command {route} not valid")
+ # Remove slash command
+ question = state["question"].replace(f"/{route} ", "")
+ else:
+ model_id = config["configurable"].get("model_id", "gpt-4o-mini")
+ model = ModelFactory().get(model_id, json_mode=True)
- model_id = config["configurable"].get("model_id")
- model = ModelFactory().get(model_id, json_mode=True)
-
- response = model.invoke([sys_msg] + [HumanMessage(content=state["question"])])
- route = json.loads(response.content)["route"]
+ response = model.invoke([sys_msg] + [HumanMessage(content=state["question"])])
+ route = json.loads(response.content)["route"]
+
if route == "layerfinder":
print("---ROUTING-TO-LAYERFINDER---")
elif route == "docfinder":
print("---ROUTING-TO-DOCFINDER---")
elif route == "firealert":
print("---ROUTING-TO-FIREALERT---")
+ elif route == "distalert":
+ print("---ROUTING-TO-DISTALERT---")
else:
raise ValueError(f"Route to {route} not found")
diff --git a/zeno/agents/maingraph/utils/state.py b/zeno/agents/maingraph/utils/state.py
new file mode 100644
index 0000000..b44c895
--- /dev/null
+++ b/zeno/agents/maingraph/utils/state.py
@@ -0,0 +1,17 @@
+import operator
+from typing import Annotated, List
+
+from langchain_core.messages import AnyMessage
+from langgraph.graph import add_messages
+from typing_extensions import TypedDict
+
+
+class GraphState(TypedDict):
+ messages: Annotated[List[AnyMessage], add_messages]
+ question: str # User question
+ data: dict # Data populated by tools
+ generation: str # LLM generation
+ answers: int # Number of answers generated
+ loop_step: Annotated[int, operator.add]
+ documents: List[str] # List of retrieved documents
+ route: str # Route to agent
diff --git a/zeno/main.py b/zeno/main.py
index 6e88728..cf5cf6c 100644
--- a/zeno/main.py
+++ b/zeno/main.py
@@ -1,15 +1,12 @@
+import json
from typing import Annotated
-from fastapi import FastAPI, Body, HTTPException
-from fastapi.responses import StreamingResponse, JSONResponse
-from langfuse.callback import CallbackHandler
-
-
-from agents.maingraph.agent import graph
from agents.layerfinder.utils.state import GraphState
+from agents.maingraph.agent import graph
from agents.maingraph.models import ModelFactory
-
-import json
+from fastapi import Body, FastAPI, HTTPException
+from fastapi.responses import JSONResponse, StreamingResponse
+from langfuse.callback import CallbackHandler
app = FastAPI()
langfuse_handler = CallbackHandler()
diff --git a/zeno/tools/charts/basic.py b/zeno/tools/charts/basic.py
index 89d81dc..bf7bf1b 100644
--- a/zeno/tools/charts/basic.py
+++ b/zeno/tools/charts/basic.py
@@ -20,9 +20,7 @@ class BarChartInput(BaseModel):
default=None,
description="Optional list of labels for each bar. If not provided, indices will be used.",
)
- title: str = Field(
- default="Bar Chart", description="Title of the bar chart"
- )
+ title: str = Field(default="Bar Chart", description="Title of the bar chart")
@tool("barchart-tool", args_schema=BarChartInput, return_direct=True)
diff --git a/zeno/tools/docretrieve/document_retrieve_tool.py b/zeno/tools/docretrieve/document_retrieve_tool.py
index 42c4d44..4fef1c6 100644
--- a/zeno/tools/docretrieve/document_retrieve_tool.py
+++ b/zeno/tools/docretrieve/document_retrieve_tool.py
@@ -1,8 +1,8 @@
+import os
+
from langchain.tools.retriever import create_retriever_tool
from langchain_chroma import Chroma
from langchain_ollama import OllamaEmbeddings
-import os
-
# Vector store
vectorstore = Chroma(
diff --git a/zeno/tools/glad/weekly_alerts_tool.py b/zeno/tools/glad/weekly_alerts_tool.py
index a97293d..5747165 100644
--- a/zeno/tools/glad/weekly_alerts_tool.py
+++ b/zeno/tools/glad/weekly_alerts_tool.py
@@ -20,9 +20,7 @@ class GladAlertsInput(BaseModel):
)
adm1: str = Field(description="Administrative level 1 ID")
adm2: str = Field(description="Administrative level 2 ID")
- year: int = Field(
- description="Year for which to fetch alerts", ge=2015, le=2024
- )
+ year: int = Field(description="Year for which to fetch alerts", ge=2015, le=2024)
week: Optional[int] = Field(
default=None,
description="Specific week number (1-52) to fetch. If not provided, returns all weeks.",
@@ -31,9 +29,7 @@ class GladAlertsInput(BaseModel):
)
-@tool(
- "glad-weekly-alerts-tool", args_schema=GladAlertsInput, return_direct=True
-)
+@tool("glad-weekly-alerts-tool", args_schema=GladAlertsInput, return_direct=True)
def glad_weekly_alerts_tool(
iso: str, adm1: str, adm2: str, year: int, week: Optional[int] = None
) -> str:
diff --git a/zeno/tools/layerretrieve/layer_retrieve_tool.py b/zeno/tools/layerretrieve/layer_retrieve_tool.py
index bdc7219..7079369 100644
--- a/zeno/tools/layerretrieve/layer_retrieve_tool.py
+++ b/zeno/tools/layerretrieve/layer_retrieve_tool.py
@@ -1,7 +1,7 @@
-from langchain.tools.retriever import create_retriever_tool
-from langchain_chroma import Chroma
import os
+from langchain.tools.retriever import create_retriever_tool
+from langchain_chroma import Chroma
from langchain_ollama.embeddings import OllamaEmbeddings
embedder = OllamaEmbeddings(
diff --git a/zeno/tools/location/location_matcher.py b/zeno/tools/location/location_matcher.py
index 4989a90..762ea99 100644
--- a/zeno/tools/location/location_matcher.py
+++ b/zeno/tools/location/location_matcher.py
@@ -1,248 +1,42 @@
-import pandas as pd
+import json
+from typing import List
+
+import geopandas as gpd
+from shapely import box
from thefuzz import fuzz
+NAME_COLS = ["NAME_1", "NAME_2", "NAME_3"]
+NR_OF_RESULTS = 3
+
+
+def fuzz_search(row: gpd.GeoSeries, query: str):
+ return sum([fuzz.ratio(row[name].lower(), query) for name in NAME_COLS])
+
class LocationMatcher:
- def __init__(self, csv_path):
+ def __init__(self, csv_path: str) -> None:
"""
Initialize the matcher with GADM CSV data
"""
- self.df = pd.read_csv(csv_path)
- self.df["full_name"] = (
- self.df["adm2_name"].fillna("")
- + " "
- + self.df["adm1_name"].fillna("")
- + " "
- + self.df["iso_name"].fillna("")
- ).str.strip()
+ # self.df = pd.read_csv(csv_path)
+ self.df = gpd.read_file(csv_path, layer="ADM_ADM_3")
+ self.df["full_name"] = self.df[NAME_COLS].agg(" ".join, axis=1)
- def find_matches(self, query, threshold=70):
+ def get_by_id(self, id: str) -> dict:
+ return json.loads(self.df[self.df.GID_3 == id].to_json())
+
+ def find_matches(self, query: str) -> List[str]:
"""
Find matching locations for a given query.
- Priority order: ADM2 > ADM1 > ISO
- Returns top 3 for ADM2 matches, all matches for ADM1 and ISO
+ Priority order: NAME_2 > NAME_1 > NAME_3
+ Returns top 3 for NAME_2 matches, all matches for NAME_1 and NAME_3
"""
query = query.lower().strip()
- query_parts = query.split()
- matches = []
-
- # 1. Try exact matches first with ADM2 > ADM1 > ISO priority
- exact_matches = self._find_exact_matches(query)
- if exact_matches:
- return self._filter_results_by_type(exact_matches)
-
- # 2. Try compound and fuzzy matching
- compound_matches = []
- if len(query_parts) > 1:
- compound_matches = self._find_compound_matches(
- query_parts, threshold
- )
- fuzzy_matches = self._find_fuzzy_matches(query, threshold)
-
- # Combine and deduplicate matches
- matches = compound_matches + fuzzy_matches
- unique_matches = self._deduplicate_matches(matches)
- sorted_matches = sorted(
- unique_matches, key=lambda x: x["score"], reverse=True
- )
-
- return self._filter_results_by_type(sorted_matches)
-
- def _filter_results_by_type(self, matches):
- """Filter results based on match type priority and count rules"""
- if not matches:
- return []
-
- # Group matches by type
- matches_by_type = {"adm2": [], "adm1": [], "iso": []}
-
- for match in matches:
- match_type = match["match_type"]
- if match_type in matches_by_type:
- matches_by_type[match_type].append(match)
-
- # Return based on priority and count rules
- if matches_by_type["adm2"]:
- return matches_by_type["adm2"][:3] # Top 3 ADM2 matches
- elif matches_by_type["adm1"]:
- return matches_by_type["adm1"] # All ADM1 matches
- elif matches_by_type["iso"]:
- return matches_by_type["iso"] # All ISO matches
- else:
- return matches[:3] # Top 3 for any other match types
-
- def _find_exact_matches(self, query):
- """Find exact matches in names with ADM2 > ADM1 > ISO priority"""
- # Check ADM2 names first
- exact_adm2 = self.df[self.df["adm2_name"].str.lower() == query]
- if not exact_adm2.empty:
- return self._format_results(exact_adm2, 100, "adm2")
-
- # Check ADM1 names next
- exact_adm1 = self.df[self.df["adm1_name"].str.lower() == query]
- if not exact_adm1.empty:
- return self._format_results(exact_adm1, 100, "adm1")
-
- # Check ISO names last
- exact_iso = self.df[self.df["iso_name"].str.lower() == query]
- if not exact_iso.empty:
- return self._format_results(exact_iso, 100, "iso")
-
- return []
-
- def _find_compound_matches(self, query_parts, threshold):
- """Find matches for compound queries"""
- matches = []
- for idx, row in self.df.iterrows():
- part_matches = []
- matched_levels = set()
- for part in query_parts:
- scores = {
- "adm2": fuzz.ratio(part, str(row["adm2_name"]).lower()),
- "adm1": fuzz.ratio(part, str(row["adm1_name"]).lower()),
- "iso": fuzz.ratio(part, str(row["iso_name"]).lower()),
- }
- best_score = max(scores.values())
- best_type = max(scores.items(), key=lambda x: x[1])[0]
- if best_score >= threshold:
- part_matches.append((best_score, best_type))
- matched_levels.add(best_type)
-
- if part_matches:
- avg_score = sum(score for score, _ in part_matches) / len(
- part_matches
- )
- if avg_score >= threshold:
- # Determine match type based on highest priority level matched
- match_type = (
- "adm2"
- if "adm2" in matched_levels
- else "adm1"
- if "adm1" in matched_levels
- else "iso"
- )
- matches.extend(
- self._format_results(
- self.df.iloc[[idx]], avg_score, match_type
- )
- )
- return matches
-
- def _find_fuzzy_matches(self, query, threshold):
- """Find fuzzy matches using string similarity with ADM2 > ADM1 > ISO priority"""
- matches = []
- for idx, row in self.df.iterrows():
- scores = {
- "adm2": fuzz.ratio(query, str(row["adm2_name"]).lower()),
- "adm1": fuzz.ratio(query, str(row["adm1_name"]).lower()),
- "iso": fuzz.ratio(query, str(row["iso_name"]).lower()),
- }
-
- # Find the best matching type based on priority and scores
- best_score = -1
- best_type = None
-
- # Check in priority order
- if scores["adm2"] >= threshold and scores["adm2"] > best_score:
- best_score = scores["adm2"]
- best_type = "adm2"
- elif scores["adm1"] >= threshold and scores["adm1"] > best_score:
- best_score = scores["adm1"]
- best_type = "adm1"
- elif scores["iso"] >= threshold and scores["iso"] > best_score:
- best_score = scores["iso"]
- best_type = "iso"
-
- if best_type:
- matches.extend(
- self._format_results(
- self.df.iloc[[idx]], best_score, best_type
- )
- )
- return matches
-
- def _deduplicate_matches(self, matches):
- """Remove duplicate matches, keeping the highest score"""
- seen = {}
- for match in matches:
- key = f"{match['iso']}_{match['adm1']}_{match['adm2']}"
- if key not in seen or seen[key]["score"] < match["score"]:
- seen[key] = match
- return list(seen.values())
-
- def _format_results(self, matches, scores, match_type):
- """Format matching results into a standardized output"""
- if isinstance(scores, (int, float)):
- scores = [scores] * len(matches)
-
- results = []
- for (_, row), score in zip(matches.iterrows(), scores):
- results.append(
- {
- "iso": row["iso"],
- "adm1": int(row["adm1"]),
- "adm2": int(row["adm2"]),
- "names": {
- "iso": row["iso_name"],
- "adm1": row["adm1_name"],
- "adm2": row["adm2_name"],
- },
- "score": score,
- "match_type": match_type,
- }
- )
- return results
-
-
-# Example usage with test cases
-if __name__ == "__main__":
- # Sample data
- matcher = LocationMatcher("data/gadm.csv")
-
- # Test queries demonstrating priority order
- test_queries = [
- # ADM2 level queries
- "san francisco",
- "manhattan",
- "greater london",
- "shenzhen",
- # Compound queries
- "paris france",
- "tokyo shibuya",
- "madrid spain",
- "moscow russia",
- # Variations and misspellings
- "sidney australia", # Misspelling of Sydney
- "bankok", # Misspelling of Bangkok
- "san fransisco", # Common misspelling
- "neu york", # German spelling
- # Partial matches
- "johannesburg gauteng",
- "toronto ontario canada",
- "cairo egypt",
- # Alternative forms
- "manhattan ny",
- "sf california",
- "london uk",
- # ISO level queries
- "india",
- "united states",
- # ADM1 level queries
- "california",
- "new york",
- "île de france", # Accent variation
- "sao paulo", # Missing accent
- ]
-
- for query in test_queries:
- print(f"\nQuery: {query}")
- matches = matcher.find_matches(query, threshold=60)
- print(f"Found {len(matches)} matches:")
- for match in matches:
- print(
- f"Match (score: {match['score']}, type: {match['match_type']}):"
- )
- print(f" ISO: {match['names']['iso']} ({match['iso']})")
- print(f" ADM1: {match['names']['adm1']} ({match['adm1']})")
- print(f" ADM2: {match['names']['adm2']} ({match['adm2']})")
- print("-" * 50)
+ self.df["score"] = self.df.apply(lambda x: fuzz_search(x, query), axis=1)
+ return self.df.sort_values("score", ascending=False)[:NR_OF_RESULTS]
+
+ def find_by_bbox(
+ self, xmin: float, ymin: float, xmax: float, ymax: float
+ ) -> List[str]:
+ matches = self.df.intersects(box(xmin, ymin, xmax, ymax))
+ return list(self.df[matches].GID_3)
diff --git a/zeno/tools/location/location_tool.py b/zeno/tools/location/location_tool.py
new file mode 100644
index 0000000..8887fc7
--- /dev/null
+++ b/zeno/tools/location/location_tool.py
@@ -0,0 +1,42 @@
+import json
+from typing import List
+
+from langchain_core.tools import tool
+from pydantic import BaseModel, Field
+
+from zeno.tools.location.location_matcher import LocationMatcher
+
+location_matcher = LocationMatcher("data/gadm41_PRT.gpkg")
+
+
+class LocationInput(BaseModel):
+ """Input schema for location finder tool"""
+
+ query: str = Field(
+ description="Name of the location to search for. Can be a city, region, or country name."
+ )
+
+
+@tool(
+ "location-tool",
+ args_schema=LocationInput,
+ return_direct=False,
+ response_format="content_and_artifact",
+)
+def location_tool(query: str) -> List[str]:
+ """Find locations and their administrative hierarchies given a place name.
+ Returns a list of IDs with matches at different administrative levels
+
+ Args:
+ query (str): Location name to search for
+
+ Returns:
+ matches (List[str]): ids of matching locations
+ """
+ print("---LOCATION-TOOL---")
+ try:
+ matches = location_matcher.find_matches(query)
+ except Exception as e:
+ return f"Error finding locations: {str(e)}"
+
+ return list(matches.GID_3), json.loads(matches.to_json())
diff --git a/zeno/tools/location/tool.py b/zeno/tools/location/tool.py
deleted file mode 100644
index c3a465f..0000000
--- a/zeno/tools/location/tool.py
+++ /dev/null
@@ -1,41 +0,0 @@
-from langchain_core.tools import tool
-from pydantic import BaseModel, Field
-
-from tools.location.location_matcher import LocationMatcher
-
-GADM_CSV_PATH = "data/gadm.csv"
-location_matcher = LocationMatcher(GADM_CSV_PATH)
-
-
-class LocationInput(BaseModel):
- """Input schema for location finder tool"""
-
- query: str = Field(
- description="Name of the location to search for. Can be a city, region, or country name."
- )
- threshold: int = Field(
- default=70,
- description="Minimum similarity score (0-100) to consider a match. Default is 70.",
- ge=0,
- le=100,
- )
-
-
-@tool("location-tool", args_schema=LocationInput, return_direct=False)
-def location_tool(query: str, threshold: int = 70) -> dict:
- """Find locations and their administrative hierarchies given a place name.
- Returns matches at different administrative levels (ADM2, ADM1, ISO) with their IDs and names.
-
- Args:
- query (str): Location name to search for
- threshold (int, optional): Minimum similarity score. Defaults to 70.
-
- Returns:
- dict: matching locations
- """
- print("---LOCATION-TOOL---")
- try:
- matches = location_matcher.find_matches(query, threshold=threshold)
- return matches
- except Exception as e:
- return f"Error finding locations: {str(e)}"