From 4918e5f917cb3f567d8d90d301e62b50f5d48aec Mon Sep 17 00:00:00 2001 From: Tom Pike Date: Fri, 21 Jun 2024 12:09:36 -0400 Subject: [PATCH] fix dependencies --- .readthedocs.yml | 2 +- .../tutorials/intro_tutorial.ipynb | 72595 ++++++++++++++++ docs/source/environment.yml | 2 - 3 files changed, 72596 insertions(+), 3 deletions(-) create mode 100644 docs/jupyter_execute/tutorials/intro_tutorial.ipynb diff --git a/.readthedocs.yml b/.readthedocs.yml index 14b3f784..adee8a89 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -7,7 +7,7 @@ version: 2 build: os: "ubuntu-22.04" tools: - python: "mambaforge-4.10" + python: "miniconda-latest" python: install: diff --git a/docs/jupyter_execute/tutorials/intro_tutorial.ipynb b/docs/jupyter_execute/tutorials/intro_tutorial.ipynb new file mode 100644 index 00000000..9dd80e66 --- /dev/null +++ b/docs/jupyter_execute/tutorials/intro_tutorial.ipynb @@ -0,0 +1,72595 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "60542812-8cbe-498b-b689-b0d01c80c148", + "metadata": { + "explanatory": true + }, + "source": [ + "#explanatory\n", + "\n", + "This cell imports the necessary libraries we will need for this demonstration\n", + "\n", + "* **random** is imported for ...\n", + "* **mesa** imports core mesa to give us basic agentbased model functionality\n", + "* **mesa_geo** imports GIS functionality for agent based models\n", + "* **mesa_geo.experimental** is a sub-module of `mesa_geo` that will will import as mge so we do not have to write out `mesa_geo.experimental` everytime" + ] + }, + { + "cell_type": "markdown", + "id": "e72b67b0-df4a-42b8-be21-207911e0d04d", + "metadata": {}, + "source": [ + "# Introductory Tutorial\n", + "\n", + "This tutorial introduces Mesa-Geo, a GIS integrated Agent Based model platform that is part of the [Mesa ABM Ecosystem](https://mesa.readthedocs.io/en/stable/) \n", + "\n", + "In this tutorial we will build a Geo-Schelling model, which takes the seminal [Schelling Segregation model](https://en.wikipedia.org/wiki/Schelling%27s_model_of_segregation) and replicates with the countries of Europe, were the countries \"move\" their preference similar to the Schelling Model. \n", + "\n", + "This tutorial also uses [Jupyter Bridge](https://pypi.org/project/jupyter-bridge/) so users can see more detailed explanations of each code cell if desired by clicking the book icon. " + ] + }, + { + "cell_type": "markdown", + "id": "b8230807-eeb3-45a9-a161-4474965fb64d", + "metadata": { + "explanatory": true + }, + "source": [ + "#explanatory \n", + "\n", + "This is only needed if running in Google Colab as mesa_geo is not part of Googles standard build" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "9d13ce10-1943-40ce-afdf-37f107c610ca", + "metadata": { + "has_explanation": false + }, + "outputs": [], + "source": [ + "# Run this cell if in Google Colab!\n", + "!pip install mesa_geo --quiet" + ] + }, + { + "cell_type": "markdown", + "id": "f42df443-f544-4bf8-bc6e-29c9ca6c3eae", + "metadata": { + "explanatory": true + }, + "source": [ + "#explanatory\n", + "\n", + "For the import cell we use three libraries: \n", + "\n", + "* **random** this is a standard python library and used in this model to randomize the country (agents) behavior and preferences\n", + "* **mesa** this is the core ABM library that provides basic ABM functionality for `mesa-geo`\n", + "* **mesa_geo** this library add GIS features to Mesa to allow for GIS integration into Agent Based Models\n", + "* **mesa_geo.visualization** is a sub_module of mesa_geo, we import this module to make the code more concise so we we do not have to type mg.visualization every time we use this visualization module" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "37528711-4873-42e7-be7f-926130026dd8", + "metadata": { + "has_explanation": true, + "jupyter": { + "source_hidden": true + } + }, + "outputs": [], + "source": [ + "import random\n", + "\n", + "import mesa \n", + "import mesa_geo as mg\n", + "import mesa_geo.visualization as mgv" + ] + }, + { + "cell_type": "markdown", + "id": "e5e2bee2-d440-43c7-81fb-01e6a817e5e5", + "metadata": {}, + "source": [ + "## Create the Agents\n", + "\n", + "The next cell creates the GeoAgents, in which European country is randomly assigned a preference of minority or majority and then if the agent is unhappy moves. " + ] + }, + { + "cell_type": "markdown", + "id": "36adf141-4f86-4c33-978a-954c4001d222", + "metadata": { + "explanatory": true + }, + "source": [ + "#explanatory\n", + "\n", + "**Agent Class and Initialization** \n", + "To create numerous agents with different attributes, we instantiate a Agent class (i.e. Schelling Agent), this is the common Mesa approach and it inherits from Mesa-Geo's GeoAgent class.\n", + "\n", + "The GeoAgent always has four attributes: \n", + "1. The unique ID\n", + "2. The model so the agents can reference it\n", + "3. The geometry\n", + "4. The projection or crs\n", + "\n", + "In this simulation there is one additonal attribute agent_type which identifies if the agent is a minority or majority agents.\n", + "\n", + "**Step Function**\n", + "The step function is Mesa syntax and required for each agent. In the model class, discussed next, the step function for each agent is called by the model step function and represents what each agent does for each time step. \n", + "\n", + "In this case the agent first identifies all its neighbors and determines if they are the same (minority or majority) if the neighbors who are not the same type as the agent are greater than those who are similar than the agent moves. \n", + "\n", + "If the number of neighbors who are similar is greater than those who are different than agent is happy and does not move. " + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "27cac12c-515e-4ef4-83cc-d06918921c70", + "metadata": { + "has_explanation": true, + "jupyter": { + "source_hidden": true + } + }, + "outputs": [], + "source": [ + "class SchellingAgent(mg.GeoAgent):\n", + " \"\"\"Schelling segregation agent.\"\"\"\n", + "\n", + " def __init__(self, unique_id, model, geometry, crs, agent_type=None):\n", + " \"\"\"Create a new Schelling agent.\n", + "\n", + " Args:\n", + " unique_id: Unique identifier for the agent.\n", + " agent_type: Indicator for the agent's type (minority=1, majority=0)\n", + " \"\"\"\n", + " super().__init__(unique_id, model, geometry, crs)\n", + " self.atype = agent_type\n", + "\n", + " def step(self):\n", + " \"\"\"Advance agent one step.\"\"\"\n", + " similar = 0\n", + " different = 0\n", + " neighbors = self.model.space.get_neighbors(self)\n", + " if neighbors:\n", + " for neighbor in neighbors:\n", + " if neighbor.atype is None:\n", + " continue\n", + " elif neighbor.atype == self.atype:\n", + " similar += 1\n", + " else:\n", + " different += 1\n", + "\n", + " # If unhappy, move:\n", + " if similar < different:\n", + " # Select an empty region\n", + " empties = [a for a in self.model.space.agents if a.atype is None]\n", + " # Switch atypes and add/remove from scheduler\n", + " new_region = random.choice(empties)\n", + " new_region.atype = self.atype\n", + " self.model.schedule.add(new_region)\n", + " self.atype = None\n", + " self.model.schedule.remove(self)\n", + " else:\n", + " self.model.happy += 1\n", + "\n", + " def __repr__(self):\n", + " return \"Agent \" + str(self.unique_id)" + ] + }, + { + "cell_type": "markdown", + "id": "6eac24f2-af00-40bd-b146-1be7a66b1644", + "metadata": {}, + "source": [ + "## Model Class\n", + "\n", + "This class initiates the model class, which acts as a \"manager\" for the simulation, it holds the geo-spatial space. It holds the schedule of agents and their order, and the data collector to collect information from the model." + ] + }, + { + "cell_type": "markdown", + "id": "e3053304-a512-425c-806f-e7ebf73e1d52", + "metadata": { + "explanatory": true + }, + "source": [ + "#explanatory\n", + "\n", + "The model class initiates the \"manager\" for the simulation. Initiatiang the initial parameters and inheriting core attributes from Mesa's models class. In this case there are three parameters, density of agents (how many of the existing countries are agents), what percent are minority, and whether or not to export the data. \n", + "\n", + "Then there are three main parts: \n", + "1. The schedule which in this case uses random activation, this is just a list of agent objects, who's order is randomly reordered after each step.\n", + "2. The space which uses geomesa space module and has a keyword argument of the projection conversion\n", + "3. The datacollector which in this case collects the number of agent who are happy with their location (neighbors are more similar than different)\n", + "\n", + "The model class step function then calls\n", + " * each agent's step through the `self.schedule.step()`\n", + " * the datacollector to collect each step `self.datacollector.collect(self)`" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "9c9a9738-7e8f-458c-b0aa-cfc69c04ee87", + "metadata": { + "has_explanation": true, + "jupyter": { + "source_hidden": true + } + }, + "outputs": [], + "source": [ + "class GeoSchelling(mesa.Model):\n", + " \"\"\"Model class for the Schelling segregation model.\"\"\"\n", + "\n", + " def __init__(self, density=0.6, minority_pc=0.2, export_data=False):\n", + " super().__init__()\n", + " self.density = density\n", + " self.minority_pc = minority_pc\n", + " self.export_data = export_data\n", + "\n", + " self.schedule = mesa.time.RandomActivation(self)\n", + " self.space = mg.GeoSpace(crs=\"EPSG:4326\", warn_crs_conversion=True)\n", + "\n", + " self.happy = 0\n", + " self.datacollector = mesa.DataCollector({\"happy\": \"happy\"})\n", + "\n", + " self.running = True\n", + "\n", + " # Set up the grid with patches for every NUTS region\n", + " ac = mg.AgentCreator(SchellingAgent, model=self)\n", + " agents = ac.from_file(\"data/nuts_rg_60M_2013_lvl_2.geojson\")\n", + " self.space.add_agents(agents)\n", + "\n", + " # Set up agents\n", + " for agent in agents:\n", + " if random.random() < self.density:\n", + " if random.random() < self.minority_pc:\n", + " agent.atype = 1\n", + " else:\n", + " agent.atype = 0\n", + " self.schedule.add(agent)\n", + "\n", + " def export_agents_to_file(self) -> None:\n", + " self.space.get_agents_as_GeoDataFrame(agent_cls=SchellingAgent).to_crs(\n", + " \"epsg:4326\"\n", + " ).to_file(\"data/schelling_agents.geojson\", driver=\"GeoJSON\")\n", + "\n", + " def step(self):\n", + " \"\"\"Run one step of the model.\n", + "\n", + " If All agents are happy, halt the model.\n", + " \"\"\"\n", + "\n", + " self.happy = 0 # Reset counter of happy agents\n", + " self.schedule.step()\n", + " self.datacollector.collect(self)\n", + "\n", + " if self.happy == self.schedule.get_agent_count():\n", + " self.running = False\n", + "\n", + " if not self.running and self.export_data:\n", + " self.export_agents_to_file()" + ] + }, + { + "cell_type": "markdown", + "id": "3ed4ea12-4417-476e-bf6c-4a5f95871005", + "metadata": {}, + "source": [ + "## Build the Visual\n", + "\n", + "This section of code set ups the conditions for drawing the agents and defining the model parameters. The next cell passes the `schelling_draw` function and model parameters into Mesa Geo's `GeoJupyterViz` so we can see a visual for our simulation. " + ] + }, + { + "cell_type": "markdown", + "id": "8b3bac67-45d6-42ca-8e40-b8f44d749b3a", + "metadata": { + "explanatory": true + }, + "source": [ + "#explanatory\n", + "\n", + "Mesa-Geo's `GeoJupyterviz`requires users to pass in a function through `agent_portrayal` for agent visualization. This function then allows the agent to updates its representation based on user settings. In this case, the agent's color updates a dictionary that determines its color with the key \"color\" and the value being the agents color based on their affiliation (minority, majority, or none). \n", + "\n", + "`model_params` is then a dictionary with the parameters for the geoschelling model. `GeoSchelling` then takes three parameters and these parameters use Mesa's `UserParam` module to create tools users can employ to set model parameters. \n", + "1. \"density\" is a slider tool (\"SliderFloat\") that takes a value from 0.0 to 1.0 with a step or accuracy at one tenth\n", + "2. \"minority_pc\" is also a slider tool (\"SliderFloat\") that the minority percent which takes a value of 0.0 to 1.0 with an accuracy of 5- 100th of a percent\n", + "3. \"export_data\" is then a binary tool (\"checkbox\") that allows user to turn the value to True by checking the book and exporting the data" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "0bf74b4c-36ab-416c-a4db-ab5104189d92", + "metadata": { + "has_explanation": true, + "jupyter": { + "source_hidden": true + } + }, + "outputs": [], + "source": [ + "def schelling_draw(agent):\n", + " \"\"\"\n", + " Portrayal Method for canvas\n", + " \"\"\"\n", + " portrayal = {}\n", + " if agent.atype is None:\n", + " portrayal[\"color\"] = \"Grey\"\n", + " elif agent.atype == 0:\n", + " portrayal[\"color\"] = \"Orange\"\n", + " else:\n", + " portrayal[\"color\"] = \"Blue\"\n", + " return portrayal\n", + "\n", + "\n", + "model_params = {\n", + " \"density\": {\n", + " \"type\": \"SliderFloat\",\n", + " \"value\": 0.6,\n", + " \"label\": \"Population Density\",\n", + " \"min\": 0.0,\n", + " \"max\": 0.9, #there must be an empty space for the agent to move\n", + " \"step\": 0.1,\n", + " },\n", + " \"minority_pc\": {\n", + " \"type\": \"SliderFloat\",\n", + " \"value\": 0.2,\n", + " \"label\": \"Fraction Minority\",\n", + " \"min\": 0.0,\n", + " \"max\": 1.0,\n", + " \"step\": 0.05,\n", + " },\n", + " \"export_data\": {\n", + " \"type\": \"Checkbox\",\n", + " \"value\": False,\n", + " \"description\": \"Export Data\",\n", + " \"disabled\": False,\n", + " },\n", + "}" + ] + }, + { + "cell_type": "markdown", + "id": "d247f4be-6edd-42b5-8e1a-88ce3604ec09", + "metadata": {}, + "source": [ + "## Run the Model" + ] + }, + { + "cell_type": "markdown", + "id": "e6e26b92-5ca8-4038-90a0-259f11dac69a", + "metadata": { + "explanatory": true + }, + "source": [ + "#explanatory\n", + "\n", + "This cell then uses the previous cell to create a visualization of the model. In this case there are seven parameters. Two parameters being required. \n", + "\n", + "1. model: this passes in the model class which in this case is the `GeoSchelling` class model.\n", + "2. model_params: this takes the dictionary we built in the previous cell and passes in the parameters with the model types\n", + "3. measures: this is a kwarg (key word argument) which is not required but takes a list of measures users want to observe in this case the happy metric\n", + "4. name: also a kwarg for the name which shows in the model bar\n", + "5. agent_portrayal: a kwarg that allows us to pass in the function `schelling_draw` which determines agent representation based on their specific condition\n", + "6. zoom: a kwarg for the mapping function which determines what level the user should zoom on the map and takes an integer\n", + "7. center_point: a kwarg for telling the visualization what center point to use when portraying the map " + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "c8a2533e-95ba-4a2b-b21a-56e05fe3b7b2", + "metadata": { + "has_explanation": true, + "jupyter": { + "source_hidden": true + } + }, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "242350436bf5497eaae91e9a46501313", + "version_major": 2, + "version_minor": 0 + }, + "text/html": [ + "Cannot show widget. You probably want to rerun the code cell above (Click in the code cell, and press Shift+Enter +)." + ], + "text/plain": [ + "Cannot show ipywidgets in text" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "page = mgv.GeoJupyterViz(\n", + " GeoSchelling,\n", + " model_params,\n", + " measures=[\"happy\"],\n", + " name=\"Geo-Schelling Model\",\n", + " agent_portrayal=schelling_draw,\n", + " zoom=3,\n", + " center_point=[52, 12],\n", + ")\n", + "# This is required to render the visualization in the Jupyter notebook\n", + "page" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7cbb2272-b33d-4f1d-9c90-1abbdc876723", + "metadata": { + "has_explanation": false, + "jupyter": { + "source_hidden": true + } + }, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.12.3" + }, + "widgets": { + "application/vnd.jupyter.widget-state+json": { + "state": { + "04c33fba484b4215b2bc247883baf2de": { + "model_module": "jupyter-vue", + "model_module_version": "^1.11.1", + "model_name": "ForceLoadModel", + "state": { + "_dom_classes": [], + "_model_module": "jupyter-vue", + "_model_module_version": "^1.11.1", + "_model_name": "ForceLoadModel", + "_view_count": null, + "_view_module": null, + "_view_module_version": "", + "_view_name": null, + "layout": "IPY_MODEL_def9f8ad7155482c8073dea9a7a9f6ce", + "tabbable": null, + "tooltip": null + } + }, + "04c910353a924214bacb4e1e35e79474": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "DescriptionStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "description_width": "" + } + }, + "06b6ad6747b84605b6795a2cab1e822e": { + "model_module": "jupyter-leaflet", + "model_module_version": "^0.19", + "model_name": "LeafletMapStyleModel", + "state": { + "_model_module": "jupyter-leaflet", + "_model_module_version": "^0.19", + "_model_name": "LeafletMapStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "cursor": "move" + } + }, + "06dcc8456b904c35a7268a43023e8504": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SpacerModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SpacerModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [], + "class_": null, + "layout": null, + "slot": null, + "style_": null, + "tabbable": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [] + } + }, + "07283376f334443c9be052513e176d23": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "PlayModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "PlayModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "PlayView", + "description": "", + "description_allow_html": false, + "disabled": false, + "interval": 150, + "layout": "IPY_MODEL_66854bbac2964184aa893013eae6acf8", + "max": 100, + "min": 0, + "playing": false, + "repeat": true, + "show_repeat": false, + "step": 1, + "style": "IPY_MODEL_04c910353a924214bacb4e1e35e79474", + "tabbable": null, + "tooltip": null, + "value": 0 + } + }, + "08bf120477fe4a07adb300ab1ef7f9a6": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "IconModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "IconModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [ + "mdi-fullscreen" + ], + "class_": null, + "color": null, + "dark": null, + "dense": null, + "disabled": null, + "large": null, + "layout": null, + "left": false, + "light": null, + "right": null, + "size": null, + "slot": null, + "small": null, + "style_": null, + "tabbable": null, + "tag": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "x_large": null, + "x_small": null + } + }, + "0f3f3d9423e945a4a22b4369668c2760": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SheetModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SheetModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [ + "IPY_MODEL_102f6998d8aa482398a45d672397c451" + ], + "class_": "d-flex ma-0", + "color": null, + "dark": null, + "elevation": 0.0, + "height": null, + "layout": null, + "light": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "slot": null, + "style_": "flex-direction: row; align-items: stretch; justify-content: space-between; column-gap: 12px;flex-grow:1;;", + "tabbable": null, + "tag": null, + "tile": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "width": null + } + }, + "102f6998d8aa482398a45d672397c451": { + "buffers": [ + { + "data": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIKICAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgd2lkdGg9IjQ2MC44cHQiIGhlaWdodD0iMzQ1LjZwdCIgdmlld0JveD0iMCAwIDQ2MC44IDM0NS42IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSI+CiA8bWV0YWRhdGE+CiAgPHJkZjpSREYgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICA8Y2M6V29yaz4KICAgIDxkYzp0eXBlIHJkZjpyZXNvdXJjZT0iaHR0cDovL3B1cmwub3JnL2RjL2RjbWl0eXBlL1N0aWxsSW1hZ2UiLz4KICAgIDxkYzpkYXRlPjIwMjQtMDYtMjFUMTI6MDc6NDUuNTkyNDE4PC9kYzpkYXRlPgogICAgPGRjOmZvcm1hdD5pbWFnZS9zdmcreG1sPC9kYzpmb3JtYXQ+CiAgICA8ZGM6Y3JlYXRvcj4KICAgICA8Y2M6QWdlbnQ+CiAgICAgIDxkYzp0aXRsZT5NYXRwbG90bGliIHYzLjkuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy88L2RjOnRpdGxlPgogICAgIDwvY2M6QWdlbnQ+CiAgICA8L2RjOmNyZWF0b3I+CiAgIDwvY2M6V29yaz4KICA8L3JkZjpSREY+CiA8L21ldGFkYXRhPgogPGRlZnM+CiAgPHN0eWxlIHR5cGU9InRleHQvY3NzIj4qe3N0cm9rZS1saW5lam9pbjogcm91bmQ7IHN0cm9rZS1saW5lY2FwOiBidXR0fTwvc3R5bGU+CiA8L2RlZnM+CiA8ZyBpZD0iZmlndXJlXzEiPgogIDxnIGlkPSJwYXRjaF8xIj4KICAgPHBhdGggZD0iTSAwIDM0NS42IApMIDQ2MC44IDM0NS42IApMIDQ2MC44IDAgCkwgMCAwIAp6CiIgc3R5bGU9ImZpbGw6ICNmZmZmZmYiLz4KICA8L2c+CiAgPGcgaWQ9ImF4ZXNfMSI+CiAgIDxnIGlkPSJwYXRjaF8yIj4KICAgIDxwYXRoIGQ9Ik0gNTcuNiAzMDcuNTg0IApMIDQxNC43MiAzMDcuNTg0IApMIDQxNC43MiA0MS40NzIgCkwgNTcuNiA0MS40NzIgCnoKIiBzdHlsZT0iZmlsbDogI2ZmZmZmZiIvPgogICA8L2c+CiAgIDxnIGlkPSJtYXRwbG90bGliLmF4aXNfMSI+CiAgICA8ZyBpZD0ieHRpY2tfMSI+CiAgICAgPGcgaWQ9ImxpbmUyZF8xIj4KICAgICAgPGRlZnM+CiAgICAgICA8cGF0aCBpZD0ibTYwOTFiZDM4ZTEiIGQ9Ik0gMCAwIApMIDAgMy41IAoiIHN0eWxlPSJzdHJva2U6ICMwMDAwMDA7IHN0cm9rZS13aWR0aDogMC44Ii8+CiAgICAgIDwvZGVmcz4KICAgICAgPGc+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNtNjA5MWJkMzhlMSIgeD0iOTAuMDY1NDU1IiB5PSIzMDcuNTg0IiBzdHlsZT0ic3Ryb2tlOiAjMDAwMDAwOyBzdHJva2Utd2lkdGg6IDAuOCIvPgogICAgICA8L2c+CiAgICAgPC9nPgogICAgIDxnIGlkPSJ0ZXh0XzEiPgogICAgICA8IS0tIOKIkjAuMDQ1IC0tPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg3MS41NjE1NDggMzIyLjE4MjQzNykgc2NhbGUoMC4xIC0wLjEpIj4KICAgICAgIDxkZWZzPgogICAgICAgIDxwYXRoIGlkPSJEZWphVnVTYW5zLTIyMTIiIGQ9Ik0gNjc4IDIyNzIgCkwgNDY4NCAyMjcyIApMIDQ2ODQgMTc0MSAKTCA2NzggMTc0MSAKTCA2NzggMjI3MiAKegoiIHRyYW5zZm9ybT0ic2NhbGUoMC4wMTU2MjUpIi8+CiAgICAgICAgPHBhdGggaWQ9IkRlamFWdVNhbnMtMzAiIGQ9Ik0gMjAzNCA0MjUwIApRIDE1NDcgNDI1MCAxMzAxIDM3NzAgClEgMTA1NiAzMjkxIDEwNTYgMjMyOCAKUSAxMDU2IDEzNjkgMTMwMSA4ODkgClEgMTU0NyA0MDkgMjAzNCA0MDkgClEgMjUyNSA0MDkgMjc3MCA4ODkgClEgMzAxNiAxMzY5IDMwMTYgMjMyOCAKUSAzMDE2IDMyOTEgMjc3MCAzNzcwIApRIDI1MjUgNDI1MCAyMDM0IDQyNTAgCnoKTSAyMDM0IDQ3NTAgClEgMjgxOSA0NzUwIDMyMzMgNDEyOSAKUSAzNjQ3IDM1MDkgMzY0NyAyMzI4IApRIDM2NDcgMTE1MCAzMjMzIDUyOSAKUSAyODE5IC05MSAyMDM0IC05MSAKUSAxMjUwIC05MSA4MzYgNTI5IApRIDQyMiAxMTUwIDQyMiAyMzI4IApRIDQyMiAzNTA5IDgzNiA0MTI5IApRIDEyNTAgNDc1MCAyMDM0IDQ3NTAgCnoKIiB0cmFuc2Zvcm09InNjYWxlKDAuMDE1NjI1KSIvPgogICAgICAgIDxwYXRoIGlkPSJEZWphVnVTYW5zLTJlIiBkPSJNIDY4NCA3OTQgCkwgMTM0NCA3OTQgCkwgMTM0NCAwIApMIDY4NCAwIApMIDY4NCA3OTQgCnoKIiB0cmFuc2Zvcm09InNjYWxlKDAuMDE1NjI1KSIvPgogICAgICAgIDxwYXRoIGlkPSJEZWphVnVTYW5zLTM0IiBkPSJNIDI0MTkgNDExNiAKTCA4MjUgMTYyNSAKTCAyNDE5IDE2MjUgCkwgMjQxOSA0MTE2IAp6Ck0gMjI1MyA0NjY2IApMIDMwNDcgNDY2NiAKTCAzMDQ3IDE2MjUgCkwgMzcxMyAxNjI1IApMIDM3MTMgMTEwMCAKTCAzMDQ3IDExMDAgCkwgMzA0NyAwIApMIDI0MTkgMCAKTCAyNDE5IDExMDAgCkwgMzEzIDExMDAgCkwgMzEzIDE3MDkgCkwgMjI1MyA0NjY2IAp6CiIgdHJhbnNmb3JtPSJzY2FsZSgwLjAxNTYyNSkiLz4KICAgICAgICA8cGF0aCBpZD0iRGVqYVZ1U2Fucy0zNSIgZD0iTSA2OTEgNDY2NiAKTCAzMTY5IDQ2NjYgCkwgMzE2OSA0MTM0IApMIDEyNjkgNDEzNCAKTCAxMjY5IDI5OTEgClEgMTQwNiAzMDM4IDE1NDMgMzA2MSAKUSAxNjgxIDMwODQgMTgxOSAzMDg0IApRIDI2MDAgMzA4NCAzMDU2IDI2NTYgClEgMzUxMyAyMjI4IDM1MTMgMTQ5NyAKUSAzNTEzIDc0NCAzMDQ0IDMyNiAKUSAyNTc1IC05MSAxNzIyIC05MSAKUSAxNDI4IC05MSAxMTIzIC00MSAKUSA4MTkgOSA0OTQgMTA5IApMIDQ5NCA3NDQgClEgNzc1IDU5MSAxMDc1IDUxNiAKUSAxMzc1IDQ0MSAxNzA5IDQ0MSAKUSAyMjUwIDQ0MSAyNTY1IDcyNSAKUSAyODgxIDEwMDkgMjg4MSAxNDk3IApRIDI4ODEgMTk4NCAyNTY1IDIyNjggClEgMjI1MCAyNTUzIDE3MDkgMjU1MyAKUSAxNDU2IDI1NTMgMTIwNCAyNDk3IApRIDk1MyAyNDQxIDY5MSAyMzIyIApMIDY5MSA0NjY2IAp6CiIgdHJhbnNmb3JtPSJzY2FsZSgwLjAxNTYyNSkiLz4KICAgICAgIDwvZGVmcz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMjIxMiIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIgeD0iODMuNzg5MDYyIi8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTJlIiB4PSIxNDcuNDEyMTA5Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIiB4PSIxNzkuMTk5MjE5Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTM0IiB4PSIyNDIuODIyMjY2Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTM1IiB4PSIzMDYuNDQ1MzEyIi8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyBpZD0ieHRpY2tfMiI+CiAgICAgPGcgaWQ9ImxpbmUyZF8yIj4KICAgICAgPGc+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNtNjA5MWJkMzhlMSIgeD0iMTM4Ljc2MzYzNiIgeT0iMzA3LjU4NCIgc3R5bGU9InN0cm9rZTogIzAwMDAwMDsgc3Ryb2tlLXdpZHRoOiAwLjgiLz4KICAgICAgPC9nPgogICAgIDwvZz4KICAgICA8ZyBpZD0idGV4dF8yIj4KICAgICAgPCEtLSDiiJIwLjAzMCAtLT4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIwLjI1OTczIDMyMi4xODI0MzcpIHNjYWxlKDAuMSAtMC4xKSI+CiAgICAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBpZD0iRGVqYVZ1U2Fucy0zMyIgZD0iTSAyNTk3IDI1MTYgClEgMzA1MCAyNDE5IDMzMDQgMjExMiAKUSAzNTU5IDE4MDYgMzU1OSAxMzU2IApRIDM1NTkgNjY2IDMwODQgMjg3IApRIDI2MDkgLTkxIDE3MzQgLTkxIApRIDE0NDEgLTkxIDExMzAgLTMzIApRIDgxOSAyNSA0ODggMTQxIApMIDQ4OCA3NTAgClEgNzUwIDU5NyAxMDYyIDUxOSAKUSAxMzc1IDQ0MSAxNzE2IDQ0MSAKUSAyMzA5IDQ0MSAyNjIwIDY3NSAKUSAyOTMxIDkwOSAyOTMxIDEzNTYgClEgMjkzMSAxNzY5IDI2NDIgMjAwMSAKUSAyMzUzIDIyMzQgMTgzOCAyMjM0IApMIDEyOTQgMjIzNCAKTCAxMjk0IDI3NTMgCkwgMTg2MyAyNzUzIApRIDIzMjggMjc1MyAyNTc1IDI5MzkgClEgMjgyMiAzMTI1IDI4MjIgMzQ3NSAKUSAyODIyIDM4MzQgMjU2NyA0MDI2IApRIDIzMTMgNDIxOSAxODM4IDQyMTkgClEgMTU3OCA0MjE5IDEyODEgNDE2MiAKUSA5ODQgNDEwNiA2MjggMzk4OCAKTCA2MjggNDU1MCAKUSA5ODggNDY1MCAxMzAyIDQ3MDAgClEgMTYxNiA0NzUwIDE4OTQgNDc1MCAKUSAyNjEzIDQ3NTAgMzAzMSA0NDIzIApRIDM0NTAgNDA5NyAzNDUwIDM1NDEgClEgMzQ1MCAzMTUzIDMyMjggMjg4NiAKUSAzMDA2IDI2MTkgMjU5NyAyNTE2IAp6CiIgdHJhbnNmb3JtPSJzY2FsZSgwLjAxNTYyNSkiLz4KICAgICAgIDwvZGVmcz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMjIxMiIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIgeD0iODMuNzg5MDYyIi8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTJlIiB4PSIxNDcuNDEyMTA5Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIiB4PSIxNzkuMTk5MjE5Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMzIiB4PSIyNDIuODIyMjY2Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIiB4PSIzMDYuNDQ1MzEyIi8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyBpZD0ieHRpY2tfMyI+CiAgICAgPGcgaWQ9ImxpbmUyZF8zIj4KICAgICAgPGc+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNtNjA5MWJkMzhlMSIgeD0iMTg3LjQ2MTgxOCIgeT0iMzA3LjU4NCIgc3R5bGU9InN0cm9rZTogIzAwMDAwMDsgc3Ryb2tlLXdpZHRoOiAwLjgiLz4KICAgICAgPC9nPgogICAgIDwvZz4KICAgICA8ZyBpZD0idGV4dF8zIj4KICAgICAgPCEtLSDiiJIwLjAxNSAtLT4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTY4Ljk1NzkxMiAzMjIuMTgyNDM3KSBzY2FsZSgwLjEgLTAuMSkiPgogICAgICAgPGRlZnM+CiAgICAgICAgPHBhdGggaWQ9IkRlamFWdVNhbnMtMzEiIGQ9Ik0gNzk0IDUzMSAKTCAxODI1IDUzMSAKTCAxODI1IDQwOTEgCkwgNzAzIDM4NjYgCkwgNzAzIDQ0NDEgCkwgMTgxOSA0NjY2IApMIDI0NTAgNDY2NiAKTCAyNDUwIDUzMSAKTCAzNDgxIDUzMSAKTCAzNDgxIDAgCkwgNzk0IDAgCkwgNzk0IDUzMSAKegoiIHRyYW5zZm9ybT0ic2NhbGUoMC4wMTU2MjUpIi8+CiAgICAgICA8L2RlZnM+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTIyMTIiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiIHg9IjgzLjc4OTA2MiIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0yZSIgeD0iMTQ3LjQxMjEwOSIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIgeD0iMTc5LjE5OTIxOSIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMSIgeD0iMjQyLjgyMjI2NiIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zNSIgeD0iMzA2LjQ0NTMxMiIvPgogICAgICA8L2c+CiAgICAgPC9nPgogICAgPC9nPgogICAgPGcgaWQ9Inh0aWNrXzQiPgogICAgIDxnIGlkPSJsaW5lMmRfNCI+CiAgICAgIDxnPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjbTYwOTFiZDM4ZTEiIHg9IjIzNi4xNiIgeT0iMzA3LjU4NCIgc3R5bGU9InN0cm9rZTogIzAwMDAwMDsgc3Ryb2tlLXdpZHRoOiAwLjgiLz4KICAgICAgPC9nPgogICAgIDwvZz4KICAgICA8ZyBpZD0idGV4dF80Ij4KICAgICAgPCEtLSAwLjAwMCAtLT4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjIxLjg0NTkzNyAzMjIuMTgyNDM3KSBzY2FsZSgwLjEgLTAuMSkiPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0yZSIgeD0iNjMuNjIzMDQ3Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIiB4PSI5NS40MTAxNTYiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiIHg9IjE1OS4wMzMyMDMiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiIHg9IjIyMi42NTYyNSIvPgogICAgICA8L2c+CiAgICAgPC9nPgogICAgPC9nPgogICAgPGcgaWQ9Inh0aWNrXzUiPgogICAgIDxnIGlkPSJsaW5lMmRfNSI+CiAgICAgIDxnPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjbTYwOTFiZDM4ZTEiIHg9IjI4NC44NTgxODIiIHk9IjMwNy41ODQiIHN0eWxlPSJzdHJva2U6ICMwMDAwMDA7IHN0cm9rZS13aWR0aDogMC44Ii8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICAgPGcgaWQ9InRleHRfNSI+CiAgICAgIDwhLS0gMC4wMTUgLS0+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI3MC41NDQxMTkgMzIyLjE4MjQzNykgc2NhbGUoMC4xIC0wLjEpIj4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMmUiIHg9IjYzLjYyMzA0NyIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIgeD0iOTUuNDEwMTU2Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMxIiB4PSIxNTkuMDMzMjAzIi8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTM1IiB4PSIyMjIuNjU2MjUiLz4KICAgICAgPC9nPgogICAgIDwvZz4KICAgIDwvZz4KICAgIDxnIGlkPSJ4dGlja182Ij4KICAgICA8ZyBpZD0ibGluZTJkXzYiPgogICAgICA8Zz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI202MDkxYmQzOGUxIiB4PSIzMzMuNTU2MzY0IiB5PSIzMDcuNTg0IiBzdHlsZT0ic3Ryb2tlOiAjMDAwMDAwOyBzdHJva2Utd2lkdGg6IDAuOCIvPgogICAgICA8L2c+CiAgICAgPC9nPgogICAgIDxnIGlkPSJ0ZXh0XzYiPgogICAgICA8IS0tIDAuMDMwIC0tPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzMTkuMjQyMzAxIDMyMi4xODI0MzcpIHNjYWxlKDAuMSAtMC4xKSI+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIi8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTJlIiB4PSI2My42MjMwNDciLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiIHg9Ijk1LjQxMDE1NiIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMyIgeD0iMTU5LjAzMzIwMyIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIgeD0iMjIyLjY1NjI1Ii8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyBpZD0ieHRpY2tfNyI+CiAgICAgPGcgaWQ9ImxpbmUyZF83Ij4KICAgICAgPGc+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNtNjA5MWJkMzhlMSIgeD0iMzgyLjI1NDU0NSIgeT0iMzA3LjU4NCIgc3R5bGU9InN0cm9rZTogIzAwMDAwMDsgc3Ryb2tlLXdpZHRoOiAwLjgiLz4KICAgICAgPC9nPgogICAgIDwvZz4KICAgICA8ZyBpZD0idGV4dF83Ij4KICAgICAgPCEtLSAwLjA0NSAtLT4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzY3Ljk0MDQ4MyAzMjIuMTgyNDM3KSBzY2FsZSgwLjEgLTAuMSkiPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0yZSIgeD0iNjMuNjIzMDQ3Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIiB4PSI5NS40MTAxNTYiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzQiIHg9IjE1OS4wMzMyMDMiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzUiIHg9IjIyMi42NTYyNSIvPgogICAgICA8L2c+CiAgICAgPC9nPgogICAgPC9nPgogICA8L2c+CiAgIDxnIGlkPSJtYXRwbG90bGliLmF4aXNfMiI+CiAgICA8ZyBpZD0ieXRpY2tfMSI+CiAgICAgPGcgaWQ9ImxpbmUyZF84Ij4KICAgICAgPGRlZnM+CiAgICAgICA8cGF0aCBpZD0ibWE0MWQ5OTA1YTUiIGQ9Ik0gMCAwIApMIC0zLjUgMCAKIiBzdHlsZT0ic3Ryb2tlOiAjMDAwMDAwOyBzdHJva2Utd2lkdGg6IDAuOCIvPgogICAgICA8L2RlZnM+CiAgICAgIDxnPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjbWE0MWQ5OTA1YTUiIHg9IjU3LjYiIHk9IjI3MS4yOTYiIHN0eWxlPSJzdHJva2U6ICMwMDAwMDA7IHN0cm9rZS13aWR0aDogMC44Ii8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICAgPGcgaWQ9InRleHRfOCI+CiAgICAgIDwhLS0g4oiSMC4wNCAtLT4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuOTU0Njg3IDI3NS4wOTUyMTkpIHNjYWxlKDAuMSAtMC4xKSI+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTIyMTIiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiIHg9IjgzLjc4OTA2MiIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0yZSIgeD0iMTQ3LjQxMjEwOSIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIgeD0iMTc5LjE5OTIxOSIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zNCIgeD0iMjQyLjgyMjI2NiIvPgogICAgICA8L2c+CiAgICAgPC9nPgogICAgPC9nPgogICAgPGcgaWQ9Inl0aWNrXzIiPgogICAgIDxnIGlkPSJsaW5lMmRfOSI+CiAgICAgIDxnPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjbWE0MWQ5OTA1YTUiIHg9IjU3LjYiIHk9IjIyMi45MTIiIHN0eWxlPSJzdHJva2U6ICMwMDAwMDA7IHN0cm9rZS13aWR0aDogMC44Ii8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICAgPGcgaWQ9InRleHRfOSI+CiAgICAgIDwhLS0g4oiSMC4wMiAtLT4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuOTU0Njg3IDIyNi43MTEyMTkpIHNjYWxlKDAuMSAtMC4xKSI+CiAgICAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBpZD0iRGVqYVZ1U2Fucy0zMiIgZD0iTSAxMjI4IDUzMSAKTCAzNDMxIDUzMSAKTCAzNDMxIDAgCkwgNDY5IDAgCkwgNDY5IDUzMSAKUSA4MjggOTAzIDE0NDggMTUyOSAKUSAyMDY5IDIxNTYgMjIyOCAyMzM4IApRIDI1MzEgMjY3OCAyNjUxIDI5MTQgClEgMjc3MiAzMTUwIDI3NzIgMzM3OCAKUSAyNzcyIDM3NTAgMjUxMSAzOTg0IApRIDIyNTAgNDIxOSAxODMxIDQyMTkgClEgMTUzNCA0MjE5IDEyMDQgNDExNiAKUSA4NzUgNDAxMyA1MDAgMzgwMyAKTCA1MDAgNDQ0MSAKUSA4ODEgNDU5NCAxMjEyIDQ2NzIgClEgMTU0NCA0NzUwIDE4MTkgNDc1MCAKUSAyNTQ0IDQ3NTAgMjk3NSA0Mzg3IApRIDM0MDYgNDAyNSAzNDA2IDM0MTkgClEgMzQwNiAzMTMxIDMyOTggMjg3MyAKUSAzMTkxIDI2MTYgMjkwNiAyMjY2IApRIDI4MjggMjE3NSAyNDA5IDE3NDIgClEgMTk5MSAxMzA5IDEyMjggNTMxIAp6CiIgdHJhbnNmb3JtPSJzY2FsZSgwLjAxNTYyNSkiLz4KICAgICAgIDwvZGVmcz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMjIxMiIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIgeD0iODMuNzg5MDYyIi8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTJlIiB4PSIxNDcuNDEyMTA5Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIiB4PSIxNzkuMTk5MjE5Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMyIiB4PSIyNDIuODIyMjY2Ii8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyBpZD0ieXRpY2tfMyI+CiAgICAgPGcgaWQ9ImxpbmUyZF8xMCI+CiAgICAgIDxnPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjbWE0MWQ5OTA1YTUiIHg9IjU3LjYiIHk9IjE3NC41MjgiIHN0eWxlPSJzdHJva2U6ICMwMDAwMDA7IHN0cm9rZS13aWR0aDogMC44Ii8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICAgPGcgaWQ9InRleHRfMTAiPgogICAgICA8IS0tIDAuMDAgLS0+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI4LjMzNDM3NSAxNzguMzI3MjE5KSBzY2FsZSgwLjEgLTAuMSkiPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0yZSIgeD0iNjMuNjIzMDQ3Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIiB4PSI5NS40MTAxNTYiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiIHg9IjE1OS4wMzMyMDMiLz4KICAgICAgPC9nPgogICAgIDwvZz4KICAgIDwvZz4KICAgIDxnIGlkPSJ5dGlja180Ij4KICAgICA8ZyBpZD0ibGluZTJkXzExIj4KICAgICAgPGc+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNtYTQxZDk5MDVhNSIgeD0iNTcuNiIgeT0iMTI2LjE0NCIgc3R5bGU9InN0cm9rZTogIzAwMDAwMDsgc3Ryb2tlLXdpZHRoOiAwLjgiLz4KICAgICAgPC9nPgogICAgIDwvZz4KICAgICA8ZyBpZD0idGV4dF8xMSI+CiAgICAgIDwhLS0gMC4wMiAtLT4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjguMzM0Mzc1IDEyOS45NDMyMTkpIHNjYWxlKDAuMSAtMC4xKSI+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIi8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTJlIiB4PSI2My42MjMwNDciLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiIHg9Ijk1LjQxMDE1NiIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMiIgeD0iMTU5LjAzMzIwMyIvPgogICAgICA8L2c+CiAgICAgPC9nPgogICAgPC9nPgogICAgPGcgaWQ9Inl0aWNrXzUiPgogICAgIDxnIGlkPSJsaW5lMmRfMTIiPgogICAgICA8Zz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI21hNDFkOTkwNWE1IiB4PSI1Ny42IiB5PSI3Ny43NiIgc3R5bGU9InN0cm9rZTogIzAwMDAwMDsgc3Ryb2tlLXdpZHRoOiAwLjgiLz4KICAgICAgPC9nPgogICAgIDwvZz4KICAgICA8ZyBpZD0idGV4dF8xMiI+CiAgICAgIDwhLS0gMC4wNCAtLT4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjguMzM0Mzc1IDgxLjU1OTIxOSkgc2NhbGUoMC4xIC0wLjEpIj4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMmUiIHg9IjYzLjYyMzA0NyIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIgeD0iOTUuNDEwMTU2Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTM0IiB4PSIxNTkuMDMzMjAzIi8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyBpZD0idGV4dF8xMyI+CiAgICAgPCEtLSBoYXBweSAtLT4KICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMy44NzUgMTkwLjA2ODYyNSkgcm90YXRlKC05MCkgc2NhbGUoMC4xIC0wLjEpIj4KICAgICAgPGRlZnM+CiAgICAgICA8cGF0aCBpZD0iRGVqYVZ1U2Fucy02OCIgZD0iTSAzNTEzIDIxMTMgCkwgMzUxMyAwIApMIDI5MzggMCAKTCAyOTM4IDIwOTQgClEgMjkzOCAyNTkxIDI3NDQgMjgzNyAKUSAyNTUwIDMwODQgMjE2MyAzMDg0IApRIDE2OTcgMzA4NCAxNDI4IDI3ODcgClEgMTE1OSAyNDkxIDExNTkgMTk3OCAKTCAxMTU5IDAgCkwgNTgxIDAgCkwgNTgxIDQ4NjMgCkwgMTE1OSA0ODYzIApMIDExNTkgMjk1NiAKUSAxMzY2IDMyNzIgMTY0NSAzNDI4IApRIDE5MjUgMzU4NCAyMjkxIDM1ODQgClEgMjg5NCAzNTg0IDMyMDMgMzIxMSAKUSAzNTEzIDI4MzggMzUxMyAyMTEzIAp6CiIgdHJhbnNmb3JtPSJzY2FsZSgwLjAxNTYyNSkiLz4KICAgICAgIDxwYXRoIGlkPSJEZWphVnVTYW5zLTYxIiBkPSJNIDIxOTQgMTc1OSAKUSAxNDk3IDE3NTkgMTIyOCAxNjAwIApRIDk1OSAxNDQxIDk1OSAxMDU2IApRIDk1OSA3NTAgMTE2MSA1NzAgClEgMTM2MyAzOTEgMTcwOSAzOTEgClEgMjE4OCAzOTEgMjQ3NyA3MzAgClEgMjc2NiAxMDY5IDI3NjYgMTYzMSAKTCAyNzY2IDE3NTkgCkwgMjE5NCAxNzU5IAp6Ck0gMzM0MSAxOTk3IApMIDMzNDEgMCAKTCAyNzY2IDAgCkwgMjc2NiA1MzEgClEgMjU2OSAyMTMgMjI3NSA2MSAKUSAxOTgxIC05MSAxNTU2IC05MSAKUSAxMDE5IC05MSA3MDEgMjExIApRIDM4NCA1MTMgMzg0IDEwMTkgClEgMzg0IDE2MDkgNzc5IDE5MDkgClEgMTE3NSAyMjA5IDE5NTkgMjIwOSAKTCAyNzY2IDIyMDkgCkwgMjc2NiAyMjY2IApRIDI3NjYgMjY2MyAyNTA1IDI4ODAgClEgMjI0NCAzMDk3IDE3NzIgMzA5NyAKUSAxNDcyIDMwOTcgMTE4NyAzMDI1IApRIDkwMyAyOTUzIDY0MSAyODA5IApMIDY0MSAzMzQxIApRIDk1NiAzNDYzIDEyNTMgMzUyMyAKUSAxNTUwIDM1ODQgMTgzMSAzNTg0IApRIDI1OTEgMzU4NCAyOTY2IDMxOTAgClEgMzM0MSAyNzk3IDMzNDEgMTk5NyAKegoiIHRyYW5zZm9ybT0ic2NhbGUoMC4wMTU2MjUpIi8+CiAgICAgICA8cGF0aCBpZD0iRGVqYVZ1U2Fucy03MCIgZD0iTSAxMTU5IDUyNSAKTCAxMTU5IC0xMzMxIApMIDU4MSAtMTMzMSAKTCA1ODEgMzUwMCAKTCAxMTU5IDM1MDAgCkwgMTE1OSAyOTY5IApRIDEzNDEgMzI4MSAxNjE3IDM0MzIgClEgMTg5NCAzNTg0IDIyNzggMzU4NCAKUSAyOTE2IDM1ODQgMzMxNCAzMDc4IApRIDM3MTMgMjU3MiAzNzEzIDE3NDcgClEgMzcxMyA5MjIgMzMxNCA0MTUgClEgMjkxNiAtOTEgMjI3OCAtOTEgClEgMTg5NCAtOTEgMTYxNyA2MSAKUSAxMzQxIDIxMyAxMTU5IDUyNSAKegpNIDMxMTYgMTc0NyAKUSAzMTE2IDIzODEgMjg1NSAyNzQyIApRIDI1OTQgMzEwMyAyMTM4IDMxMDMgClEgMTY4MSAzMTAzIDE0MjAgMjc0MiAKUSAxMTU5IDIzODEgMTE1OSAxNzQ3IApRIDExNTkgMTExMyAxNDIwIDc1MiAKUSAxNjgxIDM5MSAyMTM4IDM5MSAKUSAyNTk0IDM5MSAyODU1IDc1MiAKUSAzMTE2IDExMTMgMzExNiAxNzQ3IAp6CiIgdHJhbnNmb3JtPSJzY2FsZSgwLjAxNTYyNSkiLz4KICAgICAgIDxwYXRoIGlkPSJEZWphVnVTYW5zLTc5IiBkPSJNIDIwNTkgLTMyNSAKUSAxODE2IC05NTAgMTU4NCAtMTE0MCAKUSAxMzUzIC0xMzMxIDk2NiAtMTMzMSAKTCA1MDYgLTEzMzEgCkwgNTA2IC04NTAgCkwgODQ0IC04NTAgClEgMTA4MSAtODUwIDEyMTIgLTczNyAKUSAxMzQ0IC02MjUgMTUwMyAtMjA2IApMIDE2MDYgNTYgCkwgMTkxIDM1MDAgCkwgODAwIDM1MDAgCkwgMTg5NCA3NjMgCkwgMjk4OCAzNTAwIApMIDM1OTcgMzUwMCAKTCAyMDU5IC0zMjUgCnoKIiB0cmFuc2Zvcm09InNjYWxlKDAuMDE1NjI1KSIvPgogICAgICA8L2RlZnM+CiAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtNjgiLz4KICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy02MSIgeD0iNjMuMzc4OTA2Ii8+CiAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtNzAiIHg9IjEyNC42NTgyMDMiLz4KICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy03MCIgeD0iMTg4LjEzNDc2NiIvPgogICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTc5IiB4PSIyNTEuNjExMzI4Ii8+CiAgICAgPC9nPgogICAgPC9nPgogICA8L2c+CiAgIDxnIGlkPSJsaW5lMmRfMTMiLz4KICAgPGcgaWQ9InBhdGNoXzMiPgogICAgPHBhdGggZD0iTSA1Ny42IDMwNy41ODQgCkwgNTcuNiA0MS40NzIgCiIgc3R5bGU9ImZpbGw6IG5vbmU7IHN0cm9rZTogIzAwMDAwMDsgc3Ryb2tlLXdpZHRoOiAwLjg7IHN0cm9rZS1saW5lam9pbjogbWl0ZXI7IHN0cm9rZS1saW5lY2FwOiBzcXVhcmUiLz4KICAgPC9nPgogICA8ZyBpZD0icGF0Y2hfNCI+CiAgICA8cGF0aCBkPSJNIDQxNC43MiAzMDcuNTg0IApMIDQxNC43MiA0MS40NzIgCiIgc3R5bGU9ImZpbGw6IG5vbmU7IHN0cm9rZTogIzAwMDAwMDsgc3Ryb2tlLXdpZHRoOiAwLjg7IHN0cm9rZS1saW5lam9pbjogbWl0ZXI7IHN0cm9rZS1saW5lY2FwOiBzcXVhcmUiLz4KICAgPC9nPgogICA8ZyBpZD0icGF0Y2hfNSI+CiAgICA8cGF0aCBkPSJNIDU3LjYgMzA3LjU4NCAKTCA0MTQuNzIgMzA3LjU4NCAKIiBzdHlsZT0iZmlsbDogbm9uZTsgc3Ryb2tlOiAjMDAwMDAwOyBzdHJva2Utd2lkdGg6IDAuODsgc3Ryb2tlLWxpbmVqb2luOiBtaXRlcjsgc3Ryb2tlLWxpbmVjYXA6IHNxdWFyZSIvPgogICA8L2c+CiAgIDxnIGlkPSJwYXRjaF82Ij4KICAgIDxwYXRoIGQ9Ik0gNTcuNiA0MS40NzIgCkwgNDE0LjcyIDQxLjQ3MiAKIiBzdHlsZT0iZmlsbDogbm9uZTsgc3Ryb2tlOiAjMDAwMDAwOyBzdHJva2Utd2lkdGg6IDAuODsgc3Ryb2tlLWxpbmVqb2luOiBtaXRlcjsgc3Ryb2tlLWxpbmVjYXA6IHNxdWFyZSIvPgogICA8L2c+CiAgPC9nPgogPC9nPgo8L3N2Zz4K", + "encoding": "base64", + "path": [ + "value" + ] + } + ], + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ImageModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ImageModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ImageView", + "format": "svg+xml", + "height": "", + "layout": "IPY_MODEL_a2e235ee74844f718d51469ab7819f4f", + "tabbable": null, + "tooltip": null, + "width": "" + } + }, + "109f8ba90c20441b952693c829b7f638": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "DescriptionStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "DescriptionStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "description_width": "" + } + }, + "1244531b88a743708d2ddbc07a9b63da": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1389a1b3aa5247e19379c679adbcfeaa": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SliderModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SliderModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "append_icon": null, + "attributes": {}, + "background_color": null, + "children": [], + "class_": null, + "color": null, + "dark": null, + "dense": false, + "disabled": false, + "error": null, + "error_count": null, + "error_messages": null, + "height": null, + "hide_details": true, + "hint": null, + "id": null, + "inverse_label": null, + "label": "Population Density", + "layout": null, + "light": null, + "loader_height": null, + "loading": null, + "max": 0.9, + "messages": null, + "min": 0.0, + "persistent_hint": null, + "prepend_icon": null, + "readonly": null, + "rules": null, + "slot": null, + "step": 0.1, + "style_": null, + "success": null, + "success_messages": null, + "tabbable": null, + "thumb_color": null, + "thumb_label": true, + "thumb_size": null, + "tick_labels": null, + "tick_size": null, + "ticks": null, + "tooltip": null, + "track_color": null, + "track_fill_color": null, + "v_model": 0.6, + "v_on": null, + "v_slots": [], + "validate_on_blur": null, + "value": null, + "vertical": null + } + }, + "149bcc97a3d0411eb04a3329ce9b7ec6": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SheetModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SheetModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [ + "IPY_MODEL_af84a2b3d4c44c6bbd6e008c97ad7885" + ], + "class_": "d-flex ma-0", + "color": null, + "dark": null, + "elevation": 0.0, + "height": null, + "layout": null, + "light": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "slot": null, + "style_": "flex-direction: row; align-items: stretch; justify-content: space-between; column-gap: 12px;flex-grow:1;;", + "tabbable": null, + "tag": null, + "tile": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "width": null + } + }, + "157e239fc6b14ed4b4f7928ea396b895": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SheetModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SheetModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [ + "IPY_MODEL_17bfa16701f1482f9dd575fdf4ab37a2", + "IPY_MODEL_3a6766c6bca542608fc8a6121b645a80", + "IPY_MODEL_07283376f334443c9be052513e176d23", + "IPY_MODEL_516c501a94a3414aa017600aaa76b04f" + ], + "class_": "d-flex ma-0", + "color": null, + "dark": null, + "elevation": 0.0, + "height": null, + "layout": null, + "light": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "slot": null, + "style_": "flex-direction: row; align-items: stretch; justify-content: start; column-gap: 12px;;", + "tabbable": null, + "tag": null, + "tile": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "width": null + } + }, + "17bfa16701f1482f9dd575fdf4ab37a2": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "BtnModel", + "state": { + "_dom_classes": [], + "_events": [ + "click" + ], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "BtnModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "absolute": null, + "active_class": null, + "append": null, + "attributes": {}, + "block": null, + "bottom": null, + "children": [ + "Step" + ], + "class_": "", + "color": "primary", + "dark": null, + "depressed": null, + "disabled": false, + "elevation": null, + "exact": null, + "exact_active_class": null, + "fab": null, + "fixed": null, + "height": null, + "href": null, + "icon": null, + "input_value": null, + "large": null, + "layout": null, + "left": null, + "light": null, + "link": null, + "loading": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "nuxt": null, + "outlined": false, + "replace": null, + "retain_focus_on_click": null, + "right": null, + "ripple": null, + "rounded": null, + "slot": null, + "small": null, + "style_": "", + "tabbable": null, + "tag": null, + "target": null, + "text": false, + "tile": null, + "to": null, + "tooltip": null, + "top": null, + "type": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "value": null, + "width": null, + "x_large": null, + "x_small": null + } + }, + "17d37537bebc4bc8a50d0455744c3cc2": { + "model_module": "jupyter-leaflet", + "model_module_version": "^0.19", + "model_name": "LeafletAttributionControlModel", + "state": { + "_model_module": "jupyter-leaflet", + "_model_module_version": "^0.19", + "_model_name": "LeafletAttributionControlModel", + "_view_count": null, + "_view_module": "jupyter-leaflet", + "_view_module_version": "^0.19", + "_view_name": "LeafletAttributionControlView", + "options": [ + "position", + "prefix" + ], + "position": "bottomright", + "prefix": "ipyleaflet" + } + }, + "1de5e99e42ff49c79ff0991208347b46": { + "model_module": "jupyter-leaflet", + "model_module_version": "^0.19", + "model_name": "LeafletZoomControlModel", + "state": { + "_model_module": "jupyter-leaflet", + "_model_module_version": "^0.19", + "_model_name": "LeafletZoomControlModel", + "_view_count": null, + "_view_module": "jupyter-leaflet", + "_view_module_version": "^0.19", + "_view_name": "LeafletZoomControlView", + "options": [ + "position", + "zoom_in_text", + "zoom_in_title", + "zoom_out_text", + "zoom_out_title" + ], + "position": "topleft", + "zoom_in_text": "+", + "zoom_in_title": "Zoom in", + "zoom_out_text": "-", + "zoom_out_title": "Zoom out" + } + }, + "1f22b781539045dda8909ffedb51fa01": { + "model_module": "jupyter-leaflet", + "model_module_version": "^0.19", + "model_name": "LeafletMapModel", + "state": { + "_dom_classes": [], + "_model_module": "jupyter-leaflet", + "_model_module_version": "^0.19", + "_model_name": "LeafletMapModel", + "_view_count": null, + "_view_module": "jupyter-leaflet", + "_view_module_version": "^0.19", + "_view_name": "LeafletMapView", + "bottom": 0.0, + "bounce_at_zoom_limits": true, + "box_zoom": true, + "center": [ + 52, + 12 + ], + "close_popup_on_click": true, + "controls": [ + "IPY_MODEL_1de5e99e42ff49c79ff0991208347b46", + "IPY_MODEL_b5fd7b519e8c4cda85f22244b53fb4e1" + ], + "crs": { + "custom": false, + "name": "EPSG3857" + }, + "default_style": "IPY_MODEL_e2d6248969b54a5993f1984d89cfd3ff", + "double_click_zoom": true, + "dragging": true, + "dragging_style": "IPY_MODEL_06b6ad6747b84605b6795a2cab1e822e", + "east": 0.0, + "fullscreen": false, + "inertia": true, + "inertia_deceleration": 3000, + "inertia_max_speed": 1500, + "interpolation": "bilinear", + "keyboard": true, + "keyboard_pan_offset": 80, + "keyboard_zoom_offset": 1, + "layers": [ + "IPY_MODEL_809c0cefe97044719321a26f0f099dca", + "IPY_MODEL_33bdc0bb4d1e4da2a7c2a94e194bc40a" + ], + "layout": "IPY_MODEL_1244531b88a743708d2ddbc07a9b63da", + "left": 9007199254740991.0, + "max_zoom": null, + "min_zoom": null, + "modisdate": "2024-06-20", + "north": 0.0, + "options": [ + "bounce_at_zoom_limits", + "box_zoom", + "center", + "close_popup_on_click", + "double_click_zoom", + "dragging", + "fullscreen", + "inertia", + "inertia_deceleration", + "inertia_max_speed", + "interpolation", + "keyboard", + "keyboard_pan_offset", + "keyboard_zoom_offset", + "max_zoom", + "min_zoom", + "prefer_canvas", + "scroll_wheel_zoom", + "tap", + "tap_tolerance", + "touch_zoom", + "world_copy_jump", + "zoom", + "zoom_animation_threshold", + "zoom_delta", + "zoom_snap" + ], + "panes": {}, + "prefer_canvas": false, + "right": 0.0, + "scroll_wheel_zoom": true, + "south": 0.0, + "style": "IPY_MODEL_9fe2de3e42cc4dedb9f8f06512be22bf", + "tabbable": null, + "tap": true, + "tap_tolerance": 15, + "tooltip": null, + "top": 9007199254740991.0, + "touch_zoom": true, + "west": 0.0, + "window_url": "", + "world_copy_jump": false, + "zoom": 3.0, + "zoom_animation_threshold": 4, + "zoom_delta": 1.0, + "zoom_snap": 1.0 + } + }, + "2225c969681d472fb50d046de4318743": { + "model_module": "jupyter-leaflet", + "model_module_version": "^0.19", + "model_name": "LeafletMapStyleModel", + "state": { + "_model_module": "jupyter-leaflet", + "_model_module_version": "^0.19", + "_model_name": "LeafletMapStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "cursor": "grab" + } + }, + "242350436bf5497eaae91e9a46501313": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "VBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "VBoxModel", + "_view_count": 0, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "VBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_8e0a8558f772496ca0e80e89398b3ee4" + ], + "layout": "IPY_MODEL_4f69bfee3e29439a83627ff14119959b", + "tabbable": null, + "tooltip": null + } + }, + "2c5f623092974bd19c46c1a33b915574": { + "model_module": "jupyter-leaflet", + "model_module_version": "^0.19", + "model_name": "LeafletMapStyleModel", + "state": { + "_model_module": "jupyter-leaflet", + "_model_module_version": "^0.19", + "_model_name": "LeafletMapStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "cursor": "move" + } + }, + "2f484e44ae4e4a6695112004cca5e868": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SliderModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SliderModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "append_icon": null, + "attributes": {}, + "background_color": null, + "children": [], + "class_": null, + "color": null, + "dark": null, + "dense": false, + "disabled": false, + "error": null, + "error_count": null, + "error_messages": null, + "height": null, + "hide_details": true, + "hint": null, + "id": null, + "inverse_label": null, + "label": "Fraction Minority", + "layout": null, + "light": null, + "loader_height": null, + "loading": null, + "max": 1.0, + "messages": null, + "min": 0.0, + "persistent_hint": null, + "prepend_icon": null, + "readonly": null, + "rules": null, + "slot": null, + "step": 0.05, + "style_": null, + "success": null, + "success_messages": null, + "tabbable": null, + "thumb_color": null, + "thumb_label": true, + "thumb_size": null, + "tick_labels": null, + "tick_size": null, + "ticks": null, + "tooltip": null, + "track_color": null, + "track_fill_color": null, + "v_model": 0.2, + "v_on": null, + "v_slots": [], + "validate_on_blur": null, + "value": null, + "vertical": null + } + }, + "333c8bf5dd37498c9eb3b853fdc5e724": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "33bdc0bb4d1e4da2a7c2a94e194bc40a": { + "model_module": "jupyter-leaflet", + "model_module_version": "^0.19", + "model_name": "LeafletGeoJSONModel", + "state": { + "_model_module": "jupyter-leaflet", + "_model_module_version": "^0.19", + "_model_name": "LeafletGeoJSONModel", + "_view_count": null, + "_view_module": "jupyter-leaflet", + "_view_module_version": "^0.19", + "_view_name": "LeafletGeoJSONView", + "base": false, + "bottom": false, + "data": { + "features": [ + { + "geometry": { + "coordinates": [ + [ + [ + 17.1607975, + 48.006656501 + ], + [ + 17.093074, + 47.708236 + ], + [ + 16.421846, + 47.66470449899998 + ], + [ + 16.652076, + 47.6229035 + ], + [ + 16.64622, + 47.446597 + ], + [ + 16.4337615, + 47.35291849999999 + ], + [ + 16.508267499999988, + 47.00125599900002 + ], + [ + 16.113849, + 46.86906799899998 + ], + [ + 15.996236, + 46.8353985 + ], + [ + 16.121719499999983, + 46.990666499999975 + ], + [ + 16.015158499999984, + 47.36712749899999 + ], + [ + 16.171769499999982, + 47.4224 + ], + [ + 16.281081, + 47.4551325 + ], + [ + 16.372502, + 47.642485498999974 + ], + [ + 16.2690495, + 47.796405499 + ], + [ + 16.38889149900001, + 47.88160099700002 + ], + [ + 17.066741, + 48.11868149899999 + ], + [ + 17.1607975, + 48.006656501 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 15.542449499999975, + 48.907696997000016 + ], + [ + 15.753633499999978, + 48.852178501000026 + ], + [ + 16.940278, + 48.61724549899998 + ], + [ + 16.949778, + 48.535791999000025 + ], + [ + 16.851106, + 48.43863500100002 + ], + [ + 16.976203, + 48.172244498 + ], + [ + 17.066741, + 48.11868149899999 + ], + [ + 16.38889149900001, + 47.88160099700002 + ], + [ + 16.2690495, + 47.796405499 + ], + [ + 16.372502, + 47.642485498999974 + ], + [ + 16.281081, + 47.4551325 + ], + [ + 16.171769499999982, + 47.4224 + ], + [ + 15.847011, + 47.567789499000014 + ], + [ + 15.217306, + 47.7960275 + ], + [ + 15.0892495, + 47.74147100099998 + ], + [ + 14.738462, + 47.74872349999998 + ], + [ + 14.479043499999989, + 48.10441450000002 + ], + [ + 14.521179, + 48.23760949899997 + ], + [ + 14.8288425, + 48.189076999 + ], + [ + 14.964447, + 48.37851200099999 + ], + [ + 14.691014, + 48.584301998 + ], + [ + 14.990445, + 49.009649001000014 + ], + [ + 15.542449499999975, + 48.907696997000016 + ] + ], + [ + [ + 16.4380425, + 48.31626699899999 + ], + [ + 16.181900499999983, + 48.171029997 + ], + [ + 16.576992500000017, + 48.14443649899999 + ], + [ + 16.4380425, + 48.31626699899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.4380425, + 48.31626699899999 + ], + [ + 16.576992500000017, + 48.14443649899999 + ], + [ + 16.181900499999983, + 48.171029997 + ], + [ + 16.4380425, + 48.31626699899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.784528498999975, + 46.943882497 + ], + [ + 13.946724, + 46.940629999 + ], + [ + 14.844475, + 47.04809999899999 + ], + [ + 15.065120499999978, + 46.65211249700002 + ], + [ + 14.6745805, + 46.450687500000015 + ], + [ + 14.5651755, + 46.37245349699998 + ], + [ + 14.434500500000013, + 46.442943501 + ], + [ + 13.714184999, + 46.52270349999998 + ], + [ + 13.504249500000014, + 46.56630399800002 + ], + [ + 12.73139299899998, + 46.634288 + ], + [ + 12.690635, + 46.656972000999986 + ], + [ + 12.841158, + 46.860979499 + ], + [ + 12.6568335, + 47.09951749700002 + ], + [ + 13.35451949999998, + 47.09710400099999 + ], + [ + 13.784528498999975, + 46.943882497 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.171769499999982, + 47.4224 + ], + [ + 16.015158499999984, + 47.36712749899999 + ], + [ + 16.121719499999983, + 46.990666499999975 + ], + [ + 15.996236, + 46.8353985 + ], + [ + 16.038086, + 46.65614549700001 + ], + [ + 15.786422, + 46.7074695 + ], + [ + 15.649988, + 46.705757 + ], + [ + 15.40197949899999, + 46.65354849900001 + ], + [ + 15.065120499999978, + 46.65211249700002 + ], + [ + 14.844475, + 47.04809999899999 + ], + [ + 13.946724, + 46.940629999 + ], + [ + 13.784528498999975, + 46.943882497 + ], + [ + 13.86417899899999, + 47.25217 + ], + [ + 13.607597, + 47.28356499900002 + ], + [ + 13.585662999000022, + 47.47479949900003 + ], + [ + 13.722560499999986, + 47.46211150099998 + ], + [ + 13.777418, + 47.71452899899998 + ], + [ + 14.010598, + 47.700891997999975 + ], + [ + 14.738462, + 47.74872349999998 + ], + [ + 15.0892495, + 47.74147100099998 + ], + [ + 15.217306, + 47.7960275 + ], + [ + 15.847011, + 47.567789499000014 + ], + [ + 16.171769499999982, + 47.4224 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 14.691014, + 48.584301998 + ], + [ + 14.964447, + 48.37851200099999 + ], + [ + 14.8288425, + 48.189076999 + ], + [ + 14.521179, + 48.23760949899997 + ], + [ + 14.479043499999989, + 48.10441450000002 + ], + [ + 14.738462, + 47.74872349999998 + ], + [ + 14.010598, + 47.700891997999975 + ], + [ + 13.777418, + 47.71452899899998 + ], + [ + 13.722560499999986, + 47.46211150099998 + ], + [ + 13.585662999000022, + 47.47479949900003 + ], + [ + 13.516169, + 47.496504499000025 + ], + [ + 13.303931, + 48.00786949899998 + ], + [ + 12.86018150000001, + 47.996639999000024 + ], + [ + 12.751555, + 48.11281049799999 + ], + [ + 12.9446845, + 48.206692498999985 + ], + [ + 13.177043, + 48.294389997 + ], + [ + 13.407838, + 48.372160501 + ], + [ + 13.438430499999981, + 48.548895001 + ], + [ + 13.51336950000001, + 48.59097799800003 + ], + [ + 13.727090499999974, + 48.513019500999974 + ], + [ + 13.796107, + 48.71360049899999 + ], + [ + 13.839507, + 48.77160500100001 + ], + [ + 14.691014, + 48.584301998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.585662999000022, + 47.47479949900003 + ], + [ + 13.607597, + 47.28356499900002 + ], + [ + 13.86417899899999, + 47.25217 + ], + [ + 13.784528498999975, + 46.943882497 + ], + [ + 13.35451949999998, + 47.09710400099999 + ], + [ + 12.6568335, + 47.09951749700002 + ], + [ + 12.2407455, + 47.069168499 + ], + [ + 12.136014, + 47.0806675 + ], + [ + 12.114546500000017, + 47.30644400099999 + ], + [ + 12.6995915, + 47.47788599900002 + ], + [ + 12.575026499999979, + 47.632316 + ], + [ + 12.695795499999974, + 47.682222998999976 + ], + [ + 13.046055500000023, + 47.520502498999974 + ], + [ + 12.8757855, + 47.962608999 + ], + [ + 12.86018150000001, + 47.996639999000024 + ], + [ + 13.303931, + 48.00786949899998 + ], + [ + 13.516169, + 47.496504499000025 + ], + [ + 13.585662999000022, + 47.47479949900003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.019701, + 50.75097300099998 + ], + [ + 4.983341, + 50.64224249900002 + ], + [ + 4.577537999000015, + 50.542285999 + ], + [ + 4.247219500000028, + 50.596118999 + ], + [ + 4.100483, + 50.70595549799998 + ], + [ + 4.597269, + 50.76353450099998 + ], + [ + 5.019701, + 50.75097300099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 3.459731, + 50.765968500999975 + ], + [ + 3.5412725, + 50.733700499 + ], + [ + 3.775359499999979, + 50.747729999 + ], + [ + 3.815390499999978, + 50.75072499700002 + ], + [ + 3.895736499, + 50.732944498999984 + ], + [ + 4.100483, + 50.70595549799998 + ], + [ + 4.247219500000028, + 50.596118999 + ], + [ + 4.577537999000015, + 50.542285999 + ], + [ + 4.5886625, + 50.32131599899998 + ], + [ + 4.474986999, + 50.32761000099998 + ], + [ + 4.432494, + 49.941615996999985 + ], + [ + 4.233133, + 49.957828498000026 + ], + [ + 4.140853, + 49.978759997 + ], + [ + 4.027774500000021, + 50.358330498999976 + ], + [ + 3.710389, + 50.30316549999998 + ], + [ + 3.65551, + 50.461735498999985 + ], + [ + 3.615081499999974, + 50.490399001000014 + ], + [ + 3.286492, + 50.52756899799999 + ], + [ + 3.245294, + 50.71300949800002 + ], + [ + 3.176996, + 50.756164497999976 + ], + [ + 3.324118, + 50.722308999 + ], + [ + 3.459731, + 50.765968500999975 + ] + ] + ], + [ + [ + [ + 3.0187085, + 50.773532999 + ], + [ + 2.863276, + 50.70834349699999 + ], + [ + 2.842169, + 50.751404 + ], + [ + 2.945734077, + 50.793946362999975 + ], + [ + 3.0187085, + 50.773532999 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.020998999000028, + 50.75429550000001 + ], + [ + 6.26861550000001, + 50.625981 + ], + [ + 6.189312500000028, + 50.56609400100001 + ], + [ + 6.192200499000023, + 50.521055499 + ], + [ + 6.206287499999974, + 50.52130200099998 + ], + [ + 6.315556, + 50.497042498999974 + ], + [ + 6.405028500000014, + 50.323308499 + ], + [ + 6.137662499999976, + 50.129951499000015 + ], + [ + 6.0248995, + 50.182779498 + ], + [ + 5.980197499999974, + 50.329852999000025 + ], + [ + 5.721549499999981, + 50.26198950000003 + ], + [ + 5.675838499, + 50.36851499900001 + ], + [ + 5.393235, + 50.37936399900002 + ], + [ + 5.221259499999974, + 50.41729749899997 + ], + [ + 5.028495, + 50.588821499 + ], + [ + 4.983341, + 50.64224249900002 + ], + [ + 5.019701, + 50.75097300099998 + ], + [ + 5.1018525, + 50.70865249899998 + ], + [ + 5.236892, + 50.72714600099999 + ], + [ + 5.431686500000012, + 50.719803 + ], + [ + 5.687622, + 50.81192399899999 + ], + [ + 5.682000499000026, + 50.75744649799998 + ], + [ + 5.892073, + 50.755237498999975 + ], + [ + 6.020998999000028, + 50.75429550000001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.0248995, + 50.182779498 + ], + [ + 5.746319, + 49.853595 + ], + [ + 5.910688, + 49.66238800100001 + ], + [ + 5.818117, + 49.5463105 + ], + [ + 5.734555999, + 49.545690501000024 + ], + [ + 5.470882999000025, + 49.49723799899999 + ], + [ + 5.393511, + 49.617111 + ], + [ + 5.153738499999974, + 49.717926 + ], + [ + 4.969431, + 49.801825999000016 + ], + [ + 5.1100045, + 49.9253655 + ], + [ + 4.973, + 50.02899950099999 + ], + [ + 5.263063499999987, + 50.108490001 + ], + [ + 5.393235, + 50.37936399900002 + ], + [ + 5.675838499, + 50.36851499900001 + ], + [ + 5.721549499999981, + 50.26198950000003 + ], + [ + 5.980197499999974, + 50.329852999000025 + ], + [ + 6.0248995, + 50.182779498 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.393235, + 50.37936399900002 + ], + [ + 5.263063499999987, + 50.108490001 + ], + [ + 4.973, + 50.02899950099999 + ], + [ + 5.1100045, + 49.9253655 + ], + [ + 4.969431, + 49.801825999000016 + ], + [ + 4.851578, + 49.79325500099998 + ], + [ + 4.793194, + 49.98199900100002 + ], + [ + 4.896794, + 50.13742049899997 + ], + [ + 4.796697, + 50.14867799899997 + ], + [ + 4.432494, + 49.941615996999985 + ], + [ + 4.474986999, + 50.32761000099998 + ], + [ + 4.5886625, + 50.32131599899998 + ], + [ + 4.577537999000015, + 50.542285999 + ], + [ + 4.983341, + 50.64224249900002 + ], + [ + 5.028495, + 50.588821499 + ], + [ + 5.221259499999974, + 50.41729749899997 + ], + [ + 5.393235, + 50.37936399900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 24.641605998999978, + 43.733412999 + ], + [ + 25.293740500000013, + 43.654294 + ], + [ + 25.14043, + 43.26683049899998 + ], + [ + 25.076597, + 43.17778049899999 + ], + [ + 24.87026450000002, + 42.97220799899998 + ], + [ + 25.014595682999982, + 42.74855408299999 + ], + [ + 25.007195500000023, + 42.737618999 + ], + [ + 24.385927, + 42.749953498000025 + ], + [ + 24.12798399899998, + 42.77494799700003 + ], + [ + 24.165291501000013, + 42.929701498999975 + ], + [ + 23.971503499999983, + 43.06225149900001 + ], + [ + 23.566569, + 42.993892999000025 + ], + [ + 23.412767, + 43.16052199799998 + ], + [ + 23.00621, + 43.19287849800003 + ], + [ + 22.747454, + 43.38661299900002 + ], + [ + 22.666975499999978, + 43.402747498999986 + ], + [ + 22.357130499999982, + 43.80948199900001 + ], + [ + 22.536145, + 44.045511499999975 + ], + [ + 22.6751615, + 44.21566299699998 + ], + [ + 22.966399500000023, + 44.09852499700003 + ], + [ + 23.045898, + 44.06374949999997 + ], + [ + 22.838719, + 43.877852001 + ], + [ + 22.997154500000022, + 43.807626997 + ], + [ + 23.63008, + 43.79125999799999 + ], + [ + 24.112719, + 43.699566498000024 + ], + [ + 24.324132, + 43.699567996999974 + ], + [ + 24.641605998999978, + 43.733412999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 27.69541, + 43.987343 + ], + [ + 27.2195365, + 43.66462049900002 + ], + [ + 27.0018885, + 43.696867500999986 + ], + [ + 26.73043949999999, + 43.410103499 + ], + [ + 26.188978, + 43.51739349899998 + ], + [ + 25.9437855, + 43.385800999000026 + ], + [ + 25.95983, + 43.369547001 + ], + [ + 25.986506, + 43.369286499 + ], + [ + 26.004585, + 43.31875449900002 + ], + [ + 26.1674145, + 42.952155499000014 + ], + [ + 25.837491, + 42.77722749899999 + ], + [ + 25.6149615, + 42.78680849900002 + ], + [ + 25.014595682999982, + 42.74855408299999 + ], + [ + 24.87026450000002, + 42.97220799899998 + ], + [ + 25.076597, + 43.17778049899999 + ], + [ + 25.14043, + 43.26683049899998 + ], + [ + 25.293740500000013, + 43.654294 + ], + [ + 25.544640500000014, + 43.64298149699999 + ], + [ + 25.671862499999975, + 43.69133999899998 + ], + [ + 26.358359999000015, + 44.038415500999974 + ], + [ + 26.379968, + 44.04295099900003 + ], + [ + 27.271344999, + 44.12633649899999 + ], + [ + 27.69541, + 43.987343 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 28.578884, + 43.738739 + ], + [ + 28.529502998999988, + 43.42353799799997 + ], + [ + 28.0601805, + 43.31644500099998 + ], + [ + 27.88262, + 42.83841349800002 + ], + [ + 27.0944335, + 42.95391049900002 + ], + [ + 26.5899885, + 42.92011849900001 + ], + [ + 26.577725499999985, + 42.985697 + ], + [ + 26.1674145, + 42.952155499000014 + ], + [ + 26.004585, + 43.31875449900002 + ], + [ + 25.986506, + 43.369286499 + ], + [ + 25.95983, + 43.369547001 + ], + [ + 25.9437855, + 43.385800999000026 + ], + [ + 26.188978, + 43.51739349899998 + ], + [ + 26.73043949999999, + 43.410103499 + ], + [ + 27.0018885, + 43.696867500999986 + ], + [ + 27.2195365, + 43.66462049900002 + ], + [ + 27.69541, + 43.987343 + ], + [ + 28.578884, + 43.738739 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 27.88262, + 42.83841349800002 + ], + [ + 27.899066999000013, + 42.70024550099998 + ], + [ + 27.4479045, + 42.46148699899999 + ], + [ + 28.03551249999998, + 41.983079498999984 + ], + [ + 27.559395, + 41.90478149699999 + ], + [ + 27.059650499999975, + 42.08833699799999 + ], + [ + 26.9492285, + 42.00021349899998 + ], + [ + 26.561544500000025, + 41.92627349899999 + ], + [ + 26.538056, + 42.15419699900002 + ], + [ + 26.192733499999974, + 42.208129997000015 + ], + [ + 26.057769499000017, + 42.01765649999999 + ], + [ + 25.609251, + 42.200959 + ], + [ + 25.348064, + 42.11437749800001 + ], + [ + 25.007195500000023, + 42.737618999 + ], + [ + 25.014595682999982, + 42.74855408299999 + ], + [ + 25.6149615, + 42.78680849900002 + ], + [ + 25.837491, + 42.77722749899999 + ], + [ + 26.1674145, + 42.952155499000014 + ], + [ + 26.577725499999985, + 42.985697 + ], + [ + 26.5899885, + 42.92011849900001 + ], + [ + 27.0944335, + 42.95391049900002 + ], + [ + 27.88262, + 42.83841349800002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 24.385927, + 42.749953498000025 + ], + [ + 24.421009500000025, + 42.55306399699998 + ], + [ + 23.8904885, + 42.54626950099998 + ], + [ + 23.958568, + 42.38330149900003 + ], + [ + 23.77226, + 42.18118549899998 + ], + [ + 23.786217, + 41.833541998999976 + ], + [ + 24.0745475, + 41.672703996999985 + ], + [ + 24.059744, + 41.522112 + ], + [ + 23.624222998999983, + 41.375727497000014 + ], + [ + 22.9275915, + 41.33853949899998 + ], + [ + 22.968327499999987, + 41.51983549900001 + ], + [ + 22.867214, + 42.022199496999974 + ], + [ + 22.510412, + 42.15515849799999 + ], + [ + 22.3602065, + 42.311157001000026 + ], + [ + 22.559255, + 42.480283998 + ], + [ + 22.461472, + 42.64849049899999 + ], + [ + 22.44282149899999, + 42.82545650100002 + ], + [ + 22.5155105, + 42.86853849800002 + ], + [ + 22.7483995, + 42.889787496999986 + ], + [ + 23.00621, + 43.19287849800003 + ], + [ + 23.412767, + 43.16052199799998 + ], + [ + 23.566569, + 42.993892999000025 + ], + [ + 23.971503499999983, + 43.06225149900001 + ], + [ + 24.165291501000013, + 42.929701498999975 + ], + [ + 24.12798399899998, + 42.77494799700003 + ], + [ + 24.385927, + 42.749953498000025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 25.007195500000023, + 42.737618999 + ], + [ + 25.348064, + 42.11437749800001 + ], + [ + 25.609251, + 42.200959 + ], + [ + 26.057769499000017, + 42.01765649999999 + ], + [ + 26.192733499999974, + 42.208129997000015 + ], + [ + 26.538056, + 42.15419699900002 + ], + [ + 26.561544500000025, + 41.92627349899999 + ], + [ + 26.357879, + 41.71110449899999 + ], + [ + 26.060393, + 41.68851600099998 + ], + [ + 26.158688499999982, + 41.39118249699999 + ], + [ + 25.948626, + 41.32034200099997 + ], + [ + 25.90643749999998, + 41.307574998 + ], + [ + 25.224698499999988, + 41.26463099799997 + ], + [ + 25.1793755, + 41.310187998 + ], + [ + 24.783956, + 41.36018899700002 + ], + [ + 24.525637, + 41.568699998 + ], + [ + 24.059744, + 41.522112 + ], + [ + 24.0745475, + 41.672703996999985 + ], + [ + 23.786217, + 41.833541998999976 + ], + [ + 23.77226, + 42.18118549899998 + ], + [ + 23.958568, + 42.38330149900003 + ], + [ + 23.8904885, + 42.54626950099998 + ], + [ + 24.421009500000025, + 42.55306399699998 + ], + [ + 24.385927, + 42.749953498000025 + ], + [ + 25.007195500000023, + 42.737618999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 34.43715, + 35.60157049899999 + ], + [ + 33.906834, + 35.257218 + ], + [ + 34.07786149999998, + 34.966491001 + ], + [ + 33.6778885, + 34.971539999000015 + ], + [ + 33.006973499000026, + 34.64828849999998 + ], + [ + 32.42596450000002, + 34.743192497999985 + ], + [ + 32.269781, + 35.06621399900001 + ], + [ + 32.881518, + 35.16222 + ], + [ + 32.9214245, + 35.403959998 + ], + [ + 33.652597, + 35.35919099900002 + ], + [ + 34.588354, + 35.69543449899999 + ], + [ + 34.43715, + 35.60157049899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 14.6693535, + 50.016293 + ], + [ + 14.3383055, + 49.9483545 + ], + [ + 14.224306, + 50.102918999 + ], + [ + 14.6693535, + 50.016293 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 15.496953, + 49.86118449899999 + ], + [ + 14.932018500000027, + 49.54910099900002 + ], + [ + 13.765590499999973, + 49.51399049899999 + ], + [ + 13.818361, + 49.920024996999985 + ], + [ + 13.407053500000018, + 50.089616998999986 + ], + [ + 14.486485499000025, + 50.505026997000016 + ], + [ + 15.1467705, + 50.52294249800002 + ], + [ + 15.104144500000018, + 50.37609500100001 + ], + [ + 15.4375865, + 50.109857498999986 + ], + [ + 15.3627085, + 50.04134899899998 + ], + [ + 15.496953, + 49.86118449899999 + ] + ], + [ + [ + 14.6693535, + 50.016293 + ], + [ + 14.224306, + 50.102918999 + ], + [ + 14.3383055, + 49.9483545 + ], + [ + 14.6693535, + 50.016293 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.407053500000018, + 50.089616998999986 + ], + [ + 13.818361, + 49.920024996999985 + ], + [ + 13.765590499999973, + 49.51399049899999 + ], + [ + 14.932018500000027, + 49.54910099900002 + ], + [ + 14.903884, + 49.3331485 + ], + [ + 15.586756499999979, + 48.94715949800002 + ], + [ + 15.542449499999975, + 48.907696997000016 + ], + [ + 14.990445, + 49.009649001000014 + ], + [ + 14.691014, + 48.584301998 + ], + [ + 13.839507, + 48.77160500100001 + ], + [ + 13.5515785, + 48.96778749700002 + ], + [ + 13.4166515, + 48.980035499 + ], + [ + 13.170907999, + 49.173579501 + ], + [ + 12.633763499999986, + 49.47619499799998 + ], + [ + 12.593778499999985, + 49.54219149900001 + ], + [ + 12.401524, + 49.75837299800003 + ], + [ + 12.550988500000017, + 49.905088001000024 + ], + [ + 13.301367, + 50.09964349699999 + ], + [ + 13.407053500000018, + 50.089616998999986 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 14.6188, + 50.85780449700002 + ], + [ + 14.343548, + 50.667924 + ], + [ + 14.486485499000025, + 50.505026997000016 + ], + [ + 13.407053500000018, + 50.089616998999986 + ], + [ + 13.301367, + 50.09964349699999 + ], + [ + 12.550988500000017, + 49.905088001000024 + ], + [ + 12.260799, + 50.05815649800002 + ], + [ + 12.160679, + 50.219848997999975 + ], + [ + 12.100900500000023, + 50.31802799799999 + ], + [ + 12.5837785, + 50.40707899900002 + ], + [ + 12.948144500000012, + 50.404311499000016 + ], + [ + 13.501846, + 50.63364299900002 + ], + [ + 13.652174, + 50.73035999799998 + ], + [ + 14.388335, + 50.90029899799998 + ], + [ + 14.317873500000019, + 51.05469899899998 + ], + [ + 14.491221, + 51.043530498999985 + ], + [ + 14.6188, + 50.85780449700002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.86327, + 50.19812299900002 + ], + [ + 16.8042, + 49.598813001 + ], + [ + 16.393628, + 49.580610501000024 + ], + [ + 15.496953, + 49.86118449899999 + ], + [ + 15.3627085, + 50.04134899899998 + ], + [ + 15.4375865, + 50.109857498999986 + ], + [ + 15.104144500000018, + 50.37609500100001 + ], + [ + 15.1467705, + 50.52294249800002 + ], + [ + 14.486485499000025, + 50.505026997000016 + ], + [ + 14.343548, + 50.667924 + ], + [ + 14.6188, + 50.85780449700002 + ], + [ + 14.823362, + 50.87055049700001 + ], + [ + 15.032691, + 51.021315999000024 + ], + [ + 15.535267499999975, + 50.779375999000024 + ], + [ + 16.107318, + 50.662072998999975 + ], + [ + 16.443536, + 50.58625749999999 + ], + [ + 16.195729, + 50.432135001 + ], + [ + 16.58029, + 50.14278799800002 + ], + [ + 16.86327, + 50.19812299900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.8042, + 49.598813001 + ], + [ + 16.8052965, + 49.40573149800002 + ], + [ + 16.943, + 49.493225000999985 + ], + [ + 17.15990149999999, + 49.27505750099999 + ], + [ + 17.11208, + 49.07727099800002 + ], + [ + 17.64693, + 48.85426599800002 + ], + [ + 17.3967255, + 48.81334999799998 + ], + [ + 17.2016625, + 48.878028997 + ], + [ + 16.940278, + 48.61724549899998 + ], + [ + 15.753633499999978, + 48.852178501000026 + ], + [ + 15.542449499999975, + 48.907696997000016 + ], + [ + 15.586756499999979, + 48.94715949800002 + ], + [ + 14.903884, + 49.3331485 + ], + [ + 14.932018500000027, + 49.54910099900002 + ], + [ + 15.496953, + 49.86118449899999 + ], + [ + 16.393628, + 49.580610501000024 + ], + [ + 16.8042, + 49.598813001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 17.429605, + 50.25451300100002 + ], + [ + 17.14739450000002, + 49.877996499 + ], + [ + 17.4669015, + 49.870716499000025 + ], + [ + 17.9168565, + 49.53780899899999 + ], + [ + 18.4035955, + 49.39674549900002 + ], + [ + 18.322436, + 49.315059 + ], + [ + 17.64693, + 48.85426599800002 + ], + [ + 17.11208, + 49.07727099800002 + ], + [ + 17.15990149999999, + 49.27505750099999 + ], + [ + 16.943, + 49.493225000999985 + ], + [ + 16.8052965, + 49.40573149800002 + ], + [ + 16.8042, + 49.598813001 + ], + [ + 16.86327, + 50.19812299900002 + ], + [ + 17.028323, + 50.22999699899998 + ], + [ + 16.90792449999998, + 50.44945400099999 + ], + [ + 17.429605, + 50.25451300100002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 18.035060999, + 50.06577199899999 + ], + [ + 18.575724, + 49.910423 + ], + [ + 18.851551, + 49.51718900100002 + ], + [ + 18.4035955, + 49.39674549900002 + ], + [ + 17.9168565, + 49.53780899899999 + ], + [ + 17.4669015, + 49.870716499000025 + ], + [ + 17.14739450000002, + 49.877996499 + ], + [ + 17.429605, + 50.25451300100002 + ], + [ + 17.718403998999975, + 50.32095 + ], + [ + 17.758479, + 50.206568 + ], + [ + 17.592736, + 50.160014 + ], + [ + 17.868675, + 49.972545997 + ], + [ + 18.035060999, + 50.06577199899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.4104115, + 46.65302049899998 + ], + [ + 8.4776735, + 46.52760249900001 + ], + [ + 8.384717, + 46.452158499 + ], + [ + 7.8771375, + 45.926954997999985 + ], + [ + 7.86407650000001, + 45.91675049999998 + ], + [ + 7.044886, + 45.92241299900002 + ], + [ + 6.797888999, + 46.136798999 + ], + [ + 6.821063998999989, + 46.42715449899998 + ], + [ + 6.24136, + 46.343582497 + ], + [ + 6.231694, + 46.329429498000025 + ], + [ + 6.219547, + 46.31187799899999 + ], + [ + 6.310211, + 46.24404549899998 + ], + [ + 5.956067, + 46.1320955 + ], + [ + 6.125608, + 46.317229999 + ], + [ + 6.064003, + 46.41622899700002 + ], + [ + 6.138106, + 46.55766699700001 + ], + [ + 6.460011, + 46.85155149899998 + ], + [ + 6.780046, + 46.85264299900001 + ], + [ + 6.742307, + 46.827455498 + ], + [ + 6.852262497000027, + 46.77425905699999 + ], + [ + 6.866233500000021, + 46.909293499 + ], + [ + 6.8962095, + 46.92532599899999 + ], + [ + 6.9924145, + 46.830588497 + ], + [ + 6.817892500000028, + 46.51653899899998 + ], + [ + 7.237020500000028, + 46.55379999899998 + ], + [ + 7.221457, + 46.32921249999998 + ], + [ + 8.4104115, + 46.65302049899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.43689, + 47.379970499000024 + ], + [ + 7.644196500000021, + 47.367268998999975 + ], + [ + 7.956853, + 47.45520049700002 + ], + [ + 8.007361, + 47.339403 + ], + [ + 7.824728, + 47.26563749799999 + ], + [ + 7.838686, + 47.234413999000026 + ], + [ + 7.956177501000013, + 47.00342149900001 + ], + [ + 7.857267001000025, + 46.87143149799999 + ], + [ + 8.049088, + 46.788008 + ], + [ + 8.368889498999977, + 46.787975500000016 + ], + [ + 8.395225, + 46.771538 + ], + [ + 8.4489595, + 46.764517001 + ], + [ + 8.4104115, + 46.65302049899998 + ], + [ + 7.221457, + 46.32921249999998 + ], + [ + 7.237020500000028, + 46.55379999899998 + ], + [ + 6.817892500000028, + 46.51653899899998 + ], + [ + 6.9924145, + 46.830588497 + ], + [ + 6.8962095, + 46.92532599899999 + ], + [ + 6.866233500000021, + 46.909293499 + ], + [ + 6.852262497000027, + 46.77425905699999 + ], + [ + 6.742307, + 46.827455498 + ], + [ + 6.780046, + 46.85264299900001 + ], + [ + 6.460011, + 46.85155149899998 + ], + [ + 6.858914, + 47.16529449900003 + ], + [ + 7.061636, + 47.34373449899999 + ], + [ + 6.879806, + 47.35243999800002 + ], + [ + 6.939186, + 47.433704499999976 + ], + [ + 7.130353, + 47.503040499 + ], + [ + 7.326466, + 47.43985350000003 + ], + [ + 7.375684499999977, + 47.414077 + ], + [ + 7.43689, + 47.379970499000024 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.634097, + 47.56111350100002 + ], + [ + 7.713784499999974, + 47.539405 + ], + [ + 7.894107500000018, + 47.586374998999986 + ], + [ + 8.426434500000028, + 47.567548998 + ], + [ + 8.410716, + 47.248037497999974 + ], + [ + 8.4121295, + 47.14073749800002 + ], + [ + 7.838686, + 47.234413999000026 + ], + [ + 7.824728, + 47.26563749799999 + ], + [ + 8.007361, + 47.339403 + ], + [ + 7.956853, + 47.45520049700002 + ], + [ + 7.644196500000021, + 47.367268998999975 + ], + [ + 7.43689, + 47.379970499000024 + ], + [ + 7.375684499999977, + 47.414077 + ], + [ + 7.326466, + 47.43985350000003 + ], + [ + 7.380894, + 47.431892499000014 + ], + [ + 7.42113949899999, + 47.446387999000024 + ], + [ + 7.445019, + 47.46172349699998 + ], + [ + 7.510905499999978, + 47.50258249799998 + ], + [ + 7.5551595, + 47.56456399699999 + ], + [ + 7.589039, + 47.589877999 + ], + [ + 7.634097, + 47.56111350100002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.807784500000025, + 47.220560001000024 + ], + [ + 8.69248349899999, + 47.16362499899998 + ], + [ + 8.410716, + 47.248037497999974 + ], + [ + 8.426434500000028, + 47.567548998 + ], + [ + 8.562841, + 47.599432498 + ], + [ + 8.595602, + 47.6055445 + ], + [ + 8.606369500000028, + 47.66900549899998 + ], + [ + 8.663354, + 47.685892498999976 + ], + [ + 8.670461, + 47.68486249900002 + ], + [ + 8.943635500000028, + 47.37583749800001 + ], + [ + 8.807784500000025, + 47.220560001000024 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 12.6995915, + 47.47788599900002 + ], + [ + 12.114546500000017, + 47.30644400099999 + ], + [ + 12.136014, + 47.0806675 + ], + [ + 11.627199500000017, + 47.013299 + ], + [ + 11.164281500000016, + 46.96572250000003 + ], + [ + 11.02225, + 46.765410498999984 + ], + [ + 10.4696515, + 46.854909 + ], + [ + 10.389317999000014, + 47.00052449999998 + ], + [ + 10.14497449999999, + 46.851009498999986 + ], + [ + 10.212995, + 47.157583999 + ], + [ + 10.178353, + 47.27011399899999 + ], + [ + 10.454439, + 47.55579699899999 + ], + [ + 10.886199, + 47.536847998999974 + ], + [ + 10.991202499999986, + 47.396131 + ], + [ + 11.0165005, + 47.396368000999985 + ], + [ + 11.4214275, + 47.44485199899998 + ], + [ + 11.410219, + 47.49532400099997 + ], + [ + 11.632883, + 47.59244599700003 + ], + [ + 12.060662, + 47.618743499 + ], + [ + 12.338045498999975, + 47.697087501 + ], + [ + 12.575026499999979, + 47.632316 + ], + [ + 12.6995915, + 47.47788599900002 + ] + ] + ], + [ + [ + [ + 12.841158, + 46.860979499 + ], + [ + 12.690635, + 46.656972000999986 + ], + [ + 12.477924, + 46.67983549799999 + ], + [ + 12.143811, + 46.913779998 + ], + [ + 12.2407455, + 47.069168499 + ], + [ + 12.6568335, + 47.09951749700002 + ], + [ + 12.841158, + 46.860979499 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.178353, + 47.27011399899999 + ], + [ + 10.212995, + 47.157583999 + ], + [ + 10.14497449999999, + 46.851009498999986 + ], + [ + 9.607078, + 47.0607745 + ], + [ + 9.620580500000017, + 47.15164549999997 + ], + [ + 9.530749, + 47.27058100099998 + ], + [ + 9.673370499999976, + 47.38151050099998 + ], + [ + 9.5587205, + 47.54189299900003 + ], + [ + 9.967813499999977, + 47.546240496999985 + ], + [ + 9.999526, + 47.48301699699999 + ], + [ + 10.178353, + 47.27011399899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 4.47678350000001, + 50.8203775 + ], + [ + 4.4804765, + 50.794257999000024 + ], + [ + 4.2455665, + 50.817627 + ], + [ + 4.47678350000001, + 50.8203775 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.237716499999976, + 51.261600499 + ], + [ + 5.26107349900002, + 51.14696499899998 + ], + [ + 4.981574500000022, + 51.034885498999984 + ], + [ + 4.789319, + 51.038928999 + ], + [ + 4.528663, + 50.99226449899999 + ], + [ + 4.240999, + 51.036868997 + ], + [ + 4.175792, + 51.10121150100002 + ], + [ + 4.31116750000001, + 51.12614799900001 + ], + [ + 4.242049, + 51.35396699900002 + ], + [ + 4.24366950000001, + 51.37472949900001 + ], + [ + 4.279565, + 51.37601749700002 + ], + [ + 4.669544, + 51.426383999 + ], + [ + 4.759926, + 51.50246449799999 + ], + [ + 5.10218, + 51.42900499699999 + ], + [ + 5.237716499999976, + 51.261600499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.5662835, + 51.22083649799998 + ], + [ + 5.798274, + 51.059853498999985 + ], + [ + 5.766149, + 51.00923549999999 + ], + [ + 5.758272498999986, + 50.954795 + ], + [ + 5.687622, + 50.81192399899999 + ], + [ + 5.431686500000012, + 50.719803 + ], + [ + 5.236892, + 50.72714600099999 + ], + [ + 5.1018525, + 50.70865249899998 + ], + [ + 4.981574500000022, + 51.034885498999984 + ], + [ + 5.26107349900002, + 51.14696499899998 + ], + [ + 5.237716499999976, + 51.261600499 + ], + [ + 5.5662835, + 51.22083649799998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 4.240999, + 51.036868997 + ], + [ + 4.147153, + 50.96939849900002 + ], + [ + 3.895736499, + 50.732944498999984 + ], + [ + 3.815390499999978, + 50.75072499700002 + ], + [ + 3.775359499999979, + 50.747729999 + ], + [ + 3.5412725, + 50.733700499 + ], + [ + 3.459731, + 50.765968500999975 + ], + [ + 3.4667465, + 50.90209650000003 + ], + [ + 3.419824, + 50.910934999 + ], + [ + 3.331306, + 51.098873 + ], + [ + 3.41093, + 51.159888997 + ], + [ + 3.380661, + 51.274299497000015 + ], + [ + 3.8563395, + 51.211056 + ], + [ + 3.9776665, + 51.225131998999984 + ], + [ + 4.23481750000002, + 51.348254 + ], + [ + 4.242049, + 51.35396699900002 + ], + [ + 4.31116750000001, + 51.12614799900001 + ], + [ + 4.175792, + 51.10121150100002 + ], + [ + 4.240999, + 51.036868997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 4.981574500000022, + 51.034885498999984 + ], + [ + 5.1018525, + 50.70865249899998 + ], + [ + 5.019701, + 50.75097300099998 + ], + [ + 4.597269, + 50.76353450099998 + ], + [ + 4.100483, + 50.70595549799998 + ], + [ + 3.895736499, + 50.732944498999984 + ], + [ + 4.147153, + 50.96939849900002 + ], + [ + 4.240999, + 51.036868997 + ], + [ + 4.528663, + 50.99226449899999 + ], + [ + 4.789319, + 51.038928999 + ], + [ + 4.981574500000022, + 51.034885498999984 + ] + ], + [ + [ + 4.47678350000001, + 50.8203775 + ], + [ + 4.2455665, + 50.817627 + ], + [ + 4.4804765, + 50.794257999000024 + ], + [ + 4.47678350000001, + 50.8203775 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 3.0187085, + 50.773532999 + ], + [ + 2.945734077, + 50.793946362999975 + ], + [ + 2.842169, + 50.751404 + ], + [ + 2.863276, + 50.70834349699999 + ], + [ + 2.607036, + 50.91268949900001 + ], + [ + 2.546011, + 51.08938199800002 + ], + [ + 2.749051499000018, + 51.161769999 + ], + [ + 3.110688499999981, + 51.31225950100003 + ], + [ + 3.367216499999984, + 51.368134499 + ], + [ + 3.380661, + 51.274299497000015 + ], + [ + 3.41093, + 51.159888997 + ], + [ + 3.331306, + 51.098873 + ], + [ + 3.419824, + 50.910934999 + ], + [ + 3.4667465, + 50.90209650000003 + ], + [ + 3.459731, + 50.765968500999975 + ], + [ + 3.324118, + 50.722308999 + ], + [ + 3.176996, + 50.756164497999976 + ], + [ + 3.098481, + 50.779019 + ], + [ + 3.0187085, + 50.773532999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.479113, + 50.440685497 + ], + [ + 9.286735, + 50.437298 + ], + [ + 9.042425499999979, + 50.49799 + ], + [ + 8.577542, + 50.415019 + ], + [ + 8.5141395, + 50.39935149899998 + ], + [ + 8.467215, + 50.41504849900002 + ], + [ + 8.354557, + 50.29422999899998 + ], + [ + 8.1219135, + 50.277224999 + ], + [ + 7.971559500000012, + 50.40622049900003 + ], + [ + 8.151592, + 50.59937099899997 + ], + [ + 8.125776499999972, + 50.685813998000015 + ], + [ + 8.355495999000027, + 50.862001 + ], + [ + 8.477892, + 50.96904749700002 + ], + [ + 8.9746, + 50.938304001 + ], + [ + 9.1488685, + 50.836645 + ], + [ + 9.441055, + 50.79564450100003 + ], + [ + 9.611464500000011, + 50.7354765 + ], + [ + 9.466069, + 50.660618 + ], + [ + 9.479113, + 50.440685497 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.928339, + 51.375299 + ], + [ + 10.206942, + 51.19064899699998 + ], + [ + 10.210013, + 51.14408299899998 + ], + [ + 10.202181, + 51.012009001000024 + ], + [ + 10.18234849999999, + 50.99848750000001 + ], + [ + 10.021558500000026, + 50.9929495 + ], + [ + 9.9261765, + 50.76738999899999 + ], + [ + 10.077555500000017, + 50.63762399699999 + ], + [ + 10.0413385, + 50.51646949899998 + ], + [ + 9.935655, + 50.419606499999986 + ], + [ + 9.7329145, + 50.356149499000026 + ], + [ + 9.479113, + 50.440685497 + ], + [ + 9.466069, + 50.660618 + ], + [ + 9.611464500000011, + 50.7354765 + ], + [ + 9.441055, + 50.79564450100003 + ], + [ + 9.1488685, + 50.836645 + ], + [ + 8.9746, + 50.938304001 + ], + [ + 8.477892, + 50.96904749700002 + ], + [ + 8.549084999, + 51.101868001000014 + ], + [ + 8.7582145, + 51.17718149900003 + ], + [ + 8.556348, + 51.277495 + ], + [ + 8.970653500000026, + 51.5067735 + ], + [ + 9.155410500000016, + 51.44267499900002 + ], + [ + 9.440457, + 51.650393999000016 + ], + [ + 9.685331, + 51.58201649900002 + ], + [ + 9.672377499999982, + 51.568403999 + ], + [ + 9.62582500100001, + 51.580205 + ], + [ + 9.647755500000017, + 51.55251099899999 + ], + [ + 9.557291, + 51.35137849900002 + ], + [ + 9.568025, + 51.34000149899998 + ], + [ + 9.710295479000024, + 51.30153775000002 + ], + [ + 9.928339, + 51.375299 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 12.926951499999973, + 54.427963998999985 + ], + [ + 12.363174500000014, + 54.267097998999986 + ], + [ + 13.017391718999988, + 54.43872077399999 + ], + [ + 13.109225, + 54.27934049800001 + ], + [ + 13.319396, + 54.19350599799998 + ], + [ + 13.344701499999985, + 54.18111149700002 + ], + [ + 13.742715499999974, + 54.031386499 + ], + [ + 13.819152499999973, + 53.841944996999985 + ], + [ + 14.267542, + 53.69780649699999 + ], + [ + 14.412157, + 53.329635998000015 + ], + [ + 13.710065499999985, + 53.4790625 + ], + [ + 13.2414035, + 53.232401 + ], + [ + 12.984683, + 53.1649855 + ], + [ + 12.3317515, + 53.318011 + ], + [ + 12.325101500000017, + 53.321301498000025 + ], + [ + 11.265732, + 53.121978 + ], + [ + 11.171861499999977, + 53.15664399799999 + ], + [ + 10.595047, + 53.36392750099998 + ], + [ + 10.951918499999977, + 53.64762249900002 + ], + [ + 10.76296450000001, + 53.811153 + ], + [ + 10.903661500999988, + 53.95682200099998 + ], + [ + 11.5617785, + 54.02808849799999 + ], + [ + 11.998484500000018, + 54.174969998999984 + ], + [ + 12.201068, + 54.24469549899999 + ], + [ + 12.2855305, + 54.274951999 + ], + [ + 12.520881067, + 54.47423454199998 + ], + [ + 12.926951499999973, + 54.427963998999985 + ] + ] + ], + [ + [ + [ + 13.39108349999998, + 54.651317 + ], + [ + 13.67934, + 54.56278249799999 + ], + [ + 13.6824535, + 54.349581 + ], + [ + 13.394217500000025, + 54.22250250000002 + ], + [ + 13.114586, + 54.33190799699997 + ], + [ + 13.2614835, + 54.38291650000002 + ], + [ + 13.270131, + 54.48017349899999 + ], + [ + 13.144181, + 54.546965499 + ], + [ + 13.39108349999998, + 54.651317 + ] + ] + ], + [ + [ + [ + 14.2130775, + 53.86647949899998 + ], + [ + 13.826150499999983, + 53.84968499799999 + ], + [ + 13.750745999, + 54.14996050100001 + ], + [ + 13.9720845, + 54.06874749799999 + ], + [ + 14.226302, + 53.92865299800002 + ], + [ + 14.2130775, + 53.86647949899998 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.759314500000016, + 52.79583050000002 + ], + [ + 11.0087815, + 52.496747500000026 + ], + [ + 10.93454250000002, + 52.471794999 + ], + [ + 11.086244, + 52.22863399900001 + ], + [ + 10.964414499999975, + 52.05664299799997 + ], + [ + 10.801428499999986, + 52.0480005 + ], + [ + 10.561227, + 52.00406599899998 + ], + [ + 10.701372, + 51.64218749999998 + ], + [ + 10.677283, + 51.63837600099998 + ], + [ + 10.488551, + 51.574778498 + ], + [ + 10.365365, + 51.55589100100002 + ], + [ + 9.928339, + 51.375299 + ], + [ + 9.710295479000024, + 51.30153775000002 + ], + [ + 9.568025, + 51.34000149899998 + ], + [ + 9.557291, + 51.35137849900002 + ], + [ + 9.647755500000017, + 51.55251099899999 + ], + [ + 9.62582500100001, + 51.580205 + ], + [ + 9.672377499999982, + 51.568403999 + ], + [ + 9.685331, + 51.58201649900002 + ], + [ + 9.440457, + 51.650393999000016 + ], + [ + 9.417317500000024, + 51.647269499 + ], + [ + 9.894248, + 51.906155 + ], + [ + 10.065526, + 51.927359998999975 + ], + [ + 10.204688499999975, + 52.00699 + ], + [ + 10.234005, + 52.170195998999986 + ], + [ + 10.257076499999982, + 52.18327799799999 + ], + [ + 10.0344675, + 52.28376599699999 + ], + [ + 10.2921475, + 52.447884499 + ], + [ + 10.273742500000026, + 52.51064 + ], + [ + 10.44441, + 52.8157635 + ], + [ + 10.759314500000016, + 52.79583050000002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.915827, + 53.011021497 + ], + [ + 9.115997, + 52.896952499 + ], + [ + 9.3256025, + 52.767712500000016 + ], + [ + 9.534658499999978, + 52.66006649899998 + ], + [ + 9.734624, + 52.63830249900002 + ], + [ + 10.273742500000026, + 52.51064 + ], + [ + 10.2921475, + 52.447884499 + ], + [ + 10.0344675, + 52.28376599699999 + ], + [ + 10.257076499999982, + 52.18327799799999 + ], + [ + 10.234005, + 52.170195998999986 + ], + [ + 10.204688499999975, + 52.00699 + ], + [ + 10.065526, + 51.927359998999975 + ], + [ + 9.894248, + 51.906155 + ], + [ + 9.417317500000024, + 51.647269499 + ], + [ + 9.459648500000014, + 51.86279749800002 + ], + [ + 9.323343500000021, + 51.85506099700001 + ], + [ + 9.308893, + 51.92271950100002 + ], + [ + 9.15560449899999, + 52.09783 + ], + [ + 8.985787500000015, + 52.19457649899999 + ], + [ + 9.125252499999988, + 52.411993498000015 + ], + [ + 8.70300899900002, + 52.500437998 + ], + [ + 8.2972135, + 52.456497997999975 + ], + [ + 8.308324, + 52.499112 + ], + [ + 8.459277499999985, + 52.80105599699999 + ], + [ + 8.657161, + 53.00899449899998 + ], + [ + 8.711424, + 53.044629997000015 + ], + [ + 8.915827, + 53.011021497 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.614913999, + 53.882118 + ], + [ + 9.02991750000001, + 53.825564997000015 + ], + [ + 9.02242, + 53.87951750000002 + ], + [ + 9.199750999, + 53.88010449799998 + ], + [ + 9.48589, + 53.707664497999986 + ], + [ + 9.73010399899999, + 53.557580997 + ], + [ + 9.768861, + 53.50527899799999 + ], + [ + 10.308312, + 53.43322149800002 + ], + [ + 10.469184, + 53.385844 + ], + [ + 10.595047, + 53.36392750099998 + ], + [ + 11.171861499999977, + 53.15664399799999 + ], + [ + 11.265732, + 53.121978 + ], + [ + 11.597784499999989, + 53.03592649900003 + ], + [ + 11.505027, + 52.941032499000016 + ], + [ + 10.841556, + 52.852205 + ], + [ + 10.759314500000016, + 52.79583050000002 + ], + [ + 10.44441, + 52.8157635 + ], + [ + 10.273742500000026, + 52.51064 + ], + [ + 9.734624, + 52.63830249900002 + ], + [ + 9.534658499999978, + 52.66006649899998 + ], + [ + 9.3256025, + 52.767712500000016 + ], + [ + 9.115997, + 52.896952499 + ], + [ + 8.915827, + 53.011021497 + ], + [ + 8.979256, + 53.045849499999974 + ], + [ + 8.984185500000024, + 53.12607099899998 + ], + [ + 8.485330499999975, + 53.22712 + ], + [ + 8.499987498999985, + 53.366847999000015 + ], + [ + 8.492652, + 53.47242000099999 + ], + [ + 8.652134000999979, + 53.51601699899999 + ], + [ + 8.650632499999972, + 53.602565001000016 + ], + [ + 8.520410500000025, + 53.60620500099998 + ], + [ + 8.614913999, + 53.882118 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.554898499999979, + 53.52513100099998 + ], + [ + 8.492652, + 53.47242000099999 + ], + [ + 8.499987498999985, + 53.366847999000015 + ], + [ + 8.485330499999975, + 53.22712 + ], + [ + 8.6548985, + 53.10886449999998 + ], + [ + 8.711424, + 53.044629997000015 + ], + [ + 8.657161, + 53.00899449899998 + ], + [ + 8.459277499999985, + 52.80105599699999 + ], + [ + 8.308324, + 52.499112 + ], + [ + 8.2972135, + 52.456497997999975 + ], + [ + 8.4661865, + 52.267614 + ], + [ + 8.410586500000022, + 52.11511499699998 + ], + [ + 8.096448, + 52.05714500099998 + ], + [ + 7.885159, + 52.0833025 + ], + [ + 8.007796, + 52.115332997999985 + ], + [ + 7.956465, + 52.2724905 + ], + [ + 7.964625500000011, + 52.32485850099999 + ], + [ + 7.608038500000021, + 52.47401599900002 + ], + [ + 7.317481, + 52.28027199899998 + ], + [ + 7.099148999000022, + 52.24305849699999 + ], + [ + 7.065685, + 52.24137299900002 + ], + [ + 6.987941499999977, + 52.469540999 + ], + [ + 6.697865499999978, + 52.48628599800003 + ], + [ + 6.709732499999973, + 52.62782349899999 + ], + [ + 7.006229500000018, + 52.63876299899999 + ], + [ + 7.092692, + 52.83820099899998 + ], + [ + 7.202794499999982, + 53.11328149899998 + ], + [ + 7.208935, + 53.243064498000024 + ], + [ + 7.2643, + 53.32552649799999 + ], + [ + 6.999446499999976, + 53.359887501 + ], + [ + 7.24368149899999, + 53.66778199700002 + ], + [ + 7.550173, + 53.67503749999997 + ], + [ + 7.809895499999982, + 53.70766199899998 + ], + [ + 8.091291, + 53.638109000999975 + ], + [ + 8.061327, + 53.50595700100001 + ], + [ + 8.195555, + 53.409171499000024 + ], + [ + 8.329544, + 53.614027 + ], + [ + 8.554898499999979, + 53.52513100099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.4077795, + 51.828092001000016 + ], + [ + 6.490212, + 51.81137700099998 + ], + [ + 6.91086150000001, + 51.746098501 + ], + [ + 6.902276, + 51.635684501000014 + ], + [ + 6.833152, + 51.579647997999984 + ], + [ + 6.928003, + 51.49776699900002 + ], + [ + 6.998652, + 51.53370049799997 + ], + [ + 7.010207, + 51.53272849899997 + ], + [ + 7.1042005, + 51.48126749800002 + ], + [ + 7.13603, + 51.426038 + ], + [ + 7.117675, + 51.380272499 + ], + [ + 7.167288, + 51.3129025 + ], + [ + 7.3066935, + 51.23887549900002 + ], + [ + 7.295806500000026, + 51.20539199900003 + ], + [ + 7.268179499999974, + 51.14565750000003 + ], + [ + 7.166349998999976, + 51.153941 + ], + [ + 6.997724, + 51.11797599800002 + ], + [ + 6.990593499999989, + 51.09159799899999 + ], + [ + 6.898045, + 51.06488549699998 + ], + [ + 6.853487500000028, + 51.08425600100003 + ], + [ + 6.773632500000019, + 51.06439000099999 + ], + [ + 6.480495499000028, + 51.034178998000016 + ], + [ + 6.45921099899999, + 51.043073 + ], + [ + 6.443993499999976, + 51.089785498000026 + ], + [ + 6.291978500000027, + 51.175453 + ], + [ + 6.174812, + 51.1845135 + ], + [ + 6.072657, + 51.24258749799998 + ], + [ + 6.224405, + 51.364978999000016 + ], + [ + 5.953192, + 51.747845998 + ], + [ + 6.167766, + 51.900804499 + ], + [ + 6.4077795, + 51.828092001000016 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.785898, + 50.939913999 + ], + [ + 7.6610035, + 50.82036450099997 + ], + [ + 7.44077199899999, + 50.711437998 + ], + [ + 7.2123995, + 50.623404999 + ], + [ + 7.210872, + 50.649543499 + ], + [ + 7.1952005, + 50.642722999 + ], + [ + 6.927901, + 50.55861850000002 + ], + [ + 6.800711499999977, + 50.36178149900002 + ], + [ + 6.425295, + 50.32301199800003 + ], + [ + 6.405028500000014, + 50.323308499 + ], + [ + 6.315556, + 50.497042498999974 + ], + [ + 6.206287499999974, + 50.52130200099998 + ], + [ + 6.192200499000023, + 50.521055499 + ], + [ + 6.189312500000028, + 50.56609400100001 + ], + [ + 6.26861550000001, + 50.625981 + ], + [ + 6.020998999000028, + 50.75429550000001 + ], + [ + 6.0869475, + 50.91313499900002 + ], + [ + 5.877084998999976, + 51.032101 + ], + [ + 6.174812, + 51.1845135 + ], + [ + 6.291978500000027, + 51.175453 + ], + [ + 6.443993499999976, + 51.089785498000026 + ], + [ + 6.45921099899999, + 51.043073 + ], + [ + 6.480495499000028, + 51.034178998000016 + ], + [ + 6.773632500000019, + 51.06439000099999 + ], + [ + 6.853487500000028, + 51.08425600100003 + ], + [ + 6.898045, + 51.06488549699998 + ], + [ + 6.990593499999989, + 51.09159799899999 + ], + [ + 6.997724, + 51.11797599800002 + ], + [ + 7.166349998999976, + 51.153941 + ], + [ + 7.268179499999974, + 51.14565750000003 + ], + [ + 7.295806500000026, + 51.20539199900003 + ], + [ + 7.3066935, + 51.23887549900002 + ], + [ + 7.433343, + 51.21440899800001 + ], + [ + 7.716120499999988, + 51.07290849899999 + ], + [ + 7.785898, + 50.939913999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.096448, + 52.05714500099998 + ], + [ + 8.320136, + 51.72570500099999 + ], + [ + 7.9445275, + 51.700582 + ], + [ + 7.735787999000024, + 51.737370499 + ], + [ + 7.7018895, + 51.712378999 + ], + [ + 7.40955, + 51.66458099699997 + ], + [ + 7.417934, + 51.599519997000016 + ], + [ + 7.314282, + 51.522423 + ], + [ + 7.293587, + 51.53226249800002 + ], + [ + 7.145057, + 51.55224049899999 + ], + [ + 7.139561500000013, + 51.50615749799999 + ], + [ + 7.1042005, + 51.48126749800002 + ], + [ + 7.010207, + 51.53272849899997 + ], + [ + 6.998652, + 51.53370049799997 + ], + [ + 6.928003, + 51.49776699900002 + ], + [ + 6.833152, + 51.579647997999984 + ], + [ + 6.902276, + 51.635684501000014 + ], + [ + 6.91086150000001, + 51.746098501 + ], + [ + 6.490212, + 51.81137700099998 + ], + [ + 6.4077795, + 51.828092001000016 + ], + [ + 6.828513, + 51.9640665 + ], + [ + 6.760465, + 52.11856949999998 + ], + [ + 7.065685, + 52.24137299900002 + ], + [ + 7.099148999000022, + 52.24305849699999 + ], + [ + 7.317481, + 52.28027199899998 + ], + [ + 7.608038500000021, + 52.47401599900002 + ], + [ + 7.964625500000011, + 52.32485850099999 + ], + [ + 7.956465, + 52.2724905 + ], + [ + 8.007796, + 52.115332997999985 + ], + [ + 7.885159, + 52.0833025 + ], + [ + 8.096448, + 52.05714500099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.417317500000024, + 51.647269499 + ], + [ + 9.440457, + 51.650393999000016 + ], + [ + 9.155410500000016, + 51.44267499900002 + ], + [ + 8.970653500000026, + 51.5067735 + ], + [ + 8.905395, + 51.53149649900001 + ], + [ + 8.547931, + 51.4678125 + ], + [ + 8.472658, + 51.563380499 + ], + [ + 8.573228500000027, + 51.660557 + ], + [ + 8.403108, + 51.719355001 + ], + [ + 8.320136, + 51.72570500099999 + ], + [ + 8.096448, + 52.05714500099998 + ], + [ + 8.410586500000022, + 52.11511499699998 + ], + [ + 8.4661865, + 52.267614 + ], + [ + 8.2972135, + 52.456497997999975 + ], + [ + 8.70300899900002, + 52.500437998 + ], + [ + 9.125252499999988, + 52.411993498000015 + ], + [ + 8.985787500000015, + 52.19457649899999 + ], + [ + 9.15560449899999, + 52.09783 + ], + [ + 9.308893, + 51.92271950100002 + ], + [ + 9.323343500000021, + 51.85506099700001 + ], + [ + 9.459648500000014, + 51.86279749800002 + ], + [ + 9.417317500000024, + 51.647269499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.320136, + 51.72570500099999 + ], + [ + 8.403108, + 51.719355001 + ], + [ + 8.573228500000027, + 51.660557 + ], + [ + 8.472658, + 51.563380499 + ], + [ + 8.547931, + 51.4678125 + ], + [ + 8.905395, + 51.53149649900001 + ], + [ + 8.970653500000026, + 51.5067735 + ], + [ + 8.556348, + 51.277495 + ], + [ + 8.7582145, + 51.17718149900003 + ], + [ + 8.549084999, + 51.101868001000014 + ], + [ + 8.477892, + 50.96904749700002 + ], + [ + 8.355495999000027, + 50.862001 + ], + [ + 8.125776499999972, + 50.685813998000015 + ], + [ + 8.03969, + 50.697375498999975 + ], + [ + 7.851496, + 50.92583250000001 + ], + [ + 7.785898, + 50.939913999 + ], + [ + 7.716120499999988, + 51.07290849899999 + ], + [ + 7.433343, + 51.21440899800001 + ], + [ + 7.3066935, + 51.23887549900002 + ], + [ + 7.167288, + 51.3129025 + ], + [ + 7.117675, + 51.380272499 + ], + [ + 7.13603, + 51.426038 + ], + [ + 7.1042005, + 51.48126749800002 + ], + [ + 7.139561500000013, + 51.50615749799999 + ], + [ + 7.145057, + 51.55224049899999 + ], + [ + 7.293587, + 51.53226249800002 + ], + [ + 7.314282, + 51.522423 + ], + [ + 7.417934, + 51.599519997000016 + ], + [ + 7.40955, + 51.66458099699997 + ], + [ + 7.7018895, + 51.712378999 + ], + [ + 7.735787999000024, + 51.737370499 + ], + [ + 7.9445275, + 51.700582 + ], + [ + 8.320136, + 51.72570500099999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.7279815, + 47.692680499 + ], + [ + 8.79570849999999, + 47.675595499999986 + ], + [ + 8.843022, + 47.71226249900002 + ], + [ + 8.8749985, + 47.65597349799998 + ], + [ + 9.182192, + 47.655890499 + ], + [ + 9.495604, + 47.551454998999986 + ], + [ + 9.5587205, + 47.54189299900003 + ], + [ + 9.673370499999976, + 47.38151050099998 + ], + [ + 9.530749, + 47.27058100099998 + ], + [ + 9.4760475, + 47.051797498999974 + ], + [ + 9.607078, + 47.0607745 + ], + [ + 10.14497449999999, + 46.851009498999986 + ], + [ + 10.389317999000014, + 47.00052449999998 + ], + [ + 10.4696515, + 46.854909 + ], + [ + 10.452801, + 46.53068299900002 + ], + [ + 10.2448745, + 46.62209199799997 + ], + [ + 9.714149500000019, + 46.292708499000014 + ], + [ + 9.248531500000013, + 46.23376800099999 + ], + [ + 9.1593775, + 46.169601 + ], + [ + 9.0428035, + 46.58880049700002 + ], + [ + 8.678729, + 46.57918949899999 + ], + [ + 8.877168499999982, + 46.81312349900003 + ], + [ + 8.935079, + 46.92020799900001 + ], + [ + 9.004565500000012, + 47.173145499999976 + ], + [ + 8.807784500000025, + 47.220560001000024 + ], + [ + 8.943635500000028, + 47.37583749800001 + ], + [ + 8.670461, + 47.68486249900002 + ], + [ + 8.663354, + 47.685892498999976 + ], + [ + 8.606369500000028, + 47.66900549899998 + ], + [ + 8.510115, + 47.776190499999984 + ], + [ + 8.61233, + 47.801462 + ], + [ + 8.740104499999973, + 47.752789001 + ], + [ + 8.7279815, + 47.692680499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.807784500000025, + 47.220560001000024 + ], + [ + 9.004565500000012, + 47.173145499999976 + ], + [ + 8.935079, + 46.92020799900001 + ], + [ + 8.877168499999982, + 46.81312349900003 + ], + [ + 8.678729, + 46.57918949899999 + ], + [ + 8.4776735, + 46.52760249900001 + ], + [ + 8.4104115, + 46.65302049899998 + ], + [ + 8.4489595, + 46.764517001 + ], + [ + 8.395225, + 46.771538 + ], + [ + 8.368889498999977, + 46.787975500000016 + ], + [ + 8.049088, + 46.788008 + ], + [ + 7.857267001000025, + 46.87143149799999 + ], + [ + 7.956177501000013, + 47.00342149900001 + ], + [ + 7.838686, + 47.234413999000026 + ], + [ + 8.4121295, + 47.14073749800002 + ], + [ + 8.410716, + 47.248037497999974 + ], + [ + 8.69248349899999, + 47.16362499899998 + ], + [ + 8.807784500000025, + 47.220560001000024 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.1593775, + 46.169601 + ], + [ + 8.988276499999984, + 45.97228249800003 + ], + [ + 9.088803499999983, + 45.89689700100001 + ], + [ + 8.912147, + 45.830444999 + ], + [ + 8.713936, + 46.097271998999986 + ], + [ + 8.384717, + 46.452158499 + ], + [ + 8.4776735, + 46.52760249900001 + ], + [ + 8.678729, + 46.57918949899999 + ], + [ + 9.0428035, + 46.58880049700002 + ], + [ + 9.1593775, + 46.169601 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.083623, + 49.542955499000016 + ], + [ + 10.11832750000002, + 49.47316949899999 + ], + [ + 10.1119665, + 49.384910499 + ], + [ + 10.256763499999977, + 49.059495 + ], + [ + 10.4098495, + 48.97743549900002 + ], + [ + 10.423689, + 48.744495997 + ], + [ + 10.487258, + 48.69666200099999 + ], + [ + 10.278268, + 48.51607449900001 + ], + [ + 10.230779499999983, + 48.510511 + ], + [ + 9.9440715, + 48.631755499 + ], + [ + 9.5851745, + 48.536741499000016 + ], + [ + 9.582475499999987, + 48.539146999000025 + ], + [ + 9.1512295, + 48.60405549799998 + ], + [ + 9.129176500000028, + 48.60126649900002 + ], + [ + 8.768902500000024, + 48.521840999 + ], + [ + 8.804181500000027, + 48.777778 + ], + [ + 8.928800500000023, + 48.866557 + ], + [ + 8.945315, + 48.961766 + ], + [ + 8.876031499000021, + 49.03517 + ], + [ + 8.8777945, + 49.058478501000025 + ], + [ + 8.818233, + 49.194497 + ], + [ + 9.0491265, + 49.29286250000001 + ], + [ + 9.4434915, + 49.364336998 + ], + [ + 9.603823, + 49.42657799699998 + ], + [ + 9.41092, + 49.66350799899999 + ], + [ + 9.295673, + 49.740530998999986 + ], + [ + 9.471497499, + 49.77972650100003 + ], + [ + 9.648736, + 49.791477499999985 + ], + [ + 9.926560999, + 49.48483550100002 + ], + [ + 10.083623, + 49.542955499000016 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.768902500000024, + 48.521840999 + ], + [ + 8.75571050000002, + 48.504140001 + ], + [ + 8.774055, + 48.416278498999986 + ], + [ + 8.737186499000018, + 48.377976999 + ], + [ + 8.303992, + 48.34909449700001 + ], + [ + 8.222007, + 48.60322749900001 + ], + [ + 7.9596305, + 48.71858099899998 + ], + [ + 8.232632998999975, + 48.966571500999976 + ], + [ + 8.261284, + 48.98091699899999 + ], + [ + 8.277349, + 48.98993900099998 + ], + [ + 8.33997, + 49.080149999000014 + ], + [ + 8.4130725, + 49.24981649900002 + ], + [ + 8.466985500000021, + 49.28297550100001 + ], + [ + 8.487268, + 49.29002649900002 + ], + [ + 8.4709155, + 49.340712999 + ], + [ + 8.497316, + 49.411347 + ], + [ + 8.474739704, + 49.44061602900001 + ], + [ + 8.423068, + 49.541821 + ], + [ + 8.422700500000019, + 49.57419249899999 + ], + [ + 8.4224395, + 49.583385498999974 + ], + [ + 8.581375, + 49.51978049899998 + ], + [ + 8.899572499999977, + 49.50365549899999 + ], + [ + 8.899355, + 49.48455 + ], + [ + 8.950348500000018, + 49.45499299900001 + ], + [ + 8.93188, + 49.470636996999986 + ], + [ + 9.083426499999973, + 49.52608699699999 + ], + [ + 9.103006, + 49.577456 + ], + [ + 9.41092, + 49.66350799899999 + ], + [ + 9.603823, + 49.42657799699998 + ], + [ + 9.4434915, + 49.364336998 + ], + [ + 9.0491265, + 49.29286250000001 + ], + [ + 8.818233, + 49.194497 + ], + [ + 8.8777945, + 49.058478501000025 + ], + [ + 8.876031499000021, + 49.03517 + ], + [ + 8.945315, + 48.961766 + ], + [ + 8.928800500000023, + 48.866557 + ], + [ + 8.804181500000027, + 48.777778 + ], + [ + 8.768902500000024, + 48.521840999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.737186499000018, + 48.377976999 + ], + [ + 8.751237, + 48.159539998000014 + ], + [ + 8.953761, + 48.107278999000016 + ], + [ + 9.012045, + 47.936922998 + ], + [ + 9.151105, + 47.89498299799999 + ], + [ + 9.128582, + 47.846817499 + ], + [ + 9.030533, + 47.806520499999976 + ], + [ + 9.182192, + 47.655890499 + ], + [ + 8.8749985, + 47.65597349799998 + ], + [ + 8.843022, + 47.71226249900002 + ], + [ + 8.79570849999999, + 47.675595499999986 + ], + [ + 8.7279815, + 47.692680499 + ], + [ + 8.740104499999973, + 47.752789001 + ], + [ + 8.61233, + 47.801462 + ], + [ + 8.510115, + 47.776190499999984 + ], + [ + 8.606369500000028, + 47.66900549899998 + ], + [ + 8.595602, + 47.6055445 + ], + [ + 8.562841, + 47.599432498 + ], + [ + 8.426434500000028, + 47.567548998 + ], + [ + 7.894107500000018, + 47.586374998999986 + ], + [ + 7.713784499999974, + 47.539405 + ], + [ + 7.634097, + 47.56111350100002 + ], + [ + 7.589039, + 47.589877999 + ], + [ + 7.545990500000016, + 47.74357399899998 + ], + [ + 7.577291, + 48.115654999000014 + ], + [ + 7.5779195, + 48.121391999000025 + ], + [ + 7.680713, + 48.25726699699999 + ], + [ + 7.9596305, + 48.71858099899998 + ], + [ + 8.222007, + 48.60322749900001 + ], + [ + 8.303992, + 48.34909449700001 + ], + [ + 8.737186499000018, + 48.377976999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.230779499999983, + 48.510511 + ], + [ + 10.1338955, + 48.45487149899998 + ], + [ + 10.0326945, + 48.45719649900002 + ], + [ + 9.997606, + 48.35011799900002 + ], + [ + 10.095357499999977, + 48.16401499900002 + ], + [ + 10.136457, + 48.108459498 + ], + [ + 10.135728, + 48.02376149700001 + ], + [ + 10.132387, + 48.01539999900001 + ], + [ + 10.11495450000001, + 47.97625750100002 + ], + [ + 10.104207, + 47.974358497000026 + ], + [ + 10.11013650000001, + 47.937149998999985 + ], + [ + 10.131928500000015, + 47.820087496999975 + ], + [ + 10.0772925, + 47.63927449800002 + ], + [ + 9.692543, + 47.610768999000015 + ], + [ + 9.5587205, + 47.54189299900003 + ], + [ + 9.495604, + 47.551454998999986 + ], + [ + 9.182192, + 47.655890499 + ], + [ + 9.030533, + 47.806520499999976 + ], + [ + 9.128582, + 47.846817499 + ], + [ + 9.151105, + 47.89498299799999 + ], + [ + 9.012045, + 47.936922998 + ], + [ + 8.953761, + 48.107278999000016 + ], + [ + 8.751237, + 48.159539998000014 + ], + [ + 8.737186499000018, + 48.377976999 + ], + [ + 8.774055, + 48.416278498999986 + ], + [ + 8.75571050000002, + 48.504140001 + ], + [ + 8.768902500000024, + 48.521840999 + ], + [ + 9.129176500000028, + 48.60126649900002 + ], + [ + 9.1512295, + 48.60405549799998 + ], + [ + 9.582475499999987, + 48.539146999000025 + ], + [ + 9.5851745, + 48.536741499000016 + ], + [ + 9.9440715, + 48.631755499 + ], + [ + 10.230779499999983, + 48.510511 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 11.599306500000012, + 48.95149699900003 + ], + [ + 11.719435, + 48.78234549899997 + ], + [ + 11.706735, + 48.6166465 + ], + [ + 11.9101865, + 48.58523150000002 + ], + [ + 12.017122500000028, + 48.430675999000016 + ], + [ + 12.250551, + 48.32194599799999 + ], + [ + 12.483791, + 48.429675498999984 + ], + [ + 12.607291499999974, + 48.353632 + ], + [ + 12.9446845, + 48.206692498999985 + ], + [ + 12.751555, + 48.11281049799999 + ], + [ + 12.86018150000001, + 47.996639999000024 + ], + [ + 12.8757855, + 47.962608999 + ], + [ + 13.046055500000023, + 47.520502498999974 + ], + [ + 12.695795499999974, + 47.682222998999976 + ], + [ + 12.575026499999979, + 47.632316 + ], + [ + 12.338045498999975, + 47.697087501 + ], + [ + 12.060662, + 47.618743499 + ], + [ + 11.632883, + 47.59244599700003 + ], + [ + 11.410219, + 47.49532400099997 + ], + [ + 11.4214275, + 47.44485199899998 + ], + [ + 11.0165005, + 47.396368000999985 + ], + [ + 10.991202499999986, + 47.396131 + ], + [ + 10.886199, + 47.536847998999974 + ], + [ + 10.9542765, + 47.61652049899999 + ], + [ + 10.7158885, + 47.705480497 + ], + [ + 10.7670905, + 47.843793499000014 + ], + [ + 10.801532, + 48.1041705 + ], + [ + 10.903411, + 48.23667650099998 + ], + [ + 11.03451, + 48.19299200099999 + ], + [ + 11.116768499999978, + 48.26847799900003 + ], + [ + 11.311675, + 48.452272999 + ], + [ + 11.295411, + 48.474574 + ], + [ + 11.022986, + 48.620171497 + ], + [ + 11.0059415, + 48.82188299799998 + ], + [ + 10.93683950000002, + 48.863275999 + ], + [ + 11.201364500000011, + 49.046551498999975 + ], + [ + 11.385714, + 49.078858001000015 + ], + [ + 11.599306500000012, + 48.95149699900003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.839507, + 48.77160500100001 + ], + [ + 13.796107, + 48.71360049899999 + ], + [ + 13.727090499999974, + 48.513019500999974 + ], + [ + 13.51336950000001, + 48.59097799800003 + ], + [ + 13.438430499999981, + 48.548895001 + ], + [ + 13.407838, + 48.372160501 + ], + [ + 13.177043, + 48.294389997 + ], + [ + 12.9446845, + 48.206692498999985 + ], + [ + 12.607291499999974, + 48.353632 + ], + [ + 12.483791, + 48.429675498999984 + ], + [ + 12.250551, + 48.32194599799999 + ], + [ + 12.017122500000028, + 48.430675999000016 + ], + [ + 11.9101865, + 48.58523150000002 + ], + [ + 11.706735, + 48.6166465 + ], + [ + 11.719435, + 48.78234549899997 + ], + [ + 11.599306500000012, + 48.95149699900003 + ], + [ + 11.659785, + 49.01612949999998 + ], + [ + 12.0654265, + 48.9436955 + ], + [ + 12.097496, + 48.771991997999976 + ], + [ + 12.135276, + 48.765911999000025 + ], + [ + 12.479026499999975, + 49.03198599900003 + ], + [ + 12.768203, + 49.114760999 + ], + [ + 13.170907999, + 49.173579501 + ], + [ + 13.4166515, + 48.980035499 + ], + [ + 13.5515785, + 48.96778749700002 + ], + [ + 13.839507, + 48.77160500100001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 12.550988500000017, + 49.905088001000024 + ], + [ + 12.401524, + 49.75837299800003 + ], + [ + 12.593778499999985, + 49.54219149900001 + ], + [ + 12.633763499999986, + 49.47619499799998 + ], + [ + 13.170907999, + 49.173579501 + ], + [ + 12.768203, + 49.114760999 + ], + [ + 12.479026499999975, + 49.03198599900003 + ], + [ + 12.135276, + 48.765911999000025 + ], + [ + 12.097496, + 48.771991997999976 + ], + [ + 12.0654265, + 48.9436955 + ], + [ + 11.659785, + 49.01612949999998 + ], + [ + 11.599306500000012, + 48.95149699900003 + ], + [ + 11.385714, + 49.078858001000015 + ], + [ + 11.247176, + 49.325353 + ], + [ + 11.557755, + 49.41904200099998 + ], + [ + 11.562709117999987, + 49.67727206 + ], + [ + 11.630662500000028, + 49.76057099899998 + ], + [ + 11.854835499999979, + 49.84710899800001 + ], + [ + 11.90369149999998, + 49.97902000099998 + ], + [ + 12.260799, + 50.05815649800002 + ], + [ + 12.550988500000017, + 49.905088001000024 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 11.919884500000023, + 50.42440349899999 + ], + [ + 12.100900500000023, + 50.31802799799999 + ], + [ + 12.160679, + 50.219848997999975 + ], + [ + 12.260799, + 50.05815649800002 + ], + [ + 11.90369149999998, + 49.97902000099998 + ], + [ + 11.854835499999979, + 49.84710899800001 + ], + [ + 11.630662500000028, + 49.76057099899998 + ], + [ + 11.562709117999987, + 49.67727206 + ], + [ + 11.368694, + 49.66670800100002 + ], + [ + 11.2803045, + 49.60430150000002 + ], + [ + 10.927335500000027, + 49.76843 + ], + [ + 10.654417500000022, + 49.72112349899999 + ], + [ + 10.551436, + 49.75577249999998 + ], + [ + 10.448965, + 49.822177001 + ], + [ + 10.5052485, + 49.87668199900003 + ], + [ + 10.8601165, + 50.09178549699999 + ], + [ + 10.729202, + 50.23000549699998 + ], + [ + 10.8514945, + 50.26276249900002 + ], + [ + 10.715266499999984, + 50.363590998 + ], + [ + 10.9457185, + 50.38646649899999 + ], + [ + 11.189943, + 50.27118550099999 + ], + [ + 11.265938, + 50.479421 + ], + [ + 11.481568, + 50.431621501 + ], + [ + 11.603290500000014, + 50.39876600100001 + ], + [ + 11.919884500000023, + 50.42440349899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 11.562709117999987, + 49.67727206 + ], + [ + 11.557755, + 49.41904200099998 + ], + [ + 11.247176, + 49.325353 + ], + [ + 11.385714, + 49.078858001000015 + ], + [ + 11.201364500000011, + 49.046551498999975 + ], + [ + 10.93683950000002, + 48.863275999 + ], + [ + 10.642254499999979, + 49.016631501 + ], + [ + 10.4098495, + 48.97743549900002 + ], + [ + 10.256763499999977, + 49.059495 + ], + [ + 10.1119665, + 49.384910499 + ], + [ + 10.11832750000002, + 49.47316949899999 + ], + [ + 10.083623, + 49.542955499000016 + ], + [ + 10.110316, + 49.62140849999997 + ], + [ + 10.551436, + 49.75577249999998 + ], + [ + 10.654417500000022, + 49.72112349899999 + ], + [ + 10.927335500000027, + 49.76843 + ], + [ + 11.2803045, + 49.60430150000002 + ], + [ + 11.368694, + 49.66670800100002 + ], + [ + 11.562709117999987, + 49.67727206 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.729202, + 50.23000549699998 + ], + [ + 10.8601165, + 50.09178549699999 + ], + [ + 10.5052485, + 49.87668199900003 + ], + [ + 10.448965, + 49.822177001 + ], + [ + 10.551436, + 49.75577249999998 + ], + [ + 10.110316, + 49.62140849999997 + ], + [ + 10.083623, + 49.542955499000016 + ], + [ + 9.926560999, + 49.48483550100002 + ], + [ + 9.648736, + 49.791477499999985 + ], + [ + 9.471497499, + 49.77972650100003 + ], + [ + 9.295673, + 49.740530998999986 + ], + [ + 9.41092, + 49.66350799899999 + ], + [ + 9.103006, + 49.577456 + ], + [ + 9.150809, + 49.742850497 + ], + [ + 9.036080500000025, + 49.846503998 + ], + [ + 9.05008, + 49.866315000999975 + ], + [ + 9.016088500000023, + 49.991340501000025 + ], + [ + 8.990559999000027, + 50.06711900099998 + ], + [ + 9.404984500000012, + 50.087734497999975 + ], + [ + 9.623150999000018, + 50.22903999800002 + ], + [ + 9.7329145, + 50.356149499000026 + ], + [ + 9.935655, + 50.419606499999986 + ], + [ + 10.0413385, + 50.51646949899998 + ], + [ + 10.450532, + 50.4018595 + ], + [ + 10.610115, + 50.227994998999975 + ], + [ + 10.729202, + 50.23000549699998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.93683950000002, + 48.863275999 + ], + [ + 11.0059415, + 48.82188299799998 + ], + [ + 11.022986, + 48.620171497 + ], + [ + 11.295411, + 48.474574 + ], + [ + 11.311675, + 48.452272999 + ], + [ + 11.116768499999978, + 48.26847799900003 + ], + [ + 11.03451, + 48.19299200099999 + ], + [ + 10.903411, + 48.23667650099998 + ], + [ + 10.801532, + 48.1041705 + ], + [ + 10.7670905, + 47.843793499000014 + ], + [ + 10.7158885, + 47.705480497 + ], + [ + 10.9542765, + 47.61652049899999 + ], + [ + 10.886199, + 47.536847998999974 + ], + [ + 10.454439, + 47.55579699899999 + ], + [ + 10.178353, + 47.27011399899999 + ], + [ + 9.999526, + 47.48301699699999 + ], + [ + 9.967813499999977, + 47.546240496999985 + ], + [ + 9.5587205, + 47.54189299900003 + ], + [ + 9.692543, + 47.610768999000015 + ], + [ + 10.0772925, + 47.63927449800002 + ], + [ + 10.131928500000015, + 47.820087496999975 + ], + [ + 10.11013650000001, + 47.937149998999985 + ], + [ + 10.104207, + 47.974358497000026 + ], + [ + 10.11495450000001, + 47.97625750100002 + ], + [ + 10.132387, + 48.01539999900001 + ], + [ + 10.135728, + 48.02376149700001 + ], + [ + 10.136457, + 48.108459498 + ], + [ + 10.095357499999977, + 48.16401499900002 + ], + [ + 9.997606, + 48.35011799900002 + ], + [ + 10.0326945, + 48.45719649900002 + ], + [ + 10.1338955, + 48.45487149899998 + ], + [ + 10.230779499999983, + 48.510511 + ], + [ + 10.278268, + 48.51607449900001 + ], + [ + 10.487258, + 48.69666200099999 + ], + [ + 10.423689, + 48.744495997 + ], + [ + 10.4098495, + 48.97743549900002 + ], + [ + 10.642254499999979, + 49.016631501 + ], + [ + 10.93683950000002, + 48.863275999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.66698, + 52.474166998999976 + ], + [ + 13.699738, + 52.37788299800002 + ], + [ + 13.420984998999984, + 52.376247001000024 + ], + [ + 13.31212, + 52.39959950000002 + ], + [ + 13.165898, + 52.39427549800001 + ], + [ + 13.153695500000026, + 52.50182150099999 + ], + [ + 13.164263, + 52.59890050000001 + ], + [ + 13.39854, + 52.648194498 + ], + [ + 13.610827500000028, + 52.54423550000001 + ], + [ + 13.66698, + 52.474166998999976 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 14.412157, + 53.329635998000015 + ], + [ + 14.143658, + 52.9613685 + ], + [ + 14.156692, + 52.89559099899998 + ], + [ + 14.436438, + 52.679900498999984 + ], + [ + 14.565063, + 52.624497 + ], + [ + 14.534361999, + 52.395008 + ], + [ + 14.600891499999989, + 52.272051998999984 + ], + [ + 14.755227, + 52.070024998 + ], + [ + 14.716716, + 52.001188001 + ], + [ + 14.729862, + 51.581776999 + ], + [ + 14.447771, + 51.542068997 + ], + [ + 14.163324499999987, + 51.54104299900001 + ], + [ + 13.835313, + 51.37678999799999 + ], + [ + 13.691250500000024, + 51.374012999 + ], + [ + 13.21015, + 51.404735999000025 + ], + [ + 13.051025, + 51.647677 + ], + [ + 13.1509135, + 51.859610499999974 + ], + [ + 12.769780500000024, + 51.979274499999974 + ], + [ + 12.3761225, + 52.04511949800002 + ], + [ + 12.27672449900001, + 52.104018 + ], + [ + 12.31718, + 52.454095499 + ], + [ + 12.171555, + 52.506336497 + ], + [ + 12.249203500000021, + 52.79186199899999 + ], + [ + 12.126811499999974, + 52.890199499 + ], + [ + 11.597784499999989, + 53.03592649900003 + ], + [ + 11.265732, + 53.121978 + ], + [ + 12.325101500000017, + 53.321301498000025 + ], + [ + 12.3317515, + 53.318011 + ], + [ + 12.984683, + 53.1649855 + ], + [ + 13.2414035, + 53.232401 + ], + [ + 13.710065499999985, + 53.4790625 + ], + [ + 14.412157, + 53.329635998000015 + ] + ], + [ + [ + 13.66698, + 52.474166998999976 + ], + [ + 13.610827500000028, + 52.54423550000001 + ], + [ + 13.39854, + 52.648194498 + ], + [ + 13.164263, + 52.59890050000001 + ], + [ + 13.153695500000026, + 52.50182150099999 + ], + [ + 13.165898, + 52.39427549800001 + ], + [ + 13.31212, + 52.39959950000002 + ], + [ + 13.420984998999984, + 52.376247001000024 + ], + [ + 13.699738, + 52.37788299800002 + ], + [ + 13.66698, + 52.474166998999976 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 8.979256, + 53.045849499999974 + ], + [ + 8.915827, + 53.011021497 + ], + [ + 8.711424, + 53.044629997000015 + ], + [ + 8.6548985, + 53.10886449999998 + ], + [ + 8.485330499999975, + 53.22712 + ], + [ + 8.984185500000024, + 53.12607099899998 + ], + [ + 8.979256, + 53.045849499999974 + ] + ] + ], + [ + [ + [ + 8.652134000999979, + 53.51601699899999 + ], + [ + 8.492652, + 53.47242000099999 + ], + [ + 8.554898499999979, + 53.52513100099998 + ], + [ + 8.4832025, + 53.60049899799998 + ], + [ + 8.520410500000025, + 53.60620500099998 + ], + [ + 8.650632499999972, + 53.602565001000016 + ], + [ + 8.652134000999979, + 53.51601699899999 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.308312, + 53.43322149800002 + ], + [ + 9.768861, + 53.50527899799999 + ], + [ + 9.73010399899999, + 53.557580997 + ], + [ + 9.945376, + 53.652927998 + ], + [ + 10.072805, + 53.709633999 + ], + [ + 10.236678499999982, + 53.49635449800002 + ], + [ + 10.308312, + 53.43322149800002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.479113, + 50.440685497 + ], + [ + 9.7329145, + 50.356149499000026 + ], + [ + 9.623150999000018, + 50.22903999800002 + ], + [ + 9.404984500000012, + 50.087734497999975 + ], + [ + 8.990559999000027, + 50.06711900099998 + ], + [ + 9.016088500000023, + 49.991340501000025 + ], + [ + 9.05008, + 49.866315000999975 + ], + [ + 9.036080500000025, + 49.846503998 + ], + [ + 9.150809, + 49.742850497 + ], + [ + 9.103006, + 49.577456 + ], + [ + 9.083426499999973, + 49.52608699699999 + ], + [ + 8.93188, + 49.470636996999986 + ], + [ + 8.950348500000018, + 49.45499299900001 + ], + [ + 8.899355, + 49.48455 + ], + [ + 8.899572499999977, + 49.50365549899999 + ], + [ + 8.581375, + 49.51978049899998 + ], + [ + 8.4224395, + 49.583385498999974 + ], + [ + 8.414774, + 49.595051997999974 + ], + [ + 8.44637749899999, + 49.73079949700002 + ], + [ + 8.448365, + 49.73366149899999 + ], + [ + 8.400055, + 49.803675 + ], + [ + 8.3430305, + 49.940506 + ], + [ + 8.288245, + 49.995134 + ], + [ + 8.190038500000014, + 50.03529599699999 + ], + [ + 8.17513550000001, + 50.034255497 + ], + [ + 7.773997, + 50.066539998999986 + ], + [ + 8.1219135, + 50.277224999 + ], + [ + 8.354557, + 50.29422999899998 + ], + [ + 8.467215, + 50.41504849900002 + ], + [ + 8.5141395, + 50.39935149899998 + ], + [ + 8.577542, + 50.415019 + ], + [ + 9.042425499999979, + 50.49799 + ], + [ + 9.286735, + 50.437298 + ], + [ + 9.479113, + 50.440685497 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.125776499999972, + 50.685813998000015 + ], + [ + 8.151592, + 50.59937099899997 + ], + [ + 7.971559500000012, + 50.40622049900003 + ], + [ + 8.1219135, + 50.277224999 + ], + [ + 7.773997, + 50.066539998999986 + ], + [ + 7.764844499999981, + 50.08259049899999 + ], + [ + 7.7346305, + 49.998688499000025 + ], + [ + 7.963557, + 49.833101999 + ], + [ + 7.905437, + 49.75226349899998 + ], + [ + 7.7033305, + 49.652514997000026 + ], + [ + 7.522752500000024, + 49.707622499000024 + ], + [ + 7.276622499999974, + 49.54862350000002 + ], + [ + 7.02798, + 49.63943849899999 + ], + [ + 7.0443115, + 49.689302 + ], + [ + 7.222511, + 49.88495050099999 + ], + [ + 7.202684499999975, + 49.96632300099998 + ], + [ + 6.979021, + 50.09791099900002 + ], + [ + 7.0687785, + 50.27978549900001 + ], + [ + 6.984338498999989, + 50.348893498999985 + ], + [ + 6.800711499999977, + 50.36178149900002 + ], + [ + 6.927901, + 50.55861850000002 + ], + [ + 7.1952005, + 50.642722999 + ], + [ + 7.210872, + 50.649543499 + ], + [ + 7.2123995, + 50.623404999 + ], + [ + 7.44077199899999, + 50.711437998 + ], + [ + 7.6610035, + 50.82036450099997 + ], + [ + 7.785898, + 50.939913999 + ], + [ + 7.851496, + 50.92583250000001 + ], + [ + 8.03969, + 50.697375498999975 + ], + [ + 8.125776499999972, + 50.685813998000015 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.02798, + 49.63943849899999 + ], + [ + 6.891454, + 49.61342249799998 + ], + [ + 6.380052499999977, + 49.55110499900002 + ], + [ + 6.4749625, + 49.821274999000025 + ], + [ + 6.137662499999976, + 50.129951499000015 + ], + [ + 6.405028500000014, + 50.323308499 + ], + [ + 6.425295, + 50.32301199800003 + ], + [ + 6.800711499999977, + 50.36178149900002 + ], + [ + 6.984338498999989, + 50.348893498999985 + ], + [ + 7.0687785, + 50.27978549900001 + ], + [ + 6.979021, + 50.09791099900002 + ], + [ + 7.202684499999975, + 49.96632300099998 + ], + [ + 7.222511, + 49.88495050099999 + ], + [ + 7.0443115, + 49.689302 + ], + [ + 7.02798, + 49.63943849899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.773997, + 50.066539998999986 + ], + [ + 8.17513550000001, + 50.034255497 + ], + [ + 8.190038500000014, + 50.03529599699999 + ], + [ + 8.288245, + 49.995134 + ], + [ + 8.3430305, + 49.940506 + ], + [ + 8.400055, + 49.803675 + ], + [ + 8.448365, + 49.73366149899999 + ], + [ + 8.44637749899999, + 49.73079949700002 + ], + [ + 8.414774, + 49.595051997999974 + ], + [ + 8.4224395, + 49.583385498999974 + ], + [ + 8.422700500000019, + 49.57419249899999 + ], + [ + 8.423068, + 49.541821 + ], + [ + 8.474739704, + 49.44061602900001 + ], + [ + 8.497316, + 49.411347 + ], + [ + 8.4709155, + 49.340712999 + ], + [ + 8.487268, + 49.29002649900002 + ], + [ + 8.466985500000021, + 49.28297550100001 + ], + [ + 8.4130725, + 49.24981649900002 + ], + [ + 8.33997, + 49.080149999000014 + ], + [ + 8.277349, + 48.98993900099998 + ], + [ + 8.261284, + 48.98091699899999 + ], + [ + 8.232632998999975, + 48.966571500999976 + ], + [ + 8.068407499999978, + 48.999316497999985 + ], + [ + 7.910654500000021, + 49.04516349900001 + ], + [ + 7.635651, + 49.053950499999985 + ], + [ + 7.36875550000002, + 49.16145799899999 + ], + [ + 7.320341, + 49.18949899900002 + ], + [ + 7.394494, + 49.316351998000016 + ], + [ + 7.402075500000024, + 49.36771850100001 + ], + [ + 7.395898499999987, + 49.37204599699999 + ], + [ + 7.292601499999989, + 49.408222497 + ], + [ + 7.252589, + 49.43146550099999 + ], + [ + 7.276622499999974, + 49.54862350000002 + ], + [ + 7.522752500000024, + 49.707622499000024 + ], + [ + 7.7033305, + 49.652514997000026 + ], + [ + 7.905437, + 49.75226349899998 + ], + [ + 7.963557, + 49.833101999 + ], + [ + 7.7346305, + 49.998688499000025 + ], + [ + 7.764844499999981, + 50.08259049899999 + ], + [ + 7.773997, + 50.066539998999986 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 12.284594500000026, + 51.09116249700003 + ], + [ + 12.617355, + 50.98079299800003 + ], + [ + 12.652865500000019, + 50.923678000999985 + ], + [ + 12.250825500000019, + 50.818318498999986 + ], + [ + 12.3189165, + 50.67653249900002 + ], + [ + 11.94413750000001, + 50.591275499 + ], + [ + 11.919884500000023, + 50.42440349899999 + ], + [ + 11.603290500000014, + 50.39876600100001 + ], + [ + 11.481568, + 50.431621501 + ], + [ + 11.265938, + 50.479421 + ], + [ + 11.189943, + 50.27118550099999 + ], + [ + 10.9457185, + 50.38646649899999 + ], + [ + 10.715266499999984, + 50.363590998 + ], + [ + 10.8514945, + 50.26276249900002 + ], + [ + 10.729202, + 50.23000549699998 + ], + [ + 10.610115, + 50.227994998999975 + ], + [ + 10.450532, + 50.4018595 + ], + [ + 10.0413385, + 50.51646949899998 + ], + [ + 10.077555500000017, + 50.63762399699999 + ], + [ + 9.9261765, + 50.76738999899999 + ], + [ + 10.021558500000026, + 50.9929495 + ], + [ + 10.18234849999999, + 50.99848750000001 + ], + [ + 10.202181, + 51.012009001000024 + ], + [ + 10.210013, + 51.14408299899998 + ], + [ + 10.206942, + 51.19064899699998 + ], + [ + 9.928339, + 51.375299 + ], + [ + 10.365365, + 51.55589100100002 + ], + [ + 10.488551, + 51.574778498 + ], + [ + 10.677283, + 51.63837600099998 + ], + [ + 10.701372, + 51.64218749999998 + ], + [ + 10.916058998999972, + 51.616374001 + ], + [ + 10.978113, + 51.42688499899998 + ], + [ + 11.428868500000021, + 51.33980999900001 + ], + [ + 11.473968, + 51.29505849899999 + ], + [ + 11.385374500000012, + 51.24588699899999 + ], + [ + 11.484608499999979, + 51.105437499 + ], + [ + 11.696938499999987, + 51.08749099800002 + ], + [ + 12.021018500000025, + 50.96912249899998 + ], + [ + 12.163369499999988, + 50.95882249800002 + ], + [ + 12.224169, + 50.942934998 + ], + [ + 12.284594500000026, + 51.09116249700003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 12.5641005, + 55.994034 + ], + [ + 12.583112, + 55.807791501 + ], + [ + 12.584052499999984, + 55.72177349999998 + ], + [ + 12.6812885, + 55.588256999 + ], + [ + 12.504888, + 55.6374695 + ], + [ + 12.363498, + 55.593827498999985 + ], + [ + 12.250782, + 55.708411 + ], + [ + 12.089422, + 55.78082 + ], + [ + 12.01011649899999, + 55.96801749799999 + ], + [ + 11.844483500000024, + 55.967036999000015 + ], + [ + 12.5641005, + 55.994034 + ] + ] + ], + [ + [ + [ + 14.779674, + 55.29000449900002 + ], + [ + 15.158351, + 55.083439 + ], + [ + 14.683027, + 55.09734649699999 + ], + [ + 14.779674, + 55.29000449900002 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 11.743550500000026, + 55.78957349799998 + ], + [ + 11.805708192, + 55.68068123199998 + ], + [ + 11.87555, + 55.73759149900002 + ], + [ + 11.9599945, + 55.850509498 + ], + [ + 11.905017, + 55.9359095 + ], + [ + 12.0596445, + 55.73209000100002 + ], + [ + 11.980809, + 55.730124998 + ], + [ + 11.951244, + 55.67552199900001 + ], + [ + 12.084782, + 55.65425400100003 + ], + [ + 12.08717468499998, + 55.719519628 + ], + [ + 12.088165831000026, + 55.746555279 + ], + [ + 12.089422, + 55.78082 + ], + [ + 12.250782, + 55.708411 + ], + [ + 12.363498, + 55.593827498999985 + ], + [ + 12.221227, + 55.425629501 + ], + [ + 12.4563445, + 55.29250699900001 + ], + [ + 12.0024285, + 54.96804599699999 + ], + [ + 11.6157665, + 55.08135999899997 + ], + [ + 11.828402499999982, + 55.042315997 + ], + [ + 11.748527500000023, + 55.219173497999975 + ], + [ + 11.243200499000011, + 55.207942996999975 + ], + [ + 10.87105, + 55.74376300099999 + ], + [ + 11.348573, + 55.75773650000002 + ], + [ + 11.4824, + 55.96112800100002 + ], + [ + 11.777166500000021, + 55.9767685 + ], + [ + 11.743550500000026, + 55.78957349799998 + ] + ] + ], + [ + [ + [ + 12.166872, + 54.834666997 + ], + [ + 11.4617675, + 54.610306 + ], + [ + 10.956038499999977, + 54.81500649700001 + ], + [ + 12.166872, + 54.834666997 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.860733, + 55.625149 + ], + [ + 9.739651342, + 55.529699214 + ], + [ + 10.493877499, + 55.54795050000001 + ], + [ + 10.427106, + 55.42914599900001 + ], + [ + 10.856239500000015, + 55.29318950099997 + ], + [ + 10.5537165, + 54.944484499 + ], + [ + 10.072239, + 55.077411498 + ], + [ + 9.679817695, + 55.51198248700001 + ], + [ + 9.663652053000021, + 55.510181843 + ], + [ + 9.488094499999988, + 55.49062699699999 + ], + [ + 9.422177499999975, + 55.033451 + ], + [ + 10.0712885, + 54.877284997 + ], + [ + 9.61926649999998, + 54.93403200099999 + ], + [ + 9.420151499999974, + 54.83195650099998 + ], + [ + 9.113097, + 54.8736015 + ], + [ + 8.63592599899999, + 54.911682998 + ], + [ + 8.684189, + 55.15883999800002 + ], + [ + 8.620333500000015, + 55.428672999000014 + ], + [ + 8.076632500000017, + 55.556964999 + ], + [ + 8.17079, + 55.815367 + ], + [ + 9.387007499999982, + 55.92414649900002 + ], + [ + 9.447316, + 55.834682997000016 + ], + [ + 9.671952499999975, + 55.712069998 + ], + [ + 9.543939500000022, + 55.706680999000014 + ], + [ + 9.860733, + 55.625149 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.319437, + 56.672226998999975 + ], + [ + 9.795823499999983, + 56.561614 + ], + [ + 10.194114500000012, + 56.68469350100003 + ], + [ + 10.308140107999975, + 56.606842685 + ], + [ + 10.9599055, + 56.44208149899998 + ], + [ + 10.712867, + 56.14205549799999 + ], + [ + 10.345911, + 56.194126 + ], + [ + 10.009511, + 55.70087800099998 + ], + [ + 9.671952499999975, + 55.712069998 + ], + [ + 9.447316, + 55.834682997000016 + ], + [ + 9.387007499999982, + 55.92414649900002 + ], + [ + 8.17079, + 55.815367 + ], + [ + 8.386469, + 55.90727850000002 + ], + [ + 8.099594, + 56.036021998000024 + ], + [ + 8.19683, + 56.694996 + ], + [ + 8.668789, + 56.4678495 + ], + [ + 9.002038860000027, + 56.80120575 + ], + [ + 9.1771, + 56.708271 + ], + [ + 9.05857850000001, + 56.629835997999976 + ], + [ + 9.319437, + 56.672226998999975 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 8.668212, + 56.950069498 + ], + [ + 8.515605634, + 56.68652384799998 + ], + [ + 8.577901844, + 56.692498349 + ], + [ + 8.581561781, + 56.695444119 + ], + [ + 8.9003495, + 56.952026499 + ], + [ + 8.7765885, + 56.694549498000015 + ], + [ + 8.595991889, + 56.690836525 + ], + [ + 8.583263347000013, + 56.69057483300003 + ], + [ + 8.4040455, + 56.670237 + ], + [ + 8.232896, + 56.798159499 + ], + [ + 8.589805500000011, + 57.11797349699998 + ], + [ + 9.3992035, + 57.164098497 + ], + [ + 9.95829550000002, + 57.595298997999976 + ], + [ + 10.644709499999976, + 57.74275549999999 + ], + [ + 10.42233349999998, + 57.14775149799999 + ], + [ + 8.668212, + 56.950069498 + ] + ] + ], + [ + [ + [ + 10.277603904999978, + 56.70085894099998 + ], + [ + 9.801955, + 56.6385995 + ], + [ + 10.194114500000012, + 56.68469350100003 + ], + [ + 9.795823499999983, + 56.561614 + ], + [ + 9.319437, + 56.672226998999975 + ], + [ + 9.159611, + 56.67793249800002 + ], + [ + 9.24345, + 56.74848949699998 + ], + [ + 9.164284, + 56.88882849999999 + ], + [ + 10.272072, + 56.9368935 + ], + [ + 10.3327445, + 56.70807649699998 + ], + [ + 10.277603904999978, + 56.70085894099998 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 27.357049499000027, + 58.787144001 + ], + [ + 27.621053500000016, + 58.0051115 + ], + [ + 27.351579, + 57.51823699900001 + ], + [ + 26.52490549999999, + 57.516247497999984 + ], + [ + 26.056459, + 57.84843149699998 + ], + [ + 25.046307, + 58.04014600099998 + ], + [ + 24.834082500000022, + 57.9727795 + ], + [ + 24.352817500000015, + 57.87655650099998 + ], + [ + 24.58152, + 58.32541549899997 + ], + [ + 24.11198250000001, + 58.24046150100003 + ], + [ + 23.521601, + 58.56487950000002 + ], + [ + 23.404937, + 59.025805 + ], + [ + 23.730738499999973, + 59.23713250100002 + ], + [ + 24.796578, + 59.57180350099998 + ], + [ + 25.83015949899999, + 59.564065 + ], + [ + 26.759436, + 59.499518497999986 + ], + [ + 28.04186249999998, + 59.4701025 + ], + [ + 28.209798001000024, + 59.37138799899998 + ], + [ + 27.357049499000027, + 58.787144001 + ] + ] + ], + [ + [ + [ + 23.34560750000003, + 58.61022999800002 + ], + [ + 22.719874, + 58.21216500100002 + ], + [ + 21.828614, + 58.30703299800001 + ], + [ + 22.543011499999977, + 58.64205149600002 + ], + [ + 23.34560750000003, + 58.61022999800002 + ] + ] + ], + [ + [ + [ + 22.9317145, + 58.97105100099998 + ], + [ + 23.069148, + 58.838146000999984 + ], + [ + 22.393010999000012, + 58.891237998 + ], + [ + 22.592449, + 59.08807299699998 + ], + [ + 22.9317145, + 58.97105100099998 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 23.624222998999983, + 41.375727497000014 + ], + [ + 24.1179275, + 41.00608850100002 + ], + [ + 23.86774650000001, + 40.77872849900001 + ], + [ + 23.765077500000018, + 40.75789249899998 + ], + [ + 23.7568645, + 40.63456349799998 + ], + [ + 24.010988, + 40.389434499 + ], + [ + 24.005043, + 40.31456749900002 + ], + [ + 23.861864, + 40.37016300099998 + ], + [ + 23.694948, + 40.30393999900002 + ], + [ + 23.997488499999974, + 40.10770799900001 + ], + [ + 23.9472275, + 39.93801899699997 + ], + [ + 23.65232450000002, + 40.224617 + ], + [ + 23.005256498999984, + 40.35036050100001 + ], + [ + 22.814283499999988, + 40.47844299899998 + ], + [ + 22.947689500000024, + 40.62663649799998 + ], + [ + 22.682419, + 40.52896499899998 + ], + [ + 22.66395749999998, + 40.49155449699998 + ], + [ + 22.54789549999998, + 40.145462001 + ], + [ + 22.66243, + 39.975547999000014 + ], + [ + 22.1152075, + 40.18994899799998 + ], + [ + 22.184179500000027, + 40.301849498000024 + ], + [ + 21.928503, + 40.48796850000002 + ], + [ + 21.906351, + 40.68133599700002 + ], + [ + 21.822054, + 40.69629649900003 + ], + [ + 21.704187, + 40.86348349999997 + ], + [ + 21.787378, + 40.9311255 + ], + [ + 21.929438, + 41.10035049800001 + ], + [ + 22.216216, + 41.17045749800002 + ], + [ + 22.332052, + 41.12027250099999 + ], + [ + 22.732037, + 41.146391498000014 + ], + [ + 22.879178500000023, + 41.340652998 + ], + [ + 22.9275915, + 41.33853949899998 + ], + [ + 23.624222998999983, + 41.375727497000014 + ] + ] + ], + [ + [ + [ + 23.679613, + 39.972439001 + ], + [ + 23.750192500000026, + 39.91598499899999 + ], + [ + 23.355198, + 39.95388049899998 + ], + [ + 23.3263685, + 40.18334949899997 + ], + [ + 23.679613, + 39.972439001 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 24.079767, + 38.16191199899998 + ], + [ + 24.072212499999978, + 37.68205400099998 + ], + [ + 23.743593, + 37.853809497999976 + ], + [ + 23.672225500000025, + 37.94181999900002 + ], + [ + 23.5713945, + 37.993224499 + ], + [ + 23.5969505, + 38.01517499800002 + ], + [ + 23.179699500000027, + 37.951589997999974 + ], + [ + 23.133437, + 37.920439499 + ], + [ + 22.848893499999974, + 38.02820650000001 + ], + [ + 23.117532, + 38.060645997999984 + ], + [ + 23.126179, + 38.168400001 + ], + [ + 23.63415550000002, + 38.211311498999976 + ], + [ + 23.690418, + 38.34029749899997 + ], + [ + 24.079767, + 38.16191199899998 + ] + ] + ], + [ + [ + [ + 23.5226725, + 37.518099499000016 + ], + [ + 23.4244195, + 37.411700998000015 + ], + [ + 23.2003785, + 37.59665300099999 + ], + [ + 23.386825499999986, + 37.56118399899998 + ], + [ + 23.5226725, + 37.518099499000016 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 26.424524500000018, + 39.33404150000001 + ], + [ + 26.609173, + 39.010497998 + ], + [ + 25.831421, + 39.18841949900002 + ], + [ + 26.424524500000018, + 39.33404150000001 + ] + ] + ], + [ + [ + [ + 26.159764, + 38.55309299800001 + ], + [ + 26.03731349899999, + 38.19849399899999 + ], + [ + 25.8641245, + 38.24406799799999 + ], + [ + 25.857202500000028, + 38.58042900100003 + ], + [ + 26.159764, + 38.55309299800001 + ] + ] + ], + [ + [ + [ + 26.8575075, + 37.79709649799997 + ], + [ + 27.07025349999998, + 37.717021998 + ], + [ + 26.5665095, + 37.730647998999984 + ], + [ + 26.8575075, + 37.79709649799997 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 28.22072350000002, + 36.45793699799998 + ], + [ + 27.863466500000015, + 35.929278497999974 + ], + [ + 27.71846149999999, + 35.94023049899999 + ], + [ + 27.703456500000016, + 36.146589999000014 + ], + [ + 28.22072350000002, + 36.45793699799998 + ] + ] + ], + [ + [ + [ + 27.230274, + 35.508568001000015 + ], + [ + 27.134781, + 35.396366 + ], + [ + 27.061262, + 35.59654999899999 + ], + [ + 27.2101575, + 35.830795497999986 + ], + [ + 27.230274, + 35.508568001000015 + ] + ] + ], + [ + [ + [ + 24.9576055, + 37.89711749899999 + ], + [ + 24.9635755, + 37.683925499 + ], + [ + 24.684284, + 37.95106499899998 + ], + [ + 24.9576055, + 37.89711749899999 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 23.596821, + 35.628162498999984 + ], + [ + 23.8409785, + 35.52808 + ], + [ + 24.174324, + 35.58719999800002 + ], + [ + 24.317411, + 35.353774998 + ], + [ + 24.92800349999999, + 35.40690999899999 + ], + [ + 25.040821, + 35.400146499000016 + ], + [ + 25.490698, + 35.29833199799998 + ], + [ + 25.7719595, + 35.34151849900002 + ], + [ + 25.7262935, + 35.13115699799999 + ], + [ + 26.263292499999977, + 35.265228501000024 + ], + [ + 26.281149, + 35.111587499 + ], + [ + 25.550568, + 34.99075699799999 + ], + [ + 24.7709425, + 34.929885997999975 + ], + [ + 24.722517, + 35.092544499999974 + ], + [ + 24.287523498999974, + 35.17600650000003 + ], + [ + 23.515789, + 35.289715 + ], + [ + 23.596821, + 35.628162498999984 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 26.032758, + 40.730256999 + ], + [ + 25.632429, + 40.862804498 + ], + [ + 25.139545, + 40.99068749899999 + ], + [ + 24.81349, + 40.858085499000026 + ], + [ + 24.508724, + 40.95848099800003 + ], + [ + 24.088630500000022, + 40.72168399899999 + ], + [ + 23.86774650000001, + 40.77872849900001 + ], + [ + 24.1179275, + 41.00608850100002 + ], + [ + 23.624222998999983, + 41.375727497000014 + ], + [ + 24.059744, + 41.522112 + ], + [ + 24.525637, + 41.568699998 + ], + [ + 24.783956, + 41.36018899700002 + ], + [ + 25.1793755, + 41.310187998 + ], + [ + 25.224698499999988, + 41.26463099799997 + ], + [ + 25.90643749999998, + 41.307574998 + ], + [ + 25.948626, + 41.32034200099997 + ], + [ + 26.158688499999982, + 41.39118249699999 + ], + [ + 26.060393, + 41.68851600099998 + ], + [ + 26.357879, + 41.71110449899999 + ], + [ + 26.6001205, + 41.60119899799997 + ], + [ + 26.628431499999976, + 41.345533499 + ], + [ + 26.321652, + 41.250406499 + ], + [ + 26.291015500000015, + 40.93188349899998 + ], + [ + 26.032758, + 40.730256999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.1152075, + 40.18994899799998 + ], + [ + 21.918218500000023, + 39.85261149899998 + ], + [ + 21.29648450000002, + 39.85777299799997 + ], + [ + 21.097473, + 39.88035149799998 + ], + [ + 21.004242, + 40.154361499 + ], + [ + 20.778501, + 40.34878899900002 + ], + [ + 21.05606849999998, + 40.6166955 + ], + [ + 20.980204500000013, + 40.855665 + ], + [ + 21.787378, + 40.9311255 + ], + [ + 21.704187, + 40.86348349999997 + ], + [ + 21.822054, + 40.69629649900003 + ], + [ + 21.906351, + 40.68133599700002 + ], + [ + 21.928503, + 40.48796850000002 + ], + [ + 22.184179500000027, + 40.301849498000024 + ], + [ + 22.1152075, + 40.18994899799998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 21.29648450000002, + 39.85777299799997 + ], + [ + 21.181753, + 39.501956999000015 + ], + [ + 21.373546499999975, + 39.17473599800002 + ], + [ + 21.1086085, + 39.04614650100001 + ], + [ + 20.738746, + 39.01890949900002 + ], + [ + 20.4778215, + 39.27484149899999 + ], + [ + 20.464247, + 39.273101999 + ], + [ + 20.3006785, + 39.31573499699999 + ], + [ + 20.008812499999976, + 39.69129200100002 + ], + [ + 20.391308, + 39.788483499999984 + ], + [ + 20.312236499999983, + 39.991022498 + ], + [ + 20.778501, + 40.34878899900002 + ], + [ + 21.004242, + 40.154361499 + ], + [ + 21.097473, + 39.88035149799998 + ], + [ + 21.29648450000002, + 39.85777299799997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.66243, + 39.975547999000014 + ], + [ + 22.915911, + 39.60293599900001 + ], + [ + 22.976824, + 39.555328498999984 + ], + [ + 23.3514765, + 39.18777449999999 + ], + [ + 23.07373050000001, + 39.084652 + ], + [ + 23.212417500000015, + 39.146873497 + ], + [ + 23.1633645, + 39.2728995 + ], + [ + 22.821161500000017, + 39.277507501 + ], + [ + 23.018066499999975, + 39.00265499699998 + ], + [ + 22.5056705, + 39.131199 + ], + [ + 22.258116, + 39.2723085 + ], + [ + 21.939703, + 39.065337999 + ], + [ + 21.639002, + 39.250251499 + ], + [ + 21.396904, + 39.164478497 + ], + [ + 21.373546499999975, + 39.17473599800002 + ], + [ + 21.181753, + 39.501956999000015 + ], + [ + 21.29648450000002, + 39.85777299799997 + ], + [ + 21.918218500000023, + 39.85261149899998 + ], + [ + 22.1152075, + 40.18994899799998 + ], + [ + 22.66243, + 39.975547999000014 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 20.628674, + 38.32527149700002 + ], + [ + 20.79628550000001, + 38.065116999 + ], + [ + 20.341785500000015, + 38.17613199700003 + ], + [ + 20.536981500000024, + 38.469810499 + ], + [ + 20.628674, + 38.32527149700002 + ] + ] + ], + [ + [ + [ + 20.899757, + 37.77567349899999 + ], + [ + 20.988697, + 37.70522249700002 + ], + [ + 20.878824, + 37.729893 + ], + [ + 20.829103, + 37.644634998000015 + ], + [ + 20.625544, + 37.82070200099997 + ], + [ + 20.632630999000014, + 37.88441899899999 + ], + [ + 20.71006, + 37.922859999000025 + ], + [ + 20.899757, + 37.77567349899999 + ] + ] + ], + [ + [ + [ + 19.841421500000024, + 39.659159499 + ], + [ + 20.109863500000017, + 39.360972 + ], + [ + 19.641207, + 39.749874498999986 + ], + [ + 19.915536499999973, + 39.79195249899999 + ], + [ + 19.841421500000024, + 39.659159499 + ] + ] + ], + [ + [ + [ + 20.721731, + 38.62622449899999 + ], + [ + 20.55155350000001, + 38.57782749799998 + ], + [ + 20.5996705, + 38.77957899799998 + ], + [ + 20.693756, + 38.851817998 + ], + [ + 20.721731, + 38.62622449899999 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 22.3729725, + 38.14222349800002 + ], + [ + 22.26432, + 37.83939049899999 + ], + [ + 21.890155499, + 37.86580299899998 + ], + [ + 21.792816, + 37.602543 + ], + [ + 21.96572850000001, + 37.48326099799999 + ], + [ + 21.680233, + 37.377433999 + ], + [ + 21.105238, + 37.848926499000015 + ], + [ + 21.351074, + 38.10213849899998 + ], + [ + 21.871086, + 38.334537497999975 + ], + [ + 22.3729725, + 38.14222349800002 + ] + ] + ], + [ + [ + [ + 21.396904, + 39.164478497 + ], + [ + 21.571245, + 38.736785999 + ], + [ + 21.946253, + 38.783431998000026 + ], + [ + 21.999378, + 38.768867496999974 + ], + [ + 21.99988350000001, + 38.508353999 + ], + [ + 21.851717, + 38.374519497999984 + ], + [ + 21.486598730000026, + 38.301853584000014 + ], + [ + 21.486297499999978, + 38.32768649899998 + ], + [ + 21.48474447199999, + 38.306621568000025 + ], + [ + 21.318926, + 38.499629997 + ], + [ + 21.1428795, + 38.3037875 + ], + [ + 21.105279793000022, + 38.392762489 + ], + [ + 21.075875442999973, + 38.462344194000025 + ], + [ + 20.988678, + 38.66868599899999 + ], + [ + 20.726846500000022, + 38.814430499000025 + ], + [ + 20.764536, + 38.95730949900002 + ], + [ + 21.066231, + 38.87713649900002 + ], + [ + 21.1086085, + 39.04614650100001 + ], + [ + 21.373546499999975, + 39.17473599800002 + ], + [ + 21.396904, + 39.164478497 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 22.5056705, + 39.131199 + ], + [ + 23.018066499999975, + 39.00265499699998 + ], + [ + 22.527525, + 38.85890949999998 + ], + [ + 23.3777905, + 38.52575699800002 + ], + [ + 23.328289, + 38.50122049999999 + ], + [ + 23.560117, + 38.502597998 + ], + [ + 23.655134499999974, + 38.35249699899998 + ], + [ + 23.690418, + 38.34029749899997 + ], + [ + 23.63415550000002, + 38.211311498999976 + ], + [ + 23.126179, + 38.168400001 + ], + [ + 22.6080685, + 38.359401499 + ], + [ + 21.851717, + 38.374519497999984 + ], + [ + 21.99988350000001, + 38.508353999 + ], + [ + 21.999378, + 38.768867496999974 + ], + [ + 21.946253, + 38.783431998000026 + ], + [ + 21.571245, + 38.736785999 + ], + [ + 21.396904, + 39.164478497 + ], + [ + 21.639002, + 39.250251499 + ], + [ + 21.939703, + 39.065337999 + ], + [ + 22.258116, + 39.2723085 + ], + [ + 22.5056705, + 39.131199 + ] + ] + ], + [ + [ + [ + 23.426233500000023, + 38.90583049899999 + ], + [ + 24.155115, + 38.651188 + ], + [ + 24.248035500000015, + 38.22748199900002 + ], + [ + 24.58396349999998, + 38.0242235 + ], + [ + 24.30678, + 38.06962199899999 + ], + [ + 24.048601, + 38.395148998000025 + ], + [ + 23.648699, + 38.398697 + ], + [ + 23.511806499999977, + 38.587054997999985 + ], + [ + 23.196602, + 38.834670999000025 + ], + [ + 22.82939349999998, + 38.825450999 + ], + [ + 23.317873, + 39.038505499 + ], + [ + 23.426233500000023, + 38.90583049899999 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.962061, + 37.949569499 + ], + [ + 23.178438, + 37.803564498000014 + ], + [ + 23.120031499999982, + 37.72998499900001 + ], + [ + 23.2003785, + 37.59665300099999 + ], + [ + 23.4244195, + 37.411700998000015 + ], + [ + 22.725086, + 37.572639498 + ], + [ + 22.982481, + 37.04802699800001 + ], + [ + 23.196792500000015, + 36.434662 + ], + [ + 22.7856215, + 36.796966499 + ], + [ + 22.386833, + 36.591141 + ], + [ + 22.149515, + 37.01814649900001 + ], + [ + 21.9301395, + 36.9811555 + ], + [ + 21.877396, + 36.717616497999984 + ], + [ + 21.704893, + 36.811290499999984 + ], + [ + 21.565725499, + 37.163509499999975 + ], + [ + 21.680233, + 37.377433999 + ], + [ + 21.96572850000001, + 37.48326099799999 + ], + [ + 21.792816, + 37.602543 + ], + [ + 21.890155499, + 37.86580299899998 + ], + [ + 22.26432, + 37.83939049899999 + ], + [ + 22.3729725, + 38.14222349800002 + ], + [ + 22.962061, + 37.949569499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -7.031837, + 43.54447149700002 + ], + [ + -7.182441, + 43.392383497000026 + ], + [ + -6.824167, + 42.915012499 + ], + [ + -7.076834, + 42.50812399900002 + ], + [ + -6.8227655, + 42.490833001 + ], + [ + -6.784308, + 42.253608499999984 + ], + [ + -6.983513500000015, + 41.97290399899998 + ], + [ + -7.20046450000001, + 41.879749498000024 + ], + [ + -8.051862500000027, + 41.820613998 + ], + [ + -8.1650755, + 41.818302 + ], + [ + -8.199000500000011, + 42.15441899899997 + ], + [ + -8.863186, + 41.87206649900003 + ], + [ + -8.898017, + 42.1119195 + ], + [ + -8.658873500000027, + 42.29143499899999 + ], + [ + -8.833692499999984, + 42.47013449899998 + ], + [ + -8.726749499999983, + 42.68825149700001 + ], + [ + -9.0309545, + 42.69756299699998 + ], + [ + -9.277219, + 43.0441095 + ], + [ + -7.904372500000022, + 43.769103997 + ], + [ + -7.699736499999972, + 43.735115001 + ], + [ + -7.031837, + 43.54447149700002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -4.51230099899999, + 43.393204001000015 + ], + [ + -4.841038500000025, + 43.18070949999998 + ], + [ + -6.824167, + 42.915012499 + ], + [ + -7.182441, + 43.392383497000026 + ], + [ + -7.031837, + 43.54447149700002 + ], + [ + -5.84171, + 43.65595649900001 + ], + [ + -4.51230099899999, + 43.393204001000015 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -3.153338, + 43.35322199900003 + ], + [ + -3.450147, + 43.23620799899999 + ], + [ + -3.417681500000015, + 43.13336949799998 + ], + [ + -3.945488, + 43.005718496999975 + ], + [ + -3.815811, + 42.812561 + ], + [ + -3.99967, + 42.76893249699998 + ], + [ + -4.002319, + 42.830867497999975 + ], + [ + -4.04593, + 42.766566996999984 + ], + [ + -4.081359, + 42.761417499 + ], + [ + -4.238510999000027, + 42.95431499799997 + ], + [ + -4.737022998999976, + 43.02092349899999 + ], + [ + -4.841038500000025, + 43.18070949999998 + ], + [ + -4.51230099899999, + 43.393204001000015 + ], + [ + -3.426641001, + 43.41351300100001 + ], + [ + -3.153338, + 43.35322199900003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.508807499999989, + 43.376544998999975 + ], + [ + -2.412847, + 43.321082998 + ], + [ + -1.785978, + 43.35047899699998 + ], + [ + -1.728903, + 43.29608899700003 + ], + [ + -2.250807, + 42.89569099900001 + ], + [ + -2.420719, + 42.48926949899999 + ], + [ + -2.8581175, + 42.63816849900002 + ], + [ + -3.286797499999977, + 42.885097497 + ], + [ + -3.0369895, + 42.98218549799998 + ], + [ + -3.0890235, + 43.00158299899999 + ], + [ + -3.141396, + 43.161483498999985 + ], + [ + -3.417681500000015, + 43.13336949799998 + ], + [ + -3.450147, + 43.23620799899999 + ], + [ + -3.153338, + 43.35322199900003 + ], + [ + -2.508807499999989, + 43.376544998999975 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.724501, + 42.920158500000014 + ], + [ + -0.901080499999978, + 42.74269099899999 + ], + [ + -1.2881375, + 42.522762499 + ], + [ + -1.4107495, + 41.91894149900003 + ], + [ + -1.847183500000028, + 42.007988 + ], + [ + -1.681452, + 42.192402 + ], + [ + -2.420719, + 42.48926949899999 + ], + [ + -2.250807, + 42.89569099900001 + ], + [ + -1.728903, + 43.29608899700003 + ], + [ + -1.6087885, + 43.251976001 + ], + [ + -0.724501, + 42.920158500000014 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.420719, + 42.48926949899999 + ], + [ + -1.681452, + 42.192402 + ], + [ + -1.847183500000028, + 42.007988 + ], + [ + -1.8565395, + 41.966388498000015 + ], + [ + -2.282167500000014, + 42.13168699900001 + ], + [ + -2.9136375, + 42.02283849999998 + ], + [ + -3.13429450000001, + 42.54202249799999 + ], + [ + -2.8581175, + 42.63816849900002 + ], + [ + -2.420719, + 42.48926949899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.724501, + 42.920158500000014 + ], + [ + -0.551047, + 42.777637500000026 + ], + [ + -0.313342, + 42.849364997 + ], + [ + 0.4777555, + 42.70001999700003 + ], + [ + 0.660127, + 42.69095249899999 + ], + [ + 0.767070499999988, + 42.34881599800002 + ], + [ + 0.335948499999972, + 41.40743249899998 + ], + [ + 0.385724, + 41.278839498000025 + ], + [ + 0.220409500000017, + 41.07143 + ], + [ + 0.170789500000012, + 40.732837 + ], + [ + -0.197124499999973, + 40.78445799899998 + ], + [ + -0.279997499999979, + 40.36949949900003 + ], + [ + -0.837749501000019, + 39.97681799700001 + ], + [ + -0.797643, + 39.88107649900002 + ], + [ + -0.912739, + 39.87310750099999 + ], + [ + -1.1423615, + 39.971855499000014 + ], + [ + -1.165154, + 40.01010899800002 + ], + [ + -1.448831499999983, + 40.14535849700002 + ], + [ + -1.806344, + 40.39824699899998 + ], + [ + -1.545494500000018, + 40.59521099900002 + ], + [ + -1.6174335, + 40.94374099700002 + ], + [ + -2.05169, + 41.14685799900002 + ], + [ + -2.170485499999984, + 41.318836498999985 + ], + [ + -1.825316, + 41.778365999000016 + ], + [ + -1.8565395, + 41.966388498000015 + ], + [ + -1.847183500000028, + 42.007988 + ], + [ + -1.4107495, + 41.91894149900003 + ], + [ + -1.2881375, + 42.522762499 + ], + [ + -0.901080499999978, + 42.74269099899999 + ], + [ + -0.724501, + 42.920158500000014 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -4.578901, + 40.217157499 + ], + [ + -4.160293500000023, + 40.68985350000003 + ], + [ + -3.539573, + 41.16499349899999 + ], + [ + -3.394300499999986, + 41.000234498 + ], + [ + -3.468398, + 40.689896498999985 + ], + [ + -3.130407, + 40.40515399899999 + ], + [ + -3.194294500000012, + 40.248005998999986 + ], + [ + -3.067689, + 40.157884998999975 + ], + [ + -3.161419500000022, + 40.06489699799999 + ], + [ + -3.623443, + 40.053848500000015 + ], + [ + -4.190704, + 40.29731599799999 + ], + [ + -4.578901, + 40.217157499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.276622499999974, + 49.54862350000002 + ], + [ + 7.252589, + 49.43146550099999 + ], + [ + 7.292601499999989, + 49.408222497 + ], + [ + 7.395898499999987, + 49.37204599699999 + ], + [ + 7.402075500000024, + 49.36771850100001 + ], + [ + 7.394494, + 49.316351998000016 + ], + [ + 7.320341, + 49.18949899900002 + ], + [ + 7.36875550000002, + 49.16145799899999 + ], + [ + 7.101069, + 49.155998 + ], + [ + 6.723465499999975, + 49.21882899899998 + ], + [ + 6.556986, + 49.41920849899998 + ], + [ + 6.367107499999975, + 49.46950700100001 + ], + [ + 6.380052499999977, + 49.55110499900002 + ], + [ + 6.891454, + 49.61342249799998 + ], + [ + 7.02798, + 49.63943849899999 + ], + [ + 7.276622499999974, + 49.54862350000002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 14.974183, + 51.36394999700002 + ], + [ + 15.037271, + 51.24374999899999 + ], + [ + 14.823362, + 50.87055049700001 + ], + [ + 14.6188, + 50.85780449700002 + ], + [ + 14.491221, + 51.043530498999985 + ], + [ + 14.317873500000019, + 51.05469899899998 + ], + [ + 14.388335, + 50.90029899799998 + ], + [ + 13.652174, + 50.73035999799998 + ], + [ + 13.421885498999984, + 51.034199999 + ], + [ + 13.198708, + 51.23040549900003 + ], + [ + 13.21015, + 51.404735999000025 + ], + [ + 13.691250500000024, + 51.374012999 + ], + [ + 13.835313, + 51.37678999799999 + ], + [ + 14.163324499999987, + 51.54104299900001 + ], + [ + 14.447771, + 51.542068997 + ], + [ + 14.729862, + 51.581776999 + ], + [ + 14.974183, + 51.36394999700002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.652174, + 50.73035999799998 + ], + [ + 13.501846, + 50.63364299900002 + ], + [ + 12.948144500000012, + 50.404311499000016 + ], + [ + 12.5837785, + 50.40707899900002 + ], + [ + 12.100900500000023, + 50.31802799799999 + ], + [ + 11.919884500000023, + 50.42440349899999 + ], + [ + 11.94413750000001, + 50.591275499 + ], + [ + 12.3189165, + 50.67653249900002 + ], + [ + 12.250825500000019, + 50.818318498999986 + ], + [ + 12.652865500000019, + 50.923678000999985 + ], + [ + 12.617355, + 50.98079299800003 + ], + [ + 12.926016, + 51.2182075 + ], + [ + 13.198708, + 51.23040549900003 + ], + [ + 13.421885498999984, + 51.034199999 + ], + [ + 13.652174, + 50.73035999799998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.21015, + 51.404735999000025 + ], + [ + 13.198708, + 51.23040549900003 + ], + [ + 12.926016, + 51.2182075 + ], + [ + 12.617355, + 50.98079299800003 + ], + [ + 12.284594500000026, + 51.09116249700003 + ], + [ + 12.1709045, + 51.2755085 + ], + [ + 12.193544499999973, + 51.33251850099998 + ], + [ + 12.198939, + 51.531320498000014 + ], + [ + 12.580263, + 51.62606549999998 + ], + [ + 13.051025, + 51.647677 + ], + [ + 13.21015, + 51.404735999000025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.051025, + 51.647677 + ], + [ + 12.580263, + 51.62606549999998 + ], + [ + 12.198939, + 51.531320498000014 + ], + [ + 12.193544499999973, + 51.33251850099998 + ], + [ + 12.1709045, + 51.2755085 + ], + [ + 12.284594500000026, + 51.09116249700003 + ], + [ + 12.224169, + 50.942934998 + ], + [ + 12.163369499999988, + 50.95882249800002 + ], + [ + 12.021018500000025, + 50.96912249899998 + ], + [ + 11.696938499999987, + 51.08749099800002 + ], + [ + 11.484608499999979, + 51.105437499 + ], + [ + 11.385374500000012, + 51.24588699899999 + ], + [ + 11.473968, + 51.29505849899999 + ], + [ + 11.428868500000021, + 51.33980999900001 + ], + [ + 10.978113, + 51.42688499899998 + ], + [ + 10.916058998999972, + 51.616374001 + ], + [ + 10.701372, + 51.64218749999998 + ], + [ + 10.561227, + 52.00406599899998 + ], + [ + 10.801428499999986, + 52.0480005 + ], + [ + 10.964414499999975, + 52.05664299799997 + ], + [ + 11.086244, + 52.22863399900001 + ], + [ + 10.93454250000002, + 52.471794999 + ], + [ + 11.0087815, + 52.496747500000026 + ], + [ + 10.759314500000016, + 52.79583050000002 + ], + [ + 10.841556, + 52.852205 + ], + [ + 11.505027, + 52.941032499000016 + ], + [ + 11.597784499999989, + 53.03592649900003 + ], + [ + 12.126811499999974, + 52.890199499 + ], + [ + 12.249203500000021, + 52.79186199899999 + ], + [ + 12.171555, + 52.506336497 + ], + [ + 12.31718, + 52.454095499 + ], + [ + 12.27672449900001, + 52.104018 + ], + [ + 12.3761225, + 52.04511949800002 + ], + [ + 12.769780500000024, + 51.979274499999974 + ], + [ + 13.1509135, + 51.859610499999974 + ], + [ + 13.051025, + 51.647677 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.420151499999974, + 54.83195650099998 + ], + [ + 9.422934, + 54.823222998 + ], + [ + 9.491949499999976, + 54.822635499 + ], + [ + 10.03117, + 54.63657500099998 + ], + [ + 10.168517, + 54.432844998 + ], + [ + 10.174162, + 54.345745498999975 + ], + [ + 10.713750499000014, + 54.305072500999984 + ], + [ + 11.1256095, + 54.373613499999976 + ], + [ + 11.093783, + 54.19905050099999 + ], + [ + 10.755363499999987, + 54.054051501 + ], + [ + 10.840886001, + 53.99189399800002 + ], + [ + 10.903661500999988, + 53.95682200099998 + ], + [ + 10.76296450000001, + 53.811153 + ], + [ + 10.951918499999977, + 53.64762249900002 + ], + [ + 10.595047, + 53.36392750099998 + ], + [ + 10.469184, + 53.385844 + ], + [ + 10.308312, + 53.43322149800002 + ], + [ + 10.236678499999982, + 53.49635449800002 + ], + [ + 10.072805, + 53.709633999 + ], + [ + 9.945376, + 53.652927998 + ], + [ + 9.73010399899999, + 53.557580997 + ], + [ + 9.48589, + 53.707664497999986 + ], + [ + 9.199750999, + 53.88010449799998 + ], + [ + 9.02242, + 53.87951750000002 + ], + [ + 8.8448045, + 54.266328499999986 + ], + [ + 8.602134, + 54.340507996999975 + ], + [ + 9.010464, + 54.49682299900002 + ], + [ + 8.372664499999985, + 54.89685649799998 + ], + [ + 8.63592599899999, + 54.911682998 + ], + [ + 9.113097, + 54.8736015 + ], + [ + 9.420151499999974, + 54.83195650099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.571089500000028, + 48.626442 + ], + [ + -1.42794, + 48.46191500100002 + ], + [ + -1.070164499999976, + 48.508492 + ], + [ + -1.015823501, + 48.00328599900001 + ], + [ + -1.238248, + 47.809992497 + ], + [ + -1.245885, + 47.77671749899997 + ], + [ + -2.097034, + 47.63135649899999 + ], + [ + -2.458493, + 47.44811999900003 + ], + [ + -3.528605313000014, + 47.778291696999986 + ], + [ + -4.734697499999982, + 48.03824249799999 + ], + [ + -4.269574, + 48.13277050099998 + ], + [ + -4.2257935, + 48.28749099700002 + ], + [ + -4.273602501000028, + 48.44343550000002 + ], + [ + -4.772754, + 48.329235 + ], + [ + -4.7699215, + 48.52113699900002 + ], + [ + -3.950495, + 48.65286999800003 + ], + [ + -3.65915050000001, + 48.659209998999984 + ], + [ + -3.084001, + 48.865695999000025 + ], + [ + -2.6863985, + 48.49315249900002 + ], + [ + -2.123706500000026, + 48.604404499 + ], + [ + -2.148958, + 48.633731996999984 + ], + [ + -2.045604, + 48.63681399699999 + ], + [ + -2.006897, + 48.566108498 + ], + [ + -1.982181075000028, + 48.55464302799999 + ], + [ + -1.872124, + 48.645713999 + ], + [ + -1.571089500000028, + 48.626442 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 1.177279, + 46.383947998 + ], + [ + 0.823432500000024, + 46.128584499 + ], + [ + 0.629741, + 45.71456999700001 + ], + [ + 0.004336, + 45.191628 + ], + [ + -0.040197499999977, + 45.10237999899999 + ], + [ + -0.708231, + 45.32748049899999 + ], + [ + -1.230697500000019, + 45.680572498 + ], + [ + -1.053074, + 46.00383 + ], + [ + -1.129406, + 46.310271999 + ], + [ + -0.7504715, + 46.304254499000024 + ], + [ + -0.537795001, + 46.386463999 + ], + [ + -0.891964, + 46.975820499 + ], + [ + -0.102116, + 47.06479999800001 + ], + [ + 0.05383, + 47.16373349999998 + ], + [ + 0.867469, + 46.74821649900002 + ], + [ + 1.177279, + 46.383947998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 1.2531545, + 45.44422000100002 + ], + [ + 1.44826, + 45.01931399900002 + ], + [ + 1.075142, + 44.57732549899998 + ], + [ + 1.064081499999986, + 44.37850849900002 + ], + [ + 0.741885, + 44.06519899900002 + ], + [ + 0.076043500000026, + 43.983138499 + ], + [ + -0.240259, + 43.897947999 + ], + [ + -0.242833, + 43.584978997 + ], + [ + -0.096788, + 43.582405 + ], + [ + -0.017172, + 43.269951 + ], + [ + -0.313342, + 42.849364997 + ], + [ + -0.551047, + 42.777637500000026 + ], + [ + -0.724501, + 42.920158500000014 + ], + [ + -1.6087885, + 43.251976001 + ], + [ + -1.728903, + 43.29608899700003 + ], + [ + -1.785978, + 43.35047899699998 + ], + [ + -1.52487050000002, + 43.529700999 + ], + [ + -1.253891, + 44.467605499 + ], + [ + -1.156919, + 45.472530499000015 + ], + [ + -0.708231, + 45.32748049899999 + ], + [ + -0.040197499999977, + 45.10237999899999 + ], + [ + 0.004336, + 45.191628 + ], + [ + 0.629741, + 45.71456999700001 + ], + [ + 1.2531545, + 45.44422000100002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 2.062908, + 44.97650449899999 + ], + [ + 2.207473, + 44.61552899899999 + ], + [ + 2.4789475, + 44.64800999900001 + ], + [ + 2.7167695, + 44.928827996999985 + ], + [ + 2.9816755, + 44.64467299900002 + ], + [ + 3.120173500000021, + 44.261838496999985 + ], + [ + 3.373648, + 44.170759498999985 + ], + [ + 3.263114, + 44.092425499 + ], + [ + 3.448355, + 44.01910349899998 + ], + [ + 3.358362, + 43.913829498999974 + ], + [ + 2.935457, + 43.694664999 + ], + [ + 2.565782500000012, + 43.422958 + ], + [ + 2.265415, + 43.452913498999976 + ], + [ + 2.029134, + 43.43689549700002 + ], + [ + 1.6884235, + 43.27355449700002 + ], + [ + 1.949341, + 43.120973 + ], + [ + 2.166049, + 42.66391749899998 + ], + [ + 1.7860985, + 42.573658 + ], + [ + 1.442566, + 42.60366800100002 + ], + [ + 0.858215, + 42.825740999 + ], + [ + 0.660127, + 42.69095249899999 + ], + [ + 0.4777555, + 42.70001999700003 + ], + [ + -0.313342, + 42.849364997 + ], + [ + -0.017172, + 43.269951 + ], + [ + -0.096788, + 43.582405 + ], + [ + -0.242833, + 43.584978997 + ], + [ + -0.240259, + 43.897947999 + ], + [ + 0.076043500000026, + 43.983138499 + ], + [ + 0.741885, + 44.06519899900002 + ], + [ + 1.064081499999986, + 44.37850849900002 + ], + [ + 1.075142, + 44.57732549899998 + ], + [ + 1.44826, + 45.01931399900002 + ], + [ + 2.062908, + 44.97650449899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 2.28104350000001, + 46.420403497 + ], + [ + 2.565372500000024, + 46.143036 + ], + [ + 2.60902149899999, + 45.966643998999984 + ], + [ + 2.388014, + 45.827372997 + ], + [ + 2.492129499999976, + 45.73766999700001 + ], + [ + 2.50841250000002, + 45.478501499 + ], + [ + 2.062908, + 44.97650449899999 + ], + [ + 1.44826, + 45.01931399900002 + ], + [ + 1.2531545, + 45.44422000100002 + ], + [ + 0.629741, + 45.71456999700001 + ], + [ + 0.823432500000024, + 46.128584499 + ], + [ + 1.177279, + 46.383947998 + ], + [ + 1.4151855, + 46.347215001 + ], + [ + 2.167784499999982, + 46.424068998999985 + ], + [ + 2.28104350000001, + 46.420403497 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.310563499000011, + 46.446769999000026 + ], + [ + 5.4736565, + 46.26428400100002 + ], + [ + 6.064003, + 46.41622899700002 + ], + [ + 6.125608, + 46.317229999 + ], + [ + 5.956067, + 46.1320955 + ], + [ + 6.310211, + 46.24404549899998 + ], + [ + 6.219547, + 46.31187799899999 + ], + [ + 6.231694, + 46.329429498000025 + ], + [ + 6.24136, + 46.343582497 + ], + [ + 6.821063998999989, + 46.42715449899998 + ], + [ + 6.797888999, + 46.136798999 + ], + [ + 7.044886, + 45.92241299900002 + ], + [ + 6.8023685, + 45.778562 + ], + [ + 7.104723, + 45.46845449900002 + ], + [ + 7.125157, + 45.243994498 + ], + [ + 6.630051, + 45.10985649999998 + ], + [ + 6.26057, + 45.12684399699998 + ], + [ + 6.203923499999974, + 45.01247100099999 + ], + [ + 6.355365, + 44.85482049900003 + ], + [ + 5.80147, + 44.706777500999976 + ], + [ + 5.418397500000026, + 44.42476849899998 + ], + [ + 5.676035999000021, + 44.19142849899998 + ], + [ + 5.4987865, + 44.11571649799998 + ], + [ + 4.804566, + 44.30389699800003 + ], + [ + 4.650611, + 44.329802997 + ], + [ + 4.6492275, + 44.27036 + ], + [ + 4.258899499999984, + 44.264422998999976 + ], + [ + 3.998161499999981, + 44.459798498 + ], + [ + 3.862531, + 44.743865997 + ], + [ + 4.483132, + 45.23644549900001 + ], + [ + 3.897408499999983, + 45.35707999800002 + ], + [ + 3.984688999000014, + 45.495232499 + ], + [ + 3.694015, + 45.93072800099998 + ], + [ + 3.832069499999989, + 45.99966349699997 + ], + [ + 3.768207500000017, + 46.23881449700002 + ], + [ + 3.899538499000016, + 46.275907999000026 + ], + [ + 4.388074500000016, + 46.219790499 + ], + [ + 4.780208500000015, + 46.176675999 + ], + [ + 4.953853998999989, + 46.513422999 + ], + [ + 5.310563499000011, + 46.446769999000026 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 3.899538499000016, + 46.275907999000026 + ], + [ + 3.768207500000017, + 46.23881449700002 + ], + [ + 3.832069499999989, + 45.99966349699997 + ], + [ + 3.694015, + 45.93072800099998 + ], + [ + 3.984688999000014, + 45.495232499 + ], + [ + 3.897408499999983, + 45.35707999800002 + ], + [ + 4.483132, + 45.23644549900001 + ], + [ + 3.862531, + 44.743865997 + ], + [ + 3.361347500000022, + 44.971408 + ], + [ + 3.103125, + 44.884632497999974 + ], + [ + 2.9816755, + 44.64467299900002 + ], + [ + 2.7167695, + 44.928827996999985 + ], + [ + 2.4789475, + 44.64800999900001 + ], + [ + 2.207473, + 44.61552899899999 + ], + [ + 2.062908, + 44.97650449899999 + ], + [ + 2.50841250000002, + 45.478501499 + ], + [ + 2.492129499999976, + 45.73766999700001 + ], + [ + 2.388014, + 45.827372997 + ], + [ + 2.60902149899999, + 45.966643998999984 + ], + [ + 2.565372500000024, + 46.143036 + ], + [ + 2.28104350000001, + 46.420403497 + ], + [ + 3.032063, + 46.794909501 + ], + [ + 3.629422499999976, + 46.74945649799997 + ], + [ + 3.998868500000015, + 46.46486699899998 + ], + [ + 3.899538499000016, + 46.275907999000026 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 3.862531, + 44.743865997 + ], + [ + 3.998161499999981, + 44.459798498 + ], + [ + 4.258899499999984, + 44.264422998999976 + ], + [ + 4.6492275, + 44.27036 + ], + [ + 4.7390595, + 43.924061999 + ], + [ + 4.230281, + 43.460186 + ], + [ + 4.101040500000011, + 43.554370999000014 + ], + [ + 3.24056250000001, + 43.21280299900002 + ], + [ + 2.9889005, + 42.864599999 + ], + [ + 3.035430500000018, + 42.8420695 + ], + [ + 3.050192, + 42.870636 + ], + [ + 3.043504499999983, + 42.83815 + ], + [ + 3.174803999, + 42.435375 + ], + [ + 1.964552, + 42.38215699900002 + ], + [ + 1.731011, + 42.49240099899998 + ], + [ + 1.725801, + 42.50440199899998 + ], + [ + 1.7860985, + 42.573658 + ], + [ + 2.166049, + 42.66391749899998 + ], + [ + 1.949341, + 43.120973 + ], + [ + 1.6884235, + 43.27355449700002 + ], + [ + 2.029134, + 43.43689549700002 + ], + [ + 2.265415, + 43.452913498999976 + ], + [ + 2.565782500000012, + 43.422958 + ], + [ + 2.935457, + 43.694664999 + ], + [ + 3.358362, + 43.913829498999974 + ], + [ + 3.448355, + 44.01910349899998 + ], + [ + 3.263114, + 44.092425499 + ], + [ + 3.373648, + 44.170759498999985 + ], + [ + 3.120173500000021, + 44.261838496999985 + ], + [ + 2.9816755, + 44.64467299900002 + ], + [ + 3.103125, + 44.884632497999974 + ], + [ + 3.361347500000022, + 44.971408 + ], + [ + 3.862531, + 44.743865997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.630051, + 45.10985649999998 + ], + [ + 7.065755, + 44.71346449700002 + ], + [ + 6.948443, + 44.654741999 + ], + [ + 6.887428, + 44.361287 + ], + [ + 7.007760500000018, + 44.23670049899999 + ], + [ + 7.714236500000027, + 44.061513499 + ], + [ + 7.529827, + 43.784007997 + ], + [ + 7.43605928, + 43.76976996899998 + ], + [ + 7.413667280000027, + 43.744077703000016 + ], + [ + 6.933721, + 43.480064497 + ], + [ + 6.621062, + 43.15778350099998 + ], + [ + 5.671879, + 43.17926799899999 + ], + [ + 4.230281, + 43.460186 + ], + [ + 4.7390595, + 43.924061999 + ], + [ + 4.6492275, + 44.27036 + ], + [ + 4.650611, + 44.329802997 + ], + [ + 4.804566, + 44.30389699800003 + ], + [ + 5.4987865, + 44.11571649799998 + ], + [ + 5.676035999000021, + 44.19142849899998 + ], + [ + 5.418397500000026, + 44.42476849899998 + ], + [ + 5.80147, + 44.706777500999976 + ], + [ + 6.355365, + 44.85482049900003 + ], + [ + 6.203923499999974, + 45.01247100099999 + ], + [ + 6.26057, + 45.12684399699998 + ], + [ + 6.630051, + 45.10985649999998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.402272, + 41.858703499 + ], + [ + 9.219715, + 41.36760399899998 + ], + [ + 8.788534, + 41.55707549700003 + ], + [ + 8.591134, + 41.96215449699997 + ], + [ + 8.573006498999973, + 42.238570998 + ], + [ + 8.691523500000017, + 42.266464000999974 + ], + [ + 8.573408, + 42.381405 + ], + [ + 8.727043, + 42.561603499 + ], + [ + 9.301698499999986, + 42.67863850100002 + ], + [ + 9.343248500000016, + 42.99974049999997 + ], + [ + 9.4632805, + 42.98673649900002 + ], + [ + 9.559117500000013, + 42.196696997 + ], + [ + 9.402272, + 41.858703499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + -61.555346499999985, + 16.053240499000026 + ], + [ + -61.6968005, + 15.946588999000028 + ], + [ + -61.80593, + 16.257474498000022 + ], + [ + -61.672612500000014, + 16.324603500000023 + ], + [ + -61.555346499999985, + 16.053240499000026 + ] + ] + ], + [ + [ + [ + -61.25487149999998, + 16.256139 + ], + [ + -61.52729849999997, + 16.21912299899998 + ], + [ + -61.54121049999998, + 16.438073 + ], + [ + -61.464057500000024, + 16.513064499 + ], + [ + -61.25487149999998, + 16.256139 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -61.003888, + 14.808371500000021 + ], + [ + -60.85767550000003, + 14.398175 + ], + [ + -61.081969, + 14.470402498999988 + ], + [ + -61.229269, + 14.822112499000013 + ], + [ + -61.003888, + 14.808371500000021 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -52.565187, + 2.516254 + ], + [ + -52.904169, + 2.190938 + ], + [ + -53.723031, + 2.31207 + ], + [ + -54.15237250000001, + 2.119626501000027 + ], + [ + -54.58785949999998, + 2.32202350099999 + ], + [ + -54.208187, + 2.7777375 + ], + [ + -53.979807, + 3.606575 + ], + [ + -54.35672649999998, + 4.047393500999988 + ], + [ + -54.468998, + 4.890381 + ], + [ + -54.008094501000016, + 5.623116499999981 + ], + [ + -53.9683655, + 5.745176500000014 + ], + [ + -53.7992595, + 5.723899501 + ], + [ + -52.94350750000001, + 5.451987499999973 + ], + [ + -52.364701, + 4.9207345 + ], + [ + -51.813244, + 4.6343435 + ], + [ + -51.62983550000001, + 4.189126499 + ], + [ + -52.565187, + 2.516254 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 55.825796500000024, + -21.143524499000023 + ], + [ + 55.797395, + -21.350129498 + ], + [ + 55.292974, + -21.229784998000014 + ], + [ + 55.283669, + -20.92620949899998 + ], + [ + 55.6477375, + -20.91560449799999 + ], + [ + 55.825796500000024, + -21.143524499000023 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 45.2132815, + -12.873075500000027 + ], + [ + 45.1483005, + -13.000090499 + ], + [ + 45.071559, + -12.902030998999976 + ], + [ + 45.154967, + -12.92356799800001 + ], + [ + 45.04258, + -12.74402349899998 + ], + [ + 45.088423499999976, + -12.669118998999977 + ], + [ + 45.125466999000025, + -12.727415999000016 + ], + [ + 45.236856, + -12.753384998 + ], + [ + 45.18605050000002, + -12.839496 + ], + [ + 45.2132815, + -12.873075500000027 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 14.589105421, + 45.236414152 + ], + [ + 14.8205145, + 44.97092799799998 + ], + [ + 14.438129499000013, + 45.064864499 + ], + [ + 14.585924309, + 45.238482154 + ], + [ + 14.332406, + 45.35525500099999 + ], + [ + 14.2265825, + 45.15383849900002 + ], + [ + 13.906588, + 44.76863499900003 + ], + [ + 13.606798, + 45.11697399799999 + ], + [ + 13.489867, + 45.486835497000015 + ], + [ + 13.583067, + 45.477409997 + ], + [ + 14.109059, + 45.48245849699998 + ], + [ + 14.11819650000001, + 45.48123899699999 + ], + [ + 14.570012500000018, + 45.672944497 + ], + [ + 15.226437499999975, + 45.42708799799999 + ], + [ + 14.961522, + 45.273318999000026 + ], + [ + 15.017143, + 45.12289049999998 + ], + [ + 15.0589, + 45.111690501 + ], + [ + 15.736722, + 44.93563099900001 + ], + [ + 16.131936999, + 44.45468150099998 + ], + [ + 16.20829037599998, + 44.21668289899998 + ], + [ + 16.544348, + 43.974178498000015 + ], + [ + 16.81158449999998, + 43.75549299800002 + ], + [ + 17.450845500000014, + 43.17686850000001 + ], + [ + 17.4751225, + 43.161456997000016 + ], + [ + 17.712072499999977, + 42.973003499000015 + ], + [ + 17.581335, + 42.93842299900001 + ], + [ + 17.355711, + 43.084621501000015 + ], + [ + 16.3882865, + 43.509128498999985 + ], + [ + 16.475813, + 43.53484350100001 + ], + [ + 16.013214, + 43.502506 + ], + [ + 15.558911500000022, + 43.871951997 + ], + [ + 15.111249, + 44.26010149799998 + ], + [ + 15.598931350999976, + 44.172556789 + ], + [ + 15.2894715, + 44.363227999 + ], + [ + 14.896002, + 44.696899497 + ], + [ + 14.881313499999976, + 45.034404999 + ], + [ + 14.589105421, + 45.236414152 + ] + ] + ], + [ + [ + [ + 18.438104, + 42.55570500099998 + ], + [ + 18.525213, + 42.420462997000016 + ], + [ + 17.000639, + 43.04675299899998 + ], + [ + 17.469783999000015, + 42.91489399699998 + ], + [ + 17.6491565, + 42.888923499999976 + ], + [ + 18.438104, + 42.55570500099998 + ] + ] + ], + [ + [ + [ + 14.474727499999972, + 44.95611549900002 + ], + [ + 14.517015500000014, + 44.60891699899997 + ], + [ + 14.3020285, + 44.93503199700001 + ], + [ + 14.3602285, + 45.08841299900001 + ], + [ + 14.474727499999972, + 44.95611549900002 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.596805, + 46.47590249899997 + ], + [ + 16.854754999000022, + 46.350440999 + ], + [ + 16.8760435, + 46.32060249699998 + ], + [ + 17.294325, + 45.98854450099998 + ], + [ + 17.651499, + 45.847835499999974 + ], + [ + 17.911642, + 45.79095099699998 + ], + [ + 18.446884, + 45.73704899799998 + ], + [ + 18.821306, + 45.91438299700002 + ], + [ + 18.889734, + 45.92118049700002 + ], + [ + 19.033942, + 45.48682149899997 + ], + [ + 19.004717, + 45.435032 + ], + [ + 19.425167499999986, + 45.167692499 + ], + [ + 19.0864565, + 45.14539099900003 + ], + [ + 19.022069499999986, + 44.85535399899999 + ], + [ + 18.53199749999999, + 45.090629498 + ], + [ + 17.143591499000024, + 45.162589500000024 + ], + [ + 16.529669, + 45.226574 + ], + [ + 16.288761, + 44.995689497 + ], + [ + 15.836288500000023, + 45.22247699899998 + ], + [ + 15.736722, + 44.93563099900001 + ], + [ + 15.0589, + 45.111690501 + ], + [ + 15.017143, + 45.12289049999998 + ], + [ + 14.961522, + 45.273318999000026 + ], + [ + 15.226437499999975, + 45.42708799799999 + ], + [ + 15.385532, + 45.48658049900001 + ], + [ + 15.277050499999973, + 45.604461499000024 + ], + [ + 15.331290500000023, + 45.76285499900001 + ], + [ + 15.404425, + 45.792716997000014 + ], + [ + 15.70640450000002, + 45.97534299900002 + ], + [ + 15.627262, + 46.08595349900003 + ], + [ + 15.7914755, + 46.259327497000015 + ], + [ + 15.8768685, + 46.280055499000014 + ], + [ + 16.301549, + 46.37828799699997 + ], + [ + 16.242148499999985, + 46.49007549700002 + ], + [ + 16.596805, + 46.47590249899997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -4.238510999000027, + 42.95431499799997 + ], + [ + -4.081359, + 42.761417499 + ], + [ + -4.04593, + 42.766566996999984 + ], + [ + -4.002319, + 42.830867497999975 + ], + [ + -3.99967, + 42.76893249699998 + ], + [ + -3.815811, + 42.812561 + ], + [ + -3.945488, + 43.005718496999975 + ], + [ + -3.417681500000015, + 43.13336949799998 + ], + [ + -3.141396, + 43.161483498999985 + ], + [ + -3.0890235, + 43.00158299899999 + ], + [ + -3.0369895, + 42.98218549799998 + ], + [ + -3.286797499999977, + 42.885097497 + ], + [ + -2.8581175, + 42.63816849900002 + ], + [ + -3.13429450000001, + 42.54202249799999 + ], + [ + -2.9136375, + 42.02283849999998 + ], + [ + -2.282167500000014, + 42.13168699900001 + ], + [ + -1.8565395, + 41.966388498000015 + ], + [ + -1.825316, + 41.778365999000016 + ], + [ + -2.170485499999984, + 41.318836498999985 + ], + [ + -2.05169, + 41.14685799900002 + ], + [ + -2.418909000999975, + 41.05771649899998 + ], + [ + -2.716780500000027, + 41.275680498999975 + ], + [ + -3.207373, + 41.304244998 + ], + [ + -3.539573, + 41.16499349899999 + ], + [ + -4.160293500000023, + 40.68985350000003 + ], + [ + -4.578901, + 40.217157499 + ], + [ + -5.336016500000028, + 40.11585599900002 + ], + [ + -5.7376025, + 40.29416299899998 + ], + [ + -6.2399775, + 40.48590099900002 + ], + [ + -6.865144, + 40.270694499 + ], + [ + -6.801935, + 40.861045998 + ], + [ + -6.929903500000023, + 41.02946649900002 + ], + [ + -6.689786, + 41.20524149800002 + ], + [ + -6.479713, + 41.294379999 + ], + [ + -6.189352, + 41.575046499 + ], + [ + -6.5884615, + 41.967761998000015 + ], + [ + -6.983513500000015, + 41.97290399899998 + ], + [ + -6.784308, + 42.253608499999984 + ], + [ + -6.8227655, + 42.490833001 + ], + [ + -7.076834, + 42.50812399900002 + ], + [ + -6.824167, + 42.915012499 + ], + [ + -4.841038500000025, + 43.18070949999998 + ], + [ + -4.737022998999976, + 43.02092349899999 + ], + [ + -4.238510999000027, + 42.95431499799997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.05169, + 41.14685799900002 + ], + [ + -1.6174335, + 40.94374099700002 + ], + [ + -1.545494500000018, + 40.59521099900002 + ], + [ + -1.806344, + 40.39824699899998 + ], + [ + -1.448831499999983, + 40.14535849700002 + ], + [ + -1.165154, + 40.01010899800002 + ], + [ + -1.1423615, + 39.971855499000014 + ], + [ + -1.505146500000023, + 39.41801449799999 + ], + [ + -1.161849, + 39.305431499 + ], + [ + -1.266710499999988, + 39.05103250000002 + ], + [ + -0.959359, + 38.944587497999976 + ], + [ + -0.928884499999981, + 38.783839999 + ], + [ + -1.02687, + 38.655509498000015 + ], + [ + -1.402179499999988, + 38.690803500000015 + ], + [ + -2.341602, + 38.02601999900003 + ], + [ + -2.551274001000024, + 38.084118 + ], + [ + -2.481576, + 38.393101 + ], + [ + -2.762069, + 38.532779499000014 + ], + [ + -4.268895, + 38.347212997999975 + ], + [ + -5.008071500000028, + 38.71527499899997 + ], + [ + -5.046996001000025, + 38.72913349800001 + ], + [ + -4.847362499999974, + 38.882449999000016 + ], + [ + -4.962548, + 39.058776997999985 + ], + [ + -4.687733, + 39.450336499 + ], + [ + -4.755411, + 39.415759998 + ], + [ + -4.8104735, + 39.39661399900001 + ], + [ + -4.9407835, + 39.39516450100001 + ], + [ + -4.952554500000019, + 39.395038499 + ], + [ + -5.406153, + 39.877772999 + ], + [ + -5.336016500000028, + 40.11585599900002 + ], + [ + -4.578901, + 40.217157499 + ], + [ + -4.190704, + 40.29731599799999 + ], + [ + -3.623443, + 40.053848500000015 + ], + [ + -3.161419500000022, + 40.06489699799999 + ], + [ + -3.067689, + 40.157884998999975 + ], + [ + -3.194294500000012, + 40.248005998999986 + ], + [ + -3.130407, + 40.40515399899999 + ], + [ + -3.468398, + 40.689896498999985 + ], + [ + -3.394300499999986, + 41.000234498 + ], + [ + -3.539573, + 41.16499349899999 + ], + [ + -3.207373, + 41.304244998 + ], + [ + -2.716780500000027, + 41.275680498999975 + ], + [ + -2.418909000999975, + 41.05771649899998 + ], + [ + -2.05169, + 41.14685799900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -5.336016500000028, + 40.11585599900002 + ], + [ + -5.406153, + 39.877772999 + ], + [ + -4.952554500000019, + 39.395038499 + ], + [ + -4.9407835, + 39.39516450100001 + ], + [ + -4.8104735, + 39.39661399900001 + ], + [ + -4.755411, + 39.415759998 + ], + [ + -4.687733, + 39.450336499 + ], + [ + -4.962548, + 39.058776997999985 + ], + [ + -4.847362499999974, + 38.882449999000016 + ], + [ + -5.046996001000025, + 38.72913349800001 + ], + [ + -5.568977500000017, + 38.43263999800001 + ], + [ + -5.584845499999972, + 38.131752 + ], + [ + -5.874359, + 38.158622998 + ], + [ + -6.180307500000026, + 37.941077998000026 + ], + [ + -6.9317385, + 38.208377998 + ], + [ + -7.10795250000001, + 38.18812150000002 + ], + [ + -7.316636, + 38.43987649899998 + ], + [ + -7.203135, + 38.75101749800001 + ], + [ + -6.9513915, + 39.024070499 + ], + [ + -7.231467, + 39.278431 + ], + [ + -7.53490245, + 39.661986891000026 + ], + [ + -7.015405, + 39.670856499000024 + ], + [ + -6.864203, + 40.011867498000015 + ], + [ + -7.011960499999986, + 40.126934 + ], + [ + -6.9512985, + 40.257445999000026 + ], + [ + -6.865144, + 40.270694499 + ], + [ + -6.2399775, + 40.48590099900002 + ], + [ + -5.7376025, + 40.29416299899998 + ], + [ + -5.336016500000028, + 40.11585599900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 1.731011, + 42.49240099899998 + ], + [ + 1.964552, + 42.38215699900002 + ], + [ + 3.174803999, + 42.435375 + ], + [ + 3.111661500000025, + 42.20384949800001 + ], + [ + 3.21998050000002, + 41.92232149900002 + ], + [ + 2.778513, + 41.648807498 + ], + [ + 1.645323500000018, + 41.19562149699999 + ], + [ + 0.966513, + 41.028423498999985 + ], + [ + 0.5152385, + 40.522918498000024 + ], + [ + 0.170789500000012, + 40.732837 + ], + [ + 0.220409500000017, + 41.07143 + ], + [ + 0.385724, + 41.278839498000025 + ], + [ + 0.335948499999972, + 41.40743249899998 + ], + [ + 0.767070499999988, + 42.34881599800002 + ], + [ + 0.660127, + 42.69095249899999 + ], + [ + 0.858215, + 42.825740999 + ], + [ + 1.442566, + 42.60366800100002 + ], + [ + 1.725801, + 42.50440199899998 + ], + [ + 1.731011, + 42.49240099899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.170789500000012, + 40.732837 + ], + [ + 0.5152385, + 40.522918498000024 + ], + [ + -0.188467, + 39.721954498 + ], + [ + -0.334561, + 39.42353449900003 + ], + [ + 0.012785310000027, + 38.86459284699998 + ], + [ + 0.205479500000024, + 38.731944999 + ], + [ + -0.301367, + 38.48192949899999 + ], + [ + -0.7621355, + 37.84700799799998 + ], + [ + -1.030276500000014, + 38.09707649799998 + ], + [ + -1.02687, + 38.655509498000015 + ], + [ + -0.928884499999981, + 38.783839999 + ], + [ + -0.959359, + 38.944587497999976 + ], + [ + -1.266710499999988, + 39.05103250000002 + ], + [ + -1.161849, + 39.305431499 + ], + [ + -1.505146500000023, + 39.41801449799999 + ], + [ + -1.1423615, + 39.971855499000014 + ], + [ + -0.912739, + 39.87310750099999 + ], + [ + -0.797643, + 39.88107649900002 + ], + [ + -0.837749501000019, + 39.97681799700001 + ], + [ + -0.279997499999979, + 40.36949949900003 + ], + [ + -0.197124499999973, + 40.78445799899998 + ], + [ + 0.170789500000012, + 40.732837 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 3.079701, + 39.901542499000016 + ], + [ + 3.1449035, + 39.77384950099997 + ], + [ + 3.3484785, + 39.78888700099998 + ], + [ + 3.455952500000024, + 39.65670399800001 + ], + [ + 3.0730825, + 39.268691999 + ], + [ + 2.344436, + 39.587226998 + ], + [ + 2.778520500000013, + 39.85567899900002 + ], + [ + 3.213000500000021, + 39.955375996999976 + ], + [ + 3.079701, + 39.901542499000016 + ] + ] + ], + [ + [ + [ + 1.423349, + 38.905044498999985 + ], + [ + 1.3711275, + 38.830333498000016 + ], + [ + 1.213064499999973, + 38.90135950000001 + ], + [ + 1.310512500000016, + 39.04295349900002 + ], + [ + 1.603850500000021, + 39.09101849799998 + ], + [ + 1.605787500000019, + 39.02961349899999 + ], + [ + 1.423349, + 38.905044498999985 + ] + ] + ], + [ + [ + [ + 4.094098, + 40.05835349900002 + ], + [ + 4.28757, + 39.814689499 + ], + [ + 3.791304, + 40.01617799899998 + ], + [ + 4.094098, + 40.05835349900002 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.341602, + 38.02601999900003 + ], + [ + -2.2076315, + 37.916587999 + ], + [ + -1.974468, + 37.868480499999976 + ], + [ + -1.976776500000028, + 37.61873250000002 + ], + [ + -1.630033, + 37.375182999 + ], + [ + -2.12434, + 36.73184200100002 + ], + [ + -2.3680915, + 36.841457499 + ], + [ + -2.700591, + 36.68272399799997 + ], + [ + -3.128691, + 36.750887998999985 + ], + [ + -3.777457500000025, + 36.737926500000015 + ], + [ + -4.418207, + 36.717219999 + ], + [ + -5.252405, + 36.311275498999976 + ], + [ + -5.339225, + 36.152034997999976 + ], + [ + -5.351522499999987, + 36.15256899899998 + ], + [ + -5.395709008999972, + 36.127541227999984 + ], + [ + -5.60843, + 36.007053497000015 + ], + [ + -6.040427500000021, + 36.19237899900003 + ], + [ + -6.440116, + 36.72086349800003 + ], + [ + -6.345561, + 36.79876699800002 + ], + [ + -6.893693499999983, + 37.161465 + ], + [ + -7.401916500000027, + 37.17482749800001 + ], + [ + -7.512691500000017, + 37.526256499 + ], + [ + -7.2632845, + 37.979908 + ], + [ + -7.002483499999983, + 38.0227165 + ], + [ + -6.9317385, + 38.208377998 + ], + [ + -6.180307500000026, + 37.941077998000026 + ], + [ + -5.874359, + 38.158622998 + ], + [ + -5.584845499999972, + 38.131752 + ], + [ + -5.568977500000017, + 38.43263999800001 + ], + [ + -5.046996001000025, + 38.72913349800001 + ], + [ + -5.008071500000028, + 38.71527499899997 + ], + [ + -4.268895, + 38.347212997999975 + ], + [ + -2.762069, + 38.532779499000014 + ], + [ + -2.481576, + 38.393101 + ], + [ + -2.551274001000024, + 38.084118 + ], + [ + -2.341602, + 38.02601999900003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.02687, + 38.655509498000015 + ], + [ + -1.030276500000014, + 38.09707649799998 + ], + [ + -0.7621355, + 37.84700799799998 + ], + [ + -0.8599795, + 37.721446997999976 + ], + [ + -0.720821, + 37.605872998 + ], + [ + -1.325323500000025, + 37.562442498999985 + ], + [ + -1.630033, + 37.375182999 + ], + [ + -1.976776500000028, + 37.61873250000002 + ], + [ + -1.974468, + 37.868480499999976 + ], + [ + -2.2076315, + 37.916587999 + ], + [ + -2.341602, + 38.02601999900003 + ], + [ + -1.402179499999988, + 38.690803500000015 + ], + [ + -1.02687, + 38.655509498000015 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -5.35072900099999, + 35.909002998 + ], + [ + -5.34252117599999, + 35.87303803999998 + ], + [ + -5.382034499999975, + 35.91260649999998 + ], + [ + -5.35072900099999, + 35.909002998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.950587, + 35.31841799900002 + ], + [ + -2.92736, + 35.274264 + ], + [ + -2.970093500000019, + 35.289367500000026 + ], + [ + -2.950587, + 35.31841799900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + -16.3605925, + 28.379459499 + ], + [ + -16.640173, + 28.00498799799999 + ], + [ + -16.924217, + 28.350006 + ], + [ + -16.134222, + 28.5812585 + ], + [ + -16.3605925, + 28.379459499 + ] + ] + ], + [ + [ + [ + -15.424459500000012, + 27.80785549799998 + ], + [ + -15.600111, + 27.734939498000017 + ], + [ + -15.8329905, + 27.90972349899999 + ], + [ + -15.709276000999978, + 28.16573899799999 + ], + [ + -15.4035465, + 28.171691999000018 + ], + [ + -15.424459500000012, + 27.80785549799998 + ] + ] + ], + [ + [ + [ + -14.2242965, + 28.162038998000014 + ], + [ + -14.492716, + 28.083705999000017 + ], + [ + -14.226619, + 28.21153449799999 + ], + [ + -14.016622499999983, + 28.71499399800001 + ], + [ + -13.877083500000026, + 28.752040998999973 + ], + [ + -13.922949, + 28.247462998 + ], + [ + -14.2242965, + 28.162038998000014 + ] + ] + ], + [ + [ + [ + -13.482365500000014, + 28.999332498 + ], + [ + -13.8541985, + 28.862073998000028 + ], + [ + -13.756207500000016, + 29.0776095 + ], + [ + -13.470518, + 29.238542498000015 + ], + [ + -13.464197, + 29.12962349899999 + ], + [ + -13.482365500000014, + 28.999332498 + ] + ] + ], + [ + [ + [ + -17.7602195, + 28.569320999000013 + ], + [ + -17.842235500000015, + 28.452651499000012 + ], + [ + -17.9487345, + 28.840764997 + ], + [ + -17.777729, + 28.839669997999977 + ], + [ + -17.7602195, + 28.569320999000013 + ] + ] + ], + [ + [ + [ + -17.09916050099997, + 28.0943145 + ], + [ + -17.199426500000015, + 28.023731498000018 + ], + [ + -17.3492185, + 28.099218498000027 + ], + [ + -17.318047, + 28.204323999 + ], + [ + -17.118093499999986, + 28.149373998999977 + ], + [ + -17.09916050099997, + 28.0943145 + ] + ] + ], + [ + [ + [ + -17.883365500000025, + 27.80445449699999 + ], + [ + -17.979040000999987, + 27.640519998 + ], + [ + -18.158359500000017, + 27.712901499999987 + ], + [ + -18.131494, + 27.77158149899998 + ], + [ + -18.036621001000015, + 27.762228 + ], + [ + -17.958796, + 27.841646 + ], + [ + -17.883365500000025, + 27.80445449699999 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.927715464000016, + 63.82609472199999 + ], + [ + 22.989051, + 63.788022 + ], + [ + 23.027271499999983, + 63.788767501 + ], + [ + 23.744085000999974, + 63.67544400100002 + ], + [ + 23.422409500000015, + 63.616021 + ], + [ + 23.696989499999972, + 63.380327 + ], + [ + 24.359008, + 63.116434501000015 + ], + [ + 24.772885499999973, + 63.13336849699999 + ], + [ + 24.772926499999983, + 63.358689500000025 + ], + [ + 25.036322499999983, + 63.45807800099999 + ], + [ + 26.138652, + 63.457592 + ], + [ + 26.039845, + 62.93611350100002 + ], + [ + 26.709129500000017, + 62.45294899800001 + ], + [ + 26.220722, + 62.11856249700003 + ], + [ + 26.53375, + 61.691326996999976 + ], + [ + 26.315036, + 61.60844849799997 + ], + [ + 25.921634, + 61.78734750000001 + ], + [ + 24.970471498999984, + 61.45070549799999 + ], + [ + 24.913933499999985, + 61.324883 + ], + [ + 23.195350500000018, + 61.001223 + ], + [ + 22.968488499999978, + 61.043258 + ], + [ + 21.419929500000023, + 61.047442998 + ], + [ + 21.7037775, + 61.557694501000014 + ], + [ + 21.27957, + 61.993263 + ], + [ + 21.366348, + 62.370907 + ], + [ + 21.08101, + 62.6323175 + ], + [ + 21.483848500000022, + 62.97023950099998 + ], + [ + 21.45596771800001, + 63.01229484999999 + ], + [ + 21.3373805, + 63.0409545 + ], + [ + 22.13746955800002, + 63.26130588799998 + ], + [ + 22.159774, + 63.255317 + ], + [ + 22.224766719, + 63.291334242 + ], + [ + 22.393028500000014, + 63.33328150099999 + ], + [ + 22.324308499999972, + 63.581827499999974 + ], + [ + 22.8713565, + 63.8339785 + ], + [ + 22.927715464000016, + 63.82609472199999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 26.208359499999972, + 60.7579925 + ], + [ + 26.539152999, + 60.594937500000015 + ], + [ + 26.453932, + 60.487652500000024 + ], + [ + 26.00972368700002, + 60.31647918800002 + ], + [ + 26.010455, + 60.321357 + ], + [ + 25.993759220000015, + 60.337336162999975 + ], + [ + 25.9122875, + 60.366004498 + ], + [ + 25.863847, + 60.323478497999986 + ], + [ + 25.936341, + 60.26062 + ], + [ + 25.7869765, + 60.237285997000015 + ], + [ + 25.627897500000017, + 60.326478 + ], + [ + 25.7202395, + 60.339234498 + ], + [ + 25.6696885, + 60.383327501 + ], + [ + 25.432495500000016, + 60.222521 + ], + [ + 25.21634410500002, + 60.21141365599999 + ], + [ + 24.575224, + 60.178468501 + ], + [ + 24.202054, + 60.027420999000014 + ], + [ + 23.839481499999977, + 60.018403001000024 + ], + [ + 23.956796, + 60.004310997 + ], + [ + 23.69256456300002, + 59.972044676999985 + ], + [ + 23.727499, + 59.943315996000024 + ], + [ + 23.3554325, + 59.91736499899997 + ], + [ + 23.186451499999976, + 59.827804001 + ], + [ + 22.932191499999988, + 59.824022 + ], + [ + 23.11882880799999, + 60.00089512599999 + ], + [ + 23.028183, + 60.10148650000002 + ], + [ + 23.64895, + 60.20156399799998 + ], + [ + 23.900492499999984, + 60.64975850000002 + ], + [ + 25.192922, + 60.72473849900001 + ], + [ + 25.110965998999973, + 60.818584500999975 + ], + [ + 26.208359499999972, + 60.7579925 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 26.483068, + 61.32283449900001 + ], + [ + 26.513659500000017, + 61.274324001000025 + ], + [ + 26.929526, + 61.210034501 + ], + [ + 27.20581950000002, + 61.16246800099998 + ], + [ + 29.559279, + 61.722068001000025 + ], + [ + 30.143966499999976, + 61.85223799900001 + ], + [ + 27.99127950000002, + 60.668979 + ], + [ + 27.797273500000017, + 60.54534300099999 + ], + [ + 26.453932, + 60.487652500000024 + ], + [ + 26.539152999, + 60.594937500000015 + ], + [ + 26.208359499999972, + 60.7579925 + ], + [ + 25.110965998999973, + 60.818584500999975 + ], + [ + 25.192922, + 60.72473849900001 + ], + [ + 23.900492499999984, + 60.64975850000002 + ], + [ + 23.64895, + 60.20156399799998 + ], + [ + 23.028183, + 60.10148650000002 + ], + [ + 22.87021, + 60.1982375 + ], + [ + 23.079409, + 60.375627 + ], + [ + 22.454013998999983, + 60.265965000999984 + ], + [ + 22.60413649999998, + 60.37388149999998 + ], + [ + 22.50068, + 60.41853749799998 + ], + [ + 22.295877999000027, + 60.38428949799999 + ], + [ + 22.253048428, + 60.41175714899998 + ], + [ + 22.247403, + 60.419651498 + ], + [ + 22.24190927799998, + 60.41890473400002 + ], + [ + 21.846205, + 60.63480049899999 + ], + [ + 21.585519498999986, + 60.491007001000014 + ], + [ + 21.572621, + 60.500252499 + ], + [ + 21.592718, + 60.517643501 + ], + [ + 21.5593745, + 60.55924500100002 + ], + [ + 21.462105, + 60.581443501000024 + ], + [ + 21.1746465, + 60.87034399700002 + ], + [ + 21.419929500000023, + 61.047442998 + ], + [ + 22.968488499999978, + 61.043258 + ], + [ + 23.195350500000018, + 61.001223 + ], + [ + 24.913933499999985, + 61.324883 + ], + [ + 24.970471498999984, + 61.45070549799999 + ], + [ + 25.921634, + 61.78734750000001 + ], + [ + 26.315036, + 61.60844849799997 + ], + [ + 26.243660001000023, + 61.44645000100002 + ], + [ + 26.483068, + 61.32283449900001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 28.8007675, + 68.86928600099998 + ], + [ + 28.4339175, + 68.539672 + ], + [ + 28.6461425, + 68.19630450099999 + ], + [ + 30.0170405, + 67.67355650000002 + ], + [ + 29.033642, + 66.942135001 + ], + [ + 29.57293850000002, + 66.432856 + ], + [ + 30.13848, + 65.66868200099998 + ], + [ + 29.7547315, + 65.49736949800001 + ], + [ + 29.64493, + 64.86649549999998 + ], + [ + 30.086534500000027, + 64.77399049899998 + ], + [ + 30.044892, + 64.40202999799999 + ], + [ + 30.553427999, + 64.13224799900001 + ], + [ + 29.971917, + 63.757165499999985 + ], + [ + 31.586729, + 62.90870200099999 + ], + [ + 30.143966499999976, + 61.85223799900001 + ], + [ + 29.559279, + 61.722068001000025 + ], + [ + 27.20581950000002, + 61.16246800099998 + ], + [ + 26.929526, + 61.210034501 + ], + [ + 26.513659500000017, + 61.274324001000025 + ], + [ + 26.483068, + 61.32283449900001 + ], + [ + 26.243660001000023, + 61.44645000100002 + ], + [ + 26.315036, + 61.60844849799997 + ], + [ + 26.53375, + 61.691326996999976 + ], + [ + 26.220722, + 62.11856249700003 + ], + [ + 26.709129500000017, + 62.45294899800001 + ], + [ + 26.039845, + 62.93611350100002 + ], + [ + 26.138652, + 63.457592 + ], + [ + 25.036322499999983, + 63.45807800099999 + ], + [ + 24.772926499999983, + 63.358689500000025 + ], + [ + 24.772885499999973, + 63.13336849699999 + ], + [ + 24.359008, + 63.116434501000015 + ], + [ + 23.696989499999972, + 63.380327 + ], + [ + 23.422409500000015, + 63.616021 + ], + [ + 23.744085000999974, + 63.67544400100002 + ], + [ + 23.027271499999983, + 63.788767501 + ], + [ + 23.61733300100002, + 64.048771998 + ], + [ + 24.53991050000002, + 64.81454849699998 + ], + [ + 25.487671, + 64.9614365 + ], + [ + 25.366445, + 65.42749949900002 + ], + [ + 25.084607499000015, + 65.58894949699999 + ], + [ + 24.8877245, + 65.665782 + ], + [ + 24.155129, + 65.816027 + ], + [ + 23.6455995, + 66.3014085 + ], + [ + 23.995160500999987, + 66.819708999 + ], + [ + 23.3940235, + 67.485820999 + ], + [ + 23.652348999000026, + 67.958793001 + ], + [ + 21.888943000999973, + 68.5843835 + ], + [ + 20.548636499999986, + 69.05996850100001 + ], + [ + 21.2788215, + 69.31188399899997 + ], + [ + 21.9836115, + 69.07289350000002 + ], + [ + 22.374526, + 68.716667 + ], + [ + 24.903199500000028, + 68.554591 + ], + [ + 25.777502500000026, + 69.018279001 + ], + [ + 25.702101, + 69.25366150100001 + ], + [ + 25.950607, + 69.6965505 + ], + [ + 27.984522, + 70.013965499 + ], + [ + 29.336974, + 69.47831050000002 + ], + [ + 28.8057925, + 69.111147 + ], + [ + 28.92968, + 69.051905 + ], + [ + 28.415766500000018, + 68.915452501 + ], + [ + 28.8007675, + 68.86928600099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 19.91603650000002, + 60.42270650199998 + ], + [ + 20.2753515, + 60.28527 + ], + [ + 20.168312500000013, + 60.17514399800001 + ], + [ + 20.043062, + 60.102843001 + ], + [ + 19.98094149999997, + 60.104172 + ], + [ + 19.9577145, + 60.060943501 + ], + [ + 19.513948, + 60.178337 + ], + [ + 19.91603650000002, + 60.42270650199998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 3.4851835, + 48.851910498999985 + ], + [ + 3.557419164, + 48.61671378800003 + ], + [ + 3.414788999, + 48.390268499 + ], + [ + 3.049454, + 48.36002749900001 + ], + [ + 2.936316, + 48.16339149999999 + ], + [ + 2.476016500000014, + 48.1296365 + ], + [ + 2.402663, + 48.3207175 + ], + [ + 1.99409, + 48.286584 + ], + [ + 1.9221465, + 48.457599499000025 + ], + [ + 1.501526500000011, + 48.94105199799998 + ], + [ + 1.608799, + 49.077894 + ], + [ + 1.704359, + 49.23219699700002 + ], + [ + 2.5905285, + 49.079653999000016 + ], + [ + 3.07188, + 49.117553500999975 + ], + [ + 3.4851835, + 48.851910498999985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 4.969431, + 49.801825999000016 + ], + [ + 5.153738499999974, + 49.717926 + ], + [ + 5.393511, + 49.617111 + ], + [ + 5.107566500000019, + 49.58468949899998 + ], + [ + 4.950990499999989, + 49.23686749699999 + ], + [ + 4.9884305, + 48.68442200099997 + ], + [ + 5.470055, + 48.42092649900002 + ], + [ + 5.8847235, + 47.92604649899999 + ], + [ + 5.37408, + 47.604537999 + ], + [ + 4.958992, + 47.761870499 + ], + [ + 4.704233, + 48.020234999000024 + ], + [ + 4.293421500000022, + 47.92567349699999 + ], + [ + 3.914676, + 47.975023 + ], + [ + 3.414788999, + 48.390268499 + ], + [ + 3.557419164, + 48.61671378800003 + ], + [ + 3.4851835, + 48.851910498999985 + ], + [ + 3.678962499000022, + 49.01829399899998 + ], + [ + 3.585201500999972, + 49.038866998 + ], + [ + 3.643940499999985, + 49.312713497 + ], + [ + 4.0479745, + 49.405644000999985 + ], + [ + 4.233133, + 49.957828498000026 + ], + [ + 4.432494, + 49.941615996999985 + ], + [ + 4.796697, + 50.14867799899997 + ], + [ + 4.896794, + 50.13742049899997 + ], + [ + 4.793194, + 49.98199900100002 + ], + [ + 4.851578, + 49.79325500099998 + ], + [ + 4.969431, + 49.801825999000016 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 4.140853, + 49.978759997 + ], + [ + 4.233133, + 49.957828498000026 + ], + [ + 4.0479745, + 49.405644000999985 + ], + [ + 3.643940499999985, + 49.312713497 + ], + [ + 3.585201500999972, + 49.038866998 + ], + [ + 3.678962499000022, + 49.01829399899998 + ], + [ + 3.4851835, + 48.851910498999985 + ], + [ + 3.07188, + 49.117553500999975 + ], + [ + 2.5905285, + 49.079653999000016 + ], + [ + 1.704359, + 49.23219699700002 + ], + [ + 1.7139305, + 49.409224999 + ], + [ + 1.783834, + 49.758309499 + ], + [ + 1.379698, + 50.06500999799999 + ], + [ + 1.641539500000022, + 50.352149997000026 + ], + [ + 3.090252, + 50.053740499000014 + ], + [ + 3.1727045, + 50.011996497999974 + ], + [ + 4.140853, + 49.978759997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 1.704359, + 49.23219699700002 + ], + [ + 1.608799, + 49.077894 + ], + [ + 1.501526500000011, + 48.94105199799998 + ], + [ + 0.814824499999986, + 48.67016349900001 + ], + [ + 0.412810499999978, + 48.950626499 + ], + [ + 0.297224500000027, + 49.429863001 + ], + [ + 0.3389785, + 49.4409255 + ], + [ + 0.065609, + 49.512576998999975 + ], + [ + 0.192298, + 49.706962498999985 + ], + [ + 1.379698, + 50.06500999799999 + ], + [ + 1.783834, + 49.758309499 + ], + [ + 1.7139305, + 49.409224999 + ], + [ + 1.704359, + 49.23219699700002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 2.936316, + 48.16339149999999 + ], + [ + 3.12857, + 47.983377001 + ], + [ + 2.8519905, + 47.757863 + ], + [ + 2.976535500000011, + 47.56942449799999 + ], + [ + 2.874630500000023, + 47.520424999 + ], + [ + 3.074774499, + 47.029995000999975 + ], + [ + 3.032063, + 46.794909501 + ], + [ + 2.28104350000001, + 46.420403497 + ], + [ + 2.167784499999982, + 46.424068998999985 + ], + [ + 1.4151855, + 46.347215001 + ], + [ + 1.177279, + 46.383947998 + ], + [ + 0.867469, + 46.74821649900002 + ], + [ + 0.05383, + 47.16373349999998 + ], + [ + 0.230000500000017, + 47.60839749899998 + ], + [ + 0.614432500000021, + 47.694215497000016 + ], + [ + 0.841217498999981, + 48.10305950100002 + ], + [ + 0.797658499000022, + 48.19445500099999 + ], + [ + 0.814824499999986, + 48.67016349900001 + ], + [ + 1.501526500000011, + 48.94105199799998 + ], + [ + 1.9221465, + 48.457599499000025 + ], + [ + 1.99409, + 48.286584 + ], + [ + 2.402663, + 48.3207175 + ], + [ + 2.476016500000014, + 48.1296365 + ], + [ + 2.936316, + 48.16339149999999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.297224500000027, + 49.429863001 + ], + [ + 0.412810499999978, + 48.950626499 + ], + [ + 0.814824499999986, + 48.67016349900001 + ], + [ + 0.797658499000022, + 48.19445500099999 + ], + [ + 0.35289, + 48.459688 + ], + [ + -0.054527, + 48.3820045 + ], + [ + -0.234124, + 48.56184750099999 + ], + [ + -0.86036, + 48.50145849900002 + ], + [ + -1.070164499999976, + 48.508492 + ], + [ + -1.42794, + 48.46191500100002 + ], + [ + -1.571089500000028, + 48.626442 + ], + [ + -1.391047, + 48.64465349699998 + ], + [ + -1.942384, + 49.725959999 + ], + [ + -1.266492500000027, + 49.69559849699999 + ], + [ + -1.3077705, + 49.545719 + ], + [ + -1.11962, + 49.35556800099999 + ], + [ + 0.297224500000027, + 49.429863001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.37408, + 47.604537999 + ], + [ + 5.477542, + 47.60871849900002 + ], + [ + 5.375406999, + 47.46016749900002 + ], + [ + 5.518537499999979, + 47.304183998999974 + ], + [ + 5.255232499999977, + 46.97988749899997 + ], + [ + 5.440604, + 46.637912 + ], + [ + 5.310563499000011, + 46.446769999000026 + ], + [ + 4.953853998999989, + 46.513422999 + ], + [ + 4.780208500000015, + 46.176675999 + ], + [ + 4.388074500000016, + 46.219790499 + ], + [ + 3.899538499000016, + 46.275907999000026 + ], + [ + 3.998868500000015, + 46.46486699899998 + ], + [ + 3.629422499999976, + 46.74945649799997 + ], + [ + 3.032063, + 46.794909501 + ], + [ + 3.074774499, + 47.029995000999975 + ], + [ + 2.874630500000023, + 47.520424999 + ], + [ + 2.976535500000011, + 47.56942449799999 + ], + [ + 2.8519905, + 47.757863 + ], + [ + 3.12857, + 47.983377001 + ], + [ + 2.936316, + 48.16339149999999 + ], + [ + 3.049454, + 48.36002749900001 + ], + [ + 3.414788999, + 48.390268499 + ], + [ + 3.914676, + 47.975023 + ], + [ + 4.293421500000022, + 47.92567349699999 + ], + [ + 4.704233, + 48.020234999000024 + ], + [ + 4.958992, + 47.761870499 + ], + [ + 5.37408, + 47.604537999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 2.863276, + 50.70834349699999 + ], + [ + 3.0187085, + 50.773532999 + ], + [ + 3.098481, + 50.779019 + ], + [ + 3.176996, + 50.756164497999976 + ], + [ + 3.245294, + 50.71300949800002 + ], + [ + 3.286492, + 50.52756899799999 + ], + [ + 3.615081499999974, + 50.490399001000014 + ], + [ + 3.65551, + 50.461735498999985 + ], + [ + 3.710389, + 50.30316549999998 + ], + [ + 4.027774500000021, + 50.358330498999976 + ], + [ + 4.140853, + 49.978759997 + ], + [ + 3.1727045, + 50.011996497999974 + ], + [ + 3.090252, + 50.053740499000014 + ], + [ + 1.641539500000022, + 50.352149997000026 + ], + [ + 1.580953, + 50.8695525 + ], + [ + 2.067705, + 51.00649999699999 + ], + [ + 2.546011, + 51.08938199800002 + ], + [ + 2.607036, + 50.91268949900001 + ], + [ + 2.863276, + 50.70834349699999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.818117, + 49.5463105 + ], + [ + 5.893386, + 49.496944498 + ], + [ + 6.367107499999975, + 49.46950700100001 + ], + [ + 6.556986, + 49.41920849899998 + ], + [ + 6.723465499999975, + 49.21882899899998 + ], + [ + 7.101069, + 49.155998 + ], + [ + 7.36875550000002, + 49.16145799899999 + ], + [ + 7.635651, + 49.053950499999985 + ], + [ + 7.536287500000014, + 48.93241299699997 + ], + [ + 7.067510500000026, + 49.066366501 + ], + [ + 6.954672, + 48.89389049800002 + ], + [ + 7.30645, + 48.76911249800003 + ], + [ + 7.079356, + 48.536418500000025 + ], + [ + 7.123163499999976, + 48.51358799899998 + ], + [ + 7.198287, + 48.310471499000016 + ], + [ + 6.846175500000015, + 47.822942496999985 + ], + [ + 6.8235335, + 47.813051 + ], + [ + 6.1470185, + 48.01552049899999 + ], + [ + 5.8847235, + 47.92604649899999 + ], + [ + 5.470055, + 48.42092649900002 + ], + [ + 4.9884305, + 48.68442200099997 + ], + [ + 4.950990499999989, + 49.23686749699999 + ], + [ + 5.107566500000019, + 49.58468949899998 + ], + [ + 5.393511, + 49.617111 + ], + [ + 5.470882999000025, + 49.49723799899999 + ], + [ + 5.734555999, + 49.545690501000024 + ], + [ + 5.818117, + 49.5463105 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.635651, + 49.053950499999985 + ], + [ + 7.910654500000021, + 49.04516349900001 + ], + [ + 8.068407499999978, + 48.999316497999985 + ], + [ + 8.232632998999975, + 48.966571500999976 + ], + [ + 7.9596305, + 48.71858099899998 + ], + [ + 7.680713, + 48.25726699699999 + ], + [ + 7.5779195, + 48.121391999000025 + ], + [ + 7.577291, + 48.115654999000014 + ], + [ + 7.545990500000016, + 47.74357399899998 + ], + [ + 7.589039, + 47.589877999 + ], + [ + 7.5551595, + 47.56456399699999 + ], + [ + 7.510905499999978, + 47.50258249799998 + ], + [ + 7.445019, + 47.46172349699998 + ], + [ + 7.42113949899999, + 47.446387999000024 + ], + [ + 7.380894, + 47.431892499000014 + ], + [ + 7.326466, + 47.43985350000003 + ], + [ + 7.130353, + 47.503040499 + ], + [ + 6.846175500000015, + 47.822942496999985 + ], + [ + 7.198287, + 48.310471499000016 + ], + [ + 7.123163499999976, + 48.51358799899998 + ], + [ + 7.079356, + 48.536418500000025 + ], + [ + 7.30645, + 48.76911249800003 + ], + [ + 6.954672, + 48.89389049800002 + ], + [ + 7.067510500000026, + 49.066366501 + ], + [ + 7.536287500000014, + 48.93241299699997 + ], + [ + 7.635651, + 49.053950499999985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.846175500000015, + 47.822942496999985 + ], + [ + 7.130353, + 47.503040499 + ], + [ + 6.939186, + 47.433704499999976 + ], + [ + 6.879806, + 47.35243999800002 + ], + [ + 7.061636, + 47.34373449899999 + ], + [ + 6.858914, + 47.16529449900003 + ], + [ + 6.460011, + 46.85155149899998 + ], + [ + 6.138106, + 46.55766699700001 + ], + [ + 6.064003, + 46.41622899700002 + ], + [ + 5.4736565, + 46.26428400100002 + ], + [ + 5.310563499000011, + 46.446769999000026 + ], + [ + 5.440604, + 46.637912 + ], + [ + 5.255232499999977, + 46.97988749899997 + ], + [ + 5.518537499999979, + 47.304183998999974 + ], + [ + 5.375406999, + 47.46016749900002 + ], + [ + 5.477542, + 47.60871849900002 + ], + [ + 5.37408, + 47.604537999 + ], + [ + 5.8847235, + 47.92604649899999 + ], + [ + 6.1470185, + 48.01552049899999 + ], + [ + 6.8235335, + 47.813051 + ], + [ + 6.846175500000015, + 47.822942496999985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.797658499000022, + 48.19445500099999 + ], + [ + 0.841217498999981, + 48.10305950100002 + ], + [ + 0.614432500000021, + 47.694215497000016 + ], + [ + 0.230000500000017, + 47.60839749899998 + ], + [ + 0.05383, + 47.16373349999998 + ], + [ + -0.102116, + 47.06479999800001 + ], + [ + -0.891964, + 46.975820499 + ], + [ + -0.537795001, + 46.386463999 + ], + [ + -0.7504715, + 46.304254499000024 + ], + [ + -1.129406, + 46.310271999 + ], + [ + -1.8123445, + 46.49341949799998 + ], + [ + -2.141985, + 46.81897349799999 + ], + [ + -1.980413, + 47.02890799900001 + ], + [ + -2.547108001000026, + 47.292373499 + ], + [ + -2.458493, + 47.44811999900003 + ], + [ + -2.097034, + 47.63135649899999 + ], + [ + -1.245885, + 47.77671749899997 + ], + [ + -1.238248, + 47.809992497 + ], + [ + -1.015823501, + 48.00328599900001 + ], + [ + -1.070164499999976, + 48.508492 + ], + [ + -0.86036, + 48.50145849900002 + ], + [ + -0.234124, + 48.56184750099999 + ], + [ + -0.054527, + 48.3820045 + ], + [ + 0.35289, + 48.459688 + ], + [ + 0.797658499000022, + 48.19445500099999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 19.666329, + 47.58855000099999 + ], + [ + 19.99046249999998, + 47.346628001 + ], + [ + 20.094639, + 47.0074265 + ], + [ + 18.965907500000014, + 47.028965 + ], + [ + 18.688433499999974, + 47.577067499 + ], + [ + 18.848478, + 47.81822800100002 + ], + [ + 18.7548155, + 47.975082499 + ], + [ + 18.928392, + 48.056832499 + ], + [ + 19.086134500000014, + 47.838170499 + ], + [ + 19.570937, + 47.73490000100003 + ], + [ + 19.666329, + 47.58855000099999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 18.965907500000014, + 47.028965 + ], + [ + 18.925097, + 46.85716850099999 + ], + [ + 18.636275, + 46.687217498999985 + ], + [ + 18.210897499999987, + 46.77816150000001 + ], + [ + 18.205248499999982, + 46.97163300099999 + ], + [ + 17.419067499999983, + 46.75065649700002 + ], + [ + 17.074528499999985, + 47.04871349699999 + ], + [ + 17.1723915, + 47.432483998 + ], + [ + 17.737528, + 47.47290749699999 + ], + [ + 17.7652275, + 47.27287850099998 + ], + [ + 17.883888, + 47.38958699800003 + ], + [ + 17.893923, + 47.739456999000026 + ], + [ + 18.848478, + 47.81822800100002 + ], + [ + 18.688433499999974, + 47.577067499 + ], + [ + 18.965907500000014, + 47.028965 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 17.893923, + 47.739456999000026 + ], + [ + 17.883888, + 47.38958699800003 + ], + [ + 17.7652275, + 47.27287850099998 + ], + [ + 17.737528, + 47.47290749699999 + ], + [ + 17.1723915, + 47.432483998 + ], + [ + 17.074528499999985, + 47.04871349699999 + ], + [ + 17.419067499999983, + 46.75065649700002 + ], + [ + 17.2214945, + 46.671697499 + ], + [ + 17.187541, + 46.42907199799998 + ], + [ + 16.8760435, + 46.32060249699998 + ], + [ + 16.854754999000022, + 46.350440999 + ], + [ + 16.596805, + 46.47590249899997 + ], + [ + 16.3707935, + 46.722243499 + ], + [ + 16.113849, + 46.86906799899998 + ], + [ + 16.508267499999988, + 47.00125599900002 + ], + [ + 16.4337615, + 47.35291849999999 + ], + [ + 16.64622, + 47.446597 + ], + [ + 16.652076, + 47.6229035 + ], + [ + 16.421846, + 47.66470449899998 + ], + [ + 17.093074, + 47.708236 + ], + [ + 17.1607975, + 48.006656501 + ], + [ + 17.247427500000015, + 48.01200899899999 + ], + [ + 17.70543650000002, + 47.75899249899999 + ], + [ + 17.893923, + 47.739456999000026 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 18.925097, + 46.85716850099999 + ], + [ + 19.006243499999982, + 46.70492349699998 + ], + [ + 18.802291, + 46.108764999000016 + ], + [ + 18.821306, + 45.91438299700002 + ], + [ + 18.446884, + 45.73704899799998 + ], + [ + 17.911642, + 45.79095099699998 + ], + [ + 17.651499, + 45.847835499999974 + ], + [ + 17.294325, + 45.98854450099998 + ], + [ + 16.8760435, + 46.32060249699998 + ], + [ + 17.187541, + 46.42907199799998 + ], + [ + 17.2214945, + 46.671697499 + ], + [ + 17.419067499999983, + 46.75065649700002 + ], + [ + 18.205248499999982, + 46.97163300099999 + ], + [ + 18.210897499999987, + 46.77816150000001 + ], + [ + 18.636275, + 46.687217498999985 + ], + [ + 18.925097, + 46.85716850099999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.121077500000013, + 48.378311499 + ], + [ + 21.122180500000013, + 47.96182749899998 + ], + [ + 20.8279715, + 47.65901849699998 + ], + [ + 20.771698, + 47.65447650099998 + ], + [ + 20.3941565, + 47.420463498 + ], + [ + 19.993662500000028, + 47.672739501000024 + ], + [ + 19.666329, + 47.58855000099999 + ], + [ + 19.570937, + 47.73490000100003 + ], + [ + 19.086134500000014, + 47.838170499 + ], + [ + 18.928392, + 48.056832499 + ], + [ + 19.0143225, + 48.077736499000025 + ], + [ + 20.051879, + 48.16770399699999 + ], + [ + 20.463937, + 48.463967 + ], + [ + 21.440056, + 48.58523299900003 + ], + [ + 21.721957, + 48.351050499 + ], + [ + 22.121077500000013, + 48.378311499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.896270500000014, + 47.95412050099998 + ], + [ + 22.1808375, + 47.60009449900002 + ], + [ + 22.12832, + 47.59808949699999 + ], + [ + 21.658955, + 47.02213149800002 + ], + [ + 21.2478405, + 47.00669999899998 + ], + [ + 21.300893499999972, + 47.150679001000015 + ], + [ + 20.9920975, + 47.23228799899999 + ], + [ + 20.4242655, + 46.80347099800002 + ], + [ + 20.061163, + 46.80639099699999 + ], + [ + 20.094639, + 47.0074265 + ], + [ + 19.99046249999998, + 47.346628001 + ], + [ + 19.666329, + 47.58855000099999 + ], + [ + 19.993662500000028, + 47.672739501000024 + ], + [ + 20.3941565, + 47.420463498 + ], + [ + 20.771698, + 47.65447650099998 + ], + [ + 20.8279715, + 47.65901849699998 + ], + [ + 21.122180500000013, + 47.96182749899998 + ], + [ + 22.121077500000013, + 48.378311499 + ], + [ + 22.155306, + 48.403396499 + ], + [ + 22.896270500000014, + 47.95412050099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 21.658955, + 47.02213149800002 + ], + [ + 21.441398, + 46.651467 + ], + [ + 21.103170499999976, + 46.26259049700002 + ], + [ + 20.7756, + 46.27590999900002 + ], + [ + 20.705303500000014, + 46.160937499 + ], + [ + 20.264296, + 46.1263735 + ], + [ + 19.86539, + 46.150334499 + ], + [ + 19.698099, + 46.187930999 + ], + [ + 19.3027095, + 45.99155050000002 + ], + [ + 18.889734, + 45.92118049700002 + ], + [ + 18.821306, + 45.91438299700002 + ], + [ + 18.802291, + 46.108764999000016 + ], + [ + 19.006243499999982, + 46.70492349699998 + ], + [ + 18.925097, + 46.85716850099999 + ], + [ + 18.965907500000014, + 47.028965 + ], + [ + 20.094639, + 47.0074265 + ], + [ + 20.061163, + 46.80639099699999 + ], + [ + 20.4242655, + 46.80347099800002 + ], + [ + 20.9920975, + 47.23228799899999 + ], + [ + 21.300893499999972, + 47.150679001000015 + ], + [ + 21.2478405, + 47.00669999899998 + ], + [ + 21.658955, + 47.02213149800002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -8.177718, + 54.464973500999974 + ], + [ + -7.565956, + 54.126514499 + ], + [ + -7.0286355, + 54.42130649799998 + ], + [ + -6.623778500000014, + 54.03654849700001 + ], + [ + -6.2680155, + 54.102337 + ], + [ + -6.1031835, + 53.99999950099999 + ], + [ + -6.3811025, + 54.012704 + ], + [ + -6.247098, + 53.722454500000026 + ], + [ + -6.749452500000018, + 53.913742997999975 + ], + [ + -7.343828499999972, + 53.79906249800001 + ], + [ + -7.063349, + 53.468781501000024 + ], + [ + -6.939413, + 52.88005449799999 + ], + [ + -7.674081, + 52.781294 + ], + [ + -7.674682691999976, + 52.78186351599999 + ], + [ + -8.081461029000025, + 53.166883229 + ], + [ + -8.359738204999985, + 52.971357996999984 + ], + [ + -9.008489770999972, + 53.140603919 + ], + [ + -9.009308499999975, + 53.14081749899998 + ], + [ + -9.009085012000014, + 53.14119886499998 + ], + [ + -8.933212, + 53.270670997000025 + ], + [ + -9.63143794299998, + 53.296942788000024 + ], + [ + -9.630072499999983, + 53.29734849699997 + ], + [ + -9.63144528700002, + 53.29734542900002 + ], + [ + -10.179155499999979, + 53.40698899900002 + ], + [ + -10.189941, + 53.55608850099998 + ], + [ + -9.80073826, + 53.608912261 + ], + [ + -9.900522, + 53.764440997 + ], + [ + -9.546066, + 53.88420849900001 + ], + [ + -10.070641500000022, + 54.27627250099999 + ], + [ + -9.132258499999978, + 54.162360498 + ], + [ + -8.508256, + 54.216985497999985 + ], + [ + -8.134833, + 54.603353501000015 + ], + [ + -8.7886565, + 54.68891599699998 + ], + [ + -8.28179849999998, + 55.158847998 + ], + [ + -7.339527, + 55.374958 + ], + [ + -6.924876, + 55.23369450000001 + ], + [ + -7.256068500000026, + 55.067034998 + ], + [ + -7.534506, + 54.74713900099999 + ], + [ + -7.921372, + 54.69654449900003 + ], + [ + -7.703411501, + 54.60828799900003 + ], + [ + -8.177718, + 54.464973500999974 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.86407650000001, + 45.91675049999998 + ], + [ + 7.936649, + 45.72434049999998 + ], + [ + 7.895811, + 45.590028 + ], + [ + 7.104723, + 45.46845449900002 + ], + [ + 6.8023685, + 45.778562 + ], + [ + 7.044886, + 45.92241299900002 + ], + [ + 7.86407650000001, + 45.91675049999998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.686725500000023, + 44.36592199900002 + ], + [ + 10.018769500000019, + 44.044535998000015 + ], + [ + 9.511344, + 44.21667549799997 + ], + [ + 8.63301, + 44.379803498 + ], + [ + 8.135350999000025, + 43.93894049800002 + ], + [ + 7.529827, + 43.784007997 + ], + [ + 7.714236500000027, + 44.061513499 + ], + [ + 8.015629499999989, + 44.11067649900002 + ], + [ + 8.252819499, + 44.528740501000016 + ], + [ + 8.261596, + 44.51942449699999 + ], + [ + 8.576182, + 44.509206001 + ], + [ + 9.202995499999986, + 44.613476499 + ], + [ + 9.493363, + 44.555858999 + ], + [ + 9.4790595, + 44.40924050000001 + ], + [ + 9.686725500000023, + 44.36592199900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.452801, + 46.53068299900002 + ], + [ + 10.622145499999988, + 46.448101999000016 + ], + [ + 10.515751500000022, + 46.34322449699999 + ], + [ + 10.502388, + 45.830373 + ], + [ + 10.840176499999984, + 45.832758501 + ], + [ + 10.631074, + 45.60951250099998 + ], + [ + 10.6546555, + 45.41582699899999 + ], + [ + 11.205502500000023, + 45.10948749900001 + ], + [ + 11.426765499999988, + 44.950076 + ], + [ + 11.246231500000022, + 44.951427997 + ], + [ + 10.887909499999978, + 44.914265999 + ], + [ + 10.504344, + 44.922417999 + ], + [ + 10.464030499999978, + 44.93717150100002 + ], + [ + 10.083503, + 45.04395850100002 + ], + [ + 9.8911015, + 45.130898 + ], + [ + 9.548684499999979, + 45.13264849900003 + ], + [ + 9.3246605, + 44.69 + ], + [ + 9.200074, + 44.68609949699999 + ], + [ + 8.887709, + 45.059148999 + ], + [ + 8.5477975, + 45.168147497 + ], + [ + 8.51356, + 45.31327850100001 + ], + [ + 8.8429155, + 45.393841 + ], + [ + 8.706896500000028, + 45.558316 + ], + [ + 8.593811, + 45.828224998999985 + ], + [ + 8.713936, + 46.097271998999986 + ], + [ + 8.912147, + 45.830444999 + ], + [ + 9.088803499999983, + 45.89689700100001 + ], + [ + 8.988276499999984, + 45.97228249800003 + ], + [ + 9.1593775, + 46.169601 + ], + [ + 9.248531500000013, + 46.23376800099999 + ], + [ + 9.714149500000019, + 46.292708499000014 + ], + [ + 10.2448745, + 46.62209199799997 + ], + [ + 10.452801, + 46.53068299900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 14.779646999000022, + 42.070021499 + ], + [ + 14.485359, + 41.75962299899999 + ], + [ + 14.2297575, + 41.87705649700001 + ], + [ + 13.941038499, + 41.68794399699999 + ], + [ + 13.296299499999975, + 41.94858850000003 + ], + [ + 13.0305745, + 42.115353 + ], + [ + 13.1913805, + 42.587491 + ], + [ + 13.39403149899999, + 42.591233999 + ], + [ + 13.3577745, + 42.694069997999975 + ], + [ + 13.9157315, + 42.894577 + ], + [ + 14.1469065, + 42.53059649900001 + ], + [ + 14.253960499000016, + 42.444798499 + ], + [ + 14.779646999000022, + 42.070021499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 15.13817849999998, + 41.92700749900001 + ], + [ + 14.934101, + 41.61942899899998 + ], + [ + 15.0076555, + 41.486356999 + ], + [ + 14.5051, + 41.382461498 + ], + [ + 14.382519, + 41.443216499000016 + ], + [ + 13.977928, + 41.462454 + ], + [ + 13.941038499, + 41.68794399699999 + ], + [ + 14.2297575, + 41.87705649700001 + ], + [ + 14.485359, + 41.75962299899999 + ], + [ + 14.779646999000022, + 42.070021499 + ], + [ + 15.13817849999998, + 41.92700749900001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 15.542921, + 41.05582350100002 + ], + [ + 15.335024499999975, + 40.834843998 + ], + [ + 15.8065315, + 40.27222249800002 + ], + [ + 15.644945499000016, + 40.04279049899998 + ], + [ + 15.356917, + 39.999090997999986 + ], + [ + 14.787251500000025, + 40.66618049800002 + ], + [ + 14.747420499999976, + 40.67764649899999 + ], + [ + 14.692414499999984, + 40.63406599899997 + ], + [ + 14.528490499999975, + 40.607152498 + ], + [ + 14.46862, + 40.62020149900002 + ], + [ + 14.324673, + 40.56908499899998 + ], + [ + 14.460677499999974, + 40.74293050099999 + ], + [ + 14.0321305, + 40.898838997999974 + ], + [ + 13.760795499999972, + 41.22316799700002 + ], + [ + 13.8737185, + 41.338294001 + ], + [ + 13.977928, + 41.462454 + ], + [ + 14.382519, + 41.443216499000016 + ], + [ + 14.5051, + 41.382461498 + ], + [ + 15.0076555, + 41.486356999 + ], + [ + 15.046827, + 41.443310499 + ], + [ + 15.149196500000016, + 41.280412497999976 + ], + [ + 15.542921, + 41.05582350100002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.867264, + 40.39784549900003 + ], + [ + 16.719678499, + 40.481393500000024 + ], + [ + 16.72499, + 40.71381449900002 + ], + [ + 16.2440985, + 40.83800849900001 + ], + [ + 16.202532, + 40.917511 + ], + [ + 15.870311, + 41.13989999900002 + ], + [ + 15.542921, + 41.05582350100002 + ], + [ + 15.149196500000016, + 41.280412497999976 + ], + [ + 15.046827, + 41.443310499 + ], + [ + 15.0076555, + 41.486356999 + ], + [ + 14.934101, + 41.61942899899998 + ], + [ + 15.13817849999998, + 41.92700749900001 + ], + [ + 16.17653150000001, + 41.88478950000001 + ], + [ + 15.89714, + 41.603231999 + ], + [ + 16.024738500000012, + 41.425590499 + ], + [ + 16.542302499000016, + 41.229441 + ], + [ + 17.388981, + 40.89186349900001 + ], + [ + 18.097453, + 40.515377999 + ], + [ + 18.517056, + 40.135147999000026 + ], + [ + 18.369068, + 39.793742001 + ], + [ + 18.04794750000002, + 39.92847849899999 + ], + [ + 17.76350449900002, + 40.295507 + ], + [ + 17.127098, + 40.51762050000002 + ], + [ + 16.867264, + 40.39784549900003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.867264, + 40.39784549900003 + ], + [ + 16.644317, + 40.119095999000024 + ], + [ + 16.398881, + 40.055399998999974 + ], + [ + 16.337835499999983, + 39.935806997999975 + ], + [ + 15.75595850000002, + 39.923496 + ], + [ + 15.644945499000016, + 40.04279049899998 + ], + [ + 15.8065315, + 40.27222249800002 + ], + [ + 15.335024499999975, + 40.834843998 + ], + [ + 15.542921, + 41.05582350100002 + ], + [ + 15.870311, + 41.13989999900002 + ], + [ + 16.202532, + 40.917511 + ], + [ + 16.2440985, + 40.83800849900001 + ], + [ + 16.72499, + 40.71381449900002 + ], + [ + 16.719678499, + 40.481393500000024 + ], + [ + 16.867264, + 40.39784549900003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.5820845, + 38.46979049700002 + ], + [ + 16.0638095, + 37.924418996999975 + ], + [ + 15.678212, + 37.95411949800001 + ], + [ + 15.636063, + 38.231473498000014 + ], + [ + 15.652291742999978, + 38.247265964 + ], + [ + 15.687350835000018, + 38.28138256400001 + ], + [ + 15.918956, + 38.50676149899999 + ], + [ + 15.8481175, + 38.658864498000014 + ], + [ + 16.2137535, + 38.81043999899998 + ], + [ + 16.093153, + 39.04874299800002 + ], + [ + 15.75595850000002, + 39.923496 + ], + [ + 16.337835499999983, + 39.935806997999975 + ], + [ + 16.398881, + 40.055399998999974 + ], + [ + 16.644317, + 40.119095999000024 + ], + [ + 16.52795550000002, + 39.66865950099998 + ], + [ + 17.025064499999985, + 39.483578498999975 + ], + [ + 17.188881, + 39.020471998 + ], + [ + 16.890732, + 38.92712849899999 + ], + [ + 16.566985499999987, + 38.765481998999974 + ], + [ + 16.5820845, + 38.46979049700002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 15.572551, + 38.234204998999985 + ], + [ + 15.2580825, + 37.807223997999984 + ], + [ + 15.091499, + 37.3577085 + ], + [ + 15.315962500000012, + 37.035012498000015 + ], + [ + 15.116582, + 36.67495599900002 + ], + [ + 15.000358, + 36.70284749799998 + ], + [ + 14.493577, + 36.78673349799999 + ], + [ + 14.337594500000023, + 37.001979999000014 + ], + [ + 14.036207, + 37.10602799899999 + ], + [ + 12.896496, + 37.577118498 + ], + [ + 12.672787, + 37.56008099899998 + ], + [ + 12.4429295, + 37.81105199899997 + ], + [ + 12.561744499999975, + 38.06556199800002 + ], + [ + 12.731687, + 38.180297499 + ], + [ + 12.811005, + 38.08151549799999 + ], + [ + 12.9772625, + 38.04020599900002 + ], + [ + 13.36569350000002, + 38.18228949899998 + ], + [ + 13.7438295, + 37.97024649799999 + ], + [ + 14.183486, + 38.01939649899998 + ], + [ + 15.652927, + 38.26710399699999 + ], + [ + 15.572551, + 38.234204998999985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.423461998999983, + 41.17674100099998 + ], + [ + 9.748871999000016, + 40.660406997999985 + ], + [ + 9.8270205, + 40.51211249900001 + ], + [ + 9.62652699900002, + 40.22487699800001 + ], + [ + 9.7352045, + 40.075661998999976 + ], + [ + 9.6511185, + 39.54932399799998 + ], + [ + 9.555865, + 39.133966997000016 + ], + [ + 9.1099865, + 39.214018501 + ], + [ + 8.859653, + 38.87746949899997 + ], + [ + 8.612392, + 38.957787998000015 + ], + [ + 8.368104499000026, + 39.21381050000002 + ], + [ + 8.393, + 39.446529499 + ], + [ + 8.5022545, + 39.713006999000015 + ], + [ + 8.399809, + 40.40756849899998 + ], + [ + 8.135010500000021, + 40.73634899899997 + ], + [ + 8.201709, + 40.97256649799999 + ], + [ + 8.4171275, + 40.83831349899998 + ], + [ + 8.802688499999988, + 40.931047998 + ], + [ + 9.163662, + 41.23562400100002 + ], + [ + 9.423461998999983, + 41.17674100099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 12.2407455, + 47.069168499 + ], + [ + 12.143811, + 46.913779998 + ], + [ + 12.477924, + 46.67983549799999 + ], + [ + 11.828336499999978, + 46.508914499000014 + ], + [ + 11.20649, + 46.21977949699999 + ], + [ + 10.9786995, + 46.483954 + ], + [ + 10.622145499999988, + 46.448101999000016 + ], + [ + 10.452801, + 46.53068299900002 + ], + [ + 10.4696515, + 46.854909 + ], + [ + 11.02225, + 46.765410498999984 + ], + [ + 11.164281500000016, + 46.96572250000003 + ], + [ + 11.627199500000017, + 47.013299 + ], + [ + 12.136014, + 47.0806675 + ], + [ + 12.2407455, + 47.069168499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.840176499999984, + 45.832758501 + ], + [ + 10.502388, + 45.830373 + ], + [ + 10.515751500000022, + 46.34322449699999 + ], + [ + 10.622145499999988, + 46.448101999000016 + ], + [ + 10.9786995, + 46.483954 + ], + [ + 11.20649, + 46.21977949699999 + ], + [ + 11.828336499999978, + 46.508914499000014 + ], + [ + 11.7744025, + 46.358237997 + ], + [ + 11.962298499999974, + 46.18786099800002 + ], + [ + 11.684318500000018, + 45.98407799900002 + ], + [ + 11.373413500000026, + 45.983213997 + ], + [ + 11.138337499999977, + 45.69708849900002 + ], + [ + 10.840176499999984, + 45.832758501 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 12.690635, + 46.656972000999986 + ], + [ + 12.73139299899998, + 46.634288 + ], + [ + 12.498703, + 46.412222500999974 + ], + [ + 12.320955498999979, + 46.2689145 + ], + [ + 12.495829, + 46.152560499 + ], + [ + 12.4005345, + 46.04199650100003 + ], + [ + 12.661673, + 45.792440999 + ], + [ + 12.779838, + 45.85444850099998 + ], + [ + 12.979058, + 45.834048997000025 + ], + [ + 13.098785501, + 45.644532997 + ], + [ + 12.434162500000014, + 45.42448599699998 + ], + [ + 12.631836, + 45.534338499 + ], + [ + 12.413683999, + 45.544310500999984 + ], + [ + 12.132562, + 45.300370499999985 + ], + [ + 12.200494, + 45.257337 + ], + [ + 12.2045665, + 45.19767599800002 + ], + [ + 12.33057150000002, + 45.1605505 + ], + [ + 12.328777, + 45.151860999 + ], + [ + 12.302155605999985, + 45.13788754699999 + ], + [ + 12.279706042999976, + 45.123266828 + ], + [ + 12.399056499999972, + 44.792615501 + ], + [ + 12.0980285, + 44.971468999000024 + ], + [ + 11.426765499999988, + 44.950076 + ], + [ + 11.205502500000023, + 45.10948749900001 + ], + [ + 10.6546555, + 45.41582699899999 + ], + [ + 10.631074, + 45.60951250099998 + ], + [ + 10.840176499999984, + 45.832758501 + ], + [ + 11.138337499999977, + 45.69708849900002 + ], + [ + 11.373413500000026, + 45.983213997 + ], + [ + 11.684318500000018, + 45.98407799900002 + ], + [ + 11.962298499999974, + 46.18786099800002 + ], + [ + 11.7744025, + 46.358237997 + ], + [ + 11.828336499999978, + 46.508914499000014 + ], + [ + 12.477924, + 46.67983549799999 + ], + [ + 12.690635, + 46.656972000999986 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.714184999, + 46.52270349999998 + ], + [ + 13.684032, + 46.437472501 + ], + [ + 13.3754925, + 46.29823249899999 + ], + [ + 13.66434750000002, + 46.177549999 + ], + [ + 13.496938999, + 46.051334999 + ], + [ + 13.597145, + 45.81952250099999 + ], + [ + 13.596243, + 45.807937501000026 + ], + [ + 13.9186565, + 45.63351749899999 + ], + [ + 13.7228235, + 45.59472549700001 + ], + [ + 13.579783, + 45.786951499 + ], + [ + 13.40649350000001, + 45.725175001000025 + ], + [ + 13.130853, + 45.771844499999986 + ], + [ + 13.098785501, + 45.644532997 + ], + [ + 12.979058, + 45.834048997000025 + ], + [ + 12.779838, + 45.85444850099998 + ], + [ + 12.661673, + 45.792440999 + ], + [ + 12.4005345, + 46.04199650100003 + ], + [ + 12.495829, + 46.152560499 + ], + [ + 12.320955498999979, + 46.2689145 + ], + [ + 12.498703, + 46.412222500999974 + ], + [ + 12.73139299899998, + 46.634288 + ], + [ + 13.504249500000014, + 46.56630399800002 + ], + [ + 13.714184999, + 46.52270349999998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.504344, + 44.922417999 + ], + [ + 10.887909499999978, + 44.914265999 + ], + [ + 11.246231500000022, + 44.951427997 + ], + [ + 11.426765499999988, + 44.950076 + ], + [ + 12.0980285, + 44.971468999000024 + ], + [ + 12.399056499999972, + 44.792615501 + ], + [ + 12.269892, + 44.630007497 + ], + [ + 12.384282, + 44.224726499999974 + ], + [ + 12.450349, + 44.162189496999986 + ], + [ + 12.75078, + 43.970601500999976 + ], + [ + 12.669299, + 43.823227498999984 + ], + [ + 12.493956, + 43.91554650099999 + ], + [ + 12.513435500000014, + 43.99126949700002 + ], + [ + 12.4046075, + 43.95567850100002 + ], + [ + 12.4177, + 43.899029997000014 + ], + [ + 12.2837975, + 43.76489899799998 + ], + [ + 12.107464, + 43.75375349699999 + ], + [ + 11.98652850000002, + 43.76191399800001 + ], + [ + 11.710189, + 43.877430498000024 + ], + [ + 11.715906500000017, + 44.122540499000024 + ], + [ + 11.524959500000023, + 44.157639999000025 + ], + [ + 11.202439500000025, + 44.100721 + ], + [ + 11.049449, + 44.09022999899997 + ], + [ + 10.814787, + 44.11617449900001 + ], + [ + 10.624078, + 44.120351501000016 + ], + [ + 10.470149, + 44.226041001 + ], + [ + 10.253875, + 44.26856699899997 + ], + [ + 10.142054499999972, + 44.353852999000026 + ], + [ + 9.686725500000023, + 44.36592199900002 + ], + [ + 9.4790595, + 44.40924050000001 + ], + [ + 9.493363, + 44.555858999 + ], + [ + 9.202995499999986, + 44.613476499 + ], + [ + 9.200074, + 44.68609949699999 + ], + [ + 9.3246605, + 44.69 + ], + [ + 9.548684499999979, + 45.13264849900003 + ], + [ + 9.8911015, + 45.130898 + ], + [ + 10.083503, + 45.04395850100002 + ], + [ + 10.464030499999978, + 44.93717150100002 + ], + [ + 10.504344, + 44.922417999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 12.2837975, + 43.76489899799998 + ], + [ + 12.371335499999986, + 43.70900450099998 + ], + [ + 12.213856, + 43.61082449999998 + ], + [ + 12.025227, + 43.41555699899999 + ], + [ + 12.2237225, + 43.29624549800002 + ], + [ + 11.961263499999973, + 43.166890498999976 + ], + [ + 11.952102500000024, + 42.900970497 + ], + [ + 11.958612500000015, + 42.87430749700002 + ], + [ + 11.933317, + 42.869329999 + ], + [ + 11.894987500000013, + 42.83465349900001 + ], + [ + 11.746037, + 42.78574249899998 + ], + [ + 11.804794500000014, + 42.64398299800001 + ], + [ + 11.449938499999973, + 42.37767050100001 + ], + [ + 11.0979815, + 42.393149499 + ], + [ + 11.1765795, + 42.541544 + ], + [ + 10.7056725, + 42.9418645 + ], + [ + 10.499046, + 42.93527050099999 + ], + [ + 10.528247498999974, + 43.231603999000015 + ], + [ + 10.299847, + 43.58192899900001 + ], + [ + 10.258118, + 43.81514699899998 + ], + [ + 10.143476, + 43.97542049899999 + ], + [ + 10.018769500000019, + 44.044535998000015 + ], + [ + 9.686725500000023, + 44.36592199900002 + ], + [ + 10.142054499999972, + 44.353852999000026 + ], + [ + 10.253875, + 44.26856699899997 + ], + [ + 10.470149, + 44.226041001 + ], + [ + 10.624078, + 44.120351501000016 + ], + [ + 10.814787, + 44.11617449900001 + ], + [ + 11.049449, + 44.09022999899997 + ], + [ + 11.202439500000025, + 44.100721 + ], + [ + 11.524959500000023, + 44.157639999000025 + ], + [ + 11.715906500000017, + 44.122540499000024 + ], + [ + 11.710189, + 43.877430498000024 + ], + [ + 11.98652850000002, + 43.76191399800001 + ], + [ + 12.107464, + 43.75375349699999 + ], + [ + 12.2837975, + 43.76489899799998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.189226, + 42.733565499 + ], + [ + 12.896352, + 42.61641799900002 + ], + [ + 12.444709, + 42.398799499 + ], + [ + 11.894987500000013, + 42.83465349900001 + ], + [ + 11.933317, + 42.869329999 + ], + [ + 11.958612500000015, + 42.87430749700002 + ], + [ + 11.952102500000024, + 42.900970497 + ], + [ + 11.961263499999973, + 43.166890498999976 + ], + [ + 12.2237225, + 43.29624549800002 + ], + [ + 12.025227, + 43.41555699899999 + ], + [ + 12.213856, + 43.61082449999998 + ], + [ + 12.767457, + 43.459829996999986 + ], + [ + 12.862358, + 43.2112325 + ], + [ + 12.895834499999978, + 42.96457099899999 + ], + [ + 13.235287500000027, + 42.867662999 + ], + [ + 13.189226, + 42.733565499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.9157315, + 42.894577 + ], + [ + 13.3577745, + 42.694069997999975 + ], + [ + 13.189226, + 42.733565499 + ], + [ + 13.235287500000027, + 42.867662999 + ], + [ + 12.895834499999978, + 42.96457099899999 + ], + [ + 12.862358, + 43.2112325 + ], + [ + 12.767457, + 43.459829996999986 + ], + [ + 12.213856, + 43.61082449999998 + ], + [ + 12.371335499999986, + 43.70900450099998 + ], + [ + 12.2837975, + 43.76489899799998 + ], + [ + 12.4177, + 43.899029997000014 + ], + [ + 12.493956, + 43.91554650099999 + ], + [ + 12.669299, + 43.823227498999984 + ], + [ + 12.75078, + 43.970601500999976 + ], + [ + 13.172615, + 43.75034599899999 + ], + [ + 13.6420965, + 43.47414249899998 + ], + [ + 13.742970499000023, + 43.29414699900002 + ], + [ + 13.849453, + 43.06665949799998 + ], + [ + 13.9157315, + 42.894577 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.189226, + 42.733565499 + ], + [ + 13.3577745, + 42.694069997999975 + ], + [ + 13.39403149899999, + 42.591233999 + ], + [ + 13.1913805, + 42.587491 + ], + [ + 13.0305745, + 42.115353 + ], + [ + 13.296299499999975, + 41.94858850000003 + ], + [ + 13.941038499, + 41.68794399699999 + ], + [ + 13.977928, + 41.462454 + ], + [ + 13.8737185, + 41.338294001 + ], + [ + 13.760795499999972, + 41.22316799700002 + ], + [ + 13.067982, + 41.221979 + ], + [ + 12.7733215, + 41.41626399900002 + ], + [ + 11.733844, + 42.15805899899999 + ], + [ + 11.449938499999973, + 42.37767050100001 + ], + [ + 11.804794500000014, + 42.64398299800001 + ], + [ + 11.746037, + 42.78574249899998 + ], + [ + 11.894987500000013, + 42.83465349900001 + ], + [ + 12.444709, + 42.398799499 + ], + [ + 12.896352, + 42.61641799900002 + ], + [ + 13.189226, + 42.733565499 + ] + ], + [ + [ + 12.4466885, + 41.90174499800003 + ], + [ + 12.458003, + 41.90148549899999 + ], + [ + 12.45582, + 41.907197499 + ], + [ + 12.4466885, + 41.90174499800003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.607078, + 47.0607745 + ], + [ + 9.4760475, + 47.051797498999974 + ], + [ + 9.530749, + 47.27058100099998 + ], + [ + 9.620580500000017, + 47.15164549999997 + ], + [ + 9.607078, + 47.0607745 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 24.91819, + 56.440865 + ], + [ + 25.0920375, + 56.186041998 + ], + [ + 25.821386500000017, + 56.052179 + ], + [ + 26.0461545, + 55.94410599899999 + ], + [ + 26.630365, + 55.68066699899998 + ], + [ + 26.553886, + 55.388916000999984 + ], + [ + 26.8356225, + 55.285648498 + ], + [ + 26.743454, + 55.254102998 + ], + [ + 25.779577500000016, + 54.854839501000015 + ], + [ + 25.762614, + 54.5768945 + ], + [ + 25.5319225, + 54.34203149899997 + ], + [ + 25.779838, + 54.16003700099998 + ], + [ + 25.497109500000022, + 54.309776499 + ], + [ + 24.835949500000027, + 54.149027499 + ], + [ + 24.435035500000026, + 53.901003 + ], + [ + 23.51465, + 53.95655999799999 + ], + [ + 23.32149850000002, + 54.25332599799998 + ], + [ + 22.792095500000016, + 54.36335899699998 + ], + [ + 22.588968, + 55.070251498 + ], + [ + 21.651070999000012, + 55.17998350099998 + ], + [ + 21.271226238999986, + 55.24436935199998 + ], + [ + 21.2643495, + 55.24553499799998 + ], + [ + 21.064238, + 56.06913699900002 + ], + [ + 21.978209, + 56.38514299899998 + ], + [ + 22.63556349999999, + 56.368168 + ], + [ + 22.920517, + 56.39914299899999 + ], + [ + 24.1518, + 56.253348501 + ], + [ + 24.91819, + 56.440865 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.137662499999976, + 50.129951499000015 + ], + [ + 6.4749625, + 49.821274999000025 + ], + [ + 6.380052499999977, + 49.55110499900002 + ], + [ + 6.367107499999975, + 49.46950700100001 + ], + [ + 5.893386, + 49.496944498 + ], + [ + 5.818117, + 49.5463105 + ], + [ + 5.910688, + 49.66238800100001 + ], + [ + 5.746319, + 49.853595 + ], + [ + 6.0248995, + 50.182779498 + ], + [ + 6.137662499999976, + 50.129951499000015 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 27.351579, + 57.51823699900001 + ], + [ + 27.690777, + 57.37056099900002 + ], + [ + 27.8701565, + 57.28979499899998 + ], + [ + 27.6594445, + 56.8343655 + ], + [ + 28.192765, + 56.44856599899998 + ], + [ + 28.154555500000015, + 56.169843501 + ], + [ + 27.615505499999983, + 55.787071501000014 + ], + [ + 26.630365, + 55.68066699899998 + ], + [ + 26.0461545, + 55.94410599899999 + ], + [ + 25.821386500000017, + 56.052179 + ], + [ + 25.0920375, + 56.186041998 + ], + [ + 24.91819, + 56.440865 + ], + [ + 24.1518, + 56.253348501 + ], + [ + 22.920517, + 56.39914299899999 + ], + [ + 22.63556349999999, + 56.368168 + ], + [ + 21.978209, + 56.38514299899998 + ], + [ + 21.064238, + 56.06913699900002 + ], + [ + 20.97067850000002, + 56.352584497 + ], + [ + 21.05211, + 56.82362099900001 + ], + [ + 21.3748955, + 57.00309699799999 + ], + [ + 21.419337, + 57.290952499000014 + ], + [ + 21.7031505, + 57.5685305 + ], + [ + 22.6050035, + 57.75857399900002 + ], + [ + 23.146890499999984, + 57.316258 + ], + [ + 23.304514, + 57.06428949999997 + ], + [ + 23.93453249999999, + 57.00637049699998 + ], + [ + 24.11920249999997, + 57.086290001 + ], + [ + 24.410199499999976, + 57.266025501 + ], + [ + 24.352817500000015, + 57.87655650099998 + ], + [ + 24.834082500000022, + 57.9727795 + ], + [ + 25.046307, + 58.04014600099998 + ], + [ + 26.056459, + 57.84843149699998 + ], + [ + 26.52490549999999, + 57.516247497999984 + ], + [ + 27.351579, + 57.51823699900001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 18.525213, + 42.420462997000016 + ], + [ + 18.438104, + 42.55570500099998 + ], + [ + 18.5672495, + 42.651405497999974 + ], + [ + 18.491927998999984, + 42.98396299799998 + ], + [ + 18.683405, + 43.24548699899998 + ], + [ + 19.224069, + 43.527541 + ], + [ + 20.06393650000001, + 43.006823999 + ], + [ + 20.35292850000002, + 42.833381498999984 + ], + [ + 20.024653, + 42.76513849899999 + ], + [ + 20.0763, + 42.555823498999985 + ], + [ + 19.621872, + 42.589744498000016 + ], + [ + 19.282484, + 42.180015502 + ], + [ + 19.372067, + 41.850320497999974 + ], + [ + 18.689521633000027, + 42.464353484000014 + ], + [ + 18.525213, + 42.420462997000016 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.9275915, + 41.33853949899998 + ], + [ + 22.879178500000023, + 41.340652998 + ], + [ + 22.732037, + 41.146391498000014 + ], + [ + 22.332052, + 41.12027250099999 + ], + [ + 22.216216, + 41.17045749800002 + ], + [ + 21.929438, + 41.10035049800001 + ], + [ + 21.787378, + 40.9311255 + ], + [ + 20.980204500000013, + 40.855665 + ], + [ + 20.837823, + 40.92768299900001 + ], + [ + 20.515577, + 41.23095550099998 + ], + [ + 20.45628449999998, + 41.554024001000016 + ], + [ + 20.557774, + 41.581870502000015 + ], + [ + 20.594286, + 41.877327498 + ], + [ + 21.10894, + 42.206170998 + ], + [ + 21.2126975, + 42.110701001 + ], + [ + 21.4443185, + 42.23493049899997 + ], + [ + 21.58694650000001, + 42.262817498 + ], + [ + 22.3602065, + 42.311157001000026 + ], + [ + 22.510412, + 42.15515849799999 + ], + [ + 22.867214, + 42.022199496999974 + ], + [ + 22.968327499999987, + 41.51983549900001 + ], + [ + 22.9275915, + 41.33853949899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 14.5720435, + 35.84975449799998 + ], + [ + 14.535398, + 35.80750299800002 + ], + [ + 14.416679499999987, + 35.82818949900002 + ], + [ + 14.342219999, + 35.873474498 + ], + [ + 14.319842, + 35.970368 + ], + [ + 14.376091499999973, + 35.987453999000024 + ], + [ + 14.350481, + 35.96995249899999 + ], + [ + 14.5720435, + 35.84975449799998 + ] + ] + ], + [ + [ + [ + 14.336181, + 36.03225849900002 + ], + [ + 14.218846, + 36.02097449799999 + ], + [ + 14.186361, + 36.036271999 + ], + [ + 14.184842, + 36.074078498 + ], + [ + 14.300056499999982, + 36.05719499899999 + ], + [ + 14.336181, + 36.03225849900002 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.208935, + 53.243064498000024 + ], + [ + 7.202794499999982, + 53.11328149899998 + ], + [ + 7.092692, + 52.83820099899998 + ], + [ + 6.935702, + 52.993362499 + ], + [ + 6.81381, + 53.07104849799998 + ], + [ + 6.315237, + 53.09405149899999 + ], + [ + 6.176817, + 53.159450499 + ], + [ + 6.1913015, + 53.410937999 + ], + [ + 6.882578, + 53.440654999 + ], + [ + 6.874905, + 53.408012998 + ], + [ + 7.0927125, + 53.25701749699999 + ], + [ + 7.208935, + 53.243064498000024 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.315237, + 53.09405149899999 + ], + [ + 6.369053, + 52.92197349999998 + ], + [ + 6.119814, + 52.85426700099998 + ], + [ + 5.819826499999976, + 52.81731750099999 + ], + [ + 5.795148499999982, + 52.80649949899998 + ], + [ + 5.377261499999975, + 52.764805 + ], + [ + 5.167425499999979, + 52.998798498999975 + ], + [ + 5.164383499999985, + 53.00091050100002 + ], + [ + 5.4112285, + 53.15172449800002 + ], + [ + 6.1913015, + 53.410937999 + ], + [ + 6.176817, + 53.159450499 + ], + [ + 6.315237, + 53.09405149899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.092692, + 52.83820099899998 + ], + [ + 7.006229500000018, + 52.63876299899999 + ], + [ + 6.709732499999973, + 52.62782349899999 + ], + [ + 6.629429500000015, + 52.669658500000025 + ], + [ + 6.1630035, + 52.680061498999976 + ], + [ + 6.119814, + 52.85426700099998 + ], + [ + 6.369053, + 52.92197349999998 + ], + [ + 6.315237, + 53.09405149899999 + ], + [ + 6.81381, + 53.07104849799998 + ], + [ + 6.935702, + 52.993362499 + ], + [ + 7.092692, + 52.83820099899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.709732499999973, + 52.62782349899999 + ], + [ + 6.697865499999978, + 52.48628599800003 + ], + [ + 6.987941499999977, + 52.469540999 + ], + [ + 7.065685, + 52.24137299900002 + ], + [ + 6.760465, + 52.11856949999998 + ], + [ + 6.381997500000011, + 52.24608600099998 + ], + [ + 6.166411499999981, + 52.231045 + ], + [ + 6.109792500000026, + 52.440574501000015 + ], + [ + 5.864311, + 52.518169496999974 + ], + [ + 5.777970499999981, + 52.607532499 + ], + [ + 6.017299499999979, + 52.643230499000026 + ], + [ + 5.795148499999982, + 52.80649949899998 + ], + [ + 5.819826499999976, + 52.81731750099999 + ], + [ + 6.119814, + 52.85426700099998 + ], + [ + 6.1630035, + 52.680061498999976 + ], + [ + 6.629429500000015, + 52.669658500000025 + ], + [ + 6.709732499999973, + 52.62782349899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.760465, + 52.11856949999998 + ], + [ + 6.828513, + 51.9640665 + ], + [ + 6.4077795, + 51.828092001000016 + ], + [ + 6.167766, + 51.900804499 + ], + [ + 5.953192, + 51.747845998 + ], + [ + 5.8651585, + 51.757407999 + ], + [ + 5.597879499999976, + 51.828082999 + ], + [ + 5.128057500000011, + 51.73761 + ], + [ + 5.000534, + 51.82093799900002 + ], + [ + 5.149456, + 51.933452499 + ], + [ + 5.606011500000022, + 51.943248498 + ], + [ + 5.404633, + 52.24962999899998 + ], + [ + 5.864311, + 52.518169496999974 + ], + [ + 6.109792500000026, + 52.440574501000015 + ], + [ + 6.166411499999981, + 52.231045 + ], + [ + 6.381997500000011, + 52.24608600099998 + ], + [ + 6.760465, + 52.11856949999998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -6.102773, + 53.210773 + ], + [ + -6.144516501, + 52.73769649899998 + ], + [ + -6.360401500000023, + 52.174297998999975 + ], + [ + -7.842156, + 51.95421849899998 + ], + [ + -8.534105, + 51.60396149899998 + ], + [ + -9.820953499999973, + 51.44911749900001 + ], + [ + -9.4395065, + 51.72339500099997 + ], + [ + -10.143066499999975, + 51.59705299900003 + ], + [ + -10.359855687999982, + 51.89811573899999 + ], + [ + -10.292081, + 51.9134095 + ], + [ + -10.305404416999977, + 51.91783544499998 + ], + [ + -9.792653, + 52.15557449900001 + ], + [ + -10.472409, + 52.180784501 + ], + [ + -9.365306771, + 52.572083917999976 + ], + [ + -9.365192, + 52.57212449999997 + ], + [ + -8.733330465999984, + 52.662677988999974 + ], + [ + -8.72813801, + 52.66342214100001 + ], + [ + -8.728047772000025, + 52.66343536199997 + ], + [ + -8.728093624999985, + 52.663433558 + ], + [ + -8.733924531000014, + 52.66327281299999 + ], + [ + -9.545411424, + 52.64089068099997 + ], + [ + -9.546329543000013, + 52.64086552100002 + ], + [ + -9.546003731999974, + 52.64148685499998 + ], + [ + -9.282234397000025, + 53.14464463600001 + ], + [ + -9.282228877000023, + 53.14465490600003 + ], + [ + -9.282189335999988, + 53.14465521599999 + ], + [ + -9.009308499999975, + 53.14081749899998 + ], + [ + -9.008489770999972, + 53.140603919 + ], + [ + -8.359738204999985, + 52.971357996999984 + ], + [ + -8.081461029000025, + 53.166883229 + ], + [ + -7.674682691999976, + 52.78186351599999 + ], + [ + -7.674081, + 52.781294 + ], + [ + -6.939413, + 52.88005449799999 + ], + [ + -7.063349, + 53.468781501000024 + ], + [ + -7.343828499999972, + 53.79906249800001 + ], + [ + -6.749452500000018, + 53.913742997999975 + ], + [ + -6.247098, + 53.722454500000026 + ], + [ + -6.2148995, + 53.63340699899999 + ], + [ + -6.102773, + 53.210773 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -16.194012499999985, + 66.53742000099999 + ], + [ + -15.7608105, + 66.28006149999999 + ], + [ + -14.530650501000025, + 66.377677 + ], + [ + -15.1874295, + 66.107847999 + ], + [ + -14.604863500000022, + 65.959309 + ], + [ + -14.841373499999975, + 65.72531300100002 + ], + [ + -13.606742500999985, + 65.510168 + ], + [ + -13.495021, + 65.07634249699998 + ], + [ + -14.962440500000014, + 64.23983099899999 + ], + [ + -18.177745, + 63.45859599800002 + ], + [ + -22.007397, + 63.83598750099998 + ], + [ + -22.13086850000002, + 63.83659800100003 + ], + [ + -22.749017, + 63.970331498 + ], + [ + -22.125507, + 64.040599 + ], + [ + -21.3700475, + 64.38032599899998 + ], + [ + -22.03162150000003, + 64.303023999 + ], + [ + -22.4159795, + 64.81220099900003 + ], + [ + -24.04781, + 64.87882700099999 + ], + [ + -21.8073225, + 65.02585000099998 + ], + [ + -21.7099895, + 65.159457998 + ], + [ + -22.560879, + 65.16934599899997 + ], + [ + -21.681208, + 65.451475 + ], + [ + -24.53204249999999, + 65.503079 + ], + [ + -24.099384, + 65.80526849900002 + ], + [ + -23.171936500000015, + 65.774955998 + ], + [ + -23.868307, + 65.88655649999998 + ], + [ + -23.18220450000001, + 65.83778449800002 + ], + [ + -23.819687, + 66.034912 + ], + [ + -23.478353, + 66.19469350000003 + ], + [ + -22.360858, + 65.925525999 + ], + [ + -22.976494, + 66.22213249999999 + ], + [ + -22.36286050000001, + 66.2698555 + ], + [ + -23.1958975, + 66.35003399700003 + ], + [ + -22.9317105, + 66.4693605 + ], + [ + -21.32774649999999, + 66.00619900100003 + ], + [ + -21.3420165, + 65.73476750100002 + ], + [ + -21.7825325, + 65.76451349799999 + ], + [ + -21.094844500000022, + 65.44756299900001 + ], + [ + -20.264036, + 65.72534549900001 + ], + [ + -20.421178, + 66.08405149999999 + ], + [ + -19.473689, + 65.73660650099998 + ], + [ + -19.36108150000001, + 65.829324 + ], + [ + -19.4362145, + 66.0476645 + ], + [ + -18.77751, + 66.19142700100002 + ], + [ + -17.4125985, + 65.992246497 + ], + [ + -16.194012499999985, + 66.53742000099999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.713936, + 46.097271998999986 + ], + [ + 8.593811, + 45.828224998999985 + ], + [ + 8.706896500000028, + 45.558316 + ], + [ + 8.8429155, + 45.393841 + ], + [ + 8.51356, + 45.31327850100001 + ], + [ + 8.5477975, + 45.168147497 + ], + [ + 8.887709, + 45.059148999 + ], + [ + 9.200074, + 44.68609949699999 + ], + [ + 9.202995499999986, + 44.613476499 + ], + [ + 8.576182, + 44.509206001 + ], + [ + 8.261596, + 44.51942449699999 + ], + [ + 8.252819499, + 44.528740501000016 + ], + [ + 8.015629499999989, + 44.11067649900002 + ], + [ + 7.714236500000027, + 44.061513499 + ], + [ + 7.007760500000018, + 44.23670049899999 + ], + [ + 6.887428, + 44.361287 + ], + [ + 6.948443, + 44.654741999 + ], + [ + 7.065755, + 44.71346449700002 + ], + [ + 6.630051, + 45.10985649999998 + ], + [ + 7.125157, + 45.243994498 + ], + [ + 7.104723, + 45.46845449900002 + ], + [ + 7.895811, + 45.590028 + ], + [ + 7.936649, + 45.72434049999998 + ], + [ + 7.86407650000001, + 45.91675049999998 + ], + [ + 7.8771375, + 45.926954997999985 + ], + [ + 8.384717, + 46.452158499 + ], + [ + 8.713936, + 46.097271998999986 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.416191, + 51.784865 + ], + [ + 15.979245, + 51.802309001000026 + ], + [ + 15.714032499999973, + 51.51739699699999 + ], + [ + 14.974183, + 51.36394999700002 + ], + [ + 14.729862, + 51.581776999 + ], + [ + 14.716716, + 52.001188001 + ], + [ + 14.755227, + 52.070024998 + ], + [ + 14.600891499999989, + 52.272051998999984 + ], + [ + 14.534361999, + 52.395008 + ], + [ + 14.565063, + 52.624497 + ], + [ + 14.904187, + 52.883909499000026 + ], + [ + 15.962497499999984, + 53.041380996999976 + ], + [ + 15.946907, + 52.75489599799999 + ], + [ + 15.776346499999988, + 52.63786950100001 + ], + [ + 15.880810499, + 52.29042949900003 + ], + [ + 15.833296, + 52.11112300100001 + ], + [ + 16.416191, + 51.784865 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.416191, + 51.784865 + ], + [ + 16.828372, + 51.57218799899999 + ], + [ + 17.257433, + 51.64284300100002 + ], + [ + 17.556245, + 51.58430149899999 + ], + [ + 17.795269500000018, + 51.19414600099998 + ], + [ + 17.578243499999985, + 51.162241 + ], + [ + 17.164896, + 50.61346299899998 + ], + [ + 16.90792449999998, + 50.44945400099999 + ], + [ + 17.028323, + 50.22999699899998 + ], + [ + 16.86327, + 50.19812299900002 + ], + [ + 16.58029, + 50.14278799800002 + ], + [ + 16.195729, + 50.432135001 + ], + [ + 16.443536, + 50.58625749999999 + ], + [ + 16.107318, + 50.662072998999975 + ], + [ + 15.535267499999975, + 50.779375999000024 + ], + [ + 15.032691, + 51.021315999000024 + ], + [ + 14.823362, + 50.87055049700001 + ], + [ + 15.037271, + 51.24374999899999 + ], + [ + 14.974183, + 51.36394999700002 + ], + [ + 15.714032499999973, + 51.51739699699999 + ], + [ + 15.979245, + 51.802309001000026 + ], + [ + 16.416191, + 51.784865 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 18.1636815, + 51.172516997 + ], + [ + 18.672954499000014, + 51.056902501000025 + ], + [ + 18.61587750000001, + 50.85358750099999 + ], + [ + 18.607473500000026, + 50.550011 + ], + [ + 18.425866499999984, + 50.24896549800002 + ], + [ + 18.059780499999988, + 50.17465249999998 + ], + [ + 18.035060999, + 50.06577199899999 + ], + [ + 17.868675, + 49.972545997 + ], + [ + 17.592736, + 50.160014 + ], + [ + 17.758479, + 50.206568 + ], + [ + 17.718403998999975, + 50.32095 + ], + [ + 17.429605, + 50.25451300100002 + ], + [ + 16.90792449999998, + 50.44945400099999 + ], + [ + 17.164896, + 50.61346299899998 + ], + [ + 17.578243499999985, + 51.162241 + ], + [ + 17.795269500000018, + 51.19414600099998 + ], + [ + 17.939456, + 51.10886499899999 + ], + [ + 18.1636815, + 51.172516997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 19.1292765, + 53.588260499 + ], + [ + 19.7615955, + 53.15179649800001 + ], + [ + 19.684806, + 52.963038998 + ], + [ + 19.444664, + 52.93904250000003 + ], + [ + 19.522742999, + 52.74920049799999 + ], + [ + 19.289184499999976, + 52.39271249799998 + ], + [ + 19.04712, + 52.33280399900002 + ], + [ + 18.377150500000027, + 52.53746350099999 + ], + [ + 17.458523, + 52.73894800099998 + ], + [ + 17.509582500000022, + 52.917767997 + ], + [ + 17.3015565, + 52.994803 + ], + [ + 17.438793499999974, + 53.26751450099999 + ], + [ + 17.390653, + 53.490964 + ], + [ + 18.072036500000024, + 53.781074998 + ], + [ + 18.761577499999987, + 53.604881998 + ], + [ + 19.1292765, + 53.588260499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.792095500000016, + 54.36335899699998 + ], + [ + 22.476556500000015, + 54.20130550099998 + ], + [ + 22.782806, + 53.91548949899999 + ], + [ + 22.703502500000013, + 53.767354496999985 + ], + [ + 22.135728, + 53.544539998 + ], + [ + 21.598199912999974, + 53.48018197099998 + ], + [ + 21.55169, + 53.478128001000016 + ], + [ + 20.675953999, + 53.269529498 + ], + [ + 20.411137, + 53.214165 + ], + [ + 19.7615955, + 53.15179649800001 + ], + [ + 19.1292765, + 53.588260499 + ], + [ + 19.37773950000002, + 53.984958998000025 + ], + [ + 19.2176885, + 54.11612149699999 + ], + [ + 19.256953, + 54.2784605 + ], + [ + 19.8037685, + 54.4424105 + ], + [ + 20.313503, + 54.40220200099998 + ], + [ + 21.559322, + 54.322504 + ], + [ + 22.792095500000016, + 54.36335899699998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 19.256953, + 54.2784605 + ], + [ + 19.2176885, + 54.11612149699999 + ], + [ + 19.37773950000002, + 53.984958998000025 + ], + [ + 19.1292765, + 53.588260499 + ], + [ + 18.761577499999987, + 53.604881998 + ], + [ + 18.072036500000024, + 53.781074998 + ], + [ + 17.390653, + 53.490964 + ], + [ + 16.892248, + 53.655868999 + ], + [ + 16.982053499000017, + 53.904909499999974 + ], + [ + 16.792764499999976, + 53.98555049999999 + ], + [ + 16.858620499999972, + 54.38257649799999 + ], + [ + 16.699085, + 54.569247001 + ], + [ + 17.666607, + 54.7832315 + ], + [ + 18.35961, + 54.81719149700001 + ], + [ + 18.828968499999974, + 54.60770799900001 + ], + [ + 18.3967745, + 54.74728049999999 + ], + [ + 18.54172649999998, + 54.58448 + ], + [ + 18.950029500000028, + 54.358310501 + ], + [ + 19.639032, + 54.458294498999976 + ], + [ + 19.648523, + 54.453339 + ], + [ + 19.256953, + 54.2784605 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -6.983513500000015, + 41.97290399899998 + ], + [ + -6.5884615, + 41.967761998000015 + ], + [ + -6.189352, + 41.575046499 + ], + [ + -6.479713, + 41.294379999 + ], + [ + -6.689786, + 41.20524149800002 + ], + [ + -6.929903500000023, + 41.02946649900002 + ], + [ + -7.40123545, + 40.880941330999974 + ], + [ + -7.4542035, + 40.81260999900002 + ], + [ + -7.9156385, + 41.020001998 + ], + [ + -8.08917150000002, + 40.987557498 + ], + [ + -8.273369, + 40.763173497000025 + ], + [ + -8.5491265, + 40.79180699699998 + ], + [ + -8.6531195, + 40.964778497 + ], + [ + -8.776427500000011, + 41.471979497 + ], + [ + -8.811573, + 41.611576996999986 + ], + [ + -8.863186, + 41.87206649900003 + ], + [ + -8.199000500000011, + 42.15441899899997 + ], + [ + -8.1650755, + 41.818302 + ], + [ + -8.051862500000027, + 41.820613998 + ], + [ + -7.20046450000001, + 41.879749498000024 + ], + [ + -6.983513500000015, + 41.97290399899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -7.401916500000027, + 37.17482749800001 + ], + [ + -7.8825875, + 36.96182299899999 + ], + [ + -8.592472, + 37.1220545 + ], + [ + -8.981500499999981, + 37.02743849799998 + ], + [ + -8.7963155, + 37.442948 + ], + [ + -8.3779285, + 37.427245997 + ], + [ + -8.065689500000019, + 37.318969998 + ], + [ + -7.512691500000017, + 37.526256499 + ], + [ + -7.401916500000027, + 37.17482749800001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -6.865144, + 40.270694499 + ], + [ + -6.9512985, + 40.257445999000026 + ], + [ + -7.011960499999986, + 40.126934 + ], + [ + -6.864203, + 40.011867498000015 + ], + [ + -7.015405, + 39.670856499000024 + ], + [ + -7.53490245, + 39.661986891000026 + ], + [ + -7.8251085, + 39.53736399899998 + ], + [ + -7.959676, + 39.560949499 + ], + [ + -7.9394625, + 39.409952498 + ], + [ + -8.1726035, + 39.23331399699998 + ], + [ + -8.338524, + 39.46152449800002 + ], + [ + -8.759391, + 39.475686999 + ], + [ + -8.903426, + 39.466005499 + ], + [ + -8.93028049999998, + 39.01802249899998 + ], + [ + -9.333296, + 39.02805749700002 + ], + [ + -9.416459499999974, + 39.054692999 + ], + [ + -9.365950500999986, + 39.34837799899998 + ], + [ + -9.04026600100002, + 39.74142200099999 + ], + [ + -8.894938, + 40.045502999 + ], + [ + -8.784033, + 40.52036649899998 + ], + [ + -8.6531195, + 40.964778497 + ], + [ + -8.5491265, + 40.79180699699998 + ], + [ + -8.273369, + 40.763173497000025 + ], + [ + -8.08917150000002, + 40.987557498 + ], + [ + -7.9156385, + 41.020001998 + ], + [ + -7.4542035, + 40.81260999900002 + ], + [ + -7.40123545, + 40.880941330999974 + ], + [ + -6.929903500000023, + 41.02946649900002 + ], + [ + -6.801935, + 40.861045998 + ], + [ + -6.865144, + 40.270694499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + -8.735066500000016, + 38.516034999 + ], + [ + -9.222857499999975, + 38.413747999 + ], + [ + -9.260362499999985, + 38.662664999000015 + ], + [ + -8.924883500000021, + 38.75867649999998 + ], + [ + -8.546800500000018, + 38.76343399799998 + ], + [ + -8.490975, + 38.76131049899999 + ], + [ + -8.6391155, + 38.549488999 + ], + [ + -8.735066500000016, + 38.516034999 + ] + ] + ], + [ + [ + [ + -8.968469, + 38.827762499000016 + ], + [ + -9.477468499999986, + 38.70183849799997 + ], + [ + -9.416459499999974, + 39.054692999 + ], + [ + -9.333296, + 39.02805749700002 + ], + [ + -8.93028049999998, + 39.01802249899998 + ], + [ + -8.968469, + 38.827762499000016 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -6.9317385, + 38.208377998 + ], + [ + -7.002483499999983, + 38.0227165 + ], + [ + -7.2632845, + 37.979908 + ], + [ + -7.512691500000017, + 37.526256499 + ], + [ + -8.065689500000019, + 37.318969998 + ], + [ + -8.3779285, + 37.427245997 + ], + [ + -8.7963155, + 37.442948 + ], + [ + -8.735066500000016, + 38.516034999 + ], + [ + -8.6391155, + 38.549488999 + ], + [ + -8.490975, + 38.76131049899999 + ], + [ + -8.546800500000018, + 38.76343399799998 + ], + [ + -8.924883500000021, + 38.75867649999998 + ], + [ + -8.968469, + 38.827762499000016 + ], + [ + -8.93028049999998, + 39.01802249899998 + ], + [ + -8.903426, + 39.466005499 + ], + [ + -8.759391, + 39.475686999 + ], + [ + -8.338524, + 39.46152449800002 + ], + [ + -8.1726035, + 39.23331399699998 + ], + [ + -7.9394625, + 39.409952498 + ], + [ + -7.959676, + 39.560949499 + ], + [ + -7.8251085, + 39.53736399899998 + ], + [ + -7.53490245, + 39.661986891000026 + ], + [ + -7.231467, + 39.278431 + ], + [ + -6.9513915, + 39.024070499 + ], + [ + -7.203135, + 38.75101749800001 + ], + [ + -7.316636, + 38.43987649899998 + ], + [ + -7.10795250000001, + 38.18812150000002 + ], + [ + -6.9317385, + 38.208377998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -25.1341635, + 37.80761749800001 + ], + [ + -25.5115255, + 37.708371499 + ], + [ + -25.85274, + 37.85310549899998 + ], + [ + -25.689569, + 37.84193950100001 + ], + [ + -25.1341635, + 37.80761749800001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -16.746594500000015, + 32.73417 + ], + [ + -16.944882501, + 32.632935498999984 + ], + [ + -17.2126035, + 32.736969999 + ], + [ + -17.193386499999974, + 32.870556498999974 + ], + [ + -16.746594500000015, + 32.73417 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 24.947100499999976, + 47.729124 + ], + [ + 24.960837500000025, + 47.596850999000026 + ], + [ + 25.063383, + 47.13653849799999 + ], + [ + 24.400994998999977, + 46.75053549900002 + ], + [ + 24.18309310500001, + 46.802148026 + ], + [ + 23.985275, + 46.43091799899997 + ], + [ + 22.811950500000023, + 46.56885950100002 + ], + [ + 22.676575500000013, + 46.40582549700002 + ], + [ + 21.441398, + 46.651467 + ], + [ + 21.658955, + 47.02213149800002 + ], + [ + 22.12832, + 47.59808949699999 + ], + [ + 22.1808375, + 47.60009449900002 + ], + [ + 22.896270500000014, + 47.95412050099998 + ], + [ + 23.1885355, + 48.10868799899998 + ], + [ + 23.493605, + 47.96781149899999 + ], + [ + 24.583293500000025, + 47.964851496999984 + ], + [ + 24.947100499999976, + 47.729124 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 26.4399845, + 46.038876499000025 + ], + [ + 26.392094499999985, + 45.80238949699998 + ], + [ + 26.093334500000026, + 45.51630599700002 + ], + [ + 26.0727185, + 45.505787999 + ], + [ + 25.452539, + 45.441341998999974 + ], + [ + 25.32157749999999, + 45.381088998 + ], + [ + 25.103214, + 45.58519399900001 + ], + [ + 24.68492550000002, + 45.60411099700002 + ], + [ + 24.5128345, + 45.58682499899999 + ], + [ + 23.703613, + 45.49677200100001 + ], + [ + 23.59727049999998, + 45.47347149900003 + ], + [ + 23.234864, + 46.03050199699999 + ], + [ + 22.748716, + 46.35120749999999 + ], + [ + 22.676575500000013, + 46.40582549700002 + ], + [ + 22.811950500000023, + 46.56885950100002 + ], + [ + 23.985275, + 46.43091799899997 + ], + [ + 24.18309310500001, + 46.802148026 + ], + [ + 24.400994998999977, + 46.75053549900002 + ], + [ + 25.063383, + 47.13653849799999 + ], + [ + 25.2467105, + 47.097919 + ], + [ + 25.66158249900002, + 47.091646500000024 + ], + [ + 25.8619675, + 46.92338349800002 + ], + [ + 25.79531, + 46.71911749899999 + ], + [ + 25.975159500000018, + 46.69731249900002 + ], + [ + 26.263439, + 46.24633849700001 + ], + [ + 26.4399845, + 46.038876499000025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 28.115802, + 46.10782699700002 + ], + [ + 27.610243, + 46.136248498999976 + ], + [ + 27.562554499999976, + 46.00287699799998 + ], + [ + 27.503053, + 46.13962099899999 + ], + [ + 27.4928185, + 46.159212998999976 + ], + [ + 26.4399845, + 46.038876499000025 + ], + [ + 26.263439, + 46.24633849700001 + ], + [ + 25.975159500000018, + 46.69731249900002 + ], + [ + 25.79531, + 46.71911749899999 + ], + [ + 25.8619675, + 46.92338349800002 + ], + [ + 25.66158249900002, + 47.091646500000024 + ], + [ + 25.2467105, + 47.097919 + ], + [ + 25.063383, + 47.13653849799999 + ], + [ + 24.960837500000025, + 47.596850999000026 + ], + [ + 24.947100499999976, + 47.729124 + ], + [ + 26.098827500000027, + 47.97879599700002 + ], + [ + 26.63056, + 48.259749999 + ], + [ + 27.1646515, + 47.99468349900002 + ], + [ + 27.3911665, + 47.58939749699999 + ], + [ + 28.113805500000012, + 46.838411001 + ], + [ + 28.260886, + 46.43713949900001 + ], + [ + 28.115802, + 46.10782699700002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 28.115802, + 46.10782699700002 + ], + [ + 28.088561500000026, + 45.606112499 + ], + [ + 28.21136, + 45.46727999900003 + ], + [ + 28.28599, + 45.430630001 + ], + [ + 28.717, + 45.224379999 + ], + [ + 29.42759, + 45.44223999899998 + ], + [ + 29.6796395, + 45.211838 + ], + [ + 29.600269, + 44.83955449899997 + ], + [ + 28.994085, + 44.679625498 + ], + [ + 28.62598250000002, + 44.29703199800002 + ], + [ + 28.578884, + 43.738739 + ], + [ + 27.69541, + 43.987343 + ], + [ + 27.271344999, + 44.12633649899999 + ], + [ + 28.01737399899997, + 44.340248997 + ], + [ + 28.110168499999986, + 44.439703501 + ], + [ + 27.881007, + 44.76307649900002 + ], + [ + 27.20345850000001, + 44.78707399899997 + ], + [ + 26.6055515, + 44.856993998 + ], + [ + 26.0727185, + 45.505787999 + ], + [ + 26.093334500000026, + 45.51630599700002 + ], + [ + 26.392094499999985, + 45.80238949699998 + ], + [ + 26.4399845, + 46.038876499000025 + ], + [ + 27.4928185, + 46.159212998999976 + ], + [ + 27.503053, + 46.13962099899999 + ], + [ + 27.562554499999976, + 46.00287699799998 + ], + [ + 27.610243, + 46.136248498999976 + ], + [ + 28.115802, + 46.10782699700002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 26.0727185, + 45.505787999 + ], + [ + 26.6055515, + 44.856993998 + ], + [ + 27.20345850000001, + 44.78707399899997 + ], + [ + 27.881007, + 44.76307649900002 + ], + [ + 28.110168499999986, + 44.439703501 + ], + [ + 28.01737399899997, + 44.340248997 + ], + [ + 27.271344999, + 44.12633649899999 + ], + [ + 26.379968, + 44.04295099900003 + ], + [ + 26.358359999000015, + 44.038415500999974 + ], + [ + 25.671862499999975, + 43.69133999899998 + ], + [ + 25.544640500000014, + 43.64298149699999 + ], + [ + 25.293740500000013, + 43.654294 + ], + [ + 24.641605998999978, + 43.733412999 + ], + [ + 24.755096, + 43.81760149899998 + ], + [ + 24.613092499, + 44.01415599799998 + ], + [ + 24.884019500000022, + 44.38263649700002 + ], + [ + 24.438121, + 44.845375499 + ], + [ + 24.5128345, + 45.58682499899999 + ], + [ + 24.68492550000002, + 45.60411099700002 + ], + [ + 25.103214, + 45.58519399900001 + ], + [ + 25.32157749999999, + 45.381088998 + ], + [ + 25.452539, + 45.441341998999974 + ], + [ + 26.0727185, + 45.505787999 + ] + ], + [ + [ + 26.416060500000015, + 44.521682999 + ], + [ + 26.301818500000024, + 44.768875 + ], + [ + 25.970744, + 44.71040850100002 + ], + [ + 25.8907395, + 44.54095299900001 + ], + [ + 25.870018500000015, + 44.35740049899999 + ], + [ + 26.259956499999987, + 44.294985999 + ], + [ + 26.416060500000015, + 44.521682999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 26.416060500000015, + 44.521682999 + ], + [ + 26.259956499999987, + 44.294985999 + ], + [ + 25.870018500000015, + 44.35740049899999 + ], + [ + 25.8907395, + 44.54095299900001 + ], + [ + 25.970744, + 44.71040850100002 + ], + [ + 26.301818500000024, + 44.768875 + ], + [ + 26.416060500000015, + 44.521682999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 24.641605998999978, + 43.733412999 + ], + [ + 24.324132, + 43.699567996999974 + ], + [ + 24.112719, + 43.699566498000024 + ], + [ + 23.63008, + 43.79125999799999 + ], + [ + 22.997154500000022, + 43.807626997 + ], + [ + 22.838719, + 43.877852001 + ], + [ + 23.045898, + 44.06374949999997 + ], + [ + 22.966399500000023, + 44.09852499700003 + ], + [ + 22.6751615, + 44.21566299699998 + ], + [ + 22.4573995, + 44.4674665 + ], + [ + 22.705956500000013, + 44.603216498999984 + ], + [ + 22.467334, + 44.7147455 + ], + [ + 22.1595795, + 44.471777498999984 + ], + [ + 22.016132500000026, + 44.599202499 + ], + [ + 22.154162, + 44.59519949700001 + ], + [ + 22.207799, + 44.816878497 + ], + [ + 22.418032, + 44.75685749899998 + ], + [ + 22.656632, + 45.10816699700001 + ], + [ + 22.68624649999998, + 45.25796099899998 + ], + [ + 23.59064, + 45.353072499 + ], + [ + 23.59727049999998, + 45.47347149900003 + ], + [ + 23.703613, + 45.49677200100001 + ], + [ + 24.5128345, + 45.58682499899999 + ], + [ + 24.438121, + 44.845375499 + ], + [ + 24.884019500000022, + 44.38263649700002 + ], + [ + 24.613092499, + 44.01415599799998 + ], + [ + 24.755096, + 43.81760149899998 + ], + [ + 24.641605998999978, + 43.733412999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.864311, + 52.518169496999974 + ], + [ + 5.404633, + 52.24962999899998 + ], + [ + 5.335462, + 52.29021849899999 + ], + [ + 5.079161, + 52.388653 + ], + [ + 5.0604265, + 52.578937499 + ], + [ + 5.377261499999975, + 52.764805 + ], + [ + 5.795148499999982, + 52.80649949899998 + ], + [ + 6.017299499999979, + 52.643230499000026 + ], + [ + 5.777970499999981, + 52.607532499 + ], + [ + 5.864311, + 52.518169496999974 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.335462, + 52.29021849899999 + ], + [ + 5.404633, + 52.24962999899998 + ], + [ + 5.606011500000022, + 51.943248498 + ], + [ + 5.149456, + 51.933452499 + ], + [ + 4.877899500000012, + 51.93783549800003 + ], + [ + 4.794524, + 52.22672649899999 + ], + [ + 5.021537500000022, + 52.30249849900002 + ], + [ + 5.335462, + 52.29021849899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.377261499999975, + 52.764805 + ], + [ + 5.0604265, + 52.578937499 + ], + [ + 5.079161, + 52.388653 + ], + [ + 5.335462, + 52.29021849899999 + ], + [ + 5.021537500000022, + 52.30249849900002 + ], + [ + 4.794524, + 52.22672649899999 + ], + [ + 4.728766, + 52.20981949899999 + ], + [ + 4.611684, + 52.31358699899999 + ], + [ + 4.493847500000015, + 52.32826000099999 + ], + [ + 4.560596499999974, + 52.437426001 + ], + [ + 4.609676499999978, + 52.57340100099998 + ], + [ + 4.649071, + 52.75617749999998 + ], + [ + 4.730989, + 52.96218849899998 + ], + [ + 5.164383499999985, + 53.00091050100002 + ], + [ + 5.167425499999979, + 52.998798498999975 + ], + [ + 5.377261499999975, + 52.764805 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 4.611684, + 52.31358699899999 + ], + [ + 4.728766, + 52.20981949899999 + ], + [ + 4.794524, + 52.22672649899999 + ], + [ + 4.877899500000012, + 51.93783549800003 + ], + [ + 5.149456, + 51.933452499 + ], + [ + 5.000534, + 51.82093799900002 + ], + [ + 4.676294499999983, + 51.7249185 + ], + [ + 4.620420500000023, + 51.71412650000002 + ], + [ + 4.249017, + 51.6458015 + ], + [ + 4.161857000999987, + 51.66683157699998 + ], + [ + 4.135041090000016, + 51.673303697999984 + ], + [ + 3.678739, + 51.69532400100002 + ], + [ + 3.839083, + 51.758297 + ], + [ + 4.1277885, + 52.000542497000026 + ], + [ + 4.198018499999989, + 52.05414449699998 + ], + [ + 4.3742325, + 52.18708999699999 + ], + [ + 4.493847500000015, + 52.32826000099999 + ], + [ + 4.611684, + 52.31358699899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 3.9776665, + 51.225131998999984 + ], + [ + 3.8563395, + 51.211056 + ], + [ + 3.380661, + 51.274299497000015 + ], + [ + 3.367216499999984, + 51.368134499 + ], + [ + 4.23481750000002, + 51.348254 + ], + [ + 3.9776665, + 51.225131998999984 + ] + ] + ], + [ + [ + [ + 4.249017, + 51.6458015 + ], + [ + 4.279565, + 51.37601749700002 + ], + [ + 4.24366950000001, + 51.37472949900001 + ], + [ + 3.4342, + 51.52615749900002 + ], + [ + 4.223578, + 51.43865599700001 + ], + [ + 4.161857000999987, + 51.66683157699998 + ], + [ + 4.249017, + 51.6458015 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.8651585, + 51.757407999 + ], + [ + 6.047766500000023, + 51.55850599799999 + ], + [ + 5.838077, + 51.566467499 + ], + [ + 5.8402455, + 51.34692400099999 + ], + [ + 5.5662835, + 51.22083649799998 + ], + [ + 5.237716499999976, + 51.261600499 + ], + [ + 5.10218, + 51.42900499699999 + ], + [ + 4.759926, + 51.50246449799999 + ], + [ + 4.669544, + 51.426383999 + ], + [ + 4.279565, + 51.37601749700002 + ], + [ + 4.249017, + 51.6458015 + ], + [ + 4.620420500000023, + 51.71412650000002 + ], + [ + 4.676294499999983, + 51.7249185 + ], + [ + 5.000534, + 51.82093799900002 + ], + [ + 5.128057500000011, + 51.73761 + ], + [ + 5.597879499999976, + 51.828082999 + ], + [ + 5.8651585, + 51.757407999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.953192, + 51.747845998 + ], + [ + 6.224405, + 51.364978999000016 + ], + [ + 6.072657, + 51.24258749799998 + ], + [ + 6.174812, + 51.1845135 + ], + [ + 5.877084998999976, + 51.032101 + ], + [ + 6.0869475, + 50.91313499900002 + ], + [ + 6.020998999000028, + 50.75429550000001 + ], + [ + 5.892073, + 50.755237498999975 + ], + [ + 5.682000499000026, + 50.75744649799998 + ], + [ + 5.687622, + 50.81192399899999 + ], + [ + 5.758272498999986, + 50.954795 + ], + [ + 5.766149, + 51.00923549999999 + ], + [ + 5.798274, + 51.059853498999985 + ], + [ + 5.5662835, + 51.22083649799998 + ], + [ + 5.8402455, + 51.34692400099999 + ], + [ + 5.838077, + 51.566467499 + ], + [ + 6.047766500000023, + 51.55850599799999 + ], + [ + 5.8651585, + 51.757407999 + ], + [ + 5.953192, + 51.747845998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 11.822262, + 60.05214499800002 + ], + [ + 11.839729, + 59.840767 + ], + [ + 11.926970499999982, + 59.79047599900002 + ], + [ + 10.686118, + 59.48940699899998 + ], + [ + 10.5818175, + 59.756759500999976 + ], + [ + 10.764788, + 59.8295445 + ], + [ + 10.681954881000024, + 59.884828632999984 + ], + [ + 10.64198, + 59.911508500000025 + ], + [ + 10.497314500000016, + 59.7883385 + ], + [ + 10.489164999000025, + 60.01726 + ], + [ + 10.600720500000023, + 60.13161 + ], + [ + 10.680319499, + 60.1335305 + ], + [ + 10.933902499999988, + 60.34669199799998 + ], + [ + 10.713308499999982, + 60.524164997000014 + ], + [ + 11.153986, + 60.605148000999975 + ], + [ + 11.2095645, + 60.504914498 + ], + [ + 11.822262, + 60.05214499800002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 12.2546595, + 62.33102449699999 + ], + [ + 12.29937, + 62.267494 + ], + [ + 12.137665, + 61.72381699800002 + ], + [ + 12.870847500000025, + 61.35649499800002 + ], + [ + 12.670176500000025, + 61.055976498 + ], + [ + 12.22399, + 61.013078001 + ], + [ + 12.606881499999986, + 60.51274249699998 + ], + [ + 12.499544999000022, + 60.09765699799999 + ], + [ + 11.839729, + 59.840767 + ], + [ + 11.822262, + 60.05214499800002 + ], + [ + 11.2095645, + 60.504914498 + ], + [ + 11.153986, + 60.605148000999975 + ], + [ + 10.713308499999982, + 60.524164997000014 + ], + [ + 10.933902499999988, + 60.34669199799998 + ], + [ + 10.680319499, + 60.1335305 + ], + [ + 10.600720500000023, + 60.13161 + ], + [ + 10.03533, + 60.632055001000026 + ], + [ + 9.478695, + 60.530145498000024 + ], + [ + 8.251701, + 61.073943997000015 + ], + [ + 8.051171, + 61.23277650099999 + ], + [ + 8.262332500000014, + 61.533979500999976 + ], + [ + 7.5138235, + 61.72736450000002 + ], + [ + 7.349109, + 62.00768199700002 + ], + [ + 9.062062, + 62.37260849799998 + ], + [ + 9.792455, + 62.287932001 + ], + [ + 10.1969, + 62.68769350000002 + ], + [ + 12.2546595, + 62.33102449699999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 8.251701, + 61.073943997000015 + ], + [ + 9.478695, + 60.530145498000024 + ], + [ + 10.03533, + 60.632055001000026 + ], + [ + 10.600720500000023, + 60.13161 + ], + [ + 10.489164999000025, + 60.01726 + ], + [ + 10.497314500000016, + 59.7883385 + ], + [ + 10.54188649299999, + 59.70815578000003 + ], + [ + 10.555847737000022, + 59.68304020800002 + ], + [ + 10.617811, + 59.571571499000015 + ], + [ + 10.421314, + 59.52508150099999 + ], + [ + 10.4391965, + 59.665851498999984 + ], + [ + 10.212189500000022, + 59.737282 + ], + [ + 10.3198815, + 59.691343501 + ], + [ + 10.374606, + 59.67696749999999 + ], + [ + 10.386558499999978, + 59.275020498 + ], + [ + 10.273399499999982, + 59.04173650000001 + ], + [ + 9.839197001, + 59.044178998 + ], + [ + 9.289463, + 58.839130496 + ], + [ + 9.46771050000001, + 58.829845498 + ], + [ + 9.365971, + 58.771349 + ], + [ + 8.996341500000028, + 58.991956499000025 + ], + [ + 7.966328499999975, + 58.968421 + ], + [ + 7.506116001, + 59.607801 + ], + [ + 7.214666500000021, + 59.672687 + ], + [ + 7.096287500000017, + 59.782777 + ], + [ + 7.488040500000011, + 60.09883849800002 + ], + [ + 7.732114500000023, + 60.520970499999976 + ], + [ + 7.46964, + 60.675547498000014 + ], + [ + 8.251701, + 61.073943997000015 + ] + ] + ], + [ + [ + [ + 11.8261965, + 59.237849998 + ], + [ + 11.632557, + 58.90830650100003 + ], + [ + 11.460827, + 58.988658499 + ], + [ + 11.15222652599999, + 59.068580457 + ], + [ + 11.133916596, + 59.073322399 + ], + [ + 10.825053, + 59.153312501000016 + ], + [ + 10.686118, + 59.48940699899998 + ], + [ + 11.926970499999982, + 59.79047599900002 + ], + [ + 11.93987850000002, + 59.69458099799999 + ], + [ + 11.691129, + 59.58954749999998 + ], + [ + 11.8261965, + 59.237849998 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.214666500000021, + 59.672687 + ], + [ + 7.506116001, + 59.607801 + ], + [ + 7.966328499999975, + 58.968421 + ], + [ + 8.996341500000028, + 58.991956499000025 + ], + [ + 9.365971, + 58.771349 + ], + [ + 9.082190498999978, + 58.74871449699998 + ], + [ + 9.0575915, + 58.725215999 + ], + [ + 9.244501, + 58.725330499999984 + ], + [ + 8.185152, + 58.1429415 + ], + [ + 7.038199, + 58.02142699900003 + ], + [ + 6.553461500000026, + 58.117786498999976 + ], + [ + 6.89118, + 58.2743605 + ], + [ + 6.438839, + 58.2908195 + ], + [ + 5.491752, + 58.75478 + ], + [ + 5.5742715, + 59.03034250000002 + ], + [ + 5.995267500000011, + 58.968890998 + ], + [ + 6.217452499999979, + 59.266296497999974 + ], + [ + 5.941965499999981, + 59.361309001 + ], + [ + 5.614074, + 59.33062349900001 + ], + [ + 5.550886, + 59.27162149999998 + ], + [ + 5.295012441999972, + 59.370869887000026 + ], + [ + 5.298477, + 59.145370501 + ], + [ + 5.175062500000024, + 59.17837449799998 + ], + [ + 5.302875500000027, + 59.481168001000015 + ], + [ + 5.534834, + 59.7320785 + ], + [ + 5.506673157000023, + 59.52538185899999 + ], + [ + 5.794665721, + 59.65094391500003 + ], + [ + 5.80379270899999, + 59.64938017399999 + ], + [ + 5.823972500000025, + 59.645922998 + ], + [ + 6.651835, + 59.711413 + ], + [ + 7.096287500000017, + 59.782777 + ], + [ + 7.214666500000021, + 59.672687 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 5.115073511999981, + 60.96571541499998 + ], + [ + 5.026263, + 61.01004050099999 + ], + [ + 5.426630526999986, + 61.04311930900002 + ], + [ + 5.394584, + 61.069965497 + ], + [ + 4.947169499999973, + 61.25885 + ], + [ + 5.209688823000022, + 61.334528406 + ], + [ + 4.977364500000022, + 61.41730899800001 + ], + [ + 5.843049, + 61.45913699800002 + ], + [ + 5.24131566599999, + 61.583933230000014 + ], + [ + 4.994847999, + 61.59115200100001 + ], + [ + 4.969778, + 61.72112249700001 + ], + [ + 6.846349, + 61.870303997 + ], + [ + 5.4584625, + 61.93935 + ], + [ + 5.089433, + 62.16728949999998 + ], + [ + 5.491458, + 62.01478750000001 + ], + [ + 5.6237655, + 62.06705450099997 + ], + [ + 5.405087499999979, + 62.1274295 + ], + [ + 6.3250655, + 62.06060050000002 + ], + [ + 5.931158, + 62.21788399799999 + ], + [ + 6.328697, + 62.37550749799999 + ], + [ + 6.653805499999976, + 62.19379449799999 + ], + [ + 6.573409500000025, + 62.54216 + ], + [ + 6.2564425, + 62.529735500000015 + ], + [ + 6.334281499999975, + 62.61331949800001 + ], + [ + 8.146601499999974, + 62.68827050099998 + ], + [ + 6.898579, + 62.909847501 + ], + [ + 7.3014915, + 63.01026149699999 + ], + [ + 7.450778500000013, + 62.90481949799999 + ], + [ + 8.11747, + 62.921828998000024 + ], + [ + 8.107145499000012, + 63.105423 + ], + [ + 8.764103, + 63.18451 + ], + [ + 9.4685455, + 63.17787400100002 + ], + [ + 9.463019499999973, + 62.848407001 + ], + [ + 8.919962, + 62.711771 + ], + [ + 9.24373, + 62.556077999000024 + ], + [ + 9.062062, + 62.37260849799998 + ], + [ + 7.349109, + 62.00768199700002 + ], + [ + 7.5138235, + 61.72736450000002 + ], + [ + 8.262332500000014, + 61.533979500999976 + ], + [ + 8.051171, + 61.23277650099999 + ], + [ + 8.251701, + 61.073943997000015 + ], + [ + 7.46964, + 60.675547498000014 + ], + [ + 7.732114500000023, + 60.520970499999976 + ], + [ + 7.488040500000011, + 60.09883849800002 + ], + [ + 7.096287500000017, + 59.782777 + ], + [ + 6.651835, + 59.711413 + ], + [ + 5.823972500000025, + 59.645922998 + ], + [ + 5.80379270899999, + 59.64938017399999 + ], + [ + 5.794665721, + 59.65094391500003 + ], + [ + 6.381009, + 59.874691 + ], + [ + 5.675114, + 59.848640499 + ], + [ + 5.994348, + 59.954563 + ], + [ + 6.0828945, + 60.191448 + ], + [ + 6.353219500000023, + 60.370498998000016 + ], + [ + 6.829082746999973, + 60.471445758000016 + ], + [ + 6.716949, + 60.520217996999975 + ], + [ + 6.0151285, + 60.269165 + ], + [ + 5.817266, + 59.983326 + ], + [ + 5.5750435, + 60.153873498999985 + ], + [ + 5.756293, + 60.399605 + ], + [ + 5.446748500000012, + 60.15643700099997 + ], + [ + 5.2010105, + 60.29023350199998 + ], + [ + 5.309116500000016, + 60.388206502 + ], + [ + 5.262637499999983, + 60.50583249699997 + ], + [ + 5.7384535, + 60.459213499999976 + ], + [ + 5.7344455, + 60.673576500000024 + ], + [ + 5.708317500000021, + 60.471111501 + ], + [ + 5.339822, + 60.541588 + ], + [ + 5.706546, + 60.759361497999976 + ], + [ + 5.280158, + 60.540760001000024 + ], + [ + 5.207727998999985, + 60.621887001 + ], + [ + 5.281049, + 60.632553 + ], + [ + 4.94567, + 60.809383500000024 + ], + [ + 5.469385499999987, + 60.659252 + ], + [ + 5.140299, + 60.84025250000002 + ], + [ + 5.115073511999981, + 60.96571541499998 + ] + ] + ], + [ + [ + [ + 5.396219498999983, + 59.711742501 + ], + [ + 5.183555500000011, + 59.57461550099998 + ], + [ + 5.0594595, + 59.854045998 + ], + [ + 5.179249, + 59.877666498999986 + ], + [ + 5.396219498999983, + 59.711742501 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 11.514355244, + 64.87855370800003 + ], + [ + 11.278464499999984, + 64.85742949899998 + ], + [ + 11.9609795, + 65.07714799799999 + ], + [ + 11.981972, + 65.07081549700001 + ], + [ + 12.0461065, + 65.06245 + ], + [ + 12.092824, + 65.0398255 + ], + [ + 12.187348499999985, + 65.00011149800002 + ], + [ + 12.182329, + 64.981381 + ], + [ + 14.325985, + 65.118916001 + ], + [ + 13.654257500000028, + 64.58034049899999 + ], + [ + 14.113869500000021, + 64.462484501 + ], + [ + 14.157109, + 64.195054497 + ], + [ + 13.967524500000025, + 64.00797 + ], + [ + 12.683565, + 63.9742235 + ], + [ + 12.149767, + 63.593946999000025 + ], + [ + 11.974581, + 63.269228 + ], + [ + 12.0524555, + 63.1834445 + ], + [ + 12.218231, + 63.00033250000001 + ], + [ + 12.056142, + 62.61191849900001 + ], + [ + 12.2546595, + 62.33102449699999 + ], + [ + 10.1969, + 62.68769350000002 + ], + [ + 9.792455, + 62.287932001 + ], + [ + 9.062062, + 62.37260849799998 + ], + [ + 9.24373, + 62.556077999000024 + ], + [ + 8.919962, + 62.711771 + ], + [ + 9.463019499999973, + 62.848407001 + ], + [ + 9.4685455, + 63.17787400100002 + ], + [ + 8.764103, + 63.18451 + ], + [ + 8.832189, + 63.20198000099998 + ], + [ + 8.490692, + 63.2775115 + ], + [ + 8.765663999000026, + 63.34213649899999 + ], + [ + 8.650367, + 63.400879 + ], + [ + 8.7551115, + 63.424341 + ], + [ + 9.0929175, + 63.287159 + ], + [ + 9.501772, + 63.39708699800002 + ], + [ + 9.249117, + 63.367828497 + ], + [ + 9.147209, + 63.48814000099998 + ], + [ + 9.753410499999973, + 63.645359000999974 + ], + [ + 9.714933499999972, + 63.615505000999974 + ], + [ + 9.977688, + 63.441615997999975 + ], + [ + 9.8231755, + 63.312244501 + ], + [ + 10.85359, + 63.43909349699999 + ], + [ + 10.941581, + 63.564289 + ], + [ + 10.627927, + 63.546741500999985 + ], + [ + 11.458975, + 63.80233750000002 + ], + [ + 11.0724775, + 63.858989501 + ], + [ + 11.501289499999984, + 64.005218501 + ], + [ + 11.222313, + 64.07421900100002 + ], + [ + 10.5912035, + 63.804355499999986 + ], + [ + 11.07041750000002, + 63.8419495 + ], + [ + 10.955013501, + 63.7456095 + ], + [ + 10.170315, + 63.52613449699999 + ], + [ + 9.8057985, + 63.626873 + ], + [ + 10.130084, + 63.75410449999998 + ], + [ + 9.529121499999974, + 63.71239849699998 + ], + [ + 10.010268949000022, + 64.04565076300003 + ], + [ + 10.63497412999999, + 64.39100241699998 + ], + [ + 10.548171, + 64.44136050100002 + ], + [ + 11.3407555, + 64.436919998 + ], + [ + 11.225456, + 64.31190500100001 + ], + [ + 11.7259625, + 64.584793 + ], + [ + 11.1820715, + 64.740906 + ], + [ + 11.514355244, + 64.87855370800003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 28.548399, + 70.967239501 + ], + [ + 27.855804499999977, + 70.43014549999998 + ], + [ + 28.510006, + 70.447929999 + ], + [ + 28.397211, + 70.542122001 + ], + [ + 28.96657349899999, + 70.884941 + ], + [ + 31.060808, + 70.28778850100002 + ], + [ + 28.73865071, + 70.15556738999999 + ], + [ + 28.575159, + 70.11865250099999 + ], + [ + 29.767906536, + 69.823490934 + ], + [ + 29.459511, + 69.64896400100002 + ], + [ + 30.839926, + 69.77580800099997 + ], + [ + 30.954538500000012, + 69.632432 + ], + [ + 30.085324500000013, + 69.65810450100003 + ], + [ + 30.1884235, + 69.56845750000002 + ], + [ + 28.92968, + 69.051905 + ], + [ + 28.8057925, + 69.111147 + ], + [ + 29.336974, + 69.47831050000002 + ], + [ + 27.984522, + 70.013965499 + ], + [ + 25.950607, + 69.6965505 + ], + [ + 25.702101, + 69.25366150100001 + ], + [ + 25.777502500000026, + 69.018279001 + ], + [ + 24.903199500000028, + 68.554591 + ], + [ + 22.374526, + 68.716667 + ], + [ + 21.9836115, + 69.07289350000002 + ], + [ + 21.2788215, + 69.31188399899997 + ], + [ + 20.548636499999986, + 69.05996850100001 + ], + [ + 20.0600475, + 69.04575900100002 + ], + [ + 20.3358725, + 68.80231250000003 + ], + [ + 19.921397, + 68.356013001 + ], + [ + 18.125925, + 68.53651599900002 + ], + [ + 18.151354, + 68.19879 + ], + [ + 17.89976150000001, + 67.969372 + ], + [ + 17.281524, + 68.118815 + ], + [ + 16.15800150000001, + 67.51915900099999 + ], + [ + 16.387759, + 67.04546249999999 + ], + [ + 15.3772265, + 66.48430399699998 + ], + [ + 15.453994500000022, + 66.345233501 + ], + [ + 14.516289, + 66.132579 + ], + [ + 14.6254765, + 65.81180849999998 + ], + [ + 14.325985, + 65.118916001 + ], + [ + 12.182329, + 64.981381 + ], + [ + 12.9642955, + 65.32212049999998 + ], + [ + 12.041082500000016, + 65.216194 + ], + [ + 12.292716, + 65.58846299800001 + ], + [ + 12.781976499999985, + 65.46252449999997 + ], + [ + 12.347975, + 65.627327 + ], + [ + 12.646986, + 65.81443799700003 + ], + [ + 12.666879418, + 65.92070801099999 + ], + [ + 12.3801345, + 65.894111 + ], + [ + 14.147304500000018, + 66.330467 + ], + [ + 13.0099535, + 66.191283999 + ], + [ + 13.562423500000023, + 66.304679997 + ], + [ + 12.990386999, + 66.348778 + ], + [ + 13.73341449999998, + 66.60917650099998 + ], + [ + 13.2072895, + 66.716881 + ], + [ + 14.000651, + 66.79788950099999 + ], + [ + 13.492176, + 66.94919650000003 + ], + [ + 14.01318550000002, + 66.961944501 + ], + [ + 14.0676185, + 67.161491501 + ], + [ + 14.511739499999976, + 67.207649 + ], + [ + 15.08839799899999, + 67.236534 + ], + [ + 15.433605, + 67.10498050000001 + ], + [ + 15.481187, + 67.1844635 + ], + [ + 15.162948498999981, + 67.329765 + ], + [ + 14.308716, + 67.263771 + ], + [ + 15.650709213000027, + 67.53825820899999 + ], + [ + 15.160784499999977, + 67.632698 + ], + [ + 15.855372499999987, + 67.7099 + ], + [ + 14.75716, + 67.80435949999998 + ], + [ + 16.001165500000013, + 67.99621600299997 + ], + [ + 15.526616, + 68.065216002 + ], + [ + 15.395943499999987, + 68.036521999 + ], + [ + 15.440778500000022, + 68.024948 + ], + [ + 15.4147835, + 67.99591049999998 + ], + [ + 15.275926500000025, + 68.050613 + ], + [ + 16.062347499, + 68.255936001 + ], + [ + 16.819980499999986, + 68.155219999 + ], + [ + 16.27568050000002, + 68.37313849999998 + ], + [ + 17.900738, + 68.417808 + ], + [ + 16.075683500000025, + 68.414055001 + ], + [ + 16.5795895, + 68.541367 + ], + [ + 17.685274, + 68.67411049999998 + ], + [ + 17.251898, + 68.75971199899999 + ], + [ + 17.805559, + 68.74999250000002 + ], + [ + 17.447077, + 68.90790550100002 + ], + [ + 18.166633499, + 69.1502 + ], + [ + 17.96954549899999, + 69.228561501 + ], + [ + 18.238685499999974, + 69.482642999 + ], + [ + 19.54748749999999, + 69.21487449900002 + ], + [ + 18.934316500000023, + 69.59994500099998 + ], + [ + 19.2743185, + 69.77920549999999 + ], + [ + 20.394979499999977, + 69.89038799899998 + ], + [ + 19.93026550000002, + 69.26666250099998 + ], + [ + 20.459503, + 69.76207749899999 + ], + [ + 21.325062, + 69.90923299899998 + ], + [ + 21.241577, + 70.00890349999997 + ], + [ + 22.140845, + 69.74519350100002 + ], + [ + 21.727436, + 70.05191050000002 + ], + [ + 21.19089, + 70.22124050000002 + ], + [ + 21.424858, + 70.22282400099999 + ], + [ + 21.47847727599998, + 70.200361853 + ], + [ + 21.493496359, + 70.19927205599998 + ], + [ + 21.56427, + 70.32338700100001 + ], + [ + 21.8320885, + 70.16875450100002 + ], + [ + 21.78227049999998, + 70.25872049999998 + ], + [ + 21.983658, + 70.32945249900001 + ], + [ + 22.96682, + 70.18936900099999 + ], + [ + 23.00179650000001, + 69.91750349900002 + ], + [ + 23.407093, + 69.96468349999998 + ], + [ + 23.52833, + 70.015915 + ], + [ + 23.132837, + 70.085571501 + ], + [ + 23.179638, + 70.216247501 + ], + [ + 23.246681500000022, + 70.248192 + ], + [ + 24.090675499999975, + 70.541496499 + ], + [ + 24.298256, + 70.68613450100003 + ], + [ + 24.236952, + 70.8358915 + ], + [ + 24.553296499999988, + 70.97564699899999 + ], + [ + 25.911754499999972, + 70.87564850000001 + ], + [ + 25.08653049999998, + 70.51461049900001 + ], + [ + 24.912155, + 70.096092 + ], + [ + 25.153381500000023, + 70.06489549999998 + ], + [ + 26.572368499999982, + 70.95436850099998 + ], + [ + 26.733936500000027, + 70.82489799899997 + ], + [ + 26.475652500000024, + 70.354866 + ], + [ + 27.032476499999973, + 70.48385599900001 + ], + [ + 26.951067, + 70.546791 + ], + [ + 27.7029875, + 70.80062100100002 + ], + [ + 27.1011425, + 70.93241899899999 + ], + [ + 27.66123, + 71.126999001 + ], + [ + 28.548399, + 70.967239501 + ] + ] + ], + [ + [ + [ + 16.005573, + 68.7555385 + ], + [ + 15.7227115, + 68.536804001 + ], + [ + 16.076727, + 68.74844349900002 + ], + [ + 16.302828, + 68.715187001 + ], + [ + 16.123302500000023, + 68.844161999 + ], + [ + 16.409397, + 68.85786449900002 + ], + [ + 16.45695199900001, + 68.55735799899998 + ], + [ + 14.98062149899999, + 68.27394850000002 + ], + [ + 15.716285, + 68.693619001 + ], + [ + 15.464602500000012, + 68.753418001 + ], + [ + 15.619679500000018, + 68.95270549999998 + ], + [ + 15.959016500000018, + 68.88904549900002 + ], + [ + 15.963360495000018, + 68.876588513 + ], + [ + 15.988082191999979, + 68.80569573499997 + ], + [ + 16.005573, + 68.7555385 + ] + ] + ], + [ + [ + [ + 23.4573385, + 70.76512150000002 + ], + [ + 22.798172, + 70.51382500099999 + ], + [ + 21.92859249999998, + 70.64286049999998 + ], + [ + 23.4573385, + 70.76512150000002 + ] + ] + ], + [ + [ + [ + 18.08016950000001, + 69.42690300100003 + ], + [ + 16.782012999000017, + 69.0575945 + ], + [ + 17.658531, + 69.48767099899999 + ], + [ + 18.08016950000001, + 69.42690300100003 + ] + ] + ], + [ + [ + [ + 15.41872, + 68.7030565 + ], + [ + 14.368575998999972, + 68.684494 + ], + [ + 15.317963500000019, + 68.917221 + ], + [ + 15.253855, + 68.75589000100001 + ], + [ + 15.41872, + 68.7030565 + ] + ] + ], + [ + [ + [ + 15.16504550000002, + 68.44262699900003 + ], + [ + 14.206444499999975, + 68.17415599899999 + ], + [ + 14.4163855, + 68.393623499 + ], + [ + 15.16504550000002, + 68.44262699900003 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 20.432815, + 51.33940499900001 + ], + [ + 19.993847, + 51.18395400100002 + ], + [ + 20.0394705, + 50.990206496999974 + ], + [ + 19.74706, + 50.86597000099999 + ], + [ + 19.243142499999976, + 51.036844497 + ], + [ + 18.672954499000014, + 51.056902501000025 + ], + [ + 18.1636815, + 51.172516997 + ], + [ + 18.0745215, + 51.349915001 + ], + [ + 18.47196550000001, + 51.851005499 + ], + [ + 18.685665500000027, + 51.82100299799998 + ], + [ + 18.827809, + 52.06418800099999 + ], + [ + 19.04712, + 52.33280399900002 + ], + [ + 19.289184499999976, + 52.39271249799998 + ], + [ + 19.936101, + 52.29973349900001 + ], + [ + 20.658493, + 51.724147999000024 + ], + [ + 20.385006, + 51.641610001 + ], + [ + 20.4248905, + 51.61161950000002 + ], + [ + 20.528847499999983, + 51.46291799699998 + ], + [ + 20.432815, + 51.33940499900001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 23.128409, + 52.28784150000001 + ], + [ + 22.622901499000022, + 52.018744497 + ], + [ + 21.889174500000024, + 51.973184 + ], + [ + 21.879981, + 51.69363149899999 + ], + [ + 21.6155425, + 51.617562 + ], + [ + 21.87317600099999, + 51.474913499000024 + ], + [ + 21.802998, + 51.072078998999984 + ], + [ + 21.630164499999978, + 51.06338899799999 + ], + [ + 20.432815, + 51.33940499900001 + ], + [ + 20.528847499999983, + 51.46291799699998 + ], + [ + 20.4248905, + 51.61161950000002 + ], + [ + 20.385006, + 51.641610001 + ], + [ + 20.658493, + 51.724147999000024 + ], + [ + 19.936101, + 52.29973349900001 + ], + [ + 19.289184499999976, + 52.39271249799998 + ], + [ + 19.522742999, + 52.74920049799999 + ], + [ + 19.444664, + 52.93904250000003 + ], + [ + 19.684806, + 52.963038998 + ], + [ + 19.7615955, + 53.15179649800001 + ], + [ + 20.411137, + 53.214165 + ], + [ + 20.675953999, + 53.269529498 + ], + [ + 21.55169, + 53.478128001000016 + ], + [ + 21.598199912999974, + 53.48018197099998 + ], + [ + 21.735427500000014, + 53.312727999 + ], + [ + 21.694427500000018, + 53.13809399799999 + ], + [ + 22.453771500000016, + 52.78823849999998 + ], + [ + 22.408589, + 52.60968999900001 + ], + [ + 22.58041350000002, + 52.393157997 + ], + [ + 23.128409, + 52.28784150000001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 21.208831499999974, + 50.354897499 + ], + [ + 21.150439, + 49.976484500000026 + ], + [ + 21.29714949999999, + 49.842864 + ], + [ + 21.241772, + 49.776104499999974 + ], + [ + 21.39771250000001, + 49.43379399899999 + ], + [ + 20.9237225, + 49.29623449899998 + ], + [ + 20.6149395, + 49.417832998999984 + ], + [ + 19.883929500000022, + 49.204176999000026 + ], + [ + 19.467386499999975, + 49.613767 + ], + [ + 19.414951499999972, + 49.775265 + ], + [ + 19.09321, + 49.95665899699998 + ], + [ + 19.253810499999986, + 50.134193 + ], + [ + 19.489045499999975, + 50.39702749999998 + ], + [ + 19.8445375, + 50.43419549999999 + ], + [ + 19.949966500000016, + 50.50478250100002 + ], + [ + 20.681539, + 50.20587549700002 + ], + [ + 21.208831499999974, + 50.354897499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 19.74706, + 50.86597000099999 + ], + [ + 19.71294949999998, + 50.72915600099998 + ], + [ + 19.949966500000016, + 50.50478250100002 + ], + [ + 19.8445375, + 50.43419549999999 + ], + [ + 19.489045499999975, + 50.39702749999998 + ], + [ + 19.253810499999986, + 50.134193 + ], + [ + 19.09321, + 49.95665899699998 + ], + [ + 19.414951499999972, + 49.775265 + ], + [ + 19.467386499999975, + 49.613767 + ], + [ + 19.153403, + 49.40377700099998 + ], + [ + 18.851551, + 49.51718900100002 + ], + [ + 18.575724, + 49.910423 + ], + [ + 18.035060999, + 50.06577199899999 + ], + [ + 18.059780499999988, + 50.17465249999998 + ], + [ + 18.425866499999984, + 50.24896549800002 + ], + [ + 18.607473500000026, + 50.550011 + ], + [ + 18.61587750000001, + 50.85358750099999 + ], + [ + 18.672954499000014, + 51.056902501000025 + ], + [ + 19.243142499999976, + 51.036844497 + ], + [ + 19.74706, + 50.86597000099999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 23.178338, + 52.28314099800002 + ], + [ + 23.653733, + 52.072494999000014 + ], + [ + 23.529021, + 51.731750998999985 + ], + [ + 23.617665999, + 51.507613999 + ], + [ + 23.709221, + 51.27764849800002 + ], + [ + 24.1457825, + 50.869376999 + ], + [ + 24.0345575, + 50.44484350099998 + ], + [ + 23.547642, + 50.251602 + ], + [ + 23.387574500000028, + 50.405392999000014 + ], + [ + 22.638222, + 50.303077497 + ], + [ + 22.437193, + 50.39971749900002 + ], + [ + 22.5862, + 50.477348498000026 + ], + [ + 22.519738, + 50.583233499000016 + ], + [ + 21.8643035, + 50.80270649900001 + ], + [ + 21.802998, + 51.072078998999984 + ], + [ + 21.87317600099999, + 51.474913499000024 + ], + [ + 21.6155425, + 51.617562 + ], + [ + 21.879981, + 51.69363149899999 + ], + [ + 21.889174500000024, + 51.973184 + ], + [ + 22.622901499000022, + 52.018744497 + ], + [ + 23.128409, + 52.28784150000001 + ], + [ + 23.178338, + 52.28314099800002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 23.547642, + 50.251602 + ], + [ + 22.6861495, + 49.57316549699999 + ], + [ + 22.894087, + 49.016692998999986 + ], + [ + 22.56684, + 49.08837749899999 + ], + [ + 21.39771250000001, + 49.43379399899999 + ], + [ + 21.241772, + 49.776104499999974 + ], + [ + 21.29714949999999, + 49.842864 + ], + [ + 21.150439, + 49.976484500000026 + ], + [ + 21.208831499999974, + 50.354897499 + ], + [ + 21.8643035, + 50.80270649900001 + ], + [ + 22.519738, + 50.583233499000016 + ], + [ + 22.5862, + 50.477348498000026 + ], + [ + 22.437193, + 50.39971749900002 + ], + [ + 22.638222, + 50.303077497 + ], + [ + 23.387574500000028, + 50.405392999000014 + ], + [ + 23.547642, + 50.251602 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 21.802998, + 51.072078998999984 + ], + [ + 21.8643035, + 50.80270649900001 + ], + [ + 21.208831499999974, + 50.354897499 + ], + [ + 20.681539, + 50.20587549700002 + ], + [ + 19.949966500000016, + 50.50478250100002 + ], + [ + 19.71294949999998, + 50.72915600099998 + ], + [ + 19.74706, + 50.86597000099999 + ], + [ + 20.0394705, + 50.990206496999974 + ], + [ + 19.993847, + 51.18395400100002 + ], + [ + 20.432815, + 51.33940499900001 + ], + [ + 21.630164499999978, + 51.06338899799999 + ], + [ + 21.802998, + 51.072078998999984 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 23.51465, + 53.95655999799999 + ], + [ + 23.588702, + 53.69592849700001 + ], + [ + 23.918259, + 53.157621999000014 + ], + [ + 23.916239, + 52.904812 + ], + [ + 23.93864, + 52.712916001 + ], + [ + 23.178338, + 52.28314099800002 + ], + [ + 23.128409, + 52.28784150000001 + ], + [ + 22.58041350000002, + 52.393157997 + ], + [ + 22.408589, + 52.60968999900001 + ], + [ + 22.453771500000016, + 52.78823849999998 + ], + [ + 21.694427500000018, + 53.13809399799999 + ], + [ + 21.735427500000014, + 53.312727999 + ], + [ + 21.598199912999974, + 53.48018197099998 + ], + [ + 22.135728, + 53.544539998 + ], + [ + 22.703502500000013, + 53.767354496999985 + ], + [ + 22.782806, + 53.91548949899999 + ], + [ + 22.476556500000015, + 54.20130550099998 + ], + [ + 22.792095500000016, + 54.36335899699998 + ], + [ + 23.32149850000002, + 54.25332599799998 + ], + [ + 23.51465, + 53.95655999799999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 17.390653, + 53.490964 + ], + [ + 17.438793499999974, + 53.26751450099999 + ], + [ + 17.3015565, + 52.994803 + ], + [ + 17.509582500000022, + 52.917767997 + ], + [ + 17.458523, + 52.73894800099998 + ], + [ + 18.377150500000027, + 52.53746350099999 + ], + [ + 19.04712, + 52.33280399900002 + ], + [ + 18.827809, + 52.06418800099999 + ], + [ + 18.685665500000027, + 51.82100299799998 + ], + [ + 18.47196550000001, + 51.851005499 + ], + [ + 18.0745215, + 51.349915001 + ], + [ + 18.1636815, + 51.172516997 + ], + [ + 17.939456, + 51.10886499899999 + ], + [ + 17.795269500000018, + 51.19414600099998 + ], + [ + 17.556245, + 51.58430149899999 + ], + [ + 17.257433, + 51.64284300100002 + ], + [ + 16.828372, + 51.57218799899999 + ], + [ + 16.416191, + 51.784865 + ], + [ + 15.833296, + 52.11112300100001 + ], + [ + 15.880810499, + 52.29042949900003 + ], + [ + 15.776346499999988, + 52.63786950100001 + ], + [ + 15.946907, + 52.75489599799999 + ], + [ + 15.962497499999984, + 53.041380996999976 + ], + [ + 16.3173, + 53.04395249999999 + ], + [ + 16.6969115, + 53.301046 + ], + [ + 16.45421, + 53.48847550099998 + ], + [ + 16.892248, + 53.655868999 + ], + [ + 17.390653, + 53.490964 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.892248, + 53.655868999 + ], + [ + 16.45421, + 53.48847550099998 + ], + [ + 16.6969115, + 53.301046 + ], + [ + 16.3173, + 53.04395249999999 + ], + [ + 15.962497499999984, + 53.041380996999976 + ], + [ + 14.904187, + 52.883909499000026 + ], + [ + 14.565063, + 52.624497 + ], + [ + 14.436438, + 52.679900498999984 + ], + [ + 14.156692, + 52.89559099899998 + ], + [ + 14.143658, + 52.9613685 + ], + [ + 14.412157, + 53.329635998000015 + ], + [ + 14.267542, + 53.69780649699999 + ], + [ + 14.619581499999981, + 53.64978399900002 + ], + [ + 14.573513, + 53.849196999000014 + ], + [ + 14.2130775, + 53.86647949899998 + ], + [ + 14.226302, + 53.92865299800002 + ], + [ + 15.388074500000016, + 54.158907 + ], + [ + 16.699085, + 54.569247001 + ], + [ + 16.858620499999972, + 54.38257649799999 + ], + [ + 16.792764499999976, + 53.98555049999999 + ], + [ + 16.982053499000017, + 53.904909499999974 + ], + [ + 16.892248, + 53.655868999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.676575500000013, + 46.40582549700002 + ], + [ + 22.748716, + 46.35120749999999 + ], + [ + 23.234864, + 46.03050199699999 + ], + [ + 23.59727049999998, + 45.47347149900003 + ], + [ + 23.59064, + 45.353072499 + ], + [ + 22.68624649999998, + 45.25796099899998 + ], + [ + 22.656632, + 45.10816699700001 + ], + [ + 22.418032, + 44.75685749899998 + ], + [ + 22.207799, + 44.816878497 + ], + [ + 22.154162, + 44.59519949700001 + ], + [ + 22.016132500000026, + 44.599202499 + ], + [ + 22.012350500000025, + 44.60231849899998 + ], + [ + 21.35847, + 44.82161199699999 + ], + [ + 21.560126500000024, + 44.8890065 + ], + [ + 21.47917849999999, + 45.19302750100002 + ], + [ + 21.016575, + 45.324627497999984 + ], + [ + 20.662833, + 45.794115998999985 + ], + [ + 20.264296, + 46.1263735 + ], + [ + 20.705303500000014, + 46.160937499 + ], + [ + 20.7756, + 46.27590999900002 + ], + [ + 21.103170499999976, + 46.26259049700002 + ], + [ + 21.441398, + 46.651467 + ], + [ + 22.676575500000013, + 46.40582549700002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 17.572396, + 58.95085249800002 + ], + [ + 17.24537300100002, + 59.204196997999986 + ], + [ + 17.41612650000002, + 59.38413999800002 + ], + [ + 17.629102499999988, + 59.693004496000015 + ], + [ + 18.3647995, + 59.864387497 + ], + [ + 18.51326549999999, + 60.14808899799999 + ], + [ + 18.838097, + 60.110722501 + ], + [ + 19.0854185, + 59.75826449700003 + ], + [ + 18.058382209, + 59.37904236600002 + ], + [ + 18.138552267000023, + 59.33231602400002 + ], + [ + 18.70854650000001, + 59.29002999800002 + ], + [ + 17.991549570000018, + 58.96697999000003 + ], + [ + 17.868635241999982, + 58.847063186000014 + ], + [ + 17.850585, + 58.90182599899998 + ], + [ + 17.827534277999973, + 58.88462476199999 + ], + [ + 17.605396633, + 58.94228633099999 + ], + [ + 17.592441408000013, + 58.945649194 + ], + [ + 17.572396, + 58.95085249800002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 18.51326549999999, + 60.14808899799999 + ], + [ + 18.3647995, + 59.864387497 + ], + [ + 17.629102499999988, + 59.693004496000015 + ], + [ + 17.41612650000002, + 59.38413999800002 + ], + [ + 17.24537300100002, + 59.204196997999986 + ], + [ + 17.572396, + 58.95085249800002 + ], + [ + 16.75066350100002, + 58.626932001 + ], + [ + 16.218891636000023, + 58.625096370999984 + ], + [ + 16.948542, + 58.4797815 + ], + [ + 16.414471, + 58.47595449900001 + ], + [ + 16.927406, + 58.335789498 + ], + [ + 16.627013499999975, + 58.356352500000014 + ], + [ + 16.854670499, + 58.172553497000024 + ], + [ + 16.666683499999976, + 57.99607649799998 + ], + [ + 16.239588, + 58.13493349999999 + ], + [ + 15.94231399900002, + 57.803287497999975 + ], + [ + 15.421051, + 57.704879498000025 + ], + [ + 15.1283585, + 57.716312501 + ], + [ + 14.982714, + 58.1491125 + ], + [ + 14.41671, + 58.187240497 + ], + [ + 14.778936499, + 58.64599250100002 + ], + [ + 14.295995, + 59.01277950100001 + ], + [ + 14.437155500000017, + 60.02616099699998 + ], + [ + 15.42209250000002, + 59.854747499999974 + ], + [ + 15.801567, + 60.179103499 + ], + [ + 16.703831, + 60.195720498000014 + ], + [ + 17.192478, + 60.300712499999975 + ], + [ + 17.370218, + 60.654461500000025 + ], + [ + 17.675121999, + 60.50564799699998 + ], + [ + 17.9892855, + 60.6041095 + ], + [ + 18.617636, + 60.23238250000003 + ], + [ + 18.310146499999973, + 60.31662549999999 + ], + [ + 18.51326549999999, + 60.14808899799999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 15.1283585, + 57.716312501 + ], + [ + 15.421051, + 57.704879498000025 + ], + [ + 15.94231399900002, + 57.803287497999975 + ], + [ + 16.239588, + 58.13493349999999 + ], + [ + 16.666683499999976, + 57.99607649799998 + ], + [ + 16.690222393, + 57.99604851399999 + ], + [ + 16.73475643099999, + 57.995995569 + ], + [ + 16.813461, + 57.995902 + ], + [ + 16.727634500000022, + 57.44355299799997 + ], + [ + 16.0498715, + 56.32188850099999 + ], + [ + 15.58637349999998, + 56.48294 + ], + [ + 15.363503499999979, + 56.48237599700002 + ], + [ + 14.514669500000025, + 56.46003699800002 + ], + [ + 13.462636499999974, + 56.42818850100002 + ], + [ + 13.298661, + 56.82360450099998 + ], + [ + 13.681201, + 56.97211450100002 + ], + [ + 13.100760499999978, + 57.145515499 + ], + [ + 13.688058, + 57.558208501000024 + ], + [ + 13.772147, + 58.04856099699998 + ], + [ + 14.41671, + 58.187240497 + ], + [ + 14.982714, + 58.1491125 + ], + [ + 15.1283585, + 57.716312501 + ] + ] + ], + [ + [ + [ + 18.711624, + 57.24468649800002 + ], + [ + 18.340005500000018, + 57.07232799899998 + ], + [ + 18.091156, + 57.259374001000026 + ], + [ + 18.106193500000018, + 57.53464150100001 + ], + [ + 18.777192500000012, + 57.86741700099998 + ], + [ + 19.097435, + 57.819173001000024 + ], + [ + 18.810876, + 57.70597550100001 + ], + [ + 18.76146749999998, + 57.469703501000026 + ], + [ + 18.917816500000015, + 57.403347499 + ], + [ + 18.711624, + 57.24468649800002 + ] + ] + ], + [ + [ + [ + 17.07371999899999, + 57.179024001000016 + ], + [ + 16.400671, + 56.19580699699998 + ], + [ + 16.413673, + 56.58997449999998 + ], + [ + 16.959014, + 57.29136349999999 + ], + [ + 17.07680430900001, + 57.355879516000016 + ], + [ + 17.07371999899999, + 57.179024001000016 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 14.5651755, + 46.37245349699998 + ], + [ + 14.565212, + 46.367696998999975 + ], + [ + 14.908764500000018, + 46.207565998 + ], + [ + 14.711757499999976, + 46.07792999899999 + ], + [ + 14.948575, + 45.97861049699998 + ], + [ + 14.564807499999972, + 45.79146199899998 + ], + [ + 14.129577499999982, + 45.86949899899997 + ], + [ + 14.0423715, + 45.76135899899998 + ], + [ + 14.11819650000001, + 45.48123899699999 + ], + [ + 14.109059, + 45.48245849699998 + ], + [ + 13.583067, + 45.477409997 + ], + [ + 13.7228235, + 45.59472549700001 + ], + [ + 13.9186565, + 45.63351749899999 + ], + [ + 13.596243, + 45.807937501000026 + ], + [ + 13.597145, + 45.81952250099999 + ], + [ + 13.496938999, + 46.051334999 + ], + [ + 13.66434750000002, + 46.177549999 + ], + [ + 13.3754925, + 46.29823249899999 + ], + [ + 13.684032, + 46.437472501 + ], + [ + 13.714184999, + 46.52270349999998 + ], + [ + 14.434500500000013, + 46.442943501 + ], + [ + 14.5651755, + 46.37245349699998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 17.247427500000015, + 48.01200899899999 + ], + [ + 17.1607975, + 48.006656501 + ], + [ + 17.066741, + 48.11868149899999 + ], + [ + 16.976203, + 48.172244498 + ], + [ + 16.851106, + 48.43863500100002 + ], + [ + 16.949778, + 48.535791999000025 + ], + [ + 17.235799, + 48.567409500999986 + ], + [ + 17.477537, + 48.3525785 + ], + [ + 17.529213, + 48.19649750000002 + ], + [ + 17.247427500000015, + 48.01200899899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 19.0143225, + 48.077736499000025 + ], + [ + 18.928392, + 48.056832499 + ], + [ + 18.7548155, + 47.975082499 + ], + [ + 18.848478, + 47.81822800100002 + ], + [ + 17.893923, + 47.739456999000026 + ], + [ + 17.70543650000002, + 47.75899249899999 + ], + [ + 17.247427500000015, + 48.01200899899999 + ], + [ + 17.529213, + 48.19649750000002 + ], + [ + 17.477537, + 48.3525785 + ], + [ + 17.235799, + 48.567409500999986 + ], + [ + 16.949778, + 48.535791999000025 + ], + [ + 16.940278, + 48.61724549899998 + ], + [ + 17.2016625, + 48.878028997 + ], + [ + 17.3967255, + 48.81334999799998 + ], + [ + 17.64693, + 48.85426599800002 + ], + [ + 18.322436, + 49.315059 + ], + [ + 18.826351, + 48.744058999 + ], + [ + 18.478677, + 48.548603997999976 + ], + [ + 19.062313, + 48.188361499999985 + ], + [ + 19.0143225, + 48.077736499000025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 19.883929500000022, + 49.204176999000026 + ], + [ + 19.992254499000012, + 48.90749999899998 + ], + [ + 20.2674505, + 48.874073001 + ], + [ + 20.1822955, + 48.728225 + ], + [ + 20.463937, + 48.463967 + ], + [ + 20.051879, + 48.16770399699999 + ], + [ + 19.0143225, + 48.077736499000025 + ], + [ + 19.062313, + 48.188361499999985 + ], + [ + 18.478677, + 48.548603997999976 + ], + [ + 18.826351, + 48.744058999 + ], + [ + 18.322436, + 49.315059 + ], + [ + 18.4035955, + 49.39674549900002 + ], + [ + 18.851551, + 49.51718900100002 + ], + [ + 19.153403, + 49.40377700099998 + ], + [ + 19.467386499999975, + 49.613767 + ], + [ + 19.883929500000022, + 49.204176999000026 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.56684, + 49.08837749899999 + ], + [ + 22.382817499999987, + 48.86226399899999 + ], + [ + 22.155306, + 48.403396499 + ], + [ + 22.121077500000013, + 48.378311499 + ], + [ + 21.721957, + 48.351050499 + ], + [ + 21.440056, + 48.58523299900003 + ], + [ + 20.463937, + 48.463967 + ], + [ + 20.1822955, + 48.728225 + ], + [ + 20.2674505, + 48.874073001 + ], + [ + 19.992254499000012, + 48.90749999899998 + ], + [ + 19.883929500000022, + 49.204176999000026 + ], + [ + 20.6149395, + 49.417832998999984 + ], + [ + 20.9237225, + 49.29623449899998 + ], + [ + 21.39771250000001, + 49.43379399899999 + ], + [ + 22.56684, + 49.08837749899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 29.0726335, + 41.12454049899998 + ], + [ + 28.824152, + 40.954229499 + ], + [ + 27.99110250000001, + 41.018344997999975 + ], + [ + 28.181659498999977, + 41.564058999 + ], + [ + 29.1158845, + 41.228910498 + ], + [ + 29.037527, + 41.15583999900002 + ], + [ + 29.0726335, + 41.12454049899998 + ] + ] + ], + [ + [ + [ + 29.849114, + 41.064824498 + ], + [ + 29.342517499999985, + 40.807657499000015 + ], + [ + 29.031469500000014, + 40.967085 + ], + [ + 29.08727049999999, + 41.178521999 + ], + [ + 29.265264, + 41.230552 + ], + [ + 29.865624500000024, + 41.143447498 + ], + [ + 29.849114, + 41.064824498 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 28.03551249999998, + 41.983079498999984 + ], + [ + 28.152973, + 41.57896249700002 + ], + [ + 28.181659498999977, + 41.564058999 + ], + [ + 27.99110250000001, + 41.018344997999975 + ], + [ + 27.5128535, + 40.974729497 + ], + [ + 26.96865150000002, + 40.553368998999986 + ], + [ + 26.962811, + 40.667037999 + ], + [ + 26.773845, + 40.741130999 + ], + [ + 26.734886500000016, + 40.64293299799999 + ], + [ + 26.151155500000016, + 40.5893155 + ], + [ + 26.032758, + 40.730256999 + ], + [ + 26.291015500000015, + 40.93188349899998 + ], + [ + 26.321652, + 41.250406499 + ], + [ + 26.628431499999976, + 41.345533499 + ], + [ + 26.6001205, + 41.60119899799997 + ], + [ + 26.357879, + 41.71110449899999 + ], + [ + 26.561544500000025, + 41.92627349899999 + ], + [ + 26.9492285, + 42.00021349899998 + ], + [ + 27.059650499999975, + 42.08833699799999 + ], + [ + 27.559395, + 41.90478149699999 + ], + [ + 28.03551249999998, + 41.983079498999984 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 28.164779, + 40.395613 + ], + [ + 28.06755049999998, + 40.253133999 + ], + [ + 28.2650375, + 39.870233998 + ], + [ + 28.968574, + 39.60067749900003 + ], + [ + 28.885427, + 39.372048998000025 + ], + [ + 28.597988, + 39.280636 + ], + [ + 28.652546500000028, + 39.14736849899998 + ], + [ + 28.15897, + 39.05698399900001 + ], + [ + 27.800632, + 39.313108 + ], + [ + 27.381316, + 39.35274650100001 + ], + [ + 26.763921, + 39.175209999 + ], + [ + 26.671144500000025, + 39.279348497 + ], + [ + 26.950548500000025, + 39.55996849899998 + ], + [ + 26.618685, + 39.547879498999976 + ], + [ + 26.062643, + 39.47949799899999 + ], + [ + 26.179243, + 39.99143399799999 + ], + [ + 26.7568455, + 40.40379899800001 + ], + [ + 27.31992150000002, + 40.433412498 + ], + [ + 27.5062805, + 40.30467799899998 + ], + [ + 27.879064500000027, + 40.372956998 + ], + [ + 27.753523, + 40.528421498 + ], + [ + 28.016809500000022, + 40.447443 + ], + [ + 28.164779, + 40.395613 + ] + ] + ], + [ + [ + [ + 26.96865150000002, + 40.553368998999986 + ], + [ + 26.165872499999978, + 40.052561 + ], + [ + 26.218675500000018, + 40.319448497 + ], + [ + 26.83819749999998, + 40.58582499900001 + ], + [ + 26.734886500000016, + 40.64293299799999 + ], + [ + 26.773845, + 40.741130999 + ], + [ + 26.962811, + 40.667037999 + ], + [ + 26.96865150000002, + 40.553368998999986 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 28.4426095, + 38.104661498999974 + ], + [ + 28.285376, + 38.110739498999976 + ], + [ + 27.264569, + 37.87504849800001 + ], + [ + 26.757936500000028, + 38.22147949999999 + ], + [ + 26.5912, + 38.10275049799998 + ], + [ + 26.281446500000015, + 38.26644349899999 + ], + [ + 26.344708121999986, + 38.485118011 + ], + [ + 26.348637239000027, + 38.49869967 + ], + [ + 26.397398, + 38.66724949899998 + ], + [ + 26.6252955, + 38.52710550099999 + ], + [ + 26.674020499999983, + 38.311987 + ], + [ + 27.167742, + 38.44041999900003 + ], + [ + 26.73378550000001, + 38.65347099899998 + ], + [ + 27.06627450000002, + 38.87722599799997 + ], + [ + 26.763921, + 39.175209999 + ], + [ + 27.381316, + 39.35274650100001 + ], + [ + 27.4262905, + 38.944966498999975 + ], + [ + 27.101313499000014, + 38.77824549799999 + ], + [ + 27.26010150000002, + 38.548467501 + ], + [ + 28.286419500000022, + 38.31971599899998 + ], + [ + 28.4426095, + 38.104661498999974 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 29.852119, + 37.75228549899998 + ], + [ + 29.500381, + 37.618871997999975 + ], + [ + 29.60653050000002, + 37.395360998 + ], + [ + 29.341447, + 37.006848998 + ], + [ + 29.71326449899999, + 36.956309498999985 + ], + [ + 29.637207, + 36.669686001 + ], + [ + 29.2605615, + 36.30439899800001 + ], + [ + 29.102026, + 36.38672049799999 + ], + [ + 29.103811, + 36.67034349800002 + ], + [ + 28.928788999, + 36.754858001 + ], + [ + 28.851038, + 36.662084499 + ], + [ + 28.27040649999998, + 36.85247999799998 + ], + [ + 27.979345500000022, + 36.553571498 + ], + [ + 28.131860500000016, + 36.793966501 + ], + [ + 27.374422, + 36.685484 + ], + [ + 28.032835, + 36.787759999 + ], + [ + 28.330560499, + 37.033395498 + ], + [ + 27.565542, + 36.977285499 + ], + [ + 27.4248715, + 37.03574199799999 + ], + [ + 27.264269, + 36.964120998 + ], + [ + 27.32292, + 37.15848349800001 + ], + [ + 27.47090350000002, + 37.08077799900002 + ], + [ + 27.611025, + 37.257513 + ], + [ + 27.404363, + 37.368095 + ], + [ + 27.424582461, + 37.407003472999975 + ], + [ + 27.419004802000018, + 37.41190175600002 + ], + [ + 27.202436499999976, + 37.35082449999999 + ], + [ + 27.21665, + 37.59111199900002 + ], + [ + 27.003069, + 37.65979599899998 + ], + [ + 27.234331, + 37.72418399899999 + ], + [ + 27.264569, + 37.87504849800001 + ], + [ + 28.285376, + 38.110739498999976 + ], + [ + 28.4426095, + 38.104661498999974 + ], + [ + 28.616089, + 38.089585999 + ], + [ + 28.847341500000027, + 38.240428501 + ], + [ + 29.580195, + 38.246578499 + ], + [ + 29.75570349999998, + 38.484307496999975 + ], + [ + 30.027253499999972, + 38.21467949999999 + ], + [ + 29.65392250000002, + 37.960175499 + ], + [ + 29.852119, + 37.75228549899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 31.6197325, + 39.10305549899999 + ], + [ + 31.621331, + 38.61994749799999 + ], + [ + 31.233349499999974, + 38.409972998 + ], + [ + 30.986741, + 38.466414499 + ], + [ + 30.039979500000015, + 37.752413999 + ], + [ + 29.852119, + 37.75228549899998 + ], + [ + 29.65392250000002, + 37.960175499 + ], + [ + 30.027253499999972, + 38.21467949999999 + ], + [ + 29.75570349999998, + 38.484307496999975 + ], + [ + 29.580195, + 38.246578499 + ], + [ + 28.847341500000027, + 38.240428501 + ], + [ + 28.616089, + 38.089585999 + ], + [ + 28.4426095, + 38.104661498999974 + ], + [ + 28.286419500000022, + 38.31971599899998 + ], + [ + 27.26010150000002, + 38.548467501 + ], + [ + 27.101313499000014, + 38.77824549799999 + ], + [ + 27.4262905, + 38.944966498999975 + ], + [ + 27.381316, + 39.35274650100001 + ], + [ + 27.800632, + 39.313108 + ], + [ + 28.15897, + 39.05698399900001 + ], + [ + 28.652546500000028, + 39.14736849899998 + ], + [ + 28.597988, + 39.280636 + ], + [ + 28.885427, + 39.372048998000025 + ], + [ + 28.968574, + 39.60067749900003 + ], + [ + 29.1940935, + 39.600573998000016 + ], + [ + 29.396933, + 39.90101249999998 + ], + [ + 29.74218350000001, + 39.871334 + ], + [ + 29.760535, + 39.71012349799997 + ], + [ + 30.0601345, + 39.658641 + ], + [ + 30.355477, + 39.49900499900002 + ], + [ + 30.429491499999983, + 39.21761249899998 + ], + [ + 30.741455499999972, + 39.126772999000025 + ], + [ + 31.192543, + 39.27911049800002 + ], + [ + 31.6197325, + 39.10305549899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 30.82533, + 40.12578449900002 + ], + [ + 31.676844, + 40.035240500999976 + ], + [ + 32.069824, + 39.27607099800002 + ], + [ + 31.8153175, + 39.128693499 + ], + [ + 31.6197325, + 39.10305549899999 + ], + [ + 31.192543, + 39.27911049800002 + ], + [ + 30.741455499999972, + 39.126772999000025 + ], + [ + 30.429491499999983, + 39.21761249899998 + ], + [ + 30.355477, + 39.49900499900002 + ], + [ + 30.0601345, + 39.658641 + ], + [ + 29.760535, + 39.71012349799997 + ], + [ + 29.74218350000001, + 39.871334 + ], + [ + 29.396933, + 39.90101249999998 + ], + [ + 29.1940935, + 39.600573998000016 + ], + [ + 28.968574, + 39.60067749900003 + ], + [ + 28.2650375, + 39.870233998 + ], + [ + 28.06755049999998, + 40.253133999 + ], + [ + 28.164779, + 40.395613 + ], + [ + 29.154478, + 40.425374998999985 + ], + [ + 28.991232500000024, + 40.46627349800002 + ], + [ + 29.4102205, + 40.550392499 + ], + [ + 29.924952, + 40.551626499 + ], + [ + 29.964417, + 40.522084499000016 + ], + [ + 30.521932, + 40.29434150100002 + ], + [ + 30.650090499999976, + 40.14473599899998 + ], + [ + 30.82533, + 40.12578449900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 31.2956565, + 41.11632 + ], + [ + 31.75363, + 41.005629999 + ], + [ + 32.134024, + 41.030704 + ], + [ + 32.560043, + 40.807477499000015 + ], + [ + 32.554816, + 40.691943998 + ], + [ + 31.911622, + 40.328740498 + ], + [ + 31.128547500000025, + 40.36527999899999 + ], + [ + 30.82533, + 40.12578449900002 + ], + [ + 30.650090499999976, + 40.14473599899998 + ], + [ + 30.521932, + 40.29434150100002 + ], + [ + 29.964417, + 40.522084499000016 + ], + [ + 29.924952, + 40.551626499 + ], + [ + 29.4102205, + 40.550392499 + ], + [ + 28.991232500000024, + 40.46627349800002 + ], + [ + 28.780161, + 40.53619199799999 + ], + [ + 29.546993, + 40.695436 + ], + [ + 29.9421865, + 40.750489999000024 + ], + [ + 29.342517499999985, + 40.807657499000015 + ], + [ + 29.849114, + 41.064824498 + ], + [ + 29.865624500000024, + 41.143447498 + ], + [ + 30.354686500000014, + 41.184194499 + ], + [ + 30.9820555, + 41.072602501 + ], + [ + 31.2956565, + 41.11632 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 33.695422, + 40.33224149900002 + ], + [ + 33.24737249999998, + 39.64108699799999 + ], + [ + 33.441716, + 39.35144900099999 + ], + [ + 33.886019, + 39.043412499 + ], + [ + 33.722786, + 38.94294799800002 + ], + [ + 33.7054745, + 38.68082249999998 + ], + [ + 33.464405, + 38.63659149900002 + ], + [ + 33.337978, + 39.050211998 + ], + [ + 32.992395499999986, + 39.244097001 + ], + [ + 32.44286, + 38.958912999 + ], + [ + 31.8153175, + 39.128693499 + ], + [ + 32.069824, + 39.27607099800002 + ], + [ + 31.676844, + 40.035240500999976 + ], + [ + 30.82533, + 40.12578449900002 + ], + [ + 31.128547500000025, + 40.36527999899999 + ], + [ + 31.911622, + 40.328740498 + ], + [ + 32.554816, + 40.691943998 + ], + [ + 32.97209549899998, + 40.615893501000016 + ], + [ + 33.220758999, + 40.32078449800002 + ], + [ + 33.695422, + 40.33224149900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 33.464405, + 38.63659149900002 + ], + [ + 33.2033695, + 38.27849400100001 + ], + [ + 33.3944535, + 37.97126099799999 + ], + [ + 34.03357349999999, + 38.00481099799998 + ], + [ + 34.4004265, + 37.75167499899999 + ], + [ + 34.3350345, + 37.47940749700001 + ], + [ + 34.42891450000002, + 37.31638499899998 + ], + [ + 33.997476, + 37.09766399799997 + ], + [ + 32.95091050000002, + 36.831344999 + ], + [ + 33.238955499999975, + 36.520920999 + ], + [ + 32.573227, + 36.357624 + ], + [ + 32.45723149999998, + 36.738470999000015 + ], + [ + 31.740267500000016, + 37.35582599899999 + ], + [ + 31.4533915, + 37.33383299899998 + ], + [ + 31.300975, + 37.40425899799999 + ], + [ + 31.419393, + 37.97350799700001 + ], + [ + 31.5975305, + 38.0560855 + ], + [ + 31.233349499999974, + 38.409972998 + ], + [ + 31.621331, + 38.61994749799999 + ], + [ + 31.6197325, + 39.10305549899999 + ], + [ + 31.8153175, + 39.128693499 + ], + [ + 32.44286, + 38.958912999 + ], + [ + 32.992395499999986, + 39.244097001 + ], + [ + 33.337978, + 39.050211998 + ], + [ + 33.464405, + 38.63659149900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 31.233349499999974, + 38.409972998 + ], + [ + 31.5975305, + 38.0560855 + ], + [ + 31.419393, + 37.97350799700001 + ], + [ + 31.300975, + 37.40425899799999 + ], + [ + 31.4533915, + 37.33383299899998 + ], + [ + 31.740267500000016, + 37.35582599899999 + ], + [ + 32.45723149999998, + 36.738470999000015 + ], + [ + 32.573227, + 36.357624 + ], + [ + 32.57634, + 36.093232999 + ], + [ + 32.029032, + 36.53820249900002 + ], + [ + 30.69816750000001, + 36.884519497999975 + ], + [ + 30.327932499999974, + 36.296952998999984 + ], + [ + 29.644518, + 36.196329 + ], + [ + 29.2605615, + 36.30439899800001 + ], + [ + 29.637207, + 36.669686001 + ], + [ + 29.71326449899999, + 36.956309498999985 + ], + [ + 29.341447, + 37.006848998 + ], + [ + 29.60653050000002, + 37.395360998 + ], + [ + 29.500381, + 37.618871997999975 + ], + [ + 29.852119, + 37.75228549899998 + ], + [ + 30.039979500000015, + 37.752413999 + ], + [ + 30.986741, + 38.466414499 + ], + [ + 31.233349499999974, + 38.409972998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 36.440496, + 38.21943249899999 + ], + [ + 36.303865, + 37.73457649900001 + ], + [ + 36.0404835, + 37.660304999 + ], + [ + 35.884942498999976, + 37.344126499000026 + ], + [ + 35.856385, + 37.16971299800002 + ], + [ + 36.0454575, + 37.18898299900002 + ], + [ + 36.05271, + 37.018507999 + ], + [ + 35.963096, + 36.902986999 + ], + [ + 35.56584, + 36.5647945 + ], + [ + 35.339365, + 36.538526499 + ], + [ + 34.899245, + 36.73828099899998 + ], + [ + 34.5607205, + 36.76816349699999 + ], + [ + 33.68421, + 36.133401999 + ], + [ + 32.57634, + 36.093232999 + ], + [ + 32.573227, + 36.357624 + ], + [ + 33.238955499999975, + 36.520920999 + ], + [ + 32.95091050000002, + 36.831344999 + ], + [ + 33.997476, + 37.09766399799997 + ], + [ + 34.42891450000002, + 37.31638499899998 + ], + [ + 34.748, + 37.409303998999974 + ], + [ + 34.8854045, + 37.67054299900002 + ], + [ + 35.218708, + 37.75922449900003 + ], + [ + 35.574764, + 37.737158498999975 + ], + [ + 35.6144215, + 37.962110999 + ], + [ + 36.253814, + 38.379422998999985 + ], + [ + 36.440496, + 38.21943249899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 37.6386675, + 37.931167 + ], + [ + 37.432401, + 37.641709 + ], + [ + 37.62321650000001, + 37.511652497 + ], + [ + 37.08278, + 37.175676 + ], + [ + 36.901796, + 37.33366049900002 + ], + [ + 36.69738849999999, + 37.218142496999974 + ], + [ + 36.465673, + 36.94866749900001 + ], + [ + 36.66001039399998, + 36.83323153600003 + ], + [ + 36.549576, + 36.487769997999976 + ], + [ + 36.683648, + 36.23678349900001 + ], + [ + 36.39222, + 36.213326 + ], + [ + 36.37497, + 35.99791399899999 + ], + [ + 36.168469, + 35.81971799799999 + ], + [ + 35.917953, + 35.928695499000014 + ], + [ + 35.978777, + 36.01944149899998 + ], + [ + 35.779623, + 36.31855599800002 + ], + [ + 36.2157305, + 36.65963549899999 + ], + [ + 36.1485765, + 36.855066498999975 + ], + [ + 35.963096, + 36.902986999 + ], + [ + 36.05271, + 37.018507999 + ], + [ + 36.0454575, + 37.18898299900002 + ], + [ + 35.856385, + 37.16971299800002 + ], + [ + 35.884942498999976, + 37.344126499000026 + ], + [ + 36.0404835, + 37.660304999 + ], + [ + 36.303865, + 37.73457649900001 + ], + [ + 36.440496, + 38.21943249899999 + ], + [ + 36.769845499999974, + 38.54643599899998 + ], + [ + 37.341487, + 38.59351549899998 + ], + [ + 37.25953449999997, + 38.479911 + ], + [ + 37.7602465, + 38.20305099799998 + ], + [ + 37.6386675, + 37.931167 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 33.9162255, + 40.263038 + ], + [ + 34.175507, + 39.940434 + ], + [ + 34.108037, + 39.79300249800002 + ], + [ + 34.6441815, + 39.41150399899999 + ], + [ + 34.9147415, + 39.283632497999974 + ], + [ + 35.034188, + 39.004880997999976 + ], + [ + 34.9680335, + 38.788846998999986 + ], + [ + 35.083858, + 38.57053549800003 + ], + [ + 34.885322, + 38.34468849799998 + ], + [ + 35.2656685, + 38.10601999800002 + ], + [ + 35.218708, + 37.75922449900003 + ], + [ + 34.8854045, + 37.67054299900002 + ], + [ + 34.748, + 37.409303998999974 + ], + [ + 34.42891450000002, + 37.31638499899998 + ], + [ + 34.3350345, + 37.47940749700001 + ], + [ + 34.4004265, + 37.75167499899999 + ], + [ + 34.03357349999999, + 38.00481099799998 + ], + [ + 33.3944535, + 37.97126099799999 + ], + [ + 33.2033695, + 38.27849400100001 + ], + [ + 33.464405, + 38.63659149900002 + ], + [ + 33.7054745, + 38.68082249999998 + ], + [ + 33.722786, + 38.94294799800002 + ], + [ + 33.886019, + 39.043412499 + ], + [ + 33.441716, + 39.35144900099999 + ], + [ + 33.24737249999998, + 39.64108699799999 + ], + [ + 33.695422, + 40.33224149900002 + ], + [ + 33.9162255, + 40.263038 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 38.78355, + 40.08327149899998 + ], + [ + 38.3667795, + 39.93940199799999 + ], + [ + 38.349975, + 39.14994349699998 + ], + [ + 37.825541, + 39.093950499000016 + ], + [ + 37.341487, + 38.59351549899998 + ], + [ + 36.769845499999974, + 38.54643599899998 + ], + [ + 36.440496, + 38.21943249899999 + ], + [ + 36.253814, + 38.379422998999985 + ], + [ + 35.6144215, + 37.962110999 + ], + [ + 35.574764, + 37.737158498999975 + ], + [ + 35.218708, + 37.75922449900003 + ], + [ + 35.2656685, + 38.10601999800002 + ], + [ + 34.885322, + 38.34468849799998 + ], + [ + 35.083858, + 38.57053549800003 + ], + [ + 34.9680335, + 38.788846998999986 + ], + [ + 35.034188, + 39.004880997999976 + ], + [ + 34.9147415, + 39.283632497999974 + ], + [ + 34.6441815, + 39.41150399899999 + ], + [ + 34.108037, + 39.79300249800002 + ], + [ + 34.175507, + 39.940434 + ], + [ + 35.072878, + 40.01205649899998 + ], + [ + 35.1556395, + 40.226113 + ], + [ + 35.35115, + 40.2433805 + ], + [ + 35.442588, + 40.23402249899999 + ], + [ + 36.003423, + 39.95451049799999 + ], + [ + 36.606419500000015, + 39.980525999 + ], + [ + 36.8059275, + 40.228436999 + ], + [ + 37.450466, + 40.17053549899998 + ], + [ + 37.584064, + 40.42438699899998 + ], + [ + 37.73245750000001, + 40.3425095 + ], + [ + 38.14845250000002, + 40.52421849799998 + ], + [ + 38.213064, + 40.21331249899998 + ], + [ + 38.78355, + 40.08327149899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 32.560043, + 40.807477499000015 + ], + [ + 32.134024, + 41.030704 + ], + [ + 31.75363, + 41.005629999 + ], + [ + 31.2956565, + 41.11632 + ], + [ + 31.403204, + 41.317392498 + ], + [ + 32.062578, + 41.58030599900002 + ], + [ + 32.73610350000001, + 41.849009498999976 + ], + [ + 32.776286, + 41.58835299899999 + ], + [ + 32.88422350000002, + 41.575608999 + ], + [ + 33.127837, + 41.414297 + ], + [ + 32.8912545, + 41.173115 + ], + [ + 33.042014, + 41.06934599800002 + ], + [ + 32.560043, + 40.807477499000015 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 35.51369949999997, + 41.63597999900003 + ], + [ + 35.364086, + 41.27055649699997 + ], + [ + 35.1020165, + 41.40009449899998 + ], + [ + 34.85675199899998, + 41.215630498999985 + ], + [ + 34.449347, + 41.327383999 + ], + [ + 34.177718, + 41.14664549999998 + ], + [ + 34.2630365, + 40.890320498999984 + ], + [ + 33.929878, + 40.8278105 + ], + [ + 34.1436195, + 40.41869599900002 + ], + [ + 33.9162255, + 40.263038 + ], + [ + 33.695422, + 40.33224149900002 + ], + [ + 33.220758999, + 40.32078449800002 + ], + [ + 32.97209549899998, + 40.615893501000016 + ], + [ + 32.554816, + 40.691943998 + ], + [ + 32.560043, + 40.807477499000015 + ], + [ + 33.042014, + 41.06934599800002 + ], + [ + 32.8912545, + 41.173115 + ], + [ + 33.127837, + 41.414297 + ], + [ + 32.88422350000002, + 41.575608999 + ], + [ + 32.776286, + 41.58835299899999 + ], + [ + 32.73610350000001, + 41.849009498999976 + ], + [ + 33.3196165, + 42.01599299899999 + ], + [ + 34.22887849900002, + 41.954958998999984 + ], + [ + 34.7977085, + 41.954602997999984 + ], + [ + 34.943724, + 42.09698299899998 + ], + [ + 35.51369949999997, + 41.63597999900003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 37.152348500000016, + 41.148413498000025 + ], + [ + 36.671261, + 40.91562949899998 + ], + [ + 37.632352, + 40.54368199800001 + ], + [ + 37.584064, + 40.42438699899998 + ], + [ + 37.450466, + 40.17053549899998 + ], + [ + 36.8059275, + 40.228436999 + ], + [ + 36.606419500000015, + 39.980525999 + ], + [ + 36.003423, + 39.95451049799999 + ], + [ + 35.442588, + 40.23402249899999 + ], + [ + 35.35115, + 40.2433805 + ], + [ + 35.1556395, + 40.226113 + ], + [ + 35.072878, + 40.01205649899998 + ], + [ + 34.175507, + 39.940434 + ], + [ + 33.9162255, + 40.263038 + ], + [ + 34.1436195, + 40.41869599900002 + ], + [ + 33.929878, + 40.8278105 + ], + [ + 34.2630365, + 40.890320498999984 + ], + [ + 34.177718, + 41.14664549999998 + ], + [ + 34.449347, + 41.327383999 + ], + [ + 34.85675199899998, + 41.215630498999985 + ], + [ + 35.1020165, + 41.40009449899998 + ], + [ + 35.364086, + 41.27055649699997 + ], + [ + 35.51369949999997, + 41.63597999900003 + ], + [ + 35.9609585, + 41.734693 + ], + [ + 36.38541249999997, + 41.256273498999974 + ], + [ + 36.651739, + 41.383401999 + ], + [ + 37.152348500000016, + 41.148413498000025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 42.51517493199998, + 41.43828241599999 + ], + [ + 42.596096, + 41.2710925 + ], + [ + 42.28524950000002, + 40.91643799899998 + ], + [ + 41.9458735, + 40.950454997 + ], + [ + 41.80985750000002, + 40.684673499999974 + ], + [ + 41.384645499999976, + 40.567911998 + ], + [ + 41.164019499, + 40.83493949899997 + ], + [ + 40.60606150000001, + 40.536 + ], + [ + 40.461455, + 40.52868399800002 + ], + [ + 40.089906, + 40.572094999 + ], + [ + 39.643336499999975, + 40.095837999000025 + ], + [ + 39.789502, + 39.940146 + ], + [ + 39.4362185, + 39.878558 + ], + [ + 38.95667850000001, + 40.068511999 + ], + [ + 38.78355, + 40.08327149899998 + ], + [ + 38.213064, + 40.21331249899998 + ], + [ + 38.14845250000002, + 40.52421849799998 + ], + [ + 37.73245750000001, + 40.3425095 + ], + [ + 37.584064, + 40.42438699899998 + ], + [ + 37.632352, + 40.54368199800001 + ], + [ + 36.671261, + 40.91562949899998 + ], + [ + 37.152348500000016, + 41.148413498000025 + ], + [ + 38.109992499999976, + 40.95851799799999 + ], + [ + 39.1793085, + 41.074095999 + ], + [ + 40.32828749999999, + 40.987883501 + ], + [ + 41.2519, + 41.32993349899999 + ], + [ + 41.54713349999997, + 41.52037549800002 + ], + [ + 42.51517493199998, + 41.43828241599999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 42.28524950000002, + 40.91643799899998 + ], + [ + 42.57464950000002, + 40.669076999000026 + ], + [ + 42.53017349999999, + 40.43586949899998 + ], + [ + 42.128152, + 40.29244899899999 + ], + [ + 42.57502699899999, + 39.95392599899998 + ], + [ + 42.3006995, + 39.84167749900001 + ], + [ + 42.53097050000002, + 39.63093049999998 + ], + [ + 42.406795, + 39.46710349900002 + ], + [ + 41.801216, + 39.14470749899999 + ], + [ + 41.20683, + 39.353699001 + ], + [ + 40.651635, + 39.52291049899998 + ], + [ + 40.4484405, + 39.52215549800002 + ], + [ + 39.82890149999997, + 39.60165249800002 + ], + [ + 39.072714, + 39.437300499 + ], + [ + 38.7295135, + 39.13715549699998 + ], + [ + 38.768138, + 39.00626299800001 + ], + [ + 38.6840535, + 39.02384299900001 + ], + [ + 38.349975, + 39.14994349699998 + ], + [ + 38.3667795, + 39.93940199799999 + ], + [ + 38.78355, + 40.08327149899998 + ], + [ + 38.95667850000001, + 40.068511999 + ], + [ + 39.4362185, + 39.878558 + ], + [ + 39.789502, + 39.940146 + ], + [ + 39.643336499999975, + 40.095837999000025 + ], + [ + 40.089906, + 40.572094999 + ], + [ + 40.461455, + 40.52868399800002 + ], + [ + 40.60606150000001, + 40.536 + ], + [ + 41.164019499, + 40.83493949899997 + ], + [ + 41.384645499999976, + 40.567911998 + ], + [ + 41.80985750000002, + 40.684673499999974 + ], + [ + 41.9458735, + 40.950454997 + ], + [ + 42.28524950000002, + 40.91643799899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 44.04995580999997, + 39.36281542699999 + ], + [ + 43.716901, + 39.20951250000002 + ], + [ + 43.412439, + 39.39359249900002 + ], + [ + 43.1418885, + 39.310626996999986 + ], + [ + 43.184449, + 39.198752497999976 + ], + [ + 42.979636, + 39.016623498 + ], + [ + 42.75008, + 38.92519099899999 + ], + [ + 42.671909, + 39.21350849800001 + ], + [ + 42.406795, + 39.46710349900002 + ], + [ + 42.53097050000002, + 39.63093049999998 + ], + [ + 42.3006995, + 39.84167749900001 + ], + [ + 42.57502699899999, + 39.95392599899998 + ], + [ + 42.128152, + 40.29244899899999 + ], + [ + 42.53017349999999, + 40.43586949899998 + ], + [ + 42.57464950000002, + 40.669076999000026 + ], + [ + 42.28524950000002, + 40.91643799899998 + ], + [ + 42.596096, + 41.2710925 + ], + [ + 42.51517493199998, + 41.43828241599999 + ], + [ + 42.836095, + 41.58444249799999 + ], + [ + 43.473827, + 41.12329749999998 + ], + [ + 43.469638, + 41.05734499800002 + ], + [ + 43.750409, + 40.74499899900002 + ], + [ + 43.583054, + 40.45111099899998 + ], + [ + 43.653923, + 40.13037749900002 + ], + [ + 44.351662, + 40.02222099800002 + ], + [ + 44.76841, + 39.714094498 + ], + [ + 44.81204250000002, + 39.63174349799999 + ], + [ + 44.502099499999986, + 39.7169935 + ], + [ + 44.401101, + 39.41651599900001 + ], + [ + 44.04995580999997, + 39.36281542699999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 41.20683, + 39.353699001 + ], + [ + 41.116833, + 39.273619998000015 + ], + [ + 41.176564, + 38.716726 + ], + [ + 40.459416499999975, + 38.622623498999985 + ], + [ + 40.31407, + 38.465824499 + ], + [ + 39.162863, + 38.30443449799998 + ], + [ + 39.122747, + 38.183312999 + ], + [ + 38.816859, + 38.012205499 + ], + [ + 38.32978250000002, + 38.204376998999976 + ], + [ + 38.09520250000003, + 38.10833049799999 + ], + [ + 38.0894285, + 37.95417299899998 + ], + [ + 37.6386675, + 37.931167 + ], + [ + 37.7602465, + 38.20305099799998 + ], + [ + 37.25953449999997, + 38.479911 + ], + [ + 37.341487, + 38.59351549899998 + ], + [ + 37.825541, + 39.093950499000016 + ], + [ + 38.349975, + 39.14994349699998 + ], + [ + 38.6840535, + 39.02384299900001 + ], + [ + 38.768138, + 39.00626299800001 + ], + [ + 38.7295135, + 39.13715549699998 + ], + [ + 39.072714, + 39.437300499 + ], + [ + 39.82890149999997, + 39.60165249800002 + ], + [ + 40.4484405, + 39.52215549800002 + ], + [ + 40.651635, + 39.52291049899998 + ], + [ + 41.20683, + 39.353699001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 44.04995580999997, + 39.36281542699999 + ], + [ + 44.30026699899997, + 38.842627999 + ], + [ + 44.30526, + 38.40053499800001 + ], + [ + 44.482518, + 38.34129999800001 + ], + [ + 44.223969, + 37.899149998999974 + ], + [ + 44.46285493800002, + 37.80956816899999 + ], + [ + 44.617768, + 37.717975998999975 + ], + [ + 44.588852, + 37.443092998 + ], + [ + 44.801659, + 37.32166299900001 + ], + [ + 44.793147499999975, + 37.17628399900002 + ], + [ + 44.349709, + 37.03832299800001 + ], + [ + 44.118882, + 37.315686 + ], + [ + 43.424563, + 37.275334499999985 + ], + [ + 43.307242, + 37.43826649800002 + ], + [ + 43.505390499999976, + 37.71352999800001 + ], + [ + 42.9662085, + 37.762133 + ], + [ + 42.76799349999999, + 37.91362949799998 + ], + [ + 41.702295, + 38.246542998999985 + ], + [ + 41.506182, + 38.564977999 + ], + [ + 41.38054999899998, + 38.492253498000025 + ], + [ + 41.176564, + 38.716726 + ], + [ + 41.116833, + 39.273619998000015 + ], + [ + 41.20683, + 39.353699001 + ], + [ + 41.801216, + 39.14470749899999 + ], + [ + 42.406795, + 39.46710349900002 + ], + [ + 42.671909, + 39.21350849800001 + ], + [ + 42.75008, + 38.92519099899999 + ], + [ + 42.979636, + 39.016623498 + ], + [ + 43.184449, + 39.198752497999976 + ], + [ + 43.1418885, + 39.310626996999986 + ], + [ + 43.412439, + 39.39359249900002 + ], + [ + 43.716901, + 39.20951250000002 + ], + [ + 44.04995580999997, + 39.36281542699999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 39.122747, + 38.183312999 + ], + [ + 39.262784, + 38.146125998 + ], + [ + 39.099832, + 38.012478499 + ], + [ + 38.8514505, + 37.649203999 + ], + [ + 38.00804999899998, + 37.45474099799998 + ], + [ + 37.8355575, + 37.165888498000015 + ], + [ + 38.047589500000015, + 36.84555449700002 + ], + [ + 37.58551649999998, + 36.70376849899998 + ], + [ + 37.127495, + 36.659157 + ], + [ + 36.678777500000024, + 36.83266099799999 + ], + [ + 36.66001039399998, + 36.83323153600003 + ], + [ + 36.465673, + 36.94866749900001 + ], + [ + 36.69738849999999, + 37.218142496999974 + ], + [ + 36.901796, + 37.33366049900002 + ], + [ + 37.08278, + 37.175676 + ], + [ + 37.62321650000001, + 37.511652497 + ], + [ + 37.432401, + 37.641709 + ], + [ + 37.6386675, + 37.931167 + ], + [ + 38.0894285, + 37.95417299899998 + ], + [ + 38.09520250000003, + 38.10833049799999 + ], + [ + 38.32978250000002, + 38.204376998999976 + ], + [ + 38.816859, + 38.012205499 + ], + [ + 39.122747, + 38.183312999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 41.38054999899998, + 38.492253498000025 + ], + [ + 41.189474, + 38.31202699800002 + ], + [ + 41.25448, + 38.1395195 + ], + [ + 40.995091, + 37.826863 + ], + [ + 41.045006, + 37.71503049900002 + ], + [ + 39.8555495, + 37.531011998 + ], + [ + 40.226033, + 36.90137349899999 + ], + [ + 39.221524, + 36.66534099699999 + ], + [ + 38.386376, + 36.89832999700002 + ], + [ + 38.047589500000015, + 36.84555449700002 + ], + [ + 37.8355575, + 37.165888498000015 + ], + [ + 38.00804999899998, + 37.45474099799998 + ], + [ + 38.8514505, + 37.649203999 + ], + [ + 39.099832, + 38.012478499 + ], + [ + 39.262784, + 38.146125998 + ], + [ + 39.122747, + 38.183312999 + ], + [ + 39.162863, + 38.30443449799998 + ], + [ + 40.31407, + 38.465824499 + ], + [ + 40.459416499999975, + 38.622623498999985 + ], + [ + 41.176564, + 38.716726 + ], + [ + 41.38054999899998, + 38.492253498000025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 43.424563, + 37.275334499999985 + ], + [ + 42.786801, + 37.38367499899999 + ], + [ + 42.3556825, + 37.10799350100001 + ], + [ + 42.180832, + 37.29054199900003 + ], + [ + 41.663342, + 37.10290349899998 + ], + [ + 40.770821, + 37.11804999899999 + ], + [ + 40.226033, + 36.90137349899999 + ], + [ + 39.8555495, + 37.531011998 + ], + [ + 41.045006, + 37.71503049900002 + ], + [ + 40.995091, + 37.826863 + ], + [ + 41.25448, + 38.1395195 + ], + [ + 41.189474, + 38.31202699800002 + ], + [ + 41.38054999899998, + 38.492253498000025 + ], + [ + 41.506182, + 38.564977999 + ], + [ + 41.702295, + 38.246542998999985 + ], + [ + 42.76799349999999, + 37.91362949799998 + ], + [ + 42.9662085, + 37.762133 + ], + [ + 43.505390499999976, + 37.71352999800001 + ], + [ + 43.307242, + 37.43826649800002 + ], + [ + 43.424563, + 37.275334499999985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.3473725, + 54.860690998999985 + ], + [ + -1.2422295, + 54.72259499799998 + ], + [ + -1.261252, + 54.571902997999985 + ], + [ + -0.7909065, + 54.5594825 + ], + [ + -1.234791, + 54.51036849799999 + ], + [ + -1.434778, + 54.487514498999985 + ], + [ + -1.696865, + 54.536060501 + ], + [ + -2.1701665, + 54.458256 + ], + [ + -2.312043001, + 54.79108050000002 + ], + [ + -1.820951, + 54.90572750000001 + ], + [ + -1.559341501, + 54.88210299899998 + ], + [ + -1.3473725, + 54.860690998999985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.0498715, + 56.32188850099999 + ], + [ + 15.85154799899999, + 56.085102498000026 + ], + [ + 15.592694, + 56.211868998 + ], + [ + 15.348007, + 56.124922501000015 + ], + [ + 14.687203, + 56.167117 + ], + [ + 14.781868499999973, + 56.034379999 + ], + [ + 14.721438499999977, + 55.993557001 + ], + [ + 14.5463995, + 56.06131749999997 + ], + [ + 14.220109499999978, + 55.83045750000002 + ], + [ + 14.360844, + 55.55425949800002 + ], + [ + 14.194909, + 55.38403500099997 + ], + [ + 12.80983950000001, + 55.37825650000002 + ], + [ + 13.063593, + 55.670109497 + ], + [ + 12.445960500000012, + 56.302680001 + ], + [ + 12.783795, + 56.219567998 + ], + [ + 12.619629499999974, + 56.42242299899999 + ], + [ + 12.899313, + 56.4490045 + ], + [ + 13.462636499999974, + 56.42818850100002 + ], + [ + 14.514669500000025, + 56.46003699800002 + ], + [ + 15.363503499999979, + 56.48237599700002 + ], + [ + 15.58637349999998, + 56.48294 + ], + [ + 16.0498715, + 56.32188850099999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 14.295995, + 59.01277950100001 + ], + [ + 14.778936499, + 58.64599250100002 + ], + [ + 14.41671, + 58.187240497 + ], + [ + 13.772147, + 58.04856099699998 + ], + [ + 13.688058, + 57.558208501000024 + ], + [ + 13.100760499999978, + 57.145515499 + ], + [ + 13.681201, + 56.97211450100002 + ], + [ + 13.298661, + 56.82360450099998 + ], + [ + 13.462636499999974, + 56.42818850100002 + ], + [ + 12.899313, + 56.4490045 + ], + [ + 12.936727500000018, + 56.587077 + ], + [ + 11.913888, + 57.40103749799999 + ], + [ + 11.922900500000026, + 57.562223 + ], + [ + 11.990241500000025, + 57.721453500999985 + ], + [ + 11.6737205, + 57.84875499899999 + ], + [ + 11.84467728200002, + 58.16014767299998 + ], + [ + 11.406957, + 58.143874 + ], + [ + 11.702689, + 58.433648 + ], + [ + 11.220071499000028, + 58.40892949800002 + ], + [ + 11.3094795, + 58.479590496000014 + ], + [ + 11.256905, + 58.67768800099998 + ], + [ + 11.174135001000025, + 58.71829249799998 + ], + [ + 11.23903150000001, + 58.838971500000014 + ], + [ + 11.113543499, + 58.99826349799997 + ], + [ + 11.460827, + 58.988658499 + ], + [ + 11.632557, + 58.90830650100003 + ], + [ + 11.8261965, + 59.237849998 + ], + [ + 12.228614499, + 59.25669849899998 + ], + [ + 13.254575499999987, + 58.72561999800001 + ], + [ + 13.589992, + 59.059444499999984 + ], + [ + 14.295995, + 59.01277950100001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 17.489299500000016, + 62.13695049900002 + ], + [ + 17.3074195, + 61.85283999699999 + ], + [ + 17.402429499999982, + 61.7223975 + ], + [ + 17.037339499999973, + 61.574806497 + ], + [ + 17.070646, + 60.89967199900002 + ], + [ + 17.370218, + 60.654461500000025 + ], + [ + 17.192478, + 60.300712499999975 + ], + [ + 16.703831, + 60.195720498000014 + ], + [ + 15.801567, + 60.179103499 + ], + [ + 15.42209250000002, + 59.854747499999974 + ], + [ + 14.437155500000017, + 60.02616099699998 + ], + [ + 14.295995, + 59.01277950100001 + ], + [ + 13.589992, + 59.059444499999984 + ], + [ + 13.254575499999987, + 58.72561999800001 + ], + [ + 12.228614499, + 59.25669849899998 + ], + [ + 11.8261965, + 59.237849998 + ], + [ + 11.691129, + 59.58954749999998 + ], + [ + 11.93987850000002, + 59.69458099799999 + ], + [ + 11.926970499999982, + 59.79047599900002 + ], + [ + 11.839729, + 59.840767 + ], + [ + 12.499544999000022, + 60.09765699799999 + ], + [ + 12.606881499999986, + 60.51274249699998 + ], + [ + 12.22399, + 61.013078001 + ], + [ + 12.670176500000025, + 61.055976498 + ], + [ + 12.870847500000025, + 61.35649499800002 + ], + [ + 12.137665, + 61.72381699800002 + ], + [ + 12.29937, + 62.267494 + ], + [ + 12.8061755, + 62.21990599899999 + ], + [ + 13.558676, + 61.643413 + ], + [ + 14.4475615, + 61.59494800099998 + ], + [ + 14.685895, + 61.901668497 + ], + [ + 15.091695, + 61.817428499000016 + ], + [ + 15.4304505, + 62.14597249899998 + ], + [ + 15.3273395, + 62.272083501 + ], + [ + 17.489299500000016, + 62.13695049900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 19.286468, + 63.4697195 + ], + [ + 18.331517, + 63.05352650100002 + ], + [ + 18.55759150099999, + 62.96259650000002 + ], + [ + 18.0637, + 62.610071 + ], + [ + 17.4012075, + 62.54936049899999 + ], + [ + 17.392239500000017, + 62.32317900100003 + ], + [ + 17.6594715, + 62.2330035 + ], + [ + 17.489299500000016, + 62.13695049900002 + ], + [ + 15.3273395, + 62.272083501 + ], + [ + 15.4304505, + 62.14597249899998 + ], + [ + 15.091695, + 61.817428499000016 + ], + [ + 14.685895, + 61.901668497 + ], + [ + 14.4475615, + 61.59494800099998 + ], + [ + 13.558676, + 61.643413 + ], + [ + 12.8061755, + 62.21990599899999 + ], + [ + 12.29937, + 62.267494 + ], + [ + 12.2546595, + 62.33102449699999 + ], + [ + 12.056142, + 62.61191849900001 + ], + [ + 12.218231, + 63.00033250000001 + ], + [ + 12.0524555, + 63.1834445 + ], + [ + 11.974581, + 63.269228 + ], + [ + 12.149767, + 63.593946999000025 + ], + [ + 12.683565, + 63.9742235 + ], + [ + 13.967524500000025, + 64.00797 + ], + [ + 14.157109, + 64.195054497 + ], + [ + 14.113869500000021, + 64.462484501 + ], + [ + 13.654257500000028, + 64.58034049899999 + ], + [ + 14.325985, + 65.118916001 + ], + [ + 16.718954, + 64.027877999 + ], + [ + 17.261841, + 63.91410049699999 + ], + [ + 18.405653, + 63.9956625 + ], + [ + 19.286468, + 63.4697195 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 24.155129, + 65.816027 + ], + [ + 22.34076600100002, + 65.86896049900002 + ], + [ + 22.402720499, + 65.53735549700002 + ], + [ + 22.0356215, + 65.4648855 + ], + [ + 21.524723359, + 65.231805586 + ], + [ + 21.543604500000015, + 65.06305899799997 + ], + [ + 21.156021, + 64.81548450000003 + ], + [ + 21.605362500000012, + 64.433961 + ], + [ + 20.31427, + 63.674042500999974 + ], + [ + 19.8976955, + 63.61702299900003 + ], + [ + 19.68303899900002, + 63.434309000999974 + ], + [ + 19.286468, + 63.4697195 + ], + [ + 18.405653, + 63.9956625 + ], + [ + 17.261841, + 63.91410049699999 + ], + [ + 16.718954, + 64.027877999 + ], + [ + 14.325985, + 65.118916001 + ], + [ + 14.6254765, + 65.81180849999998 + ], + [ + 14.516289, + 66.132579 + ], + [ + 15.453994500000022, + 66.345233501 + ], + [ + 15.3772265, + 66.48430399699998 + ], + [ + 16.387759, + 67.04546249999999 + ], + [ + 16.15800150000001, + 67.51915900099999 + ], + [ + 17.281524, + 68.118815 + ], + [ + 17.89976150000001, + 67.969372 + ], + [ + 18.151354, + 68.19879 + ], + [ + 18.125925, + 68.53651599900002 + ], + [ + 19.921397, + 68.356013001 + ], + [ + 20.3358725, + 68.80231250000003 + ], + [ + 20.0600475, + 69.04575900100002 + ], + [ + 20.548636499999986, + 69.05996850100001 + ], + [ + 21.888943000999973, + 68.5843835 + ], + [ + 23.652348999000026, + 67.958793001 + ], + [ + 23.3940235, + 67.485820999 + ], + [ + 23.995160500999987, + 66.819708999 + ], + [ + 23.6455995, + 66.3014085 + ], + [ + 24.155129, + 65.816027 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.596805, + 46.47590249899997 + ], + [ + 16.242148499999985, + 46.49007549700002 + ], + [ + 16.301549, + 46.37828799699997 + ], + [ + 15.8768685, + 46.280055499000014 + ], + [ + 15.7914755, + 46.259327497000015 + ], + [ + 15.627262, + 46.08595349900003 + ], + [ + 15.70640450000002, + 45.97534299900002 + ], + [ + 15.404425, + 45.792716997000014 + ], + [ + 15.331290500000023, + 45.76285499900001 + ], + [ + 15.277050499999973, + 45.604461499000024 + ], + [ + 15.385532, + 45.48658049900001 + ], + [ + 15.226437499999975, + 45.42708799799999 + ], + [ + 14.570012500000018, + 45.672944497 + ], + [ + 14.11819650000001, + 45.48123899699999 + ], + [ + 14.0423715, + 45.76135899899998 + ], + [ + 14.129577499999982, + 45.86949899899997 + ], + [ + 14.564807499999972, + 45.79146199899998 + ], + [ + 14.948575, + 45.97861049699998 + ], + [ + 14.711757499999976, + 46.07792999899999 + ], + [ + 14.908764500000018, + 46.207565998 + ], + [ + 14.565212, + 46.367696998999975 + ], + [ + 14.5651755, + 46.37245349699998 + ], + [ + 14.6745805, + 46.450687500000015 + ], + [ + 15.065120499999978, + 46.65211249700002 + ], + [ + 15.40197949899999, + 46.65354849900001 + ], + [ + 15.649988, + 46.705757 + ], + [ + 15.786422, + 46.7074695 + ], + [ + 16.038086, + 46.65614549700001 + ], + [ + 15.996236, + 46.8353985 + ], + [ + 16.113849, + 46.86906799899998 + ], + [ + 16.3707935, + 46.722243499 + ], + [ + 16.596805, + 46.47590249899997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.851041001, + 56.97269799899999 + ], + [ + -2.425346, + 56.755187997 + ], + [ + -3.051892501, + 56.45849999799998 + ], + [ + -3.27144769, + 56.35318407300002 + ], + [ + -3.2769755, + 56.350532500999975 + ], + [ + -3.264612652999972, + 56.352858137 + ], + [ + -3.243498734000013, + 56.356829979999986 + ], + [ + -2.803087, + 56.43967799799998 + ], + [ + -2.620387, + 56.2611885 + ], + [ + -3.391451500000016, + 56.00593199799999 + ], + [ + -3.866839500000026, + 56.1206625 + ], + [ + -3.820153, + 56.09911750100002 + ], + [ + -3.515724, + 56.00225850099997 + ], + [ + -3.425330499999973, + 55.994030001 + ], + [ + -3.077645500000017, + 55.94689549899999 + ], + [ + -2.3666235, + 55.94611349899998 + ], + [ + -2.034329, + 55.811165 + ], + [ + -2.335961, + 55.63214499899999 + ], + [ + -2.165465499999982, + 55.46846750100002 + ], + [ + -2.689751, + 55.18906399799999 + ], + [ + -2.858508, + 55.10842499900002 + ], + [ + -3.507365, + 55.41234949699998 + ], + [ + -3.471619, + 55.77106849799998 + ], + [ + -3.7440075, + 55.782108498000014 + ], + [ + -3.822552, + 55.89659500099998 + ], + [ + -4.020121, + 56.028145000999984 + ], + [ + -4.1523815, + 56.008144500000014 + ], + [ + -4.47081, + 56.002395501000024 + ], + [ + -4.598209, + 56.08433899900001 + ], + [ + -4.854503500000021, + 56.37053299899998 + ], + [ + -4.53214250000002, + 56.795907999 + ], + [ + -3.8016275, + 56.936012498000025 + ], + [ + -3.372107500000027, + 56.874744497999984 + ], + [ + -2.851041001, + 56.97269799899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -4.598209, + 56.08433899900001 + ], + [ + -4.47081, + 56.002395501000024 + ], + [ + -4.1523815, + 56.008144500000014 + ], + [ + -4.020121, + 56.028145000999984 + ], + [ + -3.822552, + 55.89659500099998 + ], + [ + -3.7440075, + 55.782108498000014 + ], + [ + -3.471619, + 55.77106849799998 + ], + [ + -3.507365, + 55.41234949699998 + ], + [ + -2.858508, + 55.10842499900002 + ], + [ + -3.091623992999985, + 54.97554629199999 + ], + [ + -4.4054395, + 54.677509500999975 + ], + [ + -5.183450000999983, + 54.912364998999976 + ], + [ + -5.040228500000012, + 54.99772650099999 + ], + [ + -4.65827250000001, + 55.57028949900001 + ], + [ + -4.888966499999981, + 55.87478999699999 + ], + [ + -4.7651305, + 55.95777149999998 + ], + [ + -4.392671741000015, + 55.88981584200002 + ], + [ + -4.609648, + 55.94667449799999 + ], + [ + -4.828885, + 56.079009998 + ], + [ + -4.78744838099999, + 56.16945116599999 + ], + [ + -4.786687023000013, + 56.29480500300002 + ], + [ + -4.598209, + 56.08433899900001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.425346, + 56.755187997 + ], + [ + -2.851041001, + 56.97269799899999 + ], + [ + -3.372107500000027, + 56.874744497999984 + ], + [ + -3.8016275, + 56.936012498000025 + ], + [ + -2.649769, + 57.52970099800001 + ], + [ + -2.801509, + 57.6952475 + ], + [ + -1.78944, + 57.503555498000026 + ], + [ + -2.425346, + 56.755187997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + -3.771491500000025, + 57.867034999 + ], + [ + -4.4320525, + 57.49435400099998 + ], + [ + -2.801509, + 57.6952475 + ], + [ + -2.649769, + 57.52970099800001 + ], + [ + -3.8016275, + 56.936012498000025 + ], + [ + -4.53214250000002, + 56.795907999 + ], + [ + -4.854503500000021, + 56.37053299899998 + ], + [ + -4.786687023000013, + 56.29480500300002 + ], + [ + -4.78744838099999, + 56.16945116599999 + ], + [ + -4.828885, + 56.079009998 + ], + [ + -5.419614, + 55.896728498000016 + ], + [ + -5.520004500000027, + 55.36192299800001 + ], + [ + -5.799178, + 55.299698001000024 + ], + [ + -5.436028, + 55.85756299899998 + ], + [ + -5.666273499999988, + 55.800583001 + ], + [ + -5.487101000999985, + 56.256931501 + ], + [ + -5.654321, + 56.297649497 + ], + [ + -5.38434560799999, + 56.53174224000003 + ], + [ + -5.122688000999972, + 56.827274499 + ], + [ + -5.684919, + 56.4972955 + ], + [ + -6.226232, + 56.710991001000025 + ], + [ + -5.75170300100001, + 56.78216549799998 + ], + [ + -5.924258, + 56.89156349799998 + ], + [ + -5.72895, + 57.101478498 + ], + [ + -5.5094375, + 57.097774499000025 + ], + [ + -5.681389, + 57.1505305 + ], + [ + -5.670602562999989, + 57.208438753999985 + ], + [ + -6.017994, + 57.017947999 + ], + [ + -6.7897145, + 57.42120749899999 + ], + [ + -6.296708, + 57.70756149800002 + ], + [ + -6.146597000999975, + 57.57447449799997 + ], + [ + -6.130341, + 57.316936499 + ], + [ + -5.885413500000027, + 57.23816700100002 + ], + [ + -5.6476125, + 57.25529499800001 + ], + [ + -5.664395153999976, + 57.219288447 + ], + [ + -5.415392, + 57.230156 + ], + [ + -5.82202, + 57.36364749699999 + ], + [ + -5.8141635, + 57.858711 + ], + [ + -5.071033000999989, + 57.81991949799999 + ], + [ + -5.458675, + 58.07440949599999 + ], + [ + -5.0071175, + 58.625992000999986 + ], + [ + -3.024449, + 58.64426400100001 + ], + [ + -3.116977500000019, + 58.36858 + ], + [ + -4.400494, + 57.91898749799998 + ], + [ + -3.771491500000025, + 57.867034999 + ] + ] + ], + [ + [ + [ + -6.180591, + 58.467010500000015 + ], + [ + -6.344816, + 58.234204497 + ], + [ + -6.135358, + 58.259441498 + ], + [ + -6.967598, + 57.72789400099998 + ], + [ + -7.1331955, + 57.836654501 + ], + [ + -6.8160135, + 57.90083699899998 + ], + [ + -7.079999499999985, + 57.96723200100001 + ], + [ + -6.907952, + 58.049675001000026 + ], + [ + -7.10329500099999, + 58.07354750000002 + ], + [ + -7.027442, + 58.24435399700002 + ], + [ + -6.180591, + 58.467010500000015 + ] + ] + ], + [ + [ + [ + -1.155833500000028, + 60.33803549999999 + ], + [ + -1.277545, + 59.85259999800002 + ], + [ + -1.702932, + 60.255359499 + ], + [ + -1.339904500999978, + 60.359771497999986 + ], + [ + -1.632932, + 60.483162 + ], + [ + -1.499491319000015, + 60.54365987199998 + ], + [ + -1.304159, + 60.623996499999976 + ], + [ + -1.155833500000028, + 60.33803549999999 + ] + ] + ], + [ + [ + [ + -5.646332, + 56.440559501 + ], + [ + -6.385666501, + 56.288787997999975 + ], + [ + -6.323570501, + 56.606162998 + ], + [ + -5.646332, + 56.440559501 + ] + ] + ], + [ + [ + [ + -2.9119245, + 59.006061499 + ], + [ + -2.704751499999986, + 58.961914001000025 + ], + [ + -3.368161499999985, + 58.998829 + ], + [ + -2.9119245, + 59.006061499 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.3473725, + 54.860690998999985 + ], + [ + -1.559341501, + 54.88210299899998 + ], + [ + -1.820951, + 54.90572750000001 + ], + [ + -2.312043001, + 54.79108050000002 + ], + [ + -2.567809, + 54.8236425 + ], + [ + -2.4862965, + 55.08311849900002 + ], + [ + -2.689751, + 55.18906399799999 + ], + [ + -2.165465499999982, + 55.46846750100002 + ], + [ + -2.335961, + 55.63214499899999 + ], + [ + -2.034329, + 55.811165 + ], + [ + -1.838949500000012, + 55.642334 + ], + [ + -1.639348, + 55.578319497999985 + ], + [ + -1.461693, + 55.0743905 + ], + [ + -1.3639015, + 54.9441835 + ], + [ + -1.3473725, + 54.860690998999985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.312043001, + 54.79108050000002 + ], + [ + -2.1701665, + 54.458256 + ], + [ + -2.4608275, + 54.22676449800002 + ], + [ + -2.86947, + 54.17673849900001 + ], + [ + -3.149062, + 54.093601 + ], + [ + -3.174973, + 54.11490649900003 + ], + [ + -3.2049515, + 54.21513000099998 + ], + [ + -3.223693609, + 54.249058382999976 + ], + [ + -3.613598, + 54.52509699900003 + ], + [ + -3.3986365, + 54.869125499 + ], + [ + -3.11915, + 54.927886999 + ], + [ + -3.091623992999985, + 54.97554629199999 + ], + [ + -2.858508, + 55.10842499900002 + ], + [ + -2.689751, + 55.18906399799999 + ], + [ + -2.4862965, + 55.08311849900002 + ], + [ + -2.567809, + 54.8236425 + ], + [ + -2.312043001, + 54.79108050000002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.909583, + 53.53842149899998 + ], + [ + -1.9633505, + 53.50985349699999 + ], + [ + -2.0310235, + 53.370289001 + ], + [ + -2.240760500000022, + 53.35959999900001 + ], + [ + -2.313970499999982, + 53.35745250000002 + ], + [ + -2.426563499999986, + 53.38748949799998 + ], + [ + -2.489705500000014, + 53.460170498000025 + ], + [ + -2.576719, + 53.44608700100002 + ], + [ + -2.730499501, + 53.520629998 + ], + [ + -2.511298, + 53.62702950099998 + ], + [ + -2.379104, + 53.63090150099998 + ], + [ + -2.371208, + 53.667114501000015 + ], + [ + -2.146293001, + 53.682266 + ], + [ + -1.909583, + 53.53842149899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.046089, + 53.850178 + ], + [ + -2.06121, + 53.825671999 + ], + [ + -2.146293001, + 53.682266 + ], + [ + -2.371208, + 53.667114501000015 + ], + [ + -2.379104, + 53.63090150099998 + ], + [ + -2.511298, + 53.62702950099998 + ], + [ + -2.730499501, + 53.520629998 + ], + [ + -2.887978, + 53.50386049999997 + ], + [ + -3.046686500000021, + 53.54299149899998 + ], + [ + -2.956203, + 53.69752900100002 + ], + [ + -2.833743, + 53.722129999 + ], + [ + -3.057371499999988, + 53.776481499 + ], + [ + -3.047940499999982, + 53.87577449899999 + ], + [ + -2.86947, + 54.17673849900001 + ], + [ + -2.4608275, + 54.22676449800002 + ], + [ + -2.469517, + 54.04625699799999 + ], + [ + -2.1844825, + 53.95230499899998 + ], + [ + -2.046089, + 53.850178 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.426563499999986, + 53.38748949799998 + ], + [ + -2.313970499999982, + 53.35745250000002 + ], + [ + -2.240760500000022, + 53.35959999900001 + ], + [ + -2.0310235, + 53.370289001 + ], + [ + -1.987376, + 53.213608 + ], + [ + -2.380768, + 52.99842849999999 + ], + [ + -2.69927450099999, + 52.995460501000025 + ], + [ + -2.726823500000023, + 52.9832955 + ], + [ + -3.084193, + 53.256122498000025 + ], + [ + -3.110706, + 53.296317999 + ], + [ + -2.928556500000013, + 53.308277 + ], + [ + -2.7524115, + 53.3147545 + ], + [ + -2.675166499999989, + 53.35448450000001 + ], + [ + -2.693358, + 53.361835498 + ], + [ + -2.576719, + 53.44608700100002 + ], + [ + -2.489705500000014, + 53.460170498000025 + ], + [ + -2.426563499999986, + 53.38748949799998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + -3.046686500000021, + 53.54299149899998 + ], + [ + -2.887978, + 53.50386049999997 + ], + [ + -2.730499501, + 53.520629998 + ], + [ + -2.576719, + 53.44608700100002 + ], + [ + -2.693358, + 53.361835498 + ], + [ + -2.826677, + 53.331672501000014 + ], + [ + -3.008742, + 53.43841149899998 + ], + [ + -3.1054585, + 53.551548001000015 + ], + [ + -2.956203, + 53.69752900100002 + ], + [ + -3.046686500000021, + 53.54299149899998 + ] + ] + ], + [ + [ + [ + -2.928556500000013, + 53.308277 + ], + [ + -3.110706, + 53.296317999 + ], + [ + -3.200367501000017, + 53.387527499999976 + ], + [ + -2.928556500000013, + 53.308277 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.017378, + 53.525367501 + ], + [ + -0.738485500000024, + 53.51986699899999 + ], + [ + -0.741809832, + 53.516955832 + ], + [ + -0.7974175, + 53.455085998000015 + ], + [ + -0.935518, + 53.50252149900001 + ], + [ + -0.8652705, + 53.637733500000024 + ], + [ + -1.0486, + 53.65608199899998 + ], + [ + -0.905781499999989, + 53.72576150100002 + ], + [ + -0.911604, + 53.7284125 + ], + [ + -0.9234475, + 53.880794501000025 + ], + [ + -0.925222, + 53.991550501 + ], + [ + -0.2124495, + 54.15762700099998 + ], + [ + 0.141740261999985, + 53.61067700699999 + ], + [ + -0.250096, + 53.733318500999985 + ], + [ + -0.419136501000025, + 53.719619997 + ], + [ + -0.698366, + 53.68465399899998 + ], + [ + -0.722945813000024, + 53.611722574 + ], + [ + -0.7450505, + 53.57120149899998 + ], + [ + -0.739235033, + 53.52388799 + ], + [ + -0.720730575, + 53.61118798299998 + ], + [ + -0.295713499999977, + 53.713866999 + ], + [ + 0.017378, + 53.525367501 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.2124495, + 54.15762700099998 + ], + [ + -0.925222, + 53.991550501 + ], + [ + -0.9234475, + 53.880794501000025 + ], + [ + -0.911604, + 53.7284125 + ], + [ + -0.905781499999989, + 53.72576150100002 + ], + [ + -1.0486, + 53.65608199899998 + ], + [ + -1.232786499999975, + 53.62113950000003 + ], + [ + -1.3019855, + 53.7417565 + ], + [ + -1.294119, + 53.9270975 + ], + [ + -1.72716650000001, + 53.910236499 + ], + [ + -2.046089, + 53.850178 + ], + [ + -2.1844825, + 53.95230499899998 + ], + [ + -2.469517, + 54.04625699799999 + ], + [ + -2.4608275, + 54.22676449800002 + ], + [ + -2.1701665, + 54.458256 + ], + [ + -1.696865, + 54.536060501 + ], + [ + -1.434778, + 54.487514498999985 + ], + [ + -1.234791, + 54.51036849799999 + ], + [ + -0.7909065, + 54.5594825 + ], + [ + -0.2124495, + 54.15762700099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.935518, + 53.50252149900001 + ], + [ + -1.199686499999984, + 53.311454997 + ], + [ + -1.324675, + 53.328853498 + ], + [ + -1.599034500000016, + 53.311401498 + ], + [ + -1.801430499999981, + 53.481018001 + ], + [ + -1.822188499999982, + 53.52111799800002 + ], + [ + -1.586403500000017, + 53.60720449799999 + ], + [ + -1.232786499999975, + 53.62113950000003 + ], + [ + -1.0486, + 53.65608199899998 + ], + [ + -0.8652705, + 53.637733500000024 + ], + [ + -0.935518, + 53.50252149900001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.232786499999975, + 53.62113950000003 + ], + [ + -1.586403500000017, + 53.60720449799999 + ], + [ + -1.822188499999982, + 53.52111799800002 + ], + [ + -1.909583, + 53.53842149899998 + ], + [ + -2.146293001, + 53.682266 + ], + [ + -2.06121, + 53.825671999 + ], + [ + -2.046089, + 53.850178 + ], + [ + -1.72716650000001, + 53.910236499 + ], + [ + -1.294119, + 53.9270975 + ], + [ + -1.3019855, + 53.7417565 + ], + [ + -1.232786499999975, + 53.62113950000003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.822188499999982, + 53.52111799800002 + ], + [ + -1.801430499999981, + 53.481018001 + ], + [ + -1.599034500000016, + 53.311401498 + ], + [ + -1.324675, + 53.328853498 + ], + [ + -1.199686499999984, + 53.311454997 + ], + [ + -0.935518, + 53.50252149900001 + ], + [ + -0.7974175, + 53.455085998000015 + ], + [ + -0.778224500000022, + 52.976932498999986 + ], + [ + -0.819968500000016, + 52.96047199899999 + ], + [ + -1.267846, + 52.87337899800002 + ], + [ + -1.597507, + 52.70043199899999 + ], + [ + -1.987376, + 53.213608 + ], + [ + -2.0310235, + 53.370289001 + ], + [ + -1.9633505, + 53.50985349699999 + ], + [ + -1.909583, + 53.53842149899998 + ], + [ + -1.822188499999982, + 53.52111799800002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.871292499999981, + 52.0402525 + ], + [ + -1.118058, + 52.01542649800001 + ], + [ + -1.331868499999985, + 52.168487500000026 + ], + [ + -1.20158, + 52.396735998999986 + ], + [ + -1.589611, + 52.68727099900002 + ], + [ + -1.597507, + 52.70043199899999 + ], + [ + -1.267846, + 52.87337899800002 + ], + [ + -0.819968500000016, + 52.96047199899999 + ], + [ + -0.778224500000022, + 52.976932498999986 + ], + [ + -0.4948475, + 52.64027975099998 + ], + [ + -0.41533, + 52.578746997 + ], + [ + -0.341543, + 52.46694549900002 + ], + [ + -0.465321500000016, + 52.32295600100002 + ], + [ + -0.668097, + 52.195033998999975 + ], + [ + -0.70541750000001, + 52.191570497999976 + ], + [ + -0.871292499999981, + 52.0402525 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.26596, + 52.81011600099998 + ], + [ + 0.171689, + 52.73803699899997 + ], + [ + -0.031214, + 52.66153699900002 + ], + [ + -0.4948475, + 52.64027975099998 + ], + [ + -0.778224500000022, + 52.976932498999986 + ], + [ + -0.7974175, + 53.455085998000015 + ], + [ + -0.741809832, + 53.516955832 + ], + [ + -0.738485500000024, + 53.51986699899999 + ], + [ + 0.017378, + 53.525367501 + ], + [ + 0.355712, + 53.192062498999974 + ], + [ + 0.043715500000019, + 52.903881 + ], + [ + 0.26596, + 52.81011600099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.331868499999985, + 52.168487500000026 + ], + [ + -1.6657325, + 51.987491498 + ], + [ + -1.76762700099999, + 52.11259449900001 + ], + [ + -2.351362, + 52.02136599900001 + ], + [ + -2.6502135, + 51.82615299899999 + ], + [ + -3.067357500000014, + 51.98315050100001 + ], + [ + -3.1419115, + 52.127876499000024 + ], + [ + -2.954719, + 52.34925850000002 + ], + [ + -2.618022, + 52.30696499800001 + ], + [ + -2.287363, + 52.455325999000024 + ], + [ + -2.164830000999984, + 52.430213998 + ], + [ + -2.016967500000021, + 52.43268949899999 + ], + [ + -1.8687215, + 52.404742999 + ], + [ + -1.87201, + 52.36760349799999 + ], + [ + -1.601023, + 52.38932399700002 + ], + [ + -1.4241525, + 52.43407449900002 + ], + [ + -1.5954575, + 52.455924998 + ], + [ + -1.753495, + 52.512973999 + ], + [ + -1.788053, + 52.587871499000016 + ], + [ + -1.589611, + 52.68727099900002 + ], + [ + -1.20158, + 52.396735998999986 + ], + [ + -1.331868499999985, + 52.168487500000026 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.597507, + 52.70043199899999 + ], + [ + -1.589611, + 52.68727099900002 + ], + [ + -1.788053, + 52.587871499000016 + ], + [ + -1.872537500000021, + 52.584953498 + ], + [ + -2.050694001000011, + 52.62053300100001 + ], + [ + -2.1334655, + 52.55407699900002 + ], + [ + -2.164830000999984, + 52.430213998 + ], + [ + -2.287363, + 52.455325999000024 + ], + [ + -2.618022, + 52.30696499800001 + ], + [ + -2.954719, + 52.34925850000002 + ], + [ + -3.235562, + 52.44255049899999 + ], + [ + -3.14748, + 52.89015599800001 + ], + [ + -2.726823500000023, + 52.9832955 + ], + [ + -2.69927450099999, + 52.995460501000025 + ], + [ + -2.380768, + 52.99842849999999 + ], + [ + -1.987376, + 53.213608 + ], + [ + -1.597507, + 52.70043199899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.788053, + 52.587871499000016 + ], + [ + -1.753495, + 52.512973999 + ], + [ + -1.5954575, + 52.455924998 + ], + [ + -1.4241525, + 52.43407449900002 + ], + [ + -1.601023, + 52.38932399700002 + ], + [ + -1.87201, + 52.36760349799999 + ], + [ + -1.8687215, + 52.404742999 + ], + [ + -2.016967500000021, + 52.43268949899999 + ], + [ + -2.164830000999984, + 52.430213998 + ], + [ + -2.1334655, + 52.55407699900002 + ], + [ + -2.050694001000011, + 52.62053300100001 + ], + [ + -1.872537500000021, + 52.584953498 + ], + [ + -1.788053, + 52.587871499000016 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 1.756430500000022, + 52.47172549800001 + ], + [ + 1.391530358000011, + 51.98931597 + ], + [ + 1.05638, + 51.95149249799999 + ], + [ + 0.705025499999977, + 52.06266800100002 + ], + [ + 0.404686500000025, + 52.065498499 + ], + [ + 0.389743, + 52.03646450100001 + ], + [ + 0.068169, + 52.005786999 + ], + [ + -0.157241000999989, + 52.08054749799999 + ], + [ + -0.249742, + 52.184372000999986 + ], + [ + -0.465321500000016, + 52.32295600100002 + ], + [ + -0.341543, + 52.46694549900002 + ], + [ + -0.41533, + 52.578746997 + ], + [ + -0.4948475, + 52.64027975099998 + ], + [ + -0.031214, + 52.66153699900002 + ], + [ + 0.171689, + 52.73803699899997 + ], + [ + 0.26596, + 52.81011600099998 + ], + [ + 0.695918, + 52.98762899799999 + ], + [ + 1.675478, + 52.74269099899999 + ], + [ + 1.7405435, + 52.53210050000001 + ], + [ + 1.756430500000022, + 52.47172549800001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.068169, + 52.005786999 + ], + [ + -0.011878500000023, + 51.6808775 + ], + [ + -0.18204750000001, + 51.668601997 + ], + [ + -0.304423, + 51.636348499 + ], + [ + -0.5005615, + 51.599689497999975 + ], + [ + -0.745649501, + 51.842094498999984 + ], + [ + -0.553598, + 51.8267095 + ], + [ + -0.652946499999985, + 51.96923050100003 + ], + [ + -0.5917725, + 52.110691 + ], + [ + -0.668097, + 52.195033998999975 + ], + [ + -0.465321500000016, + 52.32295600100002 + ], + [ + -0.249742, + 52.184372000999986 + ], + [ + -0.157241000999989, + 52.08054749799999 + ], + [ + 0.068169, + 52.005786999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 1.05638, + 51.95149249799999 + ], + [ + 1.2919645, + 51.870651 + ], + [ + 0.844628, + 51.781318499 + ], + [ + 0.71307, + 51.71509150000003 + ], + [ + 0.756304, + 51.691742 + ], + [ + 0.9458965, + 51.716212998 + ], + [ + 0.776491998999973, + 51.63602449899997 + ], + [ + 0.76434071599999, + 51.63674747499999 + ], + [ + 0.85409737399999, + 51.601599641 + ], + [ + 0.958179500000028, + 51.61969 + ], + [ + 0.821244, + 51.540714498 + ], + [ + 0.626791, + 51.53217299900001 + ], + [ + 0.51370350000002, + 51.531184998000015 + ], + [ + 0.40186059199999, + 51.45663058500003 + ], + [ + 0.379662895000024, + 51.457289678999985 + ], + [ + 0.217437, + 51.480072 + ], + [ + 0.210514, + 51.490035998999986 + ], + [ + 0.313079500000015, + 51.565814999 + ], + [ + 0.200354, + 51.62493149900001 + ], + [ + 0.138225499999976, + 51.623543 + ], + [ + -0.012219500000015, + 51.646228998000026 + ], + [ + -0.011878500000023, + 51.6808775 + ], + [ + 0.068169, + 52.005786999 + ], + [ + 0.389743, + 52.03646450100001 + ], + [ + 0.404686500000025, + 52.065498499 + ], + [ + 0.705025499999977, + 52.06266800100002 + ], + [ + 1.05638, + 51.95149249799999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.079542452999988, + 51.507740223999974 + ], + [ + -0.079878638000025, + 51.50059630700002 + ], + [ + -0.108863, + 51.50844949899999 + ], + [ + -0.128365499999973, + 51.48505799899999 + ], + [ + -0.140344, + 51.41924649700002 + ], + [ + -0.253975500000024, + 51.437237 + ], + [ + -0.222829, + 51.47181699700002 + ], + [ + -0.244502, + 51.48870099800001 + ], + [ + -0.253024, + 51.5014 + ], + [ + -0.246334499999989, + 51.53279899900002 + ], + [ + -0.215968, + 51.527927498999986 + ], + [ + -0.191422, + 51.53628899900002 + ], + [ + -0.213401001000022, + 51.55514899899998 + ], + [ + -0.171223, + 51.57242950099999 + ], + [ + -0.085154, + 51.520332499 + ], + [ + -0.078408, + 51.521507500999974 + ], + [ + -0.079542452999988, + 51.507740223999974 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.068394, + 51.544414501 + ], + [ + 0.09699949899999, + 51.515670999 + ], + [ + 0.073823467000011, + 51.50462927699999 + ], + [ + 0.048330898000017, + 51.49852184000002 + ], + [ + -0.024711500000024, + 51.48564900100001 + ], + [ + 0.028960499999982, + 51.441623499 + ], + [ + -0.078261, + 51.4205055 + ], + [ + -0.078611501000012, + 51.41982249900002 + ], + [ + -0.127744, + 51.41231549899999 + ], + [ + -0.140344, + 51.41924649700002 + ], + [ + -0.128365499999973, + 51.48505799899999 + ], + [ + -0.108863, + 51.50844949899999 + ], + [ + -0.079878638000025, + 51.50059630700002 + ], + [ + -0.079542452999988, + 51.507740223999974 + ], + [ + -0.078408, + 51.521507500999974 + ], + [ + -0.085154, + 51.520332499 + ], + [ + -0.171223, + 51.57242950099999 + ], + [ + -0.138722499999972, + 51.610191498 + ], + [ + -0.0413825, + 51.60563649900001 + ], + [ + -0.061119, + 51.577785499000015 + ], + [ + 0.068394, + 51.544414501 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.210514, + 51.490035998999986 + ], + [ + 0.217437, + 51.480072 + ], + [ + 0.152974, + 51.40870299900001 + ], + [ + 0.148871, + 51.4085045 + ], + [ + 0.028960499999982, + 51.441623499 + ], + [ + -0.024711500000024, + 51.48564900100001 + ], + [ + 0.048330898000017, + 51.49852184000002 + ], + [ + 0.073823467000011, + 51.50462927699999 + ], + [ + 0.09699949899999, + 51.515670999 + ], + [ + 0.068394, + 51.544414501 + ], + [ + -0.061119, + 51.577785499000015 + ], + [ + -0.0413825, + 51.60563649900001 + ], + [ + -0.138722499999972, + 51.610191498 + ], + [ + -0.18204750000001, + 51.668601997 + ], + [ + -0.011878500000023, + 51.6808775 + ], + [ + -0.012219500000015, + 51.646228998000026 + ], + [ + 0.138225499999976, + 51.623543 + ], + [ + 0.200354, + 51.62493149900001 + ], + [ + 0.313079500000015, + 51.565814999 + ], + [ + 0.210514, + 51.490035998999986 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.148871, + 51.4085045 + ], + [ + 0.042433500000016, + 51.292667498000014 + ], + [ + 0.002330500000028, + 51.329132 + ], + [ + -0.156508, + 51.3215065 + ], + [ + -0.330622, + 51.32900600099998 + ], + [ + -0.317662, + 51.393665499 + ], + [ + -0.253975500000024, + 51.437237 + ], + [ + -0.140344, + 51.41924649700002 + ], + [ + -0.127744, + 51.41231549899999 + ], + [ + -0.078611501000012, + 51.41982249900002 + ], + [ + -0.078261, + 51.4205055 + ], + [ + 0.028960499999982, + 51.441623499 + ], + [ + 0.148871, + 51.4085045 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.138722499999972, + 51.610191498 + ], + [ + -0.171223, + 51.57242950099999 + ], + [ + -0.213401001000022, + 51.55514899899998 + ], + [ + -0.191422, + 51.53628899900002 + ], + [ + -0.215968, + 51.527927498999986 + ], + [ + -0.246334499999989, + 51.53279899900002 + ], + [ + -0.253024, + 51.5014 + ], + [ + -0.244502, + 51.48870099800001 + ], + [ + -0.222829, + 51.47181699700002 + ], + [ + -0.253975500000024, + 51.437237 + ], + [ + -0.317662, + 51.393665499 + ], + [ + -0.458605499999976, + 51.456314 + ], + [ + -0.509666501000027, + 51.46917350000001 + ], + [ + -0.489989499999979, + 51.494747 + ], + [ + -0.5005615, + 51.599689497999975 + ], + [ + -0.304423, + 51.636348499 + ], + [ + -0.18204750000001, + 51.668601997 + ], + [ + -0.138722499999972, + 51.610191498 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.5005615, + 51.599689497999975 + ], + [ + -0.489989499999979, + 51.494747 + ], + [ + -0.509666501000027, + 51.46917350000001 + ], + [ + -0.775435500000015, + 51.331954997000025 + ], + [ + -1.429674499999976, + 51.336532499999976 + ], + [ + -1.49828, + 51.329376 + ], + [ + -1.584689500000025, + 51.52491399899998 + ], + [ + -1.602793500000018, + 51.518295498999976 + ], + [ + -1.6830405, + 51.69011299700003 + ], + [ + -1.6657325, + 51.987491498 + ], + [ + -1.331868499999985, + 52.168487500000026 + ], + [ + -1.118058, + 52.01542649800001 + ], + [ + -0.871292499999981, + 52.0402525 + ], + [ + -0.70541750000001, + 52.191570497999976 + ], + [ + -0.668097, + 52.195033998999975 + ], + [ + -0.5917725, + 52.110691 + ], + [ + -0.652946499999985, + 51.96923050100003 + ], + [ + -0.553598, + 51.8267095 + ], + [ + -0.745649501, + 51.842094498999984 + ], + [ + -0.5005615, + 51.599689497999975 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.317662, + 51.393665499 + ], + [ + -0.330622, + 51.32900600099998 + ], + [ + -0.156508, + 51.3215065 + ], + [ + 0.002330500000028, + 51.329132 + ], + [ + 0.042433500000016, + 51.292667498000014 + ], + [ + 0.0500535, + 51.142643 + ], + [ + 0.605435, + 51.01205850000002 + ], + [ + 0.779000999, + 50.989479 + ], + [ + 0.854784, + 50.92370999899998 + ], + [ + -0.03817650000002, + 50.799503499000025 + ], + [ + -0.216009, + 50.82756399700003 + ], + [ + -0.932831, + 50.843151 + ], + [ + -0.938582, + 50.873718499 + ], + [ + -0.753453499999978, + 51.08645249900002 + ], + [ + -0.8488835, + 51.2107125 + ], + [ + -0.775435500000015, + 51.331954997000025 + ], + [ + -0.509666501000027, + 51.46917350000001 + ], + [ + -0.458605499999976, + 51.456314 + ], + [ + -0.317662, + 51.393665499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + -0.753453499999978, + 51.08645249900002 + ], + [ + -0.938582, + 50.873718499 + ], + [ + -0.932831, + 50.843151 + ], + [ + -1.021779507000019, + 50.835727013 + ], + [ + -1.116579, + 50.842498998 + ], + [ + -1.3651595, + 50.88006949700002 + ], + [ + -1.4770375, + 50.923957997 + ], + [ + -1.306856, + 50.81985449899997 + ], + [ + -1.6920495, + 50.73662549800002 + ], + [ + -1.956807, + 50.98982999899999 + ], + [ + -1.6233815, + 50.954635500999984 + ], + [ + -1.49828, + 51.329376 + ], + [ + -1.429674499999976, + 51.336532499999976 + ], + [ + -0.775435500000015, + 51.331954997000025 + ], + [ + -0.8488835, + 51.2107125 + ], + [ + -0.753453499999978, + 51.08645249900002 + ] + ] + ], + [ + [ + [ + -1.069896, + 50.683647001 + ], + [ + -1.303737500000011, + 50.576045997999984 + ], + [ + -1.586375, + 50.66316599700002 + ], + [ + -1.292164500000013, + 50.75799949899999 + ], + [ + -1.069896, + 50.683647001 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.379662895000024, + 51.457289678999985 + ], + [ + 0.40186059199999, + 51.45663058500003 + ], + [ + 0.458900500000027, + 51.45493699899998 + ], + [ + 0.720437, + 51.45972799899999 + ], + [ + 0.539261022, + 51.407019827 + ], + [ + 0.6268945, + 51.37521 + ], + [ + 0.951056, + 51.373244999 + ], + [ + 0.950297499999976, + 51.345749 + ], + [ + 1.4497465, + 51.37717799799998 + ], + [ + 1.3796385, + 51.1421585 + ], + [ + 0.854784, + 50.92370999899998 + ], + [ + 0.779000999, + 50.989479 + ], + [ + 0.605435, + 51.01205850000002 + ], + [ + 0.0500535, + 51.142643 + ], + [ + 0.042433500000016, + 51.292667498000014 + ], + [ + 0.148871, + 51.4085045 + ], + [ + 0.152974, + 51.40870299900001 + ], + [ + 0.217437, + 51.480072 + ], + [ + 0.379662895000024, + 51.457289678999985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.6657325, + 51.987491498 + ], + [ + -1.6830405, + 51.69011299700003 + ], + [ + -1.602793500000018, + 51.518295498999976 + ], + [ + -1.584689500000025, + 51.52491399899998 + ], + [ + -1.49828, + 51.329376 + ], + [ + -1.6233815, + 50.954635500999984 + ], + [ + -1.956807, + 50.98982999899999 + ], + [ + -2.325841500000024, + 51.0796775 + ], + [ + -2.289077, + 51.32527550100002 + ], + [ + -2.992948, + 51.32031999899999 + ], + [ + -2.679612, + 51.480212999 + ], + [ + -2.674005500000021, + 51.544273498999985 + ], + [ + -2.534737, + 51.67724599899998 + ], + [ + -2.66065692, + 51.627663196000015 + ], + [ + -2.6502135, + 51.82615299899999 + ], + [ + -2.351362, + 52.02136599900001 + ], + [ + -1.76762700099999, + 52.11259449900001 + ], + [ + -1.6657325, + 51.987491498 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.956807, + 50.98982999899999 + ], + [ + -1.6920495, + 50.73662549800002 + ], + [ + -1.7407255, + 50.7215385 + ], + [ + -2.0406, + 50.71996299900002 + ], + [ + -1.953566001000013, + 50.594131499000014 + ], + [ + -2.947815000999981, + 50.71830750100003 + ], + [ + -2.954316, + 50.82117449899999 + ], + [ + -3.834736, + 51.141384 + ], + [ + -3.7207785, + 51.233093499 + ], + [ + -2.992948, + 51.32031999899999 + ], + [ + -2.289077, + 51.32527550100002 + ], + [ + -2.325841500000024, + 51.0796775 + ], + [ + -1.956807, + 50.98982999899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -4.235094221, + 50.46025278500002 + ], + [ + -4.20370002300001, + 50.398256189999984 + ], + [ + -4.177532638, + 50.36402146900002 + ], + [ + -4.76328, + 50.326236498000014 + ], + [ + -5.185075499999982, + 49.96316549699998 + ], + [ + -5.479827, + 50.126014499 + ], + [ + -4.545959499999981, + 50.92835249900003 + ], + [ + -4.235094221, + 50.46025278500002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.947815000999981, + 50.71830750100003 + ], + [ + -3.5090305, + 50.51651400100002 + ], + [ + -3.507436, + 50.378989999 + ], + [ + -3.723704, + 50.201519 + ], + [ + -4.1231325, + 50.346740497999974 + ], + [ + -4.177532638, + 50.36402146900002 + ], + [ + -4.20370002300001, + 50.398256189999984 + ], + [ + -4.235094221, + 50.46025278500002 + ], + [ + -4.545959499999981, + 50.92835249900003 + ], + [ + -4.139783841, + 51.077219300000024 + ], + [ + -4.200037001, + 51.200939 + ], + [ + -3.7207785, + 51.233093499 + ], + [ + -3.834736, + 51.141384 + ], + [ + -2.954316, + 50.82117449899999 + ], + [ + -2.947815000999981, + 50.71830750100003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -3.6378555, + 51.469840998 + ], + [ + -3.88623, + 51.617385997999975 + ], + [ + -4.307776, + 51.610301999 + ], + [ + -4.05255, + 51.703281498000024 + ], + [ + -4.929975500000012, + 51.59847650099999 + ], + [ + -5.3202485, + 51.86160299900001 + ], + [ + -4.207504501000017, + 52.26382049799997 + ], + [ + -3.9310135, + 52.553612 + ], + [ + -4.128679, + 52.61278149999998 + ], + [ + -4.058637499999975, + 52.920723001 + ], + [ + -4.767578500000013, + 52.79496 + ], + [ + -4.216110416999982, + 53.19851737099998 + ], + [ + -4.69663, + 53.30674349899999 + ], + [ + -4.040188, + 53.31065349900001 + ], + [ + -4.196792116999973, + 53.21081699400003 + ], + [ + -4.007376, + 53.24692899899998 + ], + [ + -3.363392499999975, + 53.352028 + ], + [ + -3.0902865, + 52.971641498999986 + ], + [ + -3.375009499999976, + 52.89247499800001 + ], + [ + -3.48307, + 52.86553949900002 + ], + [ + -3.926611, + 52.560783499000024 + ], + [ + -3.658389, + 52.34775899700003 + ], + [ + -3.647133, + 52.038799497000014 + ], + [ + -3.80665, + 51.78792949899997 + ], + [ + -3.591288500000019, + 51.75461949800001 + ], + [ + -3.334463, + 51.79040899900002 + ], + [ + -3.157343500000025, + 51.816058999 + ], + [ + -2.958938, + 51.62874999899998 + ], + [ + -3.118871500000012, + 51.545707499 + ], + [ + -3.237515, + 51.55262749899998 + ], + [ + -3.497506499999986, + 51.51264549699999 + ], + [ + -3.6378555, + 51.469840998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -3.084193, + 53.256122498000025 + ], + [ + -2.726823500000023, + 52.9832955 + ], + [ + -3.14748, + 52.89015599800001 + ], + [ + -3.235562, + 52.44255049899999 + ], + [ + -2.954719, + 52.34925850000002 + ], + [ + -3.1419115, + 52.127876499000024 + ], + [ + -3.067357500000014, + 51.98315050100001 + ], + [ + -2.6502135, + 51.82615299899999 + ], + [ + -2.66065692, + 51.627663196000015 + ], + [ + -3.082688, + 51.501907499000026 + ], + [ + -3.6378555, + 51.469840998 + ], + [ + -3.497506499999986, + 51.51264549699999 + ], + [ + -3.237515, + 51.55262749899998 + ], + [ + -3.118871500000012, + 51.545707499 + ], + [ + -2.958938, + 51.62874999899998 + ], + [ + -3.157343500000025, + 51.816058999 + ], + [ + -3.334463, + 51.79040899900002 + ], + [ + -3.591288500000019, + 51.75461949800001 + ], + [ + -3.80665, + 51.78792949899997 + ], + [ + -3.647133, + 52.038799497000014 + ], + [ + -3.658389, + 52.34775899700003 + ], + [ + -3.926611, + 52.560783499000024 + ], + [ + -3.48307, + 52.86553949900002 + ], + [ + -3.375009499999976, + 52.89247499800001 + ], + [ + -3.0902865, + 52.971641498999986 + ], + [ + -3.363392499999975, + 53.352028 + ], + [ + -3.084193, + 53.256122498000025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -6.2680155, + 54.102337 + ], + [ + -6.623778500000014, + 54.03654849700001 + ], + [ + -7.0286355, + 54.42130649799998 + ], + [ + -7.565956, + 54.126514499 + ], + [ + -8.177718, + 54.464973500999974 + ], + [ + -7.703411501, + 54.60828799900003 + ], + [ + -7.921372, + 54.69654449900003 + ], + [ + -7.534506, + 54.74713900099999 + ], + [ + -7.256068500000026, + 55.067034998 + ], + [ + -7.099074804999987, + 55.10080792000002 + ], + [ + -6.455277, + 55.2393035 + ], + [ + -5.976527499999975, + 55.056598501 + ], + [ + -5.992633500000011, + 54.989261999 + ], + [ + -5.721779, + 54.772852496999974 + ], + [ + -5.720909001, + 54.77263649899999 + ], + [ + -5.691673, + 54.80959299900002 + ], + [ + -5.690664001000016, + 54.769462497 + ], + [ + -5.912931500000013, + 54.648036998 + ], + [ + -5.855336, + 54.63377 + ], + [ + -5.575003, + 54.67019650100002 + ], + [ + -5.432802, + 54.48764399800001 + ], + [ + -5.499689499999988, + 54.338054499 + ], + [ + -5.874409, + 54.184848500999976 + ], + [ + -6.2680155, + 54.102337 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + } + ], + "type": "FeatureCollection" + }, + "hover_style": {}, + "layers": [], + "name": "", + "options": [], + "pane": "", + "point_style": {}, + "popup": null, + "popup_max_height": null, + "popup_max_width": 300, + "popup_min_width": 50, + "style": {}, + "subitems": [], + "visible": true + } + }, + "3503ace4225449f6b0008cd826d9de84": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.9.4", + "model_name": "VuetifyTemplateModel", + "state": { + "_component_instances": [], + "_dom_classes": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.9.4", + "_model_name": "VuetifyTemplateModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.9.4", + "_view_name": "VuetifyView", + "components": null, + "css": null, + "data": null, + "events": [], + "layout": "IPY_MODEL_a657aae34ccc40839a049a648f83fa50", + "methods": null, + "tabbable": null, + "template": "\n\n\n\n ", + "tooltip": null + } + }, + "35c419defd4e4b45ab24dcbec3b1481f": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SheetModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SheetModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [ + "IPY_MODEL_44b4496a95d54557818433deeb72c0e3" + ], + "class_": "d-flex ma-0", + "color": null, + "dark": null, + "elevation": 0.0, + "height": null, + "layout": null, + "light": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "slot": null, + "style_": "flex-direction: column; align-items: stretch; row-gap: 12px;isolation:isolate;;", + "tabbable": null, + "tag": null, + "tile": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "width": null + } + }, + "3a6766c6bca542608fc8a6121b645a80": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.9.4", + "model_name": "VuetifyTemplateModel", + "state": { + "_component_instances": [], + "_dom_classes": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.9.4", + "_model_name": "VuetifyTemplateModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.9.4", + "_view_name": "VuetifyView", + "components": null, + "css": null, + "data": null, + "events": [], + "layout": "IPY_MODEL_333c8bf5dd37498c9eb3b853fdc5e724", + "methods": null, + "tabbable": null, + "template": "\n\n\n\n \n\n ", + "tooltip": null + } + }, + "3ba8dac31dcf48bf83823b93f32636ed": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "CheckboxModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "CheckboxModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "append_icon": null, + "attributes": {}, + "background_color": null, + "children": [ + "export_data" + ], + "class_": null, + "color": null, + "dark": null, + "dense": null, + "disabled": false, + "error": null, + "error_count": null, + "error_messages": null, + "false_value": null, + "height": null, + "hide_details": null, + "hint": null, + "id": null, + "indeterminate": null, + "indeterminate_icon": null, + "input_value": null, + "label": "export_data", + "layout": null, + "light": null, + "loading": null, + "messages": null, + "multiple": null, + "off_icon": null, + "on_icon": null, + "persistent_hint": null, + "prepend_icon": null, + "readonly": null, + "ripple": null, + "rules": null, + "slot": null, + "style_": null, + "success": null, + "success_messages": null, + "tabbable": null, + "tooltip": null, + "true_value": null, + "v_model": false, + "v_on": null, + "v_slots": [], + "validate_on_blur": null, + "value": null + } + }, + "3d9c4c03987e4d5a939a45a3ffb30039": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "ToolbarTitleModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "ToolbarTitleModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [ + "G", + "e", + "o", + "-", + "S", + "c", + "h", + "e", + "l", + "l", + "i", + "n", + "g", + " ", + "M", + "o", + "d", + "e", + "l" + ], + "class_": null, + "layout": null, + "slot": null, + "style_": null, + "tabbable": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [] + } + }, + "44b4496a95d54557818433deeb72c0e3": { + "model_module": "jupyter-leaflet", + "model_module_version": "^0.19", + "model_name": "LeafletMapModel", + "state": { + "_dom_classes": [], + "_model_module": "jupyter-leaflet", + "_model_module_version": "^0.19", + "_model_name": "LeafletMapModel", + "_view_count": null, + "_view_module": "jupyter-leaflet", + "_view_module_version": "^0.19", + "_view_name": "LeafletMapView", + "bottom": 0.0, + "bounce_at_zoom_limits": true, + "box_zoom": true, + "center": [ + 52, + 12 + ], + "close_popup_on_click": true, + "controls": [ + "IPY_MODEL_c7486e2b083f4535b4dde14ccb3c9c3a", + "IPY_MODEL_17d37537bebc4bc8a50d0455744c3cc2" + ], + "crs": { + "custom": false, + "name": "EPSG3857" + }, + "default_style": "IPY_MODEL_5585c7ca9d544928a0c848a8ae47f716", + "double_click_zoom": true, + "dragging": true, + "dragging_style": "IPY_MODEL_2c5f623092974bd19c46c1a33b915574", + "east": 0.0, + "fullscreen": false, + "inertia": true, + "inertia_deceleration": 3000, + "inertia_max_speed": 1500, + "interpolation": "bilinear", + "keyboard": true, + "keyboard_pan_offset": 80, + "keyboard_zoom_offset": 1, + "layers": [ + "IPY_MODEL_e4b51f6bf6744157b9b8f560eb180ea5", + "IPY_MODEL_f9d9e150238543618a83562d7d924c64" + ], + "layout": "IPY_MODEL_e4fc973bb72d4cb08ff5cf629a231c6c", + "left": 9007199254740991.0, + "max_zoom": null, + "min_zoom": null, + "modisdate": "2024-06-20", + "north": 0.0, + "options": [ + "bounce_at_zoom_limits", + "box_zoom", + "center", + "close_popup_on_click", + "double_click_zoom", + "dragging", + "fullscreen", + "inertia", + "inertia_deceleration", + "inertia_max_speed", + "interpolation", + "keyboard", + "keyboard_pan_offset", + "keyboard_zoom_offset", + "max_zoom", + "min_zoom", + "prefer_canvas", + "scroll_wheel_zoom", + "tap", + "tap_tolerance", + "touch_zoom", + "world_copy_jump", + "zoom", + "zoom_animation_threshold", + "zoom_delta", + "zoom_snap" + ], + "panes": {}, + "prefer_canvas": false, + "right": 0.0, + "scroll_wheel_zoom": true, + "south": 0.0, + "style": "IPY_MODEL_2225c969681d472fb50d046de4318743", + "tabbable": null, + "tap": true, + "tap_tolerance": 15, + "tooltip": null, + "top": 9007199254740991.0, + "touch_zoom": true, + "west": 0.0, + "window_url": "", + "world_copy_jump": false, + "zoom": 3.0, + "zoom_animation_threshold": 4, + "zoom_delta": 1.0, + "zoom_snap": 1.0 + } + }, + "4e976662c4054e1fab5c31c482a7db06": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.9.4", + "model_name": "VuetifyTemplateModel", + "state": { + "_component_instances": [], + "_dom_classes": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.9.4", + "_model_name": "VuetifyTemplateModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.9.4", + "_view_name": "VuetifyView", + "components": null, + "css": null, + "data": null, + "events": [], + "layout": "IPY_MODEL_e8899a3b856248509a4a122bd66d302f", + "methods": null, + "tabbable": null, + "template": "\n\n\n\n \n\n ", + "tooltip": null + } + }, + "4f69bfee3e29439a83627ff14119959b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "516c501a94a3414aa017600aaa76b04f": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "BtnModel", + "state": { + "_dom_classes": [], + "_events": [ + "click" + ], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "BtnModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "absolute": null, + "active_class": null, + "append": null, + "attributes": {}, + "block": null, + "bottom": null, + "children": [ + "Reset" + ], + "class_": "", + "color": "primary", + "dark": null, + "depressed": null, + "disabled": false, + "elevation": null, + "exact": null, + "exact_active_class": null, + "fab": null, + "fixed": null, + "height": null, + "href": null, + "icon": null, + "input_value": null, + "large": null, + "layout": null, + "left": null, + "light": null, + "link": null, + "loading": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "nuxt": null, + "outlined": false, + "replace": null, + "retain_focus_on_click": null, + "right": null, + "ripple": null, + "rounded": null, + "slot": null, + "small": null, + "style_": "", + "tabbable": null, + "tag": null, + "target": null, + "text": false, + "tile": null, + "to": null, + "tooltip": null, + "top": null, + "type": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "value": null, + "width": null, + "x_large": null, + "x_small": null + } + }, + "523273afb31b49a4b83409eeb087628a": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "542a392b73d346d49580d8f12b529e4f": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SliderModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SliderModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "append_icon": null, + "attributes": {}, + "background_color": null, + "children": [], + "class_": null, + "color": null, + "dark": null, + "dense": false, + "disabled": false, + "error": null, + "error_count": null, + "error_messages": null, + "height": null, + "hide_details": true, + "hint": null, + "id": null, + "inverse_label": null, + "label": "Population Density", + "layout": null, + "light": null, + "loader_height": null, + "loading": null, + "max": 0.9, + "messages": null, + "min": 0.0, + "persistent_hint": null, + "prepend_icon": null, + "readonly": null, + "rules": null, + "slot": null, + "step": 0.1, + "style_": null, + "success": null, + "success_messages": null, + "tabbable": null, + "thumb_color": null, + "thumb_label": true, + "thumb_size": null, + "tick_labels": null, + "tick_size": null, + "ticks": null, + "tooltip": null, + "track_color": null, + "track_fill_color": null, + "v_model": 0.6, + "v_on": null, + "v_slots": [], + "validate_on_blur": null, + "value": null, + "vertical": null + } + }, + "55393412a38a433db3d1e7079cfafeec": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "RowModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "RowModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "align": null, + "align_content": null, + "align_content_lg": null, + "align_content_md": null, + "align_content_sm": null, + "align_content_xl": null, + "align_lg": null, + "align_md": null, + "align_sm": null, + "align_xl": null, + "attributes": {}, + "children": [ + "IPY_MODEL_f5301705109949ad88439d07d92dbdaf" + ], + "class_": "solara-content-main", + "dense": null, + "justify": null, + "justify_lg": null, + "justify_md": null, + "justify_sm": null, + "justify_xl": null, + "layout": null, + "no_gutters": false, + "slot": null, + "style_": null, + "tabbable": null, + "tag": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [] + } + }, + "5585c7ca9d544928a0c848a8ae47f716": { + "model_module": "jupyter-leaflet", + "model_module_version": "^0.19", + "model_name": "LeafletMapStyleModel", + "state": { + "_model_module": "jupyter-leaflet", + "_model_module_version": "^0.19", + "_model_name": "LeafletMapStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "cursor": "grab" + } + }, + "5ab4e5121a8941e2845512621892bab9": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SliderModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SliderModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "append_icon": null, + "attributes": {}, + "background_color": null, + "children": [], + "class_": null, + "color": null, + "dark": null, + "dense": false, + "disabled": false, + "error": null, + "error_count": null, + "error_messages": null, + "height": null, + "hide_details": true, + "hint": null, + "id": null, + "inverse_label": null, + "label": "Fraction Minority", + "layout": null, + "light": null, + "loader_height": null, + "loading": null, + "max": 1.0, + "messages": null, + "min": 0.0, + "persistent_hint": null, + "prepend_icon": null, + "readonly": null, + "rules": null, + "slot": null, + "step": 0.05, + "style_": null, + "success": null, + "success_messages": null, + "tabbable": null, + "thumb_color": null, + "thumb_label": true, + "thumb_size": null, + "tick_labels": null, + "tick_size": null, + "ticks": null, + "tooltip": null, + "track_color": null, + "track_fill_color": null, + "v_model": 0.2, + "v_on": null, + "v_slots": [], + "validate_on_blur": null, + "value": null, + "vertical": null + } + }, + "5de0b993f5d34c0bb3b5a704e4cab216": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "BtnModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "BtnModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "absolute": null, + "active_class": null, + "append": null, + "attributes": {}, + "block": null, + "bottom": null, + "children": [ + "IPY_MODEL_fab77a4393814932bd1bc069239324ae" + ], + "class_": "", + "color": null, + "dark": false, + "depressed": null, + "disabled": false, + "elevation": null, + "exact": null, + "exact_active_class": null, + "fab": null, + "fixed": null, + "height": null, + "href": null, + "icon": true, + "input_value": null, + "large": null, + "layout": null, + "left": null, + "light": null, + "link": null, + "loading": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "nuxt": null, + "outlined": false, + "replace": null, + "retain_focus_on_click": null, + "right": null, + "ripple": null, + "rounded": null, + "slot": null, + "small": null, + "style_": "", + "tabbable": null, + "tag": null, + "target": null, + "text": false, + "tile": null, + "to": null, + "tooltip": null, + "top": null, + "type": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "value": null, + "width": null, + "x_large": null, + "x_small": null + } + }, + "66854bbac2964184aa893013eae6acf8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6718ec7e9e9944a7b641a30b83cf20e5": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SheetModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SheetModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [], + "class_": "d-flex ma-0", + "color": null, + "dark": null, + "elevation": 0.0, + "height": null, + "layout": null, + "light": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "slot": null, + "style_": "flex-direction: row; align-items: stretch; justify-content: space-between; column-gap: 12px;flex-grow:1;;", + "tabbable": null, + "tag": null, + "tile": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "width": null + } + }, + "6916eea40c2e42acbc44a1f4a520b77e": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "BtnModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "BtnModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "absolute": null, + "active_class": null, + "append": null, + "attributes": {}, + "block": null, + "bottom": null, + "children": [ + "Step" + ], + "class_": "", + "color": "primary", + "dark": null, + "depressed": null, + "disabled": false, + "elevation": null, + "exact": null, + "exact_active_class": null, + "fab": null, + "fixed": null, + "height": null, + "href": null, + "icon": null, + "input_value": null, + "large": null, + "layout": null, + "left": null, + "light": null, + "link": null, + "loading": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "nuxt": null, + "outlined": false, + "replace": null, + "retain_focus_on_click": null, + "right": null, + "ripple": null, + "rounded": null, + "slot": null, + "small": null, + "style_": "", + "tabbable": null, + "tag": null, + "target": null, + "text": false, + "tile": null, + "to": null, + "tooltip": null, + "top": null, + "type": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "value": null, + "width": null, + "x_large": null, + "x_small": null + } + }, + "75b6904e50554358b4a6d01758ca5c94": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "BtnModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "BtnModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "absolute": null, + "active_class": null, + "append": null, + "attributes": {}, + "block": null, + "bottom": null, + "children": [ + "Reset" + ], + "class_": "", + "color": "primary", + "dark": null, + "depressed": null, + "disabled": false, + "elevation": null, + "exact": null, + "exact_active_class": null, + "fab": null, + "fixed": null, + "height": null, + "href": null, + "icon": null, + "input_value": null, + "large": null, + "layout": null, + "left": null, + "light": null, + "link": null, + "loading": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "nuxt": null, + "outlined": false, + "replace": null, + "retain_focus_on_click": null, + "right": null, + "ripple": null, + "rounded": null, + "slot": null, + "small": null, + "style_": "", + "tabbable": null, + "tag": null, + "target": null, + "text": false, + "tile": null, + "to": null, + "tooltip": null, + "top": null, + "type": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "value": null, + "width": null, + "x_large": null, + "x_small": null + } + }, + "7674d4fcdb33481da63a279324c99985": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "BtnModel", + "state": { + "_dom_classes": [], + "_events": [ + "click" + ], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "BtnModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "absolute": null, + "active_class": null, + "append": null, + "attributes": {}, + "block": null, + "bottom": null, + "children": [ + "IPY_MODEL_08bf120477fe4a07adb300ab1ef7f9a6" + ], + "class_": "", + "color": null, + "dark": false, + "depressed": null, + "disabled": false, + "elevation": null, + "exact": null, + "exact_active_class": null, + "fab": null, + "fixed": null, + "height": null, + "href": null, + "icon": true, + "input_value": null, + "large": null, + "layout": null, + "left": null, + "light": null, + "link": null, + "loading": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "nuxt": null, + "outlined": false, + "replace": null, + "retain_focus_on_click": null, + "right": null, + "ripple": null, + "rounded": null, + "slot": null, + "small": null, + "style_": "", + "tabbable": null, + "tag": null, + "target": null, + "text": false, + "tile": null, + "to": null, + "tooltip": null, + "top": null, + "type": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "value": null, + "width": null, + "x_large": null, + "x_small": null + } + }, + "774e7c86838b433db61028ed9bbbf462": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.9.4", + "model_name": "HtmlModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.9.4", + "_model_name": "HtmlModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.9.4", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [], + "class_": "", + "layout": null, + "slot": null, + "style_": "display; none", + "tabbable": null, + "tag": "div", + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [] + } + }, + "809c0cefe97044719321a26f0f099dca": { + "model_module": "jupyter-leaflet", + "model_module_version": "^0.19", + "model_name": "LeafletTileLayerModel", + "state": { + "_model_module": "jupyter-leaflet", + "_model_module_version": "^0.19", + "_model_name": "LeafletTileLayerModel", + "_view_count": null, + "_view_module": "jupyter-leaflet", + "_view_module_version": "^0.19", + "_view_name": "LeafletTileLayerView", + "attribution": null, + "base": false, + "bottom": true, + "bounds": null, + "detect_retina": false, + "loading": false, + "max_native_zoom": null, + "max_zoom": 18, + "min_native_zoom": null, + "min_zoom": 0, + "name": "", + "no_wrap": false, + "opacity": 1.0, + "options": [ + "attribution", + "bounds", + "detect_retina", + "max_native_zoom", + "max_zoom", + "min_native_zoom", + "min_zoom", + "no_wrap", + "tile_size", + "tms", + "zoom_offset" + ], + "pane": "", + "popup": null, + "popup_max_height": null, + "popup_max_width": 300, + "popup_min_width": 50, + "show_loading": false, + "subitems": [], + "tile_size": 256, + "tms": false, + "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", + "visible": true, + "zoom_offset": 0 + } + }, + "84e9684dc6b345b3b918435b4bf7ff28": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8e0a8558f772496ca0e80e89398b3ee4": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.9.4", + "model_name": "HtmlModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.9.4", + "_model_name": "HtmlModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.9.4", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [ + "IPY_MODEL_fa47712de132451297b44d79771037d1", + "IPY_MODEL_55393412a38a433db3d1e7079cfafeec" + ], + "class_": null, + "layout": null, + "slot": null, + "style_": null, + "tabbable": null, + "tag": "div", + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [] + } + }, + "8f35bc5dc3774d0fa8f031f3a9679efd": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SheetModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SheetModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [], + "class_": "d-flex ma-0", + "color": null, + "dark": null, + "elevation": 0.0, + "height": null, + "layout": null, + "light": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "slot": null, + "style_": "flex-direction: row; align-items: stretch; justify-content: space-between; column-gap: 12px;flex-grow:1;;", + "tabbable": null, + "tag": null, + "tile": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "width": null + } + }, + "9125cdbc8d5f406c977bbd9d3030cefd": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "RowModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "RowModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "align": null, + "align_content": null, + "align_content_lg": null, + "align_content_md": null, + "align_content_sm": null, + "align_content_xl": null, + "align_lg": null, + "align_md": null, + "align_sm": null, + "align_xl": null, + "attributes": {}, + "children": [ + "IPY_MODEL_ad824df55f61461d87b0864df09b3d6b" + ], + "class_": "solara-content-main", + "dense": null, + "justify": null, + "justify_lg": null, + "justify_md": null, + "justify_sm": null, + "justify_xl": null, + "layout": null, + "no_gutters": false, + "slot": null, + "style_": null, + "tabbable": null, + "tag": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [] + } + }, + "9341ba65742f47a7bd2e64520e8ea16d": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SheetModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SheetModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [ + "IPY_MODEL_1389a1b3aa5247e19379c679adbcfeaa", + "IPY_MODEL_5ab4e5121a8941e2845512621892bab9", + "IPY_MODEL_f8753dea26a3472f96bad68da4182ca9" + ], + "class_": "d-flex ma-0", + "color": null, + "dark": null, + "elevation": 0.0, + "height": null, + "layout": null, + "light": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "slot": null, + "style_": "flex-direction: column; align-items: stretch; row-gap: 12px;;", + "tabbable": null, + "tag": null, + "tile": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "width": null + } + }, + "9398d3ad89f94507bb8dcf80a2737f6b": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.9.4", + "model_name": "ThemeColorsModel", + "state": { + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.9.4", + "_model_name": "ThemeColorsModel", + "_theme_name": "light", + "_view_count": null, + "_view_module": null, + "_view_module_version": "^1.9.4", + "_view_name": null, + "accent": "#82B1FF", + "anchor": null, + "error": "#FF5252", + "info": "#2196F3", + "primary": "#1976D2", + "secondary": "#424242", + "success": "#4CAF50", + "warning": "#FB8C00" + } + }, + "9e7ec135360f4dcbbe499502b33e4cbc": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.9.4", + "model_name": "HtmlModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.9.4", + "_model_name": "HtmlModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.9.4", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [], + "class_": "", + "layout": null, + "slot": null, + "style_": "display; none", + "tabbable": null, + "tag": "div", + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [] + } + }, + "9fe2de3e42cc4dedb9f8f06512be22bf": { + "model_module": "jupyter-leaflet", + "model_module_version": "^0.19", + "model_name": "LeafletMapStyleModel", + "state": { + "_model_module": "jupyter-leaflet", + "_model_module_version": "^0.19", + "_model_name": "LeafletMapStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "cursor": "grab" + } + }, + "a2e235ee74844f718d51469ab7819f4f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a657aae34ccc40839a049a648f83fa50": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a837c509af0747fb9c9e04abea23dd69": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.9.4", + "model_name": "VuetifyTemplateModel", + "state": { + "_component_instances": [], + "_dom_classes": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.9.4", + "_model_name": "VuetifyTemplateModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.9.4", + "_view_name": "VuetifyView", + "components": null, + "css": null, + "data": null, + "events": [], + "layout": "IPY_MODEL_84e9684dc6b345b3b918435b4bf7ff28", + "methods": null, + "tabbable": null, + "template": "\n\n\n\n ", + "tooltip": null + } + }, + "aa8b1c97948a49db8bc34ee2a7c1574b": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SpacerModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SpacerModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [], + "class_": null, + "layout": null, + "slot": null, + "style_": null, + "tabbable": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [] + } + }, + "ad824df55f61461d87b0864df09b3d6b": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "ColModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "ColModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "align_self": null, + "attributes": {}, + "children": [ + "IPY_MODEL_ebd3dcb7010243b999afa9a5c9473a09" + ], + "class_": null, + "cols": 12.0, + "layout": null, + "lg": null, + "md": null, + "offset": null, + "offset_lg": null, + "offset_md": null, + "offset_sm": null, + "offset_xl": null, + "order": null, + "order_lg": null, + "order_md": null, + "order_sm": null, + "order_xl": null, + "slot": null, + "sm": null, + "style_": null, + "tabbable": null, + "tag": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "xl": null + } + }, + "ae1bedd61aa4429fb9fa28133c4f0c5c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "af84a2b3d4c44c6bbd6e008c97ad7885": { + "buffers": [ + { + "data": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIKICAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgd2lkdGg9IjQ2MC44cHQiIGhlaWdodD0iMzQ1LjZwdCIgdmlld0JveD0iMCAwIDQ2MC44IDM0NS42IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSI+CiA8bWV0YWRhdGE+CiAgPHJkZjpSREYgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICA8Y2M6V29yaz4KICAgIDxkYzp0eXBlIHJkZjpyZXNvdXJjZT0iaHR0cDovL3B1cmwub3JnL2RjL2RjbWl0eXBlL1N0aWxsSW1hZ2UiLz4KICAgIDxkYzpkYXRlPjIwMjQtMDYtMjFUMTI6MDc6NDYuMTMxNTAyPC9kYzpkYXRlPgogICAgPGRjOmZvcm1hdD5pbWFnZS9zdmcreG1sPC9kYzpmb3JtYXQ+CiAgICA8ZGM6Y3JlYXRvcj4KICAgICA8Y2M6QWdlbnQ+CiAgICAgIDxkYzp0aXRsZT5NYXRwbG90bGliIHYzLjkuMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy88L2RjOnRpdGxlPgogICAgIDwvY2M6QWdlbnQ+CiAgICA8L2RjOmNyZWF0b3I+CiAgIDwvY2M6V29yaz4KICA8L3JkZjpSREY+CiA8L21ldGFkYXRhPgogPGRlZnM+CiAgPHN0eWxlIHR5cGU9InRleHQvY3NzIj4qe3N0cm9rZS1saW5lam9pbjogcm91bmQ7IHN0cm9rZS1saW5lY2FwOiBidXR0fTwvc3R5bGU+CiA8L2RlZnM+CiA8ZyBpZD0iZmlndXJlXzEiPgogIDxnIGlkPSJwYXRjaF8xIj4KICAgPHBhdGggZD0iTSAwIDM0NS42IApMIDQ2MC44IDM0NS42IApMIDQ2MC44IDAgCkwgMCAwIAp6CiIgc3R5bGU9ImZpbGw6ICNmZmZmZmYiLz4KICA8L2c+CiAgPGcgaWQ9ImF4ZXNfMSI+CiAgIDxnIGlkPSJwYXRjaF8yIj4KICAgIDxwYXRoIGQ9Ik0gNTcuNiAzMDcuNTg0IApMIDQxNC43MiAzMDcuNTg0IApMIDQxNC43MiA0MS40NzIgCkwgNTcuNiA0MS40NzIgCnoKIiBzdHlsZT0iZmlsbDogI2ZmZmZmZiIvPgogICA8L2c+CiAgIDxnIGlkPSJtYXRwbG90bGliLmF4aXNfMSI+CiAgICA8ZyBpZD0ieHRpY2tfMSI+CiAgICAgPGcgaWQ9ImxpbmUyZF8xIj4KICAgICAgPGRlZnM+CiAgICAgICA8cGF0aCBpZD0ibTliZDBmN2JlYmMiIGQ9Ik0gMCAwIApMIDAgMy41IAoiIHN0eWxlPSJzdHJva2U6ICMwMDAwMDA7IHN0cm9rZS13aWR0aDogMC44Ii8+CiAgICAgIDwvZGVmcz4KICAgICAgPGc+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNtOWJkMGY3YmViYyIgeD0iOTAuMDY1NDU1IiB5PSIzMDcuNTg0IiBzdHlsZT0ic3Ryb2tlOiAjMDAwMDAwOyBzdHJva2Utd2lkdGg6IDAuOCIvPgogICAgICA8L2c+CiAgICAgPC9nPgogICAgIDxnIGlkPSJ0ZXh0XzEiPgogICAgICA8IS0tIOKIkjAuMDQ1IC0tPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg3MS41NjE1NDggMzIyLjE4MjQzNykgc2NhbGUoMC4xIC0wLjEpIj4KICAgICAgIDxkZWZzPgogICAgICAgIDxwYXRoIGlkPSJEZWphVnVTYW5zLTIyMTIiIGQ9Ik0gNjc4IDIyNzIgCkwgNDY4NCAyMjcyIApMIDQ2ODQgMTc0MSAKTCA2NzggMTc0MSAKTCA2NzggMjI3MiAKegoiIHRyYW5zZm9ybT0ic2NhbGUoMC4wMTU2MjUpIi8+CiAgICAgICAgPHBhdGggaWQ9IkRlamFWdVNhbnMtMzAiIGQ9Ik0gMjAzNCA0MjUwIApRIDE1NDcgNDI1MCAxMzAxIDM3NzAgClEgMTA1NiAzMjkxIDEwNTYgMjMyOCAKUSAxMDU2IDEzNjkgMTMwMSA4ODkgClEgMTU0NyA0MDkgMjAzNCA0MDkgClEgMjUyNSA0MDkgMjc3MCA4ODkgClEgMzAxNiAxMzY5IDMwMTYgMjMyOCAKUSAzMDE2IDMyOTEgMjc3MCAzNzcwIApRIDI1MjUgNDI1MCAyMDM0IDQyNTAgCnoKTSAyMDM0IDQ3NTAgClEgMjgxOSA0NzUwIDMyMzMgNDEyOSAKUSAzNjQ3IDM1MDkgMzY0NyAyMzI4IApRIDM2NDcgMTE1MCAzMjMzIDUyOSAKUSAyODE5IC05MSAyMDM0IC05MSAKUSAxMjUwIC05MSA4MzYgNTI5IApRIDQyMiAxMTUwIDQyMiAyMzI4IApRIDQyMiAzNTA5IDgzNiA0MTI5IApRIDEyNTAgNDc1MCAyMDM0IDQ3NTAgCnoKIiB0cmFuc2Zvcm09InNjYWxlKDAuMDE1NjI1KSIvPgogICAgICAgIDxwYXRoIGlkPSJEZWphVnVTYW5zLTJlIiBkPSJNIDY4NCA3OTQgCkwgMTM0NCA3OTQgCkwgMTM0NCAwIApMIDY4NCAwIApMIDY4NCA3OTQgCnoKIiB0cmFuc2Zvcm09InNjYWxlKDAuMDE1NjI1KSIvPgogICAgICAgIDxwYXRoIGlkPSJEZWphVnVTYW5zLTM0IiBkPSJNIDI0MTkgNDExNiAKTCA4MjUgMTYyNSAKTCAyNDE5IDE2MjUgCkwgMjQxOSA0MTE2IAp6Ck0gMjI1MyA0NjY2IApMIDMwNDcgNDY2NiAKTCAzMDQ3IDE2MjUgCkwgMzcxMyAxNjI1IApMIDM3MTMgMTEwMCAKTCAzMDQ3IDExMDAgCkwgMzA0NyAwIApMIDI0MTkgMCAKTCAyNDE5IDExMDAgCkwgMzEzIDExMDAgCkwgMzEzIDE3MDkgCkwgMjI1MyA0NjY2IAp6CiIgdHJhbnNmb3JtPSJzY2FsZSgwLjAxNTYyNSkiLz4KICAgICAgICA8cGF0aCBpZD0iRGVqYVZ1U2Fucy0zNSIgZD0iTSA2OTEgNDY2NiAKTCAzMTY5IDQ2NjYgCkwgMzE2OSA0MTM0IApMIDEyNjkgNDEzNCAKTCAxMjY5IDI5OTEgClEgMTQwNiAzMDM4IDE1NDMgMzA2MSAKUSAxNjgxIDMwODQgMTgxOSAzMDg0IApRIDI2MDAgMzA4NCAzMDU2IDI2NTYgClEgMzUxMyAyMjI4IDM1MTMgMTQ5NyAKUSAzNTEzIDc0NCAzMDQ0IDMyNiAKUSAyNTc1IC05MSAxNzIyIC05MSAKUSAxNDI4IC05MSAxMTIzIC00MSAKUSA4MTkgOSA0OTQgMTA5IApMIDQ5NCA3NDQgClEgNzc1IDU5MSAxMDc1IDUxNiAKUSAxMzc1IDQ0MSAxNzA5IDQ0MSAKUSAyMjUwIDQ0MSAyNTY1IDcyNSAKUSAyODgxIDEwMDkgMjg4MSAxNDk3IApRIDI4ODEgMTk4NCAyNTY1IDIyNjggClEgMjI1MCAyNTUzIDE3MDkgMjU1MyAKUSAxNDU2IDI1NTMgMTIwNCAyNDk3IApRIDk1MyAyNDQxIDY5MSAyMzIyIApMIDY5MSA0NjY2IAp6CiIgdHJhbnNmb3JtPSJzY2FsZSgwLjAxNTYyNSkiLz4KICAgICAgIDwvZGVmcz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMjIxMiIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIgeD0iODMuNzg5MDYyIi8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTJlIiB4PSIxNDcuNDEyMTA5Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIiB4PSIxNzkuMTk5MjE5Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTM0IiB4PSIyNDIuODIyMjY2Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTM1IiB4PSIzMDYuNDQ1MzEyIi8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyBpZD0ieHRpY2tfMiI+CiAgICAgPGcgaWQ9ImxpbmUyZF8yIj4KICAgICAgPGc+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNtOWJkMGY3YmViYyIgeD0iMTM4Ljc2MzYzNiIgeT0iMzA3LjU4NCIgc3R5bGU9InN0cm9rZTogIzAwMDAwMDsgc3Ryb2tlLXdpZHRoOiAwLjgiLz4KICAgICAgPC9nPgogICAgIDwvZz4KICAgICA8ZyBpZD0idGV4dF8yIj4KICAgICAgPCEtLSDiiJIwLjAzMCAtLT4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTIwLjI1OTczIDMyMi4xODI0MzcpIHNjYWxlKDAuMSAtMC4xKSI+CiAgICAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBpZD0iRGVqYVZ1U2Fucy0zMyIgZD0iTSAyNTk3IDI1MTYgClEgMzA1MCAyNDE5IDMzMDQgMjExMiAKUSAzNTU5IDE4MDYgMzU1OSAxMzU2IApRIDM1NTkgNjY2IDMwODQgMjg3IApRIDI2MDkgLTkxIDE3MzQgLTkxIApRIDE0NDEgLTkxIDExMzAgLTMzIApRIDgxOSAyNSA0ODggMTQxIApMIDQ4OCA3NTAgClEgNzUwIDU5NyAxMDYyIDUxOSAKUSAxMzc1IDQ0MSAxNzE2IDQ0MSAKUSAyMzA5IDQ0MSAyNjIwIDY3NSAKUSAyOTMxIDkwOSAyOTMxIDEzNTYgClEgMjkzMSAxNzY5IDI2NDIgMjAwMSAKUSAyMzUzIDIyMzQgMTgzOCAyMjM0IApMIDEyOTQgMjIzNCAKTCAxMjk0IDI3NTMgCkwgMTg2MyAyNzUzIApRIDIzMjggMjc1MyAyNTc1IDI5MzkgClEgMjgyMiAzMTI1IDI4MjIgMzQ3NSAKUSAyODIyIDM4MzQgMjU2NyA0MDI2IApRIDIzMTMgNDIxOSAxODM4IDQyMTkgClEgMTU3OCA0MjE5IDEyODEgNDE2MiAKUSA5ODQgNDEwNiA2MjggMzk4OCAKTCA2MjggNDU1MCAKUSA5ODggNDY1MCAxMzAyIDQ3MDAgClEgMTYxNiA0NzUwIDE4OTQgNDc1MCAKUSAyNjEzIDQ3NTAgMzAzMSA0NDIzIApRIDM0NTAgNDA5NyAzNDUwIDM1NDEgClEgMzQ1MCAzMTUzIDMyMjggMjg4NiAKUSAzMDA2IDI2MTkgMjU5NyAyNTE2IAp6CiIgdHJhbnNmb3JtPSJzY2FsZSgwLjAxNTYyNSkiLz4KICAgICAgIDwvZGVmcz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMjIxMiIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIgeD0iODMuNzg5MDYyIi8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTJlIiB4PSIxNDcuNDEyMTA5Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIiB4PSIxNzkuMTk5MjE5Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMzIiB4PSIyNDIuODIyMjY2Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIiB4PSIzMDYuNDQ1MzEyIi8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyBpZD0ieHRpY2tfMyI+CiAgICAgPGcgaWQ9ImxpbmUyZF8zIj4KICAgICAgPGc+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNtOWJkMGY3YmViYyIgeD0iMTg3LjQ2MTgxOCIgeT0iMzA3LjU4NCIgc3R5bGU9InN0cm9rZTogIzAwMDAwMDsgc3Ryb2tlLXdpZHRoOiAwLjgiLz4KICAgICAgPC9nPgogICAgIDwvZz4KICAgICA8ZyBpZD0idGV4dF8zIj4KICAgICAgPCEtLSDiiJIwLjAxNSAtLT4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTY4Ljk1NzkxMiAzMjIuMTgyNDM3KSBzY2FsZSgwLjEgLTAuMSkiPgogICAgICAgPGRlZnM+CiAgICAgICAgPHBhdGggaWQ9IkRlamFWdVNhbnMtMzEiIGQ9Ik0gNzk0IDUzMSAKTCAxODI1IDUzMSAKTCAxODI1IDQwOTEgCkwgNzAzIDM4NjYgCkwgNzAzIDQ0NDEgCkwgMTgxOSA0NjY2IApMIDI0NTAgNDY2NiAKTCAyNDUwIDUzMSAKTCAzNDgxIDUzMSAKTCAzNDgxIDAgCkwgNzk0IDAgCkwgNzk0IDUzMSAKegoiIHRyYW5zZm9ybT0ic2NhbGUoMC4wMTU2MjUpIi8+CiAgICAgICA8L2RlZnM+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTIyMTIiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiIHg9IjgzLjc4OTA2MiIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0yZSIgeD0iMTQ3LjQxMjEwOSIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIgeD0iMTc5LjE5OTIxOSIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMSIgeD0iMjQyLjgyMjI2NiIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zNSIgeD0iMzA2LjQ0NTMxMiIvPgogICAgICA8L2c+CiAgICAgPC9nPgogICAgPC9nPgogICAgPGcgaWQ9Inh0aWNrXzQiPgogICAgIDxnIGlkPSJsaW5lMmRfNCI+CiAgICAgIDxnPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjbTliZDBmN2JlYmMiIHg9IjIzNi4xNiIgeT0iMzA3LjU4NCIgc3R5bGU9InN0cm9rZTogIzAwMDAwMDsgc3Ryb2tlLXdpZHRoOiAwLjgiLz4KICAgICAgPC9nPgogICAgIDwvZz4KICAgICA8ZyBpZD0idGV4dF80Ij4KICAgICAgPCEtLSAwLjAwMCAtLT4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjIxLjg0NTkzNyAzMjIuMTgyNDM3KSBzY2FsZSgwLjEgLTAuMSkiPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0yZSIgeD0iNjMuNjIzMDQ3Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIiB4PSI5NS40MTAxNTYiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiIHg9IjE1OS4wMzMyMDMiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiIHg9IjIyMi42NTYyNSIvPgogICAgICA8L2c+CiAgICAgPC9nPgogICAgPC9nPgogICAgPGcgaWQ9Inh0aWNrXzUiPgogICAgIDxnIGlkPSJsaW5lMmRfNSI+CiAgICAgIDxnPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjbTliZDBmN2JlYmMiIHg9IjI4NC44NTgxODIiIHk9IjMwNy41ODQiIHN0eWxlPSJzdHJva2U6ICMwMDAwMDA7IHN0cm9rZS13aWR0aDogMC44Ii8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICAgPGcgaWQ9InRleHRfNSI+CiAgICAgIDwhLS0gMC4wMTUgLS0+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI3MC41NDQxMTkgMzIyLjE4MjQzNykgc2NhbGUoMC4xIC0wLjEpIj4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMmUiIHg9IjYzLjYyMzA0NyIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIgeD0iOTUuNDEwMTU2Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMxIiB4PSIxNTkuMDMzMjAzIi8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTM1IiB4PSIyMjIuNjU2MjUiLz4KICAgICAgPC9nPgogICAgIDwvZz4KICAgIDwvZz4KICAgIDxnIGlkPSJ4dGlja182Ij4KICAgICA8ZyBpZD0ibGluZTJkXzYiPgogICAgICA8Zz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI205YmQwZjdiZWJjIiB4PSIzMzMuNTU2MzY0IiB5PSIzMDcuNTg0IiBzdHlsZT0ic3Ryb2tlOiAjMDAwMDAwOyBzdHJva2Utd2lkdGg6IDAuOCIvPgogICAgICA8L2c+CiAgICAgPC9nPgogICAgIDxnIGlkPSJ0ZXh0XzYiPgogICAgICA8IS0tIDAuMDMwIC0tPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzMTkuMjQyMzAxIDMyMi4xODI0MzcpIHNjYWxlKDAuMSAtMC4xKSI+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIi8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTJlIiB4PSI2My42MjMwNDciLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiIHg9Ijk1LjQxMDE1NiIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMyIgeD0iMTU5LjAzMzIwMyIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIgeD0iMjIyLjY1NjI1Ii8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyBpZD0ieHRpY2tfNyI+CiAgICAgPGcgaWQ9ImxpbmUyZF83Ij4KICAgICAgPGc+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNtOWJkMGY3YmViYyIgeD0iMzgyLjI1NDU0NSIgeT0iMzA3LjU4NCIgc3R5bGU9InN0cm9rZTogIzAwMDAwMDsgc3Ryb2tlLXdpZHRoOiAwLjgiLz4KICAgICAgPC9nPgogICAgIDwvZz4KICAgICA8ZyBpZD0idGV4dF83Ij4KICAgICAgPCEtLSAwLjA0NSAtLT4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzY3Ljk0MDQ4MyAzMjIuMTgyNDM3KSBzY2FsZSgwLjEgLTAuMSkiPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0yZSIgeD0iNjMuNjIzMDQ3Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIiB4PSI5NS40MTAxNTYiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzQiIHg9IjE1OS4wMzMyMDMiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzUiIHg9IjIyMi42NTYyNSIvPgogICAgICA8L2c+CiAgICAgPC9nPgogICAgPC9nPgogICA8L2c+CiAgIDxnIGlkPSJtYXRwbG90bGliLmF4aXNfMiI+CiAgICA8ZyBpZD0ieXRpY2tfMSI+CiAgICAgPGcgaWQ9ImxpbmUyZF84Ij4KICAgICAgPGRlZnM+CiAgICAgICA8cGF0aCBpZD0ibWEzNmQ0OWNjZTMiIGQ9Ik0gMCAwIApMIC0zLjUgMCAKIiBzdHlsZT0ic3Ryb2tlOiAjMDAwMDAwOyBzdHJva2Utd2lkdGg6IDAuOCIvPgogICAgICA8L2RlZnM+CiAgICAgIDxnPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjbWEzNmQ0OWNjZTMiIHg9IjU3LjYiIHk9IjI3MS4yOTYiIHN0eWxlPSJzdHJva2U6ICMwMDAwMDA7IHN0cm9rZS13aWR0aDogMC44Ii8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICAgPGcgaWQ9InRleHRfOCI+CiAgICAgIDwhLS0g4oiSMC4wNCAtLT4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuOTU0Njg3IDI3NS4wOTUyMTkpIHNjYWxlKDAuMSAtMC4xKSI+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTIyMTIiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiIHg9IjgzLjc4OTA2MiIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0yZSIgeD0iMTQ3LjQxMjEwOSIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIgeD0iMTc5LjE5OTIxOSIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zNCIgeD0iMjQyLjgyMjI2NiIvPgogICAgICA8L2c+CiAgICAgPC9nPgogICAgPC9nPgogICAgPGcgaWQ9Inl0aWNrXzIiPgogICAgIDxnIGlkPSJsaW5lMmRfOSI+CiAgICAgIDxnPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjbWEzNmQ0OWNjZTMiIHg9IjU3LjYiIHk9IjIyMi45MTIiIHN0eWxlPSJzdHJva2U6ICMwMDAwMDA7IHN0cm9rZS13aWR0aDogMC44Ii8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICAgPGcgaWQ9InRleHRfOSI+CiAgICAgIDwhLS0g4oiSMC4wMiAtLT4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTkuOTU0Njg3IDIyNi43MTEyMTkpIHNjYWxlKDAuMSAtMC4xKSI+CiAgICAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBpZD0iRGVqYVZ1U2Fucy0zMiIgZD0iTSAxMjI4IDUzMSAKTCAzNDMxIDUzMSAKTCAzNDMxIDAgCkwgNDY5IDAgCkwgNDY5IDUzMSAKUSA4MjggOTAzIDE0NDggMTUyOSAKUSAyMDY5IDIxNTYgMjIyOCAyMzM4IApRIDI1MzEgMjY3OCAyNjUxIDI5MTQgClEgMjc3MiAzMTUwIDI3NzIgMzM3OCAKUSAyNzcyIDM3NTAgMjUxMSAzOTg0IApRIDIyNTAgNDIxOSAxODMxIDQyMTkgClEgMTUzNCA0MjE5IDEyMDQgNDExNiAKUSA4NzUgNDAxMyA1MDAgMzgwMyAKTCA1MDAgNDQ0MSAKUSA4ODEgNDU5NCAxMjEyIDQ2NzIgClEgMTU0NCA0NzUwIDE4MTkgNDc1MCAKUSAyNTQ0IDQ3NTAgMjk3NSA0Mzg3IApRIDM0MDYgNDAyNSAzNDA2IDM0MTkgClEgMzQwNiAzMTMxIDMyOTggMjg3MyAKUSAzMTkxIDI2MTYgMjkwNiAyMjY2IApRIDI4MjggMjE3NSAyNDA5IDE3NDIgClEgMTk5MSAxMzA5IDEyMjggNTMxIAp6CiIgdHJhbnNmb3JtPSJzY2FsZSgwLjAxNTYyNSkiLz4KICAgICAgIDwvZGVmcz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMjIxMiIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIgeD0iODMuNzg5MDYyIi8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTJlIiB4PSIxNDcuNDEyMTA5Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIiB4PSIxNzkuMTk5MjE5Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMyIiB4PSIyNDIuODIyMjY2Ii8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyBpZD0ieXRpY2tfMyI+CiAgICAgPGcgaWQ9ImxpbmUyZF8xMCI+CiAgICAgIDxnPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjbWEzNmQ0OWNjZTMiIHg9IjU3LjYiIHk9IjE3NC41MjgiIHN0eWxlPSJzdHJva2U6ICMwMDAwMDA7IHN0cm9rZS13aWR0aDogMC44Ii8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICAgPGcgaWQ9InRleHRfMTAiPgogICAgICA8IS0tIDAuMDAgLS0+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI4LjMzNDM3NSAxNzguMzI3MjE5KSBzY2FsZSgwLjEgLTAuMSkiPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0yZSIgeD0iNjMuNjIzMDQ3Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIiB4PSI5NS40MTAxNTYiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiIHg9IjE1OS4wMzMyMDMiLz4KICAgICAgPC9nPgogICAgIDwvZz4KICAgIDwvZz4KICAgIDxnIGlkPSJ5dGlja180Ij4KICAgICA8ZyBpZD0ibGluZTJkXzExIj4KICAgICAgPGc+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNtYTM2ZDQ5Y2NlMyIgeD0iNTcuNiIgeT0iMTI2LjE0NCIgc3R5bGU9InN0cm9rZTogIzAwMDAwMDsgc3Ryb2tlLXdpZHRoOiAwLjgiLz4KICAgICAgPC9nPgogICAgIDwvZz4KICAgICA8ZyBpZD0idGV4dF8xMSI+CiAgICAgIDwhLS0gMC4wMiAtLT4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjguMzM0Mzc1IDEyOS45NDMyMTkpIHNjYWxlKDAuMSAtMC4xKSI+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTMwIi8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTJlIiB4PSI2My42MjMwNDciLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiIHg9Ijk1LjQxMDE1NiIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMiIgeD0iMTU5LjAzMzIwMyIvPgogICAgICA8L2c+CiAgICAgPC9nPgogICAgPC9nPgogICAgPGcgaWQ9Inl0aWNrXzUiPgogICAgIDxnIGlkPSJsaW5lMmRfMTIiPgogICAgICA8Zz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI21hMzZkNDljY2UzIiB4PSI1Ny42IiB5PSI3Ny43NiIgc3R5bGU9InN0cm9rZTogIzAwMDAwMDsgc3Ryb2tlLXdpZHRoOiAwLjgiLz4KICAgICAgPC9nPgogICAgIDwvZz4KICAgICA8ZyBpZD0idGV4dF8xMiI+CiAgICAgIDwhLS0gMC4wNCAtLT4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjguMzM0Mzc1IDgxLjU1OTIxOSkgc2NhbGUoMC4xIC0wLjEpIj4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMzAiLz4KICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtMmUiIHg9IjYzLjYyMzA0NyIvPgogICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy0zMCIgeD0iOTUuNDEwMTU2Ii8+CiAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTM0IiB4PSIxNTkuMDMzMjAzIi8+CiAgICAgIDwvZz4KICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyBpZD0idGV4dF8xMyI+CiAgICAgPCEtLSBoYXBweSAtLT4KICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMy44NzUgMTkwLjA2ODYyNSkgcm90YXRlKC05MCkgc2NhbGUoMC4xIC0wLjEpIj4KICAgICAgPGRlZnM+CiAgICAgICA8cGF0aCBpZD0iRGVqYVZ1U2Fucy02OCIgZD0iTSAzNTEzIDIxMTMgCkwgMzUxMyAwIApMIDI5MzggMCAKTCAyOTM4IDIwOTQgClEgMjkzOCAyNTkxIDI3NDQgMjgzNyAKUSAyNTUwIDMwODQgMjE2MyAzMDg0IApRIDE2OTcgMzA4NCAxNDI4IDI3ODcgClEgMTE1OSAyNDkxIDExNTkgMTk3OCAKTCAxMTU5IDAgCkwgNTgxIDAgCkwgNTgxIDQ4NjMgCkwgMTE1OSA0ODYzIApMIDExNTkgMjk1NiAKUSAxMzY2IDMyNzIgMTY0NSAzNDI4IApRIDE5MjUgMzU4NCAyMjkxIDM1ODQgClEgMjg5NCAzNTg0IDMyMDMgMzIxMSAKUSAzNTEzIDI4MzggMzUxMyAyMTEzIAp6CiIgdHJhbnNmb3JtPSJzY2FsZSgwLjAxNTYyNSkiLz4KICAgICAgIDxwYXRoIGlkPSJEZWphVnVTYW5zLTYxIiBkPSJNIDIxOTQgMTc1OSAKUSAxNDk3IDE3NTkgMTIyOCAxNjAwIApRIDk1OSAxNDQxIDk1OSAxMDU2IApRIDk1OSA3NTAgMTE2MSA1NzAgClEgMTM2MyAzOTEgMTcwOSAzOTEgClEgMjE4OCAzOTEgMjQ3NyA3MzAgClEgMjc2NiAxMDY5IDI3NjYgMTYzMSAKTCAyNzY2IDE3NTkgCkwgMjE5NCAxNzU5IAp6Ck0gMzM0MSAxOTk3IApMIDMzNDEgMCAKTCAyNzY2IDAgCkwgMjc2NiA1MzEgClEgMjU2OSAyMTMgMjI3NSA2MSAKUSAxOTgxIC05MSAxNTU2IC05MSAKUSAxMDE5IC05MSA3MDEgMjExIApRIDM4NCA1MTMgMzg0IDEwMTkgClEgMzg0IDE2MDkgNzc5IDE5MDkgClEgMTE3NSAyMjA5IDE5NTkgMjIwOSAKTCAyNzY2IDIyMDkgCkwgMjc2NiAyMjY2IApRIDI3NjYgMjY2MyAyNTA1IDI4ODAgClEgMjI0NCAzMDk3IDE3NzIgMzA5NyAKUSAxNDcyIDMwOTcgMTE4NyAzMDI1IApRIDkwMyAyOTUzIDY0MSAyODA5IApMIDY0MSAzMzQxIApRIDk1NiAzNDYzIDEyNTMgMzUyMyAKUSAxNTUwIDM1ODQgMTgzMSAzNTg0IApRIDI1OTEgMzU4NCAyOTY2IDMxOTAgClEgMzM0MSAyNzk3IDMzNDEgMTk5NyAKegoiIHRyYW5zZm9ybT0ic2NhbGUoMC4wMTU2MjUpIi8+CiAgICAgICA8cGF0aCBpZD0iRGVqYVZ1U2Fucy03MCIgZD0iTSAxMTU5IDUyNSAKTCAxMTU5IC0xMzMxIApMIDU4MSAtMTMzMSAKTCA1ODEgMzUwMCAKTCAxMTU5IDM1MDAgCkwgMTE1OSAyOTY5IApRIDEzNDEgMzI4MSAxNjE3IDM0MzIgClEgMTg5NCAzNTg0IDIyNzggMzU4NCAKUSAyOTE2IDM1ODQgMzMxNCAzMDc4IApRIDM3MTMgMjU3MiAzNzEzIDE3NDcgClEgMzcxMyA5MjIgMzMxNCA0MTUgClEgMjkxNiAtOTEgMjI3OCAtOTEgClEgMTg5NCAtOTEgMTYxNyA2MSAKUSAxMzQxIDIxMyAxMTU5IDUyNSAKegpNIDMxMTYgMTc0NyAKUSAzMTE2IDIzODEgMjg1NSAyNzQyIApRIDI1OTQgMzEwMyAyMTM4IDMxMDMgClEgMTY4MSAzMTAzIDE0MjAgMjc0MiAKUSAxMTU5IDIzODEgMTE1OSAxNzQ3IApRIDExNTkgMTExMyAxNDIwIDc1MiAKUSAxNjgxIDM5MSAyMTM4IDM5MSAKUSAyNTk0IDM5MSAyODU1IDc1MiAKUSAzMTE2IDExMTMgMzExNiAxNzQ3IAp6CiIgdHJhbnNmb3JtPSJzY2FsZSgwLjAxNTYyNSkiLz4KICAgICAgIDxwYXRoIGlkPSJEZWphVnVTYW5zLTc5IiBkPSJNIDIwNTkgLTMyNSAKUSAxODE2IC05NTAgMTU4NCAtMTE0MCAKUSAxMzUzIC0xMzMxIDk2NiAtMTMzMSAKTCA1MDYgLTEzMzEgCkwgNTA2IC04NTAgCkwgODQ0IC04NTAgClEgMTA4MSAtODUwIDEyMTIgLTczNyAKUSAxMzQ0IC02MjUgMTUwMyAtMjA2IApMIDE2MDYgNTYgCkwgMTkxIDM1MDAgCkwgODAwIDM1MDAgCkwgMTg5NCA3NjMgCkwgMjk4OCAzNTAwIApMIDM1OTcgMzUwMCAKTCAyMDU5IC0zMjUgCnoKIiB0cmFuc2Zvcm09InNjYWxlKDAuMDE1NjI1KSIvPgogICAgICA8L2RlZnM+CiAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtNjgiLz4KICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy02MSIgeD0iNjMuMzc4OTA2Ii8+CiAgICAgIDx1c2UgeGxpbms6aHJlZj0iI0RlamFWdVNhbnMtNzAiIHg9IjEyNC42NTgyMDMiLz4KICAgICAgPHVzZSB4bGluazpocmVmPSIjRGVqYVZ1U2Fucy03MCIgeD0iMTg4LjEzNDc2NiIvPgogICAgICA8dXNlIHhsaW5rOmhyZWY9IiNEZWphVnVTYW5zLTc5IiB4PSIyNTEuNjExMzI4Ii8+CiAgICAgPC9nPgogICAgPC9nPgogICA8L2c+CiAgIDxnIGlkPSJsaW5lMmRfMTMiLz4KICAgPGcgaWQ9InBhdGNoXzMiPgogICAgPHBhdGggZD0iTSA1Ny42IDMwNy41ODQgCkwgNTcuNiA0MS40NzIgCiIgc3R5bGU9ImZpbGw6IG5vbmU7IHN0cm9rZTogIzAwMDAwMDsgc3Ryb2tlLXdpZHRoOiAwLjg7IHN0cm9rZS1saW5lam9pbjogbWl0ZXI7IHN0cm9rZS1saW5lY2FwOiBzcXVhcmUiLz4KICAgPC9nPgogICA8ZyBpZD0icGF0Y2hfNCI+CiAgICA8cGF0aCBkPSJNIDQxNC43MiAzMDcuNTg0IApMIDQxNC43MiA0MS40NzIgCiIgc3R5bGU9ImZpbGw6IG5vbmU7IHN0cm9rZTogIzAwMDAwMDsgc3Ryb2tlLXdpZHRoOiAwLjg7IHN0cm9rZS1saW5lam9pbjogbWl0ZXI7IHN0cm9rZS1saW5lY2FwOiBzcXVhcmUiLz4KICAgPC9nPgogICA8ZyBpZD0icGF0Y2hfNSI+CiAgICA8cGF0aCBkPSJNIDU3LjYgMzA3LjU4NCAKTCA0MTQuNzIgMzA3LjU4NCAKIiBzdHlsZT0iZmlsbDogbm9uZTsgc3Ryb2tlOiAjMDAwMDAwOyBzdHJva2Utd2lkdGg6IDAuODsgc3Ryb2tlLWxpbmVqb2luOiBtaXRlcjsgc3Ryb2tlLWxpbmVjYXA6IHNxdWFyZSIvPgogICA8L2c+CiAgIDxnIGlkPSJwYXRjaF82Ij4KICAgIDxwYXRoIGQ9Ik0gNTcuNiA0MS40NzIgCkwgNDE0LjcyIDQxLjQ3MiAKIiBzdHlsZT0iZmlsbDogbm9uZTsgc3Ryb2tlOiAjMDAwMDAwOyBzdHJva2Utd2lkdGg6IDAuODsgc3Ryb2tlLWxpbmVqb2luOiBtaXRlcjsgc3Ryb2tlLWxpbmVjYXA6IHNxdWFyZSIvPgogICA8L2c+CiAgPC9nPgogPC9nPgo8L3N2Zz4K", + "encoding": "base64", + "path": [ + "value" + ] + } + ], + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "ImageModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "ImageModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "ImageView", + "format": "svg+xml", + "height": "", + "layout": "IPY_MODEL_523273afb31b49a4b83409eeb087628a", + "tabbable": null, + "tooltip": null, + "width": "" + } + }, + "b5fd7b519e8c4cda85f22244b53fb4e1": { + "model_module": "jupyter-leaflet", + "model_module_version": "^0.19", + "model_name": "LeafletAttributionControlModel", + "state": { + "_model_module": "jupyter-leaflet", + "_model_module_version": "^0.19", + "_model_name": "LeafletAttributionControlModel", + "_view_count": null, + "_view_module": "jupyter-leaflet", + "_view_module_version": "^0.19", + "_view_name": "LeafletAttributionControlView", + "options": [ + "position", + "prefix" + ], + "position": "bottomright", + "prefix": "ipyleaflet" + } + }, + "bd7fe321eec74b8890500bf57e669723": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.9.4", + "model_name": "HtmlModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.9.4", + "_model_name": "HtmlModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.9.4", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [ + "IPY_MODEL_9341ba65742f47a7bd2e64520e8ea16d", + "IPY_MODEL_c1d1fbf417794f919dadef640650d21c", + "IPY_MODEL_a837c509af0747fb9c9e04abea23dd69" + ], + "class_": "", + "layout": null, + "slot": null, + "style_": "display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-column-gap: 10px; grid-row-gap: 10px; align-items: stretch; justify-items: stretch", + "tabbable": null, + "tag": "div", + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [] + } + }, + "bf284eb1ab9f4ccdb5ecaaafa2b6b056": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SheetModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SheetModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [ + "IPY_MODEL_1f22b781539045dda8909ffedb51fa01" + ], + "class_": "d-flex ma-0", + "color": null, + "dark": null, + "elevation": 0.0, + "height": null, + "layout": null, + "light": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "slot": null, + "style_": "flex-direction: column; align-items: stretch; row-gap: 12px;isolation:isolate;;", + "tabbable": null, + "tag": null, + "tile": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "width": null + } + }, + "bfa062b0b78c458ba79ee8f19fdb9736": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "2.0.0", + "model_name": "PlayModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "2.0.0", + "_model_name": "PlayModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "2.0.0", + "_view_name": "PlayView", + "description": "", + "description_allow_html": false, + "disabled": false, + "interval": 150, + "layout": "IPY_MODEL_ae1bedd61aa4429fb9fa28133c4f0c5c", + "max": 100, + "min": 0, + "playing": false, + "repeat": true, + "show_repeat": false, + "step": 1, + "style": "IPY_MODEL_109f8ba90c20441b952693c829b7f638", + "tabbable": null, + "tooltip": null, + "value": 0 + } + }, + "c1c5ccae3c7c4776a4c99538fcd42e15": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.9.4", + "model_name": "HtmlModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.9.4", + "_model_name": "HtmlModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.9.4", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [], + "class_": "", + "layout": null, + "slot": null, + "style_": "display; none", + "tabbable": null, + "tag": "div", + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [] + } + }, + "c1d1fbf417794f919dadef640650d21c": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SheetModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SheetModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [ + "IPY_MODEL_6916eea40c2e42acbc44a1f4a520b77e", + "IPY_MODEL_4e976662c4054e1fab5c31c482a7db06", + "IPY_MODEL_bfa062b0b78c458ba79ee8f19fdb9736", + "IPY_MODEL_75b6904e50554358b4a6d01758ca5c94" + ], + "class_": "d-flex ma-0", + "color": null, + "dark": null, + "elevation": 0.0, + "height": null, + "layout": null, + "light": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "slot": null, + "style_": "flex-direction: row; align-items: stretch; justify-content: start; column-gap: 12px;;", + "tabbable": null, + "tag": null, + "tile": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "width": null + } + }, + "c3b44f4054184549b71d2307b1b4b952": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.9.4", + "model_name": "ThemeColorsModel", + "state": { + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.9.4", + "_model_name": "ThemeColorsModel", + "_theme_name": "dark", + "_view_count": null, + "_view_module": null, + "_view_module_version": "^1.9.4", + "_view_name": null, + "accent": "#FF4081", + "anchor": null, + "error": "#FF5252", + "info": "#2196F3", + "primary": "#2196F3", + "secondary": "#424242", + "success": "#4CAF50", + "warning": "#FB8C00" + } + }, + "c436607c45e54eeea84e9a36a2fd8708": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SheetModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SheetModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [ + "IPY_MODEL_774e7c86838b433db61028ed9bbbf462", + "IPY_MODEL_8f35bc5dc3774d0fa8f031f3a9679efd", + "IPY_MODEL_eac7a8d3dc314fd6a112b0b3b47678c3", + "IPY_MODEL_35c419defd4e4b45ab24dcbec3b1481f", + "IPY_MODEL_149bcc97a3d0411eb04a3329ce9b7ec6" + ], + "class_": "d-flex ma-0", + "color": null, + "dark": null, + "elevation": 0.0, + "height": null, + "layout": null, + "light": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "slot": null, + "style_": "flex-direction: column; align-items: stretch; row-gap: 12px;;", + "tabbable": null, + "tag": null, + "tile": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "width": null + } + }, + "c7486e2b083f4535b4dde14ccb3c9c3a": { + "model_module": "jupyter-leaflet", + "model_module_version": "^0.19", + "model_name": "LeafletZoomControlModel", + "state": { + "_model_module": "jupyter-leaflet", + "_model_module_version": "^0.19", + "_model_name": "LeafletZoomControlModel", + "_view_count": null, + "_view_module": "jupyter-leaflet", + "_view_module_version": "^0.19", + "_view_name": "LeafletZoomControlView", + "options": [ + "position", + "zoom_in_text", + "zoom_in_title", + "zoom_out_text", + "zoom_out_title" + ], + "position": "topleft", + "zoom_in_text": "+", + "zoom_in_title": "Zoom in", + "zoom_out_text": "-", + "zoom_out_title": "Zoom out" + } + }, + "ceb88a1c25fd47eb874c0f50a939a7f6": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SheetModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SheetModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [ + "IPY_MODEL_542a392b73d346d49580d8f12b529e4f", + "IPY_MODEL_2f484e44ae4e4a6695112004cca5e868", + "IPY_MODEL_3ba8dac31dcf48bf83823b93f32636ed" + ], + "class_": "d-flex ma-0", + "color": null, + "dark": null, + "elevation": 0.0, + "height": null, + "layout": null, + "light": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "slot": null, + "style_": "flex-direction: column; align-items: stretch; row-gap: 12px;;", + "tabbable": null, + "tag": null, + "tile": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "width": null + } + }, + "def9f8ad7155482c8073dea9a7a9f6ce": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e2d6248969b54a5993f1984d89cfd3ff": { + "model_module": "jupyter-leaflet", + "model_module_version": "^0.19", + "model_name": "LeafletMapStyleModel", + "state": { + "_model_module": "jupyter-leaflet", + "_model_module_version": "^0.19", + "_model_name": "LeafletMapStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "StyleView", + "cursor": "grab" + } + }, + "e4b51f6bf6744157b9b8f560eb180ea5": { + "model_module": "jupyter-leaflet", + "model_module_version": "^0.19", + "model_name": "LeafletTileLayerModel", + "state": { + "_model_module": "jupyter-leaflet", + "_model_module_version": "^0.19", + "_model_name": "LeafletTileLayerModel", + "_view_count": null, + "_view_module": "jupyter-leaflet", + "_view_module_version": "^0.19", + "_view_name": "LeafletTileLayerView", + "attribution": null, + "base": false, + "bottom": true, + "bounds": null, + "detect_retina": false, + "loading": false, + "max_native_zoom": null, + "max_zoom": 18, + "min_native_zoom": null, + "min_zoom": 0, + "name": "", + "no_wrap": false, + "opacity": 1.0, + "options": [ + "attribution", + "bounds", + "detect_retina", + "max_native_zoom", + "max_zoom", + "min_native_zoom", + "min_zoom", + "no_wrap", + "tile_size", + "tms", + "zoom_offset" + ], + "pane": "", + "popup": null, + "popup_max_height": null, + "popup_max_width": 300, + "popup_min_width": 50, + "show_loading": false, + "subitems": [], + "tile_size": 256, + "tms": false, + "url": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", + "visible": true, + "zoom_offset": 0 + } + }, + "e4fc973bb72d4cb08ff5cf629a231c6c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e8899a3b856248509a4a122bd66d302f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "2.0.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "2.0.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "2.0.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border_bottom": null, + "border_left": null, + "border_right": null, + "border_top": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "eac7a8d3dc314fd6a112b0b3b47678c3": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.9.4", + "model_name": "HtmlModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.9.4", + "_model_name": "HtmlModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.9.4", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [ + "IPY_MODEL_ceb88a1c25fd47eb874c0f50a939a7f6", + "IPY_MODEL_157e239fc6b14ed4b4f7928ea396b895", + "IPY_MODEL_3503ace4225449f6b0008cd826d9de84" + ], + "class_": "", + "layout": null, + "slot": null, + "style_": "display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-column-gap: 10px; grid-row-gap: 10px; align-items: stretch; justify-items: stretch", + "tabbable": null, + "tag": "div", + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [] + } + }, + "ebd3dcb7010243b999afa9a5c9473a09": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "SheetModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "SheetModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [ + "IPY_MODEL_9e7ec135360f4dcbbe499502b33e4cbc", + "IPY_MODEL_6718ec7e9e9944a7b641a30b83cf20e5", + "IPY_MODEL_bd7fe321eec74b8890500bf57e669723", + "IPY_MODEL_bf284eb1ab9f4ccdb5ecaaafa2b6b056", + "IPY_MODEL_0f3f3d9423e945a4a22b4369668c2760" + ], + "class_": "d-flex ma-0", + "color": null, + "dark": null, + "elevation": 0.0, + "height": null, + "layout": null, + "light": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "slot": null, + "style_": "flex-direction: column; align-items: stretch; row-gap: 12px;;", + "tabbable": null, + "tag": null, + "tile": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "width": null + } + }, + "f5301705109949ad88439d07d92dbdaf": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "ColModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "ColModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "align_self": null, + "attributes": {}, + "children": [ + "IPY_MODEL_c436607c45e54eeea84e9a36a2fd8708" + ], + "class_": null, + "cols": 12.0, + "layout": null, + "lg": null, + "md": null, + "offset": null, + "offset_lg": null, + "offset_md": null, + "offset_sm": null, + "offset_xl": null, + "order": null, + "order_lg": null, + "order_md": null, + "order_sm": null, + "order_xl": null, + "slot": null, + "sm": null, + "style_": null, + "tabbable": null, + "tag": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "xl": null + } + }, + "f8753dea26a3472f96bad68da4182ca9": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "CheckboxModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "CheckboxModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "append_icon": null, + "attributes": {}, + "background_color": null, + "children": [ + "export_data" + ], + "class_": null, + "color": null, + "dark": null, + "dense": null, + "disabled": false, + "error": null, + "error_count": null, + "error_messages": null, + "false_value": null, + "height": null, + "hide_details": null, + "hint": null, + "id": null, + "indeterminate": null, + "indeterminate_icon": null, + "input_value": null, + "label": "export_data", + "layout": null, + "light": null, + "loading": null, + "messages": null, + "multiple": null, + "off_icon": null, + "on_icon": null, + "persistent_hint": null, + "prepend_icon": null, + "readonly": null, + "ripple": null, + "rules": null, + "slot": null, + "style_": null, + "success": null, + "success_messages": null, + "tabbable": null, + "tooltip": null, + "true_value": null, + "v_model": false, + "v_on": null, + "v_slots": [], + "validate_on_blur": null, + "value": null + } + }, + "f9d9e150238543618a83562d7d924c64": { + "model_module": "jupyter-leaflet", + "model_module_version": "^0.19", + "model_name": "LeafletGeoJSONModel", + "state": { + "_model_module": "jupyter-leaflet", + "_model_module_version": "^0.19", + "_model_name": "LeafletGeoJSONModel", + "_view_count": null, + "_view_module": "jupyter-leaflet", + "_view_module_version": "^0.19", + "_view_name": "LeafletGeoJSONView", + "base": false, + "bottom": false, + "data": { + "features": [ + { + "geometry": { + "coordinates": [ + [ + [ + 17.1607975, + 48.006656501 + ], + [ + 17.093074, + 47.708236 + ], + [ + 16.421846, + 47.66470449899998 + ], + [ + 16.652076, + 47.6229035 + ], + [ + 16.64622, + 47.446597 + ], + [ + 16.4337615, + 47.35291849999999 + ], + [ + 16.508267499999988, + 47.00125599900002 + ], + [ + 16.113849, + 46.86906799899998 + ], + [ + 15.996236, + 46.8353985 + ], + [ + 16.121719499999983, + 46.990666499999975 + ], + [ + 16.015158499999984, + 47.36712749899999 + ], + [ + 16.171769499999982, + 47.4224 + ], + [ + 16.281081, + 47.4551325 + ], + [ + 16.372502, + 47.642485498999974 + ], + [ + 16.2690495, + 47.796405499 + ], + [ + 16.38889149900001, + 47.88160099700002 + ], + [ + 17.066741, + 48.11868149899999 + ], + [ + 17.1607975, + 48.006656501 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 15.542449499999975, + 48.907696997000016 + ], + [ + 15.753633499999978, + 48.852178501000026 + ], + [ + 16.940278, + 48.61724549899998 + ], + [ + 16.949778, + 48.535791999000025 + ], + [ + 16.851106, + 48.43863500100002 + ], + [ + 16.976203, + 48.172244498 + ], + [ + 17.066741, + 48.11868149899999 + ], + [ + 16.38889149900001, + 47.88160099700002 + ], + [ + 16.2690495, + 47.796405499 + ], + [ + 16.372502, + 47.642485498999974 + ], + [ + 16.281081, + 47.4551325 + ], + [ + 16.171769499999982, + 47.4224 + ], + [ + 15.847011, + 47.567789499000014 + ], + [ + 15.217306, + 47.7960275 + ], + [ + 15.0892495, + 47.74147100099998 + ], + [ + 14.738462, + 47.74872349999998 + ], + [ + 14.479043499999989, + 48.10441450000002 + ], + [ + 14.521179, + 48.23760949899997 + ], + [ + 14.8288425, + 48.189076999 + ], + [ + 14.964447, + 48.37851200099999 + ], + [ + 14.691014, + 48.584301998 + ], + [ + 14.990445, + 49.009649001000014 + ], + [ + 15.542449499999975, + 48.907696997000016 + ] + ], + [ + [ + 16.4380425, + 48.31626699899999 + ], + [ + 16.181900499999983, + 48.171029997 + ], + [ + 16.576992500000017, + 48.14443649899999 + ], + [ + 16.4380425, + 48.31626699899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.4380425, + 48.31626699899999 + ], + [ + 16.576992500000017, + 48.14443649899999 + ], + [ + 16.181900499999983, + 48.171029997 + ], + [ + 16.4380425, + 48.31626699899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.784528498999975, + 46.943882497 + ], + [ + 13.946724, + 46.940629999 + ], + [ + 14.844475, + 47.04809999899999 + ], + [ + 15.065120499999978, + 46.65211249700002 + ], + [ + 14.6745805, + 46.450687500000015 + ], + [ + 14.5651755, + 46.37245349699998 + ], + [ + 14.434500500000013, + 46.442943501 + ], + [ + 13.714184999, + 46.52270349999998 + ], + [ + 13.504249500000014, + 46.56630399800002 + ], + [ + 12.73139299899998, + 46.634288 + ], + [ + 12.690635, + 46.656972000999986 + ], + [ + 12.841158, + 46.860979499 + ], + [ + 12.6568335, + 47.09951749700002 + ], + [ + 13.35451949999998, + 47.09710400099999 + ], + [ + 13.784528498999975, + 46.943882497 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.171769499999982, + 47.4224 + ], + [ + 16.015158499999984, + 47.36712749899999 + ], + [ + 16.121719499999983, + 46.990666499999975 + ], + [ + 15.996236, + 46.8353985 + ], + [ + 16.038086, + 46.65614549700001 + ], + [ + 15.786422, + 46.7074695 + ], + [ + 15.649988, + 46.705757 + ], + [ + 15.40197949899999, + 46.65354849900001 + ], + [ + 15.065120499999978, + 46.65211249700002 + ], + [ + 14.844475, + 47.04809999899999 + ], + [ + 13.946724, + 46.940629999 + ], + [ + 13.784528498999975, + 46.943882497 + ], + [ + 13.86417899899999, + 47.25217 + ], + [ + 13.607597, + 47.28356499900002 + ], + [ + 13.585662999000022, + 47.47479949900003 + ], + [ + 13.722560499999986, + 47.46211150099998 + ], + [ + 13.777418, + 47.71452899899998 + ], + [ + 14.010598, + 47.700891997999975 + ], + [ + 14.738462, + 47.74872349999998 + ], + [ + 15.0892495, + 47.74147100099998 + ], + [ + 15.217306, + 47.7960275 + ], + [ + 15.847011, + 47.567789499000014 + ], + [ + 16.171769499999982, + 47.4224 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 14.691014, + 48.584301998 + ], + [ + 14.964447, + 48.37851200099999 + ], + [ + 14.8288425, + 48.189076999 + ], + [ + 14.521179, + 48.23760949899997 + ], + [ + 14.479043499999989, + 48.10441450000002 + ], + [ + 14.738462, + 47.74872349999998 + ], + [ + 14.010598, + 47.700891997999975 + ], + [ + 13.777418, + 47.71452899899998 + ], + [ + 13.722560499999986, + 47.46211150099998 + ], + [ + 13.585662999000022, + 47.47479949900003 + ], + [ + 13.516169, + 47.496504499000025 + ], + [ + 13.303931, + 48.00786949899998 + ], + [ + 12.86018150000001, + 47.996639999000024 + ], + [ + 12.751555, + 48.11281049799999 + ], + [ + 12.9446845, + 48.206692498999985 + ], + [ + 13.177043, + 48.294389997 + ], + [ + 13.407838, + 48.372160501 + ], + [ + 13.438430499999981, + 48.548895001 + ], + [ + 13.51336950000001, + 48.59097799800003 + ], + [ + 13.727090499999974, + 48.513019500999974 + ], + [ + 13.796107, + 48.71360049899999 + ], + [ + 13.839507, + 48.77160500100001 + ], + [ + 14.691014, + 48.584301998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.585662999000022, + 47.47479949900003 + ], + [ + 13.607597, + 47.28356499900002 + ], + [ + 13.86417899899999, + 47.25217 + ], + [ + 13.784528498999975, + 46.943882497 + ], + [ + 13.35451949999998, + 47.09710400099999 + ], + [ + 12.6568335, + 47.09951749700002 + ], + [ + 12.2407455, + 47.069168499 + ], + [ + 12.136014, + 47.0806675 + ], + [ + 12.114546500000017, + 47.30644400099999 + ], + [ + 12.6995915, + 47.47788599900002 + ], + [ + 12.575026499999979, + 47.632316 + ], + [ + 12.695795499999974, + 47.682222998999976 + ], + [ + 13.046055500000023, + 47.520502498999974 + ], + [ + 12.8757855, + 47.962608999 + ], + [ + 12.86018150000001, + 47.996639999000024 + ], + [ + 13.303931, + 48.00786949899998 + ], + [ + 13.516169, + 47.496504499000025 + ], + [ + 13.585662999000022, + 47.47479949900003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.019701, + 50.75097300099998 + ], + [ + 4.983341, + 50.64224249900002 + ], + [ + 4.577537999000015, + 50.542285999 + ], + [ + 4.247219500000028, + 50.596118999 + ], + [ + 4.100483, + 50.70595549799998 + ], + [ + 4.597269, + 50.76353450099998 + ], + [ + 5.019701, + 50.75097300099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 3.459731, + 50.765968500999975 + ], + [ + 3.5412725, + 50.733700499 + ], + [ + 3.775359499999979, + 50.747729999 + ], + [ + 3.815390499999978, + 50.75072499700002 + ], + [ + 3.895736499, + 50.732944498999984 + ], + [ + 4.100483, + 50.70595549799998 + ], + [ + 4.247219500000028, + 50.596118999 + ], + [ + 4.577537999000015, + 50.542285999 + ], + [ + 4.5886625, + 50.32131599899998 + ], + [ + 4.474986999, + 50.32761000099998 + ], + [ + 4.432494, + 49.941615996999985 + ], + [ + 4.233133, + 49.957828498000026 + ], + [ + 4.140853, + 49.978759997 + ], + [ + 4.027774500000021, + 50.358330498999976 + ], + [ + 3.710389, + 50.30316549999998 + ], + [ + 3.65551, + 50.461735498999985 + ], + [ + 3.615081499999974, + 50.490399001000014 + ], + [ + 3.286492, + 50.52756899799999 + ], + [ + 3.245294, + 50.71300949800002 + ], + [ + 3.176996, + 50.756164497999976 + ], + [ + 3.324118, + 50.722308999 + ], + [ + 3.459731, + 50.765968500999975 + ] + ] + ], + [ + [ + [ + 3.0187085, + 50.773532999 + ], + [ + 2.863276, + 50.70834349699999 + ], + [ + 2.842169, + 50.751404 + ], + [ + 2.945734077, + 50.793946362999975 + ], + [ + 3.0187085, + 50.773532999 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.020998999000028, + 50.75429550000001 + ], + [ + 6.26861550000001, + 50.625981 + ], + [ + 6.189312500000028, + 50.56609400100001 + ], + [ + 6.192200499000023, + 50.521055499 + ], + [ + 6.206287499999974, + 50.52130200099998 + ], + [ + 6.315556, + 50.497042498999974 + ], + [ + 6.405028500000014, + 50.323308499 + ], + [ + 6.137662499999976, + 50.129951499000015 + ], + [ + 6.0248995, + 50.182779498 + ], + [ + 5.980197499999974, + 50.329852999000025 + ], + [ + 5.721549499999981, + 50.26198950000003 + ], + [ + 5.675838499, + 50.36851499900001 + ], + [ + 5.393235, + 50.37936399900002 + ], + [ + 5.221259499999974, + 50.41729749899997 + ], + [ + 5.028495, + 50.588821499 + ], + [ + 4.983341, + 50.64224249900002 + ], + [ + 5.019701, + 50.75097300099998 + ], + [ + 5.1018525, + 50.70865249899998 + ], + [ + 5.236892, + 50.72714600099999 + ], + [ + 5.431686500000012, + 50.719803 + ], + [ + 5.687622, + 50.81192399899999 + ], + [ + 5.682000499000026, + 50.75744649799998 + ], + [ + 5.892073, + 50.755237498999975 + ], + [ + 6.020998999000028, + 50.75429550000001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.0248995, + 50.182779498 + ], + [ + 5.746319, + 49.853595 + ], + [ + 5.910688, + 49.66238800100001 + ], + [ + 5.818117, + 49.5463105 + ], + [ + 5.734555999, + 49.545690501000024 + ], + [ + 5.470882999000025, + 49.49723799899999 + ], + [ + 5.393511, + 49.617111 + ], + [ + 5.153738499999974, + 49.717926 + ], + [ + 4.969431, + 49.801825999000016 + ], + [ + 5.1100045, + 49.9253655 + ], + [ + 4.973, + 50.02899950099999 + ], + [ + 5.263063499999987, + 50.108490001 + ], + [ + 5.393235, + 50.37936399900002 + ], + [ + 5.675838499, + 50.36851499900001 + ], + [ + 5.721549499999981, + 50.26198950000003 + ], + [ + 5.980197499999974, + 50.329852999000025 + ], + [ + 6.0248995, + 50.182779498 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.393235, + 50.37936399900002 + ], + [ + 5.263063499999987, + 50.108490001 + ], + [ + 4.973, + 50.02899950099999 + ], + [ + 5.1100045, + 49.9253655 + ], + [ + 4.969431, + 49.801825999000016 + ], + [ + 4.851578, + 49.79325500099998 + ], + [ + 4.793194, + 49.98199900100002 + ], + [ + 4.896794, + 50.13742049899997 + ], + [ + 4.796697, + 50.14867799899997 + ], + [ + 4.432494, + 49.941615996999985 + ], + [ + 4.474986999, + 50.32761000099998 + ], + [ + 4.5886625, + 50.32131599899998 + ], + [ + 4.577537999000015, + 50.542285999 + ], + [ + 4.983341, + 50.64224249900002 + ], + [ + 5.028495, + 50.588821499 + ], + [ + 5.221259499999974, + 50.41729749899997 + ], + [ + 5.393235, + 50.37936399900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 24.641605998999978, + 43.733412999 + ], + [ + 25.293740500000013, + 43.654294 + ], + [ + 25.14043, + 43.26683049899998 + ], + [ + 25.076597, + 43.17778049899999 + ], + [ + 24.87026450000002, + 42.97220799899998 + ], + [ + 25.014595682999982, + 42.74855408299999 + ], + [ + 25.007195500000023, + 42.737618999 + ], + [ + 24.385927, + 42.749953498000025 + ], + [ + 24.12798399899998, + 42.77494799700003 + ], + [ + 24.165291501000013, + 42.929701498999975 + ], + [ + 23.971503499999983, + 43.06225149900001 + ], + [ + 23.566569, + 42.993892999000025 + ], + [ + 23.412767, + 43.16052199799998 + ], + [ + 23.00621, + 43.19287849800003 + ], + [ + 22.747454, + 43.38661299900002 + ], + [ + 22.666975499999978, + 43.402747498999986 + ], + [ + 22.357130499999982, + 43.80948199900001 + ], + [ + 22.536145, + 44.045511499999975 + ], + [ + 22.6751615, + 44.21566299699998 + ], + [ + 22.966399500000023, + 44.09852499700003 + ], + [ + 23.045898, + 44.06374949999997 + ], + [ + 22.838719, + 43.877852001 + ], + [ + 22.997154500000022, + 43.807626997 + ], + [ + 23.63008, + 43.79125999799999 + ], + [ + 24.112719, + 43.699566498000024 + ], + [ + 24.324132, + 43.699567996999974 + ], + [ + 24.641605998999978, + 43.733412999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 27.69541, + 43.987343 + ], + [ + 27.2195365, + 43.66462049900002 + ], + [ + 27.0018885, + 43.696867500999986 + ], + [ + 26.73043949999999, + 43.410103499 + ], + [ + 26.188978, + 43.51739349899998 + ], + [ + 25.9437855, + 43.385800999000026 + ], + [ + 25.95983, + 43.369547001 + ], + [ + 25.986506, + 43.369286499 + ], + [ + 26.004585, + 43.31875449900002 + ], + [ + 26.1674145, + 42.952155499000014 + ], + [ + 25.837491, + 42.77722749899999 + ], + [ + 25.6149615, + 42.78680849900002 + ], + [ + 25.014595682999982, + 42.74855408299999 + ], + [ + 24.87026450000002, + 42.97220799899998 + ], + [ + 25.076597, + 43.17778049899999 + ], + [ + 25.14043, + 43.26683049899998 + ], + [ + 25.293740500000013, + 43.654294 + ], + [ + 25.544640500000014, + 43.64298149699999 + ], + [ + 25.671862499999975, + 43.69133999899998 + ], + [ + 26.358359999000015, + 44.038415500999974 + ], + [ + 26.379968, + 44.04295099900003 + ], + [ + 27.271344999, + 44.12633649899999 + ], + [ + 27.69541, + 43.987343 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 28.578884, + 43.738739 + ], + [ + 28.529502998999988, + 43.42353799799997 + ], + [ + 28.0601805, + 43.31644500099998 + ], + [ + 27.88262, + 42.83841349800002 + ], + [ + 27.0944335, + 42.95391049900002 + ], + [ + 26.5899885, + 42.92011849900001 + ], + [ + 26.577725499999985, + 42.985697 + ], + [ + 26.1674145, + 42.952155499000014 + ], + [ + 26.004585, + 43.31875449900002 + ], + [ + 25.986506, + 43.369286499 + ], + [ + 25.95983, + 43.369547001 + ], + [ + 25.9437855, + 43.385800999000026 + ], + [ + 26.188978, + 43.51739349899998 + ], + [ + 26.73043949999999, + 43.410103499 + ], + [ + 27.0018885, + 43.696867500999986 + ], + [ + 27.2195365, + 43.66462049900002 + ], + [ + 27.69541, + 43.987343 + ], + [ + 28.578884, + 43.738739 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 27.88262, + 42.83841349800002 + ], + [ + 27.899066999000013, + 42.70024550099998 + ], + [ + 27.4479045, + 42.46148699899999 + ], + [ + 28.03551249999998, + 41.983079498999984 + ], + [ + 27.559395, + 41.90478149699999 + ], + [ + 27.059650499999975, + 42.08833699799999 + ], + [ + 26.9492285, + 42.00021349899998 + ], + [ + 26.561544500000025, + 41.92627349899999 + ], + [ + 26.538056, + 42.15419699900002 + ], + [ + 26.192733499999974, + 42.208129997000015 + ], + [ + 26.057769499000017, + 42.01765649999999 + ], + [ + 25.609251, + 42.200959 + ], + [ + 25.348064, + 42.11437749800001 + ], + [ + 25.007195500000023, + 42.737618999 + ], + [ + 25.014595682999982, + 42.74855408299999 + ], + [ + 25.6149615, + 42.78680849900002 + ], + [ + 25.837491, + 42.77722749899999 + ], + [ + 26.1674145, + 42.952155499000014 + ], + [ + 26.577725499999985, + 42.985697 + ], + [ + 26.5899885, + 42.92011849900001 + ], + [ + 27.0944335, + 42.95391049900002 + ], + [ + 27.88262, + 42.83841349800002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 24.385927, + 42.749953498000025 + ], + [ + 24.421009500000025, + 42.55306399699998 + ], + [ + 23.8904885, + 42.54626950099998 + ], + [ + 23.958568, + 42.38330149900003 + ], + [ + 23.77226, + 42.18118549899998 + ], + [ + 23.786217, + 41.833541998999976 + ], + [ + 24.0745475, + 41.672703996999985 + ], + [ + 24.059744, + 41.522112 + ], + [ + 23.624222998999983, + 41.375727497000014 + ], + [ + 22.9275915, + 41.33853949899998 + ], + [ + 22.968327499999987, + 41.51983549900001 + ], + [ + 22.867214, + 42.022199496999974 + ], + [ + 22.510412, + 42.15515849799999 + ], + [ + 22.3602065, + 42.311157001000026 + ], + [ + 22.559255, + 42.480283998 + ], + [ + 22.461472, + 42.64849049899999 + ], + [ + 22.44282149899999, + 42.82545650100002 + ], + [ + 22.5155105, + 42.86853849800002 + ], + [ + 22.7483995, + 42.889787496999986 + ], + [ + 23.00621, + 43.19287849800003 + ], + [ + 23.412767, + 43.16052199799998 + ], + [ + 23.566569, + 42.993892999000025 + ], + [ + 23.971503499999983, + 43.06225149900001 + ], + [ + 24.165291501000013, + 42.929701498999975 + ], + [ + 24.12798399899998, + 42.77494799700003 + ], + [ + 24.385927, + 42.749953498000025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 25.007195500000023, + 42.737618999 + ], + [ + 25.348064, + 42.11437749800001 + ], + [ + 25.609251, + 42.200959 + ], + [ + 26.057769499000017, + 42.01765649999999 + ], + [ + 26.192733499999974, + 42.208129997000015 + ], + [ + 26.538056, + 42.15419699900002 + ], + [ + 26.561544500000025, + 41.92627349899999 + ], + [ + 26.357879, + 41.71110449899999 + ], + [ + 26.060393, + 41.68851600099998 + ], + [ + 26.158688499999982, + 41.39118249699999 + ], + [ + 25.948626, + 41.32034200099997 + ], + [ + 25.90643749999998, + 41.307574998 + ], + [ + 25.224698499999988, + 41.26463099799997 + ], + [ + 25.1793755, + 41.310187998 + ], + [ + 24.783956, + 41.36018899700002 + ], + [ + 24.525637, + 41.568699998 + ], + [ + 24.059744, + 41.522112 + ], + [ + 24.0745475, + 41.672703996999985 + ], + [ + 23.786217, + 41.833541998999976 + ], + [ + 23.77226, + 42.18118549899998 + ], + [ + 23.958568, + 42.38330149900003 + ], + [ + 23.8904885, + 42.54626950099998 + ], + [ + 24.421009500000025, + 42.55306399699998 + ], + [ + 24.385927, + 42.749953498000025 + ], + [ + 25.007195500000023, + 42.737618999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 34.43715, + 35.60157049899999 + ], + [ + 33.906834, + 35.257218 + ], + [ + 34.07786149999998, + 34.966491001 + ], + [ + 33.6778885, + 34.971539999000015 + ], + [ + 33.006973499000026, + 34.64828849999998 + ], + [ + 32.42596450000002, + 34.743192497999985 + ], + [ + 32.269781, + 35.06621399900001 + ], + [ + 32.881518, + 35.16222 + ], + [ + 32.9214245, + 35.403959998 + ], + [ + 33.652597, + 35.35919099900002 + ], + [ + 34.588354, + 35.69543449899999 + ], + [ + 34.43715, + 35.60157049899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 14.6693535, + 50.016293 + ], + [ + 14.3383055, + 49.9483545 + ], + [ + 14.224306, + 50.102918999 + ], + [ + 14.6693535, + 50.016293 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 15.496953, + 49.86118449899999 + ], + [ + 14.932018500000027, + 49.54910099900002 + ], + [ + 13.765590499999973, + 49.51399049899999 + ], + [ + 13.818361, + 49.920024996999985 + ], + [ + 13.407053500000018, + 50.089616998999986 + ], + [ + 14.486485499000025, + 50.505026997000016 + ], + [ + 15.1467705, + 50.52294249800002 + ], + [ + 15.104144500000018, + 50.37609500100001 + ], + [ + 15.4375865, + 50.109857498999986 + ], + [ + 15.3627085, + 50.04134899899998 + ], + [ + 15.496953, + 49.86118449899999 + ] + ], + [ + [ + 14.6693535, + 50.016293 + ], + [ + 14.224306, + 50.102918999 + ], + [ + 14.3383055, + 49.9483545 + ], + [ + 14.6693535, + 50.016293 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.407053500000018, + 50.089616998999986 + ], + [ + 13.818361, + 49.920024996999985 + ], + [ + 13.765590499999973, + 49.51399049899999 + ], + [ + 14.932018500000027, + 49.54910099900002 + ], + [ + 14.903884, + 49.3331485 + ], + [ + 15.586756499999979, + 48.94715949800002 + ], + [ + 15.542449499999975, + 48.907696997000016 + ], + [ + 14.990445, + 49.009649001000014 + ], + [ + 14.691014, + 48.584301998 + ], + [ + 13.839507, + 48.77160500100001 + ], + [ + 13.5515785, + 48.96778749700002 + ], + [ + 13.4166515, + 48.980035499 + ], + [ + 13.170907999, + 49.173579501 + ], + [ + 12.633763499999986, + 49.47619499799998 + ], + [ + 12.593778499999985, + 49.54219149900001 + ], + [ + 12.401524, + 49.75837299800003 + ], + [ + 12.550988500000017, + 49.905088001000024 + ], + [ + 13.301367, + 50.09964349699999 + ], + [ + 13.407053500000018, + 50.089616998999986 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 14.6188, + 50.85780449700002 + ], + [ + 14.343548, + 50.667924 + ], + [ + 14.486485499000025, + 50.505026997000016 + ], + [ + 13.407053500000018, + 50.089616998999986 + ], + [ + 13.301367, + 50.09964349699999 + ], + [ + 12.550988500000017, + 49.905088001000024 + ], + [ + 12.260799, + 50.05815649800002 + ], + [ + 12.160679, + 50.219848997999975 + ], + [ + 12.100900500000023, + 50.31802799799999 + ], + [ + 12.5837785, + 50.40707899900002 + ], + [ + 12.948144500000012, + 50.404311499000016 + ], + [ + 13.501846, + 50.63364299900002 + ], + [ + 13.652174, + 50.73035999799998 + ], + [ + 14.388335, + 50.90029899799998 + ], + [ + 14.317873500000019, + 51.05469899899998 + ], + [ + 14.491221, + 51.043530498999985 + ], + [ + 14.6188, + 50.85780449700002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.86327, + 50.19812299900002 + ], + [ + 16.8042, + 49.598813001 + ], + [ + 16.393628, + 49.580610501000024 + ], + [ + 15.496953, + 49.86118449899999 + ], + [ + 15.3627085, + 50.04134899899998 + ], + [ + 15.4375865, + 50.109857498999986 + ], + [ + 15.104144500000018, + 50.37609500100001 + ], + [ + 15.1467705, + 50.52294249800002 + ], + [ + 14.486485499000025, + 50.505026997000016 + ], + [ + 14.343548, + 50.667924 + ], + [ + 14.6188, + 50.85780449700002 + ], + [ + 14.823362, + 50.87055049700001 + ], + [ + 15.032691, + 51.021315999000024 + ], + [ + 15.535267499999975, + 50.779375999000024 + ], + [ + 16.107318, + 50.662072998999975 + ], + [ + 16.443536, + 50.58625749999999 + ], + [ + 16.195729, + 50.432135001 + ], + [ + 16.58029, + 50.14278799800002 + ], + [ + 16.86327, + 50.19812299900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.8042, + 49.598813001 + ], + [ + 16.8052965, + 49.40573149800002 + ], + [ + 16.943, + 49.493225000999985 + ], + [ + 17.15990149999999, + 49.27505750099999 + ], + [ + 17.11208, + 49.07727099800002 + ], + [ + 17.64693, + 48.85426599800002 + ], + [ + 17.3967255, + 48.81334999799998 + ], + [ + 17.2016625, + 48.878028997 + ], + [ + 16.940278, + 48.61724549899998 + ], + [ + 15.753633499999978, + 48.852178501000026 + ], + [ + 15.542449499999975, + 48.907696997000016 + ], + [ + 15.586756499999979, + 48.94715949800002 + ], + [ + 14.903884, + 49.3331485 + ], + [ + 14.932018500000027, + 49.54910099900002 + ], + [ + 15.496953, + 49.86118449899999 + ], + [ + 16.393628, + 49.580610501000024 + ], + [ + 16.8042, + 49.598813001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 17.429605, + 50.25451300100002 + ], + [ + 17.14739450000002, + 49.877996499 + ], + [ + 17.4669015, + 49.870716499000025 + ], + [ + 17.9168565, + 49.53780899899999 + ], + [ + 18.4035955, + 49.39674549900002 + ], + [ + 18.322436, + 49.315059 + ], + [ + 17.64693, + 48.85426599800002 + ], + [ + 17.11208, + 49.07727099800002 + ], + [ + 17.15990149999999, + 49.27505750099999 + ], + [ + 16.943, + 49.493225000999985 + ], + [ + 16.8052965, + 49.40573149800002 + ], + [ + 16.8042, + 49.598813001 + ], + [ + 16.86327, + 50.19812299900002 + ], + [ + 17.028323, + 50.22999699899998 + ], + [ + 16.90792449999998, + 50.44945400099999 + ], + [ + 17.429605, + 50.25451300100002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 18.035060999, + 50.06577199899999 + ], + [ + 18.575724, + 49.910423 + ], + [ + 18.851551, + 49.51718900100002 + ], + [ + 18.4035955, + 49.39674549900002 + ], + [ + 17.9168565, + 49.53780899899999 + ], + [ + 17.4669015, + 49.870716499000025 + ], + [ + 17.14739450000002, + 49.877996499 + ], + [ + 17.429605, + 50.25451300100002 + ], + [ + 17.718403998999975, + 50.32095 + ], + [ + 17.758479, + 50.206568 + ], + [ + 17.592736, + 50.160014 + ], + [ + 17.868675, + 49.972545997 + ], + [ + 18.035060999, + 50.06577199899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.4104115, + 46.65302049899998 + ], + [ + 8.4776735, + 46.52760249900001 + ], + [ + 8.384717, + 46.452158499 + ], + [ + 7.8771375, + 45.926954997999985 + ], + [ + 7.86407650000001, + 45.91675049999998 + ], + [ + 7.044886, + 45.92241299900002 + ], + [ + 6.797888999, + 46.136798999 + ], + [ + 6.821063998999989, + 46.42715449899998 + ], + [ + 6.24136, + 46.343582497 + ], + [ + 6.231694, + 46.329429498000025 + ], + [ + 6.219547, + 46.31187799899999 + ], + [ + 6.310211, + 46.24404549899998 + ], + [ + 5.956067, + 46.1320955 + ], + [ + 6.125608, + 46.317229999 + ], + [ + 6.064003, + 46.41622899700002 + ], + [ + 6.138106, + 46.55766699700001 + ], + [ + 6.460011, + 46.85155149899998 + ], + [ + 6.780046, + 46.85264299900001 + ], + [ + 6.742307, + 46.827455498 + ], + [ + 6.852262497000027, + 46.77425905699999 + ], + [ + 6.866233500000021, + 46.909293499 + ], + [ + 6.8962095, + 46.92532599899999 + ], + [ + 6.9924145, + 46.830588497 + ], + [ + 6.817892500000028, + 46.51653899899998 + ], + [ + 7.237020500000028, + 46.55379999899998 + ], + [ + 7.221457, + 46.32921249999998 + ], + [ + 8.4104115, + 46.65302049899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.43689, + 47.379970499000024 + ], + [ + 7.644196500000021, + 47.367268998999975 + ], + [ + 7.956853, + 47.45520049700002 + ], + [ + 8.007361, + 47.339403 + ], + [ + 7.824728, + 47.26563749799999 + ], + [ + 7.838686, + 47.234413999000026 + ], + [ + 7.956177501000013, + 47.00342149900001 + ], + [ + 7.857267001000025, + 46.87143149799999 + ], + [ + 8.049088, + 46.788008 + ], + [ + 8.368889498999977, + 46.787975500000016 + ], + [ + 8.395225, + 46.771538 + ], + [ + 8.4489595, + 46.764517001 + ], + [ + 8.4104115, + 46.65302049899998 + ], + [ + 7.221457, + 46.32921249999998 + ], + [ + 7.237020500000028, + 46.55379999899998 + ], + [ + 6.817892500000028, + 46.51653899899998 + ], + [ + 6.9924145, + 46.830588497 + ], + [ + 6.8962095, + 46.92532599899999 + ], + [ + 6.866233500000021, + 46.909293499 + ], + [ + 6.852262497000027, + 46.77425905699999 + ], + [ + 6.742307, + 46.827455498 + ], + [ + 6.780046, + 46.85264299900001 + ], + [ + 6.460011, + 46.85155149899998 + ], + [ + 6.858914, + 47.16529449900003 + ], + [ + 7.061636, + 47.34373449899999 + ], + [ + 6.879806, + 47.35243999800002 + ], + [ + 6.939186, + 47.433704499999976 + ], + [ + 7.130353, + 47.503040499 + ], + [ + 7.326466, + 47.43985350000003 + ], + [ + 7.375684499999977, + 47.414077 + ], + [ + 7.43689, + 47.379970499000024 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.634097, + 47.56111350100002 + ], + [ + 7.713784499999974, + 47.539405 + ], + [ + 7.894107500000018, + 47.586374998999986 + ], + [ + 8.426434500000028, + 47.567548998 + ], + [ + 8.410716, + 47.248037497999974 + ], + [ + 8.4121295, + 47.14073749800002 + ], + [ + 7.838686, + 47.234413999000026 + ], + [ + 7.824728, + 47.26563749799999 + ], + [ + 8.007361, + 47.339403 + ], + [ + 7.956853, + 47.45520049700002 + ], + [ + 7.644196500000021, + 47.367268998999975 + ], + [ + 7.43689, + 47.379970499000024 + ], + [ + 7.375684499999977, + 47.414077 + ], + [ + 7.326466, + 47.43985350000003 + ], + [ + 7.380894, + 47.431892499000014 + ], + [ + 7.42113949899999, + 47.446387999000024 + ], + [ + 7.445019, + 47.46172349699998 + ], + [ + 7.510905499999978, + 47.50258249799998 + ], + [ + 7.5551595, + 47.56456399699999 + ], + [ + 7.589039, + 47.589877999 + ], + [ + 7.634097, + 47.56111350100002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.807784500000025, + 47.220560001000024 + ], + [ + 8.69248349899999, + 47.16362499899998 + ], + [ + 8.410716, + 47.248037497999974 + ], + [ + 8.426434500000028, + 47.567548998 + ], + [ + 8.562841, + 47.599432498 + ], + [ + 8.595602, + 47.6055445 + ], + [ + 8.606369500000028, + 47.66900549899998 + ], + [ + 8.663354, + 47.685892498999976 + ], + [ + 8.670461, + 47.68486249900002 + ], + [ + 8.943635500000028, + 47.37583749800001 + ], + [ + 8.807784500000025, + 47.220560001000024 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 12.6995915, + 47.47788599900002 + ], + [ + 12.114546500000017, + 47.30644400099999 + ], + [ + 12.136014, + 47.0806675 + ], + [ + 11.627199500000017, + 47.013299 + ], + [ + 11.164281500000016, + 46.96572250000003 + ], + [ + 11.02225, + 46.765410498999984 + ], + [ + 10.4696515, + 46.854909 + ], + [ + 10.389317999000014, + 47.00052449999998 + ], + [ + 10.14497449999999, + 46.851009498999986 + ], + [ + 10.212995, + 47.157583999 + ], + [ + 10.178353, + 47.27011399899999 + ], + [ + 10.454439, + 47.55579699899999 + ], + [ + 10.886199, + 47.536847998999974 + ], + [ + 10.991202499999986, + 47.396131 + ], + [ + 11.0165005, + 47.396368000999985 + ], + [ + 11.4214275, + 47.44485199899998 + ], + [ + 11.410219, + 47.49532400099997 + ], + [ + 11.632883, + 47.59244599700003 + ], + [ + 12.060662, + 47.618743499 + ], + [ + 12.338045498999975, + 47.697087501 + ], + [ + 12.575026499999979, + 47.632316 + ], + [ + 12.6995915, + 47.47788599900002 + ] + ] + ], + [ + [ + [ + 12.841158, + 46.860979499 + ], + [ + 12.690635, + 46.656972000999986 + ], + [ + 12.477924, + 46.67983549799999 + ], + [ + 12.143811, + 46.913779998 + ], + [ + 12.2407455, + 47.069168499 + ], + [ + 12.6568335, + 47.09951749700002 + ], + [ + 12.841158, + 46.860979499 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.178353, + 47.27011399899999 + ], + [ + 10.212995, + 47.157583999 + ], + [ + 10.14497449999999, + 46.851009498999986 + ], + [ + 9.607078, + 47.0607745 + ], + [ + 9.620580500000017, + 47.15164549999997 + ], + [ + 9.530749, + 47.27058100099998 + ], + [ + 9.673370499999976, + 47.38151050099998 + ], + [ + 9.5587205, + 47.54189299900003 + ], + [ + 9.967813499999977, + 47.546240496999985 + ], + [ + 9.999526, + 47.48301699699999 + ], + [ + 10.178353, + 47.27011399899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 4.47678350000001, + 50.8203775 + ], + [ + 4.4804765, + 50.794257999000024 + ], + [ + 4.2455665, + 50.817627 + ], + [ + 4.47678350000001, + 50.8203775 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.237716499999976, + 51.261600499 + ], + [ + 5.26107349900002, + 51.14696499899998 + ], + [ + 4.981574500000022, + 51.034885498999984 + ], + [ + 4.789319, + 51.038928999 + ], + [ + 4.528663, + 50.99226449899999 + ], + [ + 4.240999, + 51.036868997 + ], + [ + 4.175792, + 51.10121150100002 + ], + [ + 4.31116750000001, + 51.12614799900001 + ], + [ + 4.242049, + 51.35396699900002 + ], + [ + 4.24366950000001, + 51.37472949900001 + ], + [ + 4.279565, + 51.37601749700002 + ], + [ + 4.669544, + 51.426383999 + ], + [ + 4.759926, + 51.50246449799999 + ], + [ + 5.10218, + 51.42900499699999 + ], + [ + 5.237716499999976, + 51.261600499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.5662835, + 51.22083649799998 + ], + [ + 5.798274, + 51.059853498999985 + ], + [ + 5.766149, + 51.00923549999999 + ], + [ + 5.758272498999986, + 50.954795 + ], + [ + 5.687622, + 50.81192399899999 + ], + [ + 5.431686500000012, + 50.719803 + ], + [ + 5.236892, + 50.72714600099999 + ], + [ + 5.1018525, + 50.70865249899998 + ], + [ + 4.981574500000022, + 51.034885498999984 + ], + [ + 5.26107349900002, + 51.14696499899998 + ], + [ + 5.237716499999976, + 51.261600499 + ], + [ + 5.5662835, + 51.22083649799998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 4.240999, + 51.036868997 + ], + [ + 4.147153, + 50.96939849900002 + ], + [ + 3.895736499, + 50.732944498999984 + ], + [ + 3.815390499999978, + 50.75072499700002 + ], + [ + 3.775359499999979, + 50.747729999 + ], + [ + 3.5412725, + 50.733700499 + ], + [ + 3.459731, + 50.765968500999975 + ], + [ + 3.4667465, + 50.90209650000003 + ], + [ + 3.419824, + 50.910934999 + ], + [ + 3.331306, + 51.098873 + ], + [ + 3.41093, + 51.159888997 + ], + [ + 3.380661, + 51.274299497000015 + ], + [ + 3.8563395, + 51.211056 + ], + [ + 3.9776665, + 51.225131998999984 + ], + [ + 4.23481750000002, + 51.348254 + ], + [ + 4.242049, + 51.35396699900002 + ], + [ + 4.31116750000001, + 51.12614799900001 + ], + [ + 4.175792, + 51.10121150100002 + ], + [ + 4.240999, + 51.036868997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 4.981574500000022, + 51.034885498999984 + ], + [ + 5.1018525, + 50.70865249899998 + ], + [ + 5.019701, + 50.75097300099998 + ], + [ + 4.597269, + 50.76353450099998 + ], + [ + 4.100483, + 50.70595549799998 + ], + [ + 3.895736499, + 50.732944498999984 + ], + [ + 4.147153, + 50.96939849900002 + ], + [ + 4.240999, + 51.036868997 + ], + [ + 4.528663, + 50.99226449899999 + ], + [ + 4.789319, + 51.038928999 + ], + [ + 4.981574500000022, + 51.034885498999984 + ] + ], + [ + [ + 4.47678350000001, + 50.8203775 + ], + [ + 4.2455665, + 50.817627 + ], + [ + 4.4804765, + 50.794257999000024 + ], + [ + 4.47678350000001, + 50.8203775 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 3.0187085, + 50.773532999 + ], + [ + 2.945734077, + 50.793946362999975 + ], + [ + 2.842169, + 50.751404 + ], + [ + 2.863276, + 50.70834349699999 + ], + [ + 2.607036, + 50.91268949900001 + ], + [ + 2.546011, + 51.08938199800002 + ], + [ + 2.749051499000018, + 51.161769999 + ], + [ + 3.110688499999981, + 51.31225950100003 + ], + [ + 3.367216499999984, + 51.368134499 + ], + [ + 3.380661, + 51.274299497000015 + ], + [ + 3.41093, + 51.159888997 + ], + [ + 3.331306, + 51.098873 + ], + [ + 3.419824, + 50.910934999 + ], + [ + 3.4667465, + 50.90209650000003 + ], + [ + 3.459731, + 50.765968500999975 + ], + [ + 3.324118, + 50.722308999 + ], + [ + 3.176996, + 50.756164497999976 + ], + [ + 3.098481, + 50.779019 + ], + [ + 3.0187085, + 50.773532999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.479113, + 50.440685497 + ], + [ + 9.286735, + 50.437298 + ], + [ + 9.042425499999979, + 50.49799 + ], + [ + 8.577542, + 50.415019 + ], + [ + 8.5141395, + 50.39935149899998 + ], + [ + 8.467215, + 50.41504849900002 + ], + [ + 8.354557, + 50.29422999899998 + ], + [ + 8.1219135, + 50.277224999 + ], + [ + 7.971559500000012, + 50.40622049900003 + ], + [ + 8.151592, + 50.59937099899997 + ], + [ + 8.125776499999972, + 50.685813998000015 + ], + [ + 8.355495999000027, + 50.862001 + ], + [ + 8.477892, + 50.96904749700002 + ], + [ + 8.9746, + 50.938304001 + ], + [ + 9.1488685, + 50.836645 + ], + [ + 9.441055, + 50.79564450100003 + ], + [ + 9.611464500000011, + 50.7354765 + ], + [ + 9.466069, + 50.660618 + ], + [ + 9.479113, + 50.440685497 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.928339, + 51.375299 + ], + [ + 10.206942, + 51.19064899699998 + ], + [ + 10.210013, + 51.14408299899998 + ], + [ + 10.202181, + 51.012009001000024 + ], + [ + 10.18234849999999, + 50.99848750000001 + ], + [ + 10.021558500000026, + 50.9929495 + ], + [ + 9.9261765, + 50.76738999899999 + ], + [ + 10.077555500000017, + 50.63762399699999 + ], + [ + 10.0413385, + 50.51646949899998 + ], + [ + 9.935655, + 50.419606499999986 + ], + [ + 9.7329145, + 50.356149499000026 + ], + [ + 9.479113, + 50.440685497 + ], + [ + 9.466069, + 50.660618 + ], + [ + 9.611464500000011, + 50.7354765 + ], + [ + 9.441055, + 50.79564450100003 + ], + [ + 9.1488685, + 50.836645 + ], + [ + 8.9746, + 50.938304001 + ], + [ + 8.477892, + 50.96904749700002 + ], + [ + 8.549084999, + 51.101868001000014 + ], + [ + 8.7582145, + 51.17718149900003 + ], + [ + 8.556348, + 51.277495 + ], + [ + 8.970653500000026, + 51.5067735 + ], + [ + 9.155410500000016, + 51.44267499900002 + ], + [ + 9.440457, + 51.650393999000016 + ], + [ + 9.685331, + 51.58201649900002 + ], + [ + 9.672377499999982, + 51.568403999 + ], + [ + 9.62582500100001, + 51.580205 + ], + [ + 9.647755500000017, + 51.55251099899999 + ], + [ + 9.557291, + 51.35137849900002 + ], + [ + 9.568025, + 51.34000149899998 + ], + [ + 9.710295479000024, + 51.30153775000002 + ], + [ + 9.928339, + 51.375299 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 12.926951499999973, + 54.427963998999985 + ], + [ + 12.363174500000014, + 54.267097998999986 + ], + [ + 13.017391718999988, + 54.43872077399999 + ], + [ + 13.109225, + 54.27934049800001 + ], + [ + 13.319396, + 54.19350599799998 + ], + [ + 13.344701499999985, + 54.18111149700002 + ], + [ + 13.742715499999974, + 54.031386499 + ], + [ + 13.819152499999973, + 53.841944996999985 + ], + [ + 14.267542, + 53.69780649699999 + ], + [ + 14.412157, + 53.329635998000015 + ], + [ + 13.710065499999985, + 53.4790625 + ], + [ + 13.2414035, + 53.232401 + ], + [ + 12.984683, + 53.1649855 + ], + [ + 12.3317515, + 53.318011 + ], + [ + 12.325101500000017, + 53.321301498000025 + ], + [ + 11.265732, + 53.121978 + ], + [ + 11.171861499999977, + 53.15664399799999 + ], + [ + 10.595047, + 53.36392750099998 + ], + [ + 10.951918499999977, + 53.64762249900002 + ], + [ + 10.76296450000001, + 53.811153 + ], + [ + 10.903661500999988, + 53.95682200099998 + ], + [ + 11.5617785, + 54.02808849799999 + ], + [ + 11.998484500000018, + 54.174969998999984 + ], + [ + 12.201068, + 54.24469549899999 + ], + [ + 12.2855305, + 54.274951999 + ], + [ + 12.520881067, + 54.47423454199998 + ], + [ + 12.926951499999973, + 54.427963998999985 + ] + ] + ], + [ + [ + [ + 13.39108349999998, + 54.651317 + ], + [ + 13.67934, + 54.56278249799999 + ], + [ + 13.6824535, + 54.349581 + ], + [ + 13.394217500000025, + 54.22250250000002 + ], + [ + 13.114586, + 54.33190799699997 + ], + [ + 13.2614835, + 54.38291650000002 + ], + [ + 13.270131, + 54.48017349899999 + ], + [ + 13.144181, + 54.546965499 + ], + [ + 13.39108349999998, + 54.651317 + ] + ] + ], + [ + [ + [ + 14.2130775, + 53.86647949899998 + ], + [ + 13.826150499999983, + 53.84968499799999 + ], + [ + 13.750745999, + 54.14996050100001 + ], + [ + 13.9720845, + 54.06874749799999 + ], + [ + 14.226302, + 53.92865299800002 + ], + [ + 14.2130775, + 53.86647949899998 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.759314500000016, + 52.79583050000002 + ], + [ + 11.0087815, + 52.496747500000026 + ], + [ + 10.93454250000002, + 52.471794999 + ], + [ + 11.086244, + 52.22863399900001 + ], + [ + 10.964414499999975, + 52.05664299799997 + ], + [ + 10.801428499999986, + 52.0480005 + ], + [ + 10.561227, + 52.00406599899998 + ], + [ + 10.701372, + 51.64218749999998 + ], + [ + 10.677283, + 51.63837600099998 + ], + [ + 10.488551, + 51.574778498 + ], + [ + 10.365365, + 51.55589100100002 + ], + [ + 9.928339, + 51.375299 + ], + [ + 9.710295479000024, + 51.30153775000002 + ], + [ + 9.568025, + 51.34000149899998 + ], + [ + 9.557291, + 51.35137849900002 + ], + [ + 9.647755500000017, + 51.55251099899999 + ], + [ + 9.62582500100001, + 51.580205 + ], + [ + 9.672377499999982, + 51.568403999 + ], + [ + 9.685331, + 51.58201649900002 + ], + [ + 9.440457, + 51.650393999000016 + ], + [ + 9.417317500000024, + 51.647269499 + ], + [ + 9.894248, + 51.906155 + ], + [ + 10.065526, + 51.927359998999975 + ], + [ + 10.204688499999975, + 52.00699 + ], + [ + 10.234005, + 52.170195998999986 + ], + [ + 10.257076499999982, + 52.18327799799999 + ], + [ + 10.0344675, + 52.28376599699999 + ], + [ + 10.2921475, + 52.447884499 + ], + [ + 10.273742500000026, + 52.51064 + ], + [ + 10.44441, + 52.8157635 + ], + [ + 10.759314500000016, + 52.79583050000002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.915827, + 53.011021497 + ], + [ + 9.115997, + 52.896952499 + ], + [ + 9.3256025, + 52.767712500000016 + ], + [ + 9.534658499999978, + 52.66006649899998 + ], + [ + 9.734624, + 52.63830249900002 + ], + [ + 10.273742500000026, + 52.51064 + ], + [ + 10.2921475, + 52.447884499 + ], + [ + 10.0344675, + 52.28376599699999 + ], + [ + 10.257076499999982, + 52.18327799799999 + ], + [ + 10.234005, + 52.170195998999986 + ], + [ + 10.204688499999975, + 52.00699 + ], + [ + 10.065526, + 51.927359998999975 + ], + [ + 9.894248, + 51.906155 + ], + [ + 9.417317500000024, + 51.647269499 + ], + [ + 9.459648500000014, + 51.86279749800002 + ], + [ + 9.323343500000021, + 51.85506099700001 + ], + [ + 9.308893, + 51.92271950100002 + ], + [ + 9.15560449899999, + 52.09783 + ], + [ + 8.985787500000015, + 52.19457649899999 + ], + [ + 9.125252499999988, + 52.411993498000015 + ], + [ + 8.70300899900002, + 52.500437998 + ], + [ + 8.2972135, + 52.456497997999975 + ], + [ + 8.308324, + 52.499112 + ], + [ + 8.459277499999985, + 52.80105599699999 + ], + [ + 8.657161, + 53.00899449899998 + ], + [ + 8.711424, + 53.044629997000015 + ], + [ + 8.915827, + 53.011021497 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.614913999, + 53.882118 + ], + [ + 9.02991750000001, + 53.825564997000015 + ], + [ + 9.02242, + 53.87951750000002 + ], + [ + 9.199750999, + 53.88010449799998 + ], + [ + 9.48589, + 53.707664497999986 + ], + [ + 9.73010399899999, + 53.557580997 + ], + [ + 9.768861, + 53.50527899799999 + ], + [ + 10.308312, + 53.43322149800002 + ], + [ + 10.469184, + 53.385844 + ], + [ + 10.595047, + 53.36392750099998 + ], + [ + 11.171861499999977, + 53.15664399799999 + ], + [ + 11.265732, + 53.121978 + ], + [ + 11.597784499999989, + 53.03592649900003 + ], + [ + 11.505027, + 52.941032499000016 + ], + [ + 10.841556, + 52.852205 + ], + [ + 10.759314500000016, + 52.79583050000002 + ], + [ + 10.44441, + 52.8157635 + ], + [ + 10.273742500000026, + 52.51064 + ], + [ + 9.734624, + 52.63830249900002 + ], + [ + 9.534658499999978, + 52.66006649899998 + ], + [ + 9.3256025, + 52.767712500000016 + ], + [ + 9.115997, + 52.896952499 + ], + [ + 8.915827, + 53.011021497 + ], + [ + 8.979256, + 53.045849499999974 + ], + [ + 8.984185500000024, + 53.12607099899998 + ], + [ + 8.485330499999975, + 53.22712 + ], + [ + 8.499987498999985, + 53.366847999000015 + ], + [ + 8.492652, + 53.47242000099999 + ], + [ + 8.652134000999979, + 53.51601699899999 + ], + [ + 8.650632499999972, + 53.602565001000016 + ], + [ + 8.520410500000025, + 53.60620500099998 + ], + [ + 8.614913999, + 53.882118 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.554898499999979, + 53.52513100099998 + ], + [ + 8.492652, + 53.47242000099999 + ], + [ + 8.499987498999985, + 53.366847999000015 + ], + [ + 8.485330499999975, + 53.22712 + ], + [ + 8.6548985, + 53.10886449999998 + ], + [ + 8.711424, + 53.044629997000015 + ], + [ + 8.657161, + 53.00899449899998 + ], + [ + 8.459277499999985, + 52.80105599699999 + ], + [ + 8.308324, + 52.499112 + ], + [ + 8.2972135, + 52.456497997999975 + ], + [ + 8.4661865, + 52.267614 + ], + [ + 8.410586500000022, + 52.11511499699998 + ], + [ + 8.096448, + 52.05714500099998 + ], + [ + 7.885159, + 52.0833025 + ], + [ + 8.007796, + 52.115332997999985 + ], + [ + 7.956465, + 52.2724905 + ], + [ + 7.964625500000011, + 52.32485850099999 + ], + [ + 7.608038500000021, + 52.47401599900002 + ], + [ + 7.317481, + 52.28027199899998 + ], + [ + 7.099148999000022, + 52.24305849699999 + ], + [ + 7.065685, + 52.24137299900002 + ], + [ + 6.987941499999977, + 52.469540999 + ], + [ + 6.697865499999978, + 52.48628599800003 + ], + [ + 6.709732499999973, + 52.62782349899999 + ], + [ + 7.006229500000018, + 52.63876299899999 + ], + [ + 7.092692, + 52.83820099899998 + ], + [ + 7.202794499999982, + 53.11328149899998 + ], + [ + 7.208935, + 53.243064498000024 + ], + [ + 7.2643, + 53.32552649799999 + ], + [ + 6.999446499999976, + 53.359887501 + ], + [ + 7.24368149899999, + 53.66778199700002 + ], + [ + 7.550173, + 53.67503749999997 + ], + [ + 7.809895499999982, + 53.70766199899998 + ], + [ + 8.091291, + 53.638109000999975 + ], + [ + 8.061327, + 53.50595700100001 + ], + [ + 8.195555, + 53.409171499000024 + ], + [ + 8.329544, + 53.614027 + ], + [ + 8.554898499999979, + 53.52513100099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.4077795, + 51.828092001000016 + ], + [ + 6.490212, + 51.81137700099998 + ], + [ + 6.91086150000001, + 51.746098501 + ], + [ + 6.902276, + 51.635684501000014 + ], + [ + 6.833152, + 51.579647997999984 + ], + [ + 6.928003, + 51.49776699900002 + ], + [ + 6.998652, + 51.53370049799997 + ], + [ + 7.010207, + 51.53272849899997 + ], + [ + 7.1042005, + 51.48126749800002 + ], + [ + 7.13603, + 51.426038 + ], + [ + 7.117675, + 51.380272499 + ], + [ + 7.167288, + 51.3129025 + ], + [ + 7.3066935, + 51.23887549900002 + ], + [ + 7.295806500000026, + 51.20539199900003 + ], + [ + 7.268179499999974, + 51.14565750000003 + ], + [ + 7.166349998999976, + 51.153941 + ], + [ + 6.997724, + 51.11797599800002 + ], + [ + 6.990593499999989, + 51.09159799899999 + ], + [ + 6.898045, + 51.06488549699998 + ], + [ + 6.853487500000028, + 51.08425600100003 + ], + [ + 6.773632500000019, + 51.06439000099999 + ], + [ + 6.480495499000028, + 51.034178998000016 + ], + [ + 6.45921099899999, + 51.043073 + ], + [ + 6.443993499999976, + 51.089785498000026 + ], + [ + 6.291978500000027, + 51.175453 + ], + [ + 6.174812, + 51.1845135 + ], + [ + 6.072657, + 51.24258749799998 + ], + [ + 6.224405, + 51.364978999000016 + ], + [ + 5.953192, + 51.747845998 + ], + [ + 6.167766, + 51.900804499 + ], + [ + 6.4077795, + 51.828092001000016 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.785898, + 50.939913999 + ], + [ + 7.6610035, + 50.82036450099997 + ], + [ + 7.44077199899999, + 50.711437998 + ], + [ + 7.2123995, + 50.623404999 + ], + [ + 7.210872, + 50.649543499 + ], + [ + 7.1952005, + 50.642722999 + ], + [ + 6.927901, + 50.55861850000002 + ], + [ + 6.800711499999977, + 50.36178149900002 + ], + [ + 6.425295, + 50.32301199800003 + ], + [ + 6.405028500000014, + 50.323308499 + ], + [ + 6.315556, + 50.497042498999974 + ], + [ + 6.206287499999974, + 50.52130200099998 + ], + [ + 6.192200499000023, + 50.521055499 + ], + [ + 6.189312500000028, + 50.56609400100001 + ], + [ + 6.26861550000001, + 50.625981 + ], + [ + 6.020998999000028, + 50.75429550000001 + ], + [ + 6.0869475, + 50.91313499900002 + ], + [ + 5.877084998999976, + 51.032101 + ], + [ + 6.174812, + 51.1845135 + ], + [ + 6.291978500000027, + 51.175453 + ], + [ + 6.443993499999976, + 51.089785498000026 + ], + [ + 6.45921099899999, + 51.043073 + ], + [ + 6.480495499000028, + 51.034178998000016 + ], + [ + 6.773632500000019, + 51.06439000099999 + ], + [ + 6.853487500000028, + 51.08425600100003 + ], + [ + 6.898045, + 51.06488549699998 + ], + [ + 6.990593499999989, + 51.09159799899999 + ], + [ + 6.997724, + 51.11797599800002 + ], + [ + 7.166349998999976, + 51.153941 + ], + [ + 7.268179499999974, + 51.14565750000003 + ], + [ + 7.295806500000026, + 51.20539199900003 + ], + [ + 7.3066935, + 51.23887549900002 + ], + [ + 7.433343, + 51.21440899800001 + ], + [ + 7.716120499999988, + 51.07290849899999 + ], + [ + 7.785898, + 50.939913999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.096448, + 52.05714500099998 + ], + [ + 8.320136, + 51.72570500099999 + ], + [ + 7.9445275, + 51.700582 + ], + [ + 7.735787999000024, + 51.737370499 + ], + [ + 7.7018895, + 51.712378999 + ], + [ + 7.40955, + 51.66458099699997 + ], + [ + 7.417934, + 51.599519997000016 + ], + [ + 7.314282, + 51.522423 + ], + [ + 7.293587, + 51.53226249800002 + ], + [ + 7.145057, + 51.55224049899999 + ], + [ + 7.139561500000013, + 51.50615749799999 + ], + [ + 7.1042005, + 51.48126749800002 + ], + [ + 7.010207, + 51.53272849899997 + ], + [ + 6.998652, + 51.53370049799997 + ], + [ + 6.928003, + 51.49776699900002 + ], + [ + 6.833152, + 51.579647997999984 + ], + [ + 6.902276, + 51.635684501000014 + ], + [ + 6.91086150000001, + 51.746098501 + ], + [ + 6.490212, + 51.81137700099998 + ], + [ + 6.4077795, + 51.828092001000016 + ], + [ + 6.828513, + 51.9640665 + ], + [ + 6.760465, + 52.11856949999998 + ], + [ + 7.065685, + 52.24137299900002 + ], + [ + 7.099148999000022, + 52.24305849699999 + ], + [ + 7.317481, + 52.28027199899998 + ], + [ + 7.608038500000021, + 52.47401599900002 + ], + [ + 7.964625500000011, + 52.32485850099999 + ], + [ + 7.956465, + 52.2724905 + ], + [ + 8.007796, + 52.115332997999985 + ], + [ + 7.885159, + 52.0833025 + ], + [ + 8.096448, + 52.05714500099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.417317500000024, + 51.647269499 + ], + [ + 9.440457, + 51.650393999000016 + ], + [ + 9.155410500000016, + 51.44267499900002 + ], + [ + 8.970653500000026, + 51.5067735 + ], + [ + 8.905395, + 51.53149649900001 + ], + [ + 8.547931, + 51.4678125 + ], + [ + 8.472658, + 51.563380499 + ], + [ + 8.573228500000027, + 51.660557 + ], + [ + 8.403108, + 51.719355001 + ], + [ + 8.320136, + 51.72570500099999 + ], + [ + 8.096448, + 52.05714500099998 + ], + [ + 8.410586500000022, + 52.11511499699998 + ], + [ + 8.4661865, + 52.267614 + ], + [ + 8.2972135, + 52.456497997999975 + ], + [ + 8.70300899900002, + 52.500437998 + ], + [ + 9.125252499999988, + 52.411993498000015 + ], + [ + 8.985787500000015, + 52.19457649899999 + ], + [ + 9.15560449899999, + 52.09783 + ], + [ + 9.308893, + 51.92271950100002 + ], + [ + 9.323343500000021, + 51.85506099700001 + ], + [ + 9.459648500000014, + 51.86279749800002 + ], + [ + 9.417317500000024, + 51.647269499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.320136, + 51.72570500099999 + ], + [ + 8.403108, + 51.719355001 + ], + [ + 8.573228500000027, + 51.660557 + ], + [ + 8.472658, + 51.563380499 + ], + [ + 8.547931, + 51.4678125 + ], + [ + 8.905395, + 51.53149649900001 + ], + [ + 8.970653500000026, + 51.5067735 + ], + [ + 8.556348, + 51.277495 + ], + [ + 8.7582145, + 51.17718149900003 + ], + [ + 8.549084999, + 51.101868001000014 + ], + [ + 8.477892, + 50.96904749700002 + ], + [ + 8.355495999000027, + 50.862001 + ], + [ + 8.125776499999972, + 50.685813998000015 + ], + [ + 8.03969, + 50.697375498999975 + ], + [ + 7.851496, + 50.92583250000001 + ], + [ + 7.785898, + 50.939913999 + ], + [ + 7.716120499999988, + 51.07290849899999 + ], + [ + 7.433343, + 51.21440899800001 + ], + [ + 7.3066935, + 51.23887549900002 + ], + [ + 7.167288, + 51.3129025 + ], + [ + 7.117675, + 51.380272499 + ], + [ + 7.13603, + 51.426038 + ], + [ + 7.1042005, + 51.48126749800002 + ], + [ + 7.139561500000013, + 51.50615749799999 + ], + [ + 7.145057, + 51.55224049899999 + ], + [ + 7.293587, + 51.53226249800002 + ], + [ + 7.314282, + 51.522423 + ], + [ + 7.417934, + 51.599519997000016 + ], + [ + 7.40955, + 51.66458099699997 + ], + [ + 7.7018895, + 51.712378999 + ], + [ + 7.735787999000024, + 51.737370499 + ], + [ + 7.9445275, + 51.700582 + ], + [ + 8.320136, + 51.72570500099999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.7279815, + 47.692680499 + ], + [ + 8.79570849999999, + 47.675595499999986 + ], + [ + 8.843022, + 47.71226249900002 + ], + [ + 8.8749985, + 47.65597349799998 + ], + [ + 9.182192, + 47.655890499 + ], + [ + 9.495604, + 47.551454998999986 + ], + [ + 9.5587205, + 47.54189299900003 + ], + [ + 9.673370499999976, + 47.38151050099998 + ], + [ + 9.530749, + 47.27058100099998 + ], + [ + 9.4760475, + 47.051797498999974 + ], + [ + 9.607078, + 47.0607745 + ], + [ + 10.14497449999999, + 46.851009498999986 + ], + [ + 10.389317999000014, + 47.00052449999998 + ], + [ + 10.4696515, + 46.854909 + ], + [ + 10.452801, + 46.53068299900002 + ], + [ + 10.2448745, + 46.62209199799997 + ], + [ + 9.714149500000019, + 46.292708499000014 + ], + [ + 9.248531500000013, + 46.23376800099999 + ], + [ + 9.1593775, + 46.169601 + ], + [ + 9.0428035, + 46.58880049700002 + ], + [ + 8.678729, + 46.57918949899999 + ], + [ + 8.877168499999982, + 46.81312349900003 + ], + [ + 8.935079, + 46.92020799900001 + ], + [ + 9.004565500000012, + 47.173145499999976 + ], + [ + 8.807784500000025, + 47.220560001000024 + ], + [ + 8.943635500000028, + 47.37583749800001 + ], + [ + 8.670461, + 47.68486249900002 + ], + [ + 8.663354, + 47.685892498999976 + ], + [ + 8.606369500000028, + 47.66900549899998 + ], + [ + 8.510115, + 47.776190499999984 + ], + [ + 8.61233, + 47.801462 + ], + [ + 8.740104499999973, + 47.752789001 + ], + [ + 8.7279815, + 47.692680499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.807784500000025, + 47.220560001000024 + ], + [ + 9.004565500000012, + 47.173145499999976 + ], + [ + 8.935079, + 46.92020799900001 + ], + [ + 8.877168499999982, + 46.81312349900003 + ], + [ + 8.678729, + 46.57918949899999 + ], + [ + 8.4776735, + 46.52760249900001 + ], + [ + 8.4104115, + 46.65302049899998 + ], + [ + 8.4489595, + 46.764517001 + ], + [ + 8.395225, + 46.771538 + ], + [ + 8.368889498999977, + 46.787975500000016 + ], + [ + 8.049088, + 46.788008 + ], + [ + 7.857267001000025, + 46.87143149799999 + ], + [ + 7.956177501000013, + 47.00342149900001 + ], + [ + 7.838686, + 47.234413999000026 + ], + [ + 8.4121295, + 47.14073749800002 + ], + [ + 8.410716, + 47.248037497999974 + ], + [ + 8.69248349899999, + 47.16362499899998 + ], + [ + 8.807784500000025, + 47.220560001000024 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.1593775, + 46.169601 + ], + [ + 8.988276499999984, + 45.97228249800003 + ], + [ + 9.088803499999983, + 45.89689700100001 + ], + [ + 8.912147, + 45.830444999 + ], + [ + 8.713936, + 46.097271998999986 + ], + [ + 8.384717, + 46.452158499 + ], + [ + 8.4776735, + 46.52760249900001 + ], + [ + 8.678729, + 46.57918949899999 + ], + [ + 9.0428035, + 46.58880049700002 + ], + [ + 9.1593775, + 46.169601 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.083623, + 49.542955499000016 + ], + [ + 10.11832750000002, + 49.47316949899999 + ], + [ + 10.1119665, + 49.384910499 + ], + [ + 10.256763499999977, + 49.059495 + ], + [ + 10.4098495, + 48.97743549900002 + ], + [ + 10.423689, + 48.744495997 + ], + [ + 10.487258, + 48.69666200099999 + ], + [ + 10.278268, + 48.51607449900001 + ], + [ + 10.230779499999983, + 48.510511 + ], + [ + 9.9440715, + 48.631755499 + ], + [ + 9.5851745, + 48.536741499000016 + ], + [ + 9.582475499999987, + 48.539146999000025 + ], + [ + 9.1512295, + 48.60405549799998 + ], + [ + 9.129176500000028, + 48.60126649900002 + ], + [ + 8.768902500000024, + 48.521840999 + ], + [ + 8.804181500000027, + 48.777778 + ], + [ + 8.928800500000023, + 48.866557 + ], + [ + 8.945315, + 48.961766 + ], + [ + 8.876031499000021, + 49.03517 + ], + [ + 8.8777945, + 49.058478501000025 + ], + [ + 8.818233, + 49.194497 + ], + [ + 9.0491265, + 49.29286250000001 + ], + [ + 9.4434915, + 49.364336998 + ], + [ + 9.603823, + 49.42657799699998 + ], + [ + 9.41092, + 49.66350799899999 + ], + [ + 9.295673, + 49.740530998999986 + ], + [ + 9.471497499, + 49.77972650100003 + ], + [ + 9.648736, + 49.791477499999985 + ], + [ + 9.926560999, + 49.48483550100002 + ], + [ + 10.083623, + 49.542955499000016 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.768902500000024, + 48.521840999 + ], + [ + 8.75571050000002, + 48.504140001 + ], + [ + 8.774055, + 48.416278498999986 + ], + [ + 8.737186499000018, + 48.377976999 + ], + [ + 8.303992, + 48.34909449700001 + ], + [ + 8.222007, + 48.60322749900001 + ], + [ + 7.9596305, + 48.71858099899998 + ], + [ + 8.232632998999975, + 48.966571500999976 + ], + [ + 8.261284, + 48.98091699899999 + ], + [ + 8.277349, + 48.98993900099998 + ], + [ + 8.33997, + 49.080149999000014 + ], + [ + 8.4130725, + 49.24981649900002 + ], + [ + 8.466985500000021, + 49.28297550100001 + ], + [ + 8.487268, + 49.29002649900002 + ], + [ + 8.4709155, + 49.340712999 + ], + [ + 8.497316, + 49.411347 + ], + [ + 8.474739704, + 49.44061602900001 + ], + [ + 8.423068, + 49.541821 + ], + [ + 8.422700500000019, + 49.57419249899999 + ], + [ + 8.4224395, + 49.583385498999974 + ], + [ + 8.581375, + 49.51978049899998 + ], + [ + 8.899572499999977, + 49.50365549899999 + ], + [ + 8.899355, + 49.48455 + ], + [ + 8.950348500000018, + 49.45499299900001 + ], + [ + 8.93188, + 49.470636996999986 + ], + [ + 9.083426499999973, + 49.52608699699999 + ], + [ + 9.103006, + 49.577456 + ], + [ + 9.41092, + 49.66350799899999 + ], + [ + 9.603823, + 49.42657799699998 + ], + [ + 9.4434915, + 49.364336998 + ], + [ + 9.0491265, + 49.29286250000001 + ], + [ + 8.818233, + 49.194497 + ], + [ + 8.8777945, + 49.058478501000025 + ], + [ + 8.876031499000021, + 49.03517 + ], + [ + 8.945315, + 48.961766 + ], + [ + 8.928800500000023, + 48.866557 + ], + [ + 8.804181500000027, + 48.777778 + ], + [ + 8.768902500000024, + 48.521840999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.737186499000018, + 48.377976999 + ], + [ + 8.751237, + 48.159539998000014 + ], + [ + 8.953761, + 48.107278999000016 + ], + [ + 9.012045, + 47.936922998 + ], + [ + 9.151105, + 47.89498299799999 + ], + [ + 9.128582, + 47.846817499 + ], + [ + 9.030533, + 47.806520499999976 + ], + [ + 9.182192, + 47.655890499 + ], + [ + 8.8749985, + 47.65597349799998 + ], + [ + 8.843022, + 47.71226249900002 + ], + [ + 8.79570849999999, + 47.675595499999986 + ], + [ + 8.7279815, + 47.692680499 + ], + [ + 8.740104499999973, + 47.752789001 + ], + [ + 8.61233, + 47.801462 + ], + [ + 8.510115, + 47.776190499999984 + ], + [ + 8.606369500000028, + 47.66900549899998 + ], + [ + 8.595602, + 47.6055445 + ], + [ + 8.562841, + 47.599432498 + ], + [ + 8.426434500000028, + 47.567548998 + ], + [ + 7.894107500000018, + 47.586374998999986 + ], + [ + 7.713784499999974, + 47.539405 + ], + [ + 7.634097, + 47.56111350100002 + ], + [ + 7.589039, + 47.589877999 + ], + [ + 7.545990500000016, + 47.74357399899998 + ], + [ + 7.577291, + 48.115654999000014 + ], + [ + 7.5779195, + 48.121391999000025 + ], + [ + 7.680713, + 48.25726699699999 + ], + [ + 7.9596305, + 48.71858099899998 + ], + [ + 8.222007, + 48.60322749900001 + ], + [ + 8.303992, + 48.34909449700001 + ], + [ + 8.737186499000018, + 48.377976999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.230779499999983, + 48.510511 + ], + [ + 10.1338955, + 48.45487149899998 + ], + [ + 10.0326945, + 48.45719649900002 + ], + [ + 9.997606, + 48.35011799900002 + ], + [ + 10.095357499999977, + 48.16401499900002 + ], + [ + 10.136457, + 48.108459498 + ], + [ + 10.135728, + 48.02376149700001 + ], + [ + 10.132387, + 48.01539999900001 + ], + [ + 10.11495450000001, + 47.97625750100002 + ], + [ + 10.104207, + 47.974358497000026 + ], + [ + 10.11013650000001, + 47.937149998999985 + ], + [ + 10.131928500000015, + 47.820087496999975 + ], + [ + 10.0772925, + 47.63927449800002 + ], + [ + 9.692543, + 47.610768999000015 + ], + [ + 9.5587205, + 47.54189299900003 + ], + [ + 9.495604, + 47.551454998999986 + ], + [ + 9.182192, + 47.655890499 + ], + [ + 9.030533, + 47.806520499999976 + ], + [ + 9.128582, + 47.846817499 + ], + [ + 9.151105, + 47.89498299799999 + ], + [ + 9.012045, + 47.936922998 + ], + [ + 8.953761, + 48.107278999000016 + ], + [ + 8.751237, + 48.159539998000014 + ], + [ + 8.737186499000018, + 48.377976999 + ], + [ + 8.774055, + 48.416278498999986 + ], + [ + 8.75571050000002, + 48.504140001 + ], + [ + 8.768902500000024, + 48.521840999 + ], + [ + 9.129176500000028, + 48.60126649900002 + ], + [ + 9.1512295, + 48.60405549799998 + ], + [ + 9.582475499999987, + 48.539146999000025 + ], + [ + 9.5851745, + 48.536741499000016 + ], + [ + 9.9440715, + 48.631755499 + ], + [ + 10.230779499999983, + 48.510511 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 11.599306500000012, + 48.95149699900003 + ], + [ + 11.719435, + 48.78234549899997 + ], + [ + 11.706735, + 48.6166465 + ], + [ + 11.9101865, + 48.58523150000002 + ], + [ + 12.017122500000028, + 48.430675999000016 + ], + [ + 12.250551, + 48.32194599799999 + ], + [ + 12.483791, + 48.429675498999984 + ], + [ + 12.607291499999974, + 48.353632 + ], + [ + 12.9446845, + 48.206692498999985 + ], + [ + 12.751555, + 48.11281049799999 + ], + [ + 12.86018150000001, + 47.996639999000024 + ], + [ + 12.8757855, + 47.962608999 + ], + [ + 13.046055500000023, + 47.520502498999974 + ], + [ + 12.695795499999974, + 47.682222998999976 + ], + [ + 12.575026499999979, + 47.632316 + ], + [ + 12.338045498999975, + 47.697087501 + ], + [ + 12.060662, + 47.618743499 + ], + [ + 11.632883, + 47.59244599700003 + ], + [ + 11.410219, + 47.49532400099997 + ], + [ + 11.4214275, + 47.44485199899998 + ], + [ + 11.0165005, + 47.396368000999985 + ], + [ + 10.991202499999986, + 47.396131 + ], + [ + 10.886199, + 47.536847998999974 + ], + [ + 10.9542765, + 47.61652049899999 + ], + [ + 10.7158885, + 47.705480497 + ], + [ + 10.7670905, + 47.843793499000014 + ], + [ + 10.801532, + 48.1041705 + ], + [ + 10.903411, + 48.23667650099998 + ], + [ + 11.03451, + 48.19299200099999 + ], + [ + 11.116768499999978, + 48.26847799900003 + ], + [ + 11.311675, + 48.452272999 + ], + [ + 11.295411, + 48.474574 + ], + [ + 11.022986, + 48.620171497 + ], + [ + 11.0059415, + 48.82188299799998 + ], + [ + 10.93683950000002, + 48.863275999 + ], + [ + 11.201364500000011, + 49.046551498999975 + ], + [ + 11.385714, + 49.078858001000015 + ], + [ + 11.599306500000012, + 48.95149699900003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.839507, + 48.77160500100001 + ], + [ + 13.796107, + 48.71360049899999 + ], + [ + 13.727090499999974, + 48.513019500999974 + ], + [ + 13.51336950000001, + 48.59097799800003 + ], + [ + 13.438430499999981, + 48.548895001 + ], + [ + 13.407838, + 48.372160501 + ], + [ + 13.177043, + 48.294389997 + ], + [ + 12.9446845, + 48.206692498999985 + ], + [ + 12.607291499999974, + 48.353632 + ], + [ + 12.483791, + 48.429675498999984 + ], + [ + 12.250551, + 48.32194599799999 + ], + [ + 12.017122500000028, + 48.430675999000016 + ], + [ + 11.9101865, + 48.58523150000002 + ], + [ + 11.706735, + 48.6166465 + ], + [ + 11.719435, + 48.78234549899997 + ], + [ + 11.599306500000012, + 48.95149699900003 + ], + [ + 11.659785, + 49.01612949999998 + ], + [ + 12.0654265, + 48.9436955 + ], + [ + 12.097496, + 48.771991997999976 + ], + [ + 12.135276, + 48.765911999000025 + ], + [ + 12.479026499999975, + 49.03198599900003 + ], + [ + 12.768203, + 49.114760999 + ], + [ + 13.170907999, + 49.173579501 + ], + [ + 13.4166515, + 48.980035499 + ], + [ + 13.5515785, + 48.96778749700002 + ], + [ + 13.839507, + 48.77160500100001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 12.550988500000017, + 49.905088001000024 + ], + [ + 12.401524, + 49.75837299800003 + ], + [ + 12.593778499999985, + 49.54219149900001 + ], + [ + 12.633763499999986, + 49.47619499799998 + ], + [ + 13.170907999, + 49.173579501 + ], + [ + 12.768203, + 49.114760999 + ], + [ + 12.479026499999975, + 49.03198599900003 + ], + [ + 12.135276, + 48.765911999000025 + ], + [ + 12.097496, + 48.771991997999976 + ], + [ + 12.0654265, + 48.9436955 + ], + [ + 11.659785, + 49.01612949999998 + ], + [ + 11.599306500000012, + 48.95149699900003 + ], + [ + 11.385714, + 49.078858001000015 + ], + [ + 11.247176, + 49.325353 + ], + [ + 11.557755, + 49.41904200099998 + ], + [ + 11.562709117999987, + 49.67727206 + ], + [ + 11.630662500000028, + 49.76057099899998 + ], + [ + 11.854835499999979, + 49.84710899800001 + ], + [ + 11.90369149999998, + 49.97902000099998 + ], + [ + 12.260799, + 50.05815649800002 + ], + [ + 12.550988500000017, + 49.905088001000024 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 11.919884500000023, + 50.42440349899999 + ], + [ + 12.100900500000023, + 50.31802799799999 + ], + [ + 12.160679, + 50.219848997999975 + ], + [ + 12.260799, + 50.05815649800002 + ], + [ + 11.90369149999998, + 49.97902000099998 + ], + [ + 11.854835499999979, + 49.84710899800001 + ], + [ + 11.630662500000028, + 49.76057099899998 + ], + [ + 11.562709117999987, + 49.67727206 + ], + [ + 11.368694, + 49.66670800100002 + ], + [ + 11.2803045, + 49.60430150000002 + ], + [ + 10.927335500000027, + 49.76843 + ], + [ + 10.654417500000022, + 49.72112349899999 + ], + [ + 10.551436, + 49.75577249999998 + ], + [ + 10.448965, + 49.822177001 + ], + [ + 10.5052485, + 49.87668199900003 + ], + [ + 10.8601165, + 50.09178549699999 + ], + [ + 10.729202, + 50.23000549699998 + ], + [ + 10.8514945, + 50.26276249900002 + ], + [ + 10.715266499999984, + 50.363590998 + ], + [ + 10.9457185, + 50.38646649899999 + ], + [ + 11.189943, + 50.27118550099999 + ], + [ + 11.265938, + 50.479421 + ], + [ + 11.481568, + 50.431621501 + ], + [ + 11.603290500000014, + 50.39876600100001 + ], + [ + 11.919884500000023, + 50.42440349899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 11.562709117999987, + 49.67727206 + ], + [ + 11.557755, + 49.41904200099998 + ], + [ + 11.247176, + 49.325353 + ], + [ + 11.385714, + 49.078858001000015 + ], + [ + 11.201364500000011, + 49.046551498999975 + ], + [ + 10.93683950000002, + 48.863275999 + ], + [ + 10.642254499999979, + 49.016631501 + ], + [ + 10.4098495, + 48.97743549900002 + ], + [ + 10.256763499999977, + 49.059495 + ], + [ + 10.1119665, + 49.384910499 + ], + [ + 10.11832750000002, + 49.47316949899999 + ], + [ + 10.083623, + 49.542955499000016 + ], + [ + 10.110316, + 49.62140849999997 + ], + [ + 10.551436, + 49.75577249999998 + ], + [ + 10.654417500000022, + 49.72112349899999 + ], + [ + 10.927335500000027, + 49.76843 + ], + [ + 11.2803045, + 49.60430150000002 + ], + [ + 11.368694, + 49.66670800100002 + ], + [ + 11.562709117999987, + 49.67727206 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.729202, + 50.23000549699998 + ], + [ + 10.8601165, + 50.09178549699999 + ], + [ + 10.5052485, + 49.87668199900003 + ], + [ + 10.448965, + 49.822177001 + ], + [ + 10.551436, + 49.75577249999998 + ], + [ + 10.110316, + 49.62140849999997 + ], + [ + 10.083623, + 49.542955499000016 + ], + [ + 9.926560999, + 49.48483550100002 + ], + [ + 9.648736, + 49.791477499999985 + ], + [ + 9.471497499, + 49.77972650100003 + ], + [ + 9.295673, + 49.740530998999986 + ], + [ + 9.41092, + 49.66350799899999 + ], + [ + 9.103006, + 49.577456 + ], + [ + 9.150809, + 49.742850497 + ], + [ + 9.036080500000025, + 49.846503998 + ], + [ + 9.05008, + 49.866315000999975 + ], + [ + 9.016088500000023, + 49.991340501000025 + ], + [ + 8.990559999000027, + 50.06711900099998 + ], + [ + 9.404984500000012, + 50.087734497999975 + ], + [ + 9.623150999000018, + 50.22903999800002 + ], + [ + 9.7329145, + 50.356149499000026 + ], + [ + 9.935655, + 50.419606499999986 + ], + [ + 10.0413385, + 50.51646949899998 + ], + [ + 10.450532, + 50.4018595 + ], + [ + 10.610115, + 50.227994998999975 + ], + [ + 10.729202, + 50.23000549699998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.93683950000002, + 48.863275999 + ], + [ + 11.0059415, + 48.82188299799998 + ], + [ + 11.022986, + 48.620171497 + ], + [ + 11.295411, + 48.474574 + ], + [ + 11.311675, + 48.452272999 + ], + [ + 11.116768499999978, + 48.26847799900003 + ], + [ + 11.03451, + 48.19299200099999 + ], + [ + 10.903411, + 48.23667650099998 + ], + [ + 10.801532, + 48.1041705 + ], + [ + 10.7670905, + 47.843793499000014 + ], + [ + 10.7158885, + 47.705480497 + ], + [ + 10.9542765, + 47.61652049899999 + ], + [ + 10.886199, + 47.536847998999974 + ], + [ + 10.454439, + 47.55579699899999 + ], + [ + 10.178353, + 47.27011399899999 + ], + [ + 9.999526, + 47.48301699699999 + ], + [ + 9.967813499999977, + 47.546240496999985 + ], + [ + 9.5587205, + 47.54189299900003 + ], + [ + 9.692543, + 47.610768999000015 + ], + [ + 10.0772925, + 47.63927449800002 + ], + [ + 10.131928500000015, + 47.820087496999975 + ], + [ + 10.11013650000001, + 47.937149998999985 + ], + [ + 10.104207, + 47.974358497000026 + ], + [ + 10.11495450000001, + 47.97625750100002 + ], + [ + 10.132387, + 48.01539999900001 + ], + [ + 10.135728, + 48.02376149700001 + ], + [ + 10.136457, + 48.108459498 + ], + [ + 10.095357499999977, + 48.16401499900002 + ], + [ + 9.997606, + 48.35011799900002 + ], + [ + 10.0326945, + 48.45719649900002 + ], + [ + 10.1338955, + 48.45487149899998 + ], + [ + 10.230779499999983, + 48.510511 + ], + [ + 10.278268, + 48.51607449900001 + ], + [ + 10.487258, + 48.69666200099999 + ], + [ + 10.423689, + 48.744495997 + ], + [ + 10.4098495, + 48.97743549900002 + ], + [ + 10.642254499999979, + 49.016631501 + ], + [ + 10.93683950000002, + 48.863275999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.66698, + 52.474166998999976 + ], + [ + 13.699738, + 52.37788299800002 + ], + [ + 13.420984998999984, + 52.376247001000024 + ], + [ + 13.31212, + 52.39959950000002 + ], + [ + 13.165898, + 52.39427549800001 + ], + [ + 13.153695500000026, + 52.50182150099999 + ], + [ + 13.164263, + 52.59890050000001 + ], + [ + 13.39854, + 52.648194498 + ], + [ + 13.610827500000028, + 52.54423550000001 + ], + [ + 13.66698, + 52.474166998999976 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 14.412157, + 53.329635998000015 + ], + [ + 14.143658, + 52.9613685 + ], + [ + 14.156692, + 52.89559099899998 + ], + [ + 14.436438, + 52.679900498999984 + ], + [ + 14.565063, + 52.624497 + ], + [ + 14.534361999, + 52.395008 + ], + [ + 14.600891499999989, + 52.272051998999984 + ], + [ + 14.755227, + 52.070024998 + ], + [ + 14.716716, + 52.001188001 + ], + [ + 14.729862, + 51.581776999 + ], + [ + 14.447771, + 51.542068997 + ], + [ + 14.163324499999987, + 51.54104299900001 + ], + [ + 13.835313, + 51.37678999799999 + ], + [ + 13.691250500000024, + 51.374012999 + ], + [ + 13.21015, + 51.404735999000025 + ], + [ + 13.051025, + 51.647677 + ], + [ + 13.1509135, + 51.859610499999974 + ], + [ + 12.769780500000024, + 51.979274499999974 + ], + [ + 12.3761225, + 52.04511949800002 + ], + [ + 12.27672449900001, + 52.104018 + ], + [ + 12.31718, + 52.454095499 + ], + [ + 12.171555, + 52.506336497 + ], + [ + 12.249203500000021, + 52.79186199899999 + ], + [ + 12.126811499999974, + 52.890199499 + ], + [ + 11.597784499999989, + 53.03592649900003 + ], + [ + 11.265732, + 53.121978 + ], + [ + 12.325101500000017, + 53.321301498000025 + ], + [ + 12.3317515, + 53.318011 + ], + [ + 12.984683, + 53.1649855 + ], + [ + 13.2414035, + 53.232401 + ], + [ + 13.710065499999985, + 53.4790625 + ], + [ + 14.412157, + 53.329635998000015 + ] + ], + [ + [ + 13.66698, + 52.474166998999976 + ], + [ + 13.610827500000028, + 52.54423550000001 + ], + [ + 13.39854, + 52.648194498 + ], + [ + 13.164263, + 52.59890050000001 + ], + [ + 13.153695500000026, + 52.50182150099999 + ], + [ + 13.165898, + 52.39427549800001 + ], + [ + 13.31212, + 52.39959950000002 + ], + [ + 13.420984998999984, + 52.376247001000024 + ], + [ + 13.699738, + 52.37788299800002 + ], + [ + 13.66698, + 52.474166998999976 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 8.979256, + 53.045849499999974 + ], + [ + 8.915827, + 53.011021497 + ], + [ + 8.711424, + 53.044629997000015 + ], + [ + 8.6548985, + 53.10886449999998 + ], + [ + 8.485330499999975, + 53.22712 + ], + [ + 8.984185500000024, + 53.12607099899998 + ], + [ + 8.979256, + 53.045849499999974 + ] + ] + ], + [ + [ + [ + 8.652134000999979, + 53.51601699899999 + ], + [ + 8.492652, + 53.47242000099999 + ], + [ + 8.554898499999979, + 53.52513100099998 + ], + [ + 8.4832025, + 53.60049899799998 + ], + [ + 8.520410500000025, + 53.60620500099998 + ], + [ + 8.650632499999972, + 53.602565001000016 + ], + [ + 8.652134000999979, + 53.51601699899999 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.308312, + 53.43322149800002 + ], + [ + 9.768861, + 53.50527899799999 + ], + [ + 9.73010399899999, + 53.557580997 + ], + [ + 9.945376, + 53.652927998 + ], + [ + 10.072805, + 53.709633999 + ], + [ + 10.236678499999982, + 53.49635449800002 + ], + [ + 10.308312, + 53.43322149800002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.479113, + 50.440685497 + ], + [ + 9.7329145, + 50.356149499000026 + ], + [ + 9.623150999000018, + 50.22903999800002 + ], + [ + 9.404984500000012, + 50.087734497999975 + ], + [ + 8.990559999000027, + 50.06711900099998 + ], + [ + 9.016088500000023, + 49.991340501000025 + ], + [ + 9.05008, + 49.866315000999975 + ], + [ + 9.036080500000025, + 49.846503998 + ], + [ + 9.150809, + 49.742850497 + ], + [ + 9.103006, + 49.577456 + ], + [ + 9.083426499999973, + 49.52608699699999 + ], + [ + 8.93188, + 49.470636996999986 + ], + [ + 8.950348500000018, + 49.45499299900001 + ], + [ + 8.899355, + 49.48455 + ], + [ + 8.899572499999977, + 49.50365549899999 + ], + [ + 8.581375, + 49.51978049899998 + ], + [ + 8.4224395, + 49.583385498999974 + ], + [ + 8.414774, + 49.595051997999974 + ], + [ + 8.44637749899999, + 49.73079949700002 + ], + [ + 8.448365, + 49.73366149899999 + ], + [ + 8.400055, + 49.803675 + ], + [ + 8.3430305, + 49.940506 + ], + [ + 8.288245, + 49.995134 + ], + [ + 8.190038500000014, + 50.03529599699999 + ], + [ + 8.17513550000001, + 50.034255497 + ], + [ + 7.773997, + 50.066539998999986 + ], + [ + 8.1219135, + 50.277224999 + ], + [ + 8.354557, + 50.29422999899998 + ], + [ + 8.467215, + 50.41504849900002 + ], + [ + 8.5141395, + 50.39935149899998 + ], + [ + 8.577542, + 50.415019 + ], + [ + 9.042425499999979, + 50.49799 + ], + [ + 9.286735, + 50.437298 + ], + [ + 9.479113, + 50.440685497 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.125776499999972, + 50.685813998000015 + ], + [ + 8.151592, + 50.59937099899997 + ], + [ + 7.971559500000012, + 50.40622049900003 + ], + [ + 8.1219135, + 50.277224999 + ], + [ + 7.773997, + 50.066539998999986 + ], + [ + 7.764844499999981, + 50.08259049899999 + ], + [ + 7.7346305, + 49.998688499000025 + ], + [ + 7.963557, + 49.833101999 + ], + [ + 7.905437, + 49.75226349899998 + ], + [ + 7.7033305, + 49.652514997000026 + ], + [ + 7.522752500000024, + 49.707622499000024 + ], + [ + 7.276622499999974, + 49.54862350000002 + ], + [ + 7.02798, + 49.63943849899999 + ], + [ + 7.0443115, + 49.689302 + ], + [ + 7.222511, + 49.88495050099999 + ], + [ + 7.202684499999975, + 49.96632300099998 + ], + [ + 6.979021, + 50.09791099900002 + ], + [ + 7.0687785, + 50.27978549900001 + ], + [ + 6.984338498999989, + 50.348893498999985 + ], + [ + 6.800711499999977, + 50.36178149900002 + ], + [ + 6.927901, + 50.55861850000002 + ], + [ + 7.1952005, + 50.642722999 + ], + [ + 7.210872, + 50.649543499 + ], + [ + 7.2123995, + 50.623404999 + ], + [ + 7.44077199899999, + 50.711437998 + ], + [ + 7.6610035, + 50.82036450099997 + ], + [ + 7.785898, + 50.939913999 + ], + [ + 7.851496, + 50.92583250000001 + ], + [ + 8.03969, + 50.697375498999975 + ], + [ + 8.125776499999972, + 50.685813998000015 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.02798, + 49.63943849899999 + ], + [ + 6.891454, + 49.61342249799998 + ], + [ + 6.380052499999977, + 49.55110499900002 + ], + [ + 6.4749625, + 49.821274999000025 + ], + [ + 6.137662499999976, + 50.129951499000015 + ], + [ + 6.405028500000014, + 50.323308499 + ], + [ + 6.425295, + 50.32301199800003 + ], + [ + 6.800711499999977, + 50.36178149900002 + ], + [ + 6.984338498999989, + 50.348893498999985 + ], + [ + 7.0687785, + 50.27978549900001 + ], + [ + 6.979021, + 50.09791099900002 + ], + [ + 7.202684499999975, + 49.96632300099998 + ], + [ + 7.222511, + 49.88495050099999 + ], + [ + 7.0443115, + 49.689302 + ], + [ + 7.02798, + 49.63943849899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.773997, + 50.066539998999986 + ], + [ + 8.17513550000001, + 50.034255497 + ], + [ + 8.190038500000014, + 50.03529599699999 + ], + [ + 8.288245, + 49.995134 + ], + [ + 8.3430305, + 49.940506 + ], + [ + 8.400055, + 49.803675 + ], + [ + 8.448365, + 49.73366149899999 + ], + [ + 8.44637749899999, + 49.73079949700002 + ], + [ + 8.414774, + 49.595051997999974 + ], + [ + 8.4224395, + 49.583385498999974 + ], + [ + 8.422700500000019, + 49.57419249899999 + ], + [ + 8.423068, + 49.541821 + ], + [ + 8.474739704, + 49.44061602900001 + ], + [ + 8.497316, + 49.411347 + ], + [ + 8.4709155, + 49.340712999 + ], + [ + 8.487268, + 49.29002649900002 + ], + [ + 8.466985500000021, + 49.28297550100001 + ], + [ + 8.4130725, + 49.24981649900002 + ], + [ + 8.33997, + 49.080149999000014 + ], + [ + 8.277349, + 48.98993900099998 + ], + [ + 8.261284, + 48.98091699899999 + ], + [ + 8.232632998999975, + 48.966571500999976 + ], + [ + 8.068407499999978, + 48.999316497999985 + ], + [ + 7.910654500000021, + 49.04516349900001 + ], + [ + 7.635651, + 49.053950499999985 + ], + [ + 7.36875550000002, + 49.16145799899999 + ], + [ + 7.320341, + 49.18949899900002 + ], + [ + 7.394494, + 49.316351998000016 + ], + [ + 7.402075500000024, + 49.36771850100001 + ], + [ + 7.395898499999987, + 49.37204599699999 + ], + [ + 7.292601499999989, + 49.408222497 + ], + [ + 7.252589, + 49.43146550099999 + ], + [ + 7.276622499999974, + 49.54862350000002 + ], + [ + 7.522752500000024, + 49.707622499000024 + ], + [ + 7.7033305, + 49.652514997000026 + ], + [ + 7.905437, + 49.75226349899998 + ], + [ + 7.963557, + 49.833101999 + ], + [ + 7.7346305, + 49.998688499000025 + ], + [ + 7.764844499999981, + 50.08259049899999 + ], + [ + 7.773997, + 50.066539998999986 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 12.284594500000026, + 51.09116249700003 + ], + [ + 12.617355, + 50.98079299800003 + ], + [ + 12.652865500000019, + 50.923678000999985 + ], + [ + 12.250825500000019, + 50.818318498999986 + ], + [ + 12.3189165, + 50.67653249900002 + ], + [ + 11.94413750000001, + 50.591275499 + ], + [ + 11.919884500000023, + 50.42440349899999 + ], + [ + 11.603290500000014, + 50.39876600100001 + ], + [ + 11.481568, + 50.431621501 + ], + [ + 11.265938, + 50.479421 + ], + [ + 11.189943, + 50.27118550099999 + ], + [ + 10.9457185, + 50.38646649899999 + ], + [ + 10.715266499999984, + 50.363590998 + ], + [ + 10.8514945, + 50.26276249900002 + ], + [ + 10.729202, + 50.23000549699998 + ], + [ + 10.610115, + 50.227994998999975 + ], + [ + 10.450532, + 50.4018595 + ], + [ + 10.0413385, + 50.51646949899998 + ], + [ + 10.077555500000017, + 50.63762399699999 + ], + [ + 9.9261765, + 50.76738999899999 + ], + [ + 10.021558500000026, + 50.9929495 + ], + [ + 10.18234849999999, + 50.99848750000001 + ], + [ + 10.202181, + 51.012009001000024 + ], + [ + 10.210013, + 51.14408299899998 + ], + [ + 10.206942, + 51.19064899699998 + ], + [ + 9.928339, + 51.375299 + ], + [ + 10.365365, + 51.55589100100002 + ], + [ + 10.488551, + 51.574778498 + ], + [ + 10.677283, + 51.63837600099998 + ], + [ + 10.701372, + 51.64218749999998 + ], + [ + 10.916058998999972, + 51.616374001 + ], + [ + 10.978113, + 51.42688499899998 + ], + [ + 11.428868500000021, + 51.33980999900001 + ], + [ + 11.473968, + 51.29505849899999 + ], + [ + 11.385374500000012, + 51.24588699899999 + ], + [ + 11.484608499999979, + 51.105437499 + ], + [ + 11.696938499999987, + 51.08749099800002 + ], + [ + 12.021018500000025, + 50.96912249899998 + ], + [ + 12.163369499999988, + 50.95882249800002 + ], + [ + 12.224169, + 50.942934998 + ], + [ + 12.284594500000026, + 51.09116249700003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 12.5641005, + 55.994034 + ], + [ + 12.583112, + 55.807791501 + ], + [ + 12.584052499999984, + 55.72177349999998 + ], + [ + 12.6812885, + 55.588256999 + ], + [ + 12.504888, + 55.6374695 + ], + [ + 12.363498, + 55.593827498999985 + ], + [ + 12.250782, + 55.708411 + ], + [ + 12.089422, + 55.78082 + ], + [ + 12.01011649899999, + 55.96801749799999 + ], + [ + 11.844483500000024, + 55.967036999000015 + ], + [ + 12.5641005, + 55.994034 + ] + ] + ], + [ + [ + [ + 14.779674, + 55.29000449900002 + ], + [ + 15.158351, + 55.083439 + ], + [ + 14.683027, + 55.09734649699999 + ], + [ + 14.779674, + 55.29000449900002 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 11.743550500000026, + 55.78957349799998 + ], + [ + 11.805708192, + 55.68068123199998 + ], + [ + 11.87555, + 55.73759149900002 + ], + [ + 11.9599945, + 55.850509498 + ], + [ + 11.905017, + 55.9359095 + ], + [ + 12.0596445, + 55.73209000100002 + ], + [ + 11.980809, + 55.730124998 + ], + [ + 11.951244, + 55.67552199900001 + ], + [ + 12.084782, + 55.65425400100003 + ], + [ + 12.08717468499998, + 55.719519628 + ], + [ + 12.088165831000026, + 55.746555279 + ], + [ + 12.089422, + 55.78082 + ], + [ + 12.250782, + 55.708411 + ], + [ + 12.363498, + 55.593827498999985 + ], + [ + 12.221227, + 55.425629501 + ], + [ + 12.4563445, + 55.29250699900001 + ], + [ + 12.0024285, + 54.96804599699999 + ], + [ + 11.6157665, + 55.08135999899997 + ], + [ + 11.828402499999982, + 55.042315997 + ], + [ + 11.748527500000023, + 55.219173497999975 + ], + [ + 11.243200499000011, + 55.207942996999975 + ], + [ + 10.87105, + 55.74376300099999 + ], + [ + 11.348573, + 55.75773650000002 + ], + [ + 11.4824, + 55.96112800100002 + ], + [ + 11.777166500000021, + 55.9767685 + ], + [ + 11.743550500000026, + 55.78957349799998 + ] + ] + ], + [ + [ + [ + 12.166872, + 54.834666997 + ], + [ + 11.4617675, + 54.610306 + ], + [ + 10.956038499999977, + 54.81500649700001 + ], + [ + 12.166872, + 54.834666997 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.860733, + 55.625149 + ], + [ + 9.739651342, + 55.529699214 + ], + [ + 10.493877499, + 55.54795050000001 + ], + [ + 10.427106, + 55.42914599900001 + ], + [ + 10.856239500000015, + 55.29318950099997 + ], + [ + 10.5537165, + 54.944484499 + ], + [ + 10.072239, + 55.077411498 + ], + [ + 9.679817695, + 55.51198248700001 + ], + [ + 9.663652053000021, + 55.510181843 + ], + [ + 9.488094499999988, + 55.49062699699999 + ], + [ + 9.422177499999975, + 55.033451 + ], + [ + 10.0712885, + 54.877284997 + ], + [ + 9.61926649999998, + 54.93403200099999 + ], + [ + 9.420151499999974, + 54.83195650099998 + ], + [ + 9.113097, + 54.8736015 + ], + [ + 8.63592599899999, + 54.911682998 + ], + [ + 8.684189, + 55.15883999800002 + ], + [ + 8.620333500000015, + 55.428672999000014 + ], + [ + 8.076632500000017, + 55.556964999 + ], + [ + 8.17079, + 55.815367 + ], + [ + 9.387007499999982, + 55.92414649900002 + ], + [ + 9.447316, + 55.834682997000016 + ], + [ + 9.671952499999975, + 55.712069998 + ], + [ + 9.543939500000022, + 55.706680999000014 + ], + [ + 9.860733, + 55.625149 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.319437, + 56.672226998999975 + ], + [ + 9.795823499999983, + 56.561614 + ], + [ + 10.194114500000012, + 56.68469350100003 + ], + [ + 10.308140107999975, + 56.606842685 + ], + [ + 10.9599055, + 56.44208149899998 + ], + [ + 10.712867, + 56.14205549799999 + ], + [ + 10.345911, + 56.194126 + ], + [ + 10.009511, + 55.70087800099998 + ], + [ + 9.671952499999975, + 55.712069998 + ], + [ + 9.447316, + 55.834682997000016 + ], + [ + 9.387007499999982, + 55.92414649900002 + ], + [ + 8.17079, + 55.815367 + ], + [ + 8.386469, + 55.90727850000002 + ], + [ + 8.099594, + 56.036021998000024 + ], + [ + 8.19683, + 56.694996 + ], + [ + 8.668789, + 56.4678495 + ], + [ + 9.002038860000027, + 56.80120575 + ], + [ + 9.1771, + 56.708271 + ], + [ + 9.05857850000001, + 56.629835997999976 + ], + [ + 9.319437, + 56.672226998999975 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 8.668212, + 56.950069498 + ], + [ + 8.515605634, + 56.68652384799998 + ], + [ + 8.577901844, + 56.692498349 + ], + [ + 8.581561781, + 56.695444119 + ], + [ + 8.9003495, + 56.952026499 + ], + [ + 8.7765885, + 56.694549498000015 + ], + [ + 8.595991889, + 56.690836525 + ], + [ + 8.583263347000013, + 56.69057483300003 + ], + [ + 8.4040455, + 56.670237 + ], + [ + 8.232896, + 56.798159499 + ], + [ + 8.589805500000011, + 57.11797349699998 + ], + [ + 9.3992035, + 57.164098497 + ], + [ + 9.95829550000002, + 57.595298997999976 + ], + [ + 10.644709499999976, + 57.74275549999999 + ], + [ + 10.42233349999998, + 57.14775149799999 + ], + [ + 8.668212, + 56.950069498 + ] + ] + ], + [ + [ + [ + 10.277603904999978, + 56.70085894099998 + ], + [ + 9.801955, + 56.6385995 + ], + [ + 10.194114500000012, + 56.68469350100003 + ], + [ + 9.795823499999983, + 56.561614 + ], + [ + 9.319437, + 56.672226998999975 + ], + [ + 9.159611, + 56.67793249800002 + ], + [ + 9.24345, + 56.74848949699998 + ], + [ + 9.164284, + 56.88882849999999 + ], + [ + 10.272072, + 56.9368935 + ], + [ + 10.3327445, + 56.70807649699998 + ], + [ + 10.277603904999978, + 56.70085894099998 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 27.357049499000027, + 58.787144001 + ], + [ + 27.621053500000016, + 58.0051115 + ], + [ + 27.351579, + 57.51823699900001 + ], + [ + 26.52490549999999, + 57.516247497999984 + ], + [ + 26.056459, + 57.84843149699998 + ], + [ + 25.046307, + 58.04014600099998 + ], + [ + 24.834082500000022, + 57.9727795 + ], + [ + 24.352817500000015, + 57.87655650099998 + ], + [ + 24.58152, + 58.32541549899997 + ], + [ + 24.11198250000001, + 58.24046150100003 + ], + [ + 23.521601, + 58.56487950000002 + ], + [ + 23.404937, + 59.025805 + ], + [ + 23.730738499999973, + 59.23713250100002 + ], + [ + 24.796578, + 59.57180350099998 + ], + [ + 25.83015949899999, + 59.564065 + ], + [ + 26.759436, + 59.499518497999986 + ], + [ + 28.04186249999998, + 59.4701025 + ], + [ + 28.209798001000024, + 59.37138799899998 + ], + [ + 27.357049499000027, + 58.787144001 + ] + ] + ], + [ + [ + [ + 23.34560750000003, + 58.61022999800002 + ], + [ + 22.719874, + 58.21216500100002 + ], + [ + 21.828614, + 58.30703299800001 + ], + [ + 22.543011499999977, + 58.64205149600002 + ], + [ + 23.34560750000003, + 58.61022999800002 + ] + ] + ], + [ + [ + [ + 22.9317145, + 58.97105100099998 + ], + [ + 23.069148, + 58.838146000999984 + ], + [ + 22.393010999000012, + 58.891237998 + ], + [ + 22.592449, + 59.08807299699998 + ], + [ + 22.9317145, + 58.97105100099998 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 23.624222998999983, + 41.375727497000014 + ], + [ + 24.1179275, + 41.00608850100002 + ], + [ + 23.86774650000001, + 40.77872849900001 + ], + [ + 23.765077500000018, + 40.75789249899998 + ], + [ + 23.7568645, + 40.63456349799998 + ], + [ + 24.010988, + 40.389434499 + ], + [ + 24.005043, + 40.31456749900002 + ], + [ + 23.861864, + 40.37016300099998 + ], + [ + 23.694948, + 40.30393999900002 + ], + [ + 23.997488499999974, + 40.10770799900001 + ], + [ + 23.9472275, + 39.93801899699997 + ], + [ + 23.65232450000002, + 40.224617 + ], + [ + 23.005256498999984, + 40.35036050100001 + ], + [ + 22.814283499999988, + 40.47844299899998 + ], + [ + 22.947689500000024, + 40.62663649799998 + ], + [ + 22.682419, + 40.52896499899998 + ], + [ + 22.66395749999998, + 40.49155449699998 + ], + [ + 22.54789549999998, + 40.145462001 + ], + [ + 22.66243, + 39.975547999000014 + ], + [ + 22.1152075, + 40.18994899799998 + ], + [ + 22.184179500000027, + 40.301849498000024 + ], + [ + 21.928503, + 40.48796850000002 + ], + [ + 21.906351, + 40.68133599700002 + ], + [ + 21.822054, + 40.69629649900003 + ], + [ + 21.704187, + 40.86348349999997 + ], + [ + 21.787378, + 40.9311255 + ], + [ + 21.929438, + 41.10035049800001 + ], + [ + 22.216216, + 41.17045749800002 + ], + [ + 22.332052, + 41.12027250099999 + ], + [ + 22.732037, + 41.146391498000014 + ], + [ + 22.879178500000023, + 41.340652998 + ], + [ + 22.9275915, + 41.33853949899998 + ], + [ + 23.624222998999983, + 41.375727497000014 + ] + ] + ], + [ + [ + [ + 23.679613, + 39.972439001 + ], + [ + 23.750192500000026, + 39.91598499899999 + ], + [ + 23.355198, + 39.95388049899998 + ], + [ + 23.3263685, + 40.18334949899997 + ], + [ + 23.679613, + 39.972439001 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 24.079767, + 38.16191199899998 + ], + [ + 24.072212499999978, + 37.68205400099998 + ], + [ + 23.743593, + 37.853809497999976 + ], + [ + 23.672225500000025, + 37.94181999900002 + ], + [ + 23.5713945, + 37.993224499 + ], + [ + 23.5969505, + 38.01517499800002 + ], + [ + 23.179699500000027, + 37.951589997999974 + ], + [ + 23.133437, + 37.920439499 + ], + [ + 22.848893499999974, + 38.02820650000001 + ], + [ + 23.117532, + 38.060645997999984 + ], + [ + 23.126179, + 38.168400001 + ], + [ + 23.63415550000002, + 38.211311498999976 + ], + [ + 23.690418, + 38.34029749899997 + ], + [ + 24.079767, + 38.16191199899998 + ] + ] + ], + [ + [ + [ + 23.5226725, + 37.518099499000016 + ], + [ + 23.4244195, + 37.411700998000015 + ], + [ + 23.2003785, + 37.59665300099999 + ], + [ + 23.386825499999986, + 37.56118399899998 + ], + [ + 23.5226725, + 37.518099499000016 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 26.424524500000018, + 39.33404150000001 + ], + [ + 26.609173, + 39.010497998 + ], + [ + 25.831421, + 39.18841949900002 + ], + [ + 26.424524500000018, + 39.33404150000001 + ] + ] + ], + [ + [ + [ + 26.159764, + 38.55309299800001 + ], + [ + 26.03731349899999, + 38.19849399899999 + ], + [ + 25.8641245, + 38.24406799799999 + ], + [ + 25.857202500000028, + 38.58042900100003 + ], + [ + 26.159764, + 38.55309299800001 + ] + ] + ], + [ + [ + [ + 26.8575075, + 37.79709649799997 + ], + [ + 27.07025349999998, + 37.717021998 + ], + [ + 26.5665095, + 37.730647998999984 + ], + [ + 26.8575075, + 37.79709649799997 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 28.22072350000002, + 36.45793699799998 + ], + [ + 27.863466500000015, + 35.929278497999974 + ], + [ + 27.71846149999999, + 35.94023049899999 + ], + [ + 27.703456500000016, + 36.146589999000014 + ], + [ + 28.22072350000002, + 36.45793699799998 + ] + ] + ], + [ + [ + [ + 27.230274, + 35.508568001000015 + ], + [ + 27.134781, + 35.396366 + ], + [ + 27.061262, + 35.59654999899999 + ], + [ + 27.2101575, + 35.830795497999986 + ], + [ + 27.230274, + 35.508568001000015 + ] + ] + ], + [ + [ + [ + 24.9576055, + 37.89711749899999 + ], + [ + 24.9635755, + 37.683925499 + ], + [ + 24.684284, + 37.95106499899998 + ], + [ + 24.9576055, + 37.89711749899999 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 23.596821, + 35.628162498999984 + ], + [ + 23.8409785, + 35.52808 + ], + [ + 24.174324, + 35.58719999800002 + ], + [ + 24.317411, + 35.353774998 + ], + [ + 24.92800349999999, + 35.40690999899999 + ], + [ + 25.040821, + 35.400146499000016 + ], + [ + 25.490698, + 35.29833199799998 + ], + [ + 25.7719595, + 35.34151849900002 + ], + [ + 25.7262935, + 35.13115699799999 + ], + [ + 26.263292499999977, + 35.265228501000024 + ], + [ + 26.281149, + 35.111587499 + ], + [ + 25.550568, + 34.99075699799999 + ], + [ + 24.7709425, + 34.929885997999975 + ], + [ + 24.722517, + 35.092544499999974 + ], + [ + 24.287523498999974, + 35.17600650000003 + ], + [ + 23.515789, + 35.289715 + ], + [ + 23.596821, + 35.628162498999984 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 26.032758, + 40.730256999 + ], + [ + 25.632429, + 40.862804498 + ], + [ + 25.139545, + 40.99068749899999 + ], + [ + 24.81349, + 40.858085499000026 + ], + [ + 24.508724, + 40.95848099800003 + ], + [ + 24.088630500000022, + 40.72168399899999 + ], + [ + 23.86774650000001, + 40.77872849900001 + ], + [ + 24.1179275, + 41.00608850100002 + ], + [ + 23.624222998999983, + 41.375727497000014 + ], + [ + 24.059744, + 41.522112 + ], + [ + 24.525637, + 41.568699998 + ], + [ + 24.783956, + 41.36018899700002 + ], + [ + 25.1793755, + 41.310187998 + ], + [ + 25.224698499999988, + 41.26463099799997 + ], + [ + 25.90643749999998, + 41.307574998 + ], + [ + 25.948626, + 41.32034200099997 + ], + [ + 26.158688499999982, + 41.39118249699999 + ], + [ + 26.060393, + 41.68851600099998 + ], + [ + 26.357879, + 41.71110449899999 + ], + [ + 26.6001205, + 41.60119899799997 + ], + [ + 26.628431499999976, + 41.345533499 + ], + [ + 26.321652, + 41.250406499 + ], + [ + 26.291015500000015, + 40.93188349899998 + ], + [ + 26.032758, + 40.730256999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.1152075, + 40.18994899799998 + ], + [ + 21.918218500000023, + 39.85261149899998 + ], + [ + 21.29648450000002, + 39.85777299799997 + ], + [ + 21.097473, + 39.88035149799998 + ], + [ + 21.004242, + 40.154361499 + ], + [ + 20.778501, + 40.34878899900002 + ], + [ + 21.05606849999998, + 40.6166955 + ], + [ + 20.980204500000013, + 40.855665 + ], + [ + 21.787378, + 40.9311255 + ], + [ + 21.704187, + 40.86348349999997 + ], + [ + 21.822054, + 40.69629649900003 + ], + [ + 21.906351, + 40.68133599700002 + ], + [ + 21.928503, + 40.48796850000002 + ], + [ + 22.184179500000027, + 40.301849498000024 + ], + [ + 22.1152075, + 40.18994899799998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 21.29648450000002, + 39.85777299799997 + ], + [ + 21.181753, + 39.501956999000015 + ], + [ + 21.373546499999975, + 39.17473599800002 + ], + [ + 21.1086085, + 39.04614650100001 + ], + [ + 20.738746, + 39.01890949900002 + ], + [ + 20.4778215, + 39.27484149899999 + ], + [ + 20.464247, + 39.273101999 + ], + [ + 20.3006785, + 39.31573499699999 + ], + [ + 20.008812499999976, + 39.69129200100002 + ], + [ + 20.391308, + 39.788483499999984 + ], + [ + 20.312236499999983, + 39.991022498 + ], + [ + 20.778501, + 40.34878899900002 + ], + [ + 21.004242, + 40.154361499 + ], + [ + 21.097473, + 39.88035149799998 + ], + [ + 21.29648450000002, + 39.85777299799997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.66243, + 39.975547999000014 + ], + [ + 22.915911, + 39.60293599900001 + ], + [ + 22.976824, + 39.555328498999984 + ], + [ + 23.3514765, + 39.18777449999999 + ], + [ + 23.07373050000001, + 39.084652 + ], + [ + 23.212417500000015, + 39.146873497 + ], + [ + 23.1633645, + 39.2728995 + ], + [ + 22.821161500000017, + 39.277507501 + ], + [ + 23.018066499999975, + 39.00265499699998 + ], + [ + 22.5056705, + 39.131199 + ], + [ + 22.258116, + 39.2723085 + ], + [ + 21.939703, + 39.065337999 + ], + [ + 21.639002, + 39.250251499 + ], + [ + 21.396904, + 39.164478497 + ], + [ + 21.373546499999975, + 39.17473599800002 + ], + [ + 21.181753, + 39.501956999000015 + ], + [ + 21.29648450000002, + 39.85777299799997 + ], + [ + 21.918218500000023, + 39.85261149899998 + ], + [ + 22.1152075, + 40.18994899799998 + ], + [ + 22.66243, + 39.975547999000014 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 20.628674, + 38.32527149700002 + ], + [ + 20.79628550000001, + 38.065116999 + ], + [ + 20.341785500000015, + 38.17613199700003 + ], + [ + 20.536981500000024, + 38.469810499 + ], + [ + 20.628674, + 38.32527149700002 + ] + ] + ], + [ + [ + [ + 20.899757, + 37.77567349899999 + ], + [ + 20.988697, + 37.70522249700002 + ], + [ + 20.878824, + 37.729893 + ], + [ + 20.829103, + 37.644634998000015 + ], + [ + 20.625544, + 37.82070200099997 + ], + [ + 20.632630999000014, + 37.88441899899999 + ], + [ + 20.71006, + 37.922859999000025 + ], + [ + 20.899757, + 37.77567349899999 + ] + ] + ], + [ + [ + [ + 19.841421500000024, + 39.659159499 + ], + [ + 20.109863500000017, + 39.360972 + ], + [ + 19.641207, + 39.749874498999986 + ], + [ + 19.915536499999973, + 39.79195249899999 + ], + [ + 19.841421500000024, + 39.659159499 + ] + ] + ], + [ + [ + [ + 20.721731, + 38.62622449899999 + ], + [ + 20.55155350000001, + 38.57782749799998 + ], + [ + 20.5996705, + 38.77957899799998 + ], + [ + 20.693756, + 38.851817998 + ], + [ + 20.721731, + 38.62622449899999 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 22.3729725, + 38.14222349800002 + ], + [ + 22.26432, + 37.83939049899999 + ], + [ + 21.890155499, + 37.86580299899998 + ], + [ + 21.792816, + 37.602543 + ], + [ + 21.96572850000001, + 37.48326099799999 + ], + [ + 21.680233, + 37.377433999 + ], + [ + 21.105238, + 37.848926499000015 + ], + [ + 21.351074, + 38.10213849899998 + ], + [ + 21.871086, + 38.334537497999975 + ], + [ + 22.3729725, + 38.14222349800002 + ] + ] + ], + [ + [ + [ + 21.396904, + 39.164478497 + ], + [ + 21.571245, + 38.736785999 + ], + [ + 21.946253, + 38.783431998000026 + ], + [ + 21.999378, + 38.768867496999974 + ], + [ + 21.99988350000001, + 38.508353999 + ], + [ + 21.851717, + 38.374519497999984 + ], + [ + 21.486598730000026, + 38.301853584000014 + ], + [ + 21.486297499999978, + 38.32768649899998 + ], + [ + 21.48474447199999, + 38.306621568000025 + ], + [ + 21.318926, + 38.499629997 + ], + [ + 21.1428795, + 38.3037875 + ], + [ + 21.105279793000022, + 38.392762489 + ], + [ + 21.075875442999973, + 38.462344194000025 + ], + [ + 20.988678, + 38.66868599899999 + ], + [ + 20.726846500000022, + 38.814430499000025 + ], + [ + 20.764536, + 38.95730949900002 + ], + [ + 21.066231, + 38.87713649900002 + ], + [ + 21.1086085, + 39.04614650100001 + ], + [ + 21.373546499999975, + 39.17473599800002 + ], + [ + 21.396904, + 39.164478497 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 22.5056705, + 39.131199 + ], + [ + 23.018066499999975, + 39.00265499699998 + ], + [ + 22.527525, + 38.85890949999998 + ], + [ + 23.3777905, + 38.52575699800002 + ], + [ + 23.328289, + 38.50122049999999 + ], + [ + 23.560117, + 38.502597998 + ], + [ + 23.655134499999974, + 38.35249699899998 + ], + [ + 23.690418, + 38.34029749899997 + ], + [ + 23.63415550000002, + 38.211311498999976 + ], + [ + 23.126179, + 38.168400001 + ], + [ + 22.6080685, + 38.359401499 + ], + [ + 21.851717, + 38.374519497999984 + ], + [ + 21.99988350000001, + 38.508353999 + ], + [ + 21.999378, + 38.768867496999974 + ], + [ + 21.946253, + 38.783431998000026 + ], + [ + 21.571245, + 38.736785999 + ], + [ + 21.396904, + 39.164478497 + ], + [ + 21.639002, + 39.250251499 + ], + [ + 21.939703, + 39.065337999 + ], + [ + 22.258116, + 39.2723085 + ], + [ + 22.5056705, + 39.131199 + ] + ] + ], + [ + [ + [ + 23.426233500000023, + 38.90583049899999 + ], + [ + 24.155115, + 38.651188 + ], + [ + 24.248035500000015, + 38.22748199900002 + ], + [ + 24.58396349999998, + 38.0242235 + ], + [ + 24.30678, + 38.06962199899999 + ], + [ + 24.048601, + 38.395148998000025 + ], + [ + 23.648699, + 38.398697 + ], + [ + 23.511806499999977, + 38.587054997999985 + ], + [ + 23.196602, + 38.834670999000025 + ], + [ + 22.82939349999998, + 38.825450999 + ], + [ + 23.317873, + 39.038505499 + ], + [ + 23.426233500000023, + 38.90583049899999 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.962061, + 37.949569499 + ], + [ + 23.178438, + 37.803564498000014 + ], + [ + 23.120031499999982, + 37.72998499900001 + ], + [ + 23.2003785, + 37.59665300099999 + ], + [ + 23.4244195, + 37.411700998000015 + ], + [ + 22.725086, + 37.572639498 + ], + [ + 22.982481, + 37.04802699800001 + ], + [ + 23.196792500000015, + 36.434662 + ], + [ + 22.7856215, + 36.796966499 + ], + [ + 22.386833, + 36.591141 + ], + [ + 22.149515, + 37.01814649900001 + ], + [ + 21.9301395, + 36.9811555 + ], + [ + 21.877396, + 36.717616497999984 + ], + [ + 21.704893, + 36.811290499999984 + ], + [ + 21.565725499, + 37.163509499999975 + ], + [ + 21.680233, + 37.377433999 + ], + [ + 21.96572850000001, + 37.48326099799999 + ], + [ + 21.792816, + 37.602543 + ], + [ + 21.890155499, + 37.86580299899998 + ], + [ + 22.26432, + 37.83939049899999 + ], + [ + 22.3729725, + 38.14222349800002 + ], + [ + 22.962061, + 37.949569499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -7.031837, + 43.54447149700002 + ], + [ + -7.182441, + 43.392383497000026 + ], + [ + -6.824167, + 42.915012499 + ], + [ + -7.076834, + 42.50812399900002 + ], + [ + -6.8227655, + 42.490833001 + ], + [ + -6.784308, + 42.253608499999984 + ], + [ + -6.983513500000015, + 41.97290399899998 + ], + [ + -7.20046450000001, + 41.879749498000024 + ], + [ + -8.051862500000027, + 41.820613998 + ], + [ + -8.1650755, + 41.818302 + ], + [ + -8.199000500000011, + 42.15441899899997 + ], + [ + -8.863186, + 41.87206649900003 + ], + [ + -8.898017, + 42.1119195 + ], + [ + -8.658873500000027, + 42.29143499899999 + ], + [ + -8.833692499999984, + 42.47013449899998 + ], + [ + -8.726749499999983, + 42.68825149700001 + ], + [ + -9.0309545, + 42.69756299699998 + ], + [ + -9.277219, + 43.0441095 + ], + [ + -7.904372500000022, + 43.769103997 + ], + [ + -7.699736499999972, + 43.735115001 + ], + [ + -7.031837, + 43.54447149700002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -4.51230099899999, + 43.393204001000015 + ], + [ + -4.841038500000025, + 43.18070949999998 + ], + [ + -6.824167, + 42.915012499 + ], + [ + -7.182441, + 43.392383497000026 + ], + [ + -7.031837, + 43.54447149700002 + ], + [ + -5.84171, + 43.65595649900001 + ], + [ + -4.51230099899999, + 43.393204001000015 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -3.153338, + 43.35322199900003 + ], + [ + -3.450147, + 43.23620799899999 + ], + [ + -3.417681500000015, + 43.13336949799998 + ], + [ + -3.945488, + 43.005718496999975 + ], + [ + -3.815811, + 42.812561 + ], + [ + -3.99967, + 42.76893249699998 + ], + [ + -4.002319, + 42.830867497999975 + ], + [ + -4.04593, + 42.766566996999984 + ], + [ + -4.081359, + 42.761417499 + ], + [ + -4.238510999000027, + 42.95431499799997 + ], + [ + -4.737022998999976, + 43.02092349899999 + ], + [ + -4.841038500000025, + 43.18070949999998 + ], + [ + -4.51230099899999, + 43.393204001000015 + ], + [ + -3.426641001, + 43.41351300100001 + ], + [ + -3.153338, + 43.35322199900003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.508807499999989, + 43.376544998999975 + ], + [ + -2.412847, + 43.321082998 + ], + [ + -1.785978, + 43.35047899699998 + ], + [ + -1.728903, + 43.29608899700003 + ], + [ + -2.250807, + 42.89569099900001 + ], + [ + -2.420719, + 42.48926949899999 + ], + [ + -2.8581175, + 42.63816849900002 + ], + [ + -3.286797499999977, + 42.885097497 + ], + [ + -3.0369895, + 42.98218549799998 + ], + [ + -3.0890235, + 43.00158299899999 + ], + [ + -3.141396, + 43.161483498999985 + ], + [ + -3.417681500000015, + 43.13336949799998 + ], + [ + -3.450147, + 43.23620799899999 + ], + [ + -3.153338, + 43.35322199900003 + ], + [ + -2.508807499999989, + 43.376544998999975 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.724501, + 42.920158500000014 + ], + [ + -0.901080499999978, + 42.74269099899999 + ], + [ + -1.2881375, + 42.522762499 + ], + [ + -1.4107495, + 41.91894149900003 + ], + [ + -1.847183500000028, + 42.007988 + ], + [ + -1.681452, + 42.192402 + ], + [ + -2.420719, + 42.48926949899999 + ], + [ + -2.250807, + 42.89569099900001 + ], + [ + -1.728903, + 43.29608899700003 + ], + [ + -1.6087885, + 43.251976001 + ], + [ + -0.724501, + 42.920158500000014 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.420719, + 42.48926949899999 + ], + [ + -1.681452, + 42.192402 + ], + [ + -1.847183500000028, + 42.007988 + ], + [ + -1.8565395, + 41.966388498000015 + ], + [ + -2.282167500000014, + 42.13168699900001 + ], + [ + -2.9136375, + 42.02283849999998 + ], + [ + -3.13429450000001, + 42.54202249799999 + ], + [ + -2.8581175, + 42.63816849900002 + ], + [ + -2.420719, + 42.48926949899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.724501, + 42.920158500000014 + ], + [ + -0.551047, + 42.777637500000026 + ], + [ + -0.313342, + 42.849364997 + ], + [ + 0.4777555, + 42.70001999700003 + ], + [ + 0.660127, + 42.69095249899999 + ], + [ + 0.767070499999988, + 42.34881599800002 + ], + [ + 0.335948499999972, + 41.40743249899998 + ], + [ + 0.385724, + 41.278839498000025 + ], + [ + 0.220409500000017, + 41.07143 + ], + [ + 0.170789500000012, + 40.732837 + ], + [ + -0.197124499999973, + 40.78445799899998 + ], + [ + -0.279997499999979, + 40.36949949900003 + ], + [ + -0.837749501000019, + 39.97681799700001 + ], + [ + -0.797643, + 39.88107649900002 + ], + [ + -0.912739, + 39.87310750099999 + ], + [ + -1.1423615, + 39.971855499000014 + ], + [ + -1.165154, + 40.01010899800002 + ], + [ + -1.448831499999983, + 40.14535849700002 + ], + [ + -1.806344, + 40.39824699899998 + ], + [ + -1.545494500000018, + 40.59521099900002 + ], + [ + -1.6174335, + 40.94374099700002 + ], + [ + -2.05169, + 41.14685799900002 + ], + [ + -2.170485499999984, + 41.318836498999985 + ], + [ + -1.825316, + 41.778365999000016 + ], + [ + -1.8565395, + 41.966388498000015 + ], + [ + -1.847183500000028, + 42.007988 + ], + [ + -1.4107495, + 41.91894149900003 + ], + [ + -1.2881375, + 42.522762499 + ], + [ + -0.901080499999978, + 42.74269099899999 + ], + [ + -0.724501, + 42.920158500000014 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -4.578901, + 40.217157499 + ], + [ + -4.160293500000023, + 40.68985350000003 + ], + [ + -3.539573, + 41.16499349899999 + ], + [ + -3.394300499999986, + 41.000234498 + ], + [ + -3.468398, + 40.689896498999985 + ], + [ + -3.130407, + 40.40515399899999 + ], + [ + -3.194294500000012, + 40.248005998999986 + ], + [ + -3.067689, + 40.157884998999975 + ], + [ + -3.161419500000022, + 40.06489699799999 + ], + [ + -3.623443, + 40.053848500000015 + ], + [ + -4.190704, + 40.29731599799999 + ], + [ + -4.578901, + 40.217157499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.276622499999974, + 49.54862350000002 + ], + [ + 7.252589, + 49.43146550099999 + ], + [ + 7.292601499999989, + 49.408222497 + ], + [ + 7.395898499999987, + 49.37204599699999 + ], + [ + 7.402075500000024, + 49.36771850100001 + ], + [ + 7.394494, + 49.316351998000016 + ], + [ + 7.320341, + 49.18949899900002 + ], + [ + 7.36875550000002, + 49.16145799899999 + ], + [ + 7.101069, + 49.155998 + ], + [ + 6.723465499999975, + 49.21882899899998 + ], + [ + 6.556986, + 49.41920849899998 + ], + [ + 6.367107499999975, + 49.46950700100001 + ], + [ + 6.380052499999977, + 49.55110499900002 + ], + [ + 6.891454, + 49.61342249799998 + ], + [ + 7.02798, + 49.63943849899999 + ], + [ + 7.276622499999974, + 49.54862350000002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 14.974183, + 51.36394999700002 + ], + [ + 15.037271, + 51.24374999899999 + ], + [ + 14.823362, + 50.87055049700001 + ], + [ + 14.6188, + 50.85780449700002 + ], + [ + 14.491221, + 51.043530498999985 + ], + [ + 14.317873500000019, + 51.05469899899998 + ], + [ + 14.388335, + 50.90029899799998 + ], + [ + 13.652174, + 50.73035999799998 + ], + [ + 13.421885498999984, + 51.034199999 + ], + [ + 13.198708, + 51.23040549900003 + ], + [ + 13.21015, + 51.404735999000025 + ], + [ + 13.691250500000024, + 51.374012999 + ], + [ + 13.835313, + 51.37678999799999 + ], + [ + 14.163324499999987, + 51.54104299900001 + ], + [ + 14.447771, + 51.542068997 + ], + [ + 14.729862, + 51.581776999 + ], + [ + 14.974183, + 51.36394999700002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.652174, + 50.73035999799998 + ], + [ + 13.501846, + 50.63364299900002 + ], + [ + 12.948144500000012, + 50.404311499000016 + ], + [ + 12.5837785, + 50.40707899900002 + ], + [ + 12.100900500000023, + 50.31802799799999 + ], + [ + 11.919884500000023, + 50.42440349899999 + ], + [ + 11.94413750000001, + 50.591275499 + ], + [ + 12.3189165, + 50.67653249900002 + ], + [ + 12.250825500000019, + 50.818318498999986 + ], + [ + 12.652865500000019, + 50.923678000999985 + ], + [ + 12.617355, + 50.98079299800003 + ], + [ + 12.926016, + 51.2182075 + ], + [ + 13.198708, + 51.23040549900003 + ], + [ + 13.421885498999984, + 51.034199999 + ], + [ + 13.652174, + 50.73035999799998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.21015, + 51.404735999000025 + ], + [ + 13.198708, + 51.23040549900003 + ], + [ + 12.926016, + 51.2182075 + ], + [ + 12.617355, + 50.98079299800003 + ], + [ + 12.284594500000026, + 51.09116249700003 + ], + [ + 12.1709045, + 51.2755085 + ], + [ + 12.193544499999973, + 51.33251850099998 + ], + [ + 12.198939, + 51.531320498000014 + ], + [ + 12.580263, + 51.62606549999998 + ], + [ + 13.051025, + 51.647677 + ], + [ + 13.21015, + 51.404735999000025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.051025, + 51.647677 + ], + [ + 12.580263, + 51.62606549999998 + ], + [ + 12.198939, + 51.531320498000014 + ], + [ + 12.193544499999973, + 51.33251850099998 + ], + [ + 12.1709045, + 51.2755085 + ], + [ + 12.284594500000026, + 51.09116249700003 + ], + [ + 12.224169, + 50.942934998 + ], + [ + 12.163369499999988, + 50.95882249800002 + ], + [ + 12.021018500000025, + 50.96912249899998 + ], + [ + 11.696938499999987, + 51.08749099800002 + ], + [ + 11.484608499999979, + 51.105437499 + ], + [ + 11.385374500000012, + 51.24588699899999 + ], + [ + 11.473968, + 51.29505849899999 + ], + [ + 11.428868500000021, + 51.33980999900001 + ], + [ + 10.978113, + 51.42688499899998 + ], + [ + 10.916058998999972, + 51.616374001 + ], + [ + 10.701372, + 51.64218749999998 + ], + [ + 10.561227, + 52.00406599899998 + ], + [ + 10.801428499999986, + 52.0480005 + ], + [ + 10.964414499999975, + 52.05664299799997 + ], + [ + 11.086244, + 52.22863399900001 + ], + [ + 10.93454250000002, + 52.471794999 + ], + [ + 11.0087815, + 52.496747500000026 + ], + [ + 10.759314500000016, + 52.79583050000002 + ], + [ + 10.841556, + 52.852205 + ], + [ + 11.505027, + 52.941032499000016 + ], + [ + 11.597784499999989, + 53.03592649900003 + ], + [ + 12.126811499999974, + 52.890199499 + ], + [ + 12.249203500000021, + 52.79186199899999 + ], + [ + 12.171555, + 52.506336497 + ], + [ + 12.31718, + 52.454095499 + ], + [ + 12.27672449900001, + 52.104018 + ], + [ + 12.3761225, + 52.04511949800002 + ], + [ + 12.769780500000024, + 51.979274499999974 + ], + [ + 13.1509135, + 51.859610499999974 + ], + [ + 13.051025, + 51.647677 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.420151499999974, + 54.83195650099998 + ], + [ + 9.422934, + 54.823222998 + ], + [ + 9.491949499999976, + 54.822635499 + ], + [ + 10.03117, + 54.63657500099998 + ], + [ + 10.168517, + 54.432844998 + ], + [ + 10.174162, + 54.345745498999975 + ], + [ + 10.713750499000014, + 54.305072500999984 + ], + [ + 11.1256095, + 54.373613499999976 + ], + [ + 11.093783, + 54.19905050099999 + ], + [ + 10.755363499999987, + 54.054051501 + ], + [ + 10.840886001, + 53.99189399800002 + ], + [ + 10.903661500999988, + 53.95682200099998 + ], + [ + 10.76296450000001, + 53.811153 + ], + [ + 10.951918499999977, + 53.64762249900002 + ], + [ + 10.595047, + 53.36392750099998 + ], + [ + 10.469184, + 53.385844 + ], + [ + 10.308312, + 53.43322149800002 + ], + [ + 10.236678499999982, + 53.49635449800002 + ], + [ + 10.072805, + 53.709633999 + ], + [ + 9.945376, + 53.652927998 + ], + [ + 9.73010399899999, + 53.557580997 + ], + [ + 9.48589, + 53.707664497999986 + ], + [ + 9.199750999, + 53.88010449799998 + ], + [ + 9.02242, + 53.87951750000002 + ], + [ + 8.8448045, + 54.266328499999986 + ], + [ + 8.602134, + 54.340507996999975 + ], + [ + 9.010464, + 54.49682299900002 + ], + [ + 8.372664499999985, + 54.89685649799998 + ], + [ + 8.63592599899999, + 54.911682998 + ], + [ + 9.113097, + 54.8736015 + ], + [ + 9.420151499999974, + 54.83195650099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.571089500000028, + 48.626442 + ], + [ + -1.42794, + 48.46191500100002 + ], + [ + -1.070164499999976, + 48.508492 + ], + [ + -1.015823501, + 48.00328599900001 + ], + [ + -1.238248, + 47.809992497 + ], + [ + -1.245885, + 47.77671749899997 + ], + [ + -2.097034, + 47.63135649899999 + ], + [ + -2.458493, + 47.44811999900003 + ], + [ + -3.528605313000014, + 47.778291696999986 + ], + [ + -4.734697499999982, + 48.03824249799999 + ], + [ + -4.269574, + 48.13277050099998 + ], + [ + -4.2257935, + 48.28749099700002 + ], + [ + -4.273602501000028, + 48.44343550000002 + ], + [ + -4.772754, + 48.329235 + ], + [ + -4.7699215, + 48.52113699900002 + ], + [ + -3.950495, + 48.65286999800003 + ], + [ + -3.65915050000001, + 48.659209998999984 + ], + [ + -3.084001, + 48.865695999000025 + ], + [ + -2.6863985, + 48.49315249900002 + ], + [ + -2.123706500000026, + 48.604404499 + ], + [ + -2.148958, + 48.633731996999984 + ], + [ + -2.045604, + 48.63681399699999 + ], + [ + -2.006897, + 48.566108498 + ], + [ + -1.982181075000028, + 48.55464302799999 + ], + [ + -1.872124, + 48.645713999 + ], + [ + -1.571089500000028, + 48.626442 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 1.177279, + 46.383947998 + ], + [ + 0.823432500000024, + 46.128584499 + ], + [ + 0.629741, + 45.71456999700001 + ], + [ + 0.004336, + 45.191628 + ], + [ + -0.040197499999977, + 45.10237999899999 + ], + [ + -0.708231, + 45.32748049899999 + ], + [ + -1.230697500000019, + 45.680572498 + ], + [ + -1.053074, + 46.00383 + ], + [ + -1.129406, + 46.310271999 + ], + [ + -0.7504715, + 46.304254499000024 + ], + [ + -0.537795001, + 46.386463999 + ], + [ + -0.891964, + 46.975820499 + ], + [ + -0.102116, + 47.06479999800001 + ], + [ + 0.05383, + 47.16373349999998 + ], + [ + 0.867469, + 46.74821649900002 + ], + [ + 1.177279, + 46.383947998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 1.2531545, + 45.44422000100002 + ], + [ + 1.44826, + 45.01931399900002 + ], + [ + 1.075142, + 44.57732549899998 + ], + [ + 1.064081499999986, + 44.37850849900002 + ], + [ + 0.741885, + 44.06519899900002 + ], + [ + 0.076043500000026, + 43.983138499 + ], + [ + -0.240259, + 43.897947999 + ], + [ + -0.242833, + 43.584978997 + ], + [ + -0.096788, + 43.582405 + ], + [ + -0.017172, + 43.269951 + ], + [ + -0.313342, + 42.849364997 + ], + [ + -0.551047, + 42.777637500000026 + ], + [ + -0.724501, + 42.920158500000014 + ], + [ + -1.6087885, + 43.251976001 + ], + [ + -1.728903, + 43.29608899700003 + ], + [ + -1.785978, + 43.35047899699998 + ], + [ + -1.52487050000002, + 43.529700999 + ], + [ + -1.253891, + 44.467605499 + ], + [ + -1.156919, + 45.472530499000015 + ], + [ + -0.708231, + 45.32748049899999 + ], + [ + -0.040197499999977, + 45.10237999899999 + ], + [ + 0.004336, + 45.191628 + ], + [ + 0.629741, + 45.71456999700001 + ], + [ + 1.2531545, + 45.44422000100002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 2.062908, + 44.97650449899999 + ], + [ + 2.207473, + 44.61552899899999 + ], + [ + 2.4789475, + 44.64800999900001 + ], + [ + 2.7167695, + 44.928827996999985 + ], + [ + 2.9816755, + 44.64467299900002 + ], + [ + 3.120173500000021, + 44.261838496999985 + ], + [ + 3.373648, + 44.170759498999985 + ], + [ + 3.263114, + 44.092425499 + ], + [ + 3.448355, + 44.01910349899998 + ], + [ + 3.358362, + 43.913829498999974 + ], + [ + 2.935457, + 43.694664999 + ], + [ + 2.565782500000012, + 43.422958 + ], + [ + 2.265415, + 43.452913498999976 + ], + [ + 2.029134, + 43.43689549700002 + ], + [ + 1.6884235, + 43.27355449700002 + ], + [ + 1.949341, + 43.120973 + ], + [ + 2.166049, + 42.66391749899998 + ], + [ + 1.7860985, + 42.573658 + ], + [ + 1.442566, + 42.60366800100002 + ], + [ + 0.858215, + 42.825740999 + ], + [ + 0.660127, + 42.69095249899999 + ], + [ + 0.4777555, + 42.70001999700003 + ], + [ + -0.313342, + 42.849364997 + ], + [ + -0.017172, + 43.269951 + ], + [ + -0.096788, + 43.582405 + ], + [ + -0.242833, + 43.584978997 + ], + [ + -0.240259, + 43.897947999 + ], + [ + 0.076043500000026, + 43.983138499 + ], + [ + 0.741885, + 44.06519899900002 + ], + [ + 1.064081499999986, + 44.37850849900002 + ], + [ + 1.075142, + 44.57732549899998 + ], + [ + 1.44826, + 45.01931399900002 + ], + [ + 2.062908, + 44.97650449899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 2.28104350000001, + 46.420403497 + ], + [ + 2.565372500000024, + 46.143036 + ], + [ + 2.60902149899999, + 45.966643998999984 + ], + [ + 2.388014, + 45.827372997 + ], + [ + 2.492129499999976, + 45.73766999700001 + ], + [ + 2.50841250000002, + 45.478501499 + ], + [ + 2.062908, + 44.97650449899999 + ], + [ + 1.44826, + 45.01931399900002 + ], + [ + 1.2531545, + 45.44422000100002 + ], + [ + 0.629741, + 45.71456999700001 + ], + [ + 0.823432500000024, + 46.128584499 + ], + [ + 1.177279, + 46.383947998 + ], + [ + 1.4151855, + 46.347215001 + ], + [ + 2.167784499999982, + 46.424068998999985 + ], + [ + 2.28104350000001, + 46.420403497 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.310563499000011, + 46.446769999000026 + ], + [ + 5.4736565, + 46.26428400100002 + ], + [ + 6.064003, + 46.41622899700002 + ], + [ + 6.125608, + 46.317229999 + ], + [ + 5.956067, + 46.1320955 + ], + [ + 6.310211, + 46.24404549899998 + ], + [ + 6.219547, + 46.31187799899999 + ], + [ + 6.231694, + 46.329429498000025 + ], + [ + 6.24136, + 46.343582497 + ], + [ + 6.821063998999989, + 46.42715449899998 + ], + [ + 6.797888999, + 46.136798999 + ], + [ + 7.044886, + 45.92241299900002 + ], + [ + 6.8023685, + 45.778562 + ], + [ + 7.104723, + 45.46845449900002 + ], + [ + 7.125157, + 45.243994498 + ], + [ + 6.630051, + 45.10985649999998 + ], + [ + 6.26057, + 45.12684399699998 + ], + [ + 6.203923499999974, + 45.01247100099999 + ], + [ + 6.355365, + 44.85482049900003 + ], + [ + 5.80147, + 44.706777500999976 + ], + [ + 5.418397500000026, + 44.42476849899998 + ], + [ + 5.676035999000021, + 44.19142849899998 + ], + [ + 5.4987865, + 44.11571649799998 + ], + [ + 4.804566, + 44.30389699800003 + ], + [ + 4.650611, + 44.329802997 + ], + [ + 4.6492275, + 44.27036 + ], + [ + 4.258899499999984, + 44.264422998999976 + ], + [ + 3.998161499999981, + 44.459798498 + ], + [ + 3.862531, + 44.743865997 + ], + [ + 4.483132, + 45.23644549900001 + ], + [ + 3.897408499999983, + 45.35707999800002 + ], + [ + 3.984688999000014, + 45.495232499 + ], + [ + 3.694015, + 45.93072800099998 + ], + [ + 3.832069499999989, + 45.99966349699997 + ], + [ + 3.768207500000017, + 46.23881449700002 + ], + [ + 3.899538499000016, + 46.275907999000026 + ], + [ + 4.388074500000016, + 46.219790499 + ], + [ + 4.780208500000015, + 46.176675999 + ], + [ + 4.953853998999989, + 46.513422999 + ], + [ + 5.310563499000011, + 46.446769999000026 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 3.899538499000016, + 46.275907999000026 + ], + [ + 3.768207500000017, + 46.23881449700002 + ], + [ + 3.832069499999989, + 45.99966349699997 + ], + [ + 3.694015, + 45.93072800099998 + ], + [ + 3.984688999000014, + 45.495232499 + ], + [ + 3.897408499999983, + 45.35707999800002 + ], + [ + 4.483132, + 45.23644549900001 + ], + [ + 3.862531, + 44.743865997 + ], + [ + 3.361347500000022, + 44.971408 + ], + [ + 3.103125, + 44.884632497999974 + ], + [ + 2.9816755, + 44.64467299900002 + ], + [ + 2.7167695, + 44.928827996999985 + ], + [ + 2.4789475, + 44.64800999900001 + ], + [ + 2.207473, + 44.61552899899999 + ], + [ + 2.062908, + 44.97650449899999 + ], + [ + 2.50841250000002, + 45.478501499 + ], + [ + 2.492129499999976, + 45.73766999700001 + ], + [ + 2.388014, + 45.827372997 + ], + [ + 2.60902149899999, + 45.966643998999984 + ], + [ + 2.565372500000024, + 46.143036 + ], + [ + 2.28104350000001, + 46.420403497 + ], + [ + 3.032063, + 46.794909501 + ], + [ + 3.629422499999976, + 46.74945649799997 + ], + [ + 3.998868500000015, + 46.46486699899998 + ], + [ + 3.899538499000016, + 46.275907999000026 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 3.862531, + 44.743865997 + ], + [ + 3.998161499999981, + 44.459798498 + ], + [ + 4.258899499999984, + 44.264422998999976 + ], + [ + 4.6492275, + 44.27036 + ], + [ + 4.7390595, + 43.924061999 + ], + [ + 4.230281, + 43.460186 + ], + [ + 4.101040500000011, + 43.554370999000014 + ], + [ + 3.24056250000001, + 43.21280299900002 + ], + [ + 2.9889005, + 42.864599999 + ], + [ + 3.035430500000018, + 42.8420695 + ], + [ + 3.050192, + 42.870636 + ], + [ + 3.043504499999983, + 42.83815 + ], + [ + 3.174803999, + 42.435375 + ], + [ + 1.964552, + 42.38215699900002 + ], + [ + 1.731011, + 42.49240099899998 + ], + [ + 1.725801, + 42.50440199899998 + ], + [ + 1.7860985, + 42.573658 + ], + [ + 2.166049, + 42.66391749899998 + ], + [ + 1.949341, + 43.120973 + ], + [ + 1.6884235, + 43.27355449700002 + ], + [ + 2.029134, + 43.43689549700002 + ], + [ + 2.265415, + 43.452913498999976 + ], + [ + 2.565782500000012, + 43.422958 + ], + [ + 2.935457, + 43.694664999 + ], + [ + 3.358362, + 43.913829498999974 + ], + [ + 3.448355, + 44.01910349899998 + ], + [ + 3.263114, + 44.092425499 + ], + [ + 3.373648, + 44.170759498999985 + ], + [ + 3.120173500000021, + 44.261838496999985 + ], + [ + 2.9816755, + 44.64467299900002 + ], + [ + 3.103125, + 44.884632497999974 + ], + [ + 3.361347500000022, + 44.971408 + ], + [ + 3.862531, + 44.743865997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.630051, + 45.10985649999998 + ], + [ + 7.065755, + 44.71346449700002 + ], + [ + 6.948443, + 44.654741999 + ], + [ + 6.887428, + 44.361287 + ], + [ + 7.007760500000018, + 44.23670049899999 + ], + [ + 7.714236500000027, + 44.061513499 + ], + [ + 7.529827, + 43.784007997 + ], + [ + 7.43605928, + 43.76976996899998 + ], + [ + 7.413667280000027, + 43.744077703000016 + ], + [ + 6.933721, + 43.480064497 + ], + [ + 6.621062, + 43.15778350099998 + ], + [ + 5.671879, + 43.17926799899999 + ], + [ + 4.230281, + 43.460186 + ], + [ + 4.7390595, + 43.924061999 + ], + [ + 4.6492275, + 44.27036 + ], + [ + 4.650611, + 44.329802997 + ], + [ + 4.804566, + 44.30389699800003 + ], + [ + 5.4987865, + 44.11571649799998 + ], + [ + 5.676035999000021, + 44.19142849899998 + ], + [ + 5.418397500000026, + 44.42476849899998 + ], + [ + 5.80147, + 44.706777500999976 + ], + [ + 6.355365, + 44.85482049900003 + ], + [ + 6.203923499999974, + 45.01247100099999 + ], + [ + 6.26057, + 45.12684399699998 + ], + [ + 6.630051, + 45.10985649999998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.402272, + 41.858703499 + ], + [ + 9.219715, + 41.36760399899998 + ], + [ + 8.788534, + 41.55707549700003 + ], + [ + 8.591134, + 41.96215449699997 + ], + [ + 8.573006498999973, + 42.238570998 + ], + [ + 8.691523500000017, + 42.266464000999974 + ], + [ + 8.573408, + 42.381405 + ], + [ + 8.727043, + 42.561603499 + ], + [ + 9.301698499999986, + 42.67863850100002 + ], + [ + 9.343248500000016, + 42.99974049999997 + ], + [ + 9.4632805, + 42.98673649900002 + ], + [ + 9.559117500000013, + 42.196696997 + ], + [ + 9.402272, + 41.858703499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + -61.555346499999985, + 16.053240499000026 + ], + [ + -61.6968005, + 15.946588999000028 + ], + [ + -61.80593, + 16.257474498000022 + ], + [ + -61.672612500000014, + 16.324603500000023 + ], + [ + -61.555346499999985, + 16.053240499000026 + ] + ] + ], + [ + [ + [ + -61.25487149999998, + 16.256139 + ], + [ + -61.52729849999997, + 16.21912299899998 + ], + [ + -61.54121049999998, + 16.438073 + ], + [ + -61.464057500000024, + 16.513064499 + ], + [ + -61.25487149999998, + 16.256139 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -61.003888, + 14.808371500000021 + ], + [ + -60.85767550000003, + 14.398175 + ], + [ + -61.081969, + 14.470402498999988 + ], + [ + -61.229269, + 14.822112499000013 + ], + [ + -61.003888, + 14.808371500000021 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -52.565187, + 2.516254 + ], + [ + -52.904169, + 2.190938 + ], + [ + -53.723031, + 2.31207 + ], + [ + -54.15237250000001, + 2.119626501000027 + ], + [ + -54.58785949999998, + 2.32202350099999 + ], + [ + -54.208187, + 2.7777375 + ], + [ + -53.979807, + 3.606575 + ], + [ + -54.35672649999998, + 4.047393500999988 + ], + [ + -54.468998, + 4.890381 + ], + [ + -54.008094501000016, + 5.623116499999981 + ], + [ + -53.9683655, + 5.745176500000014 + ], + [ + -53.7992595, + 5.723899501 + ], + [ + -52.94350750000001, + 5.451987499999973 + ], + [ + -52.364701, + 4.9207345 + ], + [ + -51.813244, + 4.6343435 + ], + [ + -51.62983550000001, + 4.189126499 + ], + [ + -52.565187, + 2.516254 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 55.825796500000024, + -21.143524499000023 + ], + [ + 55.797395, + -21.350129498 + ], + [ + 55.292974, + -21.229784998000014 + ], + [ + 55.283669, + -20.92620949899998 + ], + [ + 55.6477375, + -20.91560449799999 + ], + [ + 55.825796500000024, + -21.143524499000023 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 45.2132815, + -12.873075500000027 + ], + [ + 45.1483005, + -13.000090499 + ], + [ + 45.071559, + -12.902030998999976 + ], + [ + 45.154967, + -12.92356799800001 + ], + [ + 45.04258, + -12.74402349899998 + ], + [ + 45.088423499999976, + -12.669118998999977 + ], + [ + 45.125466999000025, + -12.727415999000016 + ], + [ + 45.236856, + -12.753384998 + ], + [ + 45.18605050000002, + -12.839496 + ], + [ + 45.2132815, + -12.873075500000027 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 14.589105421, + 45.236414152 + ], + [ + 14.8205145, + 44.97092799799998 + ], + [ + 14.438129499000013, + 45.064864499 + ], + [ + 14.585924309, + 45.238482154 + ], + [ + 14.332406, + 45.35525500099999 + ], + [ + 14.2265825, + 45.15383849900002 + ], + [ + 13.906588, + 44.76863499900003 + ], + [ + 13.606798, + 45.11697399799999 + ], + [ + 13.489867, + 45.486835497000015 + ], + [ + 13.583067, + 45.477409997 + ], + [ + 14.109059, + 45.48245849699998 + ], + [ + 14.11819650000001, + 45.48123899699999 + ], + [ + 14.570012500000018, + 45.672944497 + ], + [ + 15.226437499999975, + 45.42708799799999 + ], + [ + 14.961522, + 45.273318999000026 + ], + [ + 15.017143, + 45.12289049999998 + ], + [ + 15.0589, + 45.111690501 + ], + [ + 15.736722, + 44.93563099900001 + ], + [ + 16.131936999, + 44.45468150099998 + ], + [ + 16.20829037599998, + 44.21668289899998 + ], + [ + 16.544348, + 43.974178498000015 + ], + [ + 16.81158449999998, + 43.75549299800002 + ], + [ + 17.450845500000014, + 43.17686850000001 + ], + [ + 17.4751225, + 43.161456997000016 + ], + [ + 17.712072499999977, + 42.973003499000015 + ], + [ + 17.581335, + 42.93842299900001 + ], + [ + 17.355711, + 43.084621501000015 + ], + [ + 16.3882865, + 43.509128498999985 + ], + [ + 16.475813, + 43.53484350100001 + ], + [ + 16.013214, + 43.502506 + ], + [ + 15.558911500000022, + 43.871951997 + ], + [ + 15.111249, + 44.26010149799998 + ], + [ + 15.598931350999976, + 44.172556789 + ], + [ + 15.2894715, + 44.363227999 + ], + [ + 14.896002, + 44.696899497 + ], + [ + 14.881313499999976, + 45.034404999 + ], + [ + 14.589105421, + 45.236414152 + ] + ] + ], + [ + [ + [ + 18.438104, + 42.55570500099998 + ], + [ + 18.525213, + 42.420462997000016 + ], + [ + 17.000639, + 43.04675299899998 + ], + [ + 17.469783999000015, + 42.91489399699998 + ], + [ + 17.6491565, + 42.888923499999976 + ], + [ + 18.438104, + 42.55570500099998 + ] + ] + ], + [ + [ + [ + 14.474727499999972, + 44.95611549900002 + ], + [ + 14.517015500000014, + 44.60891699899997 + ], + [ + 14.3020285, + 44.93503199700001 + ], + [ + 14.3602285, + 45.08841299900001 + ], + [ + 14.474727499999972, + 44.95611549900002 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.596805, + 46.47590249899997 + ], + [ + 16.854754999000022, + 46.350440999 + ], + [ + 16.8760435, + 46.32060249699998 + ], + [ + 17.294325, + 45.98854450099998 + ], + [ + 17.651499, + 45.847835499999974 + ], + [ + 17.911642, + 45.79095099699998 + ], + [ + 18.446884, + 45.73704899799998 + ], + [ + 18.821306, + 45.91438299700002 + ], + [ + 18.889734, + 45.92118049700002 + ], + [ + 19.033942, + 45.48682149899997 + ], + [ + 19.004717, + 45.435032 + ], + [ + 19.425167499999986, + 45.167692499 + ], + [ + 19.0864565, + 45.14539099900003 + ], + [ + 19.022069499999986, + 44.85535399899999 + ], + [ + 18.53199749999999, + 45.090629498 + ], + [ + 17.143591499000024, + 45.162589500000024 + ], + [ + 16.529669, + 45.226574 + ], + [ + 16.288761, + 44.995689497 + ], + [ + 15.836288500000023, + 45.22247699899998 + ], + [ + 15.736722, + 44.93563099900001 + ], + [ + 15.0589, + 45.111690501 + ], + [ + 15.017143, + 45.12289049999998 + ], + [ + 14.961522, + 45.273318999000026 + ], + [ + 15.226437499999975, + 45.42708799799999 + ], + [ + 15.385532, + 45.48658049900001 + ], + [ + 15.277050499999973, + 45.604461499000024 + ], + [ + 15.331290500000023, + 45.76285499900001 + ], + [ + 15.404425, + 45.792716997000014 + ], + [ + 15.70640450000002, + 45.97534299900002 + ], + [ + 15.627262, + 46.08595349900003 + ], + [ + 15.7914755, + 46.259327497000015 + ], + [ + 15.8768685, + 46.280055499000014 + ], + [ + 16.301549, + 46.37828799699997 + ], + [ + 16.242148499999985, + 46.49007549700002 + ], + [ + 16.596805, + 46.47590249899997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -4.238510999000027, + 42.95431499799997 + ], + [ + -4.081359, + 42.761417499 + ], + [ + -4.04593, + 42.766566996999984 + ], + [ + -4.002319, + 42.830867497999975 + ], + [ + -3.99967, + 42.76893249699998 + ], + [ + -3.815811, + 42.812561 + ], + [ + -3.945488, + 43.005718496999975 + ], + [ + -3.417681500000015, + 43.13336949799998 + ], + [ + -3.141396, + 43.161483498999985 + ], + [ + -3.0890235, + 43.00158299899999 + ], + [ + -3.0369895, + 42.98218549799998 + ], + [ + -3.286797499999977, + 42.885097497 + ], + [ + -2.8581175, + 42.63816849900002 + ], + [ + -3.13429450000001, + 42.54202249799999 + ], + [ + -2.9136375, + 42.02283849999998 + ], + [ + -2.282167500000014, + 42.13168699900001 + ], + [ + -1.8565395, + 41.966388498000015 + ], + [ + -1.825316, + 41.778365999000016 + ], + [ + -2.170485499999984, + 41.318836498999985 + ], + [ + -2.05169, + 41.14685799900002 + ], + [ + -2.418909000999975, + 41.05771649899998 + ], + [ + -2.716780500000027, + 41.275680498999975 + ], + [ + -3.207373, + 41.304244998 + ], + [ + -3.539573, + 41.16499349899999 + ], + [ + -4.160293500000023, + 40.68985350000003 + ], + [ + -4.578901, + 40.217157499 + ], + [ + -5.336016500000028, + 40.11585599900002 + ], + [ + -5.7376025, + 40.29416299899998 + ], + [ + -6.2399775, + 40.48590099900002 + ], + [ + -6.865144, + 40.270694499 + ], + [ + -6.801935, + 40.861045998 + ], + [ + -6.929903500000023, + 41.02946649900002 + ], + [ + -6.689786, + 41.20524149800002 + ], + [ + -6.479713, + 41.294379999 + ], + [ + -6.189352, + 41.575046499 + ], + [ + -6.5884615, + 41.967761998000015 + ], + [ + -6.983513500000015, + 41.97290399899998 + ], + [ + -6.784308, + 42.253608499999984 + ], + [ + -6.8227655, + 42.490833001 + ], + [ + -7.076834, + 42.50812399900002 + ], + [ + -6.824167, + 42.915012499 + ], + [ + -4.841038500000025, + 43.18070949999998 + ], + [ + -4.737022998999976, + 43.02092349899999 + ], + [ + -4.238510999000027, + 42.95431499799997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.05169, + 41.14685799900002 + ], + [ + -1.6174335, + 40.94374099700002 + ], + [ + -1.545494500000018, + 40.59521099900002 + ], + [ + -1.806344, + 40.39824699899998 + ], + [ + -1.448831499999983, + 40.14535849700002 + ], + [ + -1.165154, + 40.01010899800002 + ], + [ + -1.1423615, + 39.971855499000014 + ], + [ + -1.505146500000023, + 39.41801449799999 + ], + [ + -1.161849, + 39.305431499 + ], + [ + -1.266710499999988, + 39.05103250000002 + ], + [ + -0.959359, + 38.944587497999976 + ], + [ + -0.928884499999981, + 38.783839999 + ], + [ + -1.02687, + 38.655509498000015 + ], + [ + -1.402179499999988, + 38.690803500000015 + ], + [ + -2.341602, + 38.02601999900003 + ], + [ + -2.551274001000024, + 38.084118 + ], + [ + -2.481576, + 38.393101 + ], + [ + -2.762069, + 38.532779499000014 + ], + [ + -4.268895, + 38.347212997999975 + ], + [ + -5.008071500000028, + 38.71527499899997 + ], + [ + -5.046996001000025, + 38.72913349800001 + ], + [ + -4.847362499999974, + 38.882449999000016 + ], + [ + -4.962548, + 39.058776997999985 + ], + [ + -4.687733, + 39.450336499 + ], + [ + -4.755411, + 39.415759998 + ], + [ + -4.8104735, + 39.39661399900001 + ], + [ + -4.9407835, + 39.39516450100001 + ], + [ + -4.952554500000019, + 39.395038499 + ], + [ + -5.406153, + 39.877772999 + ], + [ + -5.336016500000028, + 40.11585599900002 + ], + [ + -4.578901, + 40.217157499 + ], + [ + -4.190704, + 40.29731599799999 + ], + [ + -3.623443, + 40.053848500000015 + ], + [ + -3.161419500000022, + 40.06489699799999 + ], + [ + -3.067689, + 40.157884998999975 + ], + [ + -3.194294500000012, + 40.248005998999986 + ], + [ + -3.130407, + 40.40515399899999 + ], + [ + -3.468398, + 40.689896498999985 + ], + [ + -3.394300499999986, + 41.000234498 + ], + [ + -3.539573, + 41.16499349899999 + ], + [ + -3.207373, + 41.304244998 + ], + [ + -2.716780500000027, + 41.275680498999975 + ], + [ + -2.418909000999975, + 41.05771649899998 + ], + [ + -2.05169, + 41.14685799900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -5.336016500000028, + 40.11585599900002 + ], + [ + -5.406153, + 39.877772999 + ], + [ + -4.952554500000019, + 39.395038499 + ], + [ + -4.9407835, + 39.39516450100001 + ], + [ + -4.8104735, + 39.39661399900001 + ], + [ + -4.755411, + 39.415759998 + ], + [ + -4.687733, + 39.450336499 + ], + [ + -4.962548, + 39.058776997999985 + ], + [ + -4.847362499999974, + 38.882449999000016 + ], + [ + -5.046996001000025, + 38.72913349800001 + ], + [ + -5.568977500000017, + 38.43263999800001 + ], + [ + -5.584845499999972, + 38.131752 + ], + [ + -5.874359, + 38.158622998 + ], + [ + -6.180307500000026, + 37.941077998000026 + ], + [ + -6.9317385, + 38.208377998 + ], + [ + -7.10795250000001, + 38.18812150000002 + ], + [ + -7.316636, + 38.43987649899998 + ], + [ + -7.203135, + 38.75101749800001 + ], + [ + -6.9513915, + 39.024070499 + ], + [ + -7.231467, + 39.278431 + ], + [ + -7.53490245, + 39.661986891000026 + ], + [ + -7.015405, + 39.670856499000024 + ], + [ + -6.864203, + 40.011867498000015 + ], + [ + -7.011960499999986, + 40.126934 + ], + [ + -6.9512985, + 40.257445999000026 + ], + [ + -6.865144, + 40.270694499 + ], + [ + -6.2399775, + 40.48590099900002 + ], + [ + -5.7376025, + 40.29416299899998 + ], + [ + -5.336016500000028, + 40.11585599900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 1.731011, + 42.49240099899998 + ], + [ + 1.964552, + 42.38215699900002 + ], + [ + 3.174803999, + 42.435375 + ], + [ + 3.111661500000025, + 42.20384949800001 + ], + [ + 3.21998050000002, + 41.92232149900002 + ], + [ + 2.778513, + 41.648807498 + ], + [ + 1.645323500000018, + 41.19562149699999 + ], + [ + 0.966513, + 41.028423498999985 + ], + [ + 0.5152385, + 40.522918498000024 + ], + [ + 0.170789500000012, + 40.732837 + ], + [ + 0.220409500000017, + 41.07143 + ], + [ + 0.385724, + 41.278839498000025 + ], + [ + 0.335948499999972, + 41.40743249899998 + ], + [ + 0.767070499999988, + 42.34881599800002 + ], + [ + 0.660127, + 42.69095249899999 + ], + [ + 0.858215, + 42.825740999 + ], + [ + 1.442566, + 42.60366800100002 + ], + [ + 1.725801, + 42.50440199899998 + ], + [ + 1.731011, + 42.49240099899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.170789500000012, + 40.732837 + ], + [ + 0.5152385, + 40.522918498000024 + ], + [ + -0.188467, + 39.721954498 + ], + [ + -0.334561, + 39.42353449900003 + ], + [ + 0.012785310000027, + 38.86459284699998 + ], + [ + 0.205479500000024, + 38.731944999 + ], + [ + -0.301367, + 38.48192949899999 + ], + [ + -0.7621355, + 37.84700799799998 + ], + [ + -1.030276500000014, + 38.09707649799998 + ], + [ + -1.02687, + 38.655509498000015 + ], + [ + -0.928884499999981, + 38.783839999 + ], + [ + -0.959359, + 38.944587497999976 + ], + [ + -1.266710499999988, + 39.05103250000002 + ], + [ + -1.161849, + 39.305431499 + ], + [ + -1.505146500000023, + 39.41801449799999 + ], + [ + -1.1423615, + 39.971855499000014 + ], + [ + -0.912739, + 39.87310750099999 + ], + [ + -0.797643, + 39.88107649900002 + ], + [ + -0.837749501000019, + 39.97681799700001 + ], + [ + -0.279997499999979, + 40.36949949900003 + ], + [ + -0.197124499999973, + 40.78445799899998 + ], + [ + 0.170789500000012, + 40.732837 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 3.079701, + 39.901542499000016 + ], + [ + 3.1449035, + 39.77384950099997 + ], + [ + 3.3484785, + 39.78888700099998 + ], + [ + 3.455952500000024, + 39.65670399800001 + ], + [ + 3.0730825, + 39.268691999 + ], + [ + 2.344436, + 39.587226998 + ], + [ + 2.778520500000013, + 39.85567899900002 + ], + [ + 3.213000500000021, + 39.955375996999976 + ], + [ + 3.079701, + 39.901542499000016 + ] + ] + ], + [ + [ + [ + 1.423349, + 38.905044498999985 + ], + [ + 1.3711275, + 38.830333498000016 + ], + [ + 1.213064499999973, + 38.90135950000001 + ], + [ + 1.310512500000016, + 39.04295349900002 + ], + [ + 1.603850500000021, + 39.09101849799998 + ], + [ + 1.605787500000019, + 39.02961349899999 + ], + [ + 1.423349, + 38.905044498999985 + ] + ] + ], + [ + [ + [ + 4.094098, + 40.05835349900002 + ], + [ + 4.28757, + 39.814689499 + ], + [ + 3.791304, + 40.01617799899998 + ], + [ + 4.094098, + 40.05835349900002 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.341602, + 38.02601999900003 + ], + [ + -2.2076315, + 37.916587999 + ], + [ + -1.974468, + 37.868480499999976 + ], + [ + -1.976776500000028, + 37.61873250000002 + ], + [ + -1.630033, + 37.375182999 + ], + [ + -2.12434, + 36.73184200100002 + ], + [ + -2.3680915, + 36.841457499 + ], + [ + -2.700591, + 36.68272399799997 + ], + [ + -3.128691, + 36.750887998999985 + ], + [ + -3.777457500000025, + 36.737926500000015 + ], + [ + -4.418207, + 36.717219999 + ], + [ + -5.252405, + 36.311275498999976 + ], + [ + -5.339225, + 36.152034997999976 + ], + [ + -5.351522499999987, + 36.15256899899998 + ], + [ + -5.395709008999972, + 36.127541227999984 + ], + [ + -5.60843, + 36.007053497000015 + ], + [ + -6.040427500000021, + 36.19237899900003 + ], + [ + -6.440116, + 36.72086349800003 + ], + [ + -6.345561, + 36.79876699800002 + ], + [ + -6.893693499999983, + 37.161465 + ], + [ + -7.401916500000027, + 37.17482749800001 + ], + [ + -7.512691500000017, + 37.526256499 + ], + [ + -7.2632845, + 37.979908 + ], + [ + -7.002483499999983, + 38.0227165 + ], + [ + -6.9317385, + 38.208377998 + ], + [ + -6.180307500000026, + 37.941077998000026 + ], + [ + -5.874359, + 38.158622998 + ], + [ + -5.584845499999972, + 38.131752 + ], + [ + -5.568977500000017, + 38.43263999800001 + ], + [ + -5.046996001000025, + 38.72913349800001 + ], + [ + -5.008071500000028, + 38.71527499899997 + ], + [ + -4.268895, + 38.347212997999975 + ], + [ + -2.762069, + 38.532779499000014 + ], + [ + -2.481576, + 38.393101 + ], + [ + -2.551274001000024, + 38.084118 + ], + [ + -2.341602, + 38.02601999900003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.02687, + 38.655509498000015 + ], + [ + -1.030276500000014, + 38.09707649799998 + ], + [ + -0.7621355, + 37.84700799799998 + ], + [ + -0.8599795, + 37.721446997999976 + ], + [ + -0.720821, + 37.605872998 + ], + [ + -1.325323500000025, + 37.562442498999985 + ], + [ + -1.630033, + 37.375182999 + ], + [ + -1.976776500000028, + 37.61873250000002 + ], + [ + -1.974468, + 37.868480499999976 + ], + [ + -2.2076315, + 37.916587999 + ], + [ + -2.341602, + 38.02601999900003 + ], + [ + -1.402179499999988, + 38.690803500000015 + ], + [ + -1.02687, + 38.655509498000015 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -5.35072900099999, + 35.909002998 + ], + [ + -5.34252117599999, + 35.87303803999998 + ], + [ + -5.382034499999975, + 35.91260649999998 + ], + [ + -5.35072900099999, + 35.909002998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.950587, + 35.31841799900002 + ], + [ + -2.92736, + 35.274264 + ], + [ + -2.970093500000019, + 35.289367500000026 + ], + [ + -2.950587, + 35.31841799900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + -16.3605925, + 28.379459499 + ], + [ + -16.640173, + 28.00498799799999 + ], + [ + -16.924217, + 28.350006 + ], + [ + -16.134222, + 28.5812585 + ], + [ + -16.3605925, + 28.379459499 + ] + ] + ], + [ + [ + [ + -15.424459500000012, + 27.80785549799998 + ], + [ + -15.600111, + 27.734939498000017 + ], + [ + -15.8329905, + 27.90972349899999 + ], + [ + -15.709276000999978, + 28.16573899799999 + ], + [ + -15.4035465, + 28.171691999000018 + ], + [ + -15.424459500000012, + 27.80785549799998 + ] + ] + ], + [ + [ + [ + -14.2242965, + 28.162038998000014 + ], + [ + -14.492716, + 28.083705999000017 + ], + [ + -14.226619, + 28.21153449799999 + ], + [ + -14.016622499999983, + 28.71499399800001 + ], + [ + -13.877083500000026, + 28.752040998999973 + ], + [ + -13.922949, + 28.247462998 + ], + [ + -14.2242965, + 28.162038998000014 + ] + ] + ], + [ + [ + [ + -13.482365500000014, + 28.999332498 + ], + [ + -13.8541985, + 28.862073998000028 + ], + [ + -13.756207500000016, + 29.0776095 + ], + [ + -13.470518, + 29.238542498000015 + ], + [ + -13.464197, + 29.12962349899999 + ], + [ + -13.482365500000014, + 28.999332498 + ] + ] + ], + [ + [ + [ + -17.7602195, + 28.569320999000013 + ], + [ + -17.842235500000015, + 28.452651499000012 + ], + [ + -17.9487345, + 28.840764997 + ], + [ + -17.777729, + 28.839669997999977 + ], + [ + -17.7602195, + 28.569320999000013 + ] + ] + ], + [ + [ + [ + -17.09916050099997, + 28.0943145 + ], + [ + -17.199426500000015, + 28.023731498000018 + ], + [ + -17.3492185, + 28.099218498000027 + ], + [ + -17.318047, + 28.204323999 + ], + [ + -17.118093499999986, + 28.149373998999977 + ], + [ + -17.09916050099997, + 28.0943145 + ] + ] + ], + [ + [ + [ + -17.883365500000025, + 27.80445449699999 + ], + [ + -17.979040000999987, + 27.640519998 + ], + [ + -18.158359500000017, + 27.712901499999987 + ], + [ + -18.131494, + 27.77158149899998 + ], + [ + -18.036621001000015, + 27.762228 + ], + [ + -17.958796, + 27.841646 + ], + [ + -17.883365500000025, + 27.80445449699999 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.927715464000016, + 63.82609472199999 + ], + [ + 22.989051, + 63.788022 + ], + [ + 23.027271499999983, + 63.788767501 + ], + [ + 23.744085000999974, + 63.67544400100002 + ], + [ + 23.422409500000015, + 63.616021 + ], + [ + 23.696989499999972, + 63.380327 + ], + [ + 24.359008, + 63.116434501000015 + ], + [ + 24.772885499999973, + 63.13336849699999 + ], + [ + 24.772926499999983, + 63.358689500000025 + ], + [ + 25.036322499999983, + 63.45807800099999 + ], + [ + 26.138652, + 63.457592 + ], + [ + 26.039845, + 62.93611350100002 + ], + [ + 26.709129500000017, + 62.45294899800001 + ], + [ + 26.220722, + 62.11856249700003 + ], + [ + 26.53375, + 61.691326996999976 + ], + [ + 26.315036, + 61.60844849799997 + ], + [ + 25.921634, + 61.78734750000001 + ], + [ + 24.970471498999984, + 61.45070549799999 + ], + [ + 24.913933499999985, + 61.324883 + ], + [ + 23.195350500000018, + 61.001223 + ], + [ + 22.968488499999978, + 61.043258 + ], + [ + 21.419929500000023, + 61.047442998 + ], + [ + 21.7037775, + 61.557694501000014 + ], + [ + 21.27957, + 61.993263 + ], + [ + 21.366348, + 62.370907 + ], + [ + 21.08101, + 62.6323175 + ], + [ + 21.483848500000022, + 62.97023950099998 + ], + [ + 21.45596771800001, + 63.01229484999999 + ], + [ + 21.3373805, + 63.0409545 + ], + [ + 22.13746955800002, + 63.26130588799998 + ], + [ + 22.159774, + 63.255317 + ], + [ + 22.224766719, + 63.291334242 + ], + [ + 22.393028500000014, + 63.33328150099999 + ], + [ + 22.324308499999972, + 63.581827499999974 + ], + [ + 22.8713565, + 63.8339785 + ], + [ + 22.927715464000016, + 63.82609472199999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 26.208359499999972, + 60.7579925 + ], + [ + 26.539152999, + 60.594937500000015 + ], + [ + 26.453932, + 60.487652500000024 + ], + [ + 26.00972368700002, + 60.31647918800002 + ], + [ + 26.010455, + 60.321357 + ], + [ + 25.993759220000015, + 60.337336162999975 + ], + [ + 25.9122875, + 60.366004498 + ], + [ + 25.863847, + 60.323478497999986 + ], + [ + 25.936341, + 60.26062 + ], + [ + 25.7869765, + 60.237285997000015 + ], + [ + 25.627897500000017, + 60.326478 + ], + [ + 25.7202395, + 60.339234498 + ], + [ + 25.6696885, + 60.383327501 + ], + [ + 25.432495500000016, + 60.222521 + ], + [ + 25.21634410500002, + 60.21141365599999 + ], + [ + 24.575224, + 60.178468501 + ], + [ + 24.202054, + 60.027420999000014 + ], + [ + 23.839481499999977, + 60.018403001000024 + ], + [ + 23.956796, + 60.004310997 + ], + [ + 23.69256456300002, + 59.972044676999985 + ], + [ + 23.727499, + 59.943315996000024 + ], + [ + 23.3554325, + 59.91736499899997 + ], + [ + 23.186451499999976, + 59.827804001 + ], + [ + 22.932191499999988, + 59.824022 + ], + [ + 23.11882880799999, + 60.00089512599999 + ], + [ + 23.028183, + 60.10148650000002 + ], + [ + 23.64895, + 60.20156399799998 + ], + [ + 23.900492499999984, + 60.64975850000002 + ], + [ + 25.192922, + 60.72473849900001 + ], + [ + 25.110965998999973, + 60.818584500999975 + ], + [ + 26.208359499999972, + 60.7579925 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 26.483068, + 61.32283449900001 + ], + [ + 26.513659500000017, + 61.274324001000025 + ], + [ + 26.929526, + 61.210034501 + ], + [ + 27.20581950000002, + 61.16246800099998 + ], + [ + 29.559279, + 61.722068001000025 + ], + [ + 30.143966499999976, + 61.85223799900001 + ], + [ + 27.99127950000002, + 60.668979 + ], + [ + 27.797273500000017, + 60.54534300099999 + ], + [ + 26.453932, + 60.487652500000024 + ], + [ + 26.539152999, + 60.594937500000015 + ], + [ + 26.208359499999972, + 60.7579925 + ], + [ + 25.110965998999973, + 60.818584500999975 + ], + [ + 25.192922, + 60.72473849900001 + ], + [ + 23.900492499999984, + 60.64975850000002 + ], + [ + 23.64895, + 60.20156399799998 + ], + [ + 23.028183, + 60.10148650000002 + ], + [ + 22.87021, + 60.1982375 + ], + [ + 23.079409, + 60.375627 + ], + [ + 22.454013998999983, + 60.265965000999984 + ], + [ + 22.60413649999998, + 60.37388149999998 + ], + [ + 22.50068, + 60.41853749799998 + ], + [ + 22.295877999000027, + 60.38428949799999 + ], + [ + 22.253048428, + 60.41175714899998 + ], + [ + 22.247403, + 60.419651498 + ], + [ + 22.24190927799998, + 60.41890473400002 + ], + [ + 21.846205, + 60.63480049899999 + ], + [ + 21.585519498999986, + 60.491007001000014 + ], + [ + 21.572621, + 60.500252499 + ], + [ + 21.592718, + 60.517643501 + ], + [ + 21.5593745, + 60.55924500100002 + ], + [ + 21.462105, + 60.581443501000024 + ], + [ + 21.1746465, + 60.87034399700002 + ], + [ + 21.419929500000023, + 61.047442998 + ], + [ + 22.968488499999978, + 61.043258 + ], + [ + 23.195350500000018, + 61.001223 + ], + [ + 24.913933499999985, + 61.324883 + ], + [ + 24.970471498999984, + 61.45070549799999 + ], + [ + 25.921634, + 61.78734750000001 + ], + [ + 26.315036, + 61.60844849799997 + ], + [ + 26.243660001000023, + 61.44645000100002 + ], + [ + 26.483068, + 61.32283449900001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 28.8007675, + 68.86928600099998 + ], + [ + 28.4339175, + 68.539672 + ], + [ + 28.6461425, + 68.19630450099999 + ], + [ + 30.0170405, + 67.67355650000002 + ], + [ + 29.033642, + 66.942135001 + ], + [ + 29.57293850000002, + 66.432856 + ], + [ + 30.13848, + 65.66868200099998 + ], + [ + 29.7547315, + 65.49736949800001 + ], + [ + 29.64493, + 64.86649549999998 + ], + [ + 30.086534500000027, + 64.77399049899998 + ], + [ + 30.044892, + 64.40202999799999 + ], + [ + 30.553427999, + 64.13224799900001 + ], + [ + 29.971917, + 63.757165499999985 + ], + [ + 31.586729, + 62.90870200099999 + ], + [ + 30.143966499999976, + 61.85223799900001 + ], + [ + 29.559279, + 61.722068001000025 + ], + [ + 27.20581950000002, + 61.16246800099998 + ], + [ + 26.929526, + 61.210034501 + ], + [ + 26.513659500000017, + 61.274324001000025 + ], + [ + 26.483068, + 61.32283449900001 + ], + [ + 26.243660001000023, + 61.44645000100002 + ], + [ + 26.315036, + 61.60844849799997 + ], + [ + 26.53375, + 61.691326996999976 + ], + [ + 26.220722, + 62.11856249700003 + ], + [ + 26.709129500000017, + 62.45294899800001 + ], + [ + 26.039845, + 62.93611350100002 + ], + [ + 26.138652, + 63.457592 + ], + [ + 25.036322499999983, + 63.45807800099999 + ], + [ + 24.772926499999983, + 63.358689500000025 + ], + [ + 24.772885499999973, + 63.13336849699999 + ], + [ + 24.359008, + 63.116434501000015 + ], + [ + 23.696989499999972, + 63.380327 + ], + [ + 23.422409500000015, + 63.616021 + ], + [ + 23.744085000999974, + 63.67544400100002 + ], + [ + 23.027271499999983, + 63.788767501 + ], + [ + 23.61733300100002, + 64.048771998 + ], + [ + 24.53991050000002, + 64.81454849699998 + ], + [ + 25.487671, + 64.9614365 + ], + [ + 25.366445, + 65.42749949900002 + ], + [ + 25.084607499000015, + 65.58894949699999 + ], + [ + 24.8877245, + 65.665782 + ], + [ + 24.155129, + 65.816027 + ], + [ + 23.6455995, + 66.3014085 + ], + [ + 23.995160500999987, + 66.819708999 + ], + [ + 23.3940235, + 67.485820999 + ], + [ + 23.652348999000026, + 67.958793001 + ], + [ + 21.888943000999973, + 68.5843835 + ], + [ + 20.548636499999986, + 69.05996850100001 + ], + [ + 21.2788215, + 69.31188399899997 + ], + [ + 21.9836115, + 69.07289350000002 + ], + [ + 22.374526, + 68.716667 + ], + [ + 24.903199500000028, + 68.554591 + ], + [ + 25.777502500000026, + 69.018279001 + ], + [ + 25.702101, + 69.25366150100001 + ], + [ + 25.950607, + 69.6965505 + ], + [ + 27.984522, + 70.013965499 + ], + [ + 29.336974, + 69.47831050000002 + ], + [ + 28.8057925, + 69.111147 + ], + [ + 28.92968, + 69.051905 + ], + [ + 28.415766500000018, + 68.915452501 + ], + [ + 28.8007675, + 68.86928600099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 19.91603650000002, + 60.42270650199998 + ], + [ + 20.2753515, + 60.28527 + ], + [ + 20.168312500000013, + 60.17514399800001 + ], + [ + 20.043062, + 60.102843001 + ], + [ + 19.98094149999997, + 60.104172 + ], + [ + 19.9577145, + 60.060943501 + ], + [ + 19.513948, + 60.178337 + ], + [ + 19.91603650000002, + 60.42270650199998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 3.4851835, + 48.851910498999985 + ], + [ + 3.557419164, + 48.61671378800003 + ], + [ + 3.414788999, + 48.390268499 + ], + [ + 3.049454, + 48.36002749900001 + ], + [ + 2.936316, + 48.16339149999999 + ], + [ + 2.476016500000014, + 48.1296365 + ], + [ + 2.402663, + 48.3207175 + ], + [ + 1.99409, + 48.286584 + ], + [ + 1.9221465, + 48.457599499000025 + ], + [ + 1.501526500000011, + 48.94105199799998 + ], + [ + 1.608799, + 49.077894 + ], + [ + 1.704359, + 49.23219699700002 + ], + [ + 2.5905285, + 49.079653999000016 + ], + [ + 3.07188, + 49.117553500999975 + ], + [ + 3.4851835, + 48.851910498999985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 4.969431, + 49.801825999000016 + ], + [ + 5.153738499999974, + 49.717926 + ], + [ + 5.393511, + 49.617111 + ], + [ + 5.107566500000019, + 49.58468949899998 + ], + [ + 4.950990499999989, + 49.23686749699999 + ], + [ + 4.9884305, + 48.68442200099997 + ], + [ + 5.470055, + 48.42092649900002 + ], + [ + 5.8847235, + 47.92604649899999 + ], + [ + 5.37408, + 47.604537999 + ], + [ + 4.958992, + 47.761870499 + ], + [ + 4.704233, + 48.020234999000024 + ], + [ + 4.293421500000022, + 47.92567349699999 + ], + [ + 3.914676, + 47.975023 + ], + [ + 3.414788999, + 48.390268499 + ], + [ + 3.557419164, + 48.61671378800003 + ], + [ + 3.4851835, + 48.851910498999985 + ], + [ + 3.678962499000022, + 49.01829399899998 + ], + [ + 3.585201500999972, + 49.038866998 + ], + [ + 3.643940499999985, + 49.312713497 + ], + [ + 4.0479745, + 49.405644000999985 + ], + [ + 4.233133, + 49.957828498000026 + ], + [ + 4.432494, + 49.941615996999985 + ], + [ + 4.796697, + 50.14867799899997 + ], + [ + 4.896794, + 50.13742049899997 + ], + [ + 4.793194, + 49.98199900100002 + ], + [ + 4.851578, + 49.79325500099998 + ], + [ + 4.969431, + 49.801825999000016 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 4.140853, + 49.978759997 + ], + [ + 4.233133, + 49.957828498000026 + ], + [ + 4.0479745, + 49.405644000999985 + ], + [ + 3.643940499999985, + 49.312713497 + ], + [ + 3.585201500999972, + 49.038866998 + ], + [ + 3.678962499000022, + 49.01829399899998 + ], + [ + 3.4851835, + 48.851910498999985 + ], + [ + 3.07188, + 49.117553500999975 + ], + [ + 2.5905285, + 49.079653999000016 + ], + [ + 1.704359, + 49.23219699700002 + ], + [ + 1.7139305, + 49.409224999 + ], + [ + 1.783834, + 49.758309499 + ], + [ + 1.379698, + 50.06500999799999 + ], + [ + 1.641539500000022, + 50.352149997000026 + ], + [ + 3.090252, + 50.053740499000014 + ], + [ + 3.1727045, + 50.011996497999974 + ], + [ + 4.140853, + 49.978759997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 1.704359, + 49.23219699700002 + ], + [ + 1.608799, + 49.077894 + ], + [ + 1.501526500000011, + 48.94105199799998 + ], + [ + 0.814824499999986, + 48.67016349900001 + ], + [ + 0.412810499999978, + 48.950626499 + ], + [ + 0.297224500000027, + 49.429863001 + ], + [ + 0.3389785, + 49.4409255 + ], + [ + 0.065609, + 49.512576998999975 + ], + [ + 0.192298, + 49.706962498999985 + ], + [ + 1.379698, + 50.06500999799999 + ], + [ + 1.783834, + 49.758309499 + ], + [ + 1.7139305, + 49.409224999 + ], + [ + 1.704359, + 49.23219699700002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 2.936316, + 48.16339149999999 + ], + [ + 3.12857, + 47.983377001 + ], + [ + 2.8519905, + 47.757863 + ], + [ + 2.976535500000011, + 47.56942449799999 + ], + [ + 2.874630500000023, + 47.520424999 + ], + [ + 3.074774499, + 47.029995000999975 + ], + [ + 3.032063, + 46.794909501 + ], + [ + 2.28104350000001, + 46.420403497 + ], + [ + 2.167784499999982, + 46.424068998999985 + ], + [ + 1.4151855, + 46.347215001 + ], + [ + 1.177279, + 46.383947998 + ], + [ + 0.867469, + 46.74821649900002 + ], + [ + 0.05383, + 47.16373349999998 + ], + [ + 0.230000500000017, + 47.60839749899998 + ], + [ + 0.614432500000021, + 47.694215497000016 + ], + [ + 0.841217498999981, + 48.10305950100002 + ], + [ + 0.797658499000022, + 48.19445500099999 + ], + [ + 0.814824499999986, + 48.67016349900001 + ], + [ + 1.501526500000011, + 48.94105199799998 + ], + [ + 1.9221465, + 48.457599499000025 + ], + [ + 1.99409, + 48.286584 + ], + [ + 2.402663, + 48.3207175 + ], + [ + 2.476016500000014, + 48.1296365 + ], + [ + 2.936316, + 48.16339149999999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.297224500000027, + 49.429863001 + ], + [ + 0.412810499999978, + 48.950626499 + ], + [ + 0.814824499999986, + 48.67016349900001 + ], + [ + 0.797658499000022, + 48.19445500099999 + ], + [ + 0.35289, + 48.459688 + ], + [ + -0.054527, + 48.3820045 + ], + [ + -0.234124, + 48.56184750099999 + ], + [ + -0.86036, + 48.50145849900002 + ], + [ + -1.070164499999976, + 48.508492 + ], + [ + -1.42794, + 48.46191500100002 + ], + [ + -1.571089500000028, + 48.626442 + ], + [ + -1.391047, + 48.64465349699998 + ], + [ + -1.942384, + 49.725959999 + ], + [ + -1.266492500000027, + 49.69559849699999 + ], + [ + -1.3077705, + 49.545719 + ], + [ + -1.11962, + 49.35556800099999 + ], + [ + 0.297224500000027, + 49.429863001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.37408, + 47.604537999 + ], + [ + 5.477542, + 47.60871849900002 + ], + [ + 5.375406999, + 47.46016749900002 + ], + [ + 5.518537499999979, + 47.304183998999974 + ], + [ + 5.255232499999977, + 46.97988749899997 + ], + [ + 5.440604, + 46.637912 + ], + [ + 5.310563499000011, + 46.446769999000026 + ], + [ + 4.953853998999989, + 46.513422999 + ], + [ + 4.780208500000015, + 46.176675999 + ], + [ + 4.388074500000016, + 46.219790499 + ], + [ + 3.899538499000016, + 46.275907999000026 + ], + [ + 3.998868500000015, + 46.46486699899998 + ], + [ + 3.629422499999976, + 46.74945649799997 + ], + [ + 3.032063, + 46.794909501 + ], + [ + 3.074774499, + 47.029995000999975 + ], + [ + 2.874630500000023, + 47.520424999 + ], + [ + 2.976535500000011, + 47.56942449799999 + ], + [ + 2.8519905, + 47.757863 + ], + [ + 3.12857, + 47.983377001 + ], + [ + 2.936316, + 48.16339149999999 + ], + [ + 3.049454, + 48.36002749900001 + ], + [ + 3.414788999, + 48.390268499 + ], + [ + 3.914676, + 47.975023 + ], + [ + 4.293421500000022, + 47.92567349699999 + ], + [ + 4.704233, + 48.020234999000024 + ], + [ + 4.958992, + 47.761870499 + ], + [ + 5.37408, + 47.604537999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 2.863276, + 50.70834349699999 + ], + [ + 3.0187085, + 50.773532999 + ], + [ + 3.098481, + 50.779019 + ], + [ + 3.176996, + 50.756164497999976 + ], + [ + 3.245294, + 50.71300949800002 + ], + [ + 3.286492, + 50.52756899799999 + ], + [ + 3.615081499999974, + 50.490399001000014 + ], + [ + 3.65551, + 50.461735498999985 + ], + [ + 3.710389, + 50.30316549999998 + ], + [ + 4.027774500000021, + 50.358330498999976 + ], + [ + 4.140853, + 49.978759997 + ], + [ + 3.1727045, + 50.011996497999974 + ], + [ + 3.090252, + 50.053740499000014 + ], + [ + 1.641539500000022, + 50.352149997000026 + ], + [ + 1.580953, + 50.8695525 + ], + [ + 2.067705, + 51.00649999699999 + ], + [ + 2.546011, + 51.08938199800002 + ], + [ + 2.607036, + 50.91268949900001 + ], + [ + 2.863276, + 50.70834349699999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.818117, + 49.5463105 + ], + [ + 5.893386, + 49.496944498 + ], + [ + 6.367107499999975, + 49.46950700100001 + ], + [ + 6.556986, + 49.41920849899998 + ], + [ + 6.723465499999975, + 49.21882899899998 + ], + [ + 7.101069, + 49.155998 + ], + [ + 7.36875550000002, + 49.16145799899999 + ], + [ + 7.635651, + 49.053950499999985 + ], + [ + 7.536287500000014, + 48.93241299699997 + ], + [ + 7.067510500000026, + 49.066366501 + ], + [ + 6.954672, + 48.89389049800002 + ], + [ + 7.30645, + 48.76911249800003 + ], + [ + 7.079356, + 48.536418500000025 + ], + [ + 7.123163499999976, + 48.51358799899998 + ], + [ + 7.198287, + 48.310471499000016 + ], + [ + 6.846175500000015, + 47.822942496999985 + ], + [ + 6.8235335, + 47.813051 + ], + [ + 6.1470185, + 48.01552049899999 + ], + [ + 5.8847235, + 47.92604649899999 + ], + [ + 5.470055, + 48.42092649900002 + ], + [ + 4.9884305, + 48.68442200099997 + ], + [ + 4.950990499999989, + 49.23686749699999 + ], + [ + 5.107566500000019, + 49.58468949899998 + ], + [ + 5.393511, + 49.617111 + ], + [ + 5.470882999000025, + 49.49723799899999 + ], + [ + 5.734555999, + 49.545690501000024 + ], + [ + 5.818117, + 49.5463105 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.635651, + 49.053950499999985 + ], + [ + 7.910654500000021, + 49.04516349900001 + ], + [ + 8.068407499999978, + 48.999316497999985 + ], + [ + 8.232632998999975, + 48.966571500999976 + ], + [ + 7.9596305, + 48.71858099899998 + ], + [ + 7.680713, + 48.25726699699999 + ], + [ + 7.5779195, + 48.121391999000025 + ], + [ + 7.577291, + 48.115654999000014 + ], + [ + 7.545990500000016, + 47.74357399899998 + ], + [ + 7.589039, + 47.589877999 + ], + [ + 7.5551595, + 47.56456399699999 + ], + [ + 7.510905499999978, + 47.50258249799998 + ], + [ + 7.445019, + 47.46172349699998 + ], + [ + 7.42113949899999, + 47.446387999000024 + ], + [ + 7.380894, + 47.431892499000014 + ], + [ + 7.326466, + 47.43985350000003 + ], + [ + 7.130353, + 47.503040499 + ], + [ + 6.846175500000015, + 47.822942496999985 + ], + [ + 7.198287, + 48.310471499000016 + ], + [ + 7.123163499999976, + 48.51358799899998 + ], + [ + 7.079356, + 48.536418500000025 + ], + [ + 7.30645, + 48.76911249800003 + ], + [ + 6.954672, + 48.89389049800002 + ], + [ + 7.067510500000026, + 49.066366501 + ], + [ + 7.536287500000014, + 48.93241299699997 + ], + [ + 7.635651, + 49.053950499999985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.846175500000015, + 47.822942496999985 + ], + [ + 7.130353, + 47.503040499 + ], + [ + 6.939186, + 47.433704499999976 + ], + [ + 6.879806, + 47.35243999800002 + ], + [ + 7.061636, + 47.34373449899999 + ], + [ + 6.858914, + 47.16529449900003 + ], + [ + 6.460011, + 46.85155149899998 + ], + [ + 6.138106, + 46.55766699700001 + ], + [ + 6.064003, + 46.41622899700002 + ], + [ + 5.4736565, + 46.26428400100002 + ], + [ + 5.310563499000011, + 46.446769999000026 + ], + [ + 5.440604, + 46.637912 + ], + [ + 5.255232499999977, + 46.97988749899997 + ], + [ + 5.518537499999979, + 47.304183998999974 + ], + [ + 5.375406999, + 47.46016749900002 + ], + [ + 5.477542, + 47.60871849900002 + ], + [ + 5.37408, + 47.604537999 + ], + [ + 5.8847235, + 47.92604649899999 + ], + [ + 6.1470185, + 48.01552049899999 + ], + [ + 6.8235335, + 47.813051 + ], + [ + 6.846175500000015, + 47.822942496999985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.797658499000022, + 48.19445500099999 + ], + [ + 0.841217498999981, + 48.10305950100002 + ], + [ + 0.614432500000021, + 47.694215497000016 + ], + [ + 0.230000500000017, + 47.60839749899998 + ], + [ + 0.05383, + 47.16373349999998 + ], + [ + -0.102116, + 47.06479999800001 + ], + [ + -0.891964, + 46.975820499 + ], + [ + -0.537795001, + 46.386463999 + ], + [ + -0.7504715, + 46.304254499000024 + ], + [ + -1.129406, + 46.310271999 + ], + [ + -1.8123445, + 46.49341949799998 + ], + [ + -2.141985, + 46.81897349799999 + ], + [ + -1.980413, + 47.02890799900001 + ], + [ + -2.547108001000026, + 47.292373499 + ], + [ + -2.458493, + 47.44811999900003 + ], + [ + -2.097034, + 47.63135649899999 + ], + [ + -1.245885, + 47.77671749899997 + ], + [ + -1.238248, + 47.809992497 + ], + [ + -1.015823501, + 48.00328599900001 + ], + [ + -1.070164499999976, + 48.508492 + ], + [ + -0.86036, + 48.50145849900002 + ], + [ + -0.234124, + 48.56184750099999 + ], + [ + -0.054527, + 48.3820045 + ], + [ + 0.35289, + 48.459688 + ], + [ + 0.797658499000022, + 48.19445500099999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 19.666329, + 47.58855000099999 + ], + [ + 19.99046249999998, + 47.346628001 + ], + [ + 20.094639, + 47.0074265 + ], + [ + 18.965907500000014, + 47.028965 + ], + [ + 18.688433499999974, + 47.577067499 + ], + [ + 18.848478, + 47.81822800100002 + ], + [ + 18.7548155, + 47.975082499 + ], + [ + 18.928392, + 48.056832499 + ], + [ + 19.086134500000014, + 47.838170499 + ], + [ + 19.570937, + 47.73490000100003 + ], + [ + 19.666329, + 47.58855000099999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 18.965907500000014, + 47.028965 + ], + [ + 18.925097, + 46.85716850099999 + ], + [ + 18.636275, + 46.687217498999985 + ], + [ + 18.210897499999987, + 46.77816150000001 + ], + [ + 18.205248499999982, + 46.97163300099999 + ], + [ + 17.419067499999983, + 46.75065649700002 + ], + [ + 17.074528499999985, + 47.04871349699999 + ], + [ + 17.1723915, + 47.432483998 + ], + [ + 17.737528, + 47.47290749699999 + ], + [ + 17.7652275, + 47.27287850099998 + ], + [ + 17.883888, + 47.38958699800003 + ], + [ + 17.893923, + 47.739456999000026 + ], + [ + 18.848478, + 47.81822800100002 + ], + [ + 18.688433499999974, + 47.577067499 + ], + [ + 18.965907500000014, + 47.028965 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 17.893923, + 47.739456999000026 + ], + [ + 17.883888, + 47.38958699800003 + ], + [ + 17.7652275, + 47.27287850099998 + ], + [ + 17.737528, + 47.47290749699999 + ], + [ + 17.1723915, + 47.432483998 + ], + [ + 17.074528499999985, + 47.04871349699999 + ], + [ + 17.419067499999983, + 46.75065649700002 + ], + [ + 17.2214945, + 46.671697499 + ], + [ + 17.187541, + 46.42907199799998 + ], + [ + 16.8760435, + 46.32060249699998 + ], + [ + 16.854754999000022, + 46.350440999 + ], + [ + 16.596805, + 46.47590249899997 + ], + [ + 16.3707935, + 46.722243499 + ], + [ + 16.113849, + 46.86906799899998 + ], + [ + 16.508267499999988, + 47.00125599900002 + ], + [ + 16.4337615, + 47.35291849999999 + ], + [ + 16.64622, + 47.446597 + ], + [ + 16.652076, + 47.6229035 + ], + [ + 16.421846, + 47.66470449899998 + ], + [ + 17.093074, + 47.708236 + ], + [ + 17.1607975, + 48.006656501 + ], + [ + 17.247427500000015, + 48.01200899899999 + ], + [ + 17.70543650000002, + 47.75899249899999 + ], + [ + 17.893923, + 47.739456999000026 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 18.925097, + 46.85716850099999 + ], + [ + 19.006243499999982, + 46.70492349699998 + ], + [ + 18.802291, + 46.108764999000016 + ], + [ + 18.821306, + 45.91438299700002 + ], + [ + 18.446884, + 45.73704899799998 + ], + [ + 17.911642, + 45.79095099699998 + ], + [ + 17.651499, + 45.847835499999974 + ], + [ + 17.294325, + 45.98854450099998 + ], + [ + 16.8760435, + 46.32060249699998 + ], + [ + 17.187541, + 46.42907199799998 + ], + [ + 17.2214945, + 46.671697499 + ], + [ + 17.419067499999983, + 46.75065649700002 + ], + [ + 18.205248499999982, + 46.97163300099999 + ], + [ + 18.210897499999987, + 46.77816150000001 + ], + [ + 18.636275, + 46.687217498999985 + ], + [ + 18.925097, + 46.85716850099999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.121077500000013, + 48.378311499 + ], + [ + 21.122180500000013, + 47.96182749899998 + ], + [ + 20.8279715, + 47.65901849699998 + ], + [ + 20.771698, + 47.65447650099998 + ], + [ + 20.3941565, + 47.420463498 + ], + [ + 19.993662500000028, + 47.672739501000024 + ], + [ + 19.666329, + 47.58855000099999 + ], + [ + 19.570937, + 47.73490000100003 + ], + [ + 19.086134500000014, + 47.838170499 + ], + [ + 18.928392, + 48.056832499 + ], + [ + 19.0143225, + 48.077736499000025 + ], + [ + 20.051879, + 48.16770399699999 + ], + [ + 20.463937, + 48.463967 + ], + [ + 21.440056, + 48.58523299900003 + ], + [ + 21.721957, + 48.351050499 + ], + [ + 22.121077500000013, + 48.378311499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.896270500000014, + 47.95412050099998 + ], + [ + 22.1808375, + 47.60009449900002 + ], + [ + 22.12832, + 47.59808949699999 + ], + [ + 21.658955, + 47.02213149800002 + ], + [ + 21.2478405, + 47.00669999899998 + ], + [ + 21.300893499999972, + 47.150679001000015 + ], + [ + 20.9920975, + 47.23228799899999 + ], + [ + 20.4242655, + 46.80347099800002 + ], + [ + 20.061163, + 46.80639099699999 + ], + [ + 20.094639, + 47.0074265 + ], + [ + 19.99046249999998, + 47.346628001 + ], + [ + 19.666329, + 47.58855000099999 + ], + [ + 19.993662500000028, + 47.672739501000024 + ], + [ + 20.3941565, + 47.420463498 + ], + [ + 20.771698, + 47.65447650099998 + ], + [ + 20.8279715, + 47.65901849699998 + ], + [ + 21.122180500000013, + 47.96182749899998 + ], + [ + 22.121077500000013, + 48.378311499 + ], + [ + 22.155306, + 48.403396499 + ], + [ + 22.896270500000014, + 47.95412050099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 21.658955, + 47.02213149800002 + ], + [ + 21.441398, + 46.651467 + ], + [ + 21.103170499999976, + 46.26259049700002 + ], + [ + 20.7756, + 46.27590999900002 + ], + [ + 20.705303500000014, + 46.160937499 + ], + [ + 20.264296, + 46.1263735 + ], + [ + 19.86539, + 46.150334499 + ], + [ + 19.698099, + 46.187930999 + ], + [ + 19.3027095, + 45.99155050000002 + ], + [ + 18.889734, + 45.92118049700002 + ], + [ + 18.821306, + 45.91438299700002 + ], + [ + 18.802291, + 46.108764999000016 + ], + [ + 19.006243499999982, + 46.70492349699998 + ], + [ + 18.925097, + 46.85716850099999 + ], + [ + 18.965907500000014, + 47.028965 + ], + [ + 20.094639, + 47.0074265 + ], + [ + 20.061163, + 46.80639099699999 + ], + [ + 20.4242655, + 46.80347099800002 + ], + [ + 20.9920975, + 47.23228799899999 + ], + [ + 21.300893499999972, + 47.150679001000015 + ], + [ + 21.2478405, + 47.00669999899998 + ], + [ + 21.658955, + 47.02213149800002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -8.177718, + 54.464973500999974 + ], + [ + -7.565956, + 54.126514499 + ], + [ + -7.0286355, + 54.42130649799998 + ], + [ + -6.623778500000014, + 54.03654849700001 + ], + [ + -6.2680155, + 54.102337 + ], + [ + -6.1031835, + 53.99999950099999 + ], + [ + -6.3811025, + 54.012704 + ], + [ + -6.247098, + 53.722454500000026 + ], + [ + -6.749452500000018, + 53.913742997999975 + ], + [ + -7.343828499999972, + 53.79906249800001 + ], + [ + -7.063349, + 53.468781501000024 + ], + [ + -6.939413, + 52.88005449799999 + ], + [ + -7.674081, + 52.781294 + ], + [ + -7.674682691999976, + 52.78186351599999 + ], + [ + -8.081461029000025, + 53.166883229 + ], + [ + -8.359738204999985, + 52.971357996999984 + ], + [ + -9.008489770999972, + 53.140603919 + ], + [ + -9.009308499999975, + 53.14081749899998 + ], + [ + -9.009085012000014, + 53.14119886499998 + ], + [ + -8.933212, + 53.270670997000025 + ], + [ + -9.63143794299998, + 53.296942788000024 + ], + [ + -9.630072499999983, + 53.29734849699997 + ], + [ + -9.63144528700002, + 53.29734542900002 + ], + [ + -10.179155499999979, + 53.40698899900002 + ], + [ + -10.189941, + 53.55608850099998 + ], + [ + -9.80073826, + 53.608912261 + ], + [ + -9.900522, + 53.764440997 + ], + [ + -9.546066, + 53.88420849900001 + ], + [ + -10.070641500000022, + 54.27627250099999 + ], + [ + -9.132258499999978, + 54.162360498 + ], + [ + -8.508256, + 54.216985497999985 + ], + [ + -8.134833, + 54.603353501000015 + ], + [ + -8.7886565, + 54.68891599699998 + ], + [ + -8.28179849999998, + 55.158847998 + ], + [ + -7.339527, + 55.374958 + ], + [ + -6.924876, + 55.23369450000001 + ], + [ + -7.256068500000026, + 55.067034998 + ], + [ + -7.534506, + 54.74713900099999 + ], + [ + -7.921372, + 54.69654449900003 + ], + [ + -7.703411501, + 54.60828799900003 + ], + [ + -8.177718, + 54.464973500999974 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.86407650000001, + 45.91675049999998 + ], + [ + 7.936649, + 45.72434049999998 + ], + [ + 7.895811, + 45.590028 + ], + [ + 7.104723, + 45.46845449900002 + ], + [ + 6.8023685, + 45.778562 + ], + [ + 7.044886, + 45.92241299900002 + ], + [ + 7.86407650000001, + 45.91675049999998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.686725500000023, + 44.36592199900002 + ], + [ + 10.018769500000019, + 44.044535998000015 + ], + [ + 9.511344, + 44.21667549799997 + ], + [ + 8.63301, + 44.379803498 + ], + [ + 8.135350999000025, + 43.93894049800002 + ], + [ + 7.529827, + 43.784007997 + ], + [ + 7.714236500000027, + 44.061513499 + ], + [ + 8.015629499999989, + 44.11067649900002 + ], + [ + 8.252819499, + 44.528740501000016 + ], + [ + 8.261596, + 44.51942449699999 + ], + [ + 8.576182, + 44.509206001 + ], + [ + 9.202995499999986, + 44.613476499 + ], + [ + 9.493363, + 44.555858999 + ], + [ + 9.4790595, + 44.40924050000001 + ], + [ + 9.686725500000023, + 44.36592199900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.452801, + 46.53068299900002 + ], + [ + 10.622145499999988, + 46.448101999000016 + ], + [ + 10.515751500000022, + 46.34322449699999 + ], + [ + 10.502388, + 45.830373 + ], + [ + 10.840176499999984, + 45.832758501 + ], + [ + 10.631074, + 45.60951250099998 + ], + [ + 10.6546555, + 45.41582699899999 + ], + [ + 11.205502500000023, + 45.10948749900001 + ], + [ + 11.426765499999988, + 44.950076 + ], + [ + 11.246231500000022, + 44.951427997 + ], + [ + 10.887909499999978, + 44.914265999 + ], + [ + 10.504344, + 44.922417999 + ], + [ + 10.464030499999978, + 44.93717150100002 + ], + [ + 10.083503, + 45.04395850100002 + ], + [ + 9.8911015, + 45.130898 + ], + [ + 9.548684499999979, + 45.13264849900003 + ], + [ + 9.3246605, + 44.69 + ], + [ + 9.200074, + 44.68609949699999 + ], + [ + 8.887709, + 45.059148999 + ], + [ + 8.5477975, + 45.168147497 + ], + [ + 8.51356, + 45.31327850100001 + ], + [ + 8.8429155, + 45.393841 + ], + [ + 8.706896500000028, + 45.558316 + ], + [ + 8.593811, + 45.828224998999985 + ], + [ + 8.713936, + 46.097271998999986 + ], + [ + 8.912147, + 45.830444999 + ], + [ + 9.088803499999983, + 45.89689700100001 + ], + [ + 8.988276499999984, + 45.97228249800003 + ], + [ + 9.1593775, + 46.169601 + ], + [ + 9.248531500000013, + 46.23376800099999 + ], + [ + 9.714149500000019, + 46.292708499000014 + ], + [ + 10.2448745, + 46.62209199799997 + ], + [ + 10.452801, + 46.53068299900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 14.779646999000022, + 42.070021499 + ], + [ + 14.485359, + 41.75962299899999 + ], + [ + 14.2297575, + 41.87705649700001 + ], + [ + 13.941038499, + 41.68794399699999 + ], + [ + 13.296299499999975, + 41.94858850000003 + ], + [ + 13.0305745, + 42.115353 + ], + [ + 13.1913805, + 42.587491 + ], + [ + 13.39403149899999, + 42.591233999 + ], + [ + 13.3577745, + 42.694069997999975 + ], + [ + 13.9157315, + 42.894577 + ], + [ + 14.1469065, + 42.53059649900001 + ], + [ + 14.253960499000016, + 42.444798499 + ], + [ + 14.779646999000022, + 42.070021499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 15.13817849999998, + 41.92700749900001 + ], + [ + 14.934101, + 41.61942899899998 + ], + [ + 15.0076555, + 41.486356999 + ], + [ + 14.5051, + 41.382461498 + ], + [ + 14.382519, + 41.443216499000016 + ], + [ + 13.977928, + 41.462454 + ], + [ + 13.941038499, + 41.68794399699999 + ], + [ + 14.2297575, + 41.87705649700001 + ], + [ + 14.485359, + 41.75962299899999 + ], + [ + 14.779646999000022, + 42.070021499 + ], + [ + 15.13817849999998, + 41.92700749900001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 15.542921, + 41.05582350100002 + ], + [ + 15.335024499999975, + 40.834843998 + ], + [ + 15.8065315, + 40.27222249800002 + ], + [ + 15.644945499000016, + 40.04279049899998 + ], + [ + 15.356917, + 39.999090997999986 + ], + [ + 14.787251500000025, + 40.66618049800002 + ], + [ + 14.747420499999976, + 40.67764649899999 + ], + [ + 14.692414499999984, + 40.63406599899997 + ], + [ + 14.528490499999975, + 40.607152498 + ], + [ + 14.46862, + 40.62020149900002 + ], + [ + 14.324673, + 40.56908499899998 + ], + [ + 14.460677499999974, + 40.74293050099999 + ], + [ + 14.0321305, + 40.898838997999974 + ], + [ + 13.760795499999972, + 41.22316799700002 + ], + [ + 13.8737185, + 41.338294001 + ], + [ + 13.977928, + 41.462454 + ], + [ + 14.382519, + 41.443216499000016 + ], + [ + 14.5051, + 41.382461498 + ], + [ + 15.0076555, + 41.486356999 + ], + [ + 15.046827, + 41.443310499 + ], + [ + 15.149196500000016, + 41.280412497999976 + ], + [ + 15.542921, + 41.05582350100002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.867264, + 40.39784549900003 + ], + [ + 16.719678499, + 40.481393500000024 + ], + [ + 16.72499, + 40.71381449900002 + ], + [ + 16.2440985, + 40.83800849900001 + ], + [ + 16.202532, + 40.917511 + ], + [ + 15.870311, + 41.13989999900002 + ], + [ + 15.542921, + 41.05582350100002 + ], + [ + 15.149196500000016, + 41.280412497999976 + ], + [ + 15.046827, + 41.443310499 + ], + [ + 15.0076555, + 41.486356999 + ], + [ + 14.934101, + 41.61942899899998 + ], + [ + 15.13817849999998, + 41.92700749900001 + ], + [ + 16.17653150000001, + 41.88478950000001 + ], + [ + 15.89714, + 41.603231999 + ], + [ + 16.024738500000012, + 41.425590499 + ], + [ + 16.542302499000016, + 41.229441 + ], + [ + 17.388981, + 40.89186349900001 + ], + [ + 18.097453, + 40.515377999 + ], + [ + 18.517056, + 40.135147999000026 + ], + [ + 18.369068, + 39.793742001 + ], + [ + 18.04794750000002, + 39.92847849899999 + ], + [ + 17.76350449900002, + 40.295507 + ], + [ + 17.127098, + 40.51762050000002 + ], + [ + 16.867264, + 40.39784549900003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.867264, + 40.39784549900003 + ], + [ + 16.644317, + 40.119095999000024 + ], + [ + 16.398881, + 40.055399998999974 + ], + [ + 16.337835499999983, + 39.935806997999975 + ], + [ + 15.75595850000002, + 39.923496 + ], + [ + 15.644945499000016, + 40.04279049899998 + ], + [ + 15.8065315, + 40.27222249800002 + ], + [ + 15.335024499999975, + 40.834843998 + ], + [ + 15.542921, + 41.05582350100002 + ], + [ + 15.870311, + 41.13989999900002 + ], + [ + 16.202532, + 40.917511 + ], + [ + 16.2440985, + 40.83800849900001 + ], + [ + 16.72499, + 40.71381449900002 + ], + [ + 16.719678499, + 40.481393500000024 + ], + [ + 16.867264, + 40.39784549900003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.5820845, + 38.46979049700002 + ], + [ + 16.0638095, + 37.924418996999975 + ], + [ + 15.678212, + 37.95411949800001 + ], + [ + 15.636063, + 38.231473498000014 + ], + [ + 15.652291742999978, + 38.247265964 + ], + [ + 15.687350835000018, + 38.28138256400001 + ], + [ + 15.918956, + 38.50676149899999 + ], + [ + 15.8481175, + 38.658864498000014 + ], + [ + 16.2137535, + 38.81043999899998 + ], + [ + 16.093153, + 39.04874299800002 + ], + [ + 15.75595850000002, + 39.923496 + ], + [ + 16.337835499999983, + 39.935806997999975 + ], + [ + 16.398881, + 40.055399998999974 + ], + [ + 16.644317, + 40.119095999000024 + ], + [ + 16.52795550000002, + 39.66865950099998 + ], + [ + 17.025064499999985, + 39.483578498999975 + ], + [ + 17.188881, + 39.020471998 + ], + [ + 16.890732, + 38.92712849899999 + ], + [ + 16.566985499999987, + 38.765481998999974 + ], + [ + 16.5820845, + 38.46979049700002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 15.572551, + 38.234204998999985 + ], + [ + 15.2580825, + 37.807223997999984 + ], + [ + 15.091499, + 37.3577085 + ], + [ + 15.315962500000012, + 37.035012498000015 + ], + [ + 15.116582, + 36.67495599900002 + ], + [ + 15.000358, + 36.70284749799998 + ], + [ + 14.493577, + 36.78673349799999 + ], + [ + 14.337594500000023, + 37.001979999000014 + ], + [ + 14.036207, + 37.10602799899999 + ], + [ + 12.896496, + 37.577118498 + ], + [ + 12.672787, + 37.56008099899998 + ], + [ + 12.4429295, + 37.81105199899997 + ], + [ + 12.561744499999975, + 38.06556199800002 + ], + [ + 12.731687, + 38.180297499 + ], + [ + 12.811005, + 38.08151549799999 + ], + [ + 12.9772625, + 38.04020599900002 + ], + [ + 13.36569350000002, + 38.18228949899998 + ], + [ + 13.7438295, + 37.97024649799999 + ], + [ + 14.183486, + 38.01939649899998 + ], + [ + 15.652927, + 38.26710399699999 + ], + [ + 15.572551, + 38.234204998999985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.423461998999983, + 41.17674100099998 + ], + [ + 9.748871999000016, + 40.660406997999985 + ], + [ + 9.8270205, + 40.51211249900001 + ], + [ + 9.62652699900002, + 40.22487699800001 + ], + [ + 9.7352045, + 40.075661998999976 + ], + [ + 9.6511185, + 39.54932399799998 + ], + [ + 9.555865, + 39.133966997000016 + ], + [ + 9.1099865, + 39.214018501 + ], + [ + 8.859653, + 38.87746949899997 + ], + [ + 8.612392, + 38.957787998000015 + ], + [ + 8.368104499000026, + 39.21381050000002 + ], + [ + 8.393, + 39.446529499 + ], + [ + 8.5022545, + 39.713006999000015 + ], + [ + 8.399809, + 40.40756849899998 + ], + [ + 8.135010500000021, + 40.73634899899997 + ], + [ + 8.201709, + 40.97256649799999 + ], + [ + 8.4171275, + 40.83831349899998 + ], + [ + 8.802688499999988, + 40.931047998 + ], + [ + 9.163662, + 41.23562400100002 + ], + [ + 9.423461998999983, + 41.17674100099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 12.2407455, + 47.069168499 + ], + [ + 12.143811, + 46.913779998 + ], + [ + 12.477924, + 46.67983549799999 + ], + [ + 11.828336499999978, + 46.508914499000014 + ], + [ + 11.20649, + 46.21977949699999 + ], + [ + 10.9786995, + 46.483954 + ], + [ + 10.622145499999988, + 46.448101999000016 + ], + [ + 10.452801, + 46.53068299900002 + ], + [ + 10.4696515, + 46.854909 + ], + [ + 11.02225, + 46.765410498999984 + ], + [ + 11.164281500000016, + 46.96572250000003 + ], + [ + 11.627199500000017, + 47.013299 + ], + [ + 12.136014, + 47.0806675 + ], + [ + 12.2407455, + 47.069168499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.840176499999984, + 45.832758501 + ], + [ + 10.502388, + 45.830373 + ], + [ + 10.515751500000022, + 46.34322449699999 + ], + [ + 10.622145499999988, + 46.448101999000016 + ], + [ + 10.9786995, + 46.483954 + ], + [ + 11.20649, + 46.21977949699999 + ], + [ + 11.828336499999978, + 46.508914499000014 + ], + [ + 11.7744025, + 46.358237997 + ], + [ + 11.962298499999974, + 46.18786099800002 + ], + [ + 11.684318500000018, + 45.98407799900002 + ], + [ + 11.373413500000026, + 45.983213997 + ], + [ + 11.138337499999977, + 45.69708849900002 + ], + [ + 10.840176499999984, + 45.832758501 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 12.690635, + 46.656972000999986 + ], + [ + 12.73139299899998, + 46.634288 + ], + [ + 12.498703, + 46.412222500999974 + ], + [ + 12.320955498999979, + 46.2689145 + ], + [ + 12.495829, + 46.152560499 + ], + [ + 12.4005345, + 46.04199650100003 + ], + [ + 12.661673, + 45.792440999 + ], + [ + 12.779838, + 45.85444850099998 + ], + [ + 12.979058, + 45.834048997000025 + ], + [ + 13.098785501, + 45.644532997 + ], + [ + 12.434162500000014, + 45.42448599699998 + ], + [ + 12.631836, + 45.534338499 + ], + [ + 12.413683999, + 45.544310500999984 + ], + [ + 12.132562, + 45.300370499999985 + ], + [ + 12.200494, + 45.257337 + ], + [ + 12.2045665, + 45.19767599800002 + ], + [ + 12.33057150000002, + 45.1605505 + ], + [ + 12.328777, + 45.151860999 + ], + [ + 12.302155605999985, + 45.13788754699999 + ], + [ + 12.279706042999976, + 45.123266828 + ], + [ + 12.399056499999972, + 44.792615501 + ], + [ + 12.0980285, + 44.971468999000024 + ], + [ + 11.426765499999988, + 44.950076 + ], + [ + 11.205502500000023, + 45.10948749900001 + ], + [ + 10.6546555, + 45.41582699899999 + ], + [ + 10.631074, + 45.60951250099998 + ], + [ + 10.840176499999984, + 45.832758501 + ], + [ + 11.138337499999977, + 45.69708849900002 + ], + [ + 11.373413500000026, + 45.983213997 + ], + [ + 11.684318500000018, + 45.98407799900002 + ], + [ + 11.962298499999974, + 46.18786099800002 + ], + [ + 11.7744025, + 46.358237997 + ], + [ + 11.828336499999978, + 46.508914499000014 + ], + [ + 12.477924, + 46.67983549799999 + ], + [ + 12.690635, + 46.656972000999986 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.714184999, + 46.52270349999998 + ], + [ + 13.684032, + 46.437472501 + ], + [ + 13.3754925, + 46.29823249899999 + ], + [ + 13.66434750000002, + 46.177549999 + ], + [ + 13.496938999, + 46.051334999 + ], + [ + 13.597145, + 45.81952250099999 + ], + [ + 13.596243, + 45.807937501000026 + ], + [ + 13.9186565, + 45.63351749899999 + ], + [ + 13.7228235, + 45.59472549700001 + ], + [ + 13.579783, + 45.786951499 + ], + [ + 13.40649350000001, + 45.725175001000025 + ], + [ + 13.130853, + 45.771844499999986 + ], + [ + 13.098785501, + 45.644532997 + ], + [ + 12.979058, + 45.834048997000025 + ], + [ + 12.779838, + 45.85444850099998 + ], + [ + 12.661673, + 45.792440999 + ], + [ + 12.4005345, + 46.04199650100003 + ], + [ + 12.495829, + 46.152560499 + ], + [ + 12.320955498999979, + 46.2689145 + ], + [ + 12.498703, + 46.412222500999974 + ], + [ + 12.73139299899998, + 46.634288 + ], + [ + 13.504249500000014, + 46.56630399800002 + ], + [ + 13.714184999, + 46.52270349999998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 10.504344, + 44.922417999 + ], + [ + 10.887909499999978, + 44.914265999 + ], + [ + 11.246231500000022, + 44.951427997 + ], + [ + 11.426765499999988, + 44.950076 + ], + [ + 12.0980285, + 44.971468999000024 + ], + [ + 12.399056499999972, + 44.792615501 + ], + [ + 12.269892, + 44.630007497 + ], + [ + 12.384282, + 44.224726499999974 + ], + [ + 12.450349, + 44.162189496999986 + ], + [ + 12.75078, + 43.970601500999976 + ], + [ + 12.669299, + 43.823227498999984 + ], + [ + 12.493956, + 43.91554650099999 + ], + [ + 12.513435500000014, + 43.99126949700002 + ], + [ + 12.4046075, + 43.95567850100002 + ], + [ + 12.4177, + 43.899029997000014 + ], + [ + 12.2837975, + 43.76489899799998 + ], + [ + 12.107464, + 43.75375349699999 + ], + [ + 11.98652850000002, + 43.76191399800001 + ], + [ + 11.710189, + 43.877430498000024 + ], + [ + 11.715906500000017, + 44.122540499000024 + ], + [ + 11.524959500000023, + 44.157639999000025 + ], + [ + 11.202439500000025, + 44.100721 + ], + [ + 11.049449, + 44.09022999899997 + ], + [ + 10.814787, + 44.11617449900001 + ], + [ + 10.624078, + 44.120351501000016 + ], + [ + 10.470149, + 44.226041001 + ], + [ + 10.253875, + 44.26856699899997 + ], + [ + 10.142054499999972, + 44.353852999000026 + ], + [ + 9.686725500000023, + 44.36592199900002 + ], + [ + 9.4790595, + 44.40924050000001 + ], + [ + 9.493363, + 44.555858999 + ], + [ + 9.202995499999986, + 44.613476499 + ], + [ + 9.200074, + 44.68609949699999 + ], + [ + 9.3246605, + 44.69 + ], + [ + 9.548684499999979, + 45.13264849900003 + ], + [ + 9.8911015, + 45.130898 + ], + [ + 10.083503, + 45.04395850100002 + ], + [ + 10.464030499999978, + 44.93717150100002 + ], + [ + 10.504344, + 44.922417999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 12.2837975, + 43.76489899799998 + ], + [ + 12.371335499999986, + 43.70900450099998 + ], + [ + 12.213856, + 43.61082449999998 + ], + [ + 12.025227, + 43.41555699899999 + ], + [ + 12.2237225, + 43.29624549800002 + ], + [ + 11.961263499999973, + 43.166890498999976 + ], + [ + 11.952102500000024, + 42.900970497 + ], + [ + 11.958612500000015, + 42.87430749700002 + ], + [ + 11.933317, + 42.869329999 + ], + [ + 11.894987500000013, + 42.83465349900001 + ], + [ + 11.746037, + 42.78574249899998 + ], + [ + 11.804794500000014, + 42.64398299800001 + ], + [ + 11.449938499999973, + 42.37767050100001 + ], + [ + 11.0979815, + 42.393149499 + ], + [ + 11.1765795, + 42.541544 + ], + [ + 10.7056725, + 42.9418645 + ], + [ + 10.499046, + 42.93527050099999 + ], + [ + 10.528247498999974, + 43.231603999000015 + ], + [ + 10.299847, + 43.58192899900001 + ], + [ + 10.258118, + 43.81514699899998 + ], + [ + 10.143476, + 43.97542049899999 + ], + [ + 10.018769500000019, + 44.044535998000015 + ], + [ + 9.686725500000023, + 44.36592199900002 + ], + [ + 10.142054499999972, + 44.353852999000026 + ], + [ + 10.253875, + 44.26856699899997 + ], + [ + 10.470149, + 44.226041001 + ], + [ + 10.624078, + 44.120351501000016 + ], + [ + 10.814787, + 44.11617449900001 + ], + [ + 11.049449, + 44.09022999899997 + ], + [ + 11.202439500000025, + 44.100721 + ], + [ + 11.524959500000023, + 44.157639999000025 + ], + [ + 11.715906500000017, + 44.122540499000024 + ], + [ + 11.710189, + 43.877430498000024 + ], + [ + 11.98652850000002, + 43.76191399800001 + ], + [ + 12.107464, + 43.75375349699999 + ], + [ + 12.2837975, + 43.76489899799998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.189226, + 42.733565499 + ], + [ + 12.896352, + 42.61641799900002 + ], + [ + 12.444709, + 42.398799499 + ], + [ + 11.894987500000013, + 42.83465349900001 + ], + [ + 11.933317, + 42.869329999 + ], + [ + 11.958612500000015, + 42.87430749700002 + ], + [ + 11.952102500000024, + 42.900970497 + ], + [ + 11.961263499999973, + 43.166890498999976 + ], + [ + 12.2237225, + 43.29624549800002 + ], + [ + 12.025227, + 43.41555699899999 + ], + [ + 12.213856, + 43.61082449999998 + ], + [ + 12.767457, + 43.459829996999986 + ], + [ + 12.862358, + 43.2112325 + ], + [ + 12.895834499999978, + 42.96457099899999 + ], + [ + 13.235287500000027, + 42.867662999 + ], + [ + 13.189226, + 42.733565499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.9157315, + 42.894577 + ], + [ + 13.3577745, + 42.694069997999975 + ], + [ + 13.189226, + 42.733565499 + ], + [ + 13.235287500000027, + 42.867662999 + ], + [ + 12.895834499999978, + 42.96457099899999 + ], + [ + 12.862358, + 43.2112325 + ], + [ + 12.767457, + 43.459829996999986 + ], + [ + 12.213856, + 43.61082449999998 + ], + [ + 12.371335499999986, + 43.70900450099998 + ], + [ + 12.2837975, + 43.76489899799998 + ], + [ + 12.4177, + 43.899029997000014 + ], + [ + 12.493956, + 43.91554650099999 + ], + [ + 12.669299, + 43.823227498999984 + ], + [ + 12.75078, + 43.970601500999976 + ], + [ + 13.172615, + 43.75034599899999 + ], + [ + 13.6420965, + 43.47414249899998 + ], + [ + 13.742970499000023, + 43.29414699900002 + ], + [ + 13.849453, + 43.06665949799998 + ], + [ + 13.9157315, + 42.894577 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 13.189226, + 42.733565499 + ], + [ + 13.3577745, + 42.694069997999975 + ], + [ + 13.39403149899999, + 42.591233999 + ], + [ + 13.1913805, + 42.587491 + ], + [ + 13.0305745, + 42.115353 + ], + [ + 13.296299499999975, + 41.94858850000003 + ], + [ + 13.941038499, + 41.68794399699999 + ], + [ + 13.977928, + 41.462454 + ], + [ + 13.8737185, + 41.338294001 + ], + [ + 13.760795499999972, + 41.22316799700002 + ], + [ + 13.067982, + 41.221979 + ], + [ + 12.7733215, + 41.41626399900002 + ], + [ + 11.733844, + 42.15805899899999 + ], + [ + 11.449938499999973, + 42.37767050100001 + ], + [ + 11.804794500000014, + 42.64398299800001 + ], + [ + 11.746037, + 42.78574249899998 + ], + [ + 11.894987500000013, + 42.83465349900001 + ], + [ + 12.444709, + 42.398799499 + ], + [ + 12.896352, + 42.61641799900002 + ], + [ + 13.189226, + 42.733565499 + ] + ], + [ + [ + 12.4466885, + 41.90174499800003 + ], + [ + 12.458003, + 41.90148549899999 + ], + [ + 12.45582, + 41.907197499 + ], + [ + 12.4466885, + 41.90174499800003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 9.607078, + 47.0607745 + ], + [ + 9.4760475, + 47.051797498999974 + ], + [ + 9.530749, + 47.27058100099998 + ], + [ + 9.620580500000017, + 47.15164549999997 + ], + [ + 9.607078, + 47.0607745 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 24.91819, + 56.440865 + ], + [ + 25.0920375, + 56.186041998 + ], + [ + 25.821386500000017, + 56.052179 + ], + [ + 26.0461545, + 55.94410599899999 + ], + [ + 26.630365, + 55.68066699899998 + ], + [ + 26.553886, + 55.388916000999984 + ], + [ + 26.8356225, + 55.285648498 + ], + [ + 26.743454, + 55.254102998 + ], + [ + 25.779577500000016, + 54.854839501000015 + ], + [ + 25.762614, + 54.5768945 + ], + [ + 25.5319225, + 54.34203149899997 + ], + [ + 25.779838, + 54.16003700099998 + ], + [ + 25.497109500000022, + 54.309776499 + ], + [ + 24.835949500000027, + 54.149027499 + ], + [ + 24.435035500000026, + 53.901003 + ], + [ + 23.51465, + 53.95655999799999 + ], + [ + 23.32149850000002, + 54.25332599799998 + ], + [ + 22.792095500000016, + 54.36335899699998 + ], + [ + 22.588968, + 55.070251498 + ], + [ + 21.651070999000012, + 55.17998350099998 + ], + [ + 21.271226238999986, + 55.24436935199998 + ], + [ + 21.2643495, + 55.24553499799998 + ], + [ + 21.064238, + 56.06913699900002 + ], + [ + 21.978209, + 56.38514299899998 + ], + [ + 22.63556349999999, + 56.368168 + ], + [ + 22.920517, + 56.39914299899999 + ], + [ + 24.1518, + 56.253348501 + ], + [ + 24.91819, + 56.440865 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.137662499999976, + 50.129951499000015 + ], + [ + 6.4749625, + 49.821274999000025 + ], + [ + 6.380052499999977, + 49.55110499900002 + ], + [ + 6.367107499999975, + 49.46950700100001 + ], + [ + 5.893386, + 49.496944498 + ], + [ + 5.818117, + 49.5463105 + ], + [ + 5.910688, + 49.66238800100001 + ], + [ + 5.746319, + 49.853595 + ], + [ + 6.0248995, + 50.182779498 + ], + [ + 6.137662499999976, + 50.129951499000015 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 27.351579, + 57.51823699900001 + ], + [ + 27.690777, + 57.37056099900002 + ], + [ + 27.8701565, + 57.28979499899998 + ], + [ + 27.6594445, + 56.8343655 + ], + [ + 28.192765, + 56.44856599899998 + ], + [ + 28.154555500000015, + 56.169843501 + ], + [ + 27.615505499999983, + 55.787071501000014 + ], + [ + 26.630365, + 55.68066699899998 + ], + [ + 26.0461545, + 55.94410599899999 + ], + [ + 25.821386500000017, + 56.052179 + ], + [ + 25.0920375, + 56.186041998 + ], + [ + 24.91819, + 56.440865 + ], + [ + 24.1518, + 56.253348501 + ], + [ + 22.920517, + 56.39914299899999 + ], + [ + 22.63556349999999, + 56.368168 + ], + [ + 21.978209, + 56.38514299899998 + ], + [ + 21.064238, + 56.06913699900002 + ], + [ + 20.97067850000002, + 56.352584497 + ], + [ + 21.05211, + 56.82362099900001 + ], + [ + 21.3748955, + 57.00309699799999 + ], + [ + 21.419337, + 57.290952499000014 + ], + [ + 21.7031505, + 57.5685305 + ], + [ + 22.6050035, + 57.75857399900002 + ], + [ + 23.146890499999984, + 57.316258 + ], + [ + 23.304514, + 57.06428949999997 + ], + [ + 23.93453249999999, + 57.00637049699998 + ], + [ + 24.11920249999997, + 57.086290001 + ], + [ + 24.410199499999976, + 57.266025501 + ], + [ + 24.352817500000015, + 57.87655650099998 + ], + [ + 24.834082500000022, + 57.9727795 + ], + [ + 25.046307, + 58.04014600099998 + ], + [ + 26.056459, + 57.84843149699998 + ], + [ + 26.52490549999999, + 57.516247497999984 + ], + [ + 27.351579, + 57.51823699900001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 18.525213, + 42.420462997000016 + ], + [ + 18.438104, + 42.55570500099998 + ], + [ + 18.5672495, + 42.651405497999974 + ], + [ + 18.491927998999984, + 42.98396299799998 + ], + [ + 18.683405, + 43.24548699899998 + ], + [ + 19.224069, + 43.527541 + ], + [ + 20.06393650000001, + 43.006823999 + ], + [ + 20.35292850000002, + 42.833381498999984 + ], + [ + 20.024653, + 42.76513849899999 + ], + [ + 20.0763, + 42.555823498999985 + ], + [ + 19.621872, + 42.589744498000016 + ], + [ + 19.282484, + 42.180015502 + ], + [ + 19.372067, + 41.850320497999974 + ], + [ + 18.689521633000027, + 42.464353484000014 + ], + [ + 18.525213, + 42.420462997000016 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.9275915, + 41.33853949899998 + ], + [ + 22.879178500000023, + 41.340652998 + ], + [ + 22.732037, + 41.146391498000014 + ], + [ + 22.332052, + 41.12027250099999 + ], + [ + 22.216216, + 41.17045749800002 + ], + [ + 21.929438, + 41.10035049800001 + ], + [ + 21.787378, + 40.9311255 + ], + [ + 20.980204500000013, + 40.855665 + ], + [ + 20.837823, + 40.92768299900001 + ], + [ + 20.515577, + 41.23095550099998 + ], + [ + 20.45628449999998, + 41.554024001000016 + ], + [ + 20.557774, + 41.581870502000015 + ], + [ + 20.594286, + 41.877327498 + ], + [ + 21.10894, + 42.206170998 + ], + [ + 21.2126975, + 42.110701001 + ], + [ + 21.4443185, + 42.23493049899997 + ], + [ + 21.58694650000001, + 42.262817498 + ], + [ + 22.3602065, + 42.311157001000026 + ], + [ + 22.510412, + 42.15515849799999 + ], + [ + 22.867214, + 42.022199496999974 + ], + [ + 22.968327499999987, + 41.51983549900001 + ], + [ + 22.9275915, + 41.33853949899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 14.5720435, + 35.84975449799998 + ], + [ + 14.535398, + 35.80750299800002 + ], + [ + 14.416679499999987, + 35.82818949900002 + ], + [ + 14.342219999, + 35.873474498 + ], + [ + 14.319842, + 35.970368 + ], + [ + 14.376091499999973, + 35.987453999000024 + ], + [ + 14.350481, + 35.96995249899999 + ], + [ + 14.5720435, + 35.84975449799998 + ] + ] + ], + [ + [ + [ + 14.336181, + 36.03225849900002 + ], + [ + 14.218846, + 36.02097449799999 + ], + [ + 14.186361, + 36.036271999 + ], + [ + 14.184842, + 36.074078498 + ], + [ + 14.300056499999982, + 36.05719499899999 + ], + [ + 14.336181, + 36.03225849900002 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.208935, + 53.243064498000024 + ], + [ + 7.202794499999982, + 53.11328149899998 + ], + [ + 7.092692, + 52.83820099899998 + ], + [ + 6.935702, + 52.993362499 + ], + [ + 6.81381, + 53.07104849799998 + ], + [ + 6.315237, + 53.09405149899999 + ], + [ + 6.176817, + 53.159450499 + ], + [ + 6.1913015, + 53.410937999 + ], + [ + 6.882578, + 53.440654999 + ], + [ + 6.874905, + 53.408012998 + ], + [ + 7.0927125, + 53.25701749699999 + ], + [ + 7.208935, + 53.243064498000024 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.315237, + 53.09405149899999 + ], + [ + 6.369053, + 52.92197349999998 + ], + [ + 6.119814, + 52.85426700099998 + ], + [ + 5.819826499999976, + 52.81731750099999 + ], + [ + 5.795148499999982, + 52.80649949899998 + ], + [ + 5.377261499999975, + 52.764805 + ], + [ + 5.167425499999979, + 52.998798498999975 + ], + [ + 5.164383499999985, + 53.00091050100002 + ], + [ + 5.4112285, + 53.15172449800002 + ], + [ + 6.1913015, + 53.410937999 + ], + [ + 6.176817, + 53.159450499 + ], + [ + 6.315237, + 53.09405149899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.092692, + 52.83820099899998 + ], + [ + 7.006229500000018, + 52.63876299899999 + ], + [ + 6.709732499999973, + 52.62782349899999 + ], + [ + 6.629429500000015, + 52.669658500000025 + ], + [ + 6.1630035, + 52.680061498999976 + ], + [ + 6.119814, + 52.85426700099998 + ], + [ + 6.369053, + 52.92197349999998 + ], + [ + 6.315237, + 53.09405149899999 + ], + [ + 6.81381, + 53.07104849799998 + ], + [ + 6.935702, + 52.993362499 + ], + [ + 7.092692, + 52.83820099899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.709732499999973, + 52.62782349899999 + ], + [ + 6.697865499999978, + 52.48628599800003 + ], + [ + 6.987941499999977, + 52.469540999 + ], + [ + 7.065685, + 52.24137299900002 + ], + [ + 6.760465, + 52.11856949999998 + ], + [ + 6.381997500000011, + 52.24608600099998 + ], + [ + 6.166411499999981, + 52.231045 + ], + [ + 6.109792500000026, + 52.440574501000015 + ], + [ + 5.864311, + 52.518169496999974 + ], + [ + 5.777970499999981, + 52.607532499 + ], + [ + 6.017299499999979, + 52.643230499000026 + ], + [ + 5.795148499999982, + 52.80649949899998 + ], + [ + 5.819826499999976, + 52.81731750099999 + ], + [ + 6.119814, + 52.85426700099998 + ], + [ + 6.1630035, + 52.680061498999976 + ], + [ + 6.629429500000015, + 52.669658500000025 + ], + [ + 6.709732499999973, + 52.62782349899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 6.760465, + 52.11856949999998 + ], + [ + 6.828513, + 51.9640665 + ], + [ + 6.4077795, + 51.828092001000016 + ], + [ + 6.167766, + 51.900804499 + ], + [ + 5.953192, + 51.747845998 + ], + [ + 5.8651585, + 51.757407999 + ], + [ + 5.597879499999976, + 51.828082999 + ], + [ + 5.128057500000011, + 51.73761 + ], + [ + 5.000534, + 51.82093799900002 + ], + [ + 5.149456, + 51.933452499 + ], + [ + 5.606011500000022, + 51.943248498 + ], + [ + 5.404633, + 52.24962999899998 + ], + [ + 5.864311, + 52.518169496999974 + ], + [ + 6.109792500000026, + 52.440574501000015 + ], + [ + 6.166411499999981, + 52.231045 + ], + [ + 6.381997500000011, + 52.24608600099998 + ], + [ + 6.760465, + 52.11856949999998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -6.102773, + 53.210773 + ], + [ + -6.144516501, + 52.73769649899998 + ], + [ + -6.360401500000023, + 52.174297998999975 + ], + [ + -7.842156, + 51.95421849899998 + ], + [ + -8.534105, + 51.60396149899998 + ], + [ + -9.820953499999973, + 51.44911749900001 + ], + [ + -9.4395065, + 51.72339500099997 + ], + [ + -10.143066499999975, + 51.59705299900003 + ], + [ + -10.359855687999982, + 51.89811573899999 + ], + [ + -10.292081, + 51.9134095 + ], + [ + -10.305404416999977, + 51.91783544499998 + ], + [ + -9.792653, + 52.15557449900001 + ], + [ + -10.472409, + 52.180784501 + ], + [ + -9.365306771, + 52.572083917999976 + ], + [ + -9.365192, + 52.57212449999997 + ], + [ + -8.733330465999984, + 52.662677988999974 + ], + [ + -8.72813801, + 52.66342214100001 + ], + [ + -8.728047772000025, + 52.66343536199997 + ], + [ + -8.728093624999985, + 52.663433558 + ], + [ + -8.733924531000014, + 52.66327281299999 + ], + [ + -9.545411424, + 52.64089068099997 + ], + [ + -9.546329543000013, + 52.64086552100002 + ], + [ + -9.546003731999974, + 52.64148685499998 + ], + [ + -9.282234397000025, + 53.14464463600001 + ], + [ + -9.282228877000023, + 53.14465490600003 + ], + [ + -9.282189335999988, + 53.14465521599999 + ], + [ + -9.009308499999975, + 53.14081749899998 + ], + [ + -9.008489770999972, + 53.140603919 + ], + [ + -8.359738204999985, + 52.971357996999984 + ], + [ + -8.081461029000025, + 53.166883229 + ], + [ + -7.674682691999976, + 52.78186351599999 + ], + [ + -7.674081, + 52.781294 + ], + [ + -6.939413, + 52.88005449799999 + ], + [ + -7.063349, + 53.468781501000024 + ], + [ + -7.343828499999972, + 53.79906249800001 + ], + [ + -6.749452500000018, + 53.913742997999975 + ], + [ + -6.247098, + 53.722454500000026 + ], + [ + -6.2148995, + 53.63340699899999 + ], + [ + -6.102773, + 53.210773 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -16.194012499999985, + 66.53742000099999 + ], + [ + -15.7608105, + 66.28006149999999 + ], + [ + -14.530650501000025, + 66.377677 + ], + [ + -15.1874295, + 66.107847999 + ], + [ + -14.604863500000022, + 65.959309 + ], + [ + -14.841373499999975, + 65.72531300100002 + ], + [ + -13.606742500999985, + 65.510168 + ], + [ + -13.495021, + 65.07634249699998 + ], + [ + -14.962440500000014, + 64.23983099899999 + ], + [ + -18.177745, + 63.45859599800002 + ], + [ + -22.007397, + 63.83598750099998 + ], + [ + -22.13086850000002, + 63.83659800100003 + ], + [ + -22.749017, + 63.970331498 + ], + [ + -22.125507, + 64.040599 + ], + [ + -21.3700475, + 64.38032599899998 + ], + [ + -22.03162150000003, + 64.303023999 + ], + [ + -22.4159795, + 64.81220099900003 + ], + [ + -24.04781, + 64.87882700099999 + ], + [ + -21.8073225, + 65.02585000099998 + ], + [ + -21.7099895, + 65.159457998 + ], + [ + -22.560879, + 65.16934599899997 + ], + [ + -21.681208, + 65.451475 + ], + [ + -24.53204249999999, + 65.503079 + ], + [ + -24.099384, + 65.80526849900002 + ], + [ + -23.171936500000015, + 65.774955998 + ], + [ + -23.868307, + 65.88655649999998 + ], + [ + -23.18220450000001, + 65.83778449800002 + ], + [ + -23.819687, + 66.034912 + ], + [ + -23.478353, + 66.19469350000003 + ], + [ + -22.360858, + 65.925525999 + ], + [ + -22.976494, + 66.22213249999999 + ], + [ + -22.36286050000001, + 66.2698555 + ], + [ + -23.1958975, + 66.35003399700003 + ], + [ + -22.9317105, + 66.4693605 + ], + [ + -21.32774649999999, + 66.00619900100003 + ], + [ + -21.3420165, + 65.73476750100002 + ], + [ + -21.7825325, + 65.76451349799999 + ], + [ + -21.094844500000022, + 65.44756299900001 + ], + [ + -20.264036, + 65.72534549900001 + ], + [ + -20.421178, + 66.08405149999999 + ], + [ + -19.473689, + 65.73660650099998 + ], + [ + -19.36108150000001, + 65.829324 + ], + [ + -19.4362145, + 66.0476645 + ], + [ + -18.77751, + 66.19142700100002 + ], + [ + -17.4125985, + 65.992246497 + ], + [ + -16.194012499999985, + 66.53742000099999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 8.713936, + 46.097271998999986 + ], + [ + 8.593811, + 45.828224998999985 + ], + [ + 8.706896500000028, + 45.558316 + ], + [ + 8.8429155, + 45.393841 + ], + [ + 8.51356, + 45.31327850100001 + ], + [ + 8.5477975, + 45.168147497 + ], + [ + 8.887709, + 45.059148999 + ], + [ + 9.200074, + 44.68609949699999 + ], + [ + 9.202995499999986, + 44.613476499 + ], + [ + 8.576182, + 44.509206001 + ], + [ + 8.261596, + 44.51942449699999 + ], + [ + 8.252819499, + 44.528740501000016 + ], + [ + 8.015629499999989, + 44.11067649900002 + ], + [ + 7.714236500000027, + 44.061513499 + ], + [ + 7.007760500000018, + 44.23670049899999 + ], + [ + 6.887428, + 44.361287 + ], + [ + 6.948443, + 44.654741999 + ], + [ + 7.065755, + 44.71346449700002 + ], + [ + 6.630051, + 45.10985649999998 + ], + [ + 7.125157, + 45.243994498 + ], + [ + 7.104723, + 45.46845449900002 + ], + [ + 7.895811, + 45.590028 + ], + [ + 7.936649, + 45.72434049999998 + ], + [ + 7.86407650000001, + 45.91675049999998 + ], + [ + 7.8771375, + 45.926954997999985 + ], + [ + 8.384717, + 46.452158499 + ], + [ + 8.713936, + 46.097271998999986 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.416191, + 51.784865 + ], + [ + 15.979245, + 51.802309001000026 + ], + [ + 15.714032499999973, + 51.51739699699999 + ], + [ + 14.974183, + 51.36394999700002 + ], + [ + 14.729862, + 51.581776999 + ], + [ + 14.716716, + 52.001188001 + ], + [ + 14.755227, + 52.070024998 + ], + [ + 14.600891499999989, + 52.272051998999984 + ], + [ + 14.534361999, + 52.395008 + ], + [ + 14.565063, + 52.624497 + ], + [ + 14.904187, + 52.883909499000026 + ], + [ + 15.962497499999984, + 53.041380996999976 + ], + [ + 15.946907, + 52.75489599799999 + ], + [ + 15.776346499999988, + 52.63786950100001 + ], + [ + 15.880810499, + 52.29042949900003 + ], + [ + 15.833296, + 52.11112300100001 + ], + [ + 16.416191, + 51.784865 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.416191, + 51.784865 + ], + [ + 16.828372, + 51.57218799899999 + ], + [ + 17.257433, + 51.64284300100002 + ], + [ + 17.556245, + 51.58430149899999 + ], + [ + 17.795269500000018, + 51.19414600099998 + ], + [ + 17.578243499999985, + 51.162241 + ], + [ + 17.164896, + 50.61346299899998 + ], + [ + 16.90792449999998, + 50.44945400099999 + ], + [ + 17.028323, + 50.22999699899998 + ], + [ + 16.86327, + 50.19812299900002 + ], + [ + 16.58029, + 50.14278799800002 + ], + [ + 16.195729, + 50.432135001 + ], + [ + 16.443536, + 50.58625749999999 + ], + [ + 16.107318, + 50.662072998999975 + ], + [ + 15.535267499999975, + 50.779375999000024 + ], + [ + 15.032691, + 51.021315999000024 + ], + [ + 14.823362, + 50.87055049700001 + ], + [ + 15.037271, + 51.24374999899999 + ], + [ + 14.974183, + 51.36394999700002 + ], + [ + 15.714032499999973, + 51.51739699699999 + ], + [ + 15.979245, + 51.802309001000026 + ], + [ + 16.416191, + 51.784865 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 18.1636815, + 51.172516997 + ], + [ + 18.672954499000014, + 51.056902501000025 + ], + [ + 18.61587750000001, + 50.85358750099999 + ], + [ + 18.607473500000026, + 50.550011 + ], + [ + 18.425866499999984, + 50.24896549800002 + ], + [ + 18.059780499999988, + 50.17465249999998 + ], + [ + 18.035060999, + 50.06577199899999 + ], + [ + 17.868675, + 49.972545997 + ], + [ + 17.592736, + 50.160014 + ], + [ + 17.758479, + 50.206568 + ], + [ + 17.718403998999975, + 50.32095 + ], + [ + 17.429605, + 50.25451300100002 + ], + [ + 16.90792449999998, + 50.44945400099999 + ], + [ + 17.164896, + 50.61346299899998 + ], + [ + 17.578243499999985, + 51.162241 + ], + [ + 17.795269500000018, + 51.19414600099998 + ], + [ + 17.939456, + 51.10886499899999 + ], + [ + 18.1636815, + 51.172516997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 19.1292765, + 53.588260499 + ], + [ + 19.7615955, + 53.15179649800001 + ], + [ + 19.684806, + 52.963038998 + ], + [ + 19.444664, + 52.93904250000003 + ], + [ + 19.522742999, + 52.74920049799999 + ], + [ + 19.289184499999976, + 52.39271249799998 + ], + [ + 19.04712, + 52.33280399900002 + ], + [ + 18.377150500000027, + 52.53746350099999 + ], + [ + 17.458523, + 52.73894800099998 + ], + [ + 17.509582500000022, + 52.917767997 + ], + [ + 17.3015565, + 52.994803 + ], + [ + 17.438793499999974, + 53.26751450099999 + ], + [ + 17.390653, + 53.490964 + ], + [ + 18.072036500000024, + 53.781074998 + ], + [ + 18.761577499999987, + 53.604881998 + ], + [ + 19.1292765, + 53.588260499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.792095500000016, + 54.36335899699998 + ], + [ + 22.476556500000015, + 54.20130550099998 + ], + [ + 22.782806, + 53.91548949899999 + ], + [ + 22.703502500000013, + 53.767354496999985 + ], + [ + 22.135728, + 53.544539998 + ], + [ + 21.598199912999974, + 53.48018197099998 + ], + [ + 21.55169, + 53.478128001000016 + ], + [ + 20.675953999, + 53.269529498 + ], + [ + 20.411137, + 53.214165 + ], + [ + 19.7615955, + 53.15179649800001 + ], + [ + 19.1292765, + 53.588260499 + ], + [ + 19.37773950000002, + 53.984958998000025 + ], + [ + 19.2176885, + 54.11612149699999 + ], + [ + 19.256953, + 54.2784605 + ], + [ + 19.8037685, + 54.4424105 + ], + [ + 20.313503, + 54.40220200099998 + ], + [ + 21.559322, + 54.322504 + ], + [ + 22.792095500000016, + 54.36335899699998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 19.256953, + 54.2784605 + ], + [ + 19.2176885, + 54.11612149699999 + ], + [ + 19.37773950000002, + 53.984958998000025 + ], + [ + 19.1292765, + 53.588260499 + ], + [ + 18.761577499999987, + 53.604881998 + ], + [ + 18.072036500000024, + 53.781074998 + ], + [ + 17.390653, + 53.490964 + ], + [ + 16.892248, + 53.655868999 + ], + [ + 16.982053499000017, + 53.904909499999974 + ], + [ + 16.792764499999976, + 53.98555049999999 + ], + [ + 16.858620499999972, + 54.38257649799999 + ], + [ + 16.699085, + 54.569247001 + ], + [ + 17.666607, + 54.7832315 + ], + [ + 18.35961, + 54.81719149700001 + ], + [ + 18.828968499999974, + 54.60770799900001 + ], + [ + 18.3967745, + 54.74728049999999 + ], + [ + 18.54172649999998, + 54.58448 + ], + [ + 18.950029500000028, + 54.358310501 + ], + [ + 19.639032, + 54.458294498999976 + ], + [ + 19.648523, + 54.453339 + ], + [ + 19.256953, + 54.2784605 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -6.983513500000015, + 41.97290399899998 + ], + [ + -6.5884615, + 41.967761998000015 + ], + [ + -6.189352, + 41.575046499 + ], + [ + -6.479713, + 41.294379999 + ], + [ + -6.689786, + 41.20524149800002 + ], + [ + -6.929903500000023, + 41.02946649900002 + ], + [ + -7.40123545, + 40.880941330999974 + ], + [ + -7.4542035, + 40.81260999900002 + ], + [ + -7.9156385, + 41.020001998 + ], + [ + -8.08917150000002, + 40.987557498 + ], + [ + -8.273369, + 40.763173497000025 + ], + [ + -8.5491265, + 40.79180699699998 + ], + [ + -8.6531195, + 40.964778497 + ], + [ + -8.776427500000011, + 41.471979497 + ], + [ + -8.811573, + 41.611576996999986 + ], + [ + -8.863186, + 41.87206649900003 + ], + [ + -8.199000500000011, + 42.15441899899997 + ], + [ + -8.1650755, + 41.818302 + ], + [ + -8.051862500000027, + 41.820613998 + ], + [ + -7.20046450000001, + 41.879749498000024 + ], + [ + -6.983513500000015, + 41.97290399899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -7.401916500000027, + 37.17482749800001 + ], + [ + -7.8825875, + 36.96182299899999 + ], + [ + -8.592472, + 37.1220545 + ], + [ + -8.981500499999981, + 37.02743849799998 + ], + [ + -8.7963155, + 37.442948 + ], + [ + -8.3779285, + 37.427245997 + ], + [ + -8.065689500000019, + 37.318969998 + ], + [ + -7.512691500000017, + 37.526256499 + ], + [ + -7.401916500000027, + 37.17482749800001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -6.865144, + 40.270694499 + ], + [ + -6.9512985, + 40.257445999000026 + ], + [ + -7.011960499999986, + 40.126934 + ], + [ + -6.864203, + 40.011867498000015 + ], + [ + -7.015405, + 39.670856499000024 + ], + [ + -7.53490245, + 39.661986891000026 + ], + [ + -7.8251085, + 39.53736399899998 + ], + [ + -7.959676, + 39.560949499 + ], + [ + -7.9394625, + 39.409952498 + ], + [ + -8.1726035, + 39.23331399699998 + ], + [ + -8.338524, + 39.46152449800002 + ], + [ + -8.759391, + 39.475686999 + ], + [ + -8.903426, + 39.466005499 + ], + [ + -8.93028049999998, + 39.01802249899998 + ], + [ + -9.333296, + 39.02805749700002 + ], + [ + -9.416459499999974, + 39.054692999 + ], + [ + -9.365950500999986, + 39.34837799899998 + ], + [ + -9.04026600100002, + 39.74142200099999 + ], + [ + -8.894938, + 40.045502999 + ], + [ + -8.784033, + 40.52036649899998 + ], + [ + -8.6531195, + 40.964778497 + ], + [ + -8.5491265, + 40.79180699699998 + ], + [ + -8.273369, + 40.763173497000025 + ], + [ + -8.08917150000002, + 40.987557498 + ], + [ + -7.9156385, + 41.020001998 + ], + [ + -7.4542035, + 40.81260999900002 + ], + [ + -7.40123545, + 40.880941330999974 + ], + [ + -6.929903500000023, + 41.02946649900002 + ], + [ + -6.801935, + 40.861045998 + ], + [ + -6.865144, + 40.270694499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + -8.735066500000016, + 38.516034999 + ], + [ + -9.222857499999975, + 38.413747999 + ], + [ + -9.260362499999985, + 38.662664999000015 + ], + [ + -8.924883500000021, + 38.75867649999998 + ], + [ + -8.546800500000018, + 38.76343399799998 + ], + [ + -8.490975, + 38.76131049899999 + ], + [ + -8.6391155, + 38.549488999 + ], + [ + -8.735066500000016, + 38.516034999 + ] + ] + ], + [ + [ + [ + -8.968469, + 38.827762499000016 + ], + [ + -9.477468499999986, + 38.70183849799997 + ], + [ + -9.416459499999974, + 39.054692999 + ], + [ + -9.333296, + 39.02805749700002 + ], + [ + -8.93028049999998, + 39.01802249899998 + ], + [ + -8.968469, + 38.827762499000016 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -6.9317385, + 38.208377998 + ], + [ + -7.002483499999983, + 38.0227165 + ], + [ + -7.2632845, + 37.979908 + ], + [ + -7.512691500000017, + 37.526256499 + ], + [ + -8.065689500000019, + 37.318969998 + ], + [ + -8.3779285, + 37.427245997 + ], + [ + -8.7963155, + 37.442948 + ], + [ + -8.735066500000016, + 38.516034999 + ], + [ + -8.6391155, + 38.549488999 + ], + [ + -8.490975, + 38.76131049899999 + ], + [ + -8.546800500000018, + 38.76343399799998 + ], + [ + -8.924883500000021, + 38.75867649999998 + ], + [ + -8.968469, + 38.827762499000016 + ], + [ + -8.93028049999998, + 39.01802249899998 + ], + [ + -8.903426, + 39.466005499 + ], + [ + -8.759391, + 39.475686999 + ], + [ + -8.338524, + 39.46152449800002 + ], + [ + -8.1726035, + 39.23331399699998 + ], + [ + -7.9394625, + 39.409952498 + ], + [ + -7.959676, + 39.560949499 + ], + [ + -7.8251085, + 39.53736399899998 + ], + [ + -7.53490245, + 39.661986891000026 + ], + [ + -7.231467, + 39.278431 + ], + [ + -6.9513915, + 39.024070499 + ], + [ + -7.203135, + 38.75101749800001 + ], + [ + -7.316636, + 38.43987649899998 + ], + [ + -7.10795250000001, + 38.18812150000002 + ], + [ + -6.9317385, + 38.208377998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -25.1341635, + 37.80761749800001 + ], + [ + -25.5115255, + 37.708371499 + ], + [ + -25.85274, + 37.85310549899998 + ], + [ + -25.689569, + 37.84193950100001 + ], + [ + -25.1341635, + 37.80761749800001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -16.746594500000015, + 32.73417 + ], + [ + -16.944882501, + 32.632935498999984 + ], + [ + -17.2126035, + 32.736969999 + ], + [ + -17.193386499999974, + 32.870556498999974 + ], + [ + -16.746594500000015, + 32.73417 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 24.947100499999976, + 47.729124 + ], + [ + 24.960837500000025, + 47.596850999000026 + ], + [ + 25.063383, + 47.13653849799999 + ], + [ + 24.400994998999977, + 46.75053549900002 + ], + [ + 24.18309310500001, + 46.802148026 + ], + [ + 23.985275, + 46.43091799899997 + ], + [ + 22.811950500000023, + 46.56885950100002 + ], + [ + 22.676575500000013, + 46.40582549700002 + ], + [ + 21.441398, + 46.651467 + ], + [ + 21.658955, + 47.02213149800002 + ], + [ + 22.12832, + 47.59808949699999 + ], + [ + 22.1808375, + 47.60009449900002 + ], + [ + 22.896270500000014, + 47.95412050099998 + ], + [ + 23.1885355, + 48.10868799899998 + ], + [ + 23.493605, + 47.96781149899999 + ], + [ + 24.583293500000025, + 47.964851496999984 + ], + [ + 24.947100499999976, + 47.729124 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 26.4399845, + 46.038876499000025 + ], + [ + 26.392094499999985, + 45.80238949699998 + ], + [ + 26.093334500000026, + 45.51630599700002 + ], + [ + 26.0727185, + 45.505787999 + ], + [ + 25.452539, + 45.441341998999974 + ], + [ + 25.32157749999999, + 45.381088998 + ], + [ + 25.103214, + 45.58519399900001 + ], + [ + 24.68492550000002, + 45.60411099700002 + ], + [ + 24.5128345, + 45.58682499899999 + ], + [ + 23.703613, + 45.49677200100001 + ], + [ + 23.59727049999998, + 45.47347149900003 + ], + [ + 23.234864, + 46.03050199699999 + ], + [ + 22.748716, + 46.35120749999999 + ], + [ + 22.676575500000013, + 46.40582549700002 + ], + [ + 22.811950500000023, + 46.56885950100002 + ], + [ + 23.985275, + 46.43091799899997 + ], + [ + 24.18309310500001, + 46.802148026 + ], + [ + 24.400994998999977, + 46.75053549900002 + ], + [ + 25.063383, + 47.13653849799999 + ], + [ + 25.2467105, + 47.097919 + ], + [ + 25.66158249900002, + 47.091646500000024 + ], + [ + 25.8619675, + 46.92338349800002 + ], + [ + 25.79531, + 46.71911749899999 + ], + [ + 25.975159500000018, + 46.69731249900002 + ], + [ + 26.263439, + 46.24633849700001 + ], + [ + 26.4399845, + 46.038876499000025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 28.115802, + 46.10782699700002 + ], + [ + 27.610243, + 46.136248498999976 + ], + [ + 27.562554499999976, + 46.00287699799998 + ], + [ + 27.503053, + 46.13962099899999 + ], + [ + 27.4928185, + 46.159212998999976 + ], + [ + 26.4399845, + 46.038876499000025 + ], + [ + 26.263439, + 46.24633849700001 + ], + [ + 25.975159500000018, + 46.69731249900002 + ], + [ + 25.79531, + 46.71911749899999 + ], + [ + 25.8619675, + 46.92338349800002 + ], + [ + 25.66158249900002, + 47.091646500000024 + ], + [ + 25.2467105, + 47.097919 + ], + [ + 25.063383, + 47.13653849799999 + ], + [ + 24.960837500000025, + 47.596850999000026 + ], + [ + 24.947100499999976, + 47.729124 + ], + [ + 26.098827500000027, + 47.97879599700002 + ], + [ + 26.63056, + 48.259749999 + ], + [ + 27.1646515, + 47.99468349900002 + ], + [ + 27.3911665, + 47.58939749699999 + ], + [ + 28.113805500000012, + 46.838411001 + ], + [ + 28.260886, + 46.43713949900001 + ], + [ + 28.115802, + 46.10782699700002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 28.115802, + 46.10782699700002 + ], + [ + 28.088561500000026, + 45.606112499 + ], + [ + 28.21136, + 45.46727999900003 + ], + [ + 28.28599, + 45.430630001 + ], + [ + 28.717, + 45.224379999 + ], + [ + 29.42759, + 45.44223999899998 + ], + [ + 29.6796395, + 45.211838 + ], + [ + 29.600269, + 44.83955449899997 + ], + [ + 28.994085, + 44.679625498 + ], + [ + 28.62598250000002, + 44.29703199800002 + ], + [ + 28.578884, + 43.738739 + ], + [ + 27.69541, + 43.987343 + ], + [ + 27.271344999, + 44.12633649899999 + ], + [ + 28.01737399899997, + 44.340248997 + ], + [ + 28.110168499999986, + 44.439703501 + ], + [ + 27.881007, + 44.76307649900002 + ], + [ + 27.20345850000001, + 44.78707399899997 + ], + [ + 26.6055515, + 44.856993998 + ], + [ + 26.0727185, + 45.505787999 + ], + [ + 26.093334500000026, + 45.51630599700002 + ], + [ + 26.392094499999985, + 45.80238949699998 + ], + [ + 26.4399845, + 46.038876499000025 + ], + [ + 27.4928185, + 46.159212998999976 + ], + [ + 27.503053, + 46.13962099899999 + ], + [ + 27.562554499999976, + 46.00287699799998 + ], + [ + 27.610243, + 46.136248498999976 + ], + [ + 28.115802, + 46.10782699700002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 26.0727185, + 45.505787999 + ], + [ + 26.6055515, + 44.856993998 + ], + [ + 27.20345850000001, + 44.78707399899997 + ], + [ + 27.881007, + 44.76307649900002 + ], + [ + 28.110168499999986, + 44.439703501 + ], + [ + 28.01737399899997, + 44.340248997 + ], + [ + 27.271344999, + 44.12633649899999 + ], + [ + 26.379968, + 44.04295099900003 + ], + [ + 26.358359999000015, + 44.038415500999974 + ], + [ + 25.671862499999975, + 43.69133999899998 + ], + [ + 25.544640500000014, + 43.64298149699999 + ], + [ + 25.293740500000013, + 43.654294 + ], + [ + 24.641605998999978, + 43.733412999 + ], + [ + 24.755096, + 43.81760149899998 + ], + [ + 24.613092499, + 44.01415599799998 + ], + [ + 24.884019500000022, + 44.38263649700002 + ], + [ + 24.438121, + 44.845375499 + ], + [ + 24.5128345, + 45.58682499899999 + ], + [ + 24.68492550000002, + 45.60411099700002 + ], + [ + 25.103214, + 45.58519399900001 + ], + [ + 25.32157749999999, + 45.381088998 + ], + [ + 25.452539, + 45.441341998999974 + ], + [ + 26.0727185, + 45.505787999 + ] + ], + [ + [ + 26.416060500000015, + 44.521682999 + ], + [ + 26.301818500000024, + 44.768875 + ], + [ + 25.970744, + 44.71040850100002 + ], + [ + 25.8907395, + 44.54095299900001 + ], + [ + 25.870018500000015, + 44.35740049899999 + ], + [ + 26.259956499999987, + 44.294985999 + ], + [ + 26.416060500000015, + 44.521682999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 26.416060500000015, + 44.521682999 + ], + [ + 26.259956499999987, + 44.294985999 + ], + [ + 25.870018500000015, + 44.35740049899999 + ], + [ + 25.8907395, + 44.54095299900001 + ], + [ + 25.970744, + 44.71040850100002 + ], + [ + 26.301818500000024, + 44.768875 + ], + [ + 26.416060500000015, + 44.521682999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 24.641605998999978, + 43.733412999 + ], + [ + 24.324132, + 43.699567996999974 + ], + [ + 24.112719, + 43.699566498000024 + ], + [ + 23.63008, + 43.79125999799999 + ], + [ + 22.997154500000022, + 43.807626997 + ], + [ + 22.838719, + 43.877852001 + ], + [ + 23.045898, + 44.06374949999997 + ], + [ + 22.966399500000023, + 44.09852499700003 + ], + [ + 22.6751615, + 44.21566299699998 + ], + [ + 22.4573995, + 44.4674665 + ], + [ + 22.705956500000013, + 44.603216498999984 + ], + [ + 22.467334, + 44.7147455 + ], + [ + 22.1595795, + 44.471777498999984 + ], + [ + 22.016132500000026, + 44.599202499 + ], + [ + 22.154162, + 44.59519949700001 + ], + [ + 22.207799, + 44.816878497 + ], + [ + 22.418032, + 44.75685749899998 + ], + [ + 22.656632, + 45.10816699700001 + ], + [ + 22.68624649999998, + 45.25796099899998 + ], + [ + 23.59064, + 45.353072499 + ], + [ + 23.59727049999998, + 45.47347149900003 + ], + [ + 23.703613, + 45.49677200100001 + ], + [ + 24.5128345, + 45.58682499899999 + ], + [ + 24.438121, + 44.845375499 + ], + [ + 24.884019500000022, + 44.38263649700002 + ], + [ + 24.613092499, + 44.01415599799998 + ], + [ + 24.755096, + 43.81760149899998 + ], + [ + 24.641605998999978, + 43.733412999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.864311, + 52.518169496999974 + ], + [ + 5.404633, + 52.24962999899998 + ], + [ + 5.335462, + 52.29021849899999 + ], + [ + 5.079161, + 52.388653 + ], + [ + 5.0604265, + 52.578937499 + ], + [ + 5.377261499999975, + 52.764805 + ], + [ + 5.795148499999982, + 52.80649949899998 + ], + [ + 6.017299499999979, + 52.643230499000026 + ], + [ + 5.777970499999981, + 52.607532499 + ], + [ + 5.864311, + 52.518169496999974 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.335462, + 52.29021849899999 + ], + [ + 5.404633, + 52.24962999899998 + ], + [ + 5.606011500000022, + 51.943248498 + ], + [ + 5.149456, + 51.933452499 + ], + [ + 4.877899500000012, + 51.93783549800003 + ], + [ + 4.794524, + 52.22672649899999 + ], + [ + 5.021537500000022, + 52.30249849900002 + ], + [ + 5.335462, + 52.29021849899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.377261499999975, + 52.764805 + ], + [ + 5.0604265, + 52.578937499 + ], + [ + 5.079161, + 52.388653 + ], + [ + 5.335462, + 52.29021849899999 + ], + [ + 5.021537500000022, + 52.30249849900002 + ], + [ + 4.794524, + 52.22672649899999 + ], + [ + 4.728766, + 52.20981949899999 + ], + [ + 4.611684, + 52.31358699899999 + ], + [ + 4.493847500000015, + 52.32826000099999 + ], + [ + 4.560596499999974, + 52.437426001 + ], + [ + 4.609676499999978, + 52.57340100099998 + ], + [ + 4.649071, + 52.75617749999998 + ], + [ + 4.730989, + 52.96218849899998 + ], + [ + 5.164383499999985, + 53.00091050100002 + ], + [ + 5.167425499999979, + 52.998798498999975 + ], + [ + 5.377261499999975, + 52.764805 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 4.611684, + 52.31358699899999 + ], + [ + 4.728766, + 52.20981949899999 + ], + [ + 4.794524, + 52.22672649899999 + ], + [ + 4.877899500000012, + 51.93783549800003 + ], + [ + 5.149456, + 51.933452499 + ], + [ + 5.000534, + 51.82093799900002 + ], + [ + 4.676294499999983, + 51.7249185 + ], + [ + 4.620420500000023, + 51.71412650000002 + ], + [ + 4.249017, + 51.6458015 + ], + [ + 4.161857000999987, + 51.66683157699998 + ], + [ + 4.135041090000016, + 51.673303697999984 + ], + [ + 3.678739, + 51.69532400100002 + ], + [ + 3.839083, + 51.758297 + ], + [ + 4.1277885, + 52.000542497000026 + ], + [ + 4.198018499999989, + 52.05414449699998 + ], + [ + 4.3742325, + 52.18708999699999 + ], + [ + 4.493847500000015, + 52.32826000099999 + ], + [ + 4.611684, + 52.31358699899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 3.9776665, + 51.225131998999984 + ], + [ + 3.8563395, + 51.211056 + ], + [ + 3.380661, + 51.274299497000015 + ], + [ + 3.367216499999984, + 51.368134499 + ], + [ + 4.23481750000002, + 51.348254 + ], + [ + 3.9776665, + 51.225131998999984 + ] + ] + ], + [ + [ + [ + 4.249017, + 51.6458015 + ], + [ + 4.279565, + 51.37601749700002 + ], + [ + 4.24366950000001, + 51.37472949900001 + ], + [ + 3.4342, + 51.52615749900002 + ], + [ + 4.223578, + 51.43865599700001 + ], + [ + 4.161857000999987, + 51.66683157699998 + ], + [ + 4.249017, + 51.6458015 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.8651585, + 51.757407999 + ], + [ + 6.047766500000023, + 51.55850599799999 + ], + [ + 5.838077, + 51.566467499 + ], + [ + 5.8402455, + 51.34692400099999 + ], + [ + 5.5662835, + 51.22083649799998 + ], + [ + 5.237716499999976, + 51.261600499 + ], + [ + 5.10218, + 51.42900499699999 + ], + [ + 4.759926, + 51.50246449799999 + ], + [ + 4.669544, + 51.426383999 + ], + [ + 4.279565, + 51.37601749700002 + ], + [ + 4.249017, + 51.6458015 + ], + [ + 4.620420500000023, + 51.71412650000002 + ], + [ + 4.676294499999983, + 51.7249185 + ], + [ + 5.000534, + 51.82093799900002 + ], + [ + 5.128057500000011, + 51.73761 + ], + [ + 5.597879499999976, + 51.828082999 + ], + [ + 5.8651585, + 51.757407999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 5.953192, + 51.747845998 + ], + [ + 6.224405, + 51.364978999000016 + ], + [ + 6.072657, + 51.24258749799998 + ], + [ + 6.174812, + 51.1845135 + ], + [ + 5.877084998999976, + 51.032101 + ], + [ + 6.0869475, + 50.91313499900002 + ], + [ + 6.020998999000028, + 50.75429550000001 + ], + [ + 5.892073, + 50.755237498999975 + ], + [ + 5.682000499000026, + 50.75744649799998 + ], + [ + 5.687622, + 50.81192399899999 + ], + [ + 5.758272498999986, + 50.954795 + ], + [ + 5.766149, + 51.00923549999999 + ], + [ + 5.798274, + 51.059853498999985 + ], + [ + 5.5662835, + 51.22083649799998 + ], + [ + 5.8402455, + 51.34692400099999 + ], + [ + 5.838077, + 51.566467499 + ], + [ + 6.047766500000023, + 51.55850599799999 + ], + [ + 5.8651585, + 51.757407999 + ], + [ + 5.953192, + 51.747845998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 11.822262, + 60.05214499800002 + ], + [ + 11.839729, + 59.840767 + ], + [ + 11.926970499999982, + 59.79047599900002 + ], + [ + 10.686118, + 59.48940699899998 + ], + [ + 10.5818175, + 59.756759500999976 + ], + [ + 10.764788, + 59.8295445 + ], + [ + 10.681954881000024, + 59.884828632999984 + ], + [ + 10.64198, + 59.911508500000025 + ], + [ + 10.497314500000016, + 59.7883385 + ], + [ + 10.489164999000025, + 60.01726 + ], + [ + 10.600720500000023, + 60.13161 + ], + [ + 10.680319499, + 60.1335305 + ], + [ + 10.933902499999988, + 60.34669199799998 + ], + [ + 10.713308499999982, + 60.524164997000014 + ], + [ + 11.153986, + 60.605148000999975 + ], + [ + 11.2095645, + 60.504914498 + ], + [ + 11.822262, + 60.05214499800002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 12.2546595, + 62.33102449699999 + ], + [ + 12.29937, + 62.267494 + ], + [ + 12.137665, + 61.72381699800002 + ], + [ + 12.870847500000025, + 61.35649499800002 + ], + [ + 12.670176500000025, + 61.055976498 + ], + [ + 12.22399, + 61.013078001 + ], + [ + 12.606881499999986, + 60.51274249699998 + ], + [ + 12.499544999000022, + 60.09765699799999 + ], + [ + 11.839729, + 59.840767 + ], + [ + 11.822262, + 60.05214499800002 + ], + [ + 11.2095645, + 60.504914498 + ], + [ + 11.153986, + 60.605148000999975 + ], + [ + 10.713308499999982, + 60.524164997000014 + ], + [ + 10.933902499999988, + 60.34669199799998 + ], + [ + 10.680319499, + 60.1335305 + ], + [ + 10.600720500000023, + 60.13161 + ], + [ + 10.03533, + 60.632055001000026 + ], + [ + 9.478695, + 60.530145498000024 + ], + [ + 8.251701, + 61.073943997000015 + ], + [ + 8.051171, + 61.23277650099999 + ], + [ + 8.262332500000014, + 61.533979500999976 + ], + [ + 7.5138235, + 61.72736450000002 + ], + [ + 7.349109, + 62.00768199700002 + ], + [ + 9.062062, + 62.37260849799998 + ], + [ + 9.792455, + 62.287932001 + ], + [ + 10.1969, + 62.68769350000002 + ], + [ + 12.2546595, + 62.33102449699999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 8.251701, + 61.073943997000015 + ], + [ + 9.478695, + 60.530145498000024 + ], + [ + 10.03533, + 60.632055001000026 + ], + [ + 10.600720500000023, + 60.13161 + ], + [ + 10.489164999000025, + 60.01726 + ], + [ + 10.497314500000016, + 59.7883385 + ], + [ + 10.54188649299999, + 59.70815578000003 + ], + [ + 10.555847737000022, + 59.68304020800002 + ], + [ + 10.617811, + 59.571571499000015 + ], + [ + 10.421314, + 59.52508150099999 + ], + [ + 10.4391965, + 59.665851498999984 + ], + [ + 10.212189500000022, + 59.737282 + ], + [ + 10.3198815, + 59.691343501 + ], + [ + 10.374606, + 59.67696749999999 + ], + [ + 10.386558499999978, + 59.275020498 + ], + [ + 10.273399499999982, + 59.04173650000001 + ], + [ + 9.839197001, + 59.044178998 + ], + [ + 9.289463, + 58.839130496 + ], + [ + 9.46771050000001, + 58.829845498 + ], + [ + 9.365971, + 58.771349 + ], + [ + 8.996341500000028, + 58.991956499000025 + ], + [ + 7.966328499999975, + 58.968421 + ], + [ + 7.506116001, + 59.607801 + ], + [ + 7.214666500000021, + 59.672687 + ], + [ + 7.096287500000017, + 59.782777 + ], + [ + 7.488040500000011, + 60.09883849800002 + ], + [ + 7.732114500000023, + 60.520970499999976 + ], + [ + 7.46964, + 60.675547498000014 + ], + [ + 8.251701, + 61.073943997000015 + ] + ] + ], + [ + [ + [ + 11.8261965, + 59.237849998 + ], + [ + 11.632557, + 58.90830650100003 + ], + [ + 11.460827, + 58.988658499 + ], + [ + 11.15222652599999, + 59.068580457 + ], + [ + 11.133916596, + 59.073322399 + ], + [ + 10.825053, + 59.153312501000016 + ], + [ + 10.686118, + 59.48940699899998 + ], + [ + 11.926970499999982, + 59.79047599900002 + ], + [ + 11.93987850000002, + 59.69458099799999 + ], + [ + 11.691129, + 59.58954749999998 + ], + [ + 11.8261965, + 59.237849998 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 7.214666500000021, + 59.672687 + ], + [ + 7.506116001, + 59.607801 + ], + [ + 7.966328499999975, + 58.968421 + ], + [ + 8.996341500000028, + 58.991956499000025 + ], + [ + 9.365971, + 58.771349 + ], + [ + 9.082190498999978, + 58.74871449699998 + ], + [ + 9.0575915, + 58.725215999 + ], + [ + 9.244501, + 58.725330499999984 + ], + [ + 8.185152, + 58.1429415 + ], + [ + 7.038199, + 58.02142699900003 + ], + [ + 6.553461500000026, + 58.117786498999976 + ], + [ + 6.89118, + 58.2743605 + ], + [ + 6.438839, + 58.2908195 + ], + [ + 5.491752, + 58.75478 + ], + [ + 5.5742715, + 59.03034250000002 + ], + [ + 5.995267500000011, + 58.968890998 + ], + [ + 6.217452499999979, + 59.266296497999974 + ], + [ + 5.941965499999981, + 59.361309001 + ], + [ + 5.614074, + 59.33062349900001 + ], + [ + 5.550886, + 59.27162149999998 + ], + [ + 5.295012441999972, + 59.370869887000026 + ], + [ + 5.298477, + 59.145370501 + ], + [ + 5.175062500000024, + 59.17837449799998 + ], + [ + 5.302875500000027, + 59.481168001000015 + ], + [ + 5.534834, + 59.7320785 + ], + [ + 5.506673157000023, + 59.52538185899999 + ], + [ + 5.794665721, + 59.65094391500003 + ], + [ + 5.80379270899999, + 59.64938017399999 + ], + [ + 5.823972500000025, + 59.645922998 + ], + [ + 6.651835, + 59.711413 + ], + [ + 7.096287500000017, + 59.782777 + ], + [ + 7.214666500000021, + 59.672687 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 5.115073511999981, + 60.96571541499998 + ], + [ + 5.026263, + 61.01004050099999 + ], + [ + 5.426630526999986, + 61.04311930900002 + ], + [ + 5.394584, + 61.069965497 + ], + [ + 4.947169499999973, + 61.25885 + ], + [ + 5.209688823000022, + 61.334528406 + ], + [ + 4.977364500000022, + 61.41730899800001 + ], + [ + 5.843049, + 61.45913699800002 + ], + [ + 5.24131566599999, + 61.583933230000014 + ], + [ + 4.994847999, + 61.59115200100001 + ], + [ + 4.969778, + 61.72112249700001 + ], + [ + 6.846349, + 61.870303997 + ], + [ + 5.4584625, + 61.93935 + ], + [ + 5.089433, + 62.16728949999998 + ], + [ + 5.491458, + 62.01478750000001 + ], + [ + 5.6237655, + 62.06705450099997 + ], + [ + 5.405087499999979, + 62.1274295 + ], + [ + 6.3250655, + 62.06060050000002 + ], + [ + 5.931158, + 62.21788399799999 + ], + [ + 6.328697, + 62.37550749799999 + ], + [ + 6.653805499999976, + 62.19379449799999 + ], + [ + 6.573409500000025, + 62.54216 + ], + [ + 6.2564425, + 62.529735500000015 + ], + [ + 6.334281499999975, + 62.61331949800001 + ], + [ + 8.146601499999974, + 62.68827050099998 + ], + [ + 6.898579, + 62.909847501 + ], + [ + 7.3014915, + 63.01026149699999 + ], + [ + 7.450778500000013, + 62.90481949799999 + ], + [ + 8.11747, + 62.921828998000024 + ], + [ + 8.107145499000012, + 63.105423 + ], + [ + 8.764103, + 63.18451 + ], + [ + 9.4685455, + 63.17787400100002 + ], + [ + 9.463019499999973, + 62.848407001 + ], + [ + 8.919962, + 62.711771 + ], + [ + 9.24373, + 62.556077999000024 + ], + [ + 9.062062, + 62.37260849799998 + ], + [ + 7.349109, + 62.00768199700002 + ], + [ + 7.5138235, + 61.72736450000002 + ], + [ + 8.262332500000014, + 61.533979500999976 + ], + [ + 8.051171, + 61.23277650099999 + ], + [ + 8.251701, + 61.073943997000015 + ], + [ + 7.46964, + 60.675547498000014 + ], + [ + 7.732114500000023, + 60.520970499999976 + ], + [ + 7.488040500000011, + 60.09883849800002 + ], + [ + 7.096287500000017, + 59.782777 + ], + [ + 6.651835, + 59.711413 + ], + [ + 5.823972500000025, + 59.645922998 + ], + [ + 5.80379270899999, + 59.64938017399999 + ], + [ + 5.794665721, + 59.65094391500003 + ], + [ + 6.381009, + 59.874691 + ], + [ + 5.675114, + 59.848640499 + ], + [ + 5.994348, + 59.954563 + ], + [ + 6.0828945, + 60.191448 + ], + [ + 6.353219500000023, + 60.370498998000016 + ], + [ + 6.829082746999973, + 60.471445758000016 + ], + [ + 6.716949, + 60.520217996999975 + ], + [ + 6.0151285, + 60.269165 + ], + [ + 5.817266, + 59.983326 + ], + [ + 5.5750435, + 60.153873498999985 + ], + [ + 5.756293, + 60.399605 + ], + [ + 5.446748500000012, + 60.15643700099997 + ], + [ + 5.2010105, + 60.29023350199998 + ], + [ + 5.309116500000016, + 60.388206502 + ], + [ + 5.262637499999983, + 60.50583249699997 + ], + [ + 5.7384535, + 60.459213499999976 + ], + [ + 5.7344455, + 60.673576500000024 + ], + [ + 5.708317500000021, + 60.471111501 + ], + [ + 5.339822, + 60.541588 + ], + [ + 5.706546, + 60.759361497999976 + ], + [ + 5.280158, + 60.540760001000024 + ], + [ + 5.207727998999985, + 60.621887001 + ], + [ + 5.281049, + 60.632553 + ], + [ + 4.94567, + 60.809383500000024 + ], + [ + 5.469385499999987, + 60.659252 + ], + [ + 5.140299, + 60.84025250000002 + ], + [ + 5.115073511999981, + 60.96571541499998 + ] + ] + ], + [ + [ + [ + 5.396219498999983, + 59.711742501 + ], + [ + 5.183555500000011, + 59.57461550099998 + ], + [ + 5.0594595, + 59.854045998 + ], + [ + 5.179249, + 59.877666498999986 + ], + [ + 5.396219498999983, + 59.711742501 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 11.514355244, + 64.87855370800003 + ], + [ + 11.278464499999984, + 64.85742949899998 + ], + [ + 11.9609795, + 65.07714799799999 + ], + [ + 11.981972, + 65.07081549700001 + ], + [ + 12.0461065, + 65.06245 + ], + [ + 12.092824, + 65.0398255 + ], + [ + 12.187348499999985, + 65.00011149800002 + ], + [ + 12.182329, + 64.981381 + ], + [ + 14.325985, + 65.118916001 + ], + [ + 13.654257500000028, + 64.58034049899999 + ], + [ + 14.113869500000021, + 64.462484501 + ], + [ + 14.157109, + 64.195054497 + ], + [ + 13.967524500000025, + 64.00797 + ], + [ + 12.683565, + 63.9742235 + ], + [ + 12.149767, + 63.593946999000025 + ], + [ + 11.974581, + 63.269228 + ], + [ + 12.0524555, + 63.1834445 + ], + [ + 12.218231, + 63.00033250000001 + ], + [ + 12.056142, + 62.61191849900001 + ], + [ + 12.2546595, + 62.33102449699999 + ], + [ + 10.1969, + 62.68769350000002 + ], + [ + 9.792455, + 62.287932001 + ], + [ + 9.062062, + 62.37260849799998 + ], + [ + 9.24373, + 62.556077999000024 + ], + [ + 8.919962, + 62.711771 + ], + [ + 9.463019499999973, + 62.848407001 + ], + [ + 9.4685455, + 63.17787400100002 + ], + [ + 8.764103, + 63.18451 + ], + [ + 8.832189, + 63.20198000099998 + ], + [ + 8.490692, + 63.2775115 + ], + [ + 8.765663999000026, + 63.34213649899999 + ], + [ + 8.650367, + 63.400879 + ], + [ + 8.7551115, + 63.424341 + ], + [ + 9.0929175, + 63.287159 + ], + [ + 9.501772, + 63.39708699800002 + ], + [ + 9.249117, + 63.367828497 + ], + [ + 9.147209, + 63.48814000099998 + ], + [ + 9.753410499999973, + 63.645359000999974 + ], + [ + 9.714933499999972, + 63.615505000999974 + ], + [ + 9.977688, + 63.441615997999975 + ], + [ + 9.8231755, + 63.312244501 + ], + [ + 10.85359, + 63.43909349699999 + ], + [ + 10.941581, + 63.564289 + ], + [ + 10.627927, + 63.546741500999985 + ], + [ + 11.458975, + 63.80233750000002 + ], + [ + 11.0724775, + 63.858989501 + ], + [ + 11.501289499999984, + 64.005218501 + ], + [ + 11.222313, + 64.07421900100002 + ], + [ + 10.5912035, + 63.804355499999986 + ], + [ + 11.07041750000002, + 63.8419495 + ], + [ + 10.955013501, + 63.7456095 + ], + [ + 10.170315, + 63.52613449699999 + ], + [ + 9.8057985, + 63.626873 + ], + [ + 10.130084, + 63.75410449999998 + ], + [ + 9.529121499999974, + 63.71239849699998 + ], + [ + 10.010268949000022, + 64.04565076300003 + ], + [ + 10.63497412999999, + 64.39100241699998 + ], + [ + 10.548171, + 64.44136050100002 + ], + [ + 11.3407555, + 64.436919998 + ], + [ + 11.225456, + 64.31190500100001 + ], + [ + 11.7259625, + 64.584793 + ], + [ + 11.1820715, + 64.740906 + ], + [ + 11.514355244, + 64.87855370800003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 28.548399, + 70.967239501 + ], + [ + 27.855804499999977, + 70.43014549999998 + ], + [ + 28.510006, + 70.447929999 + ], + [ + 28.397211, + 70.542122001 + ], + [ + 28.96657349899999, + 70.884941 + ], + [ + 31.060808, + 70.28778850100002 + ], + [ + 28.73865071, + 70.15556738999999 + ], + [ + 28.575159, + 70.11865250099999 + ], + [ + 29.767906536, + 69.823490934 + ], + [ + 29.459511, + 69.64896400100002 + ], + [ + 30.839926, + 69.77580800099997 + ], + [ + 30.954538500000012, + 69.632432 + ], + [ + 30.085324500000013, + 69.65810450100003 + ], + [ + 30.1884235, + 69.56845750000002 + ], + [ + 28.92968, + 69.051905 + ], + [ + 28.8057925, + 69.111147 + ], + [ + 29.336974, + 69.47831050000002 + ], + [ + 27.984522, + 70.013965499 + ], + [ + 25.950607, + 69.6965505 + ], + [ + 25.702101, + 69.25366150100001 + ], + [ + 25.777502500000026, + 69.018279001 + ], + [ + 24.903199500000028, + 68.554591 + ], + [ + 22.374526, + 68.716667 + ], + [ + 21.9836115, + 69.07289350000002 + ], + [ + 21.2788215, + 69.31188399899997 + ], + [ + 20.548636499999986, + 69.05996850100001 + ], + [ + 20.0600475, + 69.04575900100002 + ], + [ + 20.3358725, + 68.80231250000003 + ], + [ + 19.921397, + 68.356013001 + ], + [ + 18.125925, + 68.53651599900002 + ], + [ + 18.151354, + 68.19879 + ], + [ + 17.89976150000001, + 67.969372 + ], + [ + 17.281524, + 68.118815 + ], + [ + 16.15800150000001, + 67.51915900099999 + ], + [ + 16.387759, + 67.04546249999999 + ], + [ + 15.3772265, + 66.48430399699998 + ], + [ + 15.453994500000022, + 66.345233501 + ], + [ + 14.516289, + 66.132579 + ], + [ + 14.6254765, + 65.81180849999998 + ], + [ + 14.325985, + 65.118916001 + ], + [ + 12.182329, + 64.981381 + ], + [ + 12.9642955, + 65.32212049999998 + ], + [ + 12.041082500000016, + 65.216194 + ], + [ + 12.292716, + 65.58846299800001 + ], + [ + 12.781976499999985, + 65.46252449999997 + ], + [ + 12.347975, + 65.627327 + ], + [ + 12.646986, + 65.81443799700003 + ], + [ + 12.666879418, + 65.92070801099999 + ], + [ + 12.3801345, + 65.894111 + ], + [ + 14.147304500000018, + 66.330467 + ], + [ + 13.0099535, + 66.191283999 + ], + [ + 13.562423500000023, + 66.304679997 + ], + [ + 12.990386999, + 66.348778 + ], + [ + 13.73341449999998, + 66.60917650099998 + ], + [ + 13.2072895, + 66.716881 + ], + [ + 14.000651, + 66.79788950099999 + ], + [ + 13.492176, + 66.94919650000003 + ], + [ + 14.01318550000002, + 66.961944501 + ], + [ + 14.0676185, + 67.161491501 + ], + [ + 14.511739499999976, + 67.207649 + ], + [ + 15.08839799899999, + 67.236534 + ], + [ + 15.433605, + 67.10498050000001 + ], + [ + 15.481187, + 67.1844635 + ], + [ + 15.162948498999981, + 67.329765 + ], + [ + 14.308716, + 67.263771 + ], + [ + 15.650709213000027, + 67.53825820899999 + ], + [ + 15.160784499999977, + 67.632698 + ], + [ + 15.855372499999987, + 67.7099 + ], + [ + 14.75716, + 67.80435949999998 + ], + [ + 16.001165500000013, + 67.99621600299997 + ], + [ + 15.526616, + 68.065216002 + ], + [ + 15.395943499999987, + 68.036521999 + ], + [ + 15.440778500000022, + 68.024948 + ], + [ + 15.4147835, + 67.99591049999998 + ], + [ + 15.275926500000025, + 68.050613 + ], + [ + 16.062347499, + 68.255936001 + ], + [ + 16.819980499999986, + 68.155219999 + ], + [ + 16.27568050000002, + 68.37313849999998 + ], + [ + 17.900738, + 68.417808 + ], + [ + 16.075683500000025, + 68.414055001 + ], + [ + 16.5795895, + 68.541367 + ], + [ + 17.685274, + 68.67411049999998 + ], + [ + 17.251898, + 68.75971199899999 + ], + [ + 17.805559, + 68.74999250000002 + ], + [ + 17.447077, + 68.90790550100002 + ], + [ + 18.166633499, + 69.1502 + ], + [ + 17.96954549899999, + 69.228561501 + ], + [ + 18.238685499999974, + 69.482642999 + ], + [ + 19.54748749999999, + 69.21487449900002 + ], + [ + 18.934316500000023, + 69.59994500099998 + ], + [ + 19.2743185, + 69.77920549999999 + ], + [ + 20.394979499999977, + 69.89038799899998 + ], + [ + 19.93026550000002, + 69.26666250099998 + ], + [ + 20.459503, + 69.76207749899999 + ], + [ + 21.325062, + 69.90923299899998 + ], + [ + 21.241577, + 70.00890349999997 + ], + [ + 22.140845, + 69.74519350100002 + ], + [ + 21.727436, + 70.05191050000002 + ], + [ + 21.19089, + 70.22124050000002 + ], + [ + 21.424858, + 70.22282400099999 + ], + [ + 21.47847727599998, + 70.200361853 + ], + [ + 21.493496359, + 70.19927205599998 + ], + [ + 21.56427, + 70.32338700100001 + ], + [ + 21.8320885, + 70.16875450100002 + ], + [ + 21.78227049999998, + 70.25872049999998 + ], + [ + 21.983658, + 70.32945249900001 + ], + [ + 22.96682, + 70.18936900099999 + ], + [ + 23.00179650000001, + 69.91750349900002 + ], + [ + 23.407093, + 69.96468349999998 + ], + [ + 23.52833, + 70.015915 + ], + [ + 23.132837, + 70.085571501 + ], + [ + 23.179638, + 70.216247501 + ], + [ + 23.246681500000022, + 70.248192 + ], + [ + 24.090675499999975, + 70.541496499 + ], + [ + 24.298256, + 70.68613450100003 + ], + [ + 24.236952, + 70.8358915 + ], + [ + 24.553296499999988, + 70.97564699899999 + ], + [ + 25.911754499999972, + 70.87564850000001 + ], + [ + 25.08653049999998, + 70.51461049900001 + ], + [ + 24.912155, + 70.096092 + ], + [ + 25.153381500000023, + 70.06489549999998 + ], + [ + 26.572368499999982, + 70.95436850099998 + ], + [ + 26.733936500000027, + 70.82489799899997 + ], + [ + 26.475652500000024, + 70.354866 + ], + [ + 27.032476499999973, + 70.48385599900001 + ], + [ + 26.951067, + 70.546791 + ], + [ + 27.7029875, + 70.80062100100002 + ], + [ + 27.1011425, + 70.93241899899999 + ], + [ + 27.66123, + 71.126999001 + ], + [ + 28.548399, + 70.967239501 + ] + ] + ], + [ + [ + [ + 16.005573, + 68.7555385 + ], + [ + 15.7227115, + 68.536804001 + ], + [ + 16.076727, + 68.74844349900002 + ], + [ + 16.302828, + 68.715187001 + ], + [ + 16.123302500000023, + 68.844161999 + ], + [ + 16.409397, + 68.85786449900002 + ], + [ + 16.45695199900001, + 68.55735799899998 + ], + [ + 14.98062149899999, + 68.27394850000002 + ], + [ + 15.716285, + 68.693619001 + ], + [ + 15.464602500000012, + 68.753418001 + ], + [ + 15.619679500000018, + 68.95270549999998 + ], + [ + 15.959016500000018, + 68.88904549900002 + ], + [ + 15.963360495000018, + 68.876588513 + ], + [ + 15.988082191999979, + 68.80569573499997 + ], + [ + 16.005573, + 68.7555385 + ] + ] + ], + [ + [ + [ + 23.4573385, + 70.76512150000002 + ], + [ + 22.798172, + 70.51382500099999 + ], + [ + 21.92859249999998, + 70.64286049999998 + ], + [ + 23.4573385, + 70.76512150000002 + ] + ] + ], + [ + [ + [ + 18.08016950000001, + 69.42690300100003 + ], + [ + 16.782012999000017, + 69.0575945 + ], + [ + 17.658531, + 69.48767099899999 + ], + [ + 18.08016950000001, + 69.42690300100003 + ] + ] + ], + [ + [ + [ + 15.41872, + 68.7030565 + ], + [ + 14.368575998999972, + 68.684494 + ], + [ + 15.317963500000019, + 68.917221 + ], + [ + 15.253855, + 68.75589000100001 + ], + [ + 15.41872, + 68.7030565 + ] + ] + ], + [ + [ + [ + 15.16504550000002, + 68.44262699900003 + ], + [ + 14.206444499999975, + 68.17415599899999 + ], + [ + 14.4163855, + 68.393623499 + ], + [ + 15.16504550000002, + 68.44262699900003 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 20.432815, + 51.33940499900001 + ], + [ + 19.993847, + 51.18395400100002 + ], + [ + 20.0394705, + 50.990206496999974 + ], + [ + 19.74706, + 50.86597000099999 + ], + [ + 19.243142499999976, + 51.036844497 + ], + [ + 18.672954499000014, + 51.056902501000025 + ], + [ + 18.1636815, + 51.172516997 + ], + [ + 18.0745215, + 51.349915001 + ], + [ + 18.47196550000001, + 51.851005499 + ], + [ + 18.685665500000027, + 51.82100299799998 + ], + [ + 18.827809, + 52.06418800099999 + ], + [ + 19.04712, + 52.33280399900002 + ], + [ + 19.289184499999976, + 52.39271249799998 + ], + [ + 19.936101, + 52.29973349900001 + ], + [ + 20.658493, + 51.724147999000024 + ], + [ + 20.385006, + 51.641610001 + ], + [ + 20.4248905, + 51.61161950000002 + ], + [ + 20.528847499999983, + 51.46291799699998 + ], + [ + 20.432815, + 51.33940499900001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 23.128409, + 52.28784150000001 + ], + [ + 22.622901499000022, + 52.018744497 + ], + [ + 21.889174500000024, + 51.973184 + ], + [ + 21.879981, + 51.69363149899999 + ], + [ + 21.6155425, + 51.617562 + ], + [ + 21.87317600099999, + 51.474913499000024 + ], + [ + 21.802998, + 51.072078998999984 + ], + [ + 21.630164499999978, + 51.06338899799999 + ], + [ + 20.432815, + 51.33940499900001 + ], + [ + 20.528847499999983, + 51.46291799699998 + ], + [ + 20.4248905, + 51.61161950000002 + ], + [ + 20.385006, + 51.641610001 + ], + [ + 20.658493, + 51.724147999000024 + ], + [ + 19.936101, + 52.29973349900001 + ], + [ + 19.289184499999976, + 52.39271249799998 + ], + [ + 19.522742999, + 52.74920049799999 + ], + [ + 19.444664, + 52.93904250000003 + ], + [ + 19.684806, + 52.963038998 + ], + [ + 19.7615955, + 53.15179649800001 + ], + [ + 20.411137, + 53.214165 + ], + [ + 20.675953999, + 53.269529498 + ], + [ + 21.55169, + 53.478128001000016 + ], + [ + 21.598199912999974, + 53.48018197099998 + ], + [ + 21.735427500000014, + 53.312727999 + ], + [ + 21.694427500000018, + 53.13809399799999 + ], + [ + 22.453771500000016, + 52.78823849999998 + ], + [ + 22.408589, + 52.60968999900001 + ], + [ + 22.58041350000002, + 52.393157997 + ], + [ + 23.128409, + 52.28784150000001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 21.208831499999974, + 50.354897499 + ], + [ + 21.150439, + 49.976484500000026 + ], + [ + 21.29714949999999, + 49.842864 + ], + [ + 21.241772, + 49.776104499999974 + ], + [ + 21.39771250000001, + 49.43379399899999 + ], + [ + 20.9237225, + 49.29623449899998 + ], + [ + 20.6149395, + 49.417832998999984 + ], + [ + 19.883929500000022, + 49.204176999000026 + ], + [ + 19.467386499999975, + 49.613767 + ], + [ + 19.414951499999972, + 49.775265 + ], + [ + 19.09321, + 49.95665899699998 + ], + [ + 19.253810499999986, + 50.134193 + ], + [ + 19.489045499999975, + 50.39702749999998 + ], + [ + 19.8445375, + 50.43419549999999 + ], + [ + 19.949966500000016, + 50.50478250100002 + ], + [ + 20.681539, + 50.20587549700002 + ], + [ + 21.208831499999974, + 50.354897499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 19.74706, + 50.86597000099999 + ], + [ + 19.71294949999998, + 50.72915600099998 + ], + [ + 19.949966500000016, + 50.50478250100002 + ], + [ + 19.8445375, + 50.43419549999999 + ], + [ + 19.489045499999975, + 50.39702749999998 + ], + [ + 19.253810499999986, + 50.134193 + ], + [ + 19.09321, + 49.95665899699998 + ], + [ + 19.414951499999972, + 49.775265 + ], + [ + 19.467386499999975, + 49.613767 + ], + [ + 19.153403, + 49.40377700099998 + ], + [ + 18.851551, + 49.51718900100002 + ], + [ + 18.575724, + 49.910423 + ], + [ + 18.035060999, + 50.06577199899999 + ], + [ + 18.059780499999988, + 50.17465249999998 + ], + [ + 18.425866499999984, + 50.24896549800002 + ], + [ + 18.607473500000026, + 50.550011 + ], + [ + 18.61587750000001, + 50.85358750099999 + ], + [ + 18.672954499000014, + 51.056902501000025 + ], + [ + 19.243142499999976, + 51.036844497 + ], + [ + 19.74706, + 50.86597000099999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 23.178338, + 52.28314099800002 + ], + [ + 23.653733, + 52.072494999000014 + ], + [ + 23.529021, + 51.731750998999985 + ], + [ + 23.617665999, + 51.507613999 + ], + [ + 23.709221, + 51.27764849800002 + ], + [ + 24.1457825, + 50.869376999 + ], + [ + 24.0345575, + 50.44484350099998 + ], + [ + 23.547642, + 50.251602 + ], + [ + 23.387574500000028, + 50.405392999000014 + ], + [ + 22.638222, + 50.303077497 + ], + [ + 22.437193, + 50.39971749900002 + ], + [ + 22.5862, + 50.477348498000026 + ], + [ + 22.519738, + 50.583233499000016 + ], + [ + 21.8643035, + 50.80270649900001 + ], + [ + 21.802998, + 51.072078998999984 + ], + [ + 21.87317600099999, + 51.474913499000024 + ], + [ + 21.6155425, + 51.617562 + ], + [ + 21.879981, + 51.69363149899999 + ], + [ + 21.889174500000024, + 51.973184 + ], + [ + 22.622901499000022, + 52.018744497 + ], + [ + 23.128409, + 52.28784150000001 + ], + [ + 23.178338, + 52.28314099800002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 23.547642, + 50.251602 + ], + [ + 22.6861495, + 49.57316549699999 + ], + [ + 22.894087, + 49.016692998999986 + ], + [ + 22.56684, + 49.08837749899999 + ], + [ + 21.39771250000001, + 49.43379399899999 + ], + [ + 21.241772, + 49.776104499999974 + ], + [ + 21.29714949999999, + 49.842864 + ], + [ + 21.150439, + 49.976484500000026 + ], + [ + 21.208831499999974, + 50.354897499 + ], + [ + 21.8643035, + 50.80270649900001 + ], + [ + 22.519738, + 50.583233499000016 + ], + [ + 22.5862, + 50.477348498000026 + ], + [ + 22.437193, + 50.39971749900002 + ], + [ + 22.638222, + 50.303077497 + ], + [ + 23.387574500000028, + 50.405392999000014 + ], + [ + 23.547642, + 50.251602 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 21.802998, + 51.072078998999984 + ], + [ + 21.8643035, + 50.80270649900001 + ], + [ + 21.208831499999974, + 50.354897499 + ], + [ + 20.681539, + 50.20587549700002 + ], + [ + 19.949966500000016, + 50.50478250100002 + ], + [ + 19.71294949999998, + 50.72915600099998 + ], + [ + 19.74706, + 50.86597000099999 + ], + [ + 20.0394705, + 50.990206496999974 + ], + [ + 19.993847, + 51.18395400100002 + ], + [ + 20.432815, + 51.33940499900001 + ], + [ + 21.630164499999978, + 51.06338899799999 + ], + [ + 21.802998, + 51.072078998999984 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 23.51465, + 53.95655999799999 + ], + [ + 23.588702, + 53.69592849700001 + ], + [ + 23.918259, + 53.157621999000014 + ], + [ + 23.916239, + 52.904812 + ], + [ + 23.93864, + 52.712916001 + ], + [ + 23.178338, + 52.28314099800002 + ], + [ + 23.128409, + 52.28784150000001 + ], + [ + 22.58041350000002, + 52.393157997 + ], + [ + 22.408589, + 52.60968999900001 + ], + [ + 22.453771500000016, + 52.78823849999998 + ], + [ + 21.694427500000018, + 53.13809399799999 + ], + [ + 21.735427500000014, + 53.312727999 + ], + [ + 21.598199912999974, + 53.48018197099998 + ], + [ + 22.135728, + 53.544539998 + ], + [ + 22.703502500000013, + 53.767354496999985 + ], + [ + 22.782806, + 53.91548949899999 + ], + [ + 22.476556500000015, + 54.20130550099998 + ], + [ + 22.792095500000016, + 54.36335899699998 + ], + [ + 23.32149850000002, + 54.25332599799998 + ], + [ + 23.51465, + 53.95655999799999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 17.390653, + 53.490964 + ], + [ + 17.438793499999974, + 53.26751450099999 + ], + [ + 17.3015565, + 52.994803 + ], + [ + 17.509582500000022, + 52.917767997 + ], + [ + 17.458523, + 52.73894800099998 + ], + [ + 18.377150500000027, + 52.53746350099999 + ], + [ + 19.04712, + 52.33280399900002 + ], + [ + 18.827809, + 52.06418800099999 + ], + [ + 18.685665500000027, + 51.82100299799998 + ], + [ + 18.47196550000001, + 51.851005499 + ], + [ + 18.0745215, + 51.349915001 + ], + [ + 18.1636815, + 51.172516997 + ], + [ + 17.939456, + 51.10886499899999 + ], + [ + 17.795269500000018, + 51.19414600099998 + ], + [ + 17.556245, + 51.58430149899999 + ], + [ + 17.257433, + 51.64284300100002 + ], + [ + 16.828372, + 51.57218799899999 + ], + [ + 16.416191, + 51.784865 + ], + [ + 15.833296, + 52.11112300100001 + ], + [ + 15.880810499, + 52.29042949900003 + ], + [ + 15.776346499999988, + 52.63786950100001 + ], + [ + 15.946907, + 52.75489599799999 + ], + [ + 15.962497499999984, + 53.041380996999976 + ], + [ + 16.3173, + 53.04395249999999 + ], + [ + 16.6969115, + 53.301046 + ], + [ + 16.45421, + 53.48847550099998 + ], + [ + 16.892248, + 53.655868999 + ], + [ + 17.390653, + 53.490964 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.892248, + 53.655868999 + ], + [ + 16.45421, + 53.48847550099998 + ], + [ + 16.6969115, + 53.301046 + ], + [ + 16.3173, + 53.04395249999999 + ], + [ + 15.962497499999984, + 53.041380996999976 + ], + [ + 14.904187, + 52.883909499000026 + ], + [ + 14.565063, + 52.624497 + ], + [ + 14.436438, + 52.679900498999984 + ], + [ + 14.156692, + 52.89559099899998 + ], + [ + 14.143658, + 52.9613685 + ], + [ + 14.412157, + 53.329635998000015 + ], + [ + 14.267542, + 53.69780649699999 + ], + [ + 14.619581499999981, + 53.64978399900002 + ], + [ + 14.573513, + 53.849196999000014 + ], + [ + 14.2130775, + 53.86647949899998 + ], + [ + 14.226302, + 53.92865299800002 + ], + [ + 15.388074500000016, + 54.158907 + ], + [ + 16.699085, + 54.569247001 + ], + [ + 16.858620499999972, + 54.38257649799999 + ], + [ + 16.792764499999976, + 53.98555049999999 + ], + [ + 16.982053499000017, + 53.904909499999974 + ], + [ + 16.892248, + 53.655868999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.676575500000013, + 46.40582549700002 + ], + [ + 22.748716, + 46.35120749999999 + ], + [ + 23.234864, + 46.03050199699999 + ], + [ + 23.59727049999998, + 45.47347149900003 + ], + [ + 23.59064, + 45.353072499 + ], + [ + 22.68624649999998, + 45.25796099899998 + ], + [ + 22.656632, + 45.10816699700001 + ], + [ + 22.418032, + 44.75685749899998 + ], + [ + 22.207799, + 44.816878497 + ], + [ + 22.154162, + 44.59519949700001 + ], + [ + 22.016132500000026, + 44.599202499 + ], + [ + 22.012350500000025, + 44.60231849899998 + ], + [ + 21.35847, + 44.82161199699999 + ], + [ + 21.560126500000024, + 44.8890065 + ], + [ + 21.47917849999999, + 45.19302750100002 + ], + [ + 21.016575, + 45.324627497999984 + ], + [ + 20.662833, + 45.794115998999985 + ], + [ + 20.264296, + 46.1263735 + ], + [ + 20.705303500000014, + 46.160937499 + ], + [ + 20.7756, + 46.27590999900002 + ], + [ + 21.103170499999976, + 46.26259049700002 + ], + [ + 21.441398, + 46.651467 + ], + [ + 22.676575500000013, + 46.40582549700002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 17.572396, + 58.95085249800002 + ], + [ + 17.24537300100002, + 59.204196997999986 + ], + [ + 17.41612650000002, + 59.38413999800002 + ], + [ + 17.629102499999988, + 59.693004496000015 + ], + [ + 18.3647995, + 59.864387497 + ], + [ + 18.51326549999999, + 60.14808899799999 + ], + [ + 18.838097, + 60.110722501 + ], + [ + 19.0854185, + 59.75826449700003 + ], + [ + 18.058382209, + 59.37904236600002 + ], + [ + 18.138552267000023, + 59.33231602400002 + ], + [ + 18.70854650000001, + 59.29002999800002 + ], + [ + 17.991549570000018, + 58.96697999000003 + ], + [ + 17.868635241999982, + 58.847063186000014 + ], + [ + 17.850585, + 58.90182599899998 + ], + [ + 17.827534277999973, + 58.88462476199999 + ], + [ + 17.605396633, + 58.94228633099999 + ], + [ + 17.592441408000013, + 58.945649194 + ], + [ + 17.572396, + 58.95085249800002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 18.51326549999999, + 60.14808899799999 + ], + [ + 18.3647995, + 59.864387497 + ], + [ + 17.629102499999988, + 59.693004496000015 + ], + [ + 17.41612650000002, + 59.38413999800002 + ], + [ + 17.24537300100002, + 59.204196997999986 + ], + [ + 17.572396, + 58.95085249800002 + ], + [ + 16.75066350100002, + 58.626932001 + ], + [ + 16.218891636000023, + 58.625096370999984 + ], + [ + 16.948542, + 58.4797815 + ], + [ + 16.414471, + 58.47595449900001 + ], + [ + 16.927406, + 58.335789498 + ], + [ + 16.627013499999975, + 58.356352500000014 + ], + [ + 16.854670499, + 58.172553497000024 + ], + [ + 16.666683499999976, + 57.99607649799998 + ], + [ + 16.239588, + 58.13493349999999 + ], + [ + 15.94231399900002, + 57.803287497999975 + ], + [ + 15.421051, + 57.704879498000025 + ], + [ + 15.1283585, + 57.716312501 + ], + [ + 14.982714, + 58.1491125 + ], + [ + 14.41671, + 58.187240497 + ], + [ + 14.778936499, + 58.64599250100002 + ], + [ + 14.295995, + 59.01277950100001 + ], + [ + 14.437155500000017, + 60.02616099699998 + ], + [ + 15.42209250000002, + 59.854747499999974 + ], + [ + 15.801567, + 60.179103499 + ], + [ + 16.703831, + 60.195720498000014 + ], + [ + 17.192478, + 60.300712499999975 + ], + [ + 17.370218, + 60.654461500000025 + ], + [ + 17.675121999, + 60.50564799699998 + ], + [ + 17.9892855, + 60.6041095 + ], + [ + 18.617636, + 60.23238250000003 + ], + [ + 18.310146499999973, + 60.31662549999999 + ], + [ + 18.51326549999999, + 60.14808899799999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 15.1283585, + 57.716312501 + ], + [ + 15.421051, + 57.704879498000025 + ], + [ + 15.94231399900002, + 57.803287497999975 + ], + [ + 16.239588, + 58.13493349999999 + ], + [ + 16.666683499999976, + 57.99607649799998 + ], + [ + 16.690222393, + 57.99604851399999 + ], + [ + 16.73475643099999, + 57.995995569 + ], + [ + 16.813461, + 57.995902 + ], + [ + 16.727634500000022, + 57.44355299799997 + ], + [ + 16.0498715, + 56.32188850099999 + ], + [ + 15.58637349999998, + 56.48294 + ], + [ + 15.363503499999979, + 56.48237599700002 + ], + [ + 14.514669500000025, + 56.46003699800002 + ], + [ + 13.462636499999974, + 56.42818850100002 + ], + [ + 13.298661, + 56.82360450099998 + ], + [ + 13.681201, + 56.97211450100002 + ], + [ + 13.100760499999978, + 57.145515499 + ], + [ + 13.688058, + 57.558208501000024 + ], + [ + 13.772147, + 58.04856099699998 + ], + [ + 14.41671, + 58.187240497 + ], + [ + 14.982714, + 58.1491125 + ], + [ + 15.1283585, + 57.716312501 + ] + ] + ], + [ + [ + [ + 18.711624, + 57.24468649800002 + ], + [ + 18.340005500000018, + 57.07232799899998 + ], + [ + 18.091156, + 57.259374001000026 + ], + [ + 18.106193500000018, + 57.53464150100001 + ], + [ + 18.777192500000012, + 57.86741700099998 + ], + [ + 19.097435, + 57.819173001000024 + ], + [ + 18.810876, + 57.70597550100001 + ], + [ + 18.76146749999998, + 57.469703501000026 + ], + [ + 18.917816500000015, + 57.403347499 + ], + [ + 18.711624, + 57.24468649800002 + ] + ] + ], + [ + [ + [ + 17.07371999899999, + 57.179024001000016 + ], + [ + 16.400671, + 56.19580699699998 + ], + [ + 16.413673, + 56.58997449999998 + ], + [ + 16.959014, + 57.29136349999999 + ], + [ + 17.07680430900001, + 57.355879516000016 + ], + [ + 17.07371999899999, + 57.179024001000016 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 14.5651755, + 46.37245349699998 + ], + [ + 14.565212, + 46.367696998999975 + ], + [ + 14.908764500000018, + 46.207565998 + ], + [ + 14.711757499999976, + 46.07792999899999 + ], + [ + 14.948575, + 45.97861049699998 + ], + [ + 14.564807499999972, + 45.79146199899998 + ], + [ + 14.129577499999982, + 45.86949899899997 + ], + [ + 14.0423715, + 45.76135899899998 + ], + [ + 14.11819650000001, + 45.48123899699999 + ], + [ + 14.109059, + 45.48245849699998 + ], + [ + 13.583067, + 45.477409997 + ], + [ + 13.7228235, + 45.59472549700001 + ], + [ + 13.9186565, + 45.63351749899999 + ], + [ + 13.596243, + 45.807937501000026 + ], + [ + 13.597145, + 45.81952250099999 + ], + [ + 13.496938999, + 46.051334999 + ], + [ + 13.66434750000002, + 46.177549999 + ], + [ + 13.3754925, + 46.29823249899999 + ], + [ + 13.684032, + 46.437472501 + ], + [ + 13.714184999, + 46.52270349999998 + ], + [ + 14.434500500000013, + 46.442943501 + ], + [ + 14.5651755, + 46.37245349699998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 17.247427500000015, + 48.01200899899999 + ], + [ + 17.1607975, + 48.006656501 + ], + [ + 17.066741, + 48.11868149899999 + ], + [ + 16.976203, + 48.172244498 + ], + [ + 16.851106, + 48.43863500100002 + ], + [ + 16.949778, + 48.535791999000025 + ], + [ + 17.235799, + 48.567409500999986 + ], + [ + 17.477537, + 48.3525785 + ], + [ + 17.529213, + 48.19649750000002 + ], + [ + 17.247427500000015, + 48.01200899899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 19.0143225, + 48.077736499000025 + ], + [ + 18.928392, + 48.056832499 + ], + [ + 18.7548155, + 47.975082499 + ], + [ + 18.848478, + 47.81822800100002 + ], + [ + 17.893923, + 47.739456999000026 + ], + [ + 17.70543650000002, + 47.75899249899999 + ], + [ + 17.247427500000015, + 48.01200899899999 + ], + [ + 17.529213, + 48.19649750000002 + ], + [ + 17.477537, + 48.3525785 + ], + [ + 17.235799, + 48.567409500999986 + ], + [ + 16.949778, + 48.535791999000025 + ], + [ + 16.940278, + 48.61724549899998 + ], + [ + 17.2016625, + 48.878028997 + ], + [ + 17.3967255, + 48.81334999799998 + ], + [ + 17.64693, + 48.85426599800002 + ], + [ + 18.322436, + 49.315059 + ], + [ + 18.826351, + 48.744058999 + ], + [ + 18.478677, + 48.548603997999976 + ], + [ + 19.062313, + 48.188361499999985 + ], + [ + 19.0143225, + 48.077736499000025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 19.883929500000022, + 49.204176999000026 + ], + [ + 19.992254499000012, + 48.90749999899998 + ], + [ + 20.2674505, + 48.874073001 + ], + [ + 20.1822955, + 48.728225 + ], + [ + 20.463937, + 48.463967 + ], + [ + 20.051879, + 48.16770399699999 + ], + [ + 19.0143225, + 48.077736499000025 + ], + [ + 19.062313, + 48.188361499999985 + ], + [ + 18.478677, + 48.548603997999976 + ], + [ + 18.826351, + 48.744058999 + ], + [ + 18.322436, + 49.315059 + ], + [ + 18.4035955, + 49.39674549900002 + ], + [ + 18.851551, + 49.51718900100002 + ], + [ + 19.153403, + 49.40377700099998 + ], + [ + 19.467386499999975, + 49.613767 + ], + [ + 19.883929500000022, + 49.204176999000026 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 22.56684, + 49.08837749899999 + ], + [ + 22.382817499999987, + 48.86226399899999 + ], + [ + 22.155306, + 48.403396499 + ], + [ + 22.121077500000013, + 48.378311499 + ], + [ + 21.721957, + 48.351050499 + ], + [ + 21.440056, + 48.58523299900003 + ], + [ + 20.463937, + 48.463967 + ], + [ + 20.1822955, + 48.728225 + ], + [ + 20.2674505, + 48.874073001 + ], + [ + 19.992254499000012, + 48.90749999899998 + ], + [ + 19.883929500000022, + 49.204176999000026 + ], + [ + 20.6149395, + 49.417832998999984 + ], + [ + 20.9237225, + 49.29623449899998 + ], + [ + 21.39771250000001, + 49.43379399899999 + ], + [ + 22.56684, + 49.08837749899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 29.0726335, + 41.12454049899998 + ], + [ + 28.824152, + 40.954229499 + ], + [ + 27.99110250000001, + 41.018344997999975 + ], + [ + 28.181659498999977, + 41.564058999 + ], + [ + 29.1158845, + 41.228910498 + ], + [ + 29.037527, + 41.15583999900002 + ], + [ + 29.0726335, + 41.12454049899998 + ] + ] + ], + [ + [ + [ + 29.849114, + 41.064824498 + ], + [ + 29.342517499999985, + 40.807657499000015 + ], + [ + 29.031469500000014, + 40.967085 + ], + [ + 29.08727049999999, + 41.178521999 + ], + [ + 29.265264, + 41.230552 + ], + [ + 29.865624500000024, + 41.143447498 + ], + [ + 29.849114, + 41.064824498 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 28.03551249999998, + 41.983079498999984 + ], + [ + 28.152973, + 41.57896249700002 + ], + [ + 28.181659498999977, + 41.564058999 + ], + [ + 27.99110250000001, + 41.018344997999975 + ], + [ + 27.5128535, + 40.974729497 + ], + [ + 26.96865150000002, + 40.553368998999986 + ], + [ + 26.962811, + 40.667037999 + ], + [ + 26.773845, + 40.741130999 + ], + [ + 26.734886500000016, + 40.64293299799999 + ], + [ + 26.151155500000016, + 40.5893155 + ], + [ + 26.032758, + 40.730256999 + ], + [ + 26.291015500000015, + 40.93188349899998 + ], + [ + 26.321652, + 41.250406499 + ], + [ + 26.628431499999976, + 41.345533499 + ], + [ + 26.6001205, + 41.60119899799997 + ], + [ + 26.357879, + 41.71110449899999 + ], + [ + 26.561544500000025, + 41.92627349899999 + ], + [ + 26.9492285, + 42.00021349899998 + ], + [ + 27.059650499999975, + 42.08833699799999 + ], + [ + 27.559395, + 41.90478149699999 + ], + [ + 28.03551249999998, + 41.983079498999984 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + 28.164779, + 40.395613 + ], + [ + 28.06755049999998, + 40.253133999 + ], + [ + 28.2650375, + 39.870233998 + ], + [ + 28.968574, + 39.60067749900003 + ], + [ + 28.885427, + 39.372048998000025 + ], + [ + 28.597988, + 39.280636 + ], + [ + 28.652546500000028, + 39.14736849899998 + ], + [ + 28.15897, + 39.05698399900001 + ], + [ + 27.800632, + 39.313108 + ], + [ + 27.381316, + 39.35274650100001 + ], + [ + 26.763921, + 39.175209999 + ], + [ + 26.671144500000025, + 39.279348497 + ], + [ + 26.950548500000025, + 39.55996849899998 + ], + [ + 26.618685, + 39.547879498999976 + ], + [ + 26.062643, + 39.47949799899999 + ], + [ + 26.179243, + 39.99143399799999 + ], + [ + 26.7568455, + 40.40379899800001 + ], + [ + 27.31992150000002, + 40.433412498 + ], + [ + 27.5062805, + 40.30467799899998 + ], + [ + 27.879064500000027, + 40.372956998 + ], + [ + 27.753523, + 40.528421498 + ], + [ + 28.016809500000022, + 40.447443 + ], + [ + 28.164779, + 40.395613 + ] + ] + ], + [ + [ + [ + 26.96865150000002, + 40.553368998999986 + ], + [ + 26.165872499999978, + 40.052561 + ], + [ + 26.218675500000018, + 40.319448497 + ], + [ + 26.83819749999998, + 40.58582499900001 + ], + [ + 26.734886500000016, + 40.64293299799999 + ], + [ + 26.773845, + 40.741130999 + ], + [ + 26.962811, + 40.667037999 + ], + [ + 26.96865150000002, + 40.553368998999986 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 28.4426095, + 38.104661498999974 + ], + [ + 28.285376, + 38.110739498999976 + ], + [ + 27.264569, + 37.87504849800001 + ], + [ + 26.757936500000028, + 38.22147949999999 + ], + [ + 26.5912, + 38.10275049799998 + ], + [ + 26.281446500000015, + 38.26644349899999 + ], + [ + 26.344708121999986, + 38.485118011 + ], + [ + 26.348637239000027, + 38.49869967 + ], + [ + 26.397398, + 38.66724949899998 + ], + [ + 26.6252955, + 38.52710550099999 + ], + [ + 26.674020499999983, + 38.311987 + ], + [ + 27.167742, + 38.44041999900003 + ], + [ + 26.73378550000001, + 38.65347099899998 + ], + [ + 27.06627450000002, + 38.87722599799997 + ], + [ + 26.763921, + 39.175209999 + ], + [ + 27.381316, + 39.35274650100001 + ], + [ + 27.4262905, + 38.944966498999975 + ], + [ + 27.101313499000014, + 38.77824549799999 + ], + [ + 27.26010150000002, + 38.548467501 + ], + [ + 28.286419500000022, + 38.31971599899998 + ], + [ + 28.4426095, + 38.104661498999974 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 29.852119, + 37.75228549899998 + ], + [ + 29.500381, + 37.618871997999975 + ], + [ + 29.60653050000002, + 37.395360998 + ], + [ + 29.341447, + 37.006848998 + ], + [ + 29.71326449899999, + 36.956309498999985 + ], + [ + 29.637207, + 36.669686001 + ], + [ + 29.2605615, + 36.30439899800001 + ], + [ + 29.102026, + 36.38672049799999 + ], + [ + 29.103811, + 36.67034349800002 + ], + [ + 28.928788999, + 36.754858001 + ], + [ + 28.851038, + 36.662084499 + ], + [ + 28.27040649999998, + 36.85247999799998 + ], + [ + 27.979345500000022, + 36.553571498 + ], + [ + 28.131860500000016, + 36.793966501 + ], + [ + 27.374422, + 36.685484 + ], + [ + 28.032835, + 36.787759999 + ], + [ + 28.330560499, + 37.033395498 + ], + [ + 27.565542, + 36.977285499 + ], + [ + 27.4248715, + 37.03574199799999 + ], + [ + 27.264269, + 36.964120998 + ], + [ + 27.32292, + 37.15848349800001 + ], + [ + 27.47090350000002, + 37.08077799900002 + ], + [ + 27.611025, + 37.257513 + ], + [ + 27.404363, + 37.368095 + ], + [ + 27.424582461, + 37.407003472999975 + ], + [ + 27.419004802000018, + 37.41190175600002 + ], + [ + 27.202436499999976, + 37.35082449999999 + ], + [ + 27.21665, + 37.59111199900002 + ], + [ + 27.003069, + 37.65979599899998 + ], + [ + 27.234331, + 37.72418399899999 + ], + [ + 27.264569, + 37.87504849800001 + ], + [ + 28.285376, + 38.110739498999976 + ], + [ + 28.4426095, + 38.104661498999974 + ], + [ + 28.616089, + 38.089585999 + ], + [ + 28.847341500000027, + 38.240428501 + ], + [ + 29.580195, + 38.246578499 + ], + [ + 29.75570349999998, + 38.484307496999975 + ], + [ + 30.027253499999972, + 38.21467949999999 + ], + [ + 29.65392250000002, + 37.960175499 + ], + [ + 29.852119, + 37.75228549899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 31.6197325, + 39.10305549899999 + ], + [ + 31.621331, + 38.61994749799999 + ], + [ + 31.233349499999974, + 38.409972998 + ], + [ + 30.986741, + 38.466414499 + ], + [ + 30.039979500000015, + 37.752413999 + ], + [ + 29.852119, + 37.75228549899998 + ], + [ + 29.65392250000002, + 37.960175499 + ], + [ + 30.027253499999972, + 38.21467949999999 + ], + [ + 29.75570349999998, + 38.484307496999975 + ], + [ + 29.580195, + 38.246578499 + ], + [ + 28.847341500000027, + 38.240428501 + ], + [ + 28.616089, + 38.089585999 + ], + [ + 28.4426095, + 38.104661498999974 + ], + [ + 28.286419500000022, + 38.31971599899998 + ], + [ + 27.26010150000002, + 38.548467501 + ], + [ + 27.101313499000014, + 38.77824549799999 + ], + [ + 27.4262905, + 38.944966498999975 + ], + [ + 27.381316, + 39.35274650100001 + ], + [ + 27.800632, + 39.313108 + ], + [ + 28.15897, + 39.05698399900001 + ], + [ + 28.652546500000028, + 39.14736849899998 + ], + [ + 28.597988, + 39.280636 + ], + [ + 28.885427, + 39.372048998000025 + ], + [ + 28.968574, + 39.60067749900003 + ], + [ + 29.1940935, + 39.600573998000016 + ], + [ + 29.396933, + 39.90101249999998 + ], + [ + 29.74218350000001, + 39.871334 + ], + [ + 29.760535, + 39.71012349799997 + ], + [ + 30.0601345, + 39.658641 + ], + [ + 30.355477, + 39.49900499900002 + ], + [ + 30.429491499999983, + 39.21761249899998 + ], + [ + 30.741455499999972, + 39.126772999000025 + ], + [ + 31.192543, + 39.27911049800002 + ], + [ + 31.6197325, + 39.10305549899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 30.82533, + 40.12578449900002 + ], + [ + 31.676844, + 40.035240500999976 + ], + [ + 32.069824, + 39.27607099800002 + ], + [ + 31.8153175, + 39.128693499 + ], + [ + 31.6197325, + 39.10305549899999 + ], + [ + 31.192543, + 39.27911049800002 + ], + [ + 30.741455499999972, + 39.126772999000025 + ], + [ + 30.429491499999983, + 39.21761249899998 + ], + [ + 30.355477, + 39.49900499900002 + ], + [ + 30.0601345, + 39.658641 + ], + [ + 29.760535, + 39.71012349799997 + ], + [ + 29.74218350000001, + 39.871334 + ], + [ + 29.396933, + 39.90101249999998 + ], + [ + 29.1940935, + 39.600573998000016 + ], + [ + 28.968574, + 39.60067749900003 + ], + [ + 28.2650375, + 39.870233998 + ], + [ + 28.06755049999998, + 40.253133999 + ], + [ + 28.164779, + 40.395613 + ], + [ + 29.154478, + 40.425374998999985 + ], + [ + 28.991232500000024, + 40.46627349800002 + ], + [ + 29.4102205, + 40.550392499 + ], + [ + 29.924952, + 40.551626499 + ], + [ + 29.964417, + 40.522084499000016 + ], + [ + 30.521932, + 40.29434150100002 + ], + [ + 30.650090499999976, + 40.14473599899998 + ], + [ + 30.82533, + 40.12578449900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 31.2956565, + 41.11632 + ], + [ + 31.75363, + 41.005629999 + ], + [ + 32.134024, + 41.030704 + ], + [ + 32.560043, + 40.807477499000015 + ], + [ + 32.554816, + 40.691943998 + ], + [ + 31.911622, + 40.328740498 + ], + [ + 31.128547500000025, + 40.36527999899999 + ], + [ + 30.82533, + 40.12578449900002 + ], + [ + 30.650090499999976, + 40.14473599899998 + ], + [ + 30.521932, + 40.29434150100002 + ], + [ + 29.964417, + 40.522084499000016 + ], + [ + 29.924952, + 40.551626499 + ], + [ + 29.4102205, + 40.550392499 + ], + [ + 28.991232500000024, + 40.46627349800002 + ], + [ + 28.780161, + 40.53619199799999 + ], + [ + 29.546993, + 40.695436 + ], + [ + 29.9421865, + 40.750489999000024 + ], + [ + 29.342517499999985, + 40.807657499000015 + ], + [ + 29.849114, + 41.064824498 + ], + [ + 29.865624500000024, + 41.143447498 + ], + [ + 30.354686500000014, + 41.184194499 + ], + [ + 30.9820555, + 41.072602501 + ], + [ + 31.2956565, + 41.11632 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 33.695422, + 40.33224149900002 + ], + [ + 33.24737249999998, + 39.64108699799999 + ], + [ + 33.441716, + 39.35144900099999 + ], + [ + 33.886019, + 39.043412499 + ], + [ + 33.722786, + 38.94294799800002 + ], + [ + 33.7054745, + 38.68082249999998 + ], + [ + 33.464405, + 38.63659149900002 + ], + [ + 33.337978, + 39.050211998 + ], + [ + 32.992395499999986, + 39.244097001 + ], + [ + 32.44286, + 38.958912999 + ], + [ + 31.8153175, + 39.128693499 + ], + [ + 32.069824, + 39.27607099800002 + ], + [ + 31.676844, + 40.035240500999976 + ], + [ + 30.82533, + 40.12578449900002 + ], + [ + 31.128547500000025, + 40.36527999899999 + ], + [ + 31.911622, + 40.328740498 + ], + [ + 32.554816, + 40.691943998 + ], + [ + 32.97209549899998, + 40.615893501000016 + ], + [ + 33.220758999, + 40.32078449800002 + ], + [ + 33.695422, + 40.33224149900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 33.464405, + 38.63659149900002 + ], + [ + 33.2033695, + 38.27849400100001 + ], + [ + 33.3944535, + 37.97126099799999 + ], + [ + 34.03357349999999, + 38.00481099799998 + ], + [ + 34.4004265, + 37.75167499899999 + ], + [ + 34.3350345, + 37.47940749700001 + ], + [ + 34.42891450000002, + 37.31638499899998 + ], + [ + 33.997476, + 37.09766399799997 + ], + [ + 32.95091050000002, + 36.831344999 + ], + [ + 33.238955499999975, + 36.520920999 + ], + [ + 32.573227, + 36.357624 + ], + [ + 32.45723149999998, + 36.738470999000015 + ], + [ + 31.740267500000016, + 37.35582599899999 + ], + [ + 31.4533915, + 37.33383299899998 + ], + [ + 31.300975, + 37.40425899799999 + ], + [ + 31.419393, + 37.97350799700001 + ], + [ + 31.5975305, + 38.0560855 + ], + [ + 31.233349499999974, + 38.409972998 + ], + [ + 31.621331, + 38.61994749799999 + ], + [ + 31.6197325, + 39.10305549899999 + ], + [ + 31.8153175, + 39.128693499 + ], + [ + 32.44286, + 38.958912999 + ], + [ + 32.992395499999986, + 39.244097001 + ], + [ + 33.337978, + 39.050211998 + ], + [ + 33.464405, + 38.63659149900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 31.233349499999974, + 38.409972998 + ], + [ + 31.5975305, + 38.0560855 + ], + [ + 31.419393, + 37.97350799700001 + ], + [ + 31.300975, + 37.40425899799999 + ], + [ + 31.4533915, + 37.33383299899998 + ], + [ + 31.740267500000016, + 37.35582599899999 + ], + [ + 32.45723149999998, + 36.738470999000015 + ], + [ + 32.573227, + 36.357624 + ], + [ + 32.57634, + 36.093232999 + ], + [ + 32.029032, + 36.53820249900002 + ], + [ + 30.69816750000001, + 36.884519497999975 + ], + [ + 30.327932499999974, + 36.296952998999984 + ], + [ + 29.644518, + 36.196329 + ], + [ + 29.2605615, + 36.30439899800001 + ], + [ + 29.637207, + 36.669686001 + ], + [ + 29.71326449899999, + 36.956309498999985 + ], + [ + 29.341447, + 37.006848998 + ], + [ + 29.60653050000002, + 37.395360998 + ], + [ + 29.500381, + 37.618871997999975 + ], + [ + 29.852119, + 37.75228549899998 + ], + [ + 30.039979500000015, + 37.752413999 + ], + [ + 30.986741, + 38.466414499 + ], + [ + 31.233349499999974, + 38.409972998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 36.440496, + 38.21943249899999 + ], + [ + 36.303865, + 37.73457649900001 + ], + [ + 36.0404835, + 37.660304999 + ], + [ + 35.884942498999976, + 37.344126499000026 + ], + [ + 35.856385, + 37.16971299800002 + ], + [ + 36.0454575, + 37.18898299900002 + ], + [ + 36.05271, + 37.018507999 + ], + [ + 35.963096, + 36.902986999 + ], + [ + 35.56584, + 36.5647945 + ], + [ + 35.339365, + 36.538526499 + ], + [ + 34.899245, + 36.73828099899998 + ], + [ + 34.5607205, + 36.76816349699999 + ], + [ + 33.68421, + 36.133401999 + ], + [ + 32.57634, + 36.093232999 + ], + [ + 32.573227, + 36.357624 + ], + [ + 33.238955499999975, + 36.520920999 + ], + [ + 32.95091050000002, + 36.831344999 + ], + [ + 33.997476, + 37.09766399799997 + ], + [ + 34.42891450000002, + 37.31638499899998 + ], + [ + 34.748, + 37.409303998999974 + ], + [ + 34.8854045, + 37.67054299900002 + ], + [ + 35.218708, + 37.75922449900003 + ], + [ + 35.574764, + 37.737158498999975 + ], + [ + 35.6144215, + 37.962110999 + ], + [ + 36.253814, + 38.379422998999985 + ], + [ + 36.440496, + 38.21943249899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 37.6386675, + 37.931167 + ], + [ + 37.432401, + 37.641709 + ], + [ + 37.62321650000001, + 37.511652497 + ], + [ + 37.08278, + 37.175676 + ], + [ + 36.901796, + 37.33366049900002 + ], + [ + 36.69738849999999, + 37.218142496999974 + ], + [ + 36.465673, + 36.94866749900001 + ], + [ + 36.66001039399998, + 36.83323153600003 + ], + [ + 36.549576, + 36.487769997999976 + ], + [ + 36.683648, + 36.23678349900001 + ], + [ + 36.39222, + 36.213326 + ], + [ + 36.37497, + 35.99791399899999 + ], + [ + 36.168469, + 35.81971799799999 + ], + [ + 35.917953, + 35.928695499000014 + ], + [ + 35.978777, + 36.01944149899998 + ], + [ + 35.779623, + 36.31855599800002 + ], + [ + 36.2157305, + 36.65963549899999 + ], + [ + 36.1485765, + 36.855066498999975 + ], + [ + 35.963096, + 36.902986999 + ], + [ + 36.05271, + 37.018507999 + ], + [ + 36.0454575, + 37.18898299900002 + ], + [ + 35.856385, + 37.16971299800002 + ], + [ + 35.884942498999976, + 37.344126499000026 + ], + [ + 36.0404835, + 37.660304999 + ], + [ + 36.303865, + 37.73457649900001 + ], + [ + 36.440496, + 38.21943249899999 + ], + [ + 36.769845499999974, + 38.54643599899998 + ], + [ + 37.341487, + 38.59351549899998 + ], + [ + 37.25953449999997, + 38.479911 + ], + [ + 37.7602465, + 38.20305099799998 + ], + [ + 37.6386675, + 37.931167 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 33.9162255, + 40.263038 + ], + [ + 34.175507, + 39.940434 + ], + [ + 34.108037, + 39.79300249800002 + ], + [ + 34.6441815, + 39.41150399899999 + ], + [ + 34.9147415, + 39.283632497999974 + ], + [ + 35.034188, + 39.004880997999976 + ], + [ + 34.9680335, + 38.788846998999986 + ], + [ + 35.083858, + 38.57053549800003 + ], + [ + 34.885322, + 38.34468849799998 + ], + [ + 35.2656685, + 38.10601999800002 + ], + [ + 35.218708, + 37.75922449900003 + ], + [ + 34.8854045, + 37.67054299900002 + ], + [ + 34.748, + 37.409303998999974 + ], + [ + 34.42891450000002, + 37.31638499899998 + ], + [ + 34.3350345, + 37.47940749700001 + ], + [ + 34.4004265, + 37.75167499899999 + ], + [ + 34.03357349999999, + 38.00481099799998 + ], + [ + 33.3944535, + 37.97126099799999 + ], + [ + 33.2033695, + 38.27849400100001 + ], + [ + 33.464405, + 38.63659149900002 + ], + [ + 33.7054745, + 38.68082249999998 + ], + [ + 33.722786, + 38.94294799800002 + ], + [ + 33.886019, + 39.043412499 + ], + [ + 33.441716, + 39.35144900099999 + ], + [ + 33.24737249999998, + 39.64108699799999 + ], + [ + 33.695422, + 40.33224149900002 + ], + [ + 33.9162255, + 40.263038 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 38.78355, + 40.08327149899998 + ], + [ + 38.3667795, + 39.93940199799999 + ], + [ + 38.349975, + 39.14994349699998 + ], + [ + 37.825541, + 39.093950499000016 + ], + [ + 37.341487, + 38.59351549899998 + ], + [ + 36.769845499999974, + 38.54643599899998 + ], + [ + 36.440496, + 38.21943249899999 + ], + [ + 36.253814, + 38.379422998999985 + ], + [ + 35.6144215, + 37.962110999 + ], + [ + 35.574764, + 37.737158498999975 + ], + [ + 35.218708, + 37.75922449900003 + ], + [ + 35.2656685, + 38.10601999800002 + ], + [ + 34.885322, + 38.34468849799998 + ], + [ + 35.083858, + 38.57053549800003 + ], + [ + 34.9680335, + 38.788846998999986 + ], + [ + 35.034188, + 39.004880997999976 + ], + [ + 34.9147415, + 39.283632497999974 + ], + [ + 34.6441815, + 39.41150399899999 + ], + [ + 34.108037, + 39.79300249800002 + ], + [ + 34.175507, + 39.940434 + ], + [ + 35.072878, + 40.01205649899998 + ], + [ + 35.1556395, + 40.226113 + ], + [ + 35.35115, + 40.2433805 + ], + [ + 35.442588, + 40.23402249899999 + ], + [ + 36.003423, + 39.95451049799999 + ], + [ + 36.606419500000015, + 39.980525999 + ], + [ + 36.8059275, + 40.228436999 + ], + [ + 37.450466, + 40.17053549899998 + ], + [ + 37.584064, + 40.42438699899998 + ], + [ + 37.73245750000001, + 40.3425095 + ], + [ + 38.14845250000002, + 40.52421849799998 + ], + [ + 38.213064, + 40.21331249899998 + ], + [ + 38.78355, + 40.08327149899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 32.560043, + 40.807477499000015 + ], + [ + 32.134024, + 41.030704 + ], + [ + 31.75363, + 41.005629999 + ], + [ + 31.2956565, + 41.11632 + ], + [ + 31.403204, + 41.317392498 + ], + [ + 32.062578, + 41.58030599900002 + ], + [ + 32.73610350000001, + 41.849009498999976 + ], + [ + 32.776286, + 41.58835299899999 + ], + [ + 32.88422350000002, + 41.575608999 + ], + [ + 33.127837, + 41.414297 + ], + [ + 32.8912545, + 41.173115 + ], + [ + 33.042014, + 41.06934599800002 + ], + [ + 32.560043, + 40.807477499000015 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 35.51369949999997, + 41.63597999900003 + ], + [ + 35.364086, + 41.27055649699997 + ], + [ + 35.1020165, + 41.40009449899998 + ], + [ + 34.85675199899998, + 41.215630498999985 + ], + [ + 34.449347, + 41.327383999 + ], + [ + 34.177718, + 41.14664549999998 + ], + [ + 34.2630365, + 40.890320498999984 + ], + [ + 33.929878, + 40.8278105 + ], + [ + 34.1436195, + 40.41869599900002 + ], + [ + 33.9162255, + 40.263038 + ], + [ + 33.695422, + 40.33224149900002 + ], + [ + 33.220758999, + 40.32078449800002 + ], + [ + 32.97209549899998, + 40.615893501000016 + ], + [ + 32.554816, + 40.691943998 + ], + [ + 32.560043, + 40.807477499000015 + ], + [ + 33.042014, + 41.06934599800002 + ], + [ + 32.8912545, + 41.173115 + ], + [ + 33.127837, + 41.414297 + ], + [ + 32.88422350000002, + 41.575608999 + ], + [ + 32.776286, + 41.58835299899999 + ], + [ + 32.73610350000001, + 41.849009498999976 + ], + [ + 33.3196165, + 42.01599299899999 + ], + [ + 34.22887849900002, + 41.954958998999984 + ], + [ + 34.7977085, + 41.954602997999984 + ], + [ + 34.943724, + 42.09698299899998 + ], + [ + 35.51369949999997, + 41.63597999900003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 37.152348500000016, + 41.148413498000025 + ], + [ + 36.671261, + 40.91562949899998 + ], + [ + 37.632352, + 40.54368199800001 + ], + [ + 37.584064, + 40.42438699899998 + ], + [ + 37.450466, + 40.17053549899998 + ], + [ + 36.8059275, + 40.228436999 + ], + [ + 36.606419500000015, + 39.980525999 + ], + [ + 36.003423, + 39.95451049799999 + ], + [ + 35.442588, + 40.23402249899999 + ], + [ + 35.35115, + 40.2433805 + ], + [ + 35.1556395, + 40.226113 + ], + [ + 35.072878, + 40.01205649899998 + ], + [ + 34.175507, + 39.940434 + ], + [ + 33.9162255, + 40.263038 + ], + [ + 34.1436195, + 40.41869599900002 + ], + [ + 33.929878, + 40.8278105 + ], + [ + 34.2630365, + 40.890320498999984 + ], + [ + 34.177718, + 41.14664549999998 + ], + [ + 34.449347, + 41.327383999 + ], + [ + 34.85675199899998, + 41.215630498999985 + ], + [ + 35.1020165, + 41.40009449899998 + ], + [ + 35.364086, + 41.27055649699997 + ], + [ + 35.51369949999997, + 41.63597999900003 + ], + [ + 35.9609585, + 41.734693 + ], + [ + 36.38541249999997, + 41.256273498999974 + ], + [ + 36.651739, + 41.383401999 + ], + [ + 37.152348500000016, + 41.148413498000025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 42.51517493199998, + 41.43828241599999 + ], + [ + 42.596096, + 41.2710925 + ], + [ + 42.28524950000002, + 40.91643799899998 + ], + [ + 41.9458735, + 40.950454997 + ], + [ + 41.80985750000002, + 40.684673499999974 + ], + [ + 41.384645499999976, + 40.567911998 + ], + [ + 41.164019499, + 40.83493949899997 + ], + [ + 40.60606150000001, + 40.536 + ], + [ + 40.461455, + 40.52868399800002 + ], + [ + 40.089906, + 40.572094999 + ], + [ + 39.643336499999975, + 40.095837999000025 + ], + [ + 39.789502, + 39.940146 + ], + [ + 39.4362185, + 39.878558 + ], + [ + 38.95667850000001, + 40.068511999 + ], + [ + 38.78355, + 40.08327149899998 + ], + [ + 38.213064, + 40.21331249899998 + ], + [ + 38.14845250000002, + 40.52421849799998 + ], + [ + 37.73245750000001, + 40.3425095 + ], + [ + 37.584064, + 40.42438699899998 + ], + [ + 37.632352, + 40.54368199800001 + ], + [ + 36.671261, + 40.91562949899998 + ], + [ + 37.152348500000016, + 41.148413498000025 + ], + [ + 38.109992499999976, + 40.95851799799999 + ], + [ + 39.1793085, + 41.074095999 + ], + [ + 40.32828749999999, + 40.987883501 + ], + [ + 41.2519, + 41.32993349899999 + ], + [ + 41.54713349999997, + 41.52037549800002 + ], + [ + 42.51517493199998, + 41.43828241599999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 42.28524950000002, + 40.91643799899998 + ], + [ + 42.57464950000002, + 40.669076999000026 + ], + [ + 42.53017349999999, + 40.43586949899998 + ], + [ + 42.128152, + 40.29244899899999 + ], + [ + 42.57502699899999, + 39.95392599899998 + ], + [ + 42.3006995, + 39.84167749900001 + ], + [ + 42.53097050000002, + 39.63093049999998 + ], + [ + 42.406795, + 39.46710349900002 + ], + [ + 41.801216, + 39.14470749899999 + ], + [ + 41.20683, + 39.353699001 + ], + [ + 40.651635, + 39.52291049899998 + ], + [ + 40.4484405, + 39.52215549800002 + ], + [ + 39.82890149999997, + 39.60165249800002 + ], + [ + 39.072714, + 39.437300499 + ], + [ + 38.7295135, + 39.13715549699998 + ], + [ + 38.768138, + 39.00626299800001 + ], + [ + 38.6840535, + 39.02384299900001 + ], + [ + 38.349975, + 39.14994349699998 + ], + [ + 38.3667795, + 39.93940199799999 + ], + [ + 38.78355, + 40.08327149899998 + ], + [ + 38.95667850000001, + 40.068511999 + ], + [ + 39.4362185, + 39.878558 + ], + [ + 39.789502, + 39.940146 + ], + [ + 39.643336499999975, + 40.095837999000025 + ], + [ + 40.089906, + 40.572094999 + ], + [ + 40.461455, + 40.52868399800002 + ], + [ + 40.60606150000001, + 40.536 + ], + [ + 41.164019499, + 40.83493949899997 + ], + [ + 41.384645499999976, + 40.567911998 + ], + [ + 41.80985750000002, + 40.684673499999974 + ], + [ + 41.9458735, + 40.950454997 + ], + [ + 42.28524950000002, + 40.91643799899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 44.04995580999997, + 39.36281542699999 + ], + [ + 43.716901, + 39.20951250000002 + ], + [ + 43.412439, + 39.39359249900002 + ], + [ + 43.1418885, + 39.310626996999986 + ], + [ + 43.184449, + 39.198752497999976 + ], + [ + 42.979636, + 39.016623498 + ], + [ + 42.75008, + 38.92519099899999 + ], + [ + 42.671909, + 39.21350849800001 + ], + [ + 42.406795, + 39.46710349900002 + ], + [ + 42.53097050000002, + 39.63093049999998 + ], + [ + 42.3006995, + 39.84167749900001 + ], + [ + 42.57502699899999, + 39.95392599899998 + ], + [ + 42.128152, + 40.29244899899999 + ], + [ + 42.53017349999999, + 40.43586949899998 + ], + [ + 42.57464950000002, + 40.669076999000026 + ], + [ + 42.28524950000002, + 40.91643799899998 + ], + [ + 42.596096, + 41.2710925 + ], + [ + 42.51517493199998, + 41.43828241599999 + ], + [ + 42.836095, + 41.58444249799999 + ], + [ + 43.473827, + 41.12329749999998 + ], + [ + 43.469638, + 41.05734499800002 + ], + [ + 43.750409, + 40.74499899900002 + ], + [ + 43.583054, + 40.45111099899998 + ], + [ + 43.653923, + 40.13037749900002 + ], + [ + 44.351662, + 40.02222099800002 + ], + [ + 44.76841, + 39.714094498 + ], + [ + 44.81204250000002, + 39.63174349799999 + ], + [ + 44.502099499999986, + 39.7169935 + ], + [ + 44.401101, + 39.41651599900001 + ], + [ + 44.04995580999997, + 39.36281542699999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 41.20683, + 39.353699001 + ], + [ + 41.116833, + 39.273619998000015 + ], + [ + 41.176564, + 38.716726 + ], + [ + 40.459416499999975, + 38.622623498999985 + ], + [ + 40.31407, + 38.465824499 + ], + [ + 39.162863, + 38.30443449799998 + ], + [ + 39.122747, + 38.183312999 + ], + [ + 38.816859, + 38.012205499 + ], + [ + 38.32978250000002, + 38.204376998999976 + ], + [ + 38.09520250000003, + 38.10833049799999 + ], + [ + 38.0894285, + 37.95417299899998 + ], + [ + 37.6386675, + 37.931167 + ], + [ + 37.7602465, + 38.20305099799998 + ], + [ + 37.25953449999997, + 38.479911 + ], + [ + 37.341487, + 38.59351549899998 + ], + [ + 37.825541, + 39.093950499000016 + ], + [ + 38.349975, + 39.14994349699998 + ], + [ + 38.6840535, + 39.02384299900001 + ], + [ + 38.768138, + 39.00626299800001 + ], + [ + 38.7295135, + 39.13715549699998 + ], + [ + 39.072714, + 39.437300499 + ], + [ + 39.82890149999997, + 39.60165249800002 + ], + [ + 40.4484405, + 39.52215549800002 + ], + [ + 40.651635, + 39.52291049899998 + ], + [ + 41.20683, + 39.353699001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 44.04995580999997, + 39.36281542699999 + ], + [ + 44.30026699899997, + 38.842627999 + ], + [ + 44.30526, + 38.40053499800001 + ], + [ + 44.482518, + 38.34129999800001 + ], + [ + 44.223969, + 37.899149998999974 + ], + [ + 44.46285493800002, + 37.80956816899999 + ], + [ + 44.617768, + 37.717975998999975 + ], + [ + 44.588852, + 37.443092998 + ], + [ + 44.801659, + 37.32166299900001 + ], + [ + 44.793147499999975, + 37.17628399900002 + ], + [ + 44.349709, + 37.03832299800001 + ], + [ + 44.118882, + 37.315686 + ], + [ + 43.424563, + 37.275334499999985 + ], + [ + 43.307242, + 37.43826649800002 + ], + [ + 43.505390499999976, + 37.71352999800001 + ], + [ + 42.9662085, + 37.762133 + ], + [ + 42.76799349999999, + 37.91362949799998 + ], + [ + 41.702295, + 38.246542998999985 + ], + [ + 41.506182, + 38.564977999 + ], + [ + 41.38054999899998, + 38.492253498000025 + ], + [ + 41.176564, + 38.716726 + ], + [ + 41.116833, + 39.273619998000015 + ], + [ + 41.20683, + 39.353699001 + ], + [ + 41.801216, + 39.14470749899999 + ], + [ + 42.406795, + 39.46710349900002 + ], + [ + 42.671909, + 39.21350849800001 + ], + [ + 42.75008, + 38.92519099899999 + ], + [ + 42.979636, + 39.016623498 + ], + [ + 43.184449, + 39.198752497999976 + ], + [ + 43.1418885, + 39.310626996999986 + ], + [ + 43.412439, + 39.39359249900002 + ], + [ + 43.716901, + 39.20951250000002 + ], + [ + 44.04995580999997, + 39.36281542699999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 39.122747, + 38.183312999 + ], + [ + 39.262784, + 38.146125998 + ], + [ + 39.099832, + 38.012478499 + ], + [ + 38.8514505, + 37.649203999 + ], + [ + 38.00804999899998, + 37.45474099799998 + ], + [ + 37.8355575, + 37.165888498000015 + ], + [ + 38.047589500000015, + 36.84555449700002 + ], + [ + 37.58551649999998, + 36.70376849899998 + ], + [ + 37.127495, + 36.659157 + ], + [ + 36.678777500000024, + 36.83266099799999 + ], + [ + 36.66001039399998, + 36.83323153600003 + ], + [ + 36.465673, + 36.94866749900001 + ], + [ + 36.69738849999999, + 37.218142496999974 + ], + [ + 36.901796, + 37.33366049900002 + ], + [ + 37.08278, + 37.175676 + ], + [ + 37.62321650000001, + 37.511652497 + ], + [ + 37.432401, + 37.641709 + ], + [ + 37.6386675, + 37.931167 + ], + [ + 38.0894285, + 37.95417299899998 + ], + [ + 38.09520250000003, + 38.10833049799999 + ], + [ + 38.32978250000002, + 38.204376998999976 + ], + [ + 38.816859, + 38.012205499 + ], + [ + 39.122747, + 38.183312999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 41.38054999899998, + 38.492253498000025 + ], + [ + 41.189474, + 38.31202699800002 + ], + [ + 41.25448, + 38.1395195 + ], + [ + 40.995091, + 37.826863 + ], + [ + 41.045006, + 37.71503049900002 + ], + [ + 39.8555495, + 37.531011998 + ], + [ + 40.226033, + 36.90137349899999 + ], + [ + 39.221524, + 36.66534099699999 + ], + [ + 38.386376, + 36.89832999700002 + ], + [ + 38.047589500000015, + 36.84555449700002 + ], + [ + 37.8355575, + 37.165888498000015 + ], + [ + 38.00804999899998, + 37.45474099799998 + ], + [ + 38.8514505, + 37.649203999 + ], + [ + 39.099832, + 38.012478499 + ], + [ + 39.262784, + 38.146125998 + ], + [ + 39.122747, + 38.183312999 + ], + [ + 39.162863, + 38.30443449799998 + ], + [ + 40.31407, + 38.465824499 + ], + [ + 40.459416499999975, + 38.622623498999985 + ], + [ + 41.176564, + 38.716726 + ], + [ + 41.38054999899998, + 38.492253498000025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 43.424563, + 37.275334499999985 + ], + [ + 42.786801, + 37.38367499899999 + ], + [ + 42.3556825, + 37.10799350100001 + ], + [ + 42.180832, + 37.29054199900003 + ], + [ + 41.663342, + 37.10290349899998 + ], + [ + 40.770821, + 37.11804999899999 + ], + [ + 40.226033, + 36.90137349899999 + ], + [ + 39.8555495, + 37.531011998 + ], + [ + 41.045006, + 37.71503049900002 + ], + [ + 40.995091, + 37.826863 + ], + [ + 41.25448, + 38.1395195 + ], + [ + 41.189474, + 38.31202699800002 + ], + [ + 41.38054999899998, + 38.492253498000025 + ], + [ + 41.506182, + 38.564977999 + ], + [ + 41.702295, + 38.246542998999985 + ], + [ + 42.76799349999999, + 37.91362949799998 + ], + [ + 42.9662085, + 37.762133 + ], + [ + 43.505390499999976, + 37.71352999800001 + ], + [ + 43.307242, + 37.43826649800002 + ], + [ + 43.424563, + 37.275334499999985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.3473725, + 54.860690998999985 + ], + [ + -1.2422295, + 54.72259499799998 + ], + [ + -1.261252, + 54.571902997999985 + ], + [ + -0.7909065, + 54.5594825 + ], + [ + -1.234791, + 54.51036849799999 + ], + [ + -1.434778, + 54.487514498999985 + ], + [ + -1.696865, + 54.536060501 + ], + [ + -2.1701665, + 54.458256 + ], + [ + -2.312043001, + 54.79108050000002 + ], + [ + -1.820951, + 54.90572750000001 + ], + [ + -1.559341501, + 54.88210299899998 + ], + [ + -1.3473725, + 54.860690998999985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.0498715, + 56.32188850099999 + ], + [ + 15.85154799899999, + 56.085102498000026 + ], + [ + 15.592694, + 56.211868998 + ], + [ + 15.348007, + 56.124922501000015 + ], + [ + 14.687203, + 56.167117 + ], + [ + 14.781868499999973, + 56.034379999 + ], + [ + 14.721438499999977, + 55.993557001 + ], + [ + 14.5463995, + 56.06131749999997 + ], + [ + 14.220109499999978, + 55.83045750000002 + ], + [ + 14.360844, + 55.55425949800002 + ], + [ + 14.194909, + 55.38403500099997 + ], + [ + 12.80983950000001, + 55.37825650000002 + ], + [ + 13.063593, + 55.670109497 + ], + [ + 12.445960500000012, + 56.302680001 + ], + [ + 12.783795, + 56.219567998 + ], + [ + 12.619629499999974, + 56.42242299899999 + ], + [ + 12.899313, + 56.4490045 + ], + [ + 13.462636499999974, + 56.42818850100002 + ], + [ + 14.514669500000025, + 56.46003699800002 + ], + [ + 15.363503499999979, + 56.48237599700002 + ], + [ + 15.58637349999998, + 56.48294 + ], + [ + 16.0498715, + 56.32188850099999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 14.295995, + 59.01277950100001 + ], + [ + 14.778936499, + 58.64599250100002 + ], + [ + 14.41671, + 58.187240497 + ], + [ + 13.772147, + 58.04856099699998 + ], + [ + 13.688058, + 57.558208501000024 + ], + [ + 13.100760499999978, + 57.145515499 + ], + [ + 13.681201, + 56.97211450100002 + ], + [ + 13.298661, + 56.82360450099998 + ], + [ + 13.462636499999974, + 56.42818850100002 + ], + [ + 12.899313, + 56.4490045 + ], + [ + 12.936727500000018, + 56.587077 + ], + [ + 11.913888, + 57.40103749799999 + ], + [ + 11.922900500000026, + 57.562223 + ], + [ + 11.990241500000025, + 57.721453500999985 + ], + [ + 11.6737205, + 57.84875499899999 + ], + [ + 11.84467728200002, + 58.16014767299998 + ], + [ + 11.406957, + 58.143874 + ], + [ + 11.702689, + 58.433648 + ], + [ + 11.220071499000028, + 58.40892949800002 + ], + [ + 11.3094795, + 58.479590496000014 + ], + [ + 11.256905, + 58.67768800099998 + ], + [ + 11.174135001000025, + 58.71829249799998 + ], + [ + 11.23903150000001, + 58.838971500000014 + ], + [ + 11.113543499, + 58.99826349799997 + ], + [ + 11.460827, + 58.988658499 + ], + [ + 11.632557, + 58.90830650100003 + ], + [ + 11.8261965, + 59.237849998 + ], + [ + 12.228614499, + 59.25669849899998 + ], + [ + 13.254575499999987, + 58.72561999800001 + ], + [ + 13.589992, + 59.059444499999984 + ], + [ + 14.295995, + 59.01277950100001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 17.489299500000016, + 62.13695049900002 + ], + [ + 17.3074195, + 61.85283999699999 + ], + [ + 17.402429499999982, + 61.7223975 + ], + [ + 17.037339499999973, + 61.574806497 + ], + [ + 17.070646, + 60.89967199900002 + ], + [ + 17.370218, + 60.654461500000025 + ], + [ + 17.192478, + 60.300712499999975 + ], + [ + 16.703831, + 60.195720498000014 + ], + [ + 15.801567, + 60.179103499 + ], + [ + 15.42209250000002, + 59.854747499999974 + ], + [ + 14.437155500000017, + 60.02616099699998 + ], + [ + 14.295995, + 59.01277950100001 + ], + [ + 13.589992, + 59.059444499999984 + ], + [ + 13.254575499999987, + 58.72561999800001 + ], + [ + 12.228614499, + 59.25669849899998 + ], + [ + 11.8261965, + 59.237849998 + ], + [ + 11.691129, + 59.58954749999998 + ], + [ + 11.93987850000002, + 59.69458099799999 + ], + [ + 11.926970499999982, + 59.79047599900002 + ], + [ + 11.839729, + 59.840767 + ], + [ + 12.499544999000022, + 60.09765699799999 + ], + [ + 12.606881499999986, + 60.51274249699998 + ], + [ + 12.22399, + 61.013078001 + ], + [ + 12.670176500000025, + 61.055976498 + ], + [ + 12.870847500000025, + 61.35649499800002 + ], + [ + 12.137665, + 61.72381699800002 + ], + [ + 12.29937, + 62.267494 + ], + [ + 12.8061755, + 62.21990599899999 + ], + [ + 13.558676, + 61.643413 + ], + [ + 14.4475615, + 61.59494800099998 + ], + [ + 14.685895, + 61.901668497 + ], + [ + 15.091695, + 61.817428499000016 + ], + [ + 15.4304505, + 62.14597249899998 + ], + [ + 15.3273395, + 62.272083501 + ], + [ + 17.489299500000016, + 62.13695049900002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 19.286468, + 63.4697195 + ], + [ + 18.331517, + 63.05352650100002 + ], + [ + 18.55759150099999, + 62.96259650000002 + ], + [ + 18.0637, + 62.610071 + ], + [ + 17.4012075, + 62.54936049899999 + ], + [ + 17.392239500000017, + 62.32317900100003 + ], + [ + 17.6594715, + 62.2330035 + ], + [ + 17.489299500000016, + 62.13695049900002 + ], + [ + 15.3273395, + 62.272083501 + ], + [ + 15.4304505, + 62.14597249899998 + ], + [ + 15.091695, + 61.817428499000016 + ], + [ + 14.685895, + 61.901668497 + ], + [ + 14.4475615, + 61.59494800099998 + ], + [ + 13.558676, + 61.643413 + ], + [ + 12.8061755, + 62.21990599899999 + ], + [ + 12.29937, + 62.267494 + ], + [ + 12.2546595, + 62.33102449699999 + ], + [ + 12.056142, + 62.61191849900001 + ], + [ + 12.218231, + 63.00033250000001 + ], + [ + 12.0524555, + 63.1834445 + ], + [ + 11.974581, + 63.269228 + ], + [ + 12.149767, + 63.593946999000025 + ], + [ + 12.683565, + 63.9742235 + ], + [ + 13.967524500000025, + 64.00797 + ], + [ + 14.157109, + 64.195054497 + ], + [ + 14.113869500000021, + 64.462484501 + ], + [ + 13.654257500000028, + 64.58034049899999 + ], + [ + 14.325985, + 65.118916001 + ], + [ + 16.718954, + 64.027877999 + ], + [ + 17.261841, + 63.91410049699999 + ], + [ + 18.405653, + 63.9956625 + ], + [ + 19.286468, + 63.4697195 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 24.155129, + 65.816027 + ], + [ + 22.34076600100002, + 65.86896049900002 + ], + [ + 22.402720499, + 65.53735549700002 + ], + [ + 22.0356215, + 65.4648855 + ], + [ + 21.524723359, + 65.231805586 + ], + [ + 21.543604500000015, + 65.06305899799997 + ], + [ + 21.156021, + 64.81548450000003 + ], + [ + 21.605362500000012, + 64.433961 + ], + [ + 20.31427, + 63.674042500999974 + ], + [ + 19.8976955, + 63.61702299900003 + ], + [ + 19.68303899900002, + 63.434309000999974 + ], + [ + 19.286468, + 63.4697195 + ], + [ + 18.405653, + 63.9956625 + ], + [ + 17.261841, + 63.91410049699999 + ], + [ + 16.718954, + 64.027877999 + ], + [ + 14.325985, + 65.118916001 + ], + [ + 14.6254765, + 65.81180849999998 + ], + [ + 14.516289, + 66.132579 + ], + [ + 15.453994500000022, + 66.345233501 + ], + [ + 15.3772265, + 66.48430399699998 + ], + [ + 16.387759, + 67.04546249999999 + ], + [ + 16.15800150000001, + 67.51915900099999 + ], + [ + 17.281524, + 68.118815 + ], + [ + 17.89976150000001, + 67.969372 + ], + [ + 18.151354, + 68.19879 + ], + [ + 18.125925, + 68.53651599900002 + ], + [ + 19.921397, + 68.356013001 + ], + [ + 20.3358725, + 68.80231250000003 + ], + [ + 20.0600475, + 69.04575900100002 + ], + [ + 20.548636499999986, + 69.05996850100001 + ], + [ + 21.888943000999973, + 68.5843835 + ], + [ + 23.652348999000026, + 67.958793001 + ], + [ + 23.3940235, + 67.485820999 + ], + [ + 23.995160500999987, + 66.819708999 + ], + [ + 23.6455995, + 66.3014085 + ], + [ + 24.155129, + 65.816027 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 16.596805, + 46.47590249899997 + ], + [ + 16.242148499999985, + 46.49007549700002 + ], + [ + 16.301549, + 46.37828799699997 + ], + [ + 15.8768685, + 46.280055499000014 + ], + [ + 15.7914755, + 46.259327497000015 + ], + [ + 15.627262, + 46.08595349900003 + ], + [ + 15.70640450000002, + 45.97534299900002 + ], + [ + 15.404425, + 45.792716997000014 + ], + [ + 15.331290500000023, + 45.76285499900001 + ], + [ + 15.277050499999973, + 45.604461499000024 + ], + [ + 15.385532, + 45.48658049900001 + ], + [ + 15.226437499999975, + 45.42708799799999 + ], + [ + 14.570012500000018, + 45.672944497 + ], + [ + 14.11819650000001, + 45.48123899699999 + ], + [ + 14.0423715, + 45.76135899899998 + ], + [ + 14.129577499999982, + 45.86949899899997 + ], + [ + 14.564807499999972, + 45.79146199899998 + ], + [ + 14.948575, + 45.97861049699998 + ], + [ + 14.711757499999976, + 46.07792999899999 + ], + [ + 14.908764500000018, + 46.207565998 + ], + [ + 14.565212, + 46.367696998999975 + ], + [ + 14.5651755, + 46.37245349699998 + ], + [ + 14.6745805, + 46.450687500000015 + ], + [ + 15.065120499999978, + 46.65211249700002 + ], + [ + 15.40197949899999, + 46.65354849900001 + ], + [ + 15.649988, + 46.705757 + ], + [ + 15.786422, + 46.7074695 + ], + [ + 16.038086, + 46.65614549700001 + ], + [ + 15.996236, + 46.8353985 + ], + [ + 16.113849, + 46.86906799899998 + ], + [ + 16.3707935, + 46.722243499 + ], + [ + 16.596805, + 46.47590249899997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.851041001, + 56.97269799899999 + ], + [ + -2.425346, + 56.755187997 + ], + [ + -3.051892501, + 56.45849999799998 + ], + [ + -3.27144769, + 56.35318407300002 + ], + [ + -3.2769755, + 56.350532500999975 + ], + [ + -3.264612652999972, + 56.352858137 + ], + [ + -3.243498734000013, + 56.356829979999986 + ], + [ + -2.803087, + 56.43967799799998 + ], + [ + -2.620387, + 56.2611885 + ], + [ + -3.391451500000016, + 56.00593199799999 + ], + [ + -3.866839500000026, + 56.1206625 + ], + [ + -3.820153, + 56.09911750100002 + ], + [ + -3.515724, + 56.00225850099997 + ], + [ + -3.425330499999973, + 55.994030001 + ], + [ + -3.077645500000017, + 55.94689549899999 + ], + [ + -2.3666235, + 55.94611349899998 + ], + [ + -2.034329, + 55.811165 + ], + [ + -2.335961, + 55.63214499899999 + ], + [ + -2.165465499999982, + 55.46846750100002 + ], + [ + -2.689751, + 55.18906399799999 + ], + [ + -2.858508, + 55.10842499900002 + ], + [ + -3.507365, + 55.41234949699998 + ], + [ + -3.471619, + 55.77106849799998 + ], + [ + -3.7440075, + 55.782108498000014 + ], + [ + -3.822552, + 55.89659500099998 + ], + [ + -4.020121, + 56.028145000999984 + ], + [ + -4.1523815, + 56.008144500000014 + ], + [ + -4.47081, + 56.002395501000024 + ], + [ + -4.598209, + 56.08433899900001 + ], + [ + -4.854503500000021, + 56.37053299899998 + ], + [ + -4.53214250000002, + 56.795907999 + ], + [ + -3.8016275, + 56.936012498000025 + ], + [ + -3.372107500000027, + 56.874744497999984 + ], + [ + -2.851041001, + 56.97269799899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -4.598209, + 56.08433899900001 + ], + [ + -4.47081, + 56.002395501000024 + ], + [ + -4.1523815, + 56.008144500000014 + ], + [ + -4.020121, + 56.028145000999984 + ], + [ + -3.822552, + 55.89659500099998 + ], + [ + -3.7440075, + 55.782108498000014 + ], + [ + -3.471619, + 55.77106849799998 + ], + [ + -3.507365, + 55.41234949699998 + ], + [ + -2.858508, + 55.10842499900002 + ], + [ + -3.091623992999985, + 54.97554629199999 + ], + [ + -4.4054395, + 54.677509500999975 + ], + [ + -5.183450000999983, + 54.912364998999976 + ], + [ + -5.040228500000012, + 54.99772650099999 + ], + [ + -4.65827250000001, + 55.57028949900001 + ], + [ + -4.888966499999981, + 55.87478999699999 + ], + [ + -4.7651305, + 55.95777149999998 + ], + [ + -4.392671741000015, + 55.88981584200002 + ], + [ + -4.609648, + 55.94667449799999 + ], + [ + -4.828885, + 56.079009998 + ], + [ + -4.78744838099999, + 56.16945116599999 + ], + [ + -4.786687023000013, + 56.29480500300002 + ], + [ + -4.598209, + 56.08433899900001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.425346, + 56.755187997 + ], + [ + -2.851041001, + 56.97269799899999 + ], + [ + -3.372107500000027, + 56.874744497999984 + ], + [ + -3.8016275, + 56.936012498000025 + ], + [ + -2.649769, + 57.52970099800001 + ], + [ + -2.801509, + 57.6952475 + ], + [ + -1.78944, + 57.503555498000026 + ], + [ + -2.425346, + 56.755187997 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + -3.771491500000025, + 57.867034999 + ], + [ + -4.4320525, + 57.49435400099998 + ], + [ + -2.801509, + 57.6952475 + ], + [ + -2.649769, + 57.52970099800001 + ], + [ + -3.8016275, + 56.936012498000025 + ], + [ + -4.53214250000002, + 56.795907999 + ], + [ + -4.854503500000021, + 56.37053299899998 + ], + [ + -4.786687023000013, + 56.29480500300002 + ], + [ + -4.78744838099999, + 56.16945116599999 + ], + [ + -4.828885, + 56.079009998 + ], + [ + -5.419614, + 55.896728498000016 + ], + [ + -5.520004500000027, + 55.36192299800001 + ], + [ + -5.799178, + 55.299698001000024 + ], + [ + -5.436028, + 55.85756299899998 + ], + [ + -5.666273499999988, + 55.800583001 + ], + [ + -5.487101000999985, + 56.256931501 + ], + [ + -5.654321, + 56.297649497 + ], + [ + -5.38434560799999, + 56.53174224000003 + ], + [ + -5.122688000999972, + 56.827274499 + ], + [ + -5.684919, + 56.4972955 + ], + [ + -6.226232, + 56.710991001000025 + ], + [ + -5.75170300100001, + 56.78216549799998 + ], + [ + -5.924258, + 56.89156349799998 + ], + [ + -5.72895, + 57.101478498 + ], + [ + -5.5094375, + 57.097774499000025 + ], + [ + -5.681389, + 57.1505305 + ], + [ + -5.670602562999989, + 57.208438753999985 + ], + [ + -6.017994, + 57.017947999 + ], + [ + -6.7897145, + 57.42120749899999 + ], + [ + -6.296708, + 57.70756149800002 + ], + [ + -6.146597000999975, + 57.57447449799997 + ], + [ + -6.130341, + 57.316936499 + ], + [ + -5.885413500000027, + 57.23816700100002 + ], + [ + -5.6476125, + 57.25529499800001 + ], + [ + -5.664395153999976, + 57.219288447 + ], + [ + -5.415392, + 57.230156 + ], + [ + -5.82202, + 57.36364749699999 + ], + [ + -5.8141635, + 57.858711 + ], + [ + -5.071033000999989, + 57.81991949799999 + ], + [ + -5.458675, + 58.07440949599999 + ], + [ + -5.0071175, + 58.625992000999986 + ], + [ + -3.024449, + 58.64426400100001 + ], + [ + -3.116977500000019, + 58.36858 + ], + [ + -4.400494, + 57.91898749799998 + ], + [ + -3.771491500000025, + 57.867034999 + ] + ] + ], + [ + [ + [ + -6.180591, + 58.467010500000015 + ], + [ + -6.344816, + 58.234204497 + ], + [ + -6.135358, + 58.259441498 + ], + [ + -6.967598, + 57.72789400099998 + ], + [ + -7.1331955, + 57.836654501 + ], + [ + -6.8160135, + 57.90083699899998 + ], + [ + -7.079999499999985, + 57.96723200100001 + ], + [ + -6.907952, + 58.049675001000026 + ], + [ + -7.10329500099999, + 58.07354750000002 + ], + [ + -7.027442, + 58.24435399700002 + ], + [ + -6.180591, + 58.467010500000015 + ] + ] + ], + [ + [ + [ + -1.155833500000028, + 60.33803549999999 + ], + [ + -1.277545, + 59.85259999800002 + ], + [ + -1.702932, + 60.255359499 + ], + [ + -1.339904500999978, + 60.359771497999986 + ], + [ + -1.632932, + 60.483162 + ], + [ + -1.499491319000015, + 60.54365987199998 + ], + [ + -1.304159, + 60.623996499999976 + ], + [ + -1.155833500000028, + 60.33803549999999 + ] + ] + ], + [ + [ + [ + -5.646332, + 56.440559501 + ], + [ + -6.385666501, + 56.288787997999975 + ], + [ + -6.323570501, + 56.606162998 + ], + [ + -5.646332, + 56.440559501 + ] + ] + ], + [ + [ + [ + -2.9119245, + 59.006061499 + ], + [ + -2.704751499999986, + 58.961914001000025 + ], + [ + -3.368161499999985, + 58.998829 + ], + [ + -2.9119245, + 59.006061499 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.3473725, + 54.860690998999985 + ], + [ + -1.559341501, + 54.88210299899998 + ], + [ + -1.820951, + 54.90572750000001 + ], + [ + -2.312043001, + 54.79108050000002 + ], + [ + -2.567809, + 54.8236425 + ], + [ + -2.4862965, + 55.08311849900002 + ], + [ + -2.689751, + 55.18906399799999 + ], + [ + -2.165465499999982, + 55.46846750100002 + ], + [ + -2.335961, + 55.63214499899999 + ], + [ + -2.034329, + 55.811165 + ], + [ + -1.838949500000012, + 55.642334 + ], + [ + -1.639348, + 55.578319497999985 + ], + [ + -1.461693, + 55.0743905 + ], + [ + -1.3639015, + 54.9441835 + ], + [ + -1.3473725, + 54.860690998999985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.312043001, + 54.79108050000002 + ], + [ + -2.1701665, + 54.458256 + ], + [ + -2.4608275, + 54.22676449800002 + ], + [ + -2.86947, + 54.17673849900001 + ], + [ + -3.149062, + 54.093601 + ], + [ + -3.174973, + 54.11490649900003 + ], + [ + -3.2049515, + 54.21513000099998 + ], + [ + -3.223693609, + 54.249058382999976 + ], + [ + -3.613598, + 54.52509699900003 + ], + [ + -3.3986365, + 54.869125499 + ], + [ + -3.11915, + 54.927886999 + ], + [ + -3.091623992999985, + 54.97554629199999 + ], + [ + -2.858508, + 55.10842499900002 + ], + [ + -2.689751, + 55.18906399799999 + ], + [ + -2.4862965, + 55.08311849900002 + ], + [ + -2.567809, + 54.8236425 + ], + [ + -2.312043001, + 54.79108050000002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.909583, + 53.53842149899998 + ], + [ + -1.9633505, + 53.50985349699999 + ], + [ + -2.0310235, + 53.370289001 + ], + [ + -2.240760500000022, + 53.35959999900001 + ], + [ + -2.313970499999982, + 53.35745250000002 + ], + [ + -2.426563499999986, + 53.38748949799998 + ], + [ + -2.489705500000014, + 53.460170498000025 + ], + [ + -2.576719, + 53.44608700100002 + ], + [ + -2.730499501, + 53.520629998 + ], + [ + -2.511298, + 53.62702950099998 + ], + [ + -2.379104, + 53.63090150099998 + ], + [ + -2.371208, + 53.667114501000015 + ], + [ + -2.146293001, + 53.682266 + ], + [ + -1.909583, + 53.53842149899998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.046089, + 53.850178 + ], + [ + -2.06121, + 53.825671999 + ], + [ + -2.146293001, + 53.682266 + ], + [ + -2.371208, + 53.667114501000015 + ], + [ + -2.379104, + 53.63090150099998 + ], + [ + -2.511298, + 53.62702950099998 + ], + [ + -2.730499501, + 53.520629998 + ], + [ + -2.887978, + 53.50386049999997 + ], + [ + -3.046686500000021, + 53.54299149899998 + ], + [ + -2.956203, + 53.69752900100002 + ], + [ + -2.833743, + 53.722129999 + ], + [ + -3.057371499999988, + 53.776481499 + ], + [ + -3.047940499999982, + 53.87577449899999 + ], + [ + -2.86947, + 54.17673849900001 + ], + [ + -2.4608275, + 54.22676449800002 + ], + [ + -2.469517, + 54.04625699799999 + ], + [ + -2.1844825, + 53.95230499899998 + ], + [ + -2.046089, + 53.850178 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.426563499999986, + 53.38748949799998 + ], + [ + -2.313970499999982, + 53.35745250000002 + ], + [ + -2.240760500000022, + 53.35959999900001 + ], + [ + -2.0310235, + 53.370289001 + ], + [ + -1.987376, + 53.213608 + ], + [ + -2.380768, + 52.99842849999999 + ], + [ + -2.69927450099999, + 52.995460501000025 + ], + [ + -2.726823500000023, + 52.9832955 + ], + [ + -3.084193, + 53.256122498000025 + ], + [ + -3.110706, + 53.296317999 + ], + [ + -2.928556500000013, + 53.308277 + ], + [ + -2.7524115, + 53.3147545 + ], + [ + -2.675166499999989, + 53.35448450000001 + ], + [ + -2.693358, + 53.361835498 + ], + [ + -2.576719, + 53.44608700100002 + ], + [ + -2.489705500000014, + 53.460170498000025 + ], + [ + -2.426563499999986, + 53.38748949799998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + -3.046686500000021, + 53.54299149899998 + ], + [ + -2.887978, + 53.50386049999997 + ], + [ + -2.730499501, + 53.520629998 + ], + [ + -2.576719, + 53.44608700100002 + ], + [ + -2.693358, + 53.361835498 + ], + [ + -2.826677, + 53.331672501000014 + ], + [ + -3.008742, + 53.43841149899998 + ], + [ + -3.1054585, + 53.551548001000015 + ], + [ + -2.956203, + 53.69752900100002 + ], + [ + -3.046686500000021, + 53.54299149899998 + ] + ] + ], + [ + [ + [ + -2.928556500000013, + 53.308277 + ], + [ + -3.110706, + 53.296317999 + ], + [ + -3.200367501000017, + 53.387527499999976 + ], + [ + -2.928556500000013, + 53.308277 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.017378, + 53.525367501 + ], + [ + -0.738485500000024, + 53.51986699899999 + ], + [ + -0.741809832, + 53.516955832 + ], + [ + -0.7974175, + 53.455085998000015 + ], + [ + -0.935518, + 53.50252149900001 + ], + [ + -0.8652705, + 53.637733500000024 + ], + [ + -1.0486, + 53.65608199899998 + ], + [ + -0.905781499999989, + 53.72576150100002 + ], + [ + -0.911604, + 53.7284125 + ], + [ + -0.9234475, + 53.880794501000025 + ], + [ + -0.925222, + 53.991550501 + ], + [ + -0.2124495, + 54.15762700099998 + ], + [ + 0.141740261999985, + 53.61067700699999 + ], + [ + -0.250096, + 53.733318500999985 + ], + [ + -0.419136501000025, + 53.719619997 + ], + [ + -0.698366, + 53.68465399899998 + ], + [ + -0.722945813000024, + 53.611722574 + ], + [ + -0.7450505, + 53.57120149899998 + ], + [ + -0.739235033, + 53.52388799 + ], + [ + -0.720730575, + 53.61118798299998 + ], + [ + -0.295713499999977, + 53.713866999 + ], + [ + 0.017378, + 53.525367501 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.2124495, + 54.15762700099998 + ], + [ + -0.925222, + 53.991550501 + ], + [ + -0.9234475, + 53.880794501000025 + ], + [ + -0.911604, + 53.7284125 + ], + [ + -0.905781499999989, + 53.72576150100002 + ], + [ + -1.0486, + 53.65608199899998 + ], + [ + -1.232786499999975, + 53.62113950000003 + ], + [ + -1.3019855, + 53.7417565 + ], + [ + -1.294119, + 53.9270975 + ], + [ + -1.72716650000001, + 53.910236499 + ], + [ + -2.046089, + 53.850178 + ], + [ + -2.1844825, + 53.95230499899998 + ], + [ + -2.469517, + 54.04625699799999 + ], + [ + -2.4608275, + 54.22676449800002 + ], + [ + -2.1701665, + 54.458256 + ], + [ + -1.696865, + 54.536060501 + ], + [ + -1.434778, + 54.487514498999985 + ], + [ + -1.234791, + 54.51036849799999 + ], + [ + -0.7909065, + 54.5594825 + ], + [ + -0.2124495, + 54.15762700099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.935518, + 53.50252149900001 + ], + [ + -1.199686499999984, + 53.311454997 + ], + [ + -1.324675, + 53.328853498 + ], + [ + -1.599034500000016, + 53.311401498 + ], + [ + -1.801430499999981, + 53.481018001 + ], + [ + -1.822188499999982, + 53.52111799800002 + ], + [ + -1.586403500000017, + 53.60720449799999 + ], + [ + -1.232786499999975, + 53.62113950000003 + ], + [ + -1.0486, + 53.65608199899998 + ], + [ + -0.8652705, + 53.637733500000024 + ], + [ + -0.935518, + 53.50252149900001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.232786499999975, + 53.62113950000003 + ], + [ + -1.586403500000017, + 53.60720449799999 + ], + [ + -1.822188499999982, + 53.52111799800002 + ], + [ + -1.909583, + 53.53842149899998 + ], + [ + -2.146293001, + 53.682266 + ], + [ + -2.06121, + 53.825671999 + ], + [ + -2.046089, + 53.850178 + ], + [ + -1.72716650000001, + 53.910236499 + ], + [ + -1.294119, + 53.9270975 + ], + [ + -1.3019855, + 53.7417565 + ], + [ + -1.232786499999975, + 53.62113950000003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.822188499999982, + 53.52111799800002 + ], + [ + -1.801430499999981, + 53.481018001 + ], + [ + -1.599034500000016, + 53.311401498 + ], + [ + -1.324675, + 53.328853498 + ], + [ + -1.199686499999984, + 53.311454997 + ], + [ + -0.935518, + 53.50252149900001 + ], + [ + -0.7974175, + 53.455085998000015 + ], + [ + -0.778224500000022, + 52.976932498999986 + ], + [ + -0.819968500000016, + 52.96047199899999 + ], + [ + -1.267846, + 52.87337899800002 + ], + [ + -1.597507, + 52.70043199899999 + ], + [ + -1.987376, + 53.213608 + ], + [ + -2.0310235, + 53.370289001 + ], + [ + -1.9633505, + 53.50985349699999 + ], + [ + -1.909583, + 53.53842149899998 + ], + [ + -1.822188499999982, + 53.52111799800002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.871292499999981, + 52.0402525 + ], + [ + -1.118058, + 52.01542649800001 + ], + [ + -1.331868499999985, + 52.168487500000026 + ], + [ + -1.20158, + 52.396735998999986 + ], + [ + -1.589611, + 52.68727099900002 + ], + [ + -1.597507, + 52.70043199899999 + ], + [ + -1.267846, + 52.87337899800002 + ], + [ + -0.819968500000016, + 52.96047199899999 + ], + [ + -0.778224500000022, + 52.976932498999986 + ], + [ + -0.4948475, + 52.64027975099998 + ], + [ + -0.41533, + 52.578746997 + ], + [ + -0.341543, + 52.46694549900002 + ], + [ + -0.465321500000016, + 52.32295600100002 + ], + [ + -0.668097, + 52.195033998999975 + ], + [ + -0.70541750000001, + 52.191570497999976 + ], + [ + -0.871292499999981, + 52.0402525 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.26596, + 52.81011600099998 + ], + [ + 0.171689, + 52.73803699899997 + ], + [ + -0.031214, + 52.66153699900002 + ], + [ + -0.4948475, + 52.64027975099998 + ], + [ + -0.778224500000022, + 52.976932498999986 + ], + [ + -0.7974175, + 53.455085998000015 + ], + [ + -0.741809832, + 53.516955832 + ], + [ + -0.738485500000024, + 53.51986699899999 + ], + [ + 0.017378, + 53.525367501 + ], + [ + 0.355712, + 53.192062498999974 + ], + [ + 0.043715500000019, + 52.903881 + ], + [ + 0.26596, + 52.81011600099998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Blue" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.331868499999985, + 52.168487500000026 + ], + [ + -1.6657325, + 51.987491498 + ], + [ + -1.76762700099999, + 52.11259449900001 + ], + [ + -2.351362, + 52.02136599900001 + ], + [ + -2.6502135, + 51.82615299899999 + ], + [ + -3.067357500000014, + 51.98315050100001 + ], + [ + -3.1419115, + 52.127876499000024 + ], + [ + -2.954719, + 52.34925850000002 + ], + [ + -2.618022, + 52.30696499800001 + ], + [ + -2.287363, + 52.455325999000024 + ], + [ + -2.164830000999984, + 52.430213998 + ], + [ + -2.016967500000021, + 52.43268949899999 + ], + [ + -1.8687215, + 52.404742999 + ], + [ + -1.87201, + 52.36760349799999 + ], + [ + -1.601023, + 52.38932399700002 + ], + [ + -1.4241525, + 52.43407449900002 + ], + [ + -1.5954575, + 52.455924998 + ], + [ + -1.753495, + 52.512973999 + ], + [ + -1.788053, + 52.587871499000016 + ], + [ + -1.589611, + 52.68727099900002 + ], + [ + -1.20158, + 52.396735998999986 + ], + [ + -1.331868499999985, + 52.168487500000026 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.597507, + 52.70043199899999 + ], + [ + -1.589611, + 52.68727099900002 + ], + [ + -1.788053, + 52.587871499000016 + ], + [ + -1.872537500000021, + 52.584953498 + ], + [ + -2.050694001000011, + 52.62053300100001 + ], + [ + -2.1334655, + 52.55407699900002 + ], + [ + -2.164830000999984, + 52.430213998 + ], + [ + -2.287363, + 52.455325999000024 + ], + [ + -2.618022, + 52.30696499800001 + ], + [ + -2.954719, + 52.34925850000002 + ], + [ + -3.235562, + 52.44255049899999 + ], + [ + -3.14748, + 52.89015599800001 + ], + [ + -2.726823500000023, + 52.9832955 + ], + [ + -2.69927450099999, + 52.995460501000025 + ], + [ + -2.380768, + 52.99842849999999 + ], + [ + -1.987376, + 53.213608 + ], + [ + -1.597507, + 52.70043199899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.788053, + 52.587871499000016 + ], + [ + -1.753495, + 52.512973999 + ], + [ + -1.5954575, + 52.455924998 + ], + [ + -1.4241525, + 52.43407449900002 + ], + [ + -1.601023, + 52.38932399700002 + ], + [ + -1.87201, + 52.36760349799999 + ], + [ + -1.8687215, + 52.404742999 + ], + [ + -2.016967500000021, + 52.43268949899999 + ], + [ + -2.164830000999984, + 52.430213998 + ], + [ + -2.1334655, + 52.55407699900002 + ], + [ + -2.050694001000011, + 52.62053300100001 + ], + [ + -1.872537500000021, + 52.584953498 + ], + [ + -1.788053, + 52.587871499000016 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 1.756430500000022, + 52.47172549800001 + ], + [ + 1.391530358000011, + 51.98931597 + ], + [ + 1.05638, + 51.95149249799999 + ], + [ + 0.705025499999977, + 52.06266800100002 + ], + [ + 0.404686500000025, + 52.065498499 + ], + [ + 0.389743, + 52.03646450100001 + ], + [ + 0.068169, + 52.005786999 + ], + [ + -0.157241000999989, + 52.08054749799999 + ], + [ + -0.249742, + 52.184372000999986 + ], + [ + -0.465321500000016, + 52.32295600100002 + ], + [ + -0.341543, + 52.46694549900002 + ], + [ + -0.41533, + 52.578746997 + ], + [ + -0.4948475, + 52.64027975099998 + ], + [ + -0.031214, + 52.66153699900002 + ], + [ + 0.171689, + 52.73803699899997 + ], + [ + 0.26596, + 52.81011600099998 + ], + [ + 0.695918, + 52.98762899799999 + ], + [ + 1.675478, + 52.74269099899999 + ], + [ + 1.7405435, + 52.53210050000001 + ], + [ + 1.756430500000022, + 52.47172549800001 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.068169, + 52.005786999 + ], + [ + -0.011878500000023, + 51.6808775 + ], + [ + -0.18204750000001, + 51.668601997 + ], + [ + -0.304423, + 51.636348499 + ], + [ + -0.5005615, + 51.599689497999975 + ], + [ + -0.745649501, + 51.842094498999984 + ], + [ + -0.553598, + 51.8267095 + ], + [ + -0.652946499999985, + 51.96923050100003 + ], + [ + -0.5917725, + 52.110691 + ], + [ + -0.668097, + 52.195033998999975 + ], + [ + -0.465321500000016, + 52.32295600100002 + ], + [ + -0.249742, + 52.184372000999986 + ], + [ + -0.157241000999989, + 52.08054749799999 + ], + [ + 0.068169, + 52.005786999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 1.05638, + 51.95149249799999 + ], + [ + 1.2919645, + 51.870651 + ], + [ + 0.844628, + 51.781318499 + ], + [ + 0.71307, + 51.71509150000003 + ], + [ + 0.756304, + 51.691742 + ], + [ + 0.9458965, + 51.716212998 + ], + [ + 0.776491998999973, + 51.63602449899997 + ], + [ + 0.76434071599999, + 51.63674747499999 + ], + [ + 0.85409737399999, + 51.601599641 + ], + [ + 0.958179500000028, + 51.61969 + ], + [ + 0.821244, + 51.540714498 + ], + [ + 0.626791, + 51.53217299900001 + ], + [ + 0.51370350000002, + 51.531184998000015 + ], + [ + 0.40186059199999, + 51.45663058500003 + ], + [ + 0.379662895000024, + 51.457289678999985 + ], + [ + 0.217437, + 51.480072 + ], + [ + 0.210514, + 51.490035998999986 + ], + [ + 0.313079500000015, + 51.565814999 + ], + [ + 0.200354, + 51.62493149900001 + ], + [ + 0.138225499999976, + 51.623543 + ], + [ + -0.012219500000015, + 51.646228998000026 + ], + [ + -0.011878500000023, + 51.6808775 + ], + [ + 0.068169, + 52.005786999 + ], + [ + 0.389743, + 52.03646450100001 + ], + [ + 0.404686500000025, + 52.065498499 + ], + [ + 0.705025499999977, + 52.06266800100002 + ], + [ + 1.05638, + 51.95149249799999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.079542452999988, + 51.507740223999974 + ], + [ + -0.079878638000025, + 51.50059630700002 + ], + [ + -0.108863, + 51.50844949899999 + ], + [ + -0.128365499999973, + 51.48505799899999 + ], + [ + -0.140344, + 51.41924649700002 + ], + [ + -0.253975500000024, + 51.437237 + ], + [ + -0.222829, + 51.47181699700002 + ], + [ + -0.244502, + 51.48870099800001 + ], + [ + -0.253024, + 51.5014 + ], + [ + -0.246334499999989, + 51.53279899900002 + ], + [ + -0.215968, + 51.527927498999986 + ], + [ + -0.191422, + 51.53628899900002 + ], + [ + -0.213401001000022, + 51.55514899899998 + ], + [ + -0.171223, + 51.57242950099999 + ], + [ + -0.085154, + 51.520332499 + ], + [ + -0.078408, + 51.521507500999974 + ], + [ + -0.079542452999988, + 51.507740223999974 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.068394, + 51.544414501 + ], + [ + 0.09699949899999, + 51.515670999 + ], + [ + 0.073823467000011, + 51.50462927699999 + ], + [ + 0.048330898000017, + 51.49852184000002 + ], + [ + -0.024711500000024, + 51.48564900100001 + ], + [ + 0.028960499999982, + 51.441623499 + ], + [ + -0.078261, + 51.4205055 + ], + [ + -0.078611501000012, + 51.41982249900002 + ], + [ + -0.127744, + 51.41231549899999 + ], + [ + -0.140344, + 51.41924649700002 + ], + [ + -0.128365499999973, + 51.48505799899999 + ], + [ + -0.108863, + 51.50844949899999 + ], + [ + -0.079878638000025, + 51.50059630700002 + ], + [ + -0.079542452999988, + 51.507740223999974 + ], + [ + -0.078408, + 51.521507500999974 + ], + [ + -0.085154, + 51.520332499 + ], + [ + -0.171223, + 51.57242950099999 + ], + [ + -0.138722499999972, + 51.610191498 + ], + [ + -0.0413825, + 51.60563649900001 + ], + [ + -0.061119, + 51.577785499000015 + ], + [ + 0.068394, + 51.544414501 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.210514, + 51.490035998999986 + ], + [ + 0.217437, + 51.480072 + ], + [ + 0.152974, + 51.40870299900001 + ], + [ + 0.148871, + 51.4085045 + ], + [ + 0.028960499999982, + 51.441623499 + ], + [ + -0.024711500000024, + 51.48564900100001 + ], + [ + 0.048330898000017, + 51.49852184000002 + ], + [ + 0.073823467000011, + 51.50462927699999 + ], + [ + 0.09699949899999, + 51.515670999 + ], + [ + 0.068394, + 51.544414501 + ], + [ + -0.061119, + 51.577785499000015 + ], + [ + -0.0413825, + 51.60563649900001 + ], + [ + -0.138722499999972, + 51.610191498 + ], + [ + -0.18204750000001, + 51.668601997 + ], + [ + -0.011878500000023, + 51.6808775 + ], + [ + -0.012219500000015, + 51.646228998000026 + ], + [ + 0.138225499999976, + 51.623543 + ], + [ + 0.200354, + 51.62493149900001 + ], + [ + 0.313079500000015, + 51.565814999 + ], + [ + 0.210514, + 51.490035998999986 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.148871, + 51.4085045 + ], + [ + 0.042433500000016, + 51.292667498000014 + ], + [ + 0.002330500000028, + 51.329132 + ], + [ + -0.156508, + 51.3215065 + ], + [ + -0.330622, + 51.32900600099998 + ], + [ + -0.317662, + 51.393665499 + ], + [ + -0.253975500000024, + 51.437237 + ], + [ + -0.140344, + 51.41924649700002 + ], + [ + -0.127744, + 51.41231549899999 + ], + [ + -0.078611501000012, + 51.41982249900002 + ], + [ + -0.078261, + 51.4205055 + ], + [ + 0.028960499999982, + 51.441623499 + ], + [ + 0.148871, + 51.4085045 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.138722499999972, + 51.610191498 + ], + [ + -0.171223, + 51.57242950099999 + ], + [ + -0.213401001000022, + 51.55514899899998 + ], + [ + -0.191422, + 51.53628899900002 + ], + [ + -0.215968, + 51.527927498999986 + ], + [ + -0.246334499999989, + 51.53279899900002 + ], + [ + -0.253024, + 51.5014 + ], + [ + -0.244502, + 51.48870099800001 + ], + [ + -0.222829, + 51.47181699700002 + ], + [ + -0.253975500000024, + 51.437237 + ], + [ + -0.317662, + 51.393665499 + ], + [ + -0.458605499999976, + 51.456314 + ], + [ + -0.509666501000027, + 51.46917350000001 + ], + [ + -0.489989499999979, + 51.494747 + ], + [ + -0.5005615, + 51.599689497999975 + ], + [ + -0.304423, + 51.636348499 + ], + [ + -0.18204750000001, + 51.668601997 + ], + [ + -0.138722499999972, + 51.610191498 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.5005615, + 51.599689497999975 + ], + [ + -0.489989499999979, + 51.494747 + ], + [ + -0.509666501000027, + 51.46917350000001 + ], + [ + -0.775435500000015, + 51.331954997000025 + ], + [ + -1.429674499999976, + 51.336532499999976 + ], + [ + -1.49828, + 51.329376 + ], + [ + -1.584689500000025, + 51.52491399899998 + ], + [ + -1.602793500000018, + 51.518295498999976 + ], + [ + -1.6830405, + 51.69011299700003 + ], + [ + -1.6657325, + 51.987491498 + ], + [ + -1.331868499999985, + 52.168487500000026 + ], + [ + -1.118058, + 52.01542649800001 + ], + [ + -0.871292499999981, + 52.0402525 + ], + [ + -0.70541750000001, + 52.191570497999976 + ], + [ + -0.668097, + 52.195033998999975 + ], + [ + -0.5917725, + 52.110691 + ], + [ + -0.652946499999985, + 51.96923050100003 + ], + [ + -0.553598, + 51.8267095 + ], + [ + -0.745649501, + 51.842094498999984 + ], + [ + -0.5005615, + 51.599689497999975 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -0.317662, + 51.393665499 + ], + [ + -0.330622, + 51.32900600099998 + ], + [ + -0.156508, + 51.3215065 + ], + [ + 0.002330500000028, + 51.329132 + ], + [ + 0.042433500000016, + 51.292667498000014 + ], + [ + 0.0500535, + 51.142643 + ], + [ + 0.605435, + 51.01205850000002 + ], + [ + 0.779000999, + 50.989479 + ], + [ + 0.854784, + 50.92370999899998 + ], + [ + -0.03817650000002, + 50.799503499000025 + ], + [ + -0.216009, + 50.82756399700003 + ], + [ + -0.932831, + 50.843151 + ], + [ + -0.938582, + 50.873718499 + ], + [ + -0.753453499999978, + 51.08645249900002 + ], + [ + -0.8488835, + 51.2107125 + ], + [ + -0.775435500000015, + 51.331954997000025 + ], + [ + -0.509666501000027, + 51.46917350000001 + ], + [ + -0.458605499999976, + 51.456314 + ], + [ + -0.317662, + 51.393665499 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [ + -0.753453499999978, + 51.08645249900002 + ], + [ + -0.938582, + 50.873718499 + ], + [ + -0.932831, + 50.843151 + ], + [ + -1.021779507000019, + 50.835727013 + ], + [ + -1.116579, + 50.842498998 + ], + [ + -1.3651595, + 50.88006949700002 + ], + [ + -1.4770375, + 50.923957997 + ], + [ + -1.306856, + 50.81985449899997 + ], + [ + -1.6920495, + 50.73662549800002 + ], + [ + -1.956807, + 50.98982999899999 + ], + [ + -1.6233815, + 50.954635500999984 + ], + [ + -1.49828, + 51.329376 + ], + [ + -1.429674499999976, + 51.336532499999976 + ], + [ + -0.775435500000015, + 51.331954997000025 + ], + [ + -0.8488835, + 51.2107125 + ], + [ + -0.753453499999978, + 51.08645249900002 + ] + ] + ], + [ + [ + [ + -1.069896, + 50.683647001 + ], + [ + -1.303737500000011, + 50.576045997999984 + ], + [ + -1.586375, + 50.66316599700002 + ], + [ + -1.292164500000013, + 50.75799949899999 + ], + [ + -1.069896, + 50.683647001 + ] + ] + ] + ], + "type": "MultiPolygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.379662895000024, + 51.457289678999985 + ], + [ + 0.40186059199999, + 51.45663058500003 + ], + [ + 0.458900500000027, + 51.45493699899998 + ], + [ + 0.720437, + 51.45972799899999 + ], + [ + 0.539261022, + 51.407019827 + ], + [ + 0.6268945, + 51.37521 + ], + [ + 0.951056, + 51.373244999 + ], + [ + 0.950297499999976, + 51.345749 + ], + [ + 1.4497465, + 51.37717799799998 + ], + [ + 1.3796385, + 51.1421585 + ], + [ + 0.854784, + 50.92370999899998 + ], + [ + 0.779000999, + 50.989479 + ], + [ + 0.605435, + 51.01205850000002 + ], + [ + 0.0500535, + 51.142643 + ], + [ + 0.042433500000016, + 51.292667498000014 + ], + [ + 0.148871, + 51.4085045 + ], + [ + 0.152974, + 51.40870299900001 + ], + [ + 0.217437, + 51.480072 + ], + [ + 0.379662895000024, + 51.457289678999985 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.6657325, + 51.987491498 + ], + [ + -1.6830405, + 51.69011299700003 + ], + [ + -1.602793500000018, + 51.518295498999976 + ], + [ + -1.584689500000025, + 51.52491399899998 + ], + [ + -1.49828, + 51.329376 + ], + [ + -1.6233815, + 50.954635500999984 + ], + [ + -1.956807, + 50.98982999899999 + ], + [ + -2.325841500000024, + 51.0796775 + ], + [ + -2.289077, + 51.32527550100002 + ], + [ + -2.992948, + 51.32031999899999 + ], + [ + -2.679612, + 51.480212999 + ], + [ + -2.674005500000021, + 51.544273498999985 + ], + [ + -2.534737, + 51.67724599899998 + ], + [ + -2.66065692, + 51.627663196000015 + ], + [ + -2.6502135, + 51.82615299899999 + ], + [ + -2.351362, + 52.02136599900001 + ], + [ + -1.76762700099999, + 52.11259449900001 + ], + [ + -1.6657325, + 51.987491498 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -1.956807, + 50.98982999899999 + ], + [ + -1.6920495, + 50.73662549800002 + ], + [ + -1.7407255, + 50.7215385 + ], + [ + -2.0406, + 50.71996299900002 + ], + [ + -1.953566001000013, + 50.594131499000014 + ], + [ + -2.947815000999981, + 50.71830750100003 + ], + [ + -2.954316, + 50.82117449899999 + ], + [ + -3.834736, + 51.141384 + ], + [ + -3.7207785, + 51.233093499 + ], + [ + -2.992948, + 51.32031999899999 + ], + [ + -2.289077, + 51.32527550100002 + ], + [ + -2.325841500000024, + 51.0796775 + ], + [ + -1.956807, + 50.98982999899999 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -4.235094221, + 50.46025278500002 + ], + [ + -4.20370002300001, + 50.398256189999984 + ], + [ + -4.177532638, + 50.36402146900002 + ], + [ + -4.76328, + 50.326236498000014 + ], + [ + -5.185075499999982, + 49.96316549699998 + ], + [ + -5.479827, + 50.126014499 + ], + [ + -4.545959499999981, + 50.92835249900003 + ], + [ + -4.235094221, + 50.46025278500002 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -2.947815000999981, + 50.71830750100003 + ], + [ + -3.5090305, + 50.51651400100002 + ], + [ + -3.507436, + 50.378989999 + ], + [ + -3.723704, + 50.201519 + ], + [ + -4.1231325, + 50.346740497999974 + ], + [ + -4.177532638, + 50.36402146900002 + ], + [ + -4.20370002300001, + 50.398256189999984 + ], + [ + -4.235094221, + 50.46025278500002 + ], + [ + -4.545959499999981, + 50.92835249900003 + ], + [ + -4.139783841, + 51.077219300000024 + ], + [ + -4.200037001, + 51.200939 + ], + [ + -3.7207785, + 51.233093499 + ], + [ + -3.834736, + 51.141384 + ], + [ + -2.954316, + 50.82117449899999 + ], + [ + -2.947815000999981, + 50.71830750100003 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -3.6378555, + 51.469840998 + ], + [ + -3.88623, + 51.617385997999975 + ], + [ + -4.307776, + 51.610301999 + ], + [ + -4.05255, + 51.703281498000024 + ], + [ + -4.929975500000012, + 51.59847650099999 + ], + [ + -5.3202485, + 51.86160299900001 + ], + [ + -4.207504501000017, + 52.26382049799997 + ], + [ + -3.9310135, + 52.553612 + ], + [ + -4.128679, + 52.61278149999998 + ], + [ + -4.058637499999975, + 52.920723001 + ], + [ + -4.767578500000013, + 52.79496 + ], + [ + -4.216110416999982, + 53.19851737099998 + ], + [ + -4.69663, + 53.30674349899999 + ], + [ + -4.040188, + 53.31065349900001 + ], + [ + -4.196792116999973, + 53.21081699400003 + ], + [ + -4.007376, + 53.24692899899998 + ], + [ + -3.363392499999975, + 53.352028 + ], + [ + -3.0902865, + 52.971641498999986 + ], + [ + -3.375009499999976, + 52.89247499800001 + ], + [ + -3.48307, + 52.86553949900002 + ], + [ + -3.926611, + 52.560783499000024 + ], + [ + -3.658389, + 52.34775899700003 + ], + [ + -3.647133, + 52.038799497000014 + ], + [ + -3.80665, + 51.78792949899997 + ], + [ + -3.591288500000019, + 51.75461949800001 + ], + [ + -3.334463, + 51.79040899900002 + ], + [ + -3.157343500000025, + 51.816058999 + ], + [ + -2.958938, + 51.62874999899998 + ], + [ + -3.118871500000012, + 51.545707499 + ], + [ + -3.237515, + 51.55262749899998 + ], + [ + -3.497506499999986, + 51.51264549699999 + ], + [ + -3.6378555, + 51.469840998 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Orange" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -3.084193, + 53.256122498000025 + ], + [ + -2.726823500000023, + 52.9832955 + ], + [ + -3.14748, + 52.89015599800001 + ], + [ + -3.235562, + 52.44255049899999 + ], + [ + -2.954719, + 52.34925850000002 + ], + [ + -3.1419115, + 52.127876499000024 + ], + [ + -3.067357500000014, + 51.98315050100001 + ], + [ + -2.6502135, + 51.82615299899999 + ], + [ + -2.66065692, + 51.627663196000015 + ], + [ + -3.082688, + 51.501907499000026 + ], + [ + -3.6378555, + 51.469840998 + ], + [ + -3.497506499999986, + 51.51264549699999 + ], + [ + -3.237515, + 51.55262749899998 + ], + [ + -3.118871500000012, + 51.545707499 + ], + [ + -2.958938, + 51.62874999899998 + ], + [ + -3.157343500000025, + 51.816058999 + ], + [ + -3.334463, + 51.79040899900002 + ], + [ + -3.591288500000019, + 51.75461949800001 + ], + [ + -3.80665, + 51.78792949899997 + ], + [ + -3.647133, + 52.038799497000014 + ], + [ + -3.658389, + 52.34775899700003 + ], + [ + -3.926611, + 52.560783499000024 + ], + [ + -3.48307, + 52.86553949900002 + ], + [ + -3.375009499999976, + 52.89247499800001 + ], + [ + -3.0902865, + 52.971641498999986 + ], + [ + -3.363392499999975, + 53.352028 + ], + [ + -3.084193, + 53.256122498000025 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + -6.2680155, + 54.102337 + ], + [ + -6.623778500000014, + 54.03654849700001 + ], + [ + -7.0286355, + 54.42130649799998 + ], + [ + -7.565956, + 54.126514499 + ], + [ + -8.177718, + 54.464973500999974 + ], + [ + -7.703411501, + 54.60828799900003 + ], + [ + -7.921372, + 54.69654449900003 + ], + [ + -7.534506, + 54.74713900099999 + ], + [ + -7.256068500000026, + 55.067034998 + ], + [ + -7.099074804999987, + 55.10080792000002 + ], + [ + -6.455277, + 55.2393035 + ], + [ + -5.976527499999975, + 55.056598501 + ], + [ + -5.992633500000011, + 54.989261999 + ], + [ + -5.721779, + 54.772852496999974 + ], + [ + -5.720909001, + 54.77263649899999 + ], + [ + -5.691673, + 54.80959299900002 + ], + [ + -5.690664001000016, + 54.769462497 + ], + [ + -5.912931500000013, + 54.648036998 + ], + [ + -5.855336, + 54.63377 + ], + [ + -5.575003, + 54.67019650100002 + ], + [ + -5.432802, + 54.48764399800001 + ], + [ + -5.499689499999988, + 54.338054499 + ], + [ + -5.874409, + 54.184848500999976 + ], + [ + -6.2680155, + 54.102337 + ] + ] + ], + "type": "Polygon" + }, + "properties": { + "style": { + "color": "Grey" + } + }, + "type": "Feature" + } + ], + "type": "FeatureCollection" + }, + "hover_style": {}, + "layers": [], + "name": "", + "options": [], + "pane": "", + "point_style": {}, + "popup": null, + "popup_max_height": null, + "popup_max_width": 300, + "popup_min_width": 50, + "style": {}, + "subitems": [], + "visible": true + } + }, + "fa47712de132451297b44d79771037d1": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "AppBarModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "AppBarModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "absolute": null, + "app": null, + "attributes": {}, + "bottom": null, + "children": [ + "IPY_MODEL_3d9c4c03987e4d5a939a45a3ffb30039", + "IPY_MODEL_06dcc8456b904c35a7268a43023e8504", + "IPY_MODEL_c1c5ccae3c7c4776a4c99538fcd42e15", + "IPY_MODEL_7674d4fcdb33481da63a279324c99985" + ], + "class_": null, + "clipped_left": null, + "clipped_right": null, + "collapse": null, + "collapse_on_scroll": null, + "color": "primary", + "dark": true, + "dense": null, + "elevate_on_scroll": null, + "elevation": null, + "extended": null, + "extension_height": null, + "fade_img_on_scroll": null, + "fixed": null, + "flat": null, + "floating": null, + "height": null, + "hide_on_scroll": null, + "inverted_scroll": null, + "layout": null, + "light": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "prominent": null, + "scroll_off_screen": null, + "scroll_target": null, + "scroll_threshold": null, + "short": null, + "shrink_on_scroll": null, + "slot": null, + "src": null, + "style_": null, + "tabbable": null, + "tag": null, + "tile": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "value": null, + "width": null + } + }, + "fab77a4393814932bd1bc069239324ae": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.8.5", + "model_name": "IconModel", + "state": { + "_dom_classes": [], + "_events": [], + "_jupyter_vue": "IPY_MODEL_04c33fba484b4215b2bc247883baf2de", + "_metadata": null, + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.8.5", + "_model_name": "IconModel", + "_view_count": null, + "_view_module": "jupyter-vuetify", + "_view_module_version": "^1.8.5", + "_view_name": "VuetifyView", + "attributes": {}, + "children": [ + "mdi-fullscreen" + ], + "class_": null, + "color": null, + "dark": null, + "dense": null, + "disabled": null, + "large": null, + "layout": null, + "left": false, + "light": null, + "right": null, + "size": null, + "slot": null, + "small": null, + "style_": null, + "tabbable": null, + "tag": null, + "tooltip": null, + "v_model": "!!disabled!!", + "v_on": null, + "v_slots": [], + "x_large": null, + "x_small": null + } + }, + "fda6060c8c554bf3a42666e11c50c6ff": { + "model_module": "jupyter-vuetify", + "model_module_version": "^1.9.4", + "model_name": "ThemeModel", + "state": { + "_model_module": "jupyter-vuetify", + "_model_module_version": "^1.9.4", + "_model_name": "ThemeModel", + "_view_count": null, + "_view_module": null, + "_view_module_version": "^1.9.4", + "_view_name": null, + "dark": null, + "dark_effective": null + } + } + }, + "version_major": 2, + "version_minor": 0 + } + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/docs/source/environment.yml b/docs/source/environment.yml index 245523c4..8be89e77 100644 --- a/docs/source/environment.yml +++ b/docs/source/environment.yml @@ -3,7 +3,6 @@ name: mesa_geo - conda dependencies: - python==3.10 - - micromamba - pip>=20.1 - pip: - mesa~=2.3.0 @@ -11,7 +10,6 @@ dependencies: - jupyter_bridge==0.3.5 - geopandas==0.14.4 - myst_nb>1 #required for build - - xeus-python~=0.15.0 - jupyterlite-xeus>=0.2.0a0 - jupyterlite_sphinx~=0.15.0