diff --git a/.gitignore b/.gitignore index fd789ede..4cae3f03 100644 --- a/.gitignore +++ b/.gitignore @@ -121,7 +121,15 @@ venv.bak/ cache /examples/FIAT_database hydromt_fiat/data/damage_functions/flooding/AllDDF_HAZUS_fractions.xlsx +hydromt_fiat/data/damage_functions/flooding/Hazus_IWR_curves.csv +hydromt_fiat/data/damage_functions/flooding/Hazus_IWR_curves.xlsx examples/data/update_ground_floor_height/test_update_ground_floor_height_points examples/data/update_ground_floor_height/test_update_ground_floor_height_polygons examples/data/building_footprints/fiat_model_bfs -examples/data/aggregation_zones/output \ No newline at end of file +examples/data/aggregation_zones/output + +# notebooks +/examples/aggregation_zones_example_files +/examples/data/aggregation_zones/aggregation_zones_test1/ +/examples/data/aggregation_zones/aggregation_zones_test2/ +examples/aggregation_zones_example.html \ No newline at end of file diff --git a/examples/aggregation_zones_example.ipynb b/examples/aggregation_zones_example.ipynb index e965cf44..518e22ed 100644 --- a/examples/aggregation_zones_example.ipynb +++ b/examples/aggregation_zones_example.ipynb @@ -11,10 +11,50 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "In spatial analysis and urban planning the division of objects into spatial zones is a pivotal tool to facilitate analysis and/or visualization. This jupyter notebook demonstrates how to create a **spatial joint** of the FIAT model data with single or multiple **aggregation zones** in order to link an the zone and objects of interest. \n", - "

The base for this notebook is the DELFT FIAT toolbox.

\n", + "In spatial analysis and urban planning the division of objects into spatial zones is a pivotal tool to facilitate analysis and/or visualization. This jupyter notebook demonstrates how to create a **spatial joint** of the FIAT model data with single or multiple **aggregation zones** in order to link an the zone and objects of interest. \n", + "The base for this notebook is the **DELFT FIAT toolbox**. \n", "\n", - "Note: In this notebook the model was already initialized. Unless the user does not wish to use own data, there is `no need` to create a new model and the user can simply continue with the example data found in the / \"example\" / \"data\"/ \"aggregation_zone\" - directory.

" + "*Note: The FIAT model was already initialized for this notebook. Unless the user does not wish to use own data, there is no need to create a new model and the user can simply continue with the example data found in the `/ \"example\" / \"data\"/ \"aggregation_zone\"` - directory.*" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Install Delft-FIAT\n", + "\n", + "HydroMT-FIAT is available on pypi and can be installed via: \n", + "\n", + "`pip install hydromt_fiat`\n", + "\n", + "If you want to know more about the installation process or if you are interested to install HydroMT-FIAT as a developer, please check out the [Installation Guide](../docs/installation.rst).\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# **Step 0**: Import required packages\n", + "Now we can import the neccessary python packages to build the **FIAT model**." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "# Import packages \n", + "import geopandas as gpd\n", + "from pathlib import Path\n", + "import os\n", + "from hydromt_fiat.fiat import FiatModel\n", + "from hydromt.log import setuplog\n", + "import pandas as pd\n", + "import yaml\n", + "import json\n", + "import shutil\n", + "from hydromt.config import configread" ] }, { @@ -50,7 +90,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 18, "metadata": {}, "outputs": [ { @@ -83,7 +123,7 @@ " <meta name="viewport" content="width=device-width,\n", " initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />\n", " <style>\n", - " #map_8c6bccfe833991aba0fe8483f23a6e2a {\n", + " #map_e6d7260c9a6d62313dca5521720cfdb4 {\n", " position: relative;\n", " width: 100.0%;\n", " height: 100.0%;\n", @@ -224,14 +264,14 @@ " </div>\n", " \n", " \n", - " <div class="folium-map" id="map_8c6bccfe833991aba0fe8483f23a6e2a" ></div>\n", + " <div class="folium-map" id="map_e6d7260c9a6d62313dca5521720cfdb4" ></div>\n", " \n", "</body>\n", "<script>\n", " \n", " \n", - " var map_8c6bccfe833991aba0fe8483f23a6e2a = L.map(\n", - " "map_8c6bccfe833991aba0fe8483f23a6e2a",\n", + " var map_e6d7260c9a6d62313dca5521720cfdb4 = L.map(\n", + " "map_e6d7260c9a6d62313dca5521720cfdb4",\n", " {\n", " center: [32.78506751035425, -79.9430648460998],\n", " crs: L.CRS.EPSG3857,\n", @@ -240,25 +280,25 @@ " preferCanvas: false,\n", " }\n", " );\n", - " L.control.scale().addTo(map_8c6bccfe833991aba0fe8483f23a6e2a);\n", + " L.control.scale().addTo(map_e6d7260c9a6d62313dca5521720cfdb4);\n", "\n", " \n", "\n", " \n", " \n", - " var tile_layer_26d094c94e67368ae08df0f8effc58ab = L.tileLayer(\n", + " var tile_layer_00ae65cc05f63e378d4083ebe758c942 = L.tileLayer(\n", " "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",\n", " {"attribution": "Data by \\u0026copy; \\u003ca target=\\"_blank\\" href=\\"http://openstreetmap.org\\"\\u003eOpenStreetMap\\u003c/a\\u003e, under \\u003ca target=\\"_blank\\" href=\\"http://www.openstreetmap.org/copyright\\"\\u003eODbL\\u003c/a\\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}\n", - " ).addTo(map_8c6bccfe833991aba0fe8483f23a6e2a);\n", + " ).addTo(map_e6d7260c9a6d62313dca5521720cfdb4);\n", " \n", " \n", - " map_8c6bccfe833991aba0fe8483f23a6e2a.fitBounds(\n", + " map_e6d7260c9a6d62313dca5521720cfdb4.fitBounds(\n", " [[32.7681600079989, -79.9628276762655], [32.8019750127096, -79.9233020159341]],\n", " {}\n", " );\n", " \n", " \n", - " function geo_json_3f5e11aebffb652c641c0a9f6d00d166_styler(feature) {\n", + " function geo_json_f307c13e235ec59df2be91ff083bc3a6_styler(feature) {\n", " switch(feature.id) {\n", " case "0": case "1": case "2": case "3": case "6": case "14": case "57": case "81": case "169": case "214": case "215": case "292": case "294": case "301": case "302": case "304": case "307": case "310": case "313": case "315": case "316": case "321": case "340": case "342": case "365": case "370": case "379": case "383": case "384": case "385": case "386": case "387": case "388": case "389": \n", " return {"color": "#c7c7c7", "fillColor": "#c7c7c7", "fillOpacity": 0.5, "weight": 2};\n", @@ -302,53 +342,53 @@ " return {"color": "#d62728", "fillColor": "#d62728", "fillOpacity": 0.5, "weight": 2};\n", " }\n", " }\n", - " function geo_json_3f5e11aebffb652c641c0a9f6d00d166_highlighter(feature) {\n", + " function geo_json_f307c13e235ec59df2be91ff083bc3a6_highlighter(feature) {\n", " switch(feature.id) {\n", " default:\n", " return {"fillOpacity": 0.75};\n", " }\n", " }\n", - " function geo_json_3f5e11aebffb652c641c0a9f6d00d166_pointToLayer(feature, latlng) {\n", + " function geo_json_f307c13e235ec59df2be91ff083bc3a6_pointToLayer(feature, latlng) {\n", " var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};\n", " \n", - " let style = geo_json_3f5e11aebffb652c641c0a9f6d00d166_styler(feature)\n", + " let style = geo_json_f307c13e235ec59df2be91ff083bc3a6_styler(feature)\n", " Object.assign(opts, style)\n", " \n", " return new L.CircleMarker(latlng, opts)\n", " }\n", "\n", - " function geo_json_3f5e11aebffb652c641c0a9f6d00d166_onEachFeature(feature, layer) {\n", + " function geo_json_f307c13e235ec59df2be91ff083bc3a6_onEachFeature(feature, layer) {\n", " layer.on({\n", " mouseout: function(e) {\n", " if(typeof e.target.setStyle === "function"){\n", - " geo_json_3f5e11aebffb652c641c0a9f6d00d166.resetStyle(e.target);\n", + " geo_json_f307c13e235ec59df2be91ff083bc3a6.resetStyle(e.target);\n", " }\n", " },\n", " mouseover: function(e) {\n", " if(typeof e.target.setStyle === "function"){\n", - " const highlightStyle = geo_json_3f5e11aebffb652c641c0a9f6d00d166_highlighter(e.target.feature)\n", + " const highlightStyle = geo_json_f307c13e235ec59df2be91ff083bc3a6_highlighter(e.target.feature)\n", " e.target.setStyle(highlightStyle);\n", " }\n", " },\n", " });\n", " };\n", - " var geo_json_3f5e11aebffb652c641c0a9f6d00d166 = L.geoJson(null, {\n", - " onEachFeature: geo_json_3f5e11aebffb652c641c0a9f6d00d166_onEachFeature,\n", + " var geo_json_f307c13e235ec59df2be91ff083bc3a6 = L.geoJson(null, {\n", + " onEachFeature: geo_json_f307c13e235ec59df2be91ff083bc3a6_onEachFeature,\n", " \n", - " style: geo_json_3f5e11aebffb652c641c0a9f6d00d166_styler,\n", - " pointToLayer: geo_json_3f5e11aebffb652c641c0a9f6d00d166_pointToLayer\n", + " style: geo_json_f307c13e235ec59df2be91ff083bc3a6_styler,\n", + " pointToLayer: geo_json_f307c13e235ec59df2be91ff083bc3a6_pointToLayer\n", " });\n", "\n", - " function geo_json_3f5e11aebffb652c641c0a9f6d00d166_add (data) {\n", - " geo_json_3f5e11aebffb652c641c0a9f6d00d166\n", + " function geo_json_f307c13e235ec59df2be91ff083bc3a6_add (data) {\n", + " geo_json_f307c13e235ec59df2be91ff083bc3a6\n", " .addData(data)\n", - " .addTo(map_8c6bccfe833991aba0fe8483f23a6e2a);\n", + " .addTo(map_e6d7260c9a6d62313dca5521720cfdb4);\n", " }\n", - " geo_json_3f5e11aebffb652c641c0a9f6d00d166_add({"bbox": [-79.9628276762655, 32.7681600079989, -79.9233020159341, 32.8019750127096], "features": [{"bbox": [-79.9326811146179, 32.7681600079989, -79.9321241289581, 32.7694739010872], "geometry": {"coordinates": [[[-79.9321241289581, 32.7683975884143], [-79.9322365032488, 32.7694405109554], [-79.9326811146179, 32.7694739010872], [-79.9325395448189, 32.7681600079989], [-79.9321241289581, 32.7683975884143]]], "type": "Polygon"}, "id": "0", "properties": {"OBJECTID": 429, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7658.900390625, "Shape__Length": 418.908237414743, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9354011973635, 32.7697763748106, -79.9340146581859, 32.7702902450113], "geometry": {"coordinates": [[[-79.9340668776165, 32.7701054548062], [-79.9342433530768, 32.77010802422], [-79.9342411225763, 32.770157483023], [-79.9342389025411, 32.770206084273], [-79.9343624253022, 32.7702153220383], [-79.9344826980597, 32.7702243573144], [-79.9344900104667, 32.7702249350566], [-79.9347484340469, 32.7702442810118], [-79.9350060444469, 32.7702636184384], [-79.935085682396, 32.7702696362101], [-79.9353611720623, 32.7702902450113], [-79.9353871294605, 32.7700292501473], [-79.9354011973635, 32.7698761275114], [-79.9350314330663, 32.7698492852306], [-79.9347665020568, 32.7698300572486], [-79.9345088867275, 32.7698113198856], [-79.934487757663, 32.7698097614412], [-79.9342569582992, 32.7697930617023], [-79.9340277867041, 32.7697763748106], [-79.9340277541828, 32.7697790385457], [-79.9340277216725, 32.7697817013791], [-79.9340268768851, 32.7697842732632], [-79.9340268444078, 32.7697869333913], [-79.934025997518, 32.7697895900295], [-79.9340259660866, 32.7697921644924], [-79.9340259335652, 32.7697948282275], [-79.9340250877537, 32.7697974839733], [-79.9340250552323, 32.7698001477083], [-79.9340242104886, 32.7698027159854], [-79.9340241779672, 32.7698053797205], [-79.9340241454567, 32.7698080425538], [-79.934023299634, 32.7698106992013], [-79.9340232682025, 32.7698132736643], [-79.9340232356811, 32.7698159373993], [-79.9340223899023, 32.7698185904399], [-79.9340223573808, 32.7698212541749], [-79.9340223259052, 32.7698238322449], [-79.9340214811496, 32.7698264889016], [-79.9340214486721, 32.7698291490297], [-79.9340214161506, 32.7698318127648], [-79.9340205703386, 32.7698344685105], [-79.934020538896, 32.7698370438752], [-79.9340205063855, 32.7698397067086], [-79.934020473864, 32.7698423704436], [-79.9340196280848, 32.7698450234841], [-79.9340195955632, 32.7698476872192], [-79.9340195640875, 32.7698502652892], [-79.934019531566, 32.7698529290242], [-79.9340186857867, 32.7698555820648], [-79.9340186532651, 32.7698582457998], [-79.9340186207545, 32.7698609086332], [-79.9340185882329, 32.7698635723682], [-79.9340185568013, 32.7698661468312], [-79.9340177109778, 32.7698688034787], [-79.9340176784562, 32.7698714672137], [-79.9340176459786, 32.7698741273419], [-79.9340176134569, 32.7698767910769], [-79.9340175809463, 32.7698794539103], [-79.9340167351227, 32.7698821105578], [-79.9340167036799, 32.7698846859225], [-79.9340166711692, 32.7698873487558], [-79.9340166386806, 32.7698900097857], [-79.93401660617, 32.769892672619], [-79.9340165736593, 32.7698953354524], [-79.9340165411376, 32.7698979991875], [-79.93401650866, 32.7699006593156], [-79.9340156628037, 32.7699032311903], [-79.934015630293, 32.7699058940237], [-79.9340155977713, 32.7699085577588], [-79.9340155652936, 32.7699112178869], [-79.9340155327719, 32.769913881622], [-79.9340155002612, 32.7699165444554], [-79.9340154677395, 32.7699192081905], [-79.9340154352618, 32.7699218683186], [-79.934015403786, 32.7699244463885], [-79.9340153713083, 32.7699271065167], [-79.9340153387866, 32.7699297702518], [-79.9340153062758, 32.7699324330852], [-79.9340152737541, 32.7699350968203], [-79.9340152412764, 32.7699377569484], [-79.9340152087547, 32.7699404206835], [-79.9340151762439, 32.7699430835169], [-79.9340151437222, 32.769945747252], [-79.9340151122794, 32.7699483226167], [-79.9340150797576, 32.7699509863518], [-79.9340150472359, 32.7699536500869], [-79.9340150147582, 32.769956310215], [-79.9340149822364, 32.7699589739502], [-79.9340149497257, 32.7699616367835], [-79.934014917204, 32.7699643005186], [-79.9340148847262, 32.7699669606468], [-79.9340148532504, 32.7699695387167], [-79.9340148207396, 32.7699722015501], [-79.9340147882179, 32.7699748652852], [-79.9340147557402, 32.7699775254134], [-79.9340147232184, 32.7699801891485], [-79.9340146907076, 32.7699828519819], [-79.9340146581859, 32.769985515717], [-79.9340154400784, 32.7699881829421], [-79.9340154086026, 32.7699907610121], [-79.9340153761139, 32.7699934220419], [-79.9340153436031, 32.7699960848753], [-79.9340153110814, 32.7699987486104], [-79.9340152785706, 32.7700014114439], [-79.9340152460819, 32.7700040724737], [-79.9340160268743, 32.7700067423948], [-79.9340159953985, 32.7700093204647], [-79.9340159628768, 32.7700119841998], [-79.9340159303991, 32.770014644328], [-79.9340158978773, 32.7700173080631], [-79.9340166640053, 32.7700211790996], [-79.9340166168191, 32.7700250439503], [-79.934016568565, 32.7700289962695], [-79.9340165213787, 32.7700328611201], [-79.9340172874739, 32.7700367348619], [-79.9340172402877, 32.7700405997125], [-79.934018006416, 32.770044470749], [-79.9340179592408, 32.770048334698], [-79.9340179120547, 32.7700521995486], [-79.93401867815, 32.7700560732903], [-79.9340202670068, 32.7700590920484], [-79.9340243083571, 32.7700612763382], [-79.9340275332778, 32.7700636221561], [-79.9340315704131, 32.7700659768556], [-79.9340347942547, 32.7700684985216], [-79.9340380149601, 32.770071102227], [-79.9340412356866, 32.7700738790848], [-79.9340444553459, 32.7700766559332], [-79.9340476729032, 32.7700795175356], [-79.9340500771669, 32.7700825461046], [-79.9340532936782, 32.7700855808499], [-79.93405569584, 32.7700886941729], [-79.9340580958888, 32.7700918931518], [-79.9340604970046, 32.7700951796177], [-79.9340628960514, 32.7700985481326], [-79.9340644807045, 32.7701019988321], [-79.9340668776165, 32.7701054548062]]], "type": "Polygon"}, "id": "1", "properties": {"OBJECTID": 431, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8026.826171875, "Shape__Length": 412.361911459625, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9338660666983, 32.7696977947857, -79.9329461260618, 32.7703840501805], "geometry": {"coordinates": [[[-79.9329724756655, 32.7701373189941], [-79.932973138897, 32.7701496059606], [-79.9332016595846, 32.7701531476144], [-79.9332022535685, 32.7701711047101], [-79.9333063859407, 32.7701696076394], [-79.9334072986669, 32.7701653336149], [-79.9334219475894, 32.7701646884745], [-79.933418558876, 32.7701092547321], [-79.9336089895198, 32.7701012942752], [-79.93362587083, 32.7703840501805], [-79.9337235609674, 32.7703772578345], [-79.9337093200168, 32.7701446867918], [-79.9337066384743, 32.7700978482939], [-79.9338310477645, 32.7701010799922], [-79.9338343649773, 32.7700959549222], [-79.9338368436605, 32.77009271369], [-79.9338393234109, 32.7700894724671], [-79.9338418021591, 32.7700863133023], [-79.9338442808953, 32.7700832425172], [-79.9338475697545, 32.7700802644673], [-79.9338500463549, 32.7700772811413], [-79.9338533352342, 32.7700744762436], [-79.9338566209436, 32.7700717560907], [-79.9338566534702, 32.7700690923555], [-79.9338558726821, 32.7700664224335], [-79.9338559052088, 32.7700637586984], [-79.9338559376914, 32.7700610985702], [-79.933855970218, 32.7700584348352], [-79.9338551883839, 32.7700558505782], [-79.9338552209106, 32.7700531868431], [-79.9338552533932, 32.770050526715], [-79.9338552859199, 32.7700478629799], [-79.9338545051321, 32.7700451930579], [-79.9338545376587, 32.7700425293228], [-79.9338545701413, 32.7700398691947], [-79.933854602668, 32.7700372054595], [-79.9338538229476, 32.7700345355468], [-79.9338538554743, 32.7700318718117], [-79.933853887957, 32.7700292116836], [-79.9338539204836, 32.7700265479485], [-79.9338539530104, 32.7700238842134], [-79.9338531721897, 32.7700212169966], [-79.9338532047164, 32.7700185532615], [-79.9338532372321, 32.7700158904282], [-79.9338532676337, 32.7700134007286], [-79.9338532980793, 32.7700109074221], [-79.9338533284918, 32.7700084168208], [-79.933852544523, 32.7700059200231], [-79.9338525749356, 32.7700034294218], [-79.9338526053702, 32.770000937017], [-79.9338526357828, 32.7699984464157], [-79.9338526661954, 32.7699959558144], [-79.933852696597, 32.7699934661148], [-79.9338527269985, 32.7699909764153], [-79.9338527574331, 32.7699884840105], [-79.9338519745428, 32.7699859863205], [-79.9338520049553, 32.7699834957191], [-79.933852035357, 32.7699810060196], [-79.9338520658026, 32.769978512713], [-79.9338520962042, 32.7699760230135], [-79.9338521266168, 32.7699735324122], [-79.9338521570183, 32.7699710427126], [-79.933852187464, 32.7699685494061], [-79.9338522178655, 32.7699660597066], [-79.9338522482671, 32.769963570007], [-79.9338522787127, 32.7699610767005], [-79.9338523091253, 32.7699585860991], [-79.9338523395269, 32.7699560963996], [-79.9338523699395, 32.7699536057984], [-79.9338524003741, 32.7699511133935], [-79.9338524307867, 32.7699486227923], [-79.9338524611992, 32.769946132191], [-79.9338524916008, 32.7699436424914], [-79.9338525220024, 32.7699411527918], [-79.933852552448, 32.7699386594853], [-79.9338525828495, 32.7699361697858], [-79.9338526132621, 32.7699336791845], [-79.9338526436637, 32.7699311894849], [-79.9338526741092, 32.7699286961784], [-79.9338527045108, 32.7699262064788], [-79.9338527359584, 32.7699236311142], [-79.933852766404, 32.7699211378076], [-79.9338527968055, 32.7699186481081], [-79.9338528272181, 32.7699161575068], [-79.9338528576637, 32.7699136642003], [-79.9338528880652, 32.7699111745008], [-79.9338529184668, 32.7699086848012], [-79.9338529488793, 32.7699061941999], [-79.9338529793139, 32.7699037017952], [-79.9338530097264, 32.7699012111939], [-79.933853040128, 32.7698987214943], [-79.9338538838426, 32.7698962379818], [-79.9338539142441, 32.7698937482822], [-79.9338539446897, 32.7698912549757], [-79.9338539751022, 32.7698887643744], [-79.9338540055037, 32.7698862746749], [-79.9338540359052, 32.7698837849753], [-79.9338540663507, 32.7698812916689], [-79.9338540967632, 32.7698788010676], [-79.933854941534, 32.7698763184661], [-79.9338549719794, 32.7698738251596], [-79.9338550023809, 32.7698713354601], [-79.9338550327824, 32.7698688457605], [-79.9338550631949, 32.7698663551592], [-79.9338550936404, 32.7698638618527], [-79.9338559373436, 32.7698613792419], [-79.933855967745, 32.7698588895424], [-79.9338559981575, 32.7698563989411], [-79.933856028592, 32.7698539065364], [-79.9338560590044, 32.7698514159351], [-79.9338569016512, 32.7698489324132], [-79.9338569614189, 32.7698440377775], [-79.9338569918203, 32.769841548078], [-79.9338570222658, 32.7698390547715], [-79.9338578659797, 32.7698365712589], [-79.9338578963811, 32.7698340815594], [-79.9338579268265, 32.7698315882529], [-79.9338579572279, 32.7698290985534], [-79.9338588009307, 32.7698266159425], [-79.9338588313431, 32.7698241253413], [-79.9338588617884, 32.7698216320348], [-79.9338588921898, 32.7698191423353], [-79.9338597358924, 32.7698166597244], [-79.9338597663048, 32.7698141691232], [-79.9338597967171, 32.7698116785219], [-79.9338606404527, 32.7698091932058], [-79.9338606708651, 32.7698067026046], [-79.9338607012663, 32.7698042129051], [-79.9338607316676, 32.7698017232056], [-79.933861574335, 32.7697993253581], [-79.9338616047803, 32.7697968320516], [-79.9338616351926, 32.7697943414503], [-79.933862478895, 32.7697918588395], [-79.9338625093402, 32.7697893655331], [-79.9338625397415, 32.7697868758335], [-79.9338633834437, 32.7697843932227], [-79.9338634138669, 32.7697819017197], [-79.9338642869353, 32.7697770141727], [-79.9338643173695, 32.7697745217679], [-79.9338651610826, 32.7697720382553], [-79.9338651914838, 32.7697695485558], [-79.9338652218959, 32.7697670579546], [-79.9338660666983, 32.7697645726478], [-79.9336856533854, 32.7697514908451], [-79.9335873205762, 32.7697443631497], [-79.933395530602, 32.7697304070587], [-79.9332801321919, 32.7697220120328], [-79.9331752982797, 32.7697143989403], [-79.9329461260618, 32.7696977947857], [-79.9329642936977, 32.7700081392041], [-79.9329724756655, 32.7701373189941]]], "type": "Polygon"}, "id": "2", "properties": {"OBJECTID": 432, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5687.0859375, "Shape__Length": 388.599079776523, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9319001626525, 32.7693941649093, -79.9287475548896, 32.7704636592337], "geometry": {"coordinates": [[[-79.9289489248691, 32.7695112771758], [-79.9287475548896, 32.7700067836736], [-79.9319001626525, 32.7704636592337], [-79.9317990888727, 32.769608836748], [-79.9290871002034, 32.7693952574836], [-79.929077365801, 32.7693941649093], [-79.9290752160327, 32.7693943354732], [-79.9290566837646, 32.7693943806422], [-79.9290450261581, 32.7693959604983], [-79.9290352747715, 32.7693982541612], [-79.9290305174036, 32.7693997185723], [-79.9290198138225, 32.7694039302161], [-79.9290139929166, 32.7694068174282], [-79.929007072925, 32.7694108926534], [-79.9290005941665, 32.7694154587322], [-79.9289934724317, 32.7694215351651], [-79.9289881326829, 32.7694270536334], [-79.9289808185595, 32.769436631107], [-79.928973971236, 32.7694496621852], [-79.9289489248691, 32.7695112771758]]], "type": "Polygon"}, "id": "3", "properties": {"OBJECTID": 434, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 32673.35546875, "Shape__Length": 866.826681732177, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9329874775406, 32.7696234278871, -79.9319622056595, 32.7705185595374], "geometry": {"coordinates": [[[-79.9329611997473, 32.7696960143898], [-79.9319622056595, 32.7696234278871], [-79.9320544791572, 32.7704797119234], [-79.9323702191405, 32.7705185595374], [-79.9323301633592, 32.7700080619968], [-79.9325684044422, 32.7700094540327], [-79.9325674131979, 32.7701331409946], [-79.9326192391891, 32.7701334408309], [-79.9327593599039, 32.7701342504086], [-79.9329874775406, 32.7701355686301], [-79.9329611997473, 32.7696960143898]]], "type": "Polygon"}, "id": "4", "properties": {"OBJECTID": 435, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8141.1640625, "Shape__Length": 476.627831125394, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9353611720623, 32.7700080619968, -79.9323301633592, 32.7706838513022], "geometry": {"coordinates": [[[-79.9323702191405, 32.7705185595374], [-79.9323707969429, 32.7705245572708], [-79.9326161679244, 32.7705400006877], [-79.9327689879557, 32.7705480329291], [-79.9329974068394, 32.7705599899865], [-79.9332266369469, 32.7705720420714], [-79.9334322959096, 32.7705827690271], [-79.9336387661178, 32.770593588383], [-79.9337363107291, 32.7705987314359], [-79.9338297908676, 32.7706036703416], [-79.9338517386625, 32.770604806761], [-79.9339736689197, 32.7706113670158], [-79.9340955970605, 32.7706179271304], [-79.9342199662354, 32.7706245940661], [-79.9342784919634, 32.7706277679994], [-79.9343435210199, 32.7706312564859], [-79.9344134278556, 32.7706349578763], [-79.9344719536417, 32.7706381281101], [-79.9344776447252, 32.7706384356087], [-79.9347304455206, 32.7706519762048], [-79.9350637189708, 32.7706699108121], [-79.9353230232915, 32.7706838513022], [-79.9353416292864, 32.7704921110346], [-79.9353611720623, 32.7702902450113], [-79.935085682396, 32.7702696362101], [-79.9350060444469, 32.7702636184384], [-79.9347484340469, 32.7702442810118], [-79.9344900104667, 32.7702249350566], [-79.9344826980597, 32.7702243573144], [-79.9343624253022, 32.7702153220383], [-79.9342389025411, 32.770206084273], [-79.9342411225763, 32.770157483023], [-79.9342433530768, 32.77010802422], [-79.9340668776165, 32.7701054548062], [-79.9340684622693, 32.7701089929837], [-79.934070045888, 32.7701125284466], [-79.9340716284829, 32.7701161477712], [-79.9340732099882, 32.7701198563678], [-79.934073977133, 32.7701235569662], [-79.9340747453672, 32.7701272557703], [-79.9340755125336, 32.7701310420431], [-79.9340762807674, 32.7701348283252], [-79.934077047934, 32.770138614598], [-79.9340778151006, 32.7701424008708], [-79.934077767895, 32.7701462675249], [-79.9340777217573, 32.7701500467105], [-79.9340776693335, 32.7701543407887], [-79.9340776274011, 32.7701577755101], [-79.9340775812633, 32.7701615546957], [-79.9340767218099, 32.7701653276958], [-79.9340758612996, 32.7701691872627], [-79.9340750018576, 32.7701728718831], [-79.934074142415, 32.7701766439815], [-79.9340732840182, 32.7701803304147], [-79.9340716133837, 32.7701840097699], [-79.9340699427387, 32.7701876025489], [-79.9340682720716, 32.7701911971313], [-79.9340666014373, 32.7701947890086], [-79.9340649318162, 32.7701982104479], [-79.9340624510247, 32.7702016248185], [-79.9340607824817, 32.7702050453653], [-79.9340591243861, 32.7702076101624], [-79.934057469461, 32.7702099152589], [-79.934054177445, 32.7702130646354], [-79.934051698745, 32.7702162201976], [-79.9340492221144, 32.7702192062329], [-79.9340459311553, 32.7702221815645], [-79.9340434576725, 32.7702249971804], [-79.9340401698609, 32.7702278020926], [-79.9340368830516, 32.7702304374685], [-79.9340335983878, 32.7702330719613], [-79.9340303147592, 32.7702355342126], [-79.934026218871, 32.7702379037111], [-79.9340229384017, 32.7702401071632], [-79.9340188435265, 32.7702423062237], [-79.9340155662049, 32.7702443392564], [-79.9340114744781, 32.7702462804194], [-79.9340073870106, 32.7702480475654], [-79.9340032995104, 32.7702497299384], [-79.9339992120218, 32.7702513239318], [-79.9339951287044, 32.7702527511219], [-79.9339902310257, 32.7702540828352], [-79.9339861498329, 32.7702553359896], [-79.9339828850735, 32.770256165182], [-79.9339796245295, 32.7702568239646], [-79.9339755453856, 32.7702577344394], [-79.9339706571955, 32.7702584638092], [-79.9339665812113, 32.7702591154848], [-79.9339616961369, 32.7702595896624], [-79.9339576243804, 32.7702598950702], [-79.9339527413875, 32.7702601113409], [-79.9339486727461, 32.7702602490342], [-79.9339437929131, 32.7702602065057], [-79.9339389151941, 32.7702599908431], [-79.9339348518266, 32.7702596966034], [-79.9339299772236, 32.7702592257485], [-79.933925916972, 32.7702586763166], [-79.9339210455291, 32.7702579466624], [-79.9339169895057, 32.7702570509626], [-79.9339121211789, 32.7702560661162], [-79.9339080672807, 32.7702549963806], [-79.9339040154085, 32.770253760725], [-79.9338999646265, 32.7702524357971], [-79.9338951026203, 32.7702509333522], [-79.9338910549876, 32.7702493505269], [-79.9338870104705, 32.7702475999874], [-79.9338829649199, 32.7702457592554], [-79.9338797347551, 32.7702438426611], [-79.9338756933993, 32.7702417458444], [-79.9338716531227, 32.7702395606572], [-79.9338684271536, 32.7702373005003], [-79.9338643899935, 32.7702348601209], [-79.9338611671739, 32.7702323420667], [-79.9338579454446, 32.7702297347402], [-79.9338547247065, 32.7702270462573], [-79.933851506148, 32.770224266708], [-79.9338482864571, 32.7702214050817], [-79.9338458821849, 32.7702184648884], [-79.9338426677892, 32.7702153444817], [-79.9338402645642, 32.7702122311452], [-79.9338378634857, 32.7702090294475], [-79.9338354634096, 32.7702057456917], [-79.9338330643898, 32.7702024628468], [-79.9338314787097, 32.7701990094296], [-79.9338290807482, 32.7701955525399], [-79.9338274971268, 32.7701920179755], [-79.9338259135165, 32.7701884825094], [-79.9338243320418, 32.770184859584], [-79.9338227483886, 32.7701812402469], [-79.9338219801975, 32.7701775387359], [-79.933820399737, 32.7701737453726], [-79.9338196315132, 32.7701700465668], [-79.9338188643575, 32.7701662602924], [-79.9338180972019, 32.770162474018], [-79.933818144419, 32.7701586073639], [-79.9338173772634, 32.7701548210895], [-79.9338174244586, 32.7701509562389], [-79.9338174706076, 32.7701471770534], [-79.9338183541871, 32.7701414292482], [-79.9338184013821, 32.7701375643976], [-79.9338192608354, 32.7701337923011], [-79.9338201202886, 32.7701300202046], [-79.9338209797417, 32.7701262481081], [-79.9338218381487, 32.7701225616767], [-79.9338226965336, 32.7701188770488], [-79.9338243682446, 32.7701151977063], [-79.9338260389313, 32.7701116022255], [-79.9338277095739, 32.7701080103516], [-79.9338293791703, 32.7701045041428], [-79.9338310477645, 32.7701010799922], [-79.9337066384743, 32.7700978482939], [-79.9337093200168, 32.7701446867918], [-79.9337235609674, 32.7703772578345], [-79.93362587083, 32.7703840501805], [-79.9336089895198, 32.7701012942752], [-79.933418558876, 32.7701092547321], [-79.9334219475894, 32.7701646884745], [-79.9334072986669, 32.7701653336149], [-79.9333063859407, 32.7701696076394], [-79.9332022535685, 32.7701711047101], [-79.9332016595846, 32.7701531476144], [-79.932988210404, 32.7701478354617], [-79.9329874775406, 32.7701355686301], [-79.9327593599039, 32.7701342504086], [-79.9326192391891, 32.7701334408309], [-79.9325674131979, 32.7701331409946], [-79.9325684044422, 32.7700094540327], [-79.9323301633592, 32.7700080619968], [-79.9323702191405, 32.7705185595374]]], "type": "Polygon"}, "id": "5", "properties": {"OBJECTID": 436, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 18612.0234375, "Shape__Length": 936.48607698243, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9377404956958, 32.7698897977619, -79.935457628852, 32.7710652195778], "geometry": {"coordinates": [[[-79.9355077618822, 32.7706759231089], [-79.9355110130085, 32.7706760370756], [-79.9355167051314, 32.7706762597624], [-79.9355199562576, 32.7706763737289], [-79.9355232084622, 32.7706764868028], [-79.9355264617012, 32.7706766025911], [-79.9355297128274, 32.7706767165573], [-79.9355354049835, 32.7706769365381], [-79.9355386561208, 32.7706770496023], [-79.9355419082814, 32.7706771662827], [-79.9355451615424, 32.770677280267], [-79.9355484126797, 32.7706773933309], [-79.9355516648513, 32.7706775091094], [-79.9355573548958, 32.770677814745], [-79.9355606071005, 32.7706779278178], [-79.9355638603395, 32.7706780436052], [-79.9355671114548, 32.7706781584722], [-79.9355703636605, 32.7706783590227], [-79.9355760536821, 32.770678578983], [-79.9355793069432, 32.7706786929664], [-79.9355825580706, 32.7706788944092], [-79.935585809208, 32.7706790074722], [-79.9355890613918, 32.7706792098258], [-79.9355947514244, 32.7706794288834], [-79.9355980036522, 32.7706796276298], [-79.935601255813, 32.7706797443086], [-79.9356045059172, 32.7706799421345], [-79.9356077591344, 32.7706800597241], [-79.9356110092385, 32.7706802575499], [-79.9356167003177, 32.7706805658972], [-79.9356199504108, 32.7706807646244], [-79.9356232026157, 32.7706808776956], [-79.9356264547996, 32.7706810800482], [-79.9356297048709, 32.7706812805787], [-79.9356353959832, 32.77068158622], [-79.9356386460434, 32.7706817876519], [-79.9356418982715, 32.7706819863971], [-79.9356451504434, 32.770682102173], [-79.9356484005367, 32.7706823008995], [-79.9356540905718, 32.7706826949102], [-79.9356573406432, 32.7706828954399], [-79.9356605928713, 32.7706830941847], [-79.935663844032, 32.77068329292], [-79.9356670951257, 32.7706834095878], [-79.935672785172, 32.7706838026959], [-79.9356760352654, 32.7706840014216], [-79.9356792874606, 32.7706842028711], [-79.9356825386324, 32.7706844007042], [-79.9356857876486, 32.7706846878], [-79.9356890398768, 32.770684886544], [-79.9356947277446, 32.7706852832395], [-79.9356979799729, 32.7706854819832], [-79.9357012311118, 32.7706856825211], [-79.9357044822727, 32.7706858812554], [-79.9357077323564, 32.7706861683599], [-79.9357134213357, 32.7706865614569], [-79.9357166724967, 32.7706867601908], [-79.9357199225805, 32.7706870472951], [-79.9357231737195, 32.7706872478323], [-79.9357264248805, 32.770687446566], [-79.9357321128158, 32.7706879253272], [-79.9357353639439, 32.7706881267659], [-79.9357386140718, 32.7706884102627], [-79.9357418651999, 32.7706886117012], [-79.9357451152838, 32.7706888988047], [-79.9357508032303, 32.7706893766634], [-79.9357540543475, 32.7706895790033], [-79.9357573044755, 32.7706898624996], [-79.9357605556037, 32.7706900639376], [-79.9357638056877, 32.7706903510406], [-79.9357694936344, 32.7706908288984], [-79.9357727437624, 32.7706911123943], [-79.9357759938466, 32.7706913994971], [-79.9357792449749, 32.7706916009346], [-79.935782495103, 32.7706918844302], [-79.9357881819728, 32.7706924506574], [-79.9357914331341, 32.7706926493894], [-79.9357946832293, 32.77069293559], [-79.9357979333136, 32.7706932226921], [-79.9358036201725, 32.7706937898205], [-79.9358068703008, 32.7706940733154], [-79.9358101203962, 32.7706943595155], [-79.9358133704806, 32.7706946466173], [-79.9358166205759, 32.7706949328172], [-79.935822307468, 32.7706954972395], [-79.9358255575635, 32.7706957834391], [-79.9358288076919, 32.7706960669335], [-79.9358320577764, 32.7706963540348], [-79.935835307872, 32.7706966402342], [-79.9358409947314, 32.7706972073608], [-79.9358442448599, 32.7706974908548], [-79.9358474949555, 32.7706977770539], [-79.935850743996, 32.7706981498198], [-79.9358539940916, 32.7706984360188], [-79.9358596809952, 32.7706989995375], [-79.9358629300469, 32.7706993714014], [-79.9358661801316, 32.7706996585017], [-79.9358694302273, 32.7706999447003], [-79.935875116054, 32.7707005965887], [-79.9358783661828, 32.7707008800818], [-79.9358816152456, 32.7707012510434], [-79.9358848653305, 32.7707015381433], [-79.9358881143823, 32.7707019100064], [-79.9358938002093, 32.770702561894], [-79.9358970503382, 32.7707028453866], [-79.9359002993571, 32.7707032199547], [-79.9359035494751, 32.7707035043488], [-79.9359067985271, 32.7707038762115], [-79.9359124843543, 32.7707045280982], [-79.9359157334174, 32.7707048990589], [-79.9359189835025, 32.7707051861579], [-79.9359222325546, 32.7707055580202], [-79.935927917349, 32.7707062946696], [-79.9359311674782, 32.7707065781612], [-79.9359344164864, 32.7707069536302], [-79.9359376655497, 32.7707073245903], [-79.9359409157022, 32.7707076937562], [-79.9359466004627, 32.770708345632], [-79.9359498505823, 32.7707087175029], [-79.9359530985673, 32.770709089355], [-79.9359563476197, 32.7707094612164], [-79.9359620324147, 32.7707101978642], [-79.9359652814672, 32.7707105697254], [-79.935968531587, 32.7707109415957], [-79.9359717795722, 32.7707113134474], [-79.9359774654348, 32.7707120501038], [-79.93598071342, 32.7707124219553], [-79.9359839614067, 32.7707128812846], [-79.9359872104924, 32.7707132504399], [-79.9359904595011, 32.7707136259073], [-79.9359961442967, 32.7707143625536], [-79.9359993933934, 32.7707147308068], [-79.9360026413692, 32.7707151910374], [-79.9360058904221, 32.7707155628974], [-79.9360115741849, 32.7707163843064], [-79.9360148232268, 32.770716757068], [-79.9360180722908, 32.770717128026], [-79.9360213213671, 32.7707175855601], [-79.9360270050959, 32.7707183221956], [-79.936030253116, 32.7707187788185], [-79.9360335021251, 32.7707191542848], [-79.9360367501453, 32.7707196109075], [-79.9360424339087, 32.7707204323149], [-79.9360456829509, 32.7707208050757], [-79.9360489320385, 32.7707212617073], [-79.9360521789476, 32.7707217219273], [-79.9360554290777, 32.7707220054157], [-79.9360586791983, 32.7707223772836], [-79.9360619271843, 32.7707227491329], [-79.9360651772816, 32.7707230353262], [-79.9360708620784, 32.770723771969], [-79.9360741111208, 32.770724144729], [-79.9360773612526, 32.7707245156947], [-79.9360806102716, 32.7707248027801], [-79.9360838593252, 32.7707251746381], [-79.936087109446, 32.7707255465053], [-79.9360903574323, 32.7707259183538], [-79.9360936075532, 32.7707262902208], [-79.9360968566068, 32.7707266620785], [-79.9361001045931, 32.7707270339268], [-79.9361033547141, 32.7707274057935], [-79.9361066027005, 32.7707277776416], [-79.9361122875325, 32.7707285990552], [-79.9361155355079, 32.7707289718048], [-79.9361187845727, 32.7707293427602], [-79.9361220346829, 32.7707297155281], [-79.9361252826805, 32.770730086474], [-79.9361285306905, 32.770730543996], [-79.9361317808118, 32.770730915862], [-79.9361350287984, 32.7707312877094], [-79.9361382778869, 32.7707317443387], [-79.9361415269409, 32.7707321161951], [-79.9361447748946, 32.7707324907475], [-79.9361480239722, 32.7707329482782], [-79.9361537066593, 32.770733770573], [-79.9361569567917, 32.7707341415366], [-79.9361602048021, 32.7707345990577], [-79.936163452789, 32.7707349709043], [-79.9361667018339, 32.7707354311398], [-79.9361699498553, 32.7707358877589], [-79.9361731978423, 32.7707362596053], [-79.9361764469312, 32.7707367162335], [-79.9361796949072, 32.7707370889814], [-79.9361829439962, 32.7707375456095], [-79.9361886266854, 32.7707384553806], [-79.9361918747071, 32.7707389119992], [-79.9361951237616, 32.7707392838542], [-79.9361983707051, 32.7707397413651], [-79.9362016197942, 32.7707401979927], [-79.9362048677721, 32.7707406582178], [-79.9362081147156, 32.7707411157284], [-79.9362113638048, 32.7707415723557], [-79.9362146117829, 32.7707420325807], [-79.9362178587375, 32.7707424891892], [-79.9362235425277, 32.7707433962628], [-79.9362267894824, 32.7707438528712], [-79.9362300385279, 32.7707443131049], [-79.93623328655, 32.7707447697224], [-79.9362365345612, 32.7707452272415], [-79.9362397815067, 32.7707457722292], [-79.936243029529, 32.7707462288464], [-79.9362462775403, 32.7707466863652], [-79.9362495255626, 32.7707471429823], [-79.9362527724973, 32.7707476888713], [-79.9362584551989, 32.7707485977375], [-79.9362617021667, 32.7707491409211], [-79.9362649501891, 32.7707495975377], [-79.936268197135, 32.7707501425246], [-79.9362714440902, 32.7707505991318], [-79.9362746931691, 32.7707510566592], [-79.9362779401151, 32.7707516016459], [-79.9362811870704, 32.7707520582527], [-79.9362844350838, 32.7707526032486], [-79.9362901156971, 32.7707535959656], [-79.9362933637106, 32.7707541409611], [-79.9362966106897, 32.7707546832421], [-79.9362998587126, 32.7707551398578], [-79.9363031056479, 32.7707556857455], [-79.9363079761059, 32.7707565000683], [-79.9363128475966, 32.7707572296274], [-79.9363185282122, 32.7707583098211], [-79.9363217751587, 32.7707588548066], [-79.9363250221382, 32.7707593970868], [-79.9363282690848, 32.7707599420721], [-79.9363315160644, 32.7707604843521], [-79.9363347630111, 32.7707610293373], [-79.9363380099908, 32.7707615716172], [-79.9363412569376, 32.7707621166021], [-79.9363469375538, 32.7707631967945], [-79.9363501845336, 32.770763739074], [-79.9363534314805, 32.7707642840587], [-79.9363566784605, 32.7707648263381], [-79.9363599254075, 32.7707653713225], [-79.9363631713109, 32.7707660019721], [-79.9363664182909, 32.7707665442512], [-79.9363720989078, 32.7707676244424], [-79.9363753448224, 32.7707682541899], [-79.9363785918026, 32.7707687964687], [-79.9363818387499, 32.7707693414526], [-79.9363850846537, 32.7707699721016], [-79.936388331634, 32.7707705143801], [-79.9363915775488, 32.7707711441272], [-79.9363972571227, 32.7707723099824], [-79.9364005041141, 32.7707728513588], [-79.9364037500182, 32.7707734820073], [-79.9364069969658, 32.7707740269906], [-79.9364102428699, 32.7707746576389], [-79.936413488818, 32.7707752846802], [-79.9364167357658, 32.7707758296631], [-79.9364224143077, 32.7707770802806], [-79.9364256612556, 32.7707776252634], [-79.9364289072039, 32.7707782523042], [-79.9364321531083, 32.770778882952], [-79.9364353990128, 32.7707795135997], [-79.9364386449283, 32.7707801433455], [-79.9364443234709, 32.7707813939619], [-79.936447570419, 32.7707819389441], [-79.9364508163237, 32.7707825695913], [-79.9364540622724, 32.7707831966315], [-79.9364573081882, 32.7707838263769], [-79.936460554093, 32.7707844570239], [-79.9364662315597, 32.7707857960097], [-79.9364694775086, 32.7707864230495], [-79.936472724481, 32.7707870537054], [-79.9364759693297, 32.770787683441], [-79.9364792152787, 32.7707883104805], [-79.9364824611839, 32.770788941127], [-79.9364881386512, 32.7707902801118], [-79.9364913845675, 32.7707909098562], [-79.9364954417185, 32.7707917171003], [-79.9365011212951, 32.7707928829507], [-79.9365043661682, 32.7707935983599], [-79.9365100446796, 32.7707948516785], [-79.9365132895528, 32.7707955670876], [-79.9365165355024, 32.7707961941261], [-79.9365197803647, 32.7707969104367], [-79.9365230262814, 32.7707975401803], [-79.9365287027175, 32.7707989639267], [-79.9365319486343, 32.77079959367], [-79.9365351935079, 32.7708003090785], [-79.9365384383815, 32.7708010244869], [-79.9365416842875, 32.7708016551317], [-79.9365473607242, 32.7708030788772], [-79.9365506055979, 32.7708037942852], [-79.9365538525715, 32.770804424939], [-79.936557096378, 32.7708051403376], [-79.9365603412959, 32.7708058521384], [-79.9365660177331, 32.770807275883], [-79.9365692626072, 32.7708079912906], [-79.9365725085377, 32.7708087076091], [-79.9365757523445, 32.7708094230072], [-79.9365789971858, 32.7708101411197], [-79.9365846736236, 32.7708115648634], [-79.936587918498, 32.7708122802704], [-79.9365911644398, 32.7708129956867], [-79.9365944082909, 32.7708137074774], [-79.9365976531654, 32.7708144228842], [-79.9366033285275, 32.7708159349974], [-79.9366065734022, 32.770816650404], [-79.9366098193443, 32.7708173658197], [-79.9366130621194, 32.7708181659803], [-79.9366187396146, 32.7708195906335], [-79.9366219823899, 32.7708203907937], [-79.9366252283323, 32.7708211062091], [-79.9366284721311, 32.7708219099854], [-79.9366317159389, 32.7708226253821], [-79.9366373924133, 32.7708241338961], [-79.936640635178, 32.7708249349576], [-79.9366438811206, 32.7708256503725], [-79.9366471238963, 32.7708264505322], [-79.9366528003274, 32.7708279626524], [-79.9366560441706, 32.7708287628211], [-79.9366592879789, 32.7708294782169], [-79.9366625328786, 32.7708302792965], [-79.9366682061432, 32.7708318761609], [-79.9366714520863, 32.770832591575], [-79.9366746948626, 32.7708333917339], [-79.9366779386952, 32.7708341928038], [-79.936683614095, 32.7708357896861], [-79.9366868568715, 32.7708365898446], [-79.9366901017717, 32.7708373909234], [-79.9366933445483, 32.7708381910818], [-79.9366990199485, 32.7708397879634], [-79.9367022627144, 32.7708405890233], [-79.9367055076258, 32.7708413891999], [-79.9367087514262, 32.7708421929742], [-79.9367144257926, 32.7708437871406], [-79.936717669637, 32.7708445873076], [-79.9367209113379, 32.7708454758357], [-79.9367265867721, 32.7708470700108], [-79.9367298295384, 32.7708478710699], [-79.9367330733852, 32.7708487587145], [-79.936736317219, 32.7708495597828], [-79.9367419905103, 32.7708512423182], [-79.9367452343552, 32.7708520424846], [-79.9367484760567, 32.7708529310119], [-79.9367517209581, 32.7708537320891], [-79.9367573931935, 32.7708554137129], [-79.9367606370629, 32.7708562995532], [-79.9367638808972, 32.7708571006208], [-79.9367695542004, 32.7708587822532], [-79.9367727969698, 32.7708596707891], [-79.9367760387047, 32.7708605566106], [-79.9367817130648, 32.7708622391535], [-79.936784954767, 32.7708631276799], [-79.9367881986369, 32.7708640135195], [-79.9367914424827, 32.7708648136846], [-79.9367971147439, 32.770866580981], [-79.9368003575138, 32.7708674695162], [-79.9368035992493, 32.7708683553369], [-79.9368092725783, 32.7708701226419], [-79.936812514281, 32.7708710111676], [-79.9368157581515, 32.7708718970065], [-79.9368214293463, 32.7708736642925], [-79.9368279159874, 32.7708754386656], [-79.9368335882499, 32.7708772059603], [-79.9368368310206, 32.7708780944945], [-79.9368400738243, 32.7708789803235], [-79.9368457450112, 32.770880835988], [-79.9368489878151, 32.7708817218168], [-79.9368522305861, 32.7708826103507], [-79.9368579018174, 32.7708844624076], [-79.9368611446215, 32.7708853482361], [-79.9368668158094, 32.7708872038996], [-79.9368700575815, 32.7708881744912], [-79.9368733003529, 32.7708890630245], [-79.9368789715742, 32.7708909159822], [-79.9368822133137, 32.7708918892787], [-79.9368854561184, 32.7708927751066], [-79.9368911262641, 32.7708947164342], [-79.9368943690689, 32.7708956022617], [-79.9368976108087, 32.7708965755578], [-79.9369032820421, 32.7708984276126], [-79.9369065237711, 32.7708994018103], [-79.9369121939616, 32.7709013395299], [-79.9369154357019, 32.7709023128255], [-79.9369186784743, 32.7709032013577], [-79.9369243486654, 32.7709051390767], [-79.936927590395, 32.7709061132738], [-79.9369332605535, 32.7709080536977], [-79.9369365023272, 32.7709090242875], [-79.936939744057, 32.7709099984843], [-79.9369454142161, 32.7709119389076], [-79.9369486559901, 32.7709129094971], [-79.9369543251065, 32.7709149355852], [-79.9369575668477, 32.7709159088797], [-79.9369632370405, 32.770917846597], [-79.9369664787709, 32.770918820793], [-79.9369697194694, 32.7709198797525], [-79.9369753896298, 32.7709218201743], [-79.9369786303285, 32.7709228791335], [-79.9369842994902, 32.7709249016133], [-79.9369875412212, 32.7709258758087], [-79.9369932103503, 32.7709279009933], [-79.9369964520815, 32.7709288751885], [-79.937002121244, 32.7709308976674], [-79.9370053619324, 32.7709319575276], [-79.9370110310624, 32.7709339827113], [-79.937014271762, 32.7709350416695], [-79.9370175124616, 32.7709361006277], [-79.9370231815812, 32.7709381267125], [-79.937026422292, 32.7709391847687], [-79.9370320914559, 32.7709412072462], [-79.9370353321121, 32.7709422698108], [-79.9370410002005, 32.7709443806583], [-79.9370442409338, 32.7709454369105], [-79.937049910057, 32.7709475504721], [-79.9370531497232, 32.7709486067148], [-79.9370588188468, 32.770950720276], [-79.9370620585132, 32.7709517765184], [-79.9370677276373, 32.7709538900792], [-79.9370733946599, 32.7709560009159], [-79.9370766364613, 32.7709570571766], [-79.9370823024195, 32.7709592554815], [-79.9370855441882, 32.7709603144471], [-79.9370912101688, 32.7709625109483], [-79.9370944519378, 32.7709635699136], [-79.9370976915722, 32.7709646288603], [-79.937103359688, 32.7709668253794], [-79.9371090256804, 32.7709690209779], [-79.9371122674169, 32.770970082648], [-79.9371179333987, 32.7709722791479], [-79.9371235994163, 32.7709745604202], [-79.9371268401298, 32.7709756184737], [-79.9371325071468, 32.7709778176874], [-79.9371357468176, 32.7709789614058], [-79.9371414128361, 32.7709812426773], [-79.9371470809541, 32.7709834391943], [-79.9371503205814, 32.7709845865194], [-79.9371559876435, 32.770986782125], [-79.937159227315, 32.7709879258429], [-79.9371648933018, 32.7709902098185], [-79.9371705582435, 32.770992491981], [-79.9371737989827, 32.7709936357077], [-79.9371794639029, 32.7709959196734], [-79.9371851309909, 32.7709982009522], [-79.9371883695519, 32.7709993482669], [-79.9371940355758, 32.7710017170139], [-79.9371997005299, 32.7710039982734], [-79.93720294127, 32.7710051419993], [-79.9372086051489, 32.7710075116288], [-79.9372142722384, 32.7710097929062], [-79.9372175097685, 32.7710110249836], [-79.9372231757939, 32.7710133937293], [-79.9372288418059, 32.7710156758985], [-79.9372345056972, 32.771018044625], [-79.9372377453625, 32.7710192767204], [-79.9372434092762, 32.7710216436431], [-79.937249075303, 32.7710240123876], [-79.93725473922, 32.7710264667877], [-79.9372579788942, 32.7710276105029], [-79.9372636428007, 32.7710300658043], [-79.9372693077612, 32.7710324345385], [-79.9372749716793, 32.7710348889377], [-79.9372806345303, 32.7710373433274], [-79.937283874197, 32.7710385754215], [-79.9372895381132, 32.7710409423421], [-79.9372952030998, 32.7710433967496], [-79.9373008670303, 32.7710458502458], [-79.9373065288072, 32.7710483930046], [-79.9373097685076, 32.7710496223929], [-79.9373154313606, 32.7710520767809], [-79.937321095306, 32.7710546168524], [-79.937326759227, 32.7710570712492], [-79.9373324221166, 32.7710596104091], [-79.9373356607175, 32.7710608424927], [-79.9373388962016, 32.77106233067], [-79.937342133771, 32.7710636475168], [-79.9373453776293, 32.7710644476672], [-79.9373486245827, 32.7710649935272], [-79.9373518747051, 32.7710651913067], [-79.9373551290255, 32.7710652195778], [-79.9373583853845, 32.7710649926474], [-79.9373616459689, 32.7710644185475], [-79.9373649096811, 32.7710635874519], [-79.9373681796708, 32.7710622405617], [-79.9373714506811, 32.7710608098097], [-79.9373747321723, 32.7710585178972], [-79.9373780178008, 32.771055886029], [-79.9373796726543, 32.7710535808874], [-79.9373821418745, 32.7710511962441], [-79.9375421914854, 32.7707994398611], [-79.9377362264089, 32.7704953212356], [-79.9377378843581, 32.7704927599955], [-79.9377387311057, 32.7704900185588], [-79.9377395778861, 32.7704872744167], [-79.9377404267322, 32.7704844482257], [-79.937740461214, 32.7704816140609], [-79.9377404956958, 32.770478779896], [-79.9377397158244, 32.7704759368555], [-79.9377389359233, 32.7704731839981], [-79.9377373406739, 32.7704705918013], [-79.9377357443603, 32.7704680870731], [-79.937734148072, 32.7704656680193], [-79.9377309240978, 32.7704631473525], [-79.9377277011693, 32.7704606284983], [-79.9377244719686, 32.7704587129166], [-79.9377188122302, 32.7704558293014], [-79.9377131525532, 32.7704531161332], [-79.9377107282724, 32.7704517215867], [-79.9377050675647, 32.7704490931815], [-79.9377018299875, 32.77044769067], [-79.9376969825439, 32.7704450729346], [-79.9376937439247, 32.7704437560879], [-79.9376913207228, 32.7704423606486], [-79.9376880842384, 32.7704410438203], [-79.9376832346719, 32.7704384251641], [-79.9376775749863, 32.770435712896], [-79.937671912135, 32.7704330853725], [-79.9376686756183, 32.770431771249], [-79.9376638260859, 32.7704291498868], [-79.9376581642698, 32.7704265250771], [-79.9376525035544, 32.7704238975713], [-79.9376492649476, 32.7704225798218], [-79.9376444164287, 32.7704199629768], [-79.9376387546139, 32.7704173381662], [-79.9376330939106, 32.7704147097579], [-79.9376298552825, 32.7704133938113], [-79.937625007854, 32.7704107751713], [-79.9376193439306, 32.7704082360158], [-79.9376136821611, 32.7704056075972], [-79.9376080193057, 32.7704030684504], [-79.937602357526, 32.770400440933], [-79.9375991189128, 32.7703992115618], [-79.9375942704407, 32.7703965911079], [-79.9375886086647, 32.7703940510678], [-79.9375829447434, 32.7703915119106], [-79.9375772818899, 32.7703889727624], [-79.9375716190805, 32.770386430007], [-79.9375659562385, 32.7703838899566], [-79.9375627186909, 32.7703825731158], [-79.937557868114, 32.7703801257942], [-79.9375522052619, 32.7703775866449], [-79.937546542421, 32.7703750465936], [-79.9375408796135, 32.7703725038368], [-79.9375352157309, 32.7703700494501], [-79.93752955288, 32.7703675102997], [-79.9375238889981, 32.7703650559126], [-79.9375182261589, 32.7703625158599], [-79.9375125622776, 32.7703600614722], [-79.9375068983856, 32.770357607986], [-79.937501234505, 32.7703551535977], [-79.9374955706246, 32.7703526992092], [-79.9374899067555, 32.7703502439187], [-79.9374842428758, 32.7703477895297], [-79.9374785789964, 32.7703453351404], [-79.9374729151063, 32.7703428816526], [-79.9374672512276, 32.7703404272628], [-79.9374615863176, 32.7703380576362], [-79.9374559224395, 32.7703356032458], [-79.9374502575301, 32.7703332336187], [-79.9374445936526, 32.7703307792279], [-79.9374389286999, 32.7703284132072], [-79.937433264823, 32.7703259588157], [-79.9374275999039, 32.7703235900893], [-79.9374219349961, 32.7703212204608], [-79.9374162700447, 32.7703188544391], [-79.9374106051375, 32.7703164848101], [-79.9374073665631, 32.7703152527286], [-79.9374017016235, 32.7703128858044], [-79.9373960356635, 32.7703106027417], [-79.9373903707574, 32.7703082331118], [-79.9373847058077, 32.7703058670885], [-79.9373790409022, 32.7703034974581], [-79.9373733749544, 32.7703012134926], [-79.9373701353165, 32.7703000688788], [-79.9373644704008, 32.7702977001494], [-79.9373588044208, 32.7702954188884], [-79.9373531384741, 32.770293134922], [-79.9373474735703, 32.77029076529], [-79.9373418075912, 32.7702884840283], [-79.9373385679433, 32.7702873403154], [-79.9373329019976, 32.770285056348], [-79.9373272360193, 32.7702827750855], [-79.9373215700742, 32.7702804911176], [-79.9373159030291, 32.7702782098453], [-79.9373126644931, 32.7702770625341], [-79.9373069964059, 32.7702748669266], [-79.9373013314962, 32.7702725856723], [-79.9372956655524, 32.7702703017031], [-79.9372924248741, 32.7702692427525], [-79.9372867588978, 32.7702669614882], [-79.9372835192624, 32.7702658168721], [-79.9372786624436, 32.7702638835305], [-79.9372754259474, 32.7702624810169], [-79.9372721842023, 32.7702614220565], [-79.9372665193274, 32.7702591380953], [-79.9372608512424, 32.7702569424857], [-79.9372576116323, 32.7702558835433], [-79.9372519435588, 32.7702536870316], [-79.9372462776092, 32.7702514914398], [-79.9372406106365, 32.7702492922316], [-79.9372373709914, 32.770248148516], [-79.9372317029434, 32.7702460376778], [-79.9372260348711, 32.7702438411648], [-79.9372227962938, 32.7702426974582], [-79.9372171271792, 32.77024058661], [-79.9372114612752, 32.7702383874097], [-79.9372082194988, 32.7702373311527], [-79.9372025525525, 32.7702352176171], [-79.9371968844708, 32.7702330220046], [-79.9371936448623, 32.7702319630606], [-79.9371879757492, 32.770229852211], [-79.9371823077146, 32.7702277404688], [-79.9371790670282, 32.7702266824169], [-79.9371734000259, 32.7702244859107], [-79.9371677330374, 32.7702223759805], [-79.937164491306, 32.7702213161154], [-79.9371588232861, 32.7702192909483], [-79.937155581544, 32.7702182319847], [-79.9371499145782, 32.7702161202502], [-79.9371442454562, 32.7702140103004], [-79.9371410058491, 32.770212951355], [-79.9371353356737, 32.7702109279716], [-79.9371296686979, 32.7702088171379], [-79.9371264269566, 32.7702077581736], [-79.9371207589384, 32.7702057330047], [-79.9371175171972, 32.7702046740401], [-79.9371118491905, 32.770202647969], [-79.9371086074495, 32.7702015890042], [-79.9371029394322, 32.7701995638345], [-79.9370972692914, 32.7701975377441], [-79.9370940286097, 32.7701965671679], [-79.9370883584584, 32.7701945419789], [-79.9370851188637, 32.7701934821303], [-79.9370794487127, 32.7701914569409], [-79.9370762080754, 32.7701904827572], [-79.9370729663024, 32.7701894264967], [-79.9370689175721, 32.7701879294417], [-79.9370648688199, 32.7701864341901], [-79.9370616271046, 32.7701854608985], [-79.937055958033, 32.7701834348155], [-79.937052716285, 32.7701824642289], [-79.9370470472139, 32.7701804381455], [-79.9370438054989, 32.7701794648535], [-79.9370381353523, 32.7701775271401], [-79.9370348936486, 32.7701765529461], [-79.9370292245673, 32.7701745277636], [-79.9370259828637, 32.7701735535693], [-79.9370203127179, 32.7701716158551], [-79.9370170710036, 32.7701706425623], [-79.9370114008581, 32.7701687048477], [-79.937008159155, 32.7701677306529], [-79.9370024890429, 32.7701657902327], [-79.9369992472961, 32.7701648196447], [-79.9369935771843, 32.770162879224], [-79.9369903354816, 32.7701619050288], [-79.9369846642944, 32.7701600529781], [-79.9369814225589, 32.7701590814878], [-79.936975752448, 32.7701571410663], [-79.9369725107347, 32.7701561677724], [-79.9369668395591, 32.7701543148191], [-79.9369635978571, 32.7701533406232], [-79.936957926671, 32.7701514885713], [-79.9369546849581, 32.7701505152769], [-79.9369490137833, 32.7701486623227], [-79.9369457720707, 32.7701476890281], [-79.9369401008963, 32.7701458360736], [-79.9369368591948, 32.770144861877], [-79.9369311880098, 32.7701430098238], [-79.9369279452325, 32.7701421239973], [-79.9369222740918, 32.7701402683368], [-79.9369190323797, 32.7701392950414], [-79.9369133611954, 32.7701374429874], [-79.9369101184186, 32.7701365571604], [-79.9369068756857, 32.7701356677264], [-79.9369012045019, 32.7701338156719], [-79.9368979617583, 32.7701329271394], [-79.9368922905749, 32.7701310750844], [-79.9368890477985, 32.7701301892569], [-79.9368833766593, 32.7701283335946], [-79.9368801338831, 32.7701274477668], [-79.9368744616683, 32.7701256804745], [-79.9368712188923, 32.7701247946464], [-79.9368679761493, 32.7701239061131], [-79.9368623049671, 32.7701220540568], [-79.9368590622242, 32.7701211655233], [-79.9368533900103, 32.7701193982299], [-79.9368501472457, 32.7701185114997], [-79.9368469045031, 32.7701176229658], [-79.9368412322786, 32.7701158565736], [-79.9368379895033, 32.7701149707448], [-79.9368323172902, 32.7701132034505], [-79.936829074559, 32.7701123140144], [-79.9368234013031, 32.7701106323848], [-79.9368201585281, 32.7701097465555], [-79.9368169157862, 32.7701088580208], [-79.9368112424978, 32.7701071790959], [-79.936807999756, 32.7701062905611], [-79.936802327555, 32.7701045223636], [-79.9367990837374, 32.7701037221989], [-79.9367958409959, 32.7701028336637], [-79.9367901677192, 32.770101153836], [-79.936786924967, 32.7701002662024], [-79.9367836821928, 32.7700993803721], [-79.9367780089496, 32.7700976978386], [-79.9367747651324, 32.7700968976733], [-79.9367690918895, 32.7700952151394], [-79.9367658491486, 32.7700943266034], [-79.9367626053426, 32.770093525536], [-79.9367569320892, 32.7700918439034], [-79.9367536893156, 32.7700909580723], [-79.9367504455099, 32.7700901570045], [-79.9367447722569, 32.7700884753713], [-79.9367415284404, 32.7700876752051], [-79.9367358551987, 32.7700859926697], [-79.9367326113824, 32.7700851925032], [-79.936729367577, 32.7700843914349], [-79.9367236943359, 32.770082708899], [-79.9367204505527, 32.770081906027], [-79.9367172067476, 32.7700811049583], [-79.9367115324285, 32.7700794233143], [-79.9367082896909, 32.7700786222547], [-79.9367050448077, 32.7700778220782], [-79.9366993715915, 32.7700762252156], [-79.9366961267195, 32.7700754241371], [-79.9366904524273, 32.7700739156445], [-79.9366872085878, 32.7700730298023], [-79.9366839648163, 32.7700722260276], [-79.9366807220682, 32.770071425869], [-79.9366750466853, 32.7700698316919], [-79.9366718039703, 32.7700690288279], [-79.9366685590988, 32.7700682277487], [-79.9366628858509, 32.7700666335896], [-79.9366596410015, 32.7700658307067], [-79.9366563961543, 32.7700651153016], [-79.9366507218395, 32.7700635211327], [-79.9366474780358, 32.7700627200622], [-79.936644234256, 32.7700620046661], [-79.9366385589073, 32.7700604077821], [-79.9366353161601, 32.7700596076223], [-79.9366320702569, 32.7700588913056], [-79.9366263970322, 32.7700572953413], [-79.9366231511293, 32.7700565790243], [-79.936619907315, 32.7700557788549], [-79.9366142319691, 32.7700542694477], [-79.9366109871227, 32.7700535540414], [-79.936607744409, 32.7700527511757], [-79.9366020679962, 32.7700512417587], [-79.9365988242173, 32.7700505263613], [-79.9365955793362, 32.7700497261819], [-79.9365899050584, 32.7700482167829], [-79.936586659145, 32.7700475013667], [-79.9365834142991, 32.7700467859597], [-79.9365801705185, 32.7700459830839], [-79.9365744941306, 32.77004455934], [-79.9365712503282, 32.7700437582675], [-79.9365680054715, 32.7700430437619], [-79.936562329084, 32.7700416200174], [-79.9365590852818, 32.7700408189446], [-79.9365558404363, 32.7700401035369], [-79.9365525955909, 32.770039388129], [-79.9365469192038, 32.7700379643839], [-79.9365436743586, 32.7700372489758], [-79.9365404305568, 32.7700364479025], [-79.9365347541701, 32.7700350241568], [-79.936531509325, 32.7700343087484], [-79.936528264469, 32.7700335942417], [-79.936525019624, 32.7700328788331], [-79.9365193432488, 32.770031454185], [-79.936516098404, 32.7700307387762], [-79.9365128535593, 32.7700300233673], [-79.9365096097819, 32.7700293079676], [-79.9365039312854, 32.7700279698763], [-79.9364974415963, 32.7700265390578], [-79.9364941967519, 32.7700258236484], [-79.9364885203666, 32.7700243999006], [-79.9364852744898, 32.7700237692544], [-79.9364820307129, 32.7700230538539], [-79.9364787848014, 32.7700223384349], [-79.9364731084075, 32.770021003066], [-79.9364698624962, 32.7700202876467], [-79.9364666176522, 32.7700195722366], [-79.9364633717757, 32.7700189415898], [-79.9364576953914, 32.7700175178405], [-79.9364544495042, 32.7700168880952], [-79.9364512046604, 32.7700161726847], [-79.9364479587842, 32.7700155420375], [-79.9364422813239, 32.770014206658], [-79.9364390364804, 32.7700134912471], [-79.9364357906044, 32.7700128605996], [-79.936432545761, 32.7700121451886], [-79.9364268672905, 32.7700108927682], [-79.9364236224473, 32.770010177357], [-79.9364203765385, 32.7700095494142], [-79.9364171316953, 32.7700088340028], [-79.9364114532364, 32.77000758068], [-79.9364082073498, 32.7700069509335], [-79.9364049625068, 32.7700062355217], [-79.9364017165984, 32.7700056075786], [-79.9363960381397, 32.770004354255], [-79.936392793297, 32.7700036388429], [-79.9363895474107, 32.7700030090959], [-79.9363863015024, 32.7700023811524], [-79.9363830556272, 32.7700017505034], [-79.9363773771692, 32.770000497179], [-79.9363741312502, 32.7699998701369], [-79.9363708864077, 32.7699991547242], [-79.9363676405327, 32.7699985240749], [-79.9363619620752, 32.7699972707498], [-79.9363587162003, 32.7699966401002], [-79.9363554702705, 32.7699960139593], [-79.9363522233631, 32.769995468073], [-79.9363489774775, 32.7699948383249], [-79.9363432989874, 32.7699935877042], [-79.9363400531128, 32.7699929570541], [-79.9363368071943, 32.769992330011], [-79.9363335613198, 32.7699916993607], [-79.9363303154454, 32.7699910687104], [-79.9363246359122, 32.7699899037539], [-79.9363213900269, 32.7699892740051], [-79.9363181441527, 32.7699886433545], [-79.9363148971909, 32.7699881019759], [-79.9363116513167, 32.7699874713251], [-79.936305971795, 32.7699863054661], [-79.93630272591, 32.7699856757168], [-79.9362994789686, 32.7699850450564], [-79.9362962330854, 32.7699845027848], [-79.9362905524858, 32.7699833378175], [-79.9362873076793, 32.7699827071753], [-79.9362840607619, 32.7699821621889], [-79.9362808138098, 32.7699815324298], [-79.9362775679268, 32.7699809901577], [-79.9362718873387, 32.7699798242878], [-79.9362686425324, 32.7699791936451], [-79.9362653955713, 32.7699786522652], [-79.9362621496978, 32.7699780216131], [-79.9362589027807, 32.7699774766261], [-79.9362532221821, 32.769976311657], [-79.9362499763324, 32.769975766679], [-79.9362467293934, 32.7699752234951], [-79.9362434824326, 32.7699746821147], [-79.9362402365594, 32.7699740514619], [-79.9362369896426, 32.7699735064744], [-79.9362313090791, 32.769972426277], [-79.9362280621294, 32.7699718839943], [-79.9362248162565, 32.7699712533413], [-79.9362215692959, 32.7699707119601], [-79.936218321312, 32.7699701669628], [-79.9362126418163, 32.7699690867738], [-79.9362093937995, 32.7699685444814], [-79.9362061479504, 32.7699679995022], [-79.936202901001, 32.7699674572189], [-79.9361996530174, 32.769966912221], [-79.9361939735331, 32.7699658311295], [-79.9361907255055, 32.7699652897383], [-79.9361874796567, 32.7699647447587], [-79.9361842327076, 32.7699642024749], [-79.9361809847241, 32.7699636574764], [-79.9361777388754, 32.7699631124966], [-79.9361720561802, 32.7699621197558], [-79.9361688103316, 32.7699615747756], [-79.9361655633827, 32.7699610324914], [-79.9361623153995, 32.7699604874925], [-79.9361590684742, 32.7699600308824], [-79.9361558204581, 32.7699594885886], [-79.9361501399311, 32.7699584931602], [-79.936146891937, 32.7699579490626], [-79.9361436449995, 32.769957405876], [-79.9361403981183, 32.7699569456586], [-79.9361371500915, 32.7699564042659], [-79.9361339042104, 32.7699558619901], [-79.9361282215491, 32.7699548665421], [-79.9361249735898, 32.7699544072167], [-79.9361217277198, 32.7699538640388], [-79.9361184786604, 32.7699534074091], [-79.9361152328124, 32.7699528624275], [-79.9361119848204, 32.769952405807], [-79.9361063032269, 32.7699514103672], [-79.936103055235, 32.7699509537464], [-79.9360998072525, 32.7699504087459], [-79.9360965603279, 32.7699499521342], [-79.9360933123236, 32.7699494089369], [-79.9360900643757, 32.7699489487089], [-79.936084381695, 32.7699480425402], [-79.9360811347911, 32.7699474966467], [-79.9360778878667, 32.7699470400345], [-79.9360746388187, 32.769946582502], [-79.9360713908271, 32.7699461258803], [-79.9360681449797, 32.7699455808975], [-79.936062461243, 32.7699446738168], [-79.9360592143628, 32.7699442135972], [-79.936055965304, 32.7699437569658], [-79.9360527173236, 32.769943299442], [-79.9360494703996, 32.769942842829], [-79.9360462213739, 32.7699423834923], [-79.9360429733935, 32.7699419259681], [-79.9360372907247, 32.7699410188955], [-79.9360340427335, 32.769940562273], [-79.9360307958536, 32.7699401020525], [-79.9360275467951, 32.7699396454205], [-79.936024298815, 32.7699391878958], [-79.9360210508239, 32.7699387312729], [-79.9360178028769, 32.7699382710428], [-79.9360121191646, 32.7699374496343], [-79.9360088711847, 32.7699369921092], [-79.9360056231937, 32.7699365354859], [-79.9360023752468, 32.7699360752554], [-79.9359991272559, 32.7699356186319], [-79.9359958793105, 32.7699352458792], [-79.935991006801, 32.7699345162983], [-79.9359869476079, 32.7699339678457], [-79.9359836985938, 32.7699335076055], [-79.9359804506142, 32.7699330500797], [-79.9359772026469, 32.76993267913], [-79.9359739536, 32.7699322215948], [-79.9359707045765, 32.7699318497339], [-79.935965021942, 32.7699309399528], [-79.9359617729185, 32.7699305680916], [-79.9359585249281, 32.769930111467], [-79.9359552759157, 32.769929738704], [-79.9359520279253, 32.7699292820792], [-79.935948778902, 32.7699289102177], [-79.9359455298787, 32.7699285383562], [-79.9359422819324, 32.7699280781242], [-79.9359365982215, 32.769927256712], [-79.9359333491983, 32.7699268848501], [-79.9359301001751, 32.7699265129882], [-79.935926851152, 32.7699261411262], [-79.9359236031729, 32.7699256835989], [-79.9359203541388, 32.7699253126384], [-79.9359171051267, 32.7699249398743], [-79.9359114214163, 32.7699241184611], [-79.9359081723933, 32.7699237465986], [-79.9359049233704, 32.7699233747359], [-79.9359016743475, 32.7699230028732], [-79.9358984253246, 32.7699226310104], [-79.9358951763017, 32.7699222591475], [-79.9358919283119, 32.7699218025211], [-79.9358886793221, 32.7699214279528], [-79.9358829945901, 32.7699206903999], [-79.9358797455234, 32.7699203221435], [-79.9358764965447, 32.7699199466732], [-79.935873247478, 32.7699195784167], [-79.9358699984994, 32.7699192029462], [-79.9358667494328, 32.7699188346895], [-79.9358634993771, 32.7699185475892], [-79.9358602503546, 32.7699181757254], [-79.935854565612, 32.7699174390729], [-79.9358513165895, 32.7699170672088], [-79.935848067567, 32.7699166953447], [-79.9358448175006, 32.7699164091456], [-79.9358415684782, 32.7699160372813], [-79.9358383194558, 32.7699156654169], [-79.9358350704334, 32.7699152935524], [-79.935831820378, 32.7699150064513], [-79.9358261356358, 32.7699142697975], [-79.9358228855695, 32.7699139835978], [-79.9358196365143, 32.7699136144381], [-79.9358163875251, 32.7699132398679], [-79.9358131374368, 32.7699129554715], [-79.9358098884147, 32.7699125836063], [-79.9358066383485, 32.7699122974062], [-79.9358033893264, 32.7699119255409], [-79.9357977035515, 32.7699112736492], [-79.9357944534964, 32.7699109865471], [-79.9357912044304, 32.7699106182884], [-79.9357879543753, 32.7699103311861], [-79.9357847053534, 32.7699099593202], [-79.9357814552873, 32.7699096731195], [-79.9357782062764, 32.7699093003517], [-79.9357749562104, 32.7699090141508], [-79.9357717061115, 32.7699087306551], [-79.935766020337, 32.7699080787618], [-79.9357627702821, 32.7699077916589], [-79.9357595202162, 32.7699075054576], [-79.9357562711945, 32.7699071335909], [-79.9357530211396, 32.7699068464877], [-79.9357497710408, 32.7699065629913], [-79.935746520975, 32.7699062767897], [-79.9357432709202, 32.7699059896862], [-79.9357400208313, 32.7699056178098], [-79.9357343350474, 32.7699050542949], [-79.9357310839144, 32.7699047680835], [-79.935727834927, 32.7699044809889], [-79.9357245848724, 32.7699041938849], [-79.9357188969772, 32.769903716025], [-79.9357148346535, 32.769903337081], [-79.9357115845549, 32.7699030535836], [-79.9357083345003, 32.7699027664792], [-79.9357026476826, 32.7699022002482], [-79.9356993976281, 32.7699019131435], [-79.9356961475296, 32.7699016296458], [-79.9356928964309, 32.7699014282061], [-79.9356896463325, 32.7699011447081], [-79.9356863952107, 32.7699008575938], [-79.9356831462126, 32.7699005713997], [-79.9356798961582, 32.7699002842945], [-79.9356766439593, 32.7699000855503], [-79.9356709582092, 32.7698995193272], [-79.9356677060104, 32.7698993205827], [-79.9356644570124, 32.7698990343881], [-79.9356612069582, 32.7698987472825], [-79.9356579547593, 32.7698985485378], [-79.9356547057724, 32.7698982614412], [-79.9356514557072, 32.769897975237], [-79.9356482035084, 32.7698977764921], [-79.9356449545216, 32.7698974893953], [-79.93563926556, 32.7698970115225], [-79.9356360155289, 32.7698968100905], [-79.9356327643965, 32.7698965238766], [-79.9356295132651, 32.7698963251404], [-79.9356262642784, 32.769896038043], [-79.9356230120797, 32.7698958392974], [-79.9356197620487, 32.7698956378651], [-79.9356165119507, 32.7698953543652], [-79.9356132597961, 32.7698951520123], [-79.9356100107985, 32.7698948658163], [-79.9356043208039, 32.7698944727053], [-79.93560107074, 32.7698942739776], [-79.9355978206861, 32.7698939868703], [-79.9355945684766, 32.7698937890257], [-79.9355913184458, 32.7698935875926], [-79.9355880662913, 32.7698933852391], [-79.9355848161935, 32.7698931017383], [-79.9355815661627, 32.769892900305], [-79.9355783139642, 32.7698927015581], [-79.9355750628661, 32.7698925001153], [-79.9355693739392, 32.769892107012], [-79.9355661228081, 32.7698919082741], [-79.9355628727774, 32.7698917068402], [-79.9355596205791, 32.769891508093], [-79.935556369481, 32.7698913066497], [-79.9355531194174, 32.7698911079207], [-79.9355498672521, 32.769890906468], [-79.9355466171884, 32.7698907077389], [-79.9355433660904, 32.7698905062953], [-79.9355401138922, 32.7698903075474], [-79.9355344260328, 32.7698899144517], [-79.9355311728342, 32.7698897977619], [-79.9355172590834, 32.7700303826501], [-79.9354911983648, 32.7702997961633], [-79.9354576990195, 32.7706456800081], [-79.9354576644305, 32.7706485168776], [-79.935457628852, 32.7706514349036], [-79.9354584086499, 32.7706541904807], [-79.9354591884367, 32.7706569469596], [-79.9354607825884, 32.7706596239496], [-79.9354623799185, 32.7706621278151], [-79.9354639761366, 32.7706645478003], [-79.9354663857089, 32.7706670587345], [-79.9354696117023, 32.7706693215545], [-79.935472842996, 32.7706712372145], [-79.9354760762891, 32.770672813802], [-79.9354793159269, 32.7706739575643], [-79.9354825607871, 32.7706746730007], [-79.9354858077144, 32.7706752189101], [-79.9354890599527, 32.7706754167576], [-79.9354947510074, 32.7706755519582], [-79.9354980042792, 32.7706756650421], [-79.9355012553724, 32.7706757817143], [-79.9355045086104, 32.7706758100253], [-79.9355077618822, 32.7706759231089]]], "type": "Polygon"}, "id": "6", "properties": {"OBJECTID": 439, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 23537.814453125, "Shape__Length": 672.789448662188, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9354085779045, 32.7711226137183, -79.934573944016, 32.7718935255387], "geometry": {"coordinates": [[[-79.9353510223088, 32.7711226137183], [-79.9351987294295, 32.771137954025], [-79.9352199781714, 32.7712631206005], [-79.9352004355515, 32.7712648416337], [-79.9350017477996, 32.7712826122954], [-79.934772931723, 32.7713031242823], [-79.9347855761911, 32.7714667874681], [-79.934716400265, 32.7714697914871], [-79.9347163666968, 32.7714725426915], [-79.934573944016, 32.7714787739822], [-79.9345770168985, 32.7718935255387], [-79.9347260631596, 32.7718778159235], [-79.9349655126252, 32.7718525835016], [-79.9350494019651, 32.7718436931012], [-79.9352627904378, 32.7718211551527], [-79.9354085779045, 32.7718057608435], [-79.9353801087212, 32.7714722221522], [-79.9353736759682, 32.771399407976], [-79.9353510223088, 32.7711226137183]]], "type": "Polygon"}, "id": "7", "properties": {"OBJECTID": 443, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6548.34375, "Shape__Length": 368.399238456506, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9303218883934, 32.770286917505, -79.9295142373501, 32.7718604821717], "geometry": {"coordinates": [[[-79.9295149647867, 32.7706442677767], [-79.9298413778924, 32.7706407776897], [-79.9298430442875, 32.7706690729042], [-79.9298645867027, 32.770671405933], [-79.92987577448, 32.7707706163495], [-79.9298912622357, 32.7709079524728], [-79.9298965163779, 32.7709545358168], [-79.9299035772076, 32.7710425309859], [-79.9299105694903, 32.7711296751255], [-79.9299139883285, 32.7711722824578], [-79.9299247966958, 32.7713069884786], [-79.9296620598275, 32.7713155632107], [-79.9297014182735, 32.7716801379453], [-79.9299012985731, 32.7716738441187], [-79.9299139470021, 32.7718604821717], [-79.9299516387477, 32.7718592950064], [-79.9301365169037, 32.7718534692772], [-79.9303218883934, 32.7718476277426], [-79.9302986093881, 32.7716613323634], [-79.9301761587896, 32.7706813604322], [-79.9301381721333, 32.7703773687274], [-79.9298231973923, 32.7703320288246], [-79.9295142373501, 32.770286917505], [-79.9295149647867, 32.7706442677767]]], "type": "Polygon"}, "id": "8", "properties": {"OBJECTID": 444, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10318.4609375, "Shape__Length": 610.631923827624, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9353510223088, 32.7707396318675, -79.9337980349286, 32.7719682769666], "geometry": {"coordinates": [[[-79.9353510223088, 32.7711226137183], [-79.9353452876938, 32.7710592559408], [-79.9353254098669, 32.7708216552149], [-79.9350002647105, 32.7708041347921], [-79.9348417539647, 32.7707957130931], [-79.9346952700799, 32.7708016494224], [-79.9346929998946, 32.7707877161515], [-79.9344759654822, 32.7707760345875], [-79.934238607806, 32.7707633152187], [-79.9341239939921, 32.7707571616802], [-79.9337980349286, 32.7707396318675], [-79.9338063271384, 32.7709931078901], [-79.9338105582107, 32.7711128894425], [-79.9338166418904, 32.7712807900915], [-79.933820082755, 32.7713986745146], [-79.9338207922209, 32.7714071858992], [-79.9338270175161, 32.7715634929012], [-79.9338288648841, 32.7716120412254], [-79.93383579818, 32.7717103718542], [-79.9338415317416, 32.771773817185], [-79.9338423020734, 32.771777257183], [-79.9338480702535, 32.7718377808719], [-79.9338692521537, 32.7719682769666], [-79.9344116811311, 32.7719110680901], [-79.9344621793747, 32.7719056667984], [-79.9345770168985, 32.7718935255387], [-79.934573944016, 32.7714787739822], [-79.9347163666968, 32.7714725426915], [-79.934716400265, 32.7714697914871], [-79.9347855761911, 32.7714667874681], [-79.934772931723, 32.7713031242823], [-79.9350017477996, 32.7712826122954], [-79.9352004355515, 32.7712648416337], [-79.9352199781714, 32.7712631206005], [-79.9351987294295, 32.771137954025], [-79.9353510223088, 32.7711226137183]]], "type": "Polygon"}, "id": "9", "properties": {"OBJECTID": 445, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 18686.96875, "Shape__Length": 638.709922969002, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9303357671313, 32.7706407776897, -79.9295149647867, 32.7719966153526], "geometry": {"coordinates": [[[-79.9295149647867, 32.7706442677767], [-79.9295163705188, 32.7713203170948], [-79.9295171256933, 32.7716859410832], [-79.9295175193337, 32.7718729724581], [-79.9295177742886, 32.7719966153526], [-79.9301441450925, 32.7719663609443], [-79.9303357671313, 32.7719570965791], [-79.9303218883934, 32.7718476277426], [-79.9301365169037, 32.7718534692772], [-79.9299516387477, 32.7718592950064], [-79.9299139470021, 32.7718604821717], [-79.9299012985731, 32.7716738441187], [-79.9297014182735, 32.7716801379453], [-79.9296620598275, 32.7713155632107], [-79.9299247966958, 32.7713069884786], [-79.9299139883285, 32.7711722824578], [-79.9299105694903, 32.7711296751255], [-79.9299035772076, 32.7710425309859], [-79.9298965163779, 32.7709545358168], [-79.9298912622357, 32.7709079524728], [-79.92987577448, 32.7707706163495], [-79.9298645867027, 32.770671405933], [-79.9298430442875, 32.7706690729042], [-79.9298413778924, 32.7706407776897], [-79.9295149647867, 32.7706442677767]]], "type": "Polygon"}, "id": "10", "properties": {"OBJECTID": 446, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7115.9921875, "Shape__Length": 581.943929875154, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9294364296867, 32.7709718447945, -79.9283420735107, 32.7720492366134], "geometry": {"coordinates": [[[-79.9294339081497, 32.7709877833254], [-79.9291037136108, 32.7709933828931], [-79.9291025269311, 32.7709788223006], [-79.9290456649718, 32.7709718447945], [-79.9290412765574, 32.7713205594438], [-79.9290136282488, 32.7713225692568], [-79.9290137004027, 32.7713665505724], [-79.9290139039123, 32.7714914573894], [-79.928856238279, 32.7714774304349], [-79.9288565747442, 32.7716436000736], [-79.9288567563965, 32.7717375548282], [-79.9288569088166, 32.7718073545803], [-79.9287746730411, 32.7718061817235], [-79.9286543773835, 32.7718024443383], [-79.9286570971053, 32.7718718787887], [-79.9285867115104, 32.7718722453136], [-79.9285869264745, 32.7719024839197], [-79.928514527424, 32.7719028661357], [-79.9283420735107, 32.7719064958779], [-79.9283526869886, 32.7720492366134], [-79.9294364296867, 32.7719916973041], [-79.9294339081497, 32.7709877833254]]], "type": "Polygon"}, "id": "11", "properties": {"OBJECTID": 447, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8707.732421875, "Shape__Length": 521.622170564637, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9294342066039, 32.7701647112186, -79.9278982469008, 32.7720733611356], "geometry": {"coordinates": [[[-79.9294339081497, 32.7709877833254], [-79.9294342066039, 32.7709491657634], [-79.9294328658323, 32.7702736166517], [-79.9286921596609, 32.7701647112186], [-79.9286320986589, 32.7703304492513], [-79.9284971071656, 32.7706189821857], [-79.9283888377104, 32.7708742648627], [-79.9282889391636, 32.7711570690454], [-79.9278982469008, 32.7720733611356], [-79.9283526869886, 32.7720492366134], [-79.9283420735107, 32.7719064958779], [-79.928514527424, 32.7719028661357], [-79.9285869264745, 32.7719024839197], [-79.9285867115104, 32.7718722453136], [-79.9286570971053, 32.7718718787887], [-79.9286543773835, 32.7718024443383], [-79.9287746730411, 32.7718061817235], [-79.9288569088166, 32.7718073545803], [-79.9288567563965, 32.7717375548282], [-79.9288565747442, 32.7716436000736], [-79.928856238279, 32.7714774304349], [-79.9290139039123, 32.7714914573894], [-79.9290137004027, 32.7713665505724], [-79.9290136282488, 32.7713225692568], [-79.9290412765574, 32.7713205594438], [-79.9290456649718, 32.7709718447945], [-79.9291025269311, 32.7709788223006], [-79.9291037136108, 32.7709933828931], [-79.9294339081497, 32.7709877833254]]], "type": "Polygon"}, "id": "12", "properties": {"OBJECTID": 448, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21762.1015625, "Shape__Length": 764.569488632677, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9286290781283, 32.7721381421594, -79.9281869854488, 32.7724912764187], "geometry": {"coordinates": [[[-79.9281869854488, 32.7721572216156], [-79.9282182487303, 32.7724775423757], [-79.9283107703077, 32.7724880134519], [-79.9283329165832, 32.7724912764187], [-79.9284151450648, 32.7724753534159], [-79.9284110669369, 32.7724386824453], [-79.9286290781283, 32.7724340267157], [-79.9286094456372, 32.7721381421594], [-79.9284209876522, 32.7721466541616], [-79.9281869854488, 32.7721572216156]]], "type": "Polygon"}, "id": "13", "properties": {"OBJECTID": 451, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1922.353515625, "Shape__Length": 180.321698937225, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9415863219589, 32.7715132005851, -79.9396556919406, 32.7728246262917], "geometry": {"coordinates": [[[-79.9398298189259, 32.7718423565063], [-79.9396556919406, 32.7721149515651], [-79.939827177806, 32.7721938360368], [-79.9399986629576, 32.7722727166526], [-79.9401701494481, 32.7723515122653], [-79.9403416352083, 32.7724303933034], [-79.9405131233853, 32.7725091884459], [-79.940856097494, 32.7726668636584], [-79.9410275855606, 32.7727457437469], [-79.9411990728371, 32.7728246262917], [-79.9413765362143, 32.7725449244117], [-79.9415863219589, 32.7722155980889], [-79.9414140117353, 32.7721374845403], [-79.9412425162539, 32.7720593741917], [-79.9410702066418, 32.7719813485398], [-79.9408987106745, 32.7719032404065], [-79.9407264027498, 32.7718251259013], [-79.9405549074139, 32.7717471038635], [-79.9403259711066, 32.7716434147104], [-79.94003960678, 32.7715132005851], [-79.9398298189259, 32.7718423565063]]], "type": "Polygon"}, "id": "14", "properties": {"OBJECTID": 452, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 17793.966796875, "Shape__Length": 573.345364840855, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9288975921789, 32.7725508048104, -79.9286729939385, 32.7727329039897], "geometry": {"coordinates": [[[-79.9286729939385, 32.7725513766399], [-79.9286738346409, 32.7726764252358], [-79.9288580143005, 32.7727329039897], [-79.9288769067871, 32.7726860657786], [-79.9288975921789, 32.7726814635729], [-79.9288933433722, 32.7725583628633], [-79.9286962971343, 32.7725667522993], [-79.9286957434502, 32.7725508048104], [-79.9286729939385, 32.7725513766399]]], "type": "Polygon"}, "id": "15", "properties": {"OBJECTID": 453, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 464.521484375, "Shape__Length": 90.2230787350476, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9286368336484, 32.7721572216156, -79.927703208614, 32.7727298225228], "geometry": {"coordinates": [[[-79.9281869854488, 32.7721572216156], [-79.9281149426881, 32.7721604754561], [-79.9278590654751, 32.7721720301986], [-79.9277705691568, 32.7723904662807], [-79.927703208614, 32.7725567324489], [-79.9280337877017, 32.7726689764582], [-79.9281917847593, 32.7727298225228], [-79.9282849418458, 32.7725608817999], [-79.9283141757114, 32.772560093596], [-79.9285333126534, 32.77255375876], [-79.9286368336484, 32.7725509147452], [-79.9286313009941, 32.7724674862276], [-79.9284151450648, 32.7724753534159], [-79.9283329165832, 32.7724912764187], [-79.9283107703077, 32.7724880134519], [-79.9282182487303, 32.7724775423757], [-79.9281869854488, 32.7721572216156]]], "type": "Polygon"}, "id": "16", "properties": {"OBJECTID": 454, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3657.314453125, "Shape__Length": 313.22944097041, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9294448344609, 32.772100563615, -79.9281917847593, 32.7730784034649], "geometry": {"coordinates": [[[-79.9281917847593, 32.7727298225228], [-79.928356461418, 32.7727860436697], [-79.9287770190632, 32.7729336691875], [-79.9287920729068, 32.7729389531993], [-79.9289993140288, 32.7730116953669], [-79.9291836881684, 32.7730764135905], [-79.9291890719208, 32.7730778558577], [-79.929192977716, 32.7730783869592], [-79.9291991902389, 32.7730784034649], [-79.9292042003282, 32.7730776735471], [-79.9292090155811, 32.7730762926024], [-79.9292144639503, 32.7730737718691], [-79.9292200291406, 32.7730697334678], [-79.9292674983355, 32.7730265145954], [-79.9293056113647, 32.772952194295], [-79.929389572492, 32.7727884660237], [-79.9294448344609, 32.772680701518], [-79.9294411131645, 32.772100563615], [-79.9286581802378, 32.7721359302283], [-79.9286889449274, 32.7725056372847], [-79.9288913503799, 32.7725006757682], [-79.9288933433722, 32.7725583628633], [-79.9288975921789, 32.7726814635729], [-79.9288769067871, 32.7726860657786], [-79.9288580143005, 32.7727329039897], [-79.9286738346409, 32.7726764252358], [-79.9286729939385, 32.7725513766399], [-79.9286368336484, 32.7725509147452], [-79.9285333126534, 32.77255375876], [-79.9283141757114, 32.772560093596], [-79.9282849418458, 32.7725608817999], [-79.9281917847593, 32.7727298225228]]], "type": "Polygon"}, "id": "17", "properties": {"OBJECTID": 458, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10659.37109375, "Shape__Length": 556.449450801478, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9303616316844, 32.7720569628306, -79.9293617043628, 32.7733335861361], "geometry": {"coordinates": [[[-79.9303616316844, 32.7721582055581], [-79.9303486320347, 32.7720569628306], [-79.9295169005386, 32.7720971316368], [-79.9295190792802, 32.7722484434325], [-79.92952758908, 32.7728387391256], [-79.9294627333512, 32.7729881458128], [-79.9294407917485, 32.7729892452154], [-79.9294232093593, 32.7730671568826], [-79.9293914911298, 32.7730693530181], [-79.9293617043628, 32.7731449871459], [-79.9300583764521, 32.7733335861361], [-79.9300524370135, 32.7731818446391], [-79.9300492120519, 32.7730994509411], [-79.9300127634497, 32.7731000231418], [-79.9300090854473, 32.773006780013], [-79.9300072777534, 32.7729609140095], [-79.9299586798987, 32.7729633441187], [-79.9299463757349, 32.7728152255301], [-79.92998208173, 32.7728132210534], [-79.9299699773905, 32.7726486222825], [-79.9299899036721, 32.7726475096665], [-79.9299587411611, 32.7725487206275], [-79.9299365694592, 32.7725499651043], [-79.929921944498, 32.7724519438892], [-79.9299182522304, 32.7724271995093], [-79.9299076747504, 32.7723562976063], [-79.929771055799, 32.7723629086729], [-79.9297671978126, 32.7723102357164], [-79.9297608970771, 32.7723105404224], [-79.9297593197186, 32.772289001626], [-79.9298769673106, 32.7722779643409], [-79.9298775258834, 32.772286214704], [-79.9299977226852, 32.772280394173], [-79.9299906593392, 32.7721761262682], [-79.9303616316844, 32.7721582055581]]], "type": "Polygon"}, "id": "18", "properties": {"OBJECTID": 459, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8647.796875, "Shape__Length": 591.089276625435, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9305273539771, 32.7721582055581, -79.9297593197186, 32.7734488104224], "geometry": {"coordinates": [[[-79.9300583764521, 32.7733335861361], [-79.9302513608485, 32.7733810023959], [-79.9305273539771, 32.7734488104224], [-79.9303616316844, 32.7721582055581], [-79.9299906593392, 32.7721761262682], [-79.9299977226852, 32.772280394173], [-79.9298775258834, 32.772286214704], [-79.9298769673106, 32.7722779643409], [-79.9297593197186, 32.772289001626], [-79.9297608970771, 32.7723105404224], [-79.9297671978126, 32.7723102357164], [-79.929771055799, 32.7723629086729], [-79.9299076747504, 32.7723562976063], [-79.9299182522304, 32.7724271995093], [-79.929921944498, 32.7724519438892], [-79.9299365694592, 32.7725499651043], [-79.9299587411611, 32.7725487206275], [-79.9299899036721, 32.7726475096665], [-79.9299699773905, 32.7726486222825], [-79.92998208173, 32.7728132210534], [-79.9299463757349, 32.7728152255301], [-79.9299586798987, 32.7729633441187], [-79.9300072777534, 32.7729609140095], [-79.9300090854473, 32.773006780013], [-79.9300127634497, 32.7731000231418], [-79.9300492120519, 32.7730994509411], [-79.9300524370135, 32.7731818446391], [-79.9300583764521, 32.7733335861361]]], "type": "Polygon"}, "id": "19", "properties": {"OBJECTID": 460, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8393.7421875, "Shape__Length": 483.358856369235, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9288768243236, 32.772753712703, -79.9280559958445, 32.7735033916584], "geometry": {"coordinates": [[[-79.9282084714026, 32.7731702662805], [-79.9282056779772, 32.7731407743418], [-79.9283278045061, 32.7731299518315], [-79.9283290955126, 32.7731520066979], [-79.9284643643532, 32.7731421811826], [-79.9284577822955, 32.773286908646], [-79.9284624588045, 32.7733362349011], [-79.9284782918858, 32.7735033916584], [-79.9285722523754, 32.7734961261149], [-79.9288768243236, 32.7734725770697], [-79.9288341987429, 32.7730216975088], [-79.9280559958445, 32.772753712703], [-79.9280748310269, 32.7731379585176], [-79.9281429223192, 32.7731333515863], [-79.9281468096763, 32.7731744254607], [-79.9282084714026, 32.7731702662805]]], "type": "Polygon"}, "id": "20", "properties": {"OBJECTID": 461, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4917.2109375, "Shape__Length": 352.459145874291, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9282585208273, 32.7726244032178, -79.9274245923654, 32.7735848123659], "geometry": {"coordinates": [[[-79.9280559958445, 32.772753712703], [-79.9276728330433, 32.7726244032178], [-79.9274642423464, 32.7731368315703], [-79.9274536955662, 32.7731650792684], [-79.9274471267779, 32.7732045770677], [-79.9274444936143, 32.7732654648327], [-79.9274245923654, 32.7735848123659], [-79.9279025124606, 32.7735464199593], [-79.9282585208273, 32.7735192740016], [-79.9282456730588, 32.7733765353034], [-79.9282084714026, 32.7731702662805], [-79.9281468096763, 32.7731744254607], [-79.9281429223192, 32.7731333515863], [-79.9280748310269, 32.7731379585176], [-79.9280559958445, 32.772753712703]]], "type": "Polygon"}, "id": "21", "properties": {"OBJECTID": 462, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8206.2421875, "Shape__Length": 387.941892346874, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9285900599154, 32.7735381756008, -79.9280948978353, 32.7738294683831], "geometry": {"coordinates": [[[-79.9280948978353, 32.7735523220025], [-79.9281503344836, 32.7736931802155], [-79.9282039731867, 32.7738294683831], [-79.9282653522962, 32.7738112371628], [-79.9282637753022, 32.7738003057293], [-79.9283156855625, 32.7737965273042], [-79.9283046500762, 32.773720069532], [-79.9284311376931, 32.7737108443911], [-79.9285024904423, 32.7737056399521], [-79.9285900599154, 32.7736992599275], [-79.9285668547421, 32.7735381756008], [-79.9284790434505, 32.773543049228], [-79.928407508499, 32.7735470192473], [-79.9282709237031, 32.7735545984287], [-79.9282701451377, 32.7735491499341], [-79.9282374760896, 32.7735413036236], [-79.9280948978353, 32.7735523220025]]], "type": "Polygon"}, "id": "22", "properties": {"OBJECTID": 464, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1294.126953125, "Shape__Length": 170.186428325983, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9282866571107, 32.7735523220025, -79.9273982299858, 32.7740273282266], "geometry": {"coordinates": [[[-79.9280948978353, 32.7735523220025], [-79.9274234424455, 32.7736042088761], [-79.9274148446134, 32.773750038711], [-79.9273982299858, 32.7740273282266], [-79.9282089159951, 32.7739646580109], [-79.9282866571107, 32.773958647514], [-79.9282755893092, 32.7738822138042], [-79.9282653522962, 32.7738112371628], [-79.9282039731867, 32.7738294683831], [-79.9281503344836, 32.7736931802155], [-79.9280948978353, 32.7735523220025]]], "type": "Polygon"}, "id": "23", "properties": {"OBJECTID": 468, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4845.3671875, "Shape__Length": 296.02260589195, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9306289302816, 32.7733749020641, -79.9298011159321, 32.7743516283178], "geometry": {"coordinates": [[[-79.9298573564226, 32.7733749020641], [-79.9299110692854, 32.7738372584848], [-79.9298011159321, 32.7738487518287], [-79.9298555295235, 32.774110066526], [-79.9298620220796, 32.7741510801649], [-79.9298480055453, 32.7741663509682], [-79.9298655798532, 32.7742776378514], [-79.9298772640287, 32.7743516283178], [-79.9300074341397, 32.7743371787613], [-79.9301882626108, 32.7743171135814], [-79.9306289302816, 32.7742679667007], [-79.9306178947524, 32.7741727789394], [-79.9306044307782, 32.7740766266287], [-79.9305985269059, 32.7740274394372], [-79.9305709088637, 32.7738249885474], [-79.9305531920186, 32.7736776027831], [-79.9305524302646, 32.773673384554], [-79.9305344893954, 32.7735442923563], [-79.9303373928367, 32.7734981590714], [-79.9302887263667, 32.7734868240069], [-79.9302173559686, 32.7734696223386], [-79.9301492389206, 32.7734523634076], [-79.9299935491631, 32.7734126033306], [-79.9298573564226, 32.7733749020641]]], "type": "Polygon"}, "id": "24", "properties": {"OBJECTID": 470, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8950.740234375, "Shape__Length": 401.188980005903, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9299110692854, 32.7731561641669, -79.9290086037337, 32.7746049607948], "geometry": {"coordinates": [[[-79.9298573564226, 32.7733749020641], [-79.9290935936441, 32.7731561641669], [-79.9290086037337, 32.7733130085536], [-79.929062632942, 32.7737896730618], [-79.9291070677896, 32.7743416442893], [-79.9291193399385, 32.7744870527028], [-79.9291270037232, 32.7746049607948], [-79.9292828587462, 32.7745868210827], [-79.9294734733028, 32.7745646953394], [-79.9295476014535, 32.7745560668573], [-79.9296380217633, 32.7745455192922], [-79.9297602120219, 32.7745312968756], [-79.9298237757583, 32.7745239213364], [-79.9298090973024, 32.7744312925943], [-79.9298876575187, 32.774422143544], [-79.9298808343156, 32.7743789274372], [-79.9298772640287, 32.7743516283178], [-79.9298655798532, 32.7742776378514], [-79.9298480055453, 32.7741663509682], [-79.9298620220796, 32.7741510801649], [-79.9298555295235, 32.774110066526], [-79.9298011159321, 32.7738487518287], [-79.9299110692854, 32.7738372584848], [-79.9298573564226, 32.7733749020641]]], "type": "Polygon"}, "id": "25", "properties": {"OBJECTID": 471, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15158.720703125, "Shape__Length": 534.861026737078, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9289703823179, 32.7735207198972, -79.9273592680718, 32.7746513208809], "geometry": {"coordinates": [[[-79.9273982299858, 32.7740273282266], [-79.9273969261241, 32.7740490879999], [-79.9273922858913, 32.7741267557559], [-79.9273873045354, 32.7742099451644], [-79.9283069934803, 32.7741388680648], [-79.9283097539823, 32.7741552199761], [-79.9273863189184, 32.7742265672673], [-79.9273592680718, 32.7746513208809], [-79.9277517785258, 32.7746079495455], [-79.9278379958394, 32.7745952733077], [-79.9279309932976, 32.7745816003812], [-79.9281234387633, 32.7745533179181], [-79.9283158554622, 32.7745250204723], [-79.9284862995994, 32.7744999545291], [-79.9285568699559, 32.7744895765849], [-79.9287378091149, 32.77447115946], [-79.9289703823179, 32.7744474855409], [-79.9288813746899, 32.7735207198972], [-79.9285668547421, 32.7735381756008], [-79.9285900599154, 32.7736992599275], [-79.9285024904423, 32.7737056399521], [-79.9284311376931, 32.7737108443911], [-79.9283046500762, 32.773720069532], [-79.9283156855625, 32.7737965273042], [-79.9282637753022, 32.7738003057293], [-79.9282653522962, 32.7738112371628], [-79.9282755893092, 32.7738822138042], [-79.9282866571107, 32.773958647514], [-79.9282089159951, 32.7739646580109], [-79.9273982299858, 32.7740273282266]]], "type": "Polygon"}, "id": "26", "properties": {"OBJECTID": 472, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16046.1953125, "Shape__Length": 818.163337741542, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9306862767532, 32.7742953141067, -79.9291270037232, 32.7748759231592], "geometry": {"coordinates": [[[-79.9299211649514, 32.7744112701381], [-79.9299211226986, 32.7744118433356], [-79.9299151093179, 32.77437510408], [-79.9298808343156, 32.7743789274372], [-79.9298876575187, 32.774422143544], [-79.9298090973024, 32.7744312925943], [-79.9298237757583, 32.7745239213364], [-79.9297602120219, 32.7745312968756], [-79.9296380217633, 32.7745455192922], [-79.9295476014535, 32.7745560668573], [-79.9294734733028, 32.7745646953394], [-79.9292828587462, 32.7745868210827], [-79.9291270037232, 32.7746049607948], [-79.9291536470428, 32.7748759231592], [-79.929280303436, 32.7748615076392], [-79.9292908959366, 32.7748600528043], [-79.929430217523, 32.7748417726949], [-79.9294456911228, 32.7748402775952], [-79.9295197973973, 32.7748334526066], [-79.929580895371, 32.7748260835704], [-79.9296713201573, 32.7748151933198], [-79.9297104219393, 32.7748105509983], [-79.9298024733833, 32.7747997623613], [-79.9298961515151, 32.7747888995053], [-79.9299360666096, 32.7747842651285], [-79.9299735374142, 32.7747799556626], [-79.9300533675494, 32.7747706895506], [-79.9301087572742, 32.7747644724703], [-79.9302276859219, 32.7747509109618], [-79.93034416821, 32.7747377536129], [-79.9303523132241, 32.7747368824164], [-79.9304606472594, 32.7747248576573], [-79.9305380298738, 32.7747161722565], [-79.9305795715943, 32.7747115518912], [-79.9306862767532, 32.774699685845], [-79.9306674116734, 32.7745796048294], [-79.9306481709558, 32.7744238718906], [-79.9306326624674, 32.7742953141067], [-79.9301854773448, 32.774345179582], [-79.9300776913065, 32.774357034832], [-79.9300744662812, 32.7743573935119], [-79.9300457475086, 32.7743883142522], [-79.930003781589, 32.7743929776199], [-79.9300002126731, 32.7743656505595], [-79.9299659238464, 32.7743694702122], [-79.9299611868024, 32.7743698652639], [-79.9299571905724, 32.7743705238187], [-79.9299517408716, 32.7743719290043], [-79.9299487304839, 32.7743729785604], [-79.9299443934732, 32.7743748768625], [-79.9299416415668, 32.7743763498365], [-79.929938381809, 32.7743784099718], [-79.9299359342197, 32.7743802246977], [-79.9299330922591, 32.7743826870988], [-79.9299305136667, 32.7743853484036], [-79.9299282157856, 32.7743881871199], [-79.9299258550526, 32.7743917990609], [-79.9299245325544, 32.7743943144342], [-79.92992341949, 32.774396900179], [-79.9299223316627, 32.7744002139254], [-79.9299213831891, 32.774404961005], [-79.929921123221, 32.7744086652732], [-79.9299211649514, 32.7744112701381]]], "type": "Polygon"}, "id": "27", "properties": {"OBJECTID": 473, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7746.580078125, "Shape__Length": 464.534924471935, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9290087494526, 32.7744813954557, -79.9273219772148, 32.7750858264478], "geometry": {"coordinates": [[[-79.9274885532068, 32.7750103469275], [-79.927328574874, 32.7750282687426], [-79.9273219772148, 32.7750858264478], [-79.928209377007, 32.7749848433639], [-79.9282867282312, 32.7749761446785], [-79.9284189789147, 32.7749612713257], [-79.9285027835175, 32.7749518462419], [-79.9286027884384, 32.7749405996952], [-79.928705915322, 32.7749283460028], [-79.9287833099818, 32.7749199269537], [-79.9290087494526, 32.7748925768266], [-79.9290021689907, 32.7748216863687], [-79.928982319002, 32.7746078660084], [-79.9289820232801, 32.7746043002683], [-79.9289742286954, 32.7745103843461], [-79.928972340439, 32.7744813954557], [-79.9285476829828, 32.7745169849577], [-79.9285503133212, 32.7745333357237], [-79.9275810910433, 32.7746712149832], [-79.9275803958084, 32.7746668936061], [-79.9273569399302, 32.7746845060447], [-79.9273469130575, 32.7748271624303], [-79.9273435340873, 32.7748752376027], [-79.9276885620126, 32.7748354353014], [-79.9276879688314, 32.7748439244889], [-79.9275023415033, 32.7748679706101], [-79.9275017524063, 32.7748762127298], [-79.9273427782934, 32.7748864462003], [-79.927337573372, 32.7749495948716], [-79.9273301787974, 32.7750142367206], [-79.927486410506, 32.7749967221508], [-79.9274885532068, 32.7750103469275]]], "type": "Polygon"}, "id": "28", "properties": {"OBJECTID": 474, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9733.52734375, "Shape__Length": 595.682616449465, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9465917627565, 32.775084517096, -79.945608806429, 32.7754933609124], "geometry": {"coordinates": [[[-79.9456878271314, 32.7751557173601], [-79.945608806429, 32.7751653451409], [-79.9456112029025, 32.7751689749358], [-79.945613622213, 32.7751707137819], [-79.9456160436583, 32.7751723642667], [-79.9456184619017, 32.7751741031035], [-79.9456208811798, 32.7751758446548], [-79.9456233015582, 32.7751775835099], [-79.9456257209019, 32.7751793196506], [-79.9456281380784, 32.7751811468577], [-79.9456305573896, 32.7751828857036], [-79.9456329767446, 32.7751847093221], [-79.945635396056, 32.7751864481678], [-79.9456378132656, 32.7751882726696], [-79.9456402315536, 32.7751900962787], [-79.9456442558012, 32.7751937401028], [-79.9456466730221, 32.7751955637026], [-79.9456490912669, 32.7751973909186], [-79.9456515106227, 32.7751992145368], [-79.9456539278659, 32.7752011247127], [-79.9456579489562, 32.7752048532815], [-79.9456603672779, 32.7752067625648], [-79.9456627855233, 32.7752085897804], [-79.9456652017104, 32.7752104990452], [-79.9456692239019, 32.7752143132973], [-79.9456716401004, 32.7752163100399], [-79.9456756601576, 32.7752201242734], [-79.9456780774239, 32.7752221210251], [-79.9456820964472, 32.7752260209236], [-79.9456845126354, 32.7752280185678], [-79.9456885327813, 32.7752320023463], [-79.9456909479025, 32.7752339999811], [-79.945694968038, 32.7752379846612], [-79.9456989860504, 32.7752420568008], [-79.9457030029847, 32.7752461298327], [-79.945705419207, 32.7752482131509], [-79.9457070210307, 32.7752502876464], [-79.9457094351292, 32.7752523700444], [-79.9457110369423, 32.7752544454417], [-79.9457134531649, 32.7752565287597], [-79.945715054989, 32.7752586032552], [-79.9457174701553, 32.7752606856622], [-79.9457190709013, 32.7752627610502], [-79.9457214861008, 32.7752649291316], [-79.9457230879144, 32.7752670045287], [-79.9457246887044, 32.7752691646894], [-79.9457271027712, 32.7752712497922], [-79.9457287035505, 32.7752734108545], [-79.9457311187505, 32.7752755789358], [-79.9457327195518, 32.7752777381946], [-79.9457343203314, 32.7752798992568], [-79.9457367333643, 32.7752820700248], [-79.945738334155, 32.7752842301852], [-79.9457399360022, 32.7752863912566], [-79.9457415357259, 32.7752886397876], [-79.9457439498593, 32.7752908078593], [-79.9457455485158, 32.775293056381], [-79.9457471493069, 32.7752952165414], [-79.945748750131, 32.7752974623762], [-79.9457503498551, 32.775299710907], [-79.9457527639999, 32.7753018780769], [-79.9457543626895, 32.7753041238933], [-79.9457559624139, 32.775306372424], [-79.9457575632385, 32.7753086182587], [-79.9457591629631, 32.7753108667894], [-79.9457607616533, 32.7753132009854], [-79.9457623614107, 32.7753154468108], [-79.9457639600681, 32.7753176953323], [-79.9457663732232, 32.7753200329399], [-79.9457679729482, 32.7753222814705], [-79.9457695716388, 32.7753246156664], [-79.9457711713967, 32.7753268614918], [-79.945772769031, 32.7753291947766], [-79.9457743687893, 32.7753315289817], [-79.9457759675239, 32.7753338595705], [-79.945777566215, 32.7753361937663], [-79.9457799502546, 32.7753408542466], [-79.9457815478785, 32.7753431884331], [-79.9457831476808, 32.775345519031], [-79.9457847463724, 32.7753478532267], [-79.9457863450748, 32.7753501865206], [-79.945787942743, 32.7753526054798], [-79.9457895414783, 32.7753549360685], [-79.9457919244846, 32.7753596822139], [-79.9457935221531, 32.775362101173], [-79.9457951198217, 32.7753645201321], [-79.9457975028394, 32.7753692653756], [-79.9457990994409, 32.7753716843255], [-79.9458006981663, 32.7753741041954], [-79.9458022958353, 32.7753765231544], [-79.9458030801502, 32.7753789351042], [-79.9458046778302, 32.7753813531614], [-79.9458062744651, 32.7753838577856], [-79.9458070587803, 32.7753862697354], [-79.9458086553822, 32.7753886886851], [-79.9458094397305, 32.7753911863093], [-79.9458110374109, 32.7753936043664], [-79.9458126340135, 32.7753961116959], [-79.9458134183289, 32.7753985236455], [-79.9458150149643, 32.7754010282696], [-79.9458157992907, 32.7754034393176], [-79.9458173948589, 32.7754059439325], [-79.9458181791749, 32.7754084442618], [-79.9458197758215, 32.7754109479841], [-79.9458205601372, 32.7754133599338], [-79.9458221567731, 32.7754158645578], [-79.9458229400655, 32.775418361271], [-79.9458237233579, 32.7754208579841], [-79.9458253199614, 32.7754233653134], [-79.9458261021756, 32.7754258629191], [-79.9458537586295, 32.7754933609124], [-79.9459346696785, 32.7754618446183], [-79.9465917627565, 32.7752060262259], [-79.9465707958988, 32.7751909004842], [-79.9465611175451, 32.7751840308403], [-79.9465506559036, 32.7751746626837], [-79.946531277421, 32.7751627286756], [-79.946512725799, 32.7751496826095], [-79.9465022620668, 32.7751404884847], [-79.9464860966147, 32.7751319297467], [-79.9464699580972, 32.7751211392001], [-79.946453834078, 32.7751091475337], [-79.9464401148939, 32.7751000958126], [-79.9464239784773, 32.7750891321259], [-79.946416713246, 32.775084517096], [-79.9456878271314, 32.7751557173601]]], "type": "Polygon"}, "id": "29", "properties": {"OBJECTID": 478, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3012.181640625, "Shape__Length": 258.62275806163, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9307761401784, 32.7747796478671, -79.9291694440855, 32.7755046346689], "geometry": {"coordinates": [[[-79.9299881202939, 32.7752767987007], [-79.9299855869255, 32.7752590446577], [-79.9300757836836, 32.7752482395876], [-79.9301692055873, 32.7752370667513], [-79.9307761401784, 32.7751643347293], [-79.9307572883946, 32.7750475951387], [-79.9307140195226, 32.7747796478671], [-79.9306241232544, 32.7747896723346], [-79.9305080053897, 32.7748026203034], [-79.9303747786559, 32.7748174864728], [-79.9302457846148, 32.7748320828885], [-79.9291694440855, 32.7749573736138], [-79.9291838272854, 32.7751094506418], [-79.9291952449025, 32.775227417749], [-79.929208790553, 32.775367367682], [-79.9292216165593, 32.7755046346689], [-79.9296851944279, 32.7754505917832], [-79.9296657178694, 32.7753141360312], [-79.9299881202939, 32.7752767987007]]], "type": "Polygon"}, "id": "30", "properties": {"OBJECTID": 480, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10227.130859375, "Shape__Length": 495.414888087226, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9270878521007, 32.7752741549998, -79.9258886673828, 32.7756611541329], "geometry": {"coordinates": [[[-79.9260976045183, 32.7753386932115], [-79.9258886673828, 32.7756333985817], [-79.9262529158047, 32.7756421588494], [-79.9263276983712, 32.7756439596625], [-79.9264105160189, 32.7756413389051], [-79.9265514910788, 32.7756404982266], [-79.9266973482188, 32.7756398887044], [-79.9267734853574, 32.7756445635557], [-79.9268352091826, 32.775648353472], [-79.9268969330131, 32.7756521433572], [-79.9270437074192, 32.7756611541329], [-79.9270502695009, 32.7756038170747], [-79.9270684571329, 32.7754449045422], [-79.9269041587836, 32.775440939152], [-79.9268716374229, 32.7754401362092], [-79.9268713689513, 32.7754479085779], [-79.9268155069931, 32.7754469811259], [-79.9268004315123, 32.7754467316298], [-79.9268021753241, 32.7754280140015], [-79.9268666496983, 32.7754271357839], [-79.9269354129615, 32.7754261995597], [-79.9270693660779, 32.7754371332817], [-79.9270878521007, 32.7752753032239], [-79.9269527001046, 32.7752747310136], [-79.9268165148096, 32.7752741549998], [-79.9267309341247, 32.7752743141256], [-79.926552427826, 32.775278318479], [-79.9263991254239, 32.7752830956968], [-79.9263995397291, 32.7753183313412], [-79.9263213629491, 32.7753203353834], [-79.9263221840322, 32.7753355989416], [-79.9262505892027, 32.7753365839167], [-79.9260976045183, 32.7753386932115]]], "type": "Polygon"}, "id": "31", "properties": {"OBJECTID": 482, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5413.005859375, "Shape__Length": 404.654673966544, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9308675445224, 32.7751984406384, -79.9292216165593, 32.7758952320165], "geometry": {"coordinates": [[[-79.930380222113, 32.7758788308266], [-79.9303823323387, 32.7758952320165], [-79.9308675445224, 32.7758386709993], [-79.9307816439332, 32.7751984406384], [-79.930500278322, 32.775236981154], [-79.9303465718873, 32.7752580352028], [-79.9301825338048, 32.7752805038677], [-79.9301807823586, 32.7752667995943], [-79.9299898721708, 32.7752890717684], [-79.9299881202939, 32.7752767987007], [-79.9296657178694, 32.7753141360312], [-79.9296851944279, 32.7754505917832], [-79.9295775597529, 32.7754631315219], [-79.9292216165593, 32.7755046346689], [-79.9292226242576, 32.7755155169176], [-79.9295795174752, 32.7754740220803], [-79.9295887453877, 32.7755467808286], [-79.9297338426355, 32.7755298549553], [-79.9298628422744, 32.7755148063963], [-79.9299982624931, 32.7754990094251], [-79.9300304875286, 32.7754952501673], [-79.9300445554565, 32.7756059364077], [-79.9301445254169, 32.7755942761506], [-79.930153868762, 32.7756681081447], [-79.9302764189249, 32.7756538198058], [-79.9303505491541, 32.7756451773194], [-79.930380222113, 32.7758788308266]]], "type": "Polygon"}, "id": "32", "properties": {"OBJECTID": 486, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7496.09765625, "Shape__Length": 530.933270885776, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9270203930611, 32.7757371392084, -79.9257827675482, 32.7759209697197], "geometry": {"coordinates": [[[-79.9257827675482, 32.7758916526313], [-79.927002932533, 32.7759209697197], [-79.9270203930611, 32.7757843162268], [-79.9259369132227, 32.7757582872323], [-79.9259371168255, 32.7757390474555], [-79.9258575210278, 32.7757371392084], [-79.9257827675482, 32.7758916526313]]], "type": "Polygon"}, "id": "33", "properties": {"OBJECTID": 488, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2440.265625, "Shape__Length": 308.238542660995, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.930380222113, 32.7754740220803, -79.9292226242576, 32.7759921176448], "geometry": {"coordinates": [[[-79.9296183510615, 32.7759510142879], [-79.9297698683563, 32.7759333572383], [-79.9298635477195, 32.7759224935042], [-79.9298985768425, 32.7759183340454], [-79.9300338026894, 32.7759025073715], [-79.9301665831325, 32.7758870902396], [-79.9303039846795, 32.7758710721681], [-79.9303060938122, 32.7758874742516], [-79.930380222113, 32.7758788308266], [-79.9303505491541, 32.7756451773194], [-79.9302764189249, 32.7756538198058], [-79.930153868762, 32.7756681081447], [-79.9301445254169, 32.7755942761506], [-79.9300445554565, 32.7756059364077], [-79.9300304875286, 32.7754952501673], [-79.9299982624931, 32.7754990094251], [-79.9298628422744, 32.7755148063963], [-79.9297338426355, 32.7755298549553], [-79.9295887453877, 32.7755467808286], [-79.9295795174752, 32.7754740220803], [-79.9292226242576, 32.7755155169176], [-79.9292402130253, 32.7757062683539], [-79.9292581757774, 32.7759011751142], [-79.929266563297, 32.7759920417025], [-79.9292665847834, 32.7759921176448], [-79.9296183510615, 32.7759510142879]]], "type": "Polygon"}, "id": "34", "properties": {"OBJECTID": 489, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6337.912109375, "Shape__Length": 378.854101507249, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9290969219731, 32.7749758853073, -79.9282549467721, 32.7761027205851], "geometry": {"coordinates": [[[-79.9290079879681, 32.7749758853073], [-79.9282549467721, 32.7750629140889], [-79.9282904334695, 32.7753362637561], [-79.9283124262109, 32.7755056732099], [-79.9283237168824, 32.7755904075696], [-79.9283329386909, 32.7756513171541], [-79.9283461722904, 32.7757385720287], [-79.9283743172308, 32.7758686783739], [-79.9284013573259, 32.7761027205851], [-79.9290896048334, 32.7760146555557], [-79.9290969219731, 32.7759221119445], [-79.9290858032192, 32.7758014536529], [-79.9290079879681, 32.7749758853073]]], "type": "Polygon"}, "id": "35", "properties": {"OBJECTID": 490, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11319.283203125, "Shape__Length": 438.735204407092, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.92835101543, 32.7750654887695, -79.9271919512287, 32.776240801414], "geometry": {"coordinates": [[[-79.9280787455038, 32.7750805883341], [-79.9280082583035, 32.7750726739083], [-79.9279065134909, 32.7750841509236], [-79.9278300364401, 32.7751106673784], [-79.9277527684737, 32.7751193529788], [-79.9276592384561, 32.7751300116828], [-79.9273206271143, 32.7751692118394], [-79.9272607412983, 32.7756923049857], [-79.927247303362, 32.7757678114603], [-79.9272430019916, 32.7758345636765], [-79.9272368208872, 32.7758829714058], [-79.9272262823443, 32.7759655087644], [-79.9271919512287, 32.776240801414], [-79.92835101543, 32.776095240758], [-79.9283199181633, 32.7758900460739], [-79.928202856248, 32.7750654887695], [-79.9280787455038, 32.7750805883341]]], "type": "Polygon"}, "id": "36", "properties": {"OBJECTID": 493, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15828.171875, "Shape__Length": 510.155973610491, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9398393373847, 32.7757533410506, -79.9391475595598, 32.7763653571296], "geometry": {"coordinates": [[[-79.9391475595598, 32.7757902414793], [-79.9391676648779, 32.7759376763764], [-79.9391985787857, 32.7761643635194], [-79.9393993884185, 32.7761477217123], [-79.9394139077913, 32.7762542180645], [-79.939429059349, 32.7763653571296], [-79.9398393373847, 32.7763241238415], [-79.9395289607012, 32.7757533410506], [-79.9391475595598, 32.7757902414793]]], "type": "Polygon"}, "id": "37", "properties": {"OBJECTID": 494, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3747.19921875, "Shape__Length": 273.15228899149, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9298740356733, 32.7759794807991, -79.929272493374, 32.7763030143102], "geometry": {"coordinates": [[[-79.9292861382114, 32.7761529065667], [-79.9295121196193, 32.7761256576234], [-79.929577500206, 32.7761177741332], [-79.9296900689169, 32.7761107877701], [-79.9296979445263, 32.776246235684], [-79.92970340483, 32.7763030143102], [-79.9297930592628, 32.7762931732637], [-79.9297829376808, 32.776217097875], [-79.9298740356733, 32.7762082713382], [-79.9298479993037, 32.7759852920604], [-79.9297513249456, 32.7759794807991], [-79.9296834810746, 32.7759881138978], [-79.9295380469274, 32.7760119935285], [-79.929272493374, 32.7760407827952], [-79.9292861382114, 32.7761529065667]]], "type": "Polygon"}, "id": "38", "properties": {"OBJECTID": 495, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1375.23828125, "Shape__Length": 210.551463760243, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.939429059349, 32.7757902414793, -79.9384218319028, 32.7764602088752], "geometry": {"coordinates": [[[-79.9391475595598, 32.7757902414793], [-79.9384218319028, 32.7758604519678], [-79.9384850156935, 32.7764602088752], [-79.939429059349, 32.7763653571296], [-79.9394139077913, 32.7762542180645], [-79.9393993884185, 32.7761477217123], [-79.9391985787857, 32.7761643635194], [-79.9391630116474, 32.7759356510862], [-79.9391475595598, 32.7757902414793]]], "type": "Polygon"}, "id": "39", "properties": {"OBJECTID": 496, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7191.7890625, "Shape__Length": 368.209704002689, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.926992387527, 32.7759909353639, -79.9264372843074, 32.7763637583537], "geometry": {"coordinates": [[[-79.9264805886232, 32.7759909353639], [-79.9264372843074, 32.7763637583537], [-79.9269546441466, 32.7763261863746], [-79.926992387527, 32.7760032328458], [-79.9264805886232, 32.7759909353639]]], "type": "Polygon"}, "id": "40", "properties": {"OBJECTID": 498, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2630.88671875, "Shape__Length": 207.363583643924, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9264805886232, 32.77597902592, -79.9258658303625, 32.7764052577463], "geometry": {"coordinates": [[[-79.9259850860085, 32.77597902592], [-79.9258658303625, 32.7764052577463], [-79.9262065130591, 32.7763805352689], [-79.9264372843074, 32.7763637583537], [-79.9264805886232, 32.7759909353639], [-79.9262524022411, 32.7759854524861], [-79.9259850860085, 32.77597902592]]], "type": "Polygon"}, "id": "41", "properties": {"OBJECTID": 499, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3123.705078125, "Shape__Length": 226.601336652408, "ZONE_BASE": "GO", "__folium_color": "#ff9896"}, "type": "Feature"}, {"bbox": [-79.9309184868998, 32.7758678898659, -79.9301866801893, 32.776455464783], "geometry": {"coordinates": [[[-79.9301866801893, 32.7759458023187], [-79.9302230462345, 32.776257507827], [-79.9303328986417, 32.7762464803428], [-79.9303572791279, 32.776455464783], [-79.9309184868998, 32.7763949767644], [-79.9308548878979, 32.7758678898659], [-79.9301866801893, 32.7759458023187]]], "type": "Polygon"}, "id": "42", "properties": {"OBJECTID": 500, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4899.97265625, "Shape__Length": 289.809586744637, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9259850860085, 32.7759733553447, -79.9256238229835, 32.7764228358375], "geometry": {"coordinates": [[[-79.9259850860085, 32.77597902592], [-79.9257492895419, 32.7759733553447], [-79.9256238229835, 32.7764228358375], [-79.9258658303625, 32.7764052577463], [-79.9259850860085, 32.77597902592]]], "type": "Polygon"}, "id": "43", "properties": {"OBJECTID": 501, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1530.98046875, "Shape__Length": 172.400383442505, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9303572791279, 32.7759458023187, -79.9292861382114, 32.7765501031594], "geometry": {"coordinates": [[[-79.9292861382114, 32.7761529065667], [-79.9293364599009, 32.7765501031594], [-79.9294572716188, 32.7765371017609], [-79.9295932695395, 32.77652464797], [-79.9297282681697, 32.7765122853891], [-79.9297275278691, 32.7765060571502], [-79.9298203137054, 32.776498031818], [-79.9299081592562, 32.776500527299], [-79.9303572791279, 32.776455464783], [-79.9303328986417, 32.7762464803428], [-79.9302230462345, 32.776257507827], [-79.9301866801893, 32.7759458023187], [-79.9300511941893, 32.7759615998315], [-79.9298479993037, 32.7759852920604], [-79.9298740356733, 32.7762082713382], [-79.9297829376808, 32.776217097875], [-79.9297930592628, 32.7762931732637], [-79.92970340483, 32.7763030143102], [-79.9296979445263, 32.776246235684], [-79.9296900689169, 32.7761107877701], [-79.929577500206, 32.7761177741332], [-79.9295121196193, 32.7761256576234], [-79.9292861382114, 32.7761529065667]]], "type": "Polygon"}, "id": "44", "properties": {"OBJECTID": 503, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5981.2890625, "Shape__Length": 418.684424195346, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9373280567949, 32.7759726227785, -79.9359045381774, 32.7767330526843], "geometry": {"coordinates": [[[-79.9372622526057, 32.7759726227785], [-79.9359045381774, 32.7761041694374], [-79.9359789335736, 32.7767330526843], [-79.9373280567949, 32.7766078082507], [-79.9372622526057, 32.7759726227785]]], "type": "Polygon"}, "id": "45", "properties": {"OBJECTID": 505, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12740.119140625, "Shape__Length": 471.326943804304, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.933581937575, 32.7763308934237, -79.9332608476347, 32.7767475173504], "geometry": {"coordinates": [[[-79.9332757248523, 32.7766246280159], [-79.9332608476347, 32.7766263948443], [-79.9333371924211, 32.7766190621834], [-79.9333534869139, 32.7767475173504], [-79.933581937575, 32.7767268315412], [-79.9335390996462, 32.7763308934237], [-79.9332647061031, 32.776357175726], [-79.9332903800265, 32.7765596920188], [-79.9332677416105, 32.7765617482975], [-79.9332757248523, 32.7766246280159]]], "type": "Polygon"}, "id": "46", "properties": {"OBJECTID": 507, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1540.67578125, "Shape__Length": 174.161604797103, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9269493016646, 32.7763955465812, -79.9261235637406, 32.7767229857004], "geometry": {"coordinates": [[[-79.9261235637406, 32.7764555090135], [-79.9261508272569, 32.7767229857004], [-79.9268251388129, 32.7766627399549], [-79.9269267455319, 32.7766688267585], [-79.9269493016646, 32.7763955465812], [-79.9261235637406, 32.7764555090135]]], "type": "Polygon"}, "id": "47", "properties": {"OBJECTID": 509, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3117.923828125, "Shape__Length": 250.90152107382, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9337777926222, 32.776313859506, -79.9335390996462, 32.7768486084461], "geometry": {"coordinates": [[[-79.933581937575, 32.7767268315412], [-79.9335951125162, 32.7768486084461], [-79.9337777926222, 32.7768320856439], [-79.9337604029015, 32.7766839943568], [-79.9337475369296, 32.7766851465883], [-79.9337345649113, 32.7765749717757], [-79.9337474660262, 32.776573737785], [-79.9337169319877, 32.776313859506], [-79.9335390996462, 32.7763308934237], [-79.933581937575, 32.7767268315412]]], "type": "Polygon"}, "id": "48", "properties": {"OBJECTID": 512, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1369.439453125, "Shape__Length": 181.027075784683, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9260699131995, 32.77646139433, -79.9255323462736, 32.7767781114149], "geometry": {"coordinates": [[[-79.9260425039228, 32.77646139433], [-79.9256082211368, 32.7764929301693], [-79.9255443150817, 32.7767039702073], [-79.9255392123296, 32.7767226186397], [-79.9255335020712, 32.7767582748674], [-79.9255323462736, 32.7767781114149], [-79.9257828007676, 32.7767562067134], [-79.925905767942, 32.7767452604801], [-79.9260699131995, 32.7767301926044], [-79.926064544784, 32.7766825357656], [-79.9260589904681, 32.7766003523194], [-79.9260571117313, 32.7765725737164], [-79.9260425039228, 32.77646139433]]], "type": "Polygon"}, "id": "49", "properties": {"OBJECTID": 513, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1994.36328125, "Shape__Length": 183.190609077281, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9315007748172, 32.776529521206, -79.9311318881415, 32.776842157584], "geometry": {"coordinates": [[[-79.9311318881415, 32.7765609999172], [-79.9311709739491, 32.776842157584], [-79.9315007748172, 32.7768106787571], [-79.9314616890291, 32.776529521206], [-79.9311318881415, 32.7765609999172]]], "type": "Polygon"}, "id": "50", "properties": {"OBJECTID": 514, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1384.783203125, "Shape__Length": 148.855052955751, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9347084049507, 32.7762267958069, -79.9337169319877, 32.7769587109469], "geometry": {"coordinates": [[[-79.9337604029015, 32.7766839943568], [-79.933920882437, 32.7766664229015], [-79.9339571736066, 32.7769587109469], [-79.9342718542876, 32.7769304819854], [-79.9344594550842, 32.7769129612173], [-79.9347084049507, 32.776889701259], [-79.9346257686998, 32.7762267958069], [-79.9337169319877, 32.776313859506], [-79.9337474660262, 32.776573737785], [-79.9337345649113, 32.7765749717757], [-79.9337475369296, 32.7766851465883], [-79.9337604029015, 32.7766839943568]]], "type": "Polygon"}, "id": "51", "properties": {"OBJECTID": 515, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8308.166015625, "Shape__Length": 383.24264612185, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.932715157155, 32.7764130351858, -79.9315845334707, 32.7770076900078], "geometry": {"coordinates": [[[-79.93162740353, 32.776838063308], [-79.9321150621973, 32.7767956720655], [-79.9321368724842, 32.7770076900078], [-79.9324064135282, 32.7769842726754], [-79.9323831974945, 32.7767671237027], [-79.9323978339228, 32.7767668059319], [-79.932715157155, 32.7767401894649], [-79.9326811411519, 32.7764130351858], [-79.9322068017501, 32.7764583460235], [-79.9315845334707, 32.7765177845071], [-79.9316013478107, 32.7766434136082], [-79.93162740353, 32.776838063308]]], "type": "Polygon"}, "id": "52", "properties": {"OBJECTID": 518, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6124.630859375, "Shape__Length": 387.923401476409, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9402263459827, 32.7764291006895, -79.9396023999535, 32.7770876793292], "geometry": {"coordinates": [[[-79.939612161825, 32.7764576671853], [-79.9396385916808, 32.7766605952997], [-79.9396105669584, 32.7766773952458], [-79.9396023999535, 32.776677433574], [-79.9396226176403, 32.7768853076178], [-79.9396422873574, 32.7770876793292], [-79.939804531456, 32.7770735848111], [-79.9402263459827, 32.77703694041], [-79.9398964355985, 32.7764291006895], [-79.939612161825, 32.7764576671853]]], "type": "Polygon"}, "id": "53", "properties": {"OBJECTID": 519, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4101.408203125, "Shape__Length": 271.961104777639, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9396422873574, 32.7764576671853, -79.9384965696417, 32.7771852893904], "geometry": {"coordinates": [[[-79.939612161825, 32.7764576671853], [-79.9384965696417, 32.7765697665964], [-79.9385614181407, 32.7771852893904], [-79.9396422873574, 32.7770876793292], [-79.9396226176403, 32.7768853076178], [-79.9396023999535, 32.776677433574], [-79.9396105669584, 32.7766773952458], [-79.9396385916808, 32.7766605952997], [-79.9396355555197, 32.7766373142788], [-79.939612161825, 32.7764576671853]]], "type": "Polygon"}, "id": "54", "properties": {"OBJECTID": 520, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10118.072265625, "Shape__Length": 414.164951959892, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9298648835415, 32.7769377542945, -79.929356575316, 32.777167843924], "geometry": {"coordinates": [[[-79.929356575316, 32.7770169411545], [-79.9293676525001, 32.777167843924], [-79.9297361761002, 32.777154438813], [-79.9298648835415, 32.7771520151708], [-79.9298422927698, 32.7769377542945], [-79.9297210325946, 32.7769422767057], [-79.9296616230612, 32.776944420034], [-79.9295843110622, 32.7769472643306], [-79.9295835986897, 32.7769472914651], [-79.9295835822494, 32.7769486323505], [-79.929588183815, 32.7770083182045], [-79.9295881975818, 32.7770085013975], [-79.9295795510264, 32.7770088162334], [-79.9294008301892, 32.7770153290972], [-79.929356575316, 32.7770169411545]]], "type": "Polygon"}, "id": "55", "properties": {"OBJECTID": 522, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1340.2578125, "Shape__Length": 166.644762544737, "ZONE_BASE": "GO", "__folium_color": "#ff9896"}, "type": "Feature"}, {"bbox": [-79.9269668084975, 32.7767352346715, -79.9261379033392, 32.7771423959203], "geometry": {"coordinates": [[[-79.9261476198876, 32.7771423959203], [-79.9263450483518, 32.7771249702389], [-79.9264583720333, 32.7771149696062], [-79.9264591497989, 32.7771231678052], [-79.926855207446, 32.7770727662837], [-79.9268562289319, 32.7770558423784], [-79.9266937544463, 32.7770488093551], [-79.9266878379013, 32.7769698161615], [-79.9267716486891, 32.7769696135668], [-79.9269373751514, 32.7769767850376], [-79.9269414469399, 32.7769207446147], [-79.9269576754964, 32.7769214370867], [-79.9269668084975, 32.7767952097078], [-79.9269505799534, 32.7767945181388], [-79.9269543440332, 32.7767424061191], [-79.9267886180145, 32.7767352346715], [-79.9266934699126, 32.7767437221707], [-79.9266227853225, 32.7767500262702], [-79.9264194573625, 32.776768162668], [-79.9261546655444, 32.7767917663282], [-79.9261444205517, 32.7769422559014], [-79.9261379033392, 32.777038241489], [-79.9261476198876, 32.7771423959203]]], "type": "Polygon"}, "id": "56", "properties": {"OBJECTID": 523, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3811.40234375, "Shape__Length": 309.764991872789, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9475997208823, 32.7761254239588, -79.9462831215345, 32.7773432380018], "geometry": {"coordinates": [[[-79.9466983032454, 32.7762864476389], [-79.9462831215345, 32.7764479699036], [-79.9463531717597, 32.7765751032698], [-79.9464224066993, 32.7767023170521], [-79.9464924562639, 32.776829450333], [-79.94656488499, 32.7769616723678], [-79.9465847808184, 32.7769981803867], [-79.9466349339148, 32.7770888930395], [-79.9467041707616, 32.7772161048753], [-79.9467742211487, 32.7773432380018], [-79.947186969171, 32.7771813494822], [-79.9475997208823, 32.7770191151173], [-79.9475933609649, 32.7770068612979], [-79.9475304839761, 32.7768919019969], [-79.9474612483043, 32.7767646031738], [-79.9473911994358, 32.7766373000197], [-79.9473203684794, 32.7765073242749], [-79.9472511334189, 32.7763800253381], [-79.947181085198, 32.7762527193639], [-79.947111850499, 32.7761254239588], [-79.9466983032454, 32.7762864476389]]], "type": "Polygon"}, "id": "57", "properties": {"OBJECTID": 524, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 13239.0859375, "Shape__Length": 463.804879402173, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9384320610654, 32.7758729635259, -79.937423927781, 32.7772685824385], "geometry": {"coordinates": [[[-79.937423927781, 32.7759569843543], [-79.9375678886418, 32.7772685824385], [-79.9381267611947, 32.7772148823815], [-79.938057743853, 32.7765578486681], [-79.9380892272884, 32.7765481837527], [-79.9381034989939, 32.7767143236653], [-79.9381571561173, 32.7772232870764], [-79.9384320610654, 32.7771974428294], [-79.9382925044395, 32.7758729635259], [-79.937423927781, 32.7759569843543]]], "type": "Polygon"}, "id": "58", "properties": {"OBJECTID": 525, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16673.931640625, "Shape__Length": 721.94274647171, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9373992211078, 32.7766762867524, -79.9359870495898, 32.7774204633744], "geometry": {"coordinates": [[[-79.9373351613622, 32.7766762867524], [-79.9359870495898, 32.7768014038947], [-79.9360602965991, 32.7774204633744], [-79.9373992211078, 32.7772945521804], [-79.9373351613622, 32.7766762867524]]], "type": "Polygon"}, "id": "59", "properties": {"OBJECTID": 528, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12377.55078125, "Shape__Length": 465.496461269484, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9292040969655, 32.7767596865997, -79.9278163545664, 32.7773851557469], "geometry": {"coordinates": [[[-79.9292040969655, 32.7771602294059], [-79.9291742404306, 32.7767596865997], [-79.9286141097016, 32.7768106635223], [-79.9283460669227, 32.7768363384133], [-79.9281339900337, 32.7768591446709], [-79.9280611361316, 32.7768637198119], [-79.9278163545664, 32.7768872940844], [-79.9278952219845, 32.7772929374266], [-79.9279131524322, 32.7773851557469], [-79.9281689480374, 32.7773586232526], [-79.9281549549267, 32.7773039233639], [-79.9282052712393, 32.7772963252539], [-79.9281830680746, 32.7771990778843], [-79.9282527678341, 32.777194144061], [-79.9282424740803, 32.7771049759735], [-79.9283923776576, 32.7770924325028], [-79.928403718798, 32.7771562925225], [-79.9284677431803, 32.7771485167792], [-79.9284712460918, 32.7771767559752], [-79.9284717767124, 32.7771784037674], [-79.9284728908174, 32.7771798276042], [-79.9284744769874, 32.7771808858233], [-79.9284763742595, 32.7771814724019], [-79.9284787168349, 32.7771815253871], [-79.9284798892566, 32.7771819378752], [-79.9284805813199, 32.7771831307526], [-79.9284890406698, 32.7772496493849], [-79.9285005523839, 32.7772491703363], [-79.9286464142929, 32.7772309023728], [-79.9286654168117, 32.7772290351528], [-79.9287563069352, 32.7772116672346], [-79.9288738021919, 32.777201068709], [-79.9288724064546, 32.7771901442786], [-79.9289662222115, 32.7771816830977], [-79.9292040969655, 32.7771602294059]]], "type": "Polygon"}, "id": "60", "properties": {"OBJECTID": 529, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7981.779296875, "Shape__Length": 475.150880530725, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9268898469542, 32.77713214129, -79.9261042024104, 32.7774125045284], "geometry": {"coordinates": [[[-79.9268898469542, 32.77713214129], [-79.9261042024104, 32.7772014989663], [-79.9261144164601, 32.7773111165814], [-79.926123863861, 32.7774125045284], [-79.9268835909541, 32.7773630961268], [-79.9268831110861, 32.7772445916115], [-79.9268898469542, 32.77713214129]]], "type": "Polygon"}, "id": "61", "properties": {"OBJECTID": 530, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2516.1953125, "Shape__Length": 231.383525584111, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9359462153252, 32.7761150876682, -79.9347389053404, 32.7775179706281], "geometry": {"coordinates": [[[-79.9348165955297, 32.7768393776581], [-79.9348891765861, 32.7774215191079], [-79.934891542847, 32.7774328442116], [-79.9348938939203, 32.7774402516119], [-79.9348994572466, 32.7774528175194], [-79.9349067890751, 32.7774647161352], [-79.9349144006046, 32.7774742516727], [-79.9349186392842, 32.7774787544637], [-79.9349312414654, 32.7774897826999], [-79.934941818852, 32.7774970227345], [-79.9349532333126, 32.7775032897612], [-79.9349674427381, 32.777509280809], [-79.934982409278, 32.7775137651676], [-79.9349979106222, 32.777516676871], [-79.9350137167352, 32.7775179706281], [-79.9350318508803, 32.7775174476123], [-79.9350499018366, 32.7775156053869], [-79.9353550996245, 32.7774841833466], [-79.9359462153252, 32.777423319265], [-79.9357914011671, 32.7761150876682], [-79.9347389053404, 32.7762159327583], [-79.9348165955297, 32.7768393776581]]], "type": "Polygon"}, "id": "62", "properties": {"OBJECTID": 531, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20454.544921875, "Shape__Length": 577.548143282881, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9310241949911, 32.7766345139195, -79.9293354463404, 32.777483285887], "geometry": {"coordinates": [[[-79.9298648835415, 32.7771520151708], [-79.9298990555421, 32.777483285887], [-79.9310241949911, 32.777376230633], [-79.9309912221473, 32.7771101499941], [-79.930931156554, 32.7766345139195], [-79.9307128550087, 32.7766586347152], [-79.930711260904, 32.7766559567598], [-79.9307096668177, 32.7766533644789], [-79.9307080685053, 32.7766510300859], [-79.9307056536293, 32.7766488626095], [-79.9307024317133, 32.776646258805], [-79.9306992035203, 32.7766442546661], [-79.9306959658259, 32.7766428519682], [-79.9306927250021, 32.7766417919402], [-79.9306894831473, 32.7766409032518], [-79.9306862349056, 32.7766403617141], [-79.930682984646, 32.7766401592487], [-79.9306797290376, 32.7766402191705], [-79.9303677557821, 32.7766746004564], [-79.9303636837096, 32.7766749932228], [-79.9303604302497, 32.7766749647751], [-79.9303571799496, 32.77667467843], [-79.9303539338589, 32.7766740485224], [-79.9303506909058, 32.7766731625209], [-79.9303474511125, 32.776672018622], [-79.9303442176721, 32.7766703562234], [-79.9303248168703, 32.7766603078776], [-79.9303215886524, 32.7766583064339], [-79.9303183541522, 32.7766567306015], [-79.9303151143711, 32.7766555858001], [-79.9303118704026, 32.7766547827575], [-79.9303086232523, 32.7766542394156], [-79.9303053719035, 32.7766540387343], [-79.9303013029694, 32.7766541754048], [-79.9302793137076, 32.7766562151637], [-79.9301232875635, 32.7766714841414], [-79.9298042411302, 32.7767038153893], [-79.9296431931453, 32.7767161268949], [-79.9296539167248, 32.7768456674664], [-79.9296365569435, 32.7768301437898], [-79.9296270038205, 32.7767176346987], [-79.9295463702722, 32.7767243656757], [-79.9293354463404, 32.7767439113389], [-79.9293478425011, 32.7769017246912], [-79.9293565114623, 32.7770161415695], [-79.929356575316, 32.7770169411545], [-79.9294008301892, 32.7770153290972], [-79.9295795510264, 32.7770088162334], [-79.9295881975818, 32.7770085013975], [-79.929588183815, 32.7770083182045], [-79.9295835822494, 32.7769486323505], [-79.9295835986897, 32.7769472914651], [-79.9295843110622, 32.7769472643306], [-79.9296616230612, 32.776944420034], [-79.9297210325946, 32.7769422767057], [-79.9298422927698, 32.7769377542945], [-79.9298648835415, 32.7771520151708]]], "type": "Polygon"}, "id": "63", "properties": {"OBJECTID": 532, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14537.275390625, "Shape__Length": 609.971255177418, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9299012168031, 32.7771520151708, -79.9293676525001, 32.777534101449], "geometry": {"coordinates": [[[-79.9293676525001, 32.777167843924], [-79.9293835580021, 32.7773958877658], [-79.9293868064383, 32.7773957186934], [-79.9293932653833, 32.777534101449], [-79.929769079341, 32.7774965114764], [-79.9299012168031, 32.7774838485994], [-79.9298648835415, 32.7771520151708], [-79.9297361761002, 32.777154438813], [-79.9293676525001, 32.777167843924]]], "type": "Polygon"}, "id": "64", "properties": {"OBJECTID": 534, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2602.044921875, "Shape__Length": 205.392382088057, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9272598823331, 32.7729079882797, -79.9233020159341, 32.7774739602835], "geometry": {"coordinates": [[[-79.925458832467, 32.7772672761555], [-79.9254198487369, 32.776846083937], [-79.925418140091, 32.7768166447325], [-79.9254183575723, 32.7768038324587], [-79.925421158553, 32.7767547593209], [-79.9254278551971, 32.7767130360953], [-79.9254412444627, 32.7766640875308], [-79.9254934186085, 32.7764941674078], [-79.9255041236267, 32.7764593053823], [-79.9255047307413, 32.7764416356367], [-79.9255035526975, 32.7764316203239], [-79.9254999977198, 32.7764190544838], [-79.9254951109092, 32.7764063669213], [-79.9254921374862, 32.7763940812491], [-79.9254906661452, 32.7763788399275], [-79.9254904328892, 32.776363444445], [-79.9255114752866, 32.7762849035256], [-79.925593401715, 32.7759944158525], [-79.9256426545541, 32.77586933635], [-79.9257206531367, 32.7757171079019], [-79.9257673672383, 32.7756279351917], [-79.9257243984326, 32.7756190364086], [-79.9259723951649, 32.7752626270707], [-79.9259953003381, 32.7751997375615], [-79.926053984117, 32.7752371540793], [-79.9262874973764, 32.7752061056509], [-79.927088207234, 32.7751008183146], [-79.9271144186593, 32.7748715788877], [-79.9266297517879, 32.7748627367809], [-79.9266322046591, 32.7747665504977], [-79.9267167807676, 32.7747680925114], [-79.9271549615622, 32.7747760837912], [-79.9272598823331, 32.7730719003075], [-79.9269339633857, 32.7730584009538], [-79.9233020159341, 32.7729079882797], [-79.9233892633688, 32.7735743505401], [-79.9234005625231, 32.7743500151249], [-79.9234062896605, 32.7747432072825], [-79.9233779896606, 32.7756148043492], [-79.9234149309256, 32.7774739602835], [-79.924792198307, 32.7773355766773], [-79.925458832467, 32.7772672761555]]], "type": "Polygon"}, "id": "65", "properties": {"OBJECTID": 535, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 192894.5, "Shape__Length": 2073.40899500593, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9347770237606, 32.776889701259, -79.9339571736066, 32.7776147137558], "geometry": {"coordinates": [[[-79.9347680424046, 32.7773680911981], [-79.9347474254364, 32.7772027144423], [-79.9347412918134, 32.7771535128297], [-79.9347084049507, 32.776889701259], [-79.9344594550842, 32.7769129612173], [-79.9342718542876, 32.7769304819854], [-79.9339571736066, 32.7769587109469], [-79.9339980005385, 32.777303140229], [-79.9340192568802, 32.7773011547391], [-79.9340521674634, 32.7776147137558], [-79.9345766151115, 32.7775644644065], [-79.9346694709966, 32.7775546873415], [-79.9346826028595, 32.7775521385814], [-79.9346932591669, 32.7775491480069], [-79.9347055854764, 32.7775445513766], [-79.934713460384, 32.7775408998837], [-79.9347246686168, 32.777534583636], [-79.9347350439626, 32.7775273222262], [-79.9347398844481, 32.7775233611316], [-79.934751539663, 32.7775118208364], [-79.9347578251275, 32.7775039601636], [-79.934763286356, 32.7774956702545], [-79.9347694679071, 32.7774834645372], [-79.9347722025417, 32.7774762339891], [-79.9347751818709, 32.7774651348958], [-79.9347764073397, 32.7774576152448], [-79.9347769206902, 32.7774519390564], [-79.9347770237606, 32.7774431416519], [-79.934775555866, 32.7774283586167], [-79.9347706016378, 32.7773886221122], [-79.9347680424046, 32.7773680911981]]], "type": "Polygon"}, "id": "66", "properties": {"OBJECTID": 537, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7224.025390625, "Shape__Length": 337.573727238086, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.929232830086, 32.7770924325028, -79.9279131524322, 32.7776691746314], "geometry": {"coordinates": [[[-79.9279131524322, 32.7773851557469], [-79.9279735811822, 32.7776691746314], [-79.928180647168, 32.7776527845773], [-79.9282902569393, 32.777642382656], [-79.9284593002062, 32.7776274022687], [-79.9286972280082, 32.7776053024964], [-79.9289846757255, 32.7775736885742], [-79.929232830086, 32.77755420965], [-79.9292040969655, 32.7771602294059], [-79.9289662222115, 32.7771816830977], [-79.9288724064546, 32.7771901442786], [-79.9288738021919, 32.777201068709], [-79.9287563069352, 32.7772116672346], [-79.9286654168117, 32.7772290351528], [-79.9286464142929, 32.7772309023728], [-79.9285005523839, 32.7772491703363], [-79.9284890406698, 32.7772496493849], [-79.9284828994366, 32.7772013546074], [-79.9284805813199, 32.7771831307526], [-79.9284798892566, 32.7771819378752], [-79.9284787168349, 32.7771815253871], [-79.9284774052043, 32.7771814958616], [-79.9284763742595, 32.7771814724019], [-79.9284755107066, 32.7771812051093], [-79.9284744769874, 32.7771808858233], [-79.9284737135465, 32.7771803768138], [-79.9284728908174, 32.7771798276042], [-79.9284717767124, 32.7771784037674], [-79.9284712460918, 32.7771767559752], [-79.9284677431803, 32.7771485167792], [-79.928403718798, 32.7771562925225], [-79.9283923776576, 32.7770924325028], [-79.9282424740803, 32.7771049759735], [-79.9282527678341, 32.777194144061], [-79.9281830680746, 32.7771990778843], [-79.9282052712393, 32.7772963252539], [-79.9281549549267, 32.7773039233639], [-79.9281689480374, 32.7773586232526], [-79.9279131524322, 32.7773851557469]]], "type": "Polygon"}, "id": "67", "properties": {"OBJECTID": 538, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7459.7734375, "Shape__Length": 434.592554599943, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9268903583582, 32.777418257321, -79.9261835587941, 32.7778455780411], "geometry": {"coordinates": [[[-79.9268828157782, 32.777418257321], [-79.9261835587941, 32.7774637432741], [-79.9261991988557, 32.7778455780411], [-79.9268903583582, 32.7777893278721], [-79.9268851078943, 32.7776605564898], [-79.9268828157782, 32.777418257321]]], "type": "Polygon"}, "id": "68", "properties": {"OBJECTID": 539, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3858.81640625, "Shape__Length": 255.098781052734, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9328208651416, 32.7767401894649, -79.9311961918066, 32.7779791464568], "geometry": {"coordinates": [[[-79.93162740353, 32.776838063308], [-79.9311961918066, 32.7768792395287], [-79.9313225128855, 32.7779791464568], [-79.9328208651416, 32.7777568467845], [-79.932715157155, 32.7767401894649], [-79.9323978339228, 32.7767668059319], [-79.9323831974945, 32.7767671237027], [-79.9324064135282, 32.7769842726754], [-79.9321368724842, 32.7770076900078], [-79.9321150621973, 32.7767956720655], [-79.93162740353, 32.776838063308]]], "type": "Polygon"}, "id": "69", "properties": {"OBJECTID": 541, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 23003.32421875, "Shape__Length": 678.019604946536, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9278667018163, 32.777724687443, -79.9275090233085, 32.7780080758398], "geometry": {"coordinates": [[[-79.9278324331951, 32.777724687443], [-79.9275441188319, 32.7777508205336], [-79.9275090233085, 32.7777536241872], [-79.9275334735439, 32.777884373843], [-79.9275473871148, 32.7779573434007], [-79.9276773306984, 32.77794633749], [-79.9276798550617, 32.7780080758398], [-79.9278667018163, 32.7779939332071], [-79.9278571628148, 32.7778565442268], [-79.9278324331951, 32.777724687443]]], "type": "Polygon"}, "id": "70", "properties": {"OBJECTID": 543, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1157.609375, "Shape__Length": 143.010408492944, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9278324331951, 32.7768917994014, -79.9270984317566, 32.7780497794509], "geometry": {"coordinates": [[[-79.9278324331951, 32.777724687443], [-79.9278180069643, 32.7776580668601], [-79.9278049622876, 32.7775976061982], [-79.9277941373319, 32.7775361648547], [-79.9276750602929, 32.7768917994014], [-79.927378021802, 32.7769187853929], [-79.9271057645854, 32.7769435196857], [-79.9270984317566, 32.7772359116511], [-79.9271035169539, 32.7776507429403], [-79.9271108156826, 32.7777869516765], [-79.9271191243372, 32.7779931751707], [-79.927128854308, 32.7780497794509], [-79.9276798550617, 32.7780080758398], [-79.9276773306984, 32.77794633749], [-79.9275473871148, 32.7779573434007], [-79.9275334735439, 32.777884373843], [-79.9275090233085, 32.7777536241872], [-79.9275441188319, 32.7777508205336], [-79.9278324331951, 32.777724687443]]], "type": "Polygon"}, "id": "71", "properties": {"OBJECTID": 544, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9850.310546875, "Shape__Length": 469.814340796742, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.934511156482, 32.7776733031762, -79.933710757502, 32.7781469679338], "geometry": {"coordinates": [[[-79.9344660204792, 32.7776733031762], [-79.933710757502, 32.7777436299554], [-79.9337427699224, 32.7780269860062], [-79.9337605534612, 32.7780251984546], [-79.933774325693, 32.7781469679338], [-79.934511156482, 32.7780729035123], [-79.9344660204792, 32.7776733031762]]], "type": "Polygon"}, "id": "72", "properties": {"OBJECTID": 545, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4493.775390625, "Shape__Length": 276.217160107579, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9311194285571, 32.7774855872337, -79.9303388129384, 32.7781196648219], "geometry": {"coordinates": [[[-79.9303388129384, 32.777568303391], [-79.9303771433975, 32.7778245929574], [-79.9304191095368, 32.7778199574044], [-79.9304219674018, 32.7778390345662], [-79.9304060464139, 32.7778409308068], [-79.9304382139497, 32.7780422636352], [-79.9303763031798, 32.7780596823813], [-79.9303963660978, 32.7781196648219], [-79.9311194285571, 32.7780282456068], [-79.9310797859273, 32.7777266203811], [-79.9310378238573, 32.7774855872337], [-79.9307027028938, 32.7775290055313], [-79.9306312552988, 32.7775426687667], [-79.9303388129384, 32.777568303391]]], "type": "Polygon"}, "id": "73", "properties": {"OBJECTID": 546, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5642.982421875, "Shape__Length": 318.122075359854, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9269015948692, 32.7778581282203, -79.9262019968733, 32.7781015287314], "geometry": {"coordinates": [[[-79.9268931572514, 32.7778581282203], [-79.9262019968733, 32.7779144054577], [-79.9262096522609, 32.7781015287314], [-79.9269015948692, 32.7780469573569], [-79.9268931572514, 32.7778581282203]]], "type": "Polygon"}, "id": "74", "properties": {"OBJECTID": 547, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1922.55078125, "Shape__Length": 204.473212841603, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.933774325693, 32.7777436299554, -79.9329732805036, 32.7782225453125], "geometry": {"coordinates": [[[-79.933710757502, 32.7777436299554], [-79.9329732805036, 32.7778122999427], [-79.9330222487708, 32.7782225453125], [-79.933774325693, 32.7781469679338], [-79.9337605534612, 32.7780251984546], [-79.9337427699224, 32.7780269860062], [-79.933710757502, 32.7777436299554]]], "type": "Polygon"}, "id": "75", "properties": {"OBJECTID": 548, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4503.7734375, "Shape__Length": 277.378389170776, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9304382139497, 32.777568303391, -79.9294020203899, 32.7782634768344], "geometry": {"coordinates": [[[-79.9303388129384, 32.777568303391], [-79.9299798703827, 32.7776023108929], [-79.9294020203899, 32.7776660606859], [-79.9294450640659, 32.7782634768344], [-79.9303963660978, 32.7781196648219], [-79.9303763031798, 32.7780596823813], [-79.9304382139497, 32.7780422636352], [-79.9304060464139, 32.7778409308068], [-79.9304219674018, 32.7778390345662], [-79.9304191095368, 32.7778199574044], [-79.9303771433975, 32.7778245929574], [-79.9303388129384, 32.777568303391]]], "type": "Polygon"}, "id": "76", "properties": {"OBJECTID": 549, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8271.873046875, "Shape__Length": 377.588912522131, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9292835981962, 32.7776820490194, -79.9279914490982, 32.7784659968393], "geometry": {"coordinates": [[[-79.9292407269096, 32.7776820490194], [-79.9279914490982, 32.7777877115653], [-79.9280198017628, 32.7779002160089], [-79.9280414113855, 32.7780161550709], [-79.9280596323876, 32.7781382050363], [-79.9281222885733, 32.7784659968393], [-79.9292835981962, 32.7782881222495], [-79.9292407269096, 32.7776820490194]]], "type": "Polygon"}, "id": "77", "properties": {"OBJECTID": 552, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11566.1171875, "Shape__Length": 442.569091523748, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.926916510984, 32.778127881113, -79.9262257966713, 32.7784859896713], "geometry": {"coordinates": [[[-79.9265073425433, 32.7781601967956], [-79.9262257966713, 32.7781831170365], [-79.9262363894075, 32.7784859896713], [-79.9265114538856, 32.7784636095371], [-79.926916510984, 32.7784306317355], [-79.9269041913856, 32.778127881113], [-79.9265073425433, 32.7781601967956]]], "type": "Polygon"}, "id": "78", "properties": {"OBJECTID": 553, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3040.9609375, "Shape__Length": 232.162843957355, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9279621885496, 32.7780211092577, -79.9276191973391, 32.7785362741681], "geometry": {"coordinates": [[[-79.9276191973391, 32.778040244683], [-79.9276325999687, 32.7781910598165], [-79.9276382040511, 32.7782541111835], [-79.9276469555883, 32.7783525953088], [-79.9276635394644, 32.7785362741681], [-79.9279621885496, 32.778490542461], [-79.9279315262651, 32.778327214648], [-79.9279132393065, 32.7782332364225], [-79.9279010678379, 32.7781706803401], [-79.9278888953857, 32.7781081188371], [-79.9278719651852, 32.7780211092577], [-79.9276548489513, 32.7780375450733], [-79.9276191973391, 32.778040244683]]], "type": "Polygon"}, "id": "79", "properties": {"OBJECTID": 554, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1996.9296875, "Shape__Length": 190.864645352248, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9276635394644, 32.778040244683, -79.9271299799821, 32.7786088848239], "geometry": {"coordinates": [[[-79.9276191973391, 32.778040244683], [-79.9274997112589, 32.7780499443704], [-79.9273362069876, 32.7780616667817], [-79.9271299799821, 32.7780772772762], [-79.9271319494717, 32.7781268026249], [-79.9271358884796, 32.7782258515196], [-79.9271380716738, 32.7782807473714], [-79.9271425594293, 32.7783936072836], [-79.9271502139745, 32.7785860918964], [-79.9271534569654, 32.7785922771699], [-79.9271606693791, 32.7785985261133], [-79.9271718825486, 32.7786048083382], [-79.9271811461371, 32.7786082435042], [-79.927188460557, 32.7786088848239], [-79.9274144426932, 32.7785744177923], [-79.9276635394644, 32.7785362741681], [-79.9276469555883, 32.7783525953088], [-79.9276382040511, 32.7782541111835], [-79.9276325999687, 32.7781910598165], [-79.9276191973391, 32.778040244683]]], "type": "Polygon"}, "id": "80", "properties": {"OBJECTID": 556, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3833.703125, "Shape__Length": 247.19188031751, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9498928521152, 32.7753652339441, -79.9459407244408, 32.7788409275955], "geometry": {"coordinates": [[[-79.9478089049398, 32.7770087154195], [-79.9478471112724, 32.7770782814186], [-79.9468475221237, 32.7774706569972], [-79.946849119826, 32.7774729902685], [-79.946850718619, 32.7774754101254], [-79.9468531027742, 32.7774800705859], [-79.9468547015443, 32.7774824038664], [-79.9468563003362, 32.7774847353433], [-79.9468578980391, 32.7774870686146], [-79.9468594978659, 32.777489402806], [-79.946861096669, 32.7774917333812], [-79.9468626944061, 32.7774941523269], [-79.9468642931767, 32.7774964856073], [-79.9468658929699, 32.777498734124], [-79.946867490695, 32.7775010655917], [-79.9468690905332, 32.7775033988812], [-79.9468706892824, 32.777505733965], [-79.9468722880534, 32.7775080672453], [-79.9468738868245, 32.7775104005256], [-79.9468754856175, 32.7775127320023], [-79.9468770854112, 32.7775149805189], [-79.9468786841826, 32.7775173137991], [-79.9468802829757, 32.7775196452758], [-79.9468818827698, 32.7775218937924], [-79.9468834815414, 32.7775242270725], [-79.9468850792674, 32.77752655854], [-79.9468866801291, 32.7775288070657], [-79.9468882789336, 32.7775311376405], [-79.946889878728, 32.777533386157], [-79.9468914774892, 32.7775357203388], [-79.9468930773164, 32.77753796615], [-79.946894677111, 32.7775402146663], [-79.9468962759159, 32.7775425452411], [-79.9468986890852, 32.7775448007595], [-79.9469002889128, 32.7775470465706], [-79.9469018876745, 32.7775493807522], [-79.9469034874696, 32.7775516292685], [-79.9469050872974, 32.7775538750796], [-79.9469066870927, 32.7775561235958], [-79.9469082869206, 32.7775583694069], [-79.9469098867161, 32.7775606179231], [-79.9469122999188, 32.777562870736], [-79.946913898692, 32.7775652040157], [-79.9469154984877, 32.7775674525318], [-79.9469170993385, 32.7775696135791], [-79.9469186991671, 32.77757185939], [-79.946920298963, 32.7775741079061], [-79.9469227121664, 32.7775763607187], [-79.9469243119625, 32.7775786092348], [-79.9469259117914, 32.7775808550456], [-79.9469275115877, 32.7775831035616], [-79.94692911245, 32.777585263707], [-79.9469315256539, 32.7775875165195], [-79.9469331254505, 32.7775897650354], [-79.9469347263022, 32.7775919260825], [-79.9469363260989, 32.7775941745984], [-79.9469379269616, 32.7775963347437], [-79.9469403401335, 32.7775985902612], [-79.9469419409855, 32.7776007513082], [-79.9469435408152, 32.7776029971188], [-79.9469451416348, 32.777605160871], [-79.9469475548397, 32.7776074136831], [-79.9469491557029, 32.7776095738283], [-79.9469507565663, 32.7776117339734], [-79.9469531697388, 32.7776139894908], [-79.9469547705915, 32.7776161505376], [-79.9469563714225, 32.7776183133878], [-79.9469579722752, 32.7776204744346], [-79.9469603865033, 32.777622642483], [-79.9469619873672, 32.777624802628], [-79.9469635882311, 32.777626962773], [-79.9469660024268, 32.7776291335265], [-79.9469676032909, 32.7776312936714], [-79.9469692041443, 32.777633454718], [-79.9469716183403, 32.7776356254714], [-79.9469732192047, 32.7776377856162], [-79.9469748200691, 32.7776399457611], [-79.9469772342981, 32.7776421138091], [-79.9469788361851, 32.7776441891903], [-79.9469812503817, 32.7776463599435], [-79.9469828512465, 32.7776485200882], [-79.9469844521005, 32.7776506811346], [-79.9469868673742, 32.7776527626154], [-79.9469884682284, 32.7776549236618], [-79.9469908834914, 32.7776570060443], [-79.9469924843131, 32.7776591697958], [-79.9469940862008, 32.7776612451768], [-79.9469965004418, 32.7776634123227], [-79.9469981023296, 32.7776654877037], [-79.9470005175931, 32.7776675700859], [-79.9470021184479, 32.7776697311321], [-79.9470045337225, 32.7776718126126], [-79.9470061355999, 32.7776738888951], [-79.9470077374882, 32.777675964276], [-79.9470101517298, 32.7776781314216], [-79.9470117536183, 32.7776802068024], [-79.9470141688826, 32.7776822891843], [-79.9470157707712, 32.7776843645651], [-79.9470181860357, 32.777686446947], [-79.9470197879245, 32.7776885223277], [-79.9470222031891, 32.7776906047095], [-79.9470238050781, 32.7776926800901], [-79.9470262213762, 32.7776946768065], [-79.9470278232545, 32.7776967530888], [-79.9470302385196, 32.7776988354705], [-79.9470318404089, 32.777700910851], [-79.9470342567074, 32.7777029075673], [-79.9470366719728, 32.7777049899488], [-79.9470382738624, 32.7777070653293], [-79.9470406901938, 32.7777090593402], [-79.9470422920727, 32.7777111356223], [-79.9470447083718, 32.7777131323383], [-79.9470463102617, 32.7777152077187], [-79.9470503294734, 32.7777191950513], [-79.9470527447396, 32.7777212774325], [-79.9470567650519, 32.7777252620689], [-79.9470607821639, 32.7777293350574], [-79.9470631984638, 32.7777313317731], [-79.9470672177096, 32.7777353164], [-79.9470696340098, 32.7777373131156], [-79.9470736532127, 32.7777413013492], [-79.9470760695459, 32.7777432953595], [-79.947080089826, 32.7777471943206], [-79.947082506116, 32.7777491919376], [-79.9470865263858, 32.7777530918003], [-79.947088942687, 32.7777550885155], [-79.9470929639921, 32.7777589910924], [-79.947095379248, 32.7777609859948], [-79.9470993994971, 32.7777648876605], [-79.9471018179213, 32.7777667969159], [-79.947104234178, 32.777768708858], [-79.9471082544605, 32.7777726078182], [-79.9471106728851, 32.7777745170734], [-79.9471130891422, 32.7777764290152], [-79.9471171104478, 32.7777802432117], [-79.9471195288727, 32.7777821524666], [-79.9471219451303, 32.7777840644084], [-79.9471259664366, 32.7777878786044], [-79.9471283848619, 32.7777897878592], [-79.9471308011199, 32.7777916998008], [-79.9471332184781, 32.7777936090463], [-79.9471372418749, 32.7777973384877], [-79.9471396581333, 32.7777992504291], [-79.947142076525, 32.7778010740091], [-79.9471444938728, 32.7778029841561], [-79.947148516214, 32.7778067126861], [-79.947150934606, 32.777808536266], [-79.9471533519216, 32.777810449118], [-79.9471557713812, 32.777812272707], [-79.9471581887061, 32.7778140962775], [-79.947160606022, 32.7778160091294], [-79.9471646304868, 32.7778196501993], [-79.9471670478121, 32.7778214737696], [-79.9471694661723, 32.7778233000543], [-79.9471718845544, 32.7778251245354], [-79.9471743040149, 32.777826948124], [-79.9471767212971, 32.7778287753011], [-79.9471791396903, 32.7778305988804], [-79.9471831641457, 32.7778342408514], [-79.9471855825048, 32.777835978756], [-79.9471880008876, 32.7778378032369], [-79.9471904203052, 32.7778396304321], [-79.9471928397321, 32.7778413683457], [-79.9471952570477, 32.7778431928173], [-79.9471976754309, 32.7778450172979], [-79.9472000959255, 32.7778467552206], [-79.9472025142745, 32.7778484940267], [-79.9472049326253, 32.7778503212125], [-79.9472073520745, 32.7778520573224], [-79.9472097725586, 32.7778537961466], [-79.9472121898423, 32.7778556233231], [-79.9472146092701, 32.7778573612363], [-79.9472170297545, 32.7778591000604], [-79.9472194491607, 32.7778608397771], [-79.9472218675105, 32.7778625785827], [-79.9472242869386, 32.7778643164958], [-79.9472267074234, 32.7778660553198], [-79.94722912683, 32.7778677950362], [-79.947231545191, 32.77786953294], [-79.9472339646087, 32.7778712717545], [-79.947236385083, 32.7778730114801], [-79.9472388055338, 32.7778746646292], [-79.947241223917, 32.7778764007293], [-79.9472436444025, 32.7778781395529], [-79.9472460648536, 32.777879792702], [-79.9472484831935, 32.7778815324089], [-79.9472509036449, 32.7778831855578], [-79.9472533241307, 32.7778849243812], [-79.9472557445822, 32.7778865775301], [-79.9472581629226, 32.7778883172368], [-79.9472605833742, 32.7778899703856], [-79.9472630049152, 32.77789162174], [-79.9472654253671, 32.7778932748886], [-79.9472678447516, 32.7778949280281], [-79.9472702652273, 32.7778966677529], [-79.9472726856794, 32.7778983209014], [-79.9472759184637, 32.7778999792367], [-79.9472783389161, 32.7779016323851], [-79.947280760436, 32.7779032855427], [-79.9472831819433, 32.7779048512222], [-79.9472856013176, 32.777906505263], [-79.9472880228268, 32.7779081593222], [-79.9472904432797, 32.7779098124704], [-79.9472928647873, 32.7779113781496], [-79.947295284162, 32.7779130321903], [-79.947298519093, 32.7779146896416], [-79.9473009405683, 32.777916258026], [-79.9473033599542, 32.7779179111647], [-79.9473057825296, 32.777919476853], [-79.9473082029722, 32.7779211309025], [-79.9473106244478, 32.7779226992867], [-79.9473130448887, 32.7779242649564], [-79.94731628081, 32.7779258403489], [-79.9473187012855, 32.7779274916931], [-79.9473211216941, 32.7779290600679], [-79.9473235432028, 32.7779306257466], [-79.9473259657464, 32.7779321941397], [-79.9473283872553, 32.7779337598182], [-79.9473316210423, 32.777935335192], [-79.9473340436187, 32.7779369008796], [-79.9473364651061, 32.7779384683616], [-79.9473388876374, 32.7779399492764], [-79.9473413080793, 32.7779415149456], [-79.9473445440017, 32.7779430903373], [-79.9473469665332, 32.777944571252], [-79.9473493869536, 32.7779461387245], [-79.9473518095308, 32.7779477044118], [-79.9473550454407, 32.7779491923253], [-79.9473574658505, 32.7779507606994], [-79.9473598894499, 32.777952241623], [-79.9473623119929, 32.7779537216356], [-79.9473655468486, 32.7779552970176], [-79.9478155323784, 32.7782136052801], [-79.9489443936923, 32.7788409275955], [-79.9489477051463, 32.7788361456647], [-79.9489552448087, 32.778817914038], [-79.9489627690161, 32.7788011432487], [-79.948964510581, 32.7787916222205], [-79.9489679099227, 32.7787795397976], [-79.9489729898269, 32.7787630032265], [-79.9489748771389, 32.7787412870496], [-79.9489792284424, 32.7787177892761], [-79.9489868467098, 32.7786931156221], [-79.9489976533569, 32.7786738821668], [-79.9490091576198, 32.7786642718598], [-79.9490166341875, 32.7786513677219], [-79.9490306509618, 32.7786357673741], [-79.9490439422198, 32.7786128604471], [-79.9490677878085, 32.7785916774097], [-79.949098140502, 32.7785705466598], [-79.9491260188811, 32.7785522318167], [-79.9491579052083, 32.778538850157], [-79.9491922389596, 32.7785248843813], [-79.9492274222469, 32.7785079209829], [-79.9492552178786, 32.7784964773736], [-79.9492814187954, 32.7784823560441], [-79.9493035476219, 32.7784686290075], [-79.9493225055717, 32.7784480054657], [-79.9493324584481, 32.7784321122564], [-79.9493433115355, 32.7784090995855], [-79.9493566305518, 32.7783837876739], [-79.9493707392174, 32.7783606316126], [-79.9493823426262, 32.7783427757551], [-79.9493964171097, 32.7783222816107], [-79.9494202760148, 32.7783000669232], [-79.9494522759232, 32.778277234946], [-79.9494810140108, 32.7782550630494], [-79.9494900924749, 32.7782442306247], [-79.9494999088743, 32.7782396749862], [-79.9495122139603, 32.7782311059135], [-79.9495286231647, 32.778219478792], [-79.9495434521282, 32.778203971036], [-79.9495558398812, 32.7781885306959], [-79.9495699122744, 32.7781682935371], [-79.949580694989, 32.7781510330396], [-79.9495947683902, 32.7781307111145], [-79.9496047531866, 32.7781121577489], [-79.9496180039418, 32.7780925980218], [-79.9496312577614, 32.7780727831007], [-79.9496436310403, 32.7780585429686], [-79.9496552632436, 32.7780382857508], [-79.9496701375991, 32.7780190005885], [-79.9496859141873, 32.7779923362511], [-79.9497049969922, 32.7779613182877], [-79.9497240043781, 32.77793656832], [-79.9497372478009, 32.7779176136483], [-79.9497611002777, 32.7778958281147], [-79.9497833343009, 32.7778734262574], [-79.9498014321388, 32.7778566605199], [-79.9498171269957, 32.777836696089], [-79.9498377156543, 32.7778158249383], [-79.9498575125283, 32.777793062155], [-79.9498724477399, 32.7777686217088], [-79.9498832913287, 32.7777463799799], [-79.9498925866176, 32.777717512715], [-79.9498928521152, 32.7776954399099], [-79.9498906082591, 32.7776790126871], [-79.9498834707258, 32.7776637483059], [-79.9498723862043, 32.7776384820753], [-79.9498612861459, 32.7776145080379], [-79.9498540763186, 32.7776052546576], [-79.9498420379428, 32.7775917500668], [-79.9498260276856, 32.7775701363593], [-79.9498156553026, 32.7775533841356], [-79.9498085249909, 32.7775374326148], [-79.9497997917472, 32.7775195761876], [-79.9497878350186, 32.7774992859943], [-79.9497774718955, 32.7774815878233], [-79.949759843208, 32.7774593604934], [-79.9497430506403, 32.7774352500961], [-79.9497310752735, 32.7774164225112], [-79.9497174380824, 32.7774004971876], [-79.9497078418781, 32.7773867583319], [-79.9496942036327, 32.7773709213763], [-79.9496788828417, 32.7773597090053], [-79.9496644178133, 32.7773449805159], [-79.9496515454045, 32.7773331028678], [-79.9496329742383, 32.7773216046585], [-79.9496192853621, 32.777309977921], [-79.949603217389, 32.7772932588415], [-79.9495903398428, 32.7772818095137], [-79.9495774633306, 32.7772702745192], [-79.9495588900935, 32.7772589503347], [-79.9495427901015, 32.777244894087], [-79.9495242933677, 32.7772272126269], [-79.9495033338279, 32.7772113966512], [-79.9494872534497, 32.777195711853], [-79.9494670896847, 32.7771813663807], [-79.9494541924854, 32.7771714644162], [-79.9494444837367, 32.7771670838025], [-79.94942989889, 32.7771624069957], [-79.9494177789232, 32.7771555157099], [-79.9493976214008, 32.7771407419087], [-79.9493790420834, 32.7771299271804], [-79.9493637213169, 32.7771186308991], [-79.9493508707336, 32.7771050345115], [-79.9493307287015, 32.777088798058], [-79.9493121834688, 32.7770751527564], [-79.9493009368678, 32.7770633738072], [-79.9492767176987, 32.7770480474478], [-79.9492573973804, 32.7770312156151], [-79.9492428787372, 32.7770210408747], [-79.9492380346667, 32.7770179068791], [-79.9492210924449, 32.7770062494464], [-79.9492041047085, 32.7769983739107], [-79.9491936404712, 32.7769891800142], [-79.9491759272753, 32.7769739942922], [-79.9491581654819, 32.7769628465612], [-79.9491469385619, 32.7769494354479], [-79.9491283499709, 32.7769393970803], [-79.9491049856013, 32.7769206411416], [-79.9490856539578, 32.7769047552076], [-79.9490711570182, 32.7768926921933], [-79.9490607000478, 32.7768828968247], [-79.9490462083365, 32.7768704000706], [-79.9490284465916, 32.7768592514191], [-79.9490139496565, 32.7768471893], [-79.9489873153098, 32.7768297805413], [-79.9489672220681, 32.7768095908078], [-79.9489527933652, 32.7767917737652], [-79.9489415603252, 32.7767789641032], [-79.9489278747418, 32.7767670784895], [-79.9489093440868, 32.7767521445312], [-79.9488940649047, 32.7767375821064], [-79.9488820091263, 32.7767253677945], [-79.9488650845861, 32.7767122503952], [-79.9488529947494, 32.7767029541215], [-79.9488408945936, 32.7766946037814], [-79.9488207020907, 32.7766825747651], [-79.9488061566407, 32.7766746353876], [-79.9487932358347, 32.7766667063618], [-79.9487803543503, 32.7766556005126], [-79.9487667029237, 32.7766408816129], [-79.9487514403325, 32.7766249449182], [-79.9487321109037, 32.7766088857947], [-79.9487184284451, 32.7765966565855], [-79.9487055190883, 32.7765879556792], [-79.9486901923255, 32.7765771724046], [-79.9486764716581, 32.7765682056965], [-79.9486546504273, 32.7765564214812], [-79.948635257885, 32.7765456059625], [-79.9486239483618, 32.7765390651612], [-79.948612612973, 32.7765346723044], [-79.9485948006373, 32.7765277347177], [-79.9485851168176, 32.7765212935596], [-79.9485673490017, 32.7765106597354], [-79.9485471483067, 32.77649940618], [-79.9485220777679, 32.7764872522175], [-79.9484978030498, 32.7764765624535], [-79.948474367562, 32.7764637326326], [-79.9484541151803, 32.7764567722474], [-79.9484347144413, 32.776446641118], [-79.9484079903226, 32.7764367049558], [-79.9483885781639, 32.7764274340701], [-79.9483683423511, 32.7764190994185], [-79.9483497022615, 32.7764134415966], [-79.9483269766765, 32.7764091221416], [-79.9483059243923, 32.7764010392867], [-79.9482775580408, 32.7763923785995], [-79.9482572819256, 32.7763874795692], [-79.9482394872684, 32.7763790793081], [-79.9482233441185, 32.7763685477817], [-79.9482119591609, 32.7763683615153], [-79.9482022453492, 32.7763644136388], [-79.9481836331532, 32.7763562651667], [-79.9481585151538, 32.7763480580469], [-79.9481374152925, 32.7763439265889], [-79.9481220327802, 32.7763378683715], [-79.9481082946189, 32.7763303615174], [-79.9480913122751, 32.7763220575011], [-79.9480759453394, 32.7763147070841], [-79.9480622278511, 32.7763054851149], [-79.9480485155702, 32.7762958312105], [-79.948034846732, 32.7762825721472], [-79.9480122402647, 32.7762684597439], [-79.9479872567937, 32.7762490917502], [-79.9479759660035, 32.776241003503], [-79.9479630908795, 32.7762293835764], [-79.9479485859136, 32.7762179200781], [-79.9479291646208, 32.7762095923583], [-79.9479154202697, 32.7762026021797], [-79.947899243094, 32.7761949886512], [-79.9478855090361, 32.7761870561416], [-79.9478733676409, 32.7761821413365], [-79.9478571614439, 32.7761768479708], [-79.9478385731765, 32.7761668085063], [-79.9478199280021, 32.7761615798321], [-79.9478029125913, 32.7761559359004], [-79.9477826593261, 32.7761491476459], [-79.9477583340357, 32.7761425804826], [-79.9477299740175, 32.7761334056767], [-79.9477113257352, 32.7761283474057], [-79.9476983585387, 32.7761243706012], [-79.9476797299114, 32.7761176819792], [-79.9476554439974, 32.7761079379739], [-79.9476343928915, 32.7760997684368], [-79.9476173982463, 32.7760924923387], [-79.9476043937869, 32.7760916075913], [-79.9475913520438, 32.7760938158115], [-79.9475782606455, 32.7761001431793], [-79.9475635393708, 32.7761067180554], [-79.9475495879845, 32.7761169059862], [-79.9475340492346, 32.7761238147188], [-79.9475250567025, 32.7761275169362], [-79.9475152994439, 32.7761271777695], [-79.9475072093365, 32.7761234990261], [-79.9474991792697, 32.7761148399714], [-79.947491982253, 32.7761045548625], [-79.9474831895529, 32.776091681289], [-79.9474784408736, 32.7760807327529], [-79.9474688700399, 32.7760649305421], [-79.9474625609466, 32.7760484682958], [-79.9474537610054, 32.7760361961809], [-79.9474409129207, 32.7760223416873], [-79.9474296429099, 32.7760125364767], [-79.9474200337698, 32.7759999128962], [-79.9474127891099, 32.7759935810117], [-79.9474014269559, 32.7759914189481], [-79.9473884929318, 32.7759846936068], [-79.9473731446606, 32.7759757163534], [-79.9473594377174, 32.7759657188184], [-79.9473506295468, 32.7759541311169], [-79.9473418275759, 32.775942029423], [-79.9473354521927, 32.7759310677852], [-79.9473355754441, 32.7759208456589], [-79.9473332617275, 32.7759103446378], [-79.947330975954, 32.7758975261444], [-79.9473318970171, 32.7758886005057], [-79.9473336065842, 32.775881743244], [-79.947331272113, 32.7758729636447], [-79.9473289728785, 32.775861173126], [-79.9473282951994, 32.7758499133117], [-79.9473251836332, 32.7758382077896], [-79.947318027052, 32.7758245727063], [-79.9473091878157, 32.7758155630771], [-79.9472978526087, 32.7758111682953], [-79.9472888973824, 32.7758117784283], [-79.9472872240313, 32.7758156319929], [-79.9472871525845, 32.7758215573273], [-79.9472910381232, 32.7758366243321], [-79.9472916826547, 32.7758505442708], [-79.9472882283206, 32.7758672661054], [-79.9472783571959, 32.7758763726477], [-79.9472677327957, 32.7758804891737], [-79.9472530716103, 32.775882081898], [-79.9472400961839, 32.7758787037913], [-79.9472279838227, 32.7758712992086], [-79.9472102245575, 32.7758599807673], [-79.9471941199821, 32.7758463570479], [-79.9471796339313, 32.7758335156184], [-79.9471635220673, 32.7758204085829], [-79.9471441755153, 32.7758058966052], [-79.9471321014929, 32.7757952259011], [-79.9471199922735, 32.7757875625084], [-79.9471095656908, 32.7757752763681], [-79.947094315982, 32.7757582203995], [-79.9470871832381, 32.7757426122954], [-79.9470848312103, 32.7757352908054], [-79.947087370725, 32.7757270662961], [-79.9470849948593, 32.7757217214204], [-79.9470826904872, 32.7757104485051], [-79.9470795790008, 32.7756986509903], [-79.9470788878589, 32.7756885102343], [-79.9470757794515, 32.7756764575269], [-79.9470799788267, 32.7756654985157], [-79.9470792535044, 32.7756581919288], [-79.9470818313756, 32.7756468753622], [-79.9470827669456, 32.7756366602281], [-79.9470812655685, 32.775626253672], [-79.94708382993, 32.7756159686868], [-79.9470815939546, 32.7755990247282], [-79.9470785425033, 32.7755822496082], [-79.9470721848083, 32.7755698262365], [-79.947062547819, 32.7755595201006], [-79.9470497060981, 32.7755451488697], [-79.9470416999366, 32.7755345158763], [-79.9470361587271, 32.7755218407044], [-79.9470266398249, 32.7755017443737], [-79.9470179353372, 32.7754815675747], [-79.9470132416724, 32.7754660652339], [-79.9470019655168, 32.7754567793867], [-79.9469890368015, 32.7754496229719], [-79.9469696374896, 32.7754394059458], [-79.9469494383143, 32.7754280637575], [-79.9469178459478, 32.7754171402373], [-79.9468951300378, 32.7754121343018], [-79.9468433581979, 32.7753882382157], [-79.9468175049275, 32.7753735844935], [-79.9468054040832, 32.7753652339441], [-79.9459407244408, 32.7757014716424], [-79.9460830415177, 32.7760414013728], [-79.9462174147223, 32.7763655426447], [-79.9472406550782, 32.7759673606585], [-79.9478089049398, 32.7770087154195]]], "type": "Polygon"}, "id": "81", "properties": {"OBJECTID": 558, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 74274.990234375, "Shape__Length": 1608.41068823044, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9269164620296, 32.7785207262486, -79.9262385835014, 32.7787400952259], "geometry": {"coordinates": [[[-79.9269120119886, 32.7785207262486], [-79.9262385835014, 32.7785740650842], [-79.9262496178315, 32.7787400952259], [-79.9269164620296, 32.7786316811664], [-79.9269120119886, 32.7785207262486]]], "type": "Polygon"}, "id": "82", "properties": {"OBJECTID": 560, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1377.1328125, "Shape__Length": 187.621507049555, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9277971349315, 32.7786255243086, -79.9271558602958, 32.7792873226202], "geometry": {"coordinates": [[[-79.9277190936281, 32.7786255243086], [-79.9275513675322, 32.7786512137174], [-79.9271558602958, 32.7787117887825], [-79.9271616266285, 32.7788533482103], [-79.9271677343766, 32.7790032652411], [-79.9271798502327, 32.7792873226202], [-79.9274849458115, 32.7792425549277], [-79.9276272360882, 32.7792216757774], [-79.9276593098332, 32.7792169697779], [-79.927787520307, 32.7791981566794], [-79.9277971349315, 32.7791967466058], [-79.9277696480965, 32.7790502414579], [-79.9277665014875, 32.7790387244909], [-79.9277535502214, 32.7789913313329], [-79.9277395110274, 32.7789156984732], [-79.9277293996638, 32.7787719852884], [-79.9277190936281, 32.7786255243086]]], "type": "Polygon"}, "id": "83", "properties": {"OBJECTID": 567, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4977.41015625, "Shape__Length": 285.996807736854, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9330087047073, 32.7778393031857, -79.9313278753036, 32.7793329132962], "geometry": {"coordinates": [[[-79.9314846124414, 32.7793329132962], [-79.9319954849068, 32.7792843509804], [-79.9325713142058, 32.7792295895709], [-79.9325768000183, 32.7792705672348], [-79.9326802338431, 32.7792607333507], [-79.9330087047073, 32.7792295030093], [-79.932997073313, 32.7791322315116], [-79.9329838814016, 32.7791333808235], [-79.9328294234008, 32.7778393031857], [-79.9323951559398, 32.7779037324838], [-79.932192630998, 32.7779363139625], [-79.9319663711865, 32.7779659399981], [-79.9313278753036, 32.7780620692645], [-79.9314103658695, 32.7787252943557], [-79.9314434347473, 32.7789992081915], [-79.9314846124414, 32.7793329132962]]], "type": "Polygon"}, "id": "84", "properties": {"OBJECTID": 568, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 29749.2421875, "Shape__Length": 701.113455270869, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.928113057941, 32.7785855601582, -79.9277190936281, 32.7793208979484], "geometry": {"coordinates": [[[-79.927787520307, 32.7791981566794], [-79.9277954791801, 32.7792388153586], [-79.927811554089, 32.7793208979484], [-79.928113057941, 32.7792761504199], [-79.9279800251568, 32.7785855601582], [-79.9277190936281, 32.7786255243086], [-79.9277293996638, 32.7787719852884], [-79.9277395110274, 32.7789156984732], [-79.9277535502214, 32.7789913313329], [-79.9277665014875, 32.7790387244909], [-79.9277696480965, 32.7790502414579], [-79.9277971349315, 32.7791967466058], [-79.927787520307, 32.7791981566794]]], "type": "Polygon"}, "id": "85", "properties": {"OBJECTID": 569, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3019.47265625, "Shape__Length": 250.053541634917, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9269473067197, 32.7788194776171, -79.925693731825, 32.7793832628521], "geometry": {"coordinates": [[[-79.9263082570621, 32.7792858328299], [-79.9263297260958, 32.779282232643], [-79.9265197443877, 32.7792503735481], [-79.9269473067197, 32.7791786842848], [-79.9269323938496, 32.7788194776171], [-79.9256978448481, 32.7790223071122], [-79.9256945477513, 32.7790551401582], [-79.925693731825, 32.7790948119713], [-79.9256965588921, 32.7791294979612], [-79.9257271591722, 32.7793832628521], [-79.9260538624239, 32.7793284914046], [-79.9263082570621, 32.7792858328299]]], "type": "Polygon"}, "id": "86", "properties": {"OBJECTID": 572, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6610.166015625, "Shape__Length": 374.109116446565, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.927811554089, 32.7791981566794, -79.9271798502327, 32.7794136043937], "geometry": {"coordinates": [[[-79.9271798502327, 32.7792873226202], [-79.9271864780117, 32.7794136043937], [-79.9276357607526, 32.7793463715858], [-79.9276683575112, 32.7793416764809], [-79.927811554089, 32.7793208979484], [-79.9277954791801, 32.7792388153586], [-79.927787520307, 32.7791981566794], [-79.9276593098332, 32.7792169697779], [-79.9276272360882, 32.7792216757774], [-79.9274849458115, 32.7792425549277], [-79.9271798502327, 32.7792873226202]]], "type": "Polygon"}, "id": "87", "properties": {"OBJECTID": 573, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1148.982421875, "Shape__Length": 172.532148366374, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9312712364329, 32.7781073181181, -79.9301890435462, 32.77955930455], "geometry": {"coordinates": [[[-79.9302946301803, 32.7782330495358], [-79.9303141227993, 32.7783950760002], [-79.9303301899309, 32.7783929357492], [-79.9303334659651, 32.7784203152607], [-79.9303173977612, 32.7784224555029], [-79.9303342008028, 32.7785621317078], [-79.9303148743757, 32.7785647115129], [-79.9303155321623, 32.778570185995], [-79.9303450223116, 32.778815609638], [-79.9303919443403, 32.7792059645666], [-79.9303915806376, 32.7792060245151], [-79.9303758976191, 32.7792085180463], [-79.930373275107, 32.7791866968495], [-79.9301890435462, 32.7792049623382], [-79.9302190435479, 32.7794545921403], [-79.9302094252302, 32.7794561304325], [-79.9302291822135, 32.77955930455], [-79.9312712364329, 32.7793927872523], [-79.9311143237257, 32.7781073181181], [-79.9302946301803, 32.7782330495358]]], "type": "Polygon"}, "id": "88", "properties": {"OBJECTID": 574, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 17191.830078125, "Shape__Length": 590.372799579135, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.926117909348, 32.7772673790568, -79.9234149309256, 32.7795506339012], "geometry": {"coordinates": [[[-79.9234149309256, 32.7774739602835], [-79.9235437846097, 32.7795506339012], [-79.9255435268691, 32.7792041309543], [-79.925534013621, 32.7791356287108], [-79.9255302194133, 32.779072405543], [-79.9255318223828, 32.7790495463563], [-79.9255455157378, 32.7790473020117], [-79.9255410214515, 32.7789920395149], [-79.9255420129842, 32.7789723674573], [-79.9255524071783, 32.7789452620823], [-79.9255611318653, 32.7789285537396], [-79.9255963682856, 32.7788838110945], [-79.9256201490856, 32.7788630739073], [-79.9256329751757, 32.7788549618066], [-79.9256514546213, 32.7788443651941], [-79.9256708717327, 32.7788345199264], [-79.926117909348, 32.7787635060276], [-79.9261046768824, 32.7785718119704], [-79.9260913928288, 32.7785724664259], [-79.9260830381508, 32.778458176473], [-79.9261003477551, 32.7784572732786], [-79.92609834303, 32.7784298389682], [-79.9260821048721, 32.778430685734], [-79.9260700230753, 32.7782653958098], [-79.9260862612136, 32.7782645481438], [-79.9260842554187, 32.7782371147262], [-79.9260669469252, 32.7782380179276], [-79.9260453167085, 32.777942328002], [-79.9256077801039, 32.7779643272887], [-79.925601872753, 32.7778849219683], [-79.9260388921378, 32.7778544291853], [-79.9260347177002, 32.7777970971053], [-79.9260520271741, 32.7777961939179], [-79.9260500214118, 32.7777687595993], [-79.9260337844328, 32.7777696072698], [-79.9260211856726, 32.7775972388127], [-79.9260374226086, 32.7775963920456], [-79.926035417934, 32.7775689568351], [-79.9260181095726, 32.7775698600294], [-79.9260113769305, 32.7774777640716], [-79.9255734669704, 32.7775007095694], [-79.9255649514016, 32.777500177547], [-79.9255553180175, 32.7774988736547], [-79.9255458623415, 32.7774968354246], [-79.925536666343, 32.7774940816133], [-79.9255193468767, 32.7774865200086], [-79.925503930883, 32.7774764382563], [-79.9254890250954, 32.7774619392825], [-79.9254793670716, 32.7774476324992], [-79.9254737685129, 32.7774347429848], [-79.9254715400663, 32.7774267178141], [-79.92546976728, 32.7774130691904], [-79.925470124399, 32.777388477461], [-79.9254588429434, 32.7772673790568], [-79.924792198307, 32.7773355766773], [-79.9234149309256, 32.7774739602835]]], "type": "Polygon"}, "id": "89", "properties": {"OBJECTID": 575, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 70836.01953125, "Shape__Length": 1208.12027300314, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9303919443403, 32.7782330495358, -79.9294507427275, 32.7796611572682], "geometry": {"coordinates": [[[-79.9302946301803, 32.7782330495358], [-79.9294507427275, 32.7783603385746], [-79.9294689360158, 32.7786704243969], [-79.9294813606144, 32.7786815283025], [-79.9295570304324, 32.778749095831], [-79.9295724726304, 32.7787793856286], [-79.9296084955802, 32.7791905635957], [-79.9295592648064, 32.7792674012031], [-79.9295419147806, 32.7792944893317], [-79.9295740254215, 32.7796611572682], [-79.9300301467951, 32.7795906585565], [-79.9302291822135, 32.77955930455], [-79.9302094252302, 32.7794561304325], [-79.9302190435479, 32.7794545921403], [-79.9301890435462, 32.7792049623382], [-79.930373275107, 32.7791866968495], [-79.9303758976191, 32.7792085180463], [-79.9303919443403, 32.7792059645666], [-79.9303450223116, 32.778815609638], [-79.9303155321623, 32.778570185995], [-79.9303148743757, 32.7785647115129], [-79.9303342008028, 32.7785621317078], [-79.9303173977612, 32.7784224555029], [-79.9303334659651, 32.7784203152607], [-79.9303301899309, 32.7783929357492], [-79.9303141227993, 32.7783950760002], [-79.9302946301803, 32.7782330495358]]], "type": "Polygon"}, "id": "90", "properties": {"OBJECTID": 577, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14785.130859375, "Shape__Length": 556.730031375095, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9294416849032, 32.778385400068, -79.9286943255211, 32.7797997159623], "geometry": {"coordinates": [[[-79.9290801158274, 32.7784170315064], [-79.9286943255211, 32.7784761201794], [-79.9287195653617, 32.7787180710368], [-79.928727311971, 32.7787923283839], [-79.9288256819823, 32.7797997159623], [-79.9294133023123, 32.7796887502659], [-79.9293731222082, 32.7792294120774], [-79.9294104872127, 32.7792275331879], [-79.9294197730671, 32.779226640469], [-79.9294258498079, 32.7792247069043], [-79.9294312663081, 32.7792216817512], [-79.929435753828, 32.7792177159703], [-79.929439084694, 32.7792130068748], [-79.9294402637057, 32.7792104469609], [-79.9294410948147, 32.7792077902116], [-79.9294416849032, 32.7792023275461], [-79.9294221680968, 32.778839987685], [-79.9294213406552, 32.7788350329738], [-79.9294192232712, 32.7788298451222], [-79.929413867114, 32.7788229893899], [-79.9294090528279, 32.7788193038423], [-79.9294034643683, 32.7788165052385], [-79.9293973277603, 32.7788147046786], [-79.9293781389001, 32.7788144168013], [-79.9293501753177, 32.7788161750469], [-79.9293439937217, 32.7788100344576], [-79.9293401537222, 32.7788055971868], [-79.929333448622, 32.7787961819594], [-79.9293281163574, 32.7787861600875], [-79.9293242352715, 32.7787756720416], [-79.9293218590235, 32.778764868898], [-79.9293209601689, 32.7787535511109], [-79.9293188416634, 32.7787017112925], [-79.9292866347451, 32.778385400068], [-79.9290801158274, 32.7784170315064]]], "type": "Polygon"}, "id": "91", "properties": {"OBJECTID": 582, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12123.51171875, "Shape__Length": 496.400760347098, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.938062868081, 32.7803844180266, -79.9375043228684, 32.7809047683534], "geometry": {"coordinates": [[[-79.9375043228684, 32.7804518212889], [-79.9377556875931, 32.7809047683534], [-79.938062868081, 32.7807831172526], [-79.9378840017944, 32.7804608133287], [-79.9377470132894, 32.780515061523], [-79.9376745127112, 32.7803844180266], [-79.9375043228684, 32.7804518212889]]], "type": "Polygon"}, "id": "92", "properties": {"OBJECTID": 600, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2179.7265625, "Shape__Length": 207.955901978802, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9378840017944, 32.7798816778694, -79.9368939367786, 32.7809342589904], "geometry": {"coordinates": [[[-79.9378840017944, 32.7804608133287], [-79.9375626082627, 32.7798816778694], [-79.9368939367786, 32.7801454156273], [-79.9373362388042, 32.7809342589904], [-79.9374660493835, 32.7808828573212], [-79.9374038963055, 32.7807708560805], [-79.9375305925051, 32.7807206817476], [-79.9376313775979, 32.7806807679112], [-79.9375692212603, 32.7805687658274], [-79.9375043228684, 32.7804518212889], [-79.9376745127112, 32.7803844180266], [-79.9377470132894, 32.780515061523], [-79.9378840017944, 32.7804608133287]]], "type": "Polygon"}, "id": "93", "properties": {"OBJECTID": 602, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7443.162109375, "Shape__Length": 432.972707947409, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9377556875931, 32.7806807679112, -79.9373362388042, 32.7810460465989], "geometry": {"coordinates": [[[-79.9373362388042, 32.7809342589904], [-79.937398918692, 32.7810460465989], [-79.9377556875931, 32.7809047683534], [-79.9376313775979, 32.7806807679112], [-79.9374038963055, 32.7807708560805], [-79.9374660493835, 32.7808828573212], [-79.9373362388042, 32.7809342589904]]], "type": "Polygon"}, "id": "94", "properties": {"OBJECTID": 604, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1176.94921875, "Shape__Length": 153.320839675774, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9372456608032, 32.7806485056697, -79.9366443524844, 32.7812328253248], "geometry": {"coordinates": [[[-79.9369960064772, 32.7806485056697], [-79.9366443524844, 32.7807871233569], [-79.9368916971273, 32.7812328253248], [-79.9372456608032, 32.781093753509], [-79.9369960064772, 32.7806485056697]]], "type": "Polygon"}, "id": "95", "properties": {"OBJECTID": 607, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2825.08984375, "Shape__Length": 217.024651739095, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9440954991369, 32.7800159202126, -79.9423032507615, 32.7814690291738], "geometry": {"coordinates": [[[-79.9424807740874, 32.780836169882], [-79.9424879314242, 32.7808498025597], [-79.9424966822169, 32.7808661148344], [-79.9425731222321, 32.7810027532972], [-79.9427060837972, 32.7812415025457], [-79.9427673983742, 32.7813509542239], [-79.942832674023, 32.7814690291738], [-79.9430484574945, 32.7813848207589], [-79.9431489914377, 32.781345661368], [-79.9434644966126, 32.7812221152922], [-79.9435617588847, 32.7811842990012], [-79.9436484021198, 32.7811502580077], [-79.9437342235571, 32.781116809578], [-79.9438895211582, 32.7810561320742], [-79.9440954991369, 32.7809753579462], [-79.943857485087, 32.7805438065101], [-79.9436506842014, 32.7806255128326], [-79.9434961932832, 32.780686713743], [-79.9434111814231, 32.7807205125923], [-79.943323722027, 32.7807548899628], [-79.9432966651246, 32.7807051780065], [-79.9433612410748, 32.7806795365826], [-79.9434380762345, 32.7806491915193], [-79.9435173671958, 32.7806176627655], [-79.9438296156027, 32.7804940001819], [-79.943761161559, 32.7803695422103], [-79.9436918953695, 32.7802449897101], [-79.9436345902571, 32.7801403844202], [-79.9435653222932, 32.7800159202126], [-79.9432530752546, 32.7801395794101], [-79.9430969518948, 32.7802013681323], [-79.9430618020731, 32.7802154108377], [-79.9429375580354, 32.7802644180216], [-79.94279369352, 32.7803214982928], [-79.9426514639068, 32.7803779080348], [-79.9424928891041, 32.7804405324519], [-79.9423032507615, 32.7805155164893], [-79.9424186801534, 32.780724048205], [-79.9424807740874, 32.780836169882]]], "type": "Polygon"}, "id": "96", "properties": {"OBJECTID": 611, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21208.83203125, "Shape__Length": 720.922722819613, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9369960064772, 32.7802035355496, -79.9348106290729, 32.7816566859218], "geometry": {"coordinates": [[[-79.9351547466146, 32.7815872702519], [-79.9352074391865, 32.7816566859218], [-79.9355260591554, 32.7814841265749], [-79.9354915895561, 32.7814249052354], [-79.9356654911385, 32.7813413445758], [-79.9355855562892, 32.7811972996919], [-79.9362847670293, 32.780922619271], [-79.9365347491124, 32.7813730678231], [-79.9368916971273, 32.7812328253248], [-79.9366443524844, 32.7807871233569], [-79.9369960064772, 32.7806485056697], [-79.9367465093089, 32.7802035355496], [-79.9349962849848, 32.7808964089051], [-79.9349413700562, 32.7809181989461], [-79.934914487819, 32.7809313842162], [-79.9348898967282, 32.7809474455405], [-79.9348742766702, 32.7809602517835], [-79.9348563654117, 32.7809784103089], [-79.9348458976934, 32.7809914598118], [-79.9348381310192, 32.7810028400866], [-79.9348312710591, 32.7810146295723], [-79.9348253472841, 32.7810267753172], [-79.9348203848841, 32.7810392252346], [-79.9348125201314, 32.7810700175611], [-79.9348106290729, 32.7810883354079], [-79.9348114147893, 32.7811145856573], [-79.9348169953801, 32.7811430790357], [-79.9348230711727, 32.781160735763], [-79.9348323432449, 32.7811802339106], [-79.93483935615, 32.7811919593089], [-79.9350698943814, 32.7814809168143], [-79.9351547466146, 32.7815872702519]]], "type": "Polygon"}, "id": "97", "properties": {"OBJECTID": 616, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20586.9296875, "Shape__Length": 801.758875785209, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9365347491124, 32.780922619271, -79.9352074391865, 32.7818407496567], "geometry": {"coordinates": [[[-79.9352074391865, 32.7816566859218], [-79.9353553126251, 32.7818407496567], [-79.9365347491124, 32.7813730678231], [-79.9362847670293, 32.780922619271], [-79.9355855562892, 32.7811972996919], [-79.9356654911385, 32.7813413445758], [-79.9354915895561, 32.7814249052354], [-79.9355260591554, 32.7814841265749], [-79.9352074391865, 32.7816566859218]]], "type": "Polygon"}, "id": "98", "properties": {"OBJECTID": 620, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7907.232421875, "Shape__Length": 420.566216147033, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9374447612207, 32.7812161567197, -79.936289012235, 32.7821612848637], "geometry": {"coordinates": [[[-79.9374447612207, 32.7814399803627], [-79.9373778953116, 32.7813193977934], [-79.9373197669231, 32.7812161567197], [-79.9371268583805, 32.7812920495092], [-79.9369633744828, 32.7813564269318], [-79.936289012235, 32.7816213214511], [-79.9364365916656, 32.7818608071957], [-79.9364997610698, 32.7819508635025], [-79.936615889926, 32.7821010834191], [-79.9366639667762, 32.7821612848637], [-79.9370996951197, 32.7819863140741], [-79.9370351889609, 32.781872280197], [-79.9372101358127, 32.7818019022369], [-79.9371512398999, 32.7816948748198], [-79.9370875536158, 32.7815804170184], [-79.9374447612207, 32.7814399803627]]], "type": "Polygon"}, "id": "99", "properties": {"OBJECTID": 625, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7655.71875, "Shape__Length": 410.588519451302, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9423331505263, 32.7819039449067, -79.9419659460355, 32.7823418967187], "geometry": {"coordinates": [[[-79.9419659460355, 32.7819680870007], [-79.9421712995897, 32.7823418967187], [-79.9422097176011, 32.7823267669458], [-79.9423331505263, 32.7822778391232], [-79.9421277963894, 32.7819039449067], [-79.9419659460355, 32.7819680870007]]], "type": "Polygon"}, "id": "100", "properties": {"OBJECTID": 632, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1085.96875, "Shape__Length": 148.880731943107, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.936256848882, 32.7816671357187, -79.9354459997339, 32.782408718415], "geometry": {"coordinates": [[[-79.936256848882, 32.7817850098693], [-79.9361838607771, 32.7816671357187], [-79.9354459997339, 32.7819570982067], [-79.9356354983108, 32.7821924811092], [-79.935809211007, 32.782408718415], [-79.9360363719204, 32.7822700728372], [-79.9360428985039, 32.7822811644552], [-79.9361733009096, 32.7822158548561], [-79.9360577020323, 32.7820236000682], [-79.9359822441108, 32.7818948227696], [-79.936256848882, 32.7817850098693]]], "type": "Polygon"}, "id": "101", "properties": {"OBJECTID": 635, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4150.578125, "Shape__Length": 311.613866609687, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9446605890259, 32.781095072264, -79.9428995631925, 32.7825094824348], "geometry": {"coordinates": [[[-79.9438084717446, 32.7812330730223], [-79.9435722543997, 32.7813254383636], [-79.9433948869132, 32.7813946879873], [-79.9432077114737, 32.7814678026682], [-79.9430499588951, 32.7815295763845], [-79.9428995631925, 32.7815884076547], [-79.9430070516021, 32.7817811503179], [-79.9430747234536, 32.7819030254307], [-79.9431400186615, 32.7820196412171], [-79.9432037142709, 32.7821340075025], [-79.9432212195281, 32.7821663722521], [-79.9432737676543, 32.7822608000399], [-79.9433541856965, 32.7824050333573], [-79.9434131219304, 32.7825094824348], [-79.9438112351995, 32.7823494517683], [-79.94395838004, 32.7822905047284], [-79.9440728258048, 32.782244507003], [-79.9441406761083, 32.7822173467707], [-79.9442142483205, 32.782187829787], [-79.9442878194143, 32.7821584011297], [-79.9443671145264, 32.7821265282478], [-79.9445142575156, 32.7820675832368], [-79.9446605890259, 32.7820085426711], [-79.9444592251267, 32.7816402692366], [-79.944386810232, 32.7815068447696], [-79.9443318865616, 32.7814069850661], [-79.9442769619809, 32.7813072110044], [-79.9442228519591, 32.7812073591752], [-79.944161571025, 32.781095072264], [-79.9438084717446, 32.7812330730223]]], "type": "Polygon"}, "id": "102", "properties": {"OBJECTID": 637, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20677.59765625, "Shape__Length": 576.612570883978, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9290832171288, 32.7818473808621, -79.9277258476474, 32.7823980890226], "geometry": {"coordinates": [[[-79.9290271326585, 32.7818473808621], [-79.9283018330589, 32.7819201626687], [-79.9281279714272, 32.7819408390846], [-79.9277258476474, 32.781977954622], [-79.9277706684793, 32.7821200457474], [-79.9278215923714, 32.7822711311479], [-79.9278645143558, 32.7823980890226], [-79.9280266579102, 32.782380028428], [-79.9288138747292, 32.7822923428239], [-79.9290832171288, 32.7822623348819], [-79.9290271326585, 32.7818473808621]]], "type": "Polygon"}, "id": "103", "properties": {"OBJECTID": 639, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7938.494140625, "Shape__Length": 395.773300066108, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9431967143321, 32.7816549583053, -79.9421277963894, 32.7826057208174], "geometry": {"coordinates": [[[-79.9426935903975, 32.7823402269342], [-79.9426903096594, 32.782342433327], [-79.9426870247929, 32.7823449805775], [-79.9426845585327, 32.7823471065313], [-79.9426829046318, 32.7823493269839], [-79.9426804352587, 32.7823517099336], [-79.9426787772293, 32.782354271244], [-79.9426771191561, 32.7823568361613], [-79.9426762735188, 32.7823594892653], [-79.9426754268112, 32.7823622307399], [-79.9426745790331, 32.782365060585], [-79.9426737312987, 32.7823678868231], [-79.9426728825267, 32.7823707987265], [-79.9426728481785, 32.7823736347], [-79.9426736262337, 32.7823765615653], [-79.9426735918855, 32.7823793975388], [-79.9426743709783, 32.7823822387388], [-79.942675150082, 32.7823850790371], [-79.9426759302124, 32.7823878345718], [-79.9427381452984, 32.7824900775726], [-79.9427389275285, 32.7824926599727], [-79.9427397076292, 32.7824954182122], [-79.9427404877517, 32.7824981746483], [-79.9427412668586, 32.7825010149462], [-79.9427404014442, 32.7825053011025], [-79.9427419887404, 32.7825085803636], [-79.942790436174, 32.7826057208174], [-79.9428484948559, 32.7825809693498], [-79.9428566602852, 32.782578461563], [-79.9428599275177, 32.7825774589983], [-79.9428762739155, 32.7825710718661], [-79.9429800931709, 32.7825295357915], [-79.9431967143321, 32.7824434458799], [-79.9431139165649, 32.782294210163], [-79.9430517999415, 32.7821837218323], [-79.943005624287, 32.7821006002949], [-79.9429570552616, 32.7820135053192], [-79.9428949577821, 32.7819015570038], [-79.9427580212032, 32.7816549583053], [-79.9425307835142, 32.7817445620894], [-79.9424768329135, 32.781766001301], [-79.9424392338085, 32.7817807089601], [-79.9421277963894, 32.7819039449067], [-79.9423331505263, 32.7822778391232], [-79.942419119444, 32.7824338043278], [-79.9424689804678, 32.7824142209324], [-79.9424984060647, 32.7824026224782], [-79.9425752441411, 32.7823722752552], [-79.9426896845466, 32.7823268784898], [-79.9426968690385, 32.7823381936755], [-79.9426935903975, 32.7823402269342]]], "type": "Polygon"}, "id": "104", "properties": {"OBJECTID": 644, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7869.482421875, "Shape__Length": 394.36405346404, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9421197248487, 32.7820257510021, -79.9415057416746, 32.7826934947027], "geometry": {"coordinates": [[[-79.941819630485, 32.7820257510021], [-79.9417223571165, 32.7820641655502], [-79.9416144561787, 32.782106953966], [-79.9415057416746, 32.7821497388559], [-79.9416123997174, 32.7823436768361], [-79.9417031511123, 32.7825076714813], [-79.9417572736182, 32.7826063233207], [-79.9418050273488, 32.7826934947027], [-79.9421197248487, 32.7825700298046], [-79.9420711584785, 32.7824827667491], [-79.9420257970113, 32.7823995643954], [-79.9420210132984, 32.7823915345733], [-79.941819630485, 32.7820257510021]]], "type": "Polygon"}, "id": "105", "properties": {"OBJECTID": 647, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3064.2734375, "Shape__Length": 236.031000798798, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9423957704832, 32.7825142700855, -79.9418432449566, 32.7827944807478], "geometry": {"coordinates": [[[-79.9418432449566, 32.7827620310378], [-79.941860748808, 32.7827944807478], [-79.9420749075507, 32.7827104331011], [-79.9421754465931, 32.7826710157052], [-79.9422208052409, 32.7827544741001], [-79.9422861985319, 32.7827286680386], [-79.9422877827233, 32.7827322024982], [-79.9423957704832, 32.7826822834246], [-79.9423917262901, 32.7826804447935], [-79.9423884777917, 32.7826799883389], [-79.9423852324318, 32.782679184705], [-79.9423819943633, 32.7826779554681], [-79.9423787614467, 32.7826761247517], [-79.9423755348306, 32.7826738621109], [-79.9423731237417, 32.782671520846], [-79.942371528099, 32.7826689314113], [-79.9423252684779, 32.7825925960923], [-79.9422774071135, 32.7825142700855], [-79.9422152457992, 32.7825419086567], [-79.9421260938005, 32.7825815084193], [-79.942157129217, 32.7826385599089], [-79.9418432449566, 32.7827620310378]]], "type": "Polygon"}, "id": "106", "properties": {"OBJECTID": 649, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 688.1875, "Shape__Length": 170.073371400091, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9381152171444, 32.7814399803627, -79.9366639667762, 32.7830275536891], "geometry": {"coordinates": [[[-79.9366639667762, 32.7821612848637], [-79.9368258135357, 32.7823649857681], [-79.9373522219527, 32.7830275536891], [-79.9381152171444, 32.7826328539556], [-79.9378953557575, 32.7822492057713], [-79.9375665631574, 32.781658880091], [-79.9375084489023, 32.7815543532129], [-79.9374447612207, 32.7814399803627], [-79.9370875536158, 32.7815804170184], [-79.9371512398999, 32.7816948748198], [-79.9372101358127, 32.7818019022369], [-79.9370351889609, 32.781872280197], [-79.9370996951197, 32.7819863140741], [-79.9366639667762, 32.7821612848637]]], "type": "Polygon"}, "id": "107", "properties": {"OBJECTID": 653, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16868.365234375, "Shape__Length": 580.661608741403, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9436186930602, 32.7827817083865, -79.9428579912177, 32.7834378159785], "geometry": {"coordinates": [[[-79.9433846073141, 32.7827817083865], [-79.9430878695961, 32.7829001804112], [-79.943051085615, 32.782914723055], [-79.9431187584176, 32.7830365972567], [-79.9428579912177, 32.7831403440888], [-79.9429288885032, 32.7832646523574], [-79.9429567656408, 32.7833138574447], [-79.9430268549952, 32.7834378159785], [-79.9431658210744, 32.783382580596], [-79.9436186930602, 32.7832020639836], [-79.9435494227314, 32.7830776844988], [-79.9434530949599, 32.7829035903378], [-79.9433846073141, 32.7827817083865]]], "type": "Polygon"}, "id": "108", "properties": {"OBJECTID": 662, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3921.11328125, "Shape__Length": 269.021468931571, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9372416975153, 32.7817850098693, -79.935809211007, 32.7834094124836], "geometry": {"coordinates": [[[-79.935809211007, 32.782408718415], [-79.9366145962375, 32.7834094124836], [-79.9372416975153, 32.7830850938688], [-79.9365077677341, 32.7821617325907], [-79.9363900425211, 32.782009093496], [-79.9363374048058, 32.7819151038085], [-79.936256848882, 32.7817850098693], [-79.9359822441108, 32.7818948227696], [-79.9360577020323, 32.7820236000682], [-79.9361733009096, 32.7822158548561], [-79.9360428985039, 32.7822811644552], [-79.9360363719204, 32.7822700728372], [-79.935809211007, 32.782408718415]]], "type": "Polygon"}, "id": "109", "properties": {"OBJECTID": 664, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14801.490234375, "Shape__Length": 577.416383317587, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9453379156493, 32.7827310232242, -79.9442663529783, 32.783485947117], "geometry": {"coordinates": [[[-79.9450561692572, 32.7827310232242], [-79.9442663529783, 32.7829917040723], [-79.9444824652819, 32.783485947117], [-79.9453379156493, 32.7832471337975], [-79.9450561692572, 32.7827310232242]]], "type": "Polygon"}, "id": "110", "properties": {"OBJECTID": 665, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7041.796875, "Shape__Length": 339.710616714896, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9437007082228, 32.7832020639836, -79.9431658210744, 32.7834887891657], "geometry": {"coordinates": [[[-79.9431658210744, 32.783382580596], [-79.9432064398079, 32.7834544857534], [-79.9433069864875, 32.7834144650617], [-79.9433492031016, 32.7834887891657], [-79.9437007082228, 32.7833488874081], [-79.9436186930602, 32.7832020639836], [-79.9431658210744, 32.783382580596]]], "type": "Polygon"}, "id": "111", "properties": {"OBJECTID": 666, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1061.220703125, "Shape__Length": 154.392840080914, "ZONE_BASE": "DR-12", "__folium_color": "#ff7f0e"}, "type": "Feature"}, {"bbox": [-79.9450561692572, 32.7821208327529, -79.9434752205068, 32.7835280988556], "geometry": {"coordinates": [[[-79.9450561692572, 32.7827310232242], [-79.9447226847035, 32.7821208327529], [-79.9434752205068, 32.7826214304946], [-79.9438637263959, 32.7833228943764], [-79.9438645096922, 32.783325392006], [-79.9438661063856, 32.7833278109832], [-79.9438677041575, 32.7833302290678], [-79.9438693019076, 32.7833326489559], [-79.9438709007051, 32.7833349822768], [-79.9438724995338, 32.7833374012724], [-79.9438740972858, 32.7833397327806], [-79.9438756950472, 32.7833421517669], [-79.9438772938451, 32.7833444850878], [-79.9438788926321, 32.7833468193104], [-79.9438804914628, 32.783349149926], [-79.9438829047458, 32.7833514911799], [-79.9438845024765, 32.7833538244914], [-79.9438861012639, 32.7833561587139], [-79.9438877011314, 32.7833584036641], [-79.943889299908, 32.7833607387884], [-79.9438917142279, 32.7833629943766], [-79.9438933130282, 32.7833652393175], [-79.9438949128851, 32.7833674851693], [-79.9438973261378, 32.7833697407483], [-79.9438989270624, 32.7833719866094], [-79.9439005279123, 32.7833741504027], [-79.9439029401305, 32.7833764032671], [-79.9439045410243, 32.7833785634535], [-79.943906955303, 32.7833807342686], [-79.9439085572535, 32.7833828953659], [-79.9439109705085, 32.7833850625648], [-79.9439125714026, 32.7833872227512], [-79.9439149867508, 32.7833893051956], [-79.9439165886689, 32.7833914689979], [-79.9439190040173, 32.7833935514423], [-79.9439206048697, 32.7833956268557], [-79.9439230202184, 32.7833977092999], [-79.9439254366345, 32.7833997917534], [-79.9439270385547, 32.7834018671759], [-79.9439294539052, 32.7834038612402], [-79.9439334722, 32.7834079343431], [-79.9439358896531, 32.783409931131], [-79.9439383049605, 32.7834119288021], [-79.943940721379, 32.7834139228755], [-79.9439447428041, 32.7834178255583], [-79.9439471591808, 32.7834197348587], [-79.9439495765924, 32.7834216468735], [-79.9439519951044, 32.7834235561922], [-79.9439544125162, 32.7834254682069], [-79.9439568299297, 32.7834272918418], [-79.9439592473309, 32.7834292047581], [-79.9439616668795, 32.7834310284113], [-79.9439640853608, 32.7834328520553], [-79.9439665027638, 32.7834346765917], [-79.9439689222706, 32.7834364154719], [-79.9439713418197, 32.783438239125], [-79.9439737612831, 32.7834399816121], [-79.9439761797337, 32.7834417195812], [-79.9439786003412, 32.7834434557653], [-79.9439810198049, 32.7834451982522], [-79.9439842516739, 32.7834469441443], [-79.9439866722505, 32.7834485946536], [-79.9439890928256, 32.7834503335427], [-79.9439915133697, 32.7834519867571], [-79.9439939339043, 32.7834535524934], [-79.9439971689344, 32.78345521364], [-79.9439995894677, 32.783456867756], [-79.9440020099699, 32.7834584361974], [-79.9440044315726, 32.7834600019428], [-79.9440076676501, 32.783461576522], [-79.9440100892528, 32.7834631422672], [-79.9440125108135, 32.7834646232396], [-79.9440157468805, 32.7834661987203], [-79.9440181695088, 32.7834676797018], [-79.9440205910807, 32.7834691597722], [-79.9440238292423, 32.7834705621186], [-79.9440262518381, 32.7834720458051], [-79.9440294879086, 32.7834734445259], [-79.9440319115721, 32.7834749282215], [-79.9440343352372, 32.7834763235373], [-79.9440375733571, 32.7834776411104], [-79.9440399959549, 32.7834790364169], [-79.9440456598877, 32.7834816600423], [-79.9440513226989, 32.783484288167], [-79.944054560863, 32.7834856021327], [-79.9440602257797, 32.783488056221], [-79.9440658896293, 32.7834905102999], [-79.9440691309229, 32.7834916538455], [-79.9440747957982, 32.7834940231603], [-79.9440780381172, 32.783495081942], [-79.9440837050545, 32.7834972808274], [-79.9440869463485, 32.7834984243726], [-79.9440926153804, 32.7835004501234], [-79.9440958576998, 32.7835015089047], [-79.9441015278432, 32.7835035310573], [-79.9441047711568, 32.7835044194002], [-79.9441080134344, 32.7835053934083], [-79.9441112546881, 32.7835063638001], [-79.9441169289863, 32.7835081307687], [-79.9441201712327, 32.7835090191019], [-79.9441234166721, 32.7835098199847], [-79.9441266599862, 32.7835107083269], [-79.9441323353116, 32.7835123021514], [-79.9441355796947, 32.7835131021228], [-79.9441388240355, 32.7835138173214], [-79.9441420705115, 32.7835145325382], [-79.9441453159199, 32.7835152477458], [-79.9441485613284, 32.7835159629533], [-79.9441542397519, 32.7835173006824], [-79.9441574861858, 32.783517931126], [-79.9441607326197, 32.7835185615696], [-79.9441639790973, 32.7835191884061], [-79.9441672265674, 32.7835197331841], [-79.9441704730342, 32.7835203609221], [-79.9441737205044, 32.7835209057], [-79.9441769690434, 32.7835213621072], [-79.9441802165137, 32.7835219068848], [-79.9441834650418, 32.7835223641936], [-79.9441891486466, 32.7835232735943], [-79.9441923971858, 32.7835237300011], [-79.9441956467502, 32.7835241016441], [-79.9441988952895, 32.7835245580507], [-79.9442021458791, 32.78352484493], [-79.9442053954436, 32.7835252165728], [-79.9442086450081, 32.7835255882155], [-79.9442118955978, 32.7835258750945], [-79.9442151462311, 32.7835261583665], [-79.9442183968208, 32.7835264452453], [-79.9442216484466, 32.7835266464588], [-79.9442248990799, 32.7835269297305], [-79.9442281507058, 32.7835271309437], [-79.9442314023643, 32.7835273294516], [-79.9442346550153, 32.783527445901], [-79.9442379066738, 32.7835276444088], [-79.9442411593684, 32.7835277572511], [-79.9442444120522, 32.783527870995], [-79.9442476657719, 32.7835278990735], [-79.9442509184338, 32.7835280146208], [-79.9442541721535, 32.7835280426991], [-79.9442574258733, 32.7835280707774], [-79.944260679593, 32.7835280988556], [-79.9442639343705, 32.7835280394647], [-79.9442671880903, 32.7835280675428], [-79.944270442846, 32.7835280099553], [-79.9442736975908, 32.7835279532696], [-79.9442769533717, 32.7835278109183], [-79.9442802081601, 32.7835277506253], [-79.9442834639408, 32.7835276082739], [-79.9442867197544, 32.7835274632172], [-79.9442899755351, 32.7835273208656], [-79.9442932323737, 32.7835270910451], [-79.9442964892231, 32.7835268603227], [-79.9442997460289, 32.7835266332073], [-79.9443030028783, 32.7835264024848], [-79.9443062597277, 32.7835261717621], [-79.9443119620465, 32.7835255337703], [-79.94431521991, 32.7835252191855], [-79.9443184788202, 32.7835248180336], [-79.944321737762, 32.7835245025562], [-79.9443249956375, 32.7835240986897], [-79.9443282545368, 32.7835236984393], [-79.944331513436, 32.7835232981888], [-79.9443347734148, 32.7835228086658], [-79.944338033339, 32.7835223236515], [-79.9443412933068, 32.7835218350302], [-79.9443445532528, 32.7835213482122], [-79.9443478131769, 32.7835208631977], [-79.9443510741805, 32.7835202889107], [-79.9443567827468, 32.7835191342193], [-79.9443600437503, 32.7835185599321], [-79.9443633057787, 32.7835179008812], [-79.9443665677635, 32.7835172454372], [-79.9443698297918, 32.783516586386], [-79.9443730918201, 32.7835159273349], [-79.9443788035152, 32.783514513843], [-79.9443820665684, 32.7835137700279], [-79.9443853306998, 32.7835130253202], [-79.9444824652819, 32.783485947117], [-79.9442663529783, 32.7829917040723], [-79.9450561692572, 32.7827310232242]]], "type": "Polygon"}, "id": "112", "properties": {"OBJECTID": 667, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16274.857421875, "Shape__Length": 589.567995095704, "ZONE_BASE": "C", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9433846073141, 32.7819680870007, -79.9418050273488, 32.7837761476588], "geometry": {"coordinates": [[[-79.941860748808, 32.7827944807478], [-79.9419132781241, 32.7828903708475], [-79.9419626434378, 32.7829789296005], [-79.9419825460134, 32.783014836029], [-79.9420192026312, 32.7830779468983], [-79.9420510859819, 32.7831321667735], [-79.9421459228006, 32.7832948229246], [-79.9422136685186, 32.7834106000632], [-79.9422838088831, 32.7835301801632], [-79.9423005350209, 32.7835597011412], [-79.9423364026146, 32.7836208282716], [-79.9423818316422, 32.783698530806], [-79.9424272617885, 32.7837761476588], [-79.9424526051281, 32.7837659748933], [-79.9425466211485, 32.7837278724826], [-79.9426447239903, 32.7836881748043], [-79.9426651627324, 32.7836798498518], [-79.9426205521137, 32.7836017234213], [-79.9426238193573, 32.7836006351883], [-79.942698216027, 32.7835703542525], [-79.9426225412547, 32.7834374993495], [-79.9427321024607, 32.7833920603565], [-79.9428133455216, 32.7835354444324], [-79.942891008272, 32.783504072427], [-79.9429253428795, 32.7834903699166], [-79.9429515016284, 32.783479940759], [-79.9430324304293, 32.7834476580743], [-79.9430268549952, 32.7834378159785], [-79.9429567656408, 32.7833138574447], [-79.9429288885032, 32.7832646523574], [-79.9428579912177, 32.7831403440888], [-79.9431187584176, 32.7830365972567], [-79.943051085615, 32.782914723055], [-79.9430878695961, 32.7829001804112], [-79.9433846073141, 32.7827817083865], [-79.9433352531866, 32.7826922042926], [-79.9432811090876, 32.7825951853005], [-79.9431967143321, 32.7824434458799], [-79.9429800931709, 32.7825295357915], [-79.9428762739155, 32.7825710718661], [-79.9428599275177, 32.7825774589983], [-79.9428566602852, 32.782578461563], [-79.9428484948559, 32.7825809693498], [-79.942790436174, 32.7826057208174], [-79.9427419887404, 32.7825085803636], [-79.9427404014442, 32.7825053011025], [-79.9427412668586, 32.7825010149462], [-79.9427404877517, 32.7824981746483], [-79.9427397076292, 32.7824954182122], [-79.9427389275285, 32.7824926599727], [-79.9427381452984, 32.7824900775726], [-79.9426759302124, 32.7823878345718], [-79.942675150082, 32.7823850790371], [-79.9426743709783, 32.7823822387388], [-79.9426735918855, 32.7823793975388], [-79.9426736262337, 32.7823765615653], [-79.9426728481785, 32.7823736347], [-79.9426728825267, 32.7823707987265], [-79.9426737312987, 32.7823678868231], [-79.9426745790331, 32.782365060585], [-79.9426754268112, 32.7823622307399], [-79.9426762735188, 32.7823594892653], [-79.9426771191561, 32.7823568361613], [-79.9426787772293, 32.782354271244], [-79.9426804352587, 32.7823517099336], [-79.9426829046318, 32.7823493269839], [-79.9426845585327, 32.7823471065313], [-79.9426870247929, 32.7823449805775], [-79.9426903096594, 32.782342433327], [-79.9426935903975, 32.7823402269342], [-79.9426896845466, 32.7823268784898], [-79.9425752441411, 32.7823722752552], [-79.9424984060647, 32.7824026224782], [-79.9424689804678, 32.7824142209324], [-79.942419119444, 32.7824338043278], [-79.9423331505263, 32.7822778391232], [-79.9422097176011, 32.7823267669458], [-79.9421712995897, 32.7823418967187], [-79.9419659460355, 32.7819680870007], [-79.941819630485, 32.7820257510021], [-79.9420210132984, 32.7823915345733], [-79.9420257970113, 32.7823995643954], [-79.9420711584785, 32.7824827667491], [-79.9421197248487, 32.7825700298046], [-79.9418050273488, 32.7826934947027], [-79.9418432449566, 32.7827620310378], [-79.942157129217, 32.7826385599089], [-79.9421260938005, 32.7825815084193], [-79.9422152457992, 32.7825419086567], [-79.9422774071135, 32.7825142700855], [-79.9423252684779, 32.7825925960923], [-79.942371528099, 32.7826689314113], [-79.9423731237417, 32.782671520846], [-79.9423755348306, 32.7826738621109], [-79.9423787614467, 32.7826761247517], [-79.9423819943633, 32.7826779554681], [-79.9423852324318, 32.782679184705], [-79.9423884777917, 32.7826799883389], [-79.9423917262901, 32.7826804447935], [-79.9423957704832, 32.7826822834246], [-79.9422877827233, 32.7827322024982], [-79.9422861985319, 32.7827286680386], [-79.9422208052409, 32.7827544741001], [-79.9421754465931, 32.7826710157052], [-79.9420749075507, 32.7827104331011], [-79.941860748808, 32.7827944807478]]], "type": "Polygon"}, "id": "113", "properties": {"OBJECTID": 673, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 18348.080078125, "Shape__Length": 994.244744076962, "ZONE_BASE": "DR-12", "__folium_color": "#ff7f0e"}, "type": "Feature"}, {"bbox": [-79.9438559734631, 32.7833488874081, -79.9424272617885, 32.7839240447767], "geometry": {"coordinates": [[[-79.9424272617885, 32.7837761476588], [-79.9424519725091, 32.7838181955861], [-79.9424615360202, 32.7838345978601], [-79.9425141446696, 32.7839240447767], [-79.9426422094919, 32.783895776206], [-79.9427490667762, 32.7838721301091], [-79.9428559260857, 32.7838484000665], [-79.9429016041686, 32.7838384011152], [-79.9429758324491, 32.7838220356695], [-79.943098189485, 32.7837948292712], [-79.9432148336443, 32.7837691245591], [-79.9433657385872, 32.7837357244878], [-79.9434750430537, 32.7837114973728], [-79.9438559734631, 32.7836274275448], [-79.9437007082228, 32.7833488874081], [-79.9433492031016, 32.7834887891657], [-79.9433069864875, 32.7834144650617], [-79.9432064398079, 32.7834544857534], [-79.9431658210744, 32.783382580596], [-79.9430268549952, 32.7834378159785], [-79.9430324304293, 32.7834476580743], [-79.9429515016284, 32.783479940759], [-79.9429253428795, 32.7834903699166], [-79.942891008272, 32.783504072427], [-79.9428133455216, 32.7835354444324], [-79.9427321024607, 32.7833920603565], [-79.9426225412547, 32.7834374993495], [-79.942698216027, 32.7835703542525], [-79.9426238193573, 32.7836006351883], [-79.9426205521137, 32.7836017234213], [-79.9426651627324, 32.7836798498518], [-79.9426447239903, 32.7836881748043], [-79.9425466211485, 32.7837278724826], [-79.9424526051281, 32.7837659748933], [-79.9424272617885, 32.7837761476588]]], "type": "Polygon"}, "id": "114", "properties": {"OBJECTID": 675, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6111.3671875, "Shape__Length": 444.30793963672, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9478513238521, 32.7828184417619, -79.9457229045394, 32.7841010164912], "geometry": {"coordinates": [[[-79.946644200177, 32.7830754138982], [-79.9457229045394, 32.783340737455], [-79.9458559759611, 32.7836226730403], [-79.9460728106738, 32.7841010164912], [-79.9478513238521, 32.7835263520068], [-79.9475364693485, 32.7828184417619], [-79.946644200177, 32.7830754138982]]], "type": "Polygon"}, "id": "115", "properties": {"OBJECTID": 680, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22102.26953125, "Shape__Length": 633.519197571581, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9364949391083, 32.7827113719171, -79.9346941874975, 32.7841301809704], "geometry": {"coordinates": [[[-79.9358944640355, 32.7827113719171], [-79.9346941874975, 32.7833072399487], [-79.9347381864442, 32.7833733091679], [-79.9347877155646, 32.7834477847344], [-79.9348196710504, 32.7834957376013], [-79.9348588091135, 32.7835551783493], [-79.9349011485359, 32.7836187683444], [-79.9349394963603, 32.7836763101354], [-79.9349986130077, 32.7837650450353], [-79.9350010166471, 32.7837681583536], [-79.9350409557917, 32.7838285511401], [-79.9352422834587, 32.7841301809704], [-79.9364949391083, 32.7834668176053], [-79.9358944640355, 32.7827113719171]]], "type": "Polygon"}, "id": "116", "properties": {"OBJECTID": 684, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 19599.580078125, "Shape__Length": 565.165127485233, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9407040718697, 32.7827597916078, -79.9386645339796, 32.7841741962227], "geometry": {"coordinates": [[[-79.9407040718697, 32.7840770485082], [-79.9399728892421, 32.7827597916078], [-79.9386645339796, 32.7832768757551], [-79.9391779678426, 32.7841741962227], [-79.9394970780367, 32.7840348525313], [-79.9393618090348, 32.7837855155826], [-79.9398813682682, 32.7836075667635], [-79.9401766931846, 32.7841421919834], [-79.9403183803466, 32.7840879257959], [-79.9403649805227, 32.7840710403434], [-79.9404547554141, 32.7840593896914], [-79.9404572969286, 32.7840644421387], [-79.9405021739607, 32.7840482586698], [-79.9405493950169, 32.7841328358757], [-79.9407040718697, 32.7840770485082]]], "type": "Polygon"}, "id": "117", "properties": {"OBJECTID": 685, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21647.248046875, "Shape__Length": 772.437824258129, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9423534507899, 32.7836642163514, -79.9408363005926, 32.7842648688645], "geometry": {"coordinates": [[[-79.9408363005926, 32.7840212009781], [-79.9409716429247, 32.7842648688645], [-79.9416478645805, 32.7841154985731], [-79.9418314008041, 32.7840748234857], [-79.9419945416336, 32.7840387821343], [-79.9421046613216, 32.7840144785138], [-79.9421960199098, 32.7839943089225], [-79.9423534507899, 32.783959506447], [-79.9422793260432, 32.7838330226609], [-79.9422665702403, 32.7838115244601], [-79.9422378819658, 32.7837621417509], [-79.9421169819452, 32.7838033590733], [-79.9421129040008, 32.7837933774735], [-79.9421266052643, 32.7837880380435], [-79.9422426731257, 32.7837427792953], [-79.9421967218884, 32.7836642163514], [-79.942183538587, 32.7836693672748], [-79.941984201346, 32.7837472476092], [-79.9418803843292, 32.7837885276608], [-79.9417749716118, 32.7838272145749], [-79.9417308421658, 32.7838436701135], [-79.9417289175623, 32.7838399469235], [-79.9417220984982, 32.7838267572197], [-79.9417109759618, 32.7838047563366], [-79.9416966938099, 32.7838083411354], [-79.9415412467057, 32.7838473570683], [-79.9408517296246, 32.7840198880104], [-79.940850492729, 32.7840176497695], [-79.9408363005926, 32.7840212009781]]], "type": "Polygon"}, "id": "118", "properties": {"OBJECTID": 686, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5803.310546875, "Shape__Length": 431.654753471353, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9598511630723, 32.7836976676228, -79.9583597390043, 32.784482050312], "geometry": {"coordinates": [[[-79.9584284625769, 32.7839715773986], [-79.9587153694172, 32.784403002055], [-79.958768119009, 32.784482050312], [-79.9594151652429, 32.7841843311566], [-79.9594756974842, 32.7841565852504], [-79.9598511630723, 32.7839836815524], [-79.9587204858217, 32.7839740632447], [-79.9587237826565, 32.7836976676228], [-79.9586043462948, 32.7837532563872], [-79.9583597390043, 32.783867653892], [-79.9584284625769, 32.7839715773986]]], "type": "Polygon"}, "id": "119", "properties": {"OBJECTID": 691, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6283.52734375, "Shape__Length": 439.462893206402, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9408283217418, 32.7836075667635, -79.9393618090348, 32.7845399380376], "geometry": {"coordinates": [[[-79.9394970780367, 32.7840348525313], [-79.939772508108, 32.7845399380376], [-79.9408283217418, 32.7843008901636], [-79.9407040718697, 32.7840770485082], [-79.9405493950169, 32.7841328358757], [-79.9405021739607, 32.7840482586698], [-79.9404572969286, 32.7840644421387], [-79.9404547554141, 32.7840593896914], [-79.9403641420506, 32.7840716887153], [-79.9403147205736, 32.7840895967607], [-79.9401766931846, 32.7841421919834], [-79.9398813682682, 32.7836075667635], [-79.9393618090348, 32.7837855155826], [-79.9394970780367, 32.7840348525313]]], "type": "Polygon"}, "id": "120", "properties": {"OBJECTID": 697, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9328.9765625, "Shape__Length": 475.137326639212, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9510847764198, 32.7820603375834, -79.9477126320864, 32.7847205624319], "geometry": {"coordinates": [[[-79.9485186447901, 32.784574924573], [-79.9485187317173, 32.7845749758229], [-79.9485241729568, 32.7845873299228], [-79.9485313026322, 32.7846008808389], [-79.9485424140822, 32.7846182798335], [-79.9485585061369, 32.7846379699054], [-79.9485767870489, 32.7846543609376], [-79.948596907737, 32.7846691345559], [-79.9486161777338, 32.7846807895312], [-79.9486365908846, 32.7846909599877], [-79.9486552657501, 32.784698576839], [-79.9486717898194, 32.7847041172185], [-79.9487006093892, 32.7847107435474], [-79.9487647394398, 32.7847179862203], [-79.948825576571, 32.7847205624319], [-79.9488264181911, 32.7847205344916], [-79.948830487447, 32.7847203106286], [-79.9488345588269, 32.7847200876854], [-79.9488386280502, 32.7847198665273], [-79.9488427004943, 32.7847195552133], [-79.9488467707741, 32.7847193349658], [-79.9488508431821, 32.784718937977], [-79.9488549144935, 32.7847186320638], [-79.9488589869014, 32.7847182350747], [-79.9488630582343, 32.7847179273578], [-79.9488663171213, 32.7847174413118], [-79.9488703905641, 32.7847170470367], [-79.9488744639926, 32.7847165652833], [-79.9488785374209, 32.7847160835299], [-79.9488826108058, 32.7847156053832], [-79.9488866852656, 32.7847150379641], [-79.9488907586612, 32.7847145589155], [-79.9488948341415, 32.7847139067324], [-79.9488989086011, 32.7847133393128], [-79.9489029819823, 32.7847127727857], [-79.9489062450886, 32.7847121136228], [-79.9489197961175, 32.7847106274853], [-79.9491424882633, 32.7846492804317], [-79.9496578814721, 32.7844916376815], [-79.9499827925195, 32.7843817298976], [-79.9502732023612, 32.7842834907696], [-79.9510847764198, 32.7840089323827], [-79.9507907629505, 32.7833447734], [-79.9502221898441, 32.7820603375834], [-79.9477126320864, 32.7827680601753], [-79.9481395324676, 32.7837279030428], [-79.9485186447901, 32.784574924573]]], "type": "Polygon"}, "id": "121", "properties": {"OBJECTID": 701, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 82981.29296875, "Shape__Length": 1136.74574813334, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9413243873902, 32.7849503234835, -79.9408848370092, 32.785274607528], "geometry": {"coordinates": [[[-79.941014806479, 32.7852644713103], [-79.941020281082, 32.785274607528], [-79.9413243873902, 32.785204148419], [-79.9411873700752, 32.7849503234835], [-79.9408848370092, 32.7850228177773], [-79.9409215861472, 32.7850911550226], [-79.9409624249861, 32.7851670958595], [-79.941014806479, 32.7852644713103]]], "type": "Polygon"}, "id": "122", "properties": {"OBJECTID": 713, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1273.87109375, "Shape__Length": 143.633364202555, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9570432990428, 32.7853172298505, -79.95658842109, 32.7855867541823], "geometry": {"coordinates": [[[-79.956971364172, 32.7853204092648], [-79.95658842109, 32.7854331116074], [-79.9567768542279, 32.7855867541823], [-79.95692306738, 32.7854758415941], [-79.9570015845103, 32.7854135972662], [-79.957033866817, 32.7853869274861], [-79.9570405995884, 32.785376088025], [-79.9570432990428, 32.7853663955824], [-79.95704299259, 32.7853541568894], [-79.9570404658101, 32.7853460008084], [-79.9570336349481, 32.7853352044411], [-79.9570228355623, 32.785325940727], [-79.9570084528134, 32.7853194818285], [-79.9569869670697, 32.7853172298505], [-79.956971364172, 32.7853204092648]]], "type": "Polygon"}, "id": "123", "properties": {"OBJECTID": 719, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 848.376953125, "Shape__Length": 128.385235631181, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9411873700752, 32.7844835973429, -79.9395315486293, 32.7855146353246], "geometry": {"coordinates": [[[-79.9411873700752, 32.7849503234835], [-79.9409293573728, 32.7844835973429], [-79.9403362623294, 32.7846257051992], [-79.9402344741599, 32.7846500938406], [-79.9402271754454, 32.7846374689541], [-79.9395315486293, 32.7847899089588], [-79.9396952184393, 32.7850725612718], [-79.9397755654781, 32.7852220180246], [-79.939935075966, 32.7855146353246], [-79.941014806479, 32.7852644713103], [-79.9409624249861, 32.7851670958595], [-79.9409215861472, 32.7850911550226], [-79.9408848370092, 32.7850228177773], [-79.9411873700752, 32.7849503234835]]], "type": "Polygon"}, "id": "124", "properties": {"OBJECTID": 721, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15226.33984375, "Shape__Length": 531.240886410295, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9383111891647, 32.7852251164563, -79.9378280690317, 32.7855231846067], "geometry": {"coordinates": [[[-79.9382193368708, 32.7852251164563], [-79.9381139154436, 32.7852617827696], [-79.9378280690317, 32.7853612015902], [-79.9379349429568, 32.7855231846067], [-79.9382057654611, 32.7854289974553], [-79.9383111891647, 32.7853923328842], [-79.9382193368708, 32.7852251164563]]], "type": "Polygon"}, "id": "125", "properties": {"OBJECTID": 723, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1126.5546875, "Shape__Length": 141.377361820761, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9555465543135, 32.7816766196201, -79.9504291246021, 32.7856033382861], "geometry": {"coordinates": [[[-79.9504291246021, 32.7821114632682], [-79.9512300858715, 32.7839212888558], [-79.9513371342989, 32.784115982685], [-79.9515078663993, 32.7844995612667], [-79.9515413700121, 32.7844889199687], [-79.9516836464432, 32.7848085660088], [-79.9518432229157, 32.7850967995136], [-79.9520537725036, 32.7855698097638], [-79.9521354920543, 32.7856033382861], [-79.9525152490798, 32.7854802685869], [-79.9525193285384, 32.7854892506115], [-79.95330876374, 32.7852363537182], [-79.9533186713198, 32.7852581672716], [-79.9555465543135, 32.7845361180794], [-79.9547656207877, 32.7828150580409], [-79.9546536186064, 32.7826244192875], [-79.9545468758314, 32.7824799613846], [-79.9544965771863, 32.7824204280684], [-79.9543618276028, 32.7822809784241], [-79.9542969680416, 32.7822247700844], [-79.9542425858452, 32.7822023401717], [-79.9541575036298, 32.7821756752134], [-79.9540692820471, 32.782157713106], [-79.954009334548, 32.7821507037602], [-79.9538884138547, 32.7821487824256], [-79.9537726891428, 32.7821536285777], [-79.9536873696609, 32.7821475771814], [-79.9536035633288, 32.782132766531], [-79.9535491551846, 32.7821181315373], [-79.9534963415494, 32.7820997964076], [-79.953445474326, 32.7820778840981], [-79.9533735582967, 32.7820386334034], [-79.9532981940048, 32.7819927959299], [-79.9531133292905, 32.7818248573539], [-79.9530653871869, 32.7817851668157], [-79.9529871371855, 32.7817453278011], [-79.9529392240634, 32.7817232565874], [-79.9528747514824, 32.7816997801494], [-79.9527718843214, 32.7816788058759], [-79.9526897932669, 32.7816766196201], [-79.9526317551625, 32.7816798328967], [-79.9524807901036, 32.781702564298], [-79.9517646101565, 32.7818293755367], [-79.9507613857118, 32.7819765970065], [-79.950458439385, 32.782060055005], [-79.9504291246021, 32.7821114632682]]], "type": "Polygon"}, "id": "126", "properties": {"OBJECTID": 725, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 186297.09765625, "Shape__Length": 1716.82817426739, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.937579773308, 32.7835828205078, -79.9353069217927, 32.785587940659], "geometry": {"coordinates": [[[-79.9360546953506, 32.7853436721821], [-79.936054755122, 32.7853437610818], [-79.9361370610386, 32.7854659405546], [-79.9361738138996, 32.7855208933458], [-79.9362185547685, 32.785587940659], [-79.9366868227588, 32.7853477970203], [-79.9368002796883, 32.7855173198887], [-79.9368305111884, 32.7855065847219], [-79.9372823554018, 32.7853456711519], [-79.937579773308, 32.7852395876171], [-79.9366822947205, 32.7837826591337], [-79.9365594473796, 32.7835828205078], [-79.9361787794586, 32.7837782818099], [-79.9361083731768, 32.7838146935194], [-79.9354788420129, 32.7841373556727], [-79.9353069217927, 32.7842258826591], [-79.9353788248373, 32.7843336230064], [-79.9354123806083, 32.7843839109681], [-79.9354443367461, 32.7844317789038], [-79.9354842849469, 32.7844915664917], [-79.935555403237, 32.7845969830906], [-79.9356065354614, 32.784673536573], [-79.9356544716123, 32.7847453375119], [-79.935687895624, 32.7847954249455], [-79.9356880266768, 32.7847956217839], [-79.9357198877211, 32.784843345428], [-79.9357199841729, 32.7848434905608], [-79.9357487455856, 32.7848866023007], [-79.9357791045598, 32.7849321358317], [-79.9358102791093, 32.7849775916767], [-79.9358643762573, 32.7850586376326], [-79.9358646058762, 32.7850589814255], [-79.9359157397099, 32.7851355347917], [-79.9359176416521, 32.7851383839997], [-79.9362046900164, 32.7849885530451], [-79.9362554807126, 32.7849620406109], [-79.9362896258809, 32.7849442178126], [-79.9362369371146, 32.7848714532248], [-79.9362355359789, 32.7848689465647], [-79.9362351570034, 32.7848684184013], [-79.936235222539, 32.7848683847013], [-79.936219210375, 32.7848478811253], [-79.9361745390366, 32.7847884756717], [-79.9361413822484, 32.7847443842963], [-79.9361273147951, 32.7847256769405], [-79.9361122808642, 32.7847054163342], [-79.936106042727, 32.784697009286], [-79.9360963104646, 32.7846840311099], [-79.9360745442104, 32.784655004731], [-79.9360892190312, 32.7846473513103], [-79.9360596668519, 32.7846050805009], [-79.9359720854574, 32.7846507444131], [-79.9359189944858, 32.7845751020388], [-79.935898820951, 32.7845463591298], [-79.9359294746521, 32.7845307480288], [-79.9359184171394, 32.7845152611293], [-79.9360660551111, 32.7844373594723], [-79.9360084805167, 32.7843572239807], [-79.9359407767369, 32.7842570111791], [-79.9358993889881, 32.7841957511509], [-79.9359164163995, 32.7841868141601], [-79.9359542886849, 32.7842393877897], [-79.9360444362319, 32.7841936352869], [-79.9360780574204, 32.7842421740704], [-79.9362585521224, 32.7841446084155], [-79.9363203167862, 32.7841112219936], [-79.9368382395776, 32.7849312717845], [-79.9367817779927, 32.7849609294774], [-79.9367743790027, 32.7849648161173], [-79.9367492098138, 32.784977699246], [-79.9367491496488, 32.7849777302873], [-79.9367262193456, 32.7849894667957], [-79.9366739729287, 32.7850162102677], [-79.9365296818379, 32.7850925094376], [-79.9363156673194, 32.785205675334], [-79.9360546953506, 32.7853436721821]]], "type": "Polygon"}, "id": "127", "properties": {"OBJECTID": 727, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 27672.060546875, "Shape__Length": 1247.30768696119, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9518337446556, 32.7841715323759, -79.9502935398395, 32.7860032617649], "geometry": {"coordinates": [[[-79.9510921621694, 32.7841715323759], [-79.9502935398395, 32.7844318095845], [-79.9510195126991, 32.7860032617649], [-79.9518103825054, 32.7857469687974], [-79.9518337446556, 32.7856690574808], [-79.9511820011001, 32.7842048173186], [-79.9510921621694, 32.7841715323759]]], "type": "Polygon"}, "id": "128", "properties": {"OBJECTID": 734, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22674.591796875, "Shape__Length": 641.50389803409, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9554291781513, 32.7849768229167, -79.9538620132814, 32.7860466329627], "geometry": {"coordinates": [[[-79.954749970181, 32.7849768229167], [-79.9543660492668, 32.7851012500312], [-79.9543729020622, 32.7851166929861], [-79.9538867507643, 32.7852742520909], [-79.9538620132814, 32.7853205400308], [-79.9538767733058, 32.7853540295916], [-79.9538706973369, 32.7853559986474], [-79.9540080333575, 32.7856676022201], [-79.9540233388238, 32.7856954085593], [-79.9541636956856, 32.7860207835411], [-79.9542833550198, 32.7860466329627], [-79.9545799582883, 32.7859454036579], [-79.9547017861275, 32.7858579196812], [-79.9553019859042, 32.7854259165612], [-79.9554291781513, 32.7853316535074], [-79.9553686728546, 32.7852033380114], [-79.9552205030752, 32.7852526322767], [-79.9549180234285, 32.7853539571965], [-79.954749970181, 32.7849768229167]]], "type": "Polygon"}, "id": "129", "properties": {"OBJECTID": 735, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12975.306640625, "Shape__Length": 511.69012095505, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9407176099531, 32.7855149913149, -79.940386031528, 32.7860482730808], "geometry": {"coordinates": [[[-79.940386031528, 32.7855384210467], [-79.9404533440105, 32.7856574745137], [-79.9404715220821, 32.7856896209415], [-79.9404857196529, 32.7857147617082], [-79.9405122388243, 32.7857564361079], [-79.9405606165026, 32.7858363969182], [-79.940452257295, 32.7858648763937], [-79.9404832573532, 32.7859285420811], [-79.94052420343, 32.7859866754582], [-79.9405521164195, 32.7859790495661], [-79.9405842438253, 32.7860482730808], [-79.9407176099531, 32.7860118276539], [-79.9404871364444, 32.7855149913149], [-79.940386031528, 32.7855384210467]]], "type": "Polygon"}, "id": "130", "properties": {"OBJECTID": 738, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 936.134765625, "Shape__Length": 185.687984741317, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.956523151035, 32.7855428332191, -79.9552486030147, 32.7862920952287], "geometry": {"coordinates": [[[-79.9552486030147, 32.7859270327953], [-79.9554183324805, 32.7862920952287], [-79.9562257432459, 32.78592025483], [-79.9562336775148, 32.7859370731836], [-79.9565114444088, 32.7857716816813], [-79.9565139135118, 32.7857692975498], [-79.9565163846951, 32.7857667393821], [-79.9565188579046, 32.7857640116869], [-79.956520520745, 32.7857610191554], [-79.9565213701443, 32.7857580187841], [-79.9565222215701, 32.7857548488854], [-79.9565230740198, 32.7857515933212], [-79.9565231119938, 32.7857484164844], [-79.956523151035, 32.7857451503751], [-79.9565223755574, 32.7857419666004], [-79.9565207856153, 32.7857388606513], [-79.9565200081115, 32.785735846404], [-79.9565176016244, 32.7857329923169], [-79.9565160065625, 32.7857303146952], [-79.9565127814936, 32.785727882899], [-79.9563378254651, 32.7855956489834], [-79.9562684930972, 32.7855428332191], [-79.9560854822966, 32.785607927225], [-79.9560909936062, 32.7856232657463], [-79.9555599253191, 32.7858131252887], [-79.9552486030147, 32.7859270327953]]], "type": "Polygon"}, "id": "131", "properties": {"OBJECTID": 741, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6162.056640625, "Shape__Length": 364.063149309644, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.950874166803, 32.7844526113379, -79.9493539847412, 32.7862887130458], "geometry": {"coordinates": [[[-79.9501400997027, 32.7844526113379], [-79.9493539847412, 32.784716672889], [-79.9500683564518, 32.7862887130458], [-79.950874166803, 32.7860287819192], [-79.9507020365335, 32.7856447944954], [-79.9506431157259, 32.7855278614194], [-79.950482487482, 32.7852054485871], [-79.9501400997027, 32.7844526113379]]], "type": "Polygon"}, "id": "132", "properties": {"OBJECTID": 745, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21231.861328125, "Shape__Length": 637.30399309687, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9417836377727, 32.7852984341527, -79.9405502165564, 32.7862433396067], "geometry": {"coordinates": [[[-79.9407905922455, 32.7860185315889], [-79.9408999056591, 32.7862433396067], [-79.9410063518602, 32.786216277992], [-79.9411417255844, 32.786190364878], [-79.941316729905, 32.7861464945183], [-79.9414289703861, 32.7861088292986], [-79.9417836377727, 32.7860205280906], [-79.9416576914641, 32.7857726803086], [-79.9414167018507, 32.7852984341527], [-79.9409519512, 32.7854215436665], [-79.9409446836754, 32.7854089741051], [-79.9405502165564, 32.7855003642068], [-79.9407905922455, 32.7860185315889]]], "type": "Polygon"}, "id": "133", "properties": {"OBJECTID": 748, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10568.357421875, "Shape__Length": 414.213810470878, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9408999056591, 32.7855384210467, -79.9399979643502, 32.7863692253072], "geometry": {"coordinates": [[[-79.940386031528, 32.7855384210467], [-79.9399979643502, 32.7856283479221], [-79.940403549687, 32.7863692253072], [-79.9408999056591, 32.7862433396067], [-79.9407905922455, 32.7860185315889], [-79.9407316660292, 32.78604212837], [-79.9407176099531, 32.7860118276539], [-79.9405842438253, 32.7860482730808], [-79.9405521164195, 32.7859790495661], [-79.94052420343, 32.7859866754582], [-79.9404832573532, 32.7859285420811], [-79.940452257295, 32.7858648763937], [-79.9405606165026, 32.7858363969182], [-79.9405122388243, 32.7857564361079], [-79.9404857196529, 32.7857147617082], [-79.9404715220821, 32.7856896209415], [-79.9404533440105, 32.7856574745137], [-79.940386031528, 32.7855384210467]]], "type": "Polygon"}, "id": "134", "properties": {"OBJECTID": 749, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4946.783203125, "Shape__Length": 357.648088545107, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9590415281747, 32.784619550258, -79.9569895728906, 32.7865542107527], "geometry": {"coordinates": [[[-79.9574139145653, 32.7854094037993], [-79.9571653116827, 32.7855302951177], [-79.9571228891205, 32.7855602639798], [-79.9569911264224, 32.7856530396709], [-79.9569895728906, 32.7856987115233], [-79.9571737873577, 32.7858452597636], [-79.9580647688939, 32.7865542107527], [-79.9581488755666, 32.7864715452634], [-79.9581916879246, 32.786428960903], [-79.9582256045065, 32.786381917868], [-79.9582716532116, 32.7863408193038], [-79.9583136581329, 32.7862977130803], [-79.9583604904895, 32.7862591120208], [-79.9584145905866, 32.7862250423067], [-79.9584614361792, 32.7861853248521], [-79.9585195205246, 32.7861583314307], [-79.9585816064756, 32.7861367848506], [-79.9586437088327, 32.786113860377], [-79.9586952198174, 32.7860922228264], [-79.9587033973821, 32.7860886859949], [-79.9587386781791, 32.7860636456483], [-79.9587697257011, 32.786052486361], [-79.9587999608713, 32.7860413165452], [-79.958826990278, 32.786025999864], [-79.958833565495, 32.7860202994161], [-79.9588393324356, 32.7860143368704], [-79.9588459076644, 32.7860087248017], [-79.9588786179144, 32.7859944836421], [-79.9589161361497, 32.7859864717701], [-79.9589504559016, 32.7859737918342], [-79.9589734702577, 32.785954147326], [-79.9589932727997, 32.7859308627392], [-79.9590130752883, 32.7859075817561], [-79.9590415281747, 32.7858458534502], [-79.958878538605, 32.78543851245], [-79.9587168261322, 32.7851894340624], [-79.9588123060462, 32.7850852245463], [-79.9589585175397, 32.7850174018598], [-79.9589515048641, 32.7849990944867], [-79.9589443159252, 32.784987868614], [-79.9589330383813, 32.7849785802592], [-79.9589282897907, 32.7849673742498], [-79.9589259949261, 32.7849551556191], [-79.9589245022499, 32.7849439773158], [-79.9589197659864, 32.7849317379097], [-79.9589101019381, 32.784923497686], [-79.9589053678235, 32.7849112573958], [-79.9588957038111, 32.7849030144657], [-79.9588827480592, 32.7848978377136], [-79.9588680825415, 32.7848997754042], [-79.9588534272022, 32.7849006805803], [-79.9588395751137, 32.7849025368101], [-79.9588257096884, 32.7849055111986], [-79.9588142620971, 32.7849104820796], [-79.9588019989147, 32.7849154469204], [-79.9587873211096, 32.7849184143907], [-79.9587766725622, 32.784924420159], [-79.9587643981495, 32.7849304156962], [-79.9587497202949, 32.7849332974875], [-79.9587366683059, 32.784936278789], [-79.9587243815946, 32.7849433050134], [-79.958709751892, 32.7849421497008], [-79.9586984487225, 32.7849349226975], [-79.9586871455441, 32.784927696595], [-79.9586774938559, 32.7849184220548], [-79.958668642254, 32.7849102744012], [-79.958666347395, 32.7848980584709], [-79.9586697343803, 32.7848869189927], [-79.9586763761611, 32.7848757215437], [-79.958684619184, 32.7848666876946], [-79.9586976947422, 32.7848617297801], [-79.95870998039, 32.7848547919292], [-79.9587229842345, 32.7848558459261], [-79.9587375903566, 32.7848589769538], [-79.9587497315507, 32.7848641494943], [-79.9587635232099, 32.7848673592613], [-79.9587773517506, 32.7848674769533], [-79.9587911444331, 32.7848706010517], [-79.9588050098997, 32.7848677123417], [-79.9588180485156, 32.784865761715], [-79.9588310994803, 32.7848628651685], [-79.9588425860777, 32.7848548022306], [-79.9588532335876, 32.7848487928406], [-79.9588614765896, 32.7848397589796], [-79.9588705340763, 32.7848306445715], [-79.958877149121, 32.7848215968556], [-79.9588813516086, 32.7848103786376], [-79.9588839352909, 32.7847982899017], [-79.9588816302339, 32.7847870163051], [-79.9588817634164, 32.7847758491318], [-79.9588794562389, 32.7847646638967], [-79.9588722448651, 32.7847554110408], [-79.958862627989, 32.7847432175764], [-79.9588569881249, 32.7847385323526], [-79.9588521505676, 32.7847349668189], [-79.9588424988401, 32.7847256958988], [-79.9588352864625, 32.7847165278045], [-79.9588280986158, 32.7847052135547], [-79.9588208862092, 32.7846960481647], [-79.9588185924343, 32.7846838295413], [-79.9588187256033, 32.7846726641718], [-79.9588188710759, 32.7846604672093], [-79.9588124843951, 32.7846501896708], [-79.958798740944, 32.7846430302885], [-79.9587915531645, 32.7846318008094], [-79.9587851900218, 32.784619550258], [-79.9587852295393, 32.7846216076765], [-79.9580394047449, 32.7849777436172], [-79.9581303539227, 32.7850815427495], [-79.9574139145653, 32.7854094037993]]], "type": "Polygon"}, "id": "135", "properties": {"OBJECTID": 751, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 29517.7734375, "Shape__Length": 817.243077645753, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9592374117607, 32.7860945064214, -79.9581316361448, 32.786679992681], "geometry": {"coordinates": [[[-79.9592374117607, 32.7861972528552], [-79.9592018644172, 32.7861764229162], [-79.9591338833864, 32.7861465503096], [-79.959079855021, 32.7861064063516], [-79.9590742407051, 32.7860996597636], [-79.9590710401425, 32.7860951657504], [-79.9590474520111, 32.7860947919029], [-79.959023862826, 32.7860945064214], [-79.959001077902, 32.7860949988466], [-79.9589513874683, 32.7861003297292], [-79.958901650984, 32.7861097004148], [-79.9588535075513, 32.7861218334261], [-79.9588249259543, 32.7861307798784], [-79.9587955196487, 32.7861407519051], [-79.95876692577, 32.7861508165132], [-79.9587570813329, 32.7861576894747], [-79.9586941214814, 32.7861842988148], [-79.958685126321, 32.786188174991], [-79.9586197558119, 32.7862122693032], [-79.95856175345, 32.7862324798771], [-79.9585200356073, 32.7862515367226], [-79.9584781198903, 32.7862870873103], [-79.9584240167024, 32.7863214149511], [-79.9583853998818, 32.786353299682], [-79.9583450393508, 32.7863950455363], [-79.9583031050608, 32.7864321407489], [-79.9582700275814, 32.7864770436841], [-79.958223914246, 32.7865235517993], [-79.9581316361448, 32.7866208647797], [-79.9582057774788, 32.786679992681], [-79.9586909176645, 32.7864528809134], [-79.9592374117607, 32.7861972528552]]], "type": "Polygon"}, "id": "136", "properties": {"OBJECTID": 755, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3347.533203125, "Shape__Length": 297.194963741574, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9397265727441, 32.7848336112158, -79.9379349429568, 32.7865232460962], "geometry": {"coordinates": [[[-79.9379349429568, 32.7855231846067], [-79.9385884686963, 32.7865232460962], [-79.9392266427231, 32.7863465939912], [-79.9391717190681, 32.786205498175], [-79.9391296304072, 32.7860973720044], [-79.9391166965309, 32.7861062881256], [-79.9390717211134, 32.7859894639519], [-79.9390539044245, 32.7859162878353], [-79.9389594169978, 32.7857315354756], [-79.9397265727441, 32.7854760011801], [-79.9395463166948, 32.7851279465314], [-79.9393757322285, 32.7848336112158], [-79.9393579920112, 32.7848362107215], [-79.9393547267513, 32.7848371284385], [-79.9393490117876, 32.7848387968886], [-79.9393457465385, 32.7848397137036], [-79.9393400305337, 32.7848414678186], [-79.9393343155695, 32.784843136268], [-79.93933105032, 32.7848440530827], [-79.9393253332471, 32.7848458071878], [-79.9393196193498, 32.7848474756457], [-79.9393163530325, 32.7848483924508], [-79.939310638094, 32.7848501465736], [-79.9393049220988, 32.7848518997853], [-79.9393016578786, 32.7848527318355], [-79.939295941883, 32.7848544850467], [-79.9392902258761, 32.7848562391594], [-79.9392869606148, 32.7848571568746], [-79.9392812446186, 32.7848589100851], [-79.9392755285783, 32.7848606669024], [-79.9392722633605, 32.7848615810103], [-79.9392665473199, 32.784863337827], [-79.9392608292144, 32.7848651766927], [-79.9392575660937, 32.7848660060458], [-79.939251847955, 32.7848678476163], [-79.9392461330249, 32.7848696008344], [-79.939242866706, 32.7848705176375], [-79.9392371517647, 32.7848722717569], [-79.9392314346926, 32.7848741133356], [-79.93922816943, 32.7848750310493], [-79.9392224534314, 32.7848767842571], [-79.9392167353241, 32.7848786231206], [-79.9392110203488, 32.7848803799441], [-79.939207754062, 32.784881294041], [-79.9392020380453, 32.7848831365294], [-79.9391963199482, 32.7848849744902], [-79.9391930557632, 32.7848858913105], [-79.9391873376109, 32.7848877337796], [-79.9391816226782, 32.7848894869948], [-79.9391759056368, 32.7848913258657], [-79.9391726403729, 32.7848922435779], [-79.939166923342, 32.7848940815467], [-79.9391612051886, 32.7848959240146], [-79.9391579410029, 32.7848968408339], [-79.9391522218191, 32.784898768065], [-79.9391465058548, 32.7849006060421], [-79.9391407877006, 32.7849024485091], [-79.9391375235472, 32.7849033626226], [-79.9391318053926, 32.7849052050892], [-79.939126087319, 32.7849071287214], [-79.9391203713099, 32.7849089703042], [-79.9391171049882, 32.7849098871039], [-79.9391113879376, 32.7849118143516], [-79.9391056698257, 32.78491365321], [-79.939099951718, 32.7849155795462], [-79.9390966864854, 32.7849164945512], [-79.9390909694075, 32.7849183361234], [-79.9390852523667, 32.7849202624681], [-79.9390795331797, 32.7849221896958], [-79.9390738172015, 32.7849240285713], [-79.9390705498377, 32.784925031035], [-79.9390648338591, 32.7849268699101], [-79.9390591146712, 32.7849287971369], [-79.9390533965615, 32.7849307234709], [-79.9390501312949, 32.7849316411797], [-79.9390444132178, 32.7849335648081], [-79.939038696175, 32.7849354911507], [-79.939032976986, 32.7849374183763], [-79.9390272588751, 32.7849393447091], [-79.9390239925668, 32.7849403480826], [-79.9390182744885, 32.7849422717097], [-79.9390125563661, 32.7849441989436], [-79.9390068382544, 32.7849461252755], [-79.9390011191012, 32.7849481372724], [-79.9389954009781, 32.7849500645054], [-79.9389921367886, 32.7849509813203], [-79.9389864165673, 32.7849529933073], [-79.9389806984874, 32.7849549169327], [-79.938974979333, 32.7849569289284], [-79.9389692612087, 32.7849588561602], [-79.9389635420539, 32.7849608681554], [-79.9389602767852, 32.7849617858619], [-79.938954557641, 32.7849637969549], [-79.9389488395486, 32.7849657214805], [-79.93894312036, 32.78496773618], [-79.9389374012369, 32.7849697454687], [-79.9389316820806, 32.7849717574623], [-79.9389259639543, 32.7849736846922], [-79.9389226976655, 32.7849746862595], [-79.9389169785086, 32.7849766982525], [-79.9389112593403, 32.7849787111469], [-79.9389055401939, 32.7849807222377], [-79.9388998210361, 32.7849827342298], [-79.9388941018672, 32.7849847471235], [-79.9388883827089, 32.7849867591151], [-79.9388826635614, 32.7849887702048], [-79.9388769444026, 32.7849907821959], [-79.9388736781015, 32.7849917846637], [-79.9388679589424, 32.7849937966544], [-79.9388622387416, 32.7849958943101], [-79.938856519549, 32.7849979090055], [-79.938850800389, 32.7849999209954], [-79.9388450801983, 32.7850020177486], [-79.9388393610379, 32.785004029738], [-79.9388336408357, 32.7850061273924], [-79.9388279216747, 32.7850081393812], [-79.938822201483, 32.7850102361333], [-79.9388164823214, 32.7850122481217], [-79.9388107621182, 32.785014345775], [-79.9388050418818, 32.7850164461333], [-79.9387993216519, 32.7850184581116], [-79.9387936025263, 32.7850205548716], [-79.938787882333, 32.7850226516222], [-79.9387821621284, 32.7850247492742], [-79.9387764429321, 32.7850267639658], [-79.938770722727, 32.7850288616173], [-79.9387650025325, 32.7850309583667], [-79.9387617351982, 32.7850320455952], [-79.9387560149924, 32.785034143246], [-79.9387502947534, 32.7850362436017], [-79.9387470274187, 32.7850373308297], [-79.9387421206667, 32.7850394346343], [-79.93873640046, 32.7850415322842], [-79.93873068022, 32.785043632639], [-79.9387249600237, 32.7850457293866], [-79.9387192387527, 32.7850479145045], [-79.9386329697949, 32.7850812500833], [-79.9383398038493, 32.7851832164991], [-79.9382193368708, 32.7852251164563], [-79.9383111891647, 32.7853923328842], [-79.9382057654611, 32.7854289974553], [-79.9379349429568, 32.7855231846067]]], "type": "Polygon"}, "id": "137", "properties": {"OBJECTID": 756, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22870.98828125, "Shape__Length": 709.305309171853, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9290135897572, 32.7853615235021, -79.9285766011796, 32.7864089997019], "geometry": {"coordinates": [[[-79.9288176133352, 32.7853722749265], [-79.9288086992554, 32.785646899822], [-79.9288046817762, 32.7857124128153], [-79.9287985909331, 32.7858115975548], [-79.928795017852, 32.7858452444458], [-79.9287903793443, 32.7858787981374], [-79.9287846799776, 32.7859122343201], [-79.9287779242975, 32.7859455304873], [-79.928770115804, 32.7859786623201], [-79.9287612612001, 32.7860116055275], [-79.9287513661098, 32.7860443367106], [-79.9287404372249, 32.7860768324801], [-79.9287284844398, 32.7861090694747], [-79.9287155133677, 32.7861410251971], [-79.9286689323681, 32.7862308848167], [-79.9286274711889, 32.7863108672509], [-79.9285982378247, 32.7863672601024], [-79.9285766011796, 32.7864089997019], [-79.9289092521753, 32.7862887892197], [-79.9289841082084, 32.7862375745237], [-79.9290115061937, 32.7859459467603], [-79.9290135897572, 32.7857761176575], [-79.9290029580094, 32.785594960208], [-79.9289861669115, 32.7853615235021], [-79.9288176133352, 32.7853722749265]]], "type": "Polygon"}, "id": "138", "properties": {"OBJECTID": 757, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3312.140625, "Shape__Length": 327.716782987761, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9540405514108, 32.7853149387144, -79.9521536749431, 32.786658544393], "geometry": {"coordinates": [[[-79.9521536749431, 32.7858820796336], [-79.9522515514594, 32.7860940336768], [-79.9523096501516, 32.7862369777436], [-79.9523488113983, 32.7863533999067], [-79.9523840975415, 32.7864808264256], [-79.9524415832458, 32.7866088768005], [-79.9525909418344, 32.786658544393], [-79.9533793511014, 32.7863819289199], [-79.9539797189264, 32.786165649625], [-79.9540405514108, 32.7860694462068], [-79.9536908996038, 32.7853406684489], [-79.953624947946, 32.7853149387144], [-79.9529875746305, 32.7855241889707], [-79.9522141673079, 32.7857765618575], [-79.9521536749431, 32.7858820796336]]], "type": "Polygon"}, "id": "139", "properties": {"OBJECTID": 758, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22707.517578125, "Shape__Length": 597.875065966948, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9402458638207, 32.7854760011801, -79.9385884686963, 32.7867825800322], "geometry": {"coordinates": [[[-79.9385884686963, 32.7865232460962], [-79.9387629481167, 32.7867825800322], [-79.9402458638207, 32.7864085133564], [-79.9401417683259, 32.7862171232591], [-79.9400039614683, 32.7859649900747], [-79.9399453036879, 32.7858684363804], [-79.9398754263777, 32.7857534132499], [-79.9397265727441, 32.7854760011801], [-79.9389594169978, 32.7857315354756], [-79.9390539044245, 32.7859162878353], [-79.9390717211134, 32.7859894639519], [-79.9391166965309, 32.7861062881256], [-79.9391296304072, 32.7860973720044], [-79.9391717190681, 32.786205498175], [-79.9392266427231, 32.7863465939912], [-79.9385884686963, 32.7865232460962]]], "type": "Polygon"}, "id": "140", "properties": {"OBJECTID": 761, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15644.46875, "Shape__Length": 604.177186489442, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9290370699347, 32.7863339453877, -79.9286866303445, 32.7866984317379], "geometry": {"coordinates": [[[-79.9286866303445, 32.7864456993985], [-79.9287058773914, 32.7866080686237], [-79.928712349864, 32.7866626692673], [-79.928716589403, 32.7866984317379], [-79.9289615204409, 32.7866680280038], [-79.9290370699347, 32.7866586501204], [-79.9290227936812, 32.7865687320065], [-79.9290036898409, 32.7864477259138], [-79.9289837682046, 32.7863339453877], [-79.9286866303445, 32.7864456993985]]], "type": "Polygon"}, "id": "141", "properties": {"OBJECTID": 762, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1363.625, "Shape__Length": 149.333788952854, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9314952833501, 32.7855298673898, -79.9295480755235, 32.7867196380462], "geometry": {"coordinates": [[[-79.9295915170536, 32.7861430246225], [-79.929623644047, 32.7863140638969], [-79.9296315354858, 32.7863560782466], [-79.9296410518176, 32.7864159478394], [-79.9296442452312, 32.7864155915954], [-79.9296533377636, 32.7864728457619], [-79.9295480755235, 32.7864853107696], [-79.9296163166412, 32.7865993236656], [-79.9296319268998, 32.7867196380462], [-79.9300203975768, 32.7865460903933], [-79.9307594609451, 32.7862192078388], [-79.9310315110761, 32.7860964761325], [-79.9314952833501, 32.7858679384905], [-79.9314368089067, 32.7857793310199], [-79.9312721847406, 32.7855298673898], [-79.9310416570587, 32.7856150113433], [-79.9309216880648, 32.7856593209154], [-79.9307717226231, 32.7857147097093], [-79.9305931291372, 32.7857806701196], [-79.9306191839077, 32.7859037973902], [-79.9306475996015, 32.7860379684357], [-79.9306728023292, 32.786157017361], [-79.9305446759649, 32.7861763763201], [-79.9304729410355, 32.7858375101586], [-79.9303223027691, 32.7858909508727], [-79.9301716267672, 32.7859444064044], [-79.9298781320355, 32.7860485286265], [-79.9299115796452, 32.7862240569872], [-79.9299348477372, 32.7863461698265], [-79.9298063531338, 32.7863636552893], [-79.929792227649, 32.7862895072007], [-79.9297534601433, 32.7860860312559], [-79.9295915170536, 32.7861430246225]]], "type": "Polygon"}, "id": "142", "properties": {"OBJECTID": 763, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12163.755859375, "Shape__Length": 752.957744047873, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9296533377636, 32.7861430246225, -79.9291340909483, 32.7867698324582], "geometry": {"coordinates": [[[-79.9295915170536, 32.7861430246225], [-79.9294854656492, 32.7861803480984], [-79.9291340909483, 32.7863040063006], [-79.9291513680514, 32.7864129271048], [-79.9291699780404, 32.7865300816158], [-79.9291890084737, 32.7866499552342], [-79.929208038915, 32.7867698324582], [-79.9295878331748, 32.7867248598889], [-79.9296319268998, 32.7867196380462], [-79.9296163166412, 32.7865993236656], [-79.9295480755235, 32.7864853107696], [-79.9296533377636, 32.7864728457619], [-79.9296442452312, 32.7864155915954], [-79.9296410518176, 32.7864159478394], [-79.9296315354858, 32.7863560782466], [-79.929623644047, 32.7863140638969], [-79.9295915170536, 32.7861430246225]]], "type": "Polygon"}, "id": "143", "properties": {"OBJECTID": 765, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3497.08203125, "Shape__Length": 254.409017516039, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9522878814836, 32.7858752823399, -79.9513607060335, 32.7869429984005], "geometry": {"coordinates": [[[-79.9513607060335, 32.7860398927572], [-79.9517587557038, 32.7869226627208], [-79.951814673946, 32.7869429984005], [-79.9522414253387, 32.7867847051287], [-79.9522878814836, 32.7867100027171], [-79.9521825488552, 32.7864428133211], [-79.9519404474171, 32.7859094618059], [-79.9518939192174, 32.7859247298766], [-79.9518686591146, 32.7858752823399], [-79.9513607060335, 32.7860398927572]]], "type": "Polygon"}, "id": "144", "properties": {"OBJECTID": 766, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8426.583984375, "Shape__Length": 381.025083421128, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.954752354008, 32.7863252848545, -79.9532646863788, 32.7871373134544], "geometry": {"coordinates": [[[-79.9542451559866, 32.7863758591789], [-79.9541643246525, 32.7863889049715], [-79.9540843041834, 32.7864154490814], [-79.9540141023885, 32.7864263409812], [-79.953904081958, 32.7864457808581], [-79.9538542812878, 32.786455543953], [-79.953796299712, 32.7864676765319], [-79.953702773352, 32.7864894153626], [-79.9532646863788, 32.786634734909], [-79.9533874275891, 32.7869198871068], [-79.9534793214362, 32.7871309935583], [-79.9535679736188, 32.7871373134544], [-79.9540449187533, 32.7869222046973], [-79.9542301190504, 32.7868398451544], [-79.9543337534525, 32.7867938283591], [-79.9544049922046, 32.786757887674], [-79.9544006349944, 32.7867474721287], [-79.9543909396786, 32.7867243014133], [-79.9545011290051, 32.7866877484332], [-79.954752354008, 32.7865266089458], [-79.9547438497936, 32.7865157692928], [-79.9546298069757, 32.7863704166825], [-79.9545943979345, 32.7863252848545], [-79.9544568566219, 32.7863544941081], [-79.954250501264, 32.7863886360605], [-79.9542451559866, 32.7863758591789]]], "type": "Polygon"}, "id": "145", "properties": {"OBJECTID": 768, "ORDNO": "2017-005", "ORDSTAT": null, "Shape__Area": 9297.708984375, "Shape__Length": 426.477399843772, "ZONE_BASE": "PUD", "__folium_color": "#7f7f7f"}, "type": "Feature"}, {"bbox": [-79.9386191546926, 32.7854193014364, -79.9364122524126, 32.7871663848604], "geometry": {"coordinates": [[[-79.9376345335434, 32.7854236786509], [-79.9364122524126, 32.785858747807], [-79.9369231313122, 32.7866242778092], [-79.937123339626, 32.786924287724], [-79.9372893699208, 32.7871663848604], [-79.9386191546926, 32.7868192656661], [-79.9377192009499, 32.7854501594326], [-79.9377154331594, 32.7854446426558], [-79.9377070871466, 32.7854357231821], [-79.9376994954356, 32.7854300920368], [-79.9376929312738, 32.7854264385201], [-79.9376848555774, 32.7854231172812], [-79.937676314314, 32.7854207677853], [-79.9376674724327, 32.7854194338506], [-79.93765513119, 32.7854193014364], [-79.9376462527589, 32.7854204445249], [-79.937640829119, 32.7854216798391], [-79.9376345335434, 32.7854236786509]]], "type": "Polygon"}, "id": "146", "properties": {"OBJECTID": 769, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 31516.294921875, "Shape__Length": 719.768943805984, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9291071916413, 32.7868219029534, -79.9287360843651, 32.7871145925747], "geometry": {"coordinates": [[[-79.9290647497892, 32.7868219029534], [-79.9287360843651, 32.7868627060074], [-79.9287659580003, 32.7871145925747], [-79.9291071916413, 32.7870722247321], [-79.9290647497892, 32.7868219029534]]], "type": "Polygon"}, "id": "147", "properties": {"OBJECTID": 770, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1261.9296875, "Shape__Length": 142.381699025142, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9516814543046, 32.7860536448419, -79.9501253835581, 32.787369205843], "geometry": {"coordinates": [[[-79.950612135087, 32.7862744390126], [-79.9505721177748, 32.7862872372945], [-79.9501253835581, 32.7864308120839], [-79.9505387718074, 32.787369205843], [-79.9505591910692, 32.7873625090156], [-79.9516422653635, 32.7870040570774], [-79.9516814543046, 32.7869247627028], [-79.9515602925698, 32.7866491032659], [-79.9512997892066, 32.7860536448419], [-79.950612135087, 32.7862744390126]]], "type": "Polygon"}, "id": "148", "properties": {"OBJECTID": 775, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 18395.994140625, "Shape__Length": 538.760593281849, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9533935108613, 32.7867087601967, -79.9525783366334, 32.7874987036263], "geometry": {"coordinates": [[[-79.9525783366334, 32.7869030229565], [-79.9528551195771, 32.7874987036263], [-79.9530842214477, 32.7873897666089], [-79.953175865279, 32.7873458856274], [-79.9533935108613, 32.7872423475971], [-79.9531452690569, 32.7867087601967], [-79.9525783366334, 32.7869030229565]]], "type": "Polygon"}, "id": "149", "properties": {"OBJECTID": 778, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5471.724609375, "Shape__Length": 297.57828998397, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9527126120607, 32.7869507487795, -79.9518536404627, 32.7878413277123], "geometry": {"coordinates": [[[-79.9522976494323, 32.786964231395], [-79.952180029351, 32.7870033394929], [-79.9520615957226, 32.7870424387068], [-79.9520493432298, 32.7870465444229], [-79.9520444366747, 32.7870486496632], [-79.9520387166668, 32.7870507470337], [-79.9520338090437, 32.7870528522644], [-79.9520289035661, 32.7870549566114], [-79.952025636278, 32.7870560478012], [-79.9520207287042, 32.7870582378042], [-79.9520158190016, 32.7870605161687], [-79.9520109124623, 32.7870627088856], [-79.9520060028027, 32.7870649836427], [-79.9520027355638, 32.7870661596047], [-79.9519978248427, 32.7870685227321], [-79.9519929172741, 32.7870708011138], [-79.9519880055348, 32.7870732490045], [-79.951983096948, 32.7870756121495], [-79.9519781852082, 32.7870780600398], [-79.9519732755925, 32.7870805088499], [-79.9519683638196, 32.7870829594451], [-79.9519634531856, 32.7870854930185], [-79.9519585403838, 32.7870880292787], [-79.9519536297492, 32.7870905628518], [-79.9519487180035, 32.7870931000225], [-79.9519413473247, 32.7870970716894], [-79.9519388915014, 32.7870984250474], [-79.9519339776804, 32.7871010460703], [-79.9519315207894, 32.787102399419], [-79.9519274215276, 32.7871051139957], [-79.9519249635687, 32.7871064673351], [-79.9519225056596, 32.7871079054473], [-79.9519200498357, 32.7871092588049], [-79.9519175929442, 32.7871106121533], [-79.951915134985, 32.7871119654926], [-79.9519126770756, 32.7871134036046], [-79.9519085767625, 32.7871162056495], [-79.9519061177745, 32.787117644654], [-79.9519036598648, 32.7871190827658], [-79.9519012040403, 32.7871204361231], [-79.9518987450629, 32.7871218742257], [-79.9518946426637, 32.7871247610248], [-79.9518921858103, 32.7871262000473], [-79.9518897257715, 32.7871277265204], [-79.9518872678613, 32.7871291646319], [-79.9518831655003, 32.7871321371052], [-79.9518807065222, 32.7871335752075], [-79.9518782475831, 32.7871350989842], [-79.9518741452216, 32.7871380714572], [-79.9518716851822, 32.78713959793], [-79.9518692272713, 32.7871410360411], [-79.9518651238914, 32.7871440932775], [-79.9518626638842, 32.7871456170449], [-79.9518585583752, 32.7871487626426], [-79.9518561005028, 32.7871502864281], [-79.9518536404627, 32.7871518129005], [-79.9519448573455, 32.7873468981608], [-79.9520027410466, 32.7874722944576], [-79.9520320752846, 32.7875361962984], [-79.9521740383749, 32.7878413277123], [-79.9522706207053, 32.7877927613763], [-79.9523811195589, 32.7877370994546], [-79.9524916172148, 32.7876814365224], [-79.9526021146866, 32.7876257770979], [-79.9527126120607, 32.7875701139668], [-79.9526079147331, 32.7873457043738], [-79.9525643056794, 32.7872510144901], [-79.9525198822713, 32.7871563996858], [-79.9524326419789, 32.7869689080921], [-79.9523384885542, 32.7869507487795], [-79.9522976494323, 32.786964231395]]], "type": "Polygon"}, "id": "150", "properties": {"OBJECTID": 783, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6624.23046875, "Shape__Length": 324.702167719196, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9514539313079, 32.7872521803646, -79.950598240114, 32.7880490799768], "geometry": {"coordinates": [[[-79.9514284023154, 32.7872521803646], [-79.950598240114, 32.7875269237348], [-79.9506690272517, 32.7876806109811], [-79.9507162385497, 32.7877830557657], [-79.9508459185547, 32.7880490799768], [-79.9513007064837, 32.7878996635862], [-79.9511767635914, 32.7876306489694], [-79.9513365950883, 32.7875777304059], [-79.9513385238973, 32.7875697684087], [-79.9513393693651, 32.7875671116363], [-79.9513394013215, 32.7875644514985], [-79.9513402467892, 32.7875617947262], [-79.9513410912278, 32.7875592236193], [-79.9513419366955, 32.7875565668471], [-79.9513427821198, 32.7875539136817], [-79.9513436286549, 32.7875512569185], [-79.9513444730499, 32.7875486894186], [-79.9513453185174, 32.7875460326462], [-79.9513461629064, 32.7875433767665], [-79.9513470073555, 32.7875408047579], [-79.9513478527795, 32.7875381515925], [-79.9513486972176, 32.7875355804856], [-79.9513495426524, 32.7875329264184], [-79.9513503881087, 32.7875302705478], [-79.9513512325467, 32.7875276994409], [-79.9513520780137, 32.7875250426685], [-79.9513529234867, 32.787522474276], [-79.9513537689428, 32.7875198184053], [-79.9513546133481, 32.7875172500036], [-79.9513554588149, 32.7875145932312], [-79.9513563021851, 32.7875120221151], [-79.9513571465794, 32.7875094546151], [-79.9513579920461, 32.7875067978427], [-79.9513588364512, 32.787504229441], [-79.9513596808887, 32.787501658334], [-79.9513605263227, 32.7874990042667], [-79.9513621852952, 32.7874964401412], [-79.9513630297, 32.7874938717395], [-79.9513638751555, 32.7874912158688], [-79.9513647195927, 32.7874886447618], [-79.9513655629299, 32.7874860763509], [-79.951366407367, 32.7874835052438], [-79.9513680652389, 32.7874809438144], [-79.951368910705, 32.7874782870418], [-79.9513697551094, 32.78747571864], [-79.9513705995464, 32.787473147533], [-79.9513714450183, 32.7874705791403], [-79.9513731029223, 32.7874680150055], [-79.951373947359, 32.7874654438985], [-79.9513747906957, 32.7874628754875], [-79.9513756351323, 32.7874603043804], [-79.9513772930035, 32.7874577429507], [-79.95137813744, 32.7874551718437], [-79.9513789808149, 32.7874526891073], [-79.9513798252189, 32.7874501207054], [-79.9513814841898, 32.7874475565797], [-79.9513823285935, 32.7874449881777], [-79.9513831730406, 32.7874424161689], [-79.9513848298329, 32.7874398556318], [-79.9513856732183, 32.7874373719936], [-79.9513865176544, 32.7874348008864], [-79.9513881755248, 32.7874322394567], [-79.9513890189317, 32.787429754015], [-79.9513898644026, 32.7874271856222], [-79.9513915212545, 32.7874247089561], [-79.9513923656903, 32.7874221378489], [-79.9513940224928, 32.7874195764099], [-79.9513948658994, 32.7874170909682], [-79.9513957103133, 32.7874145216644], [-79.951397367154, 32.7874120459], [-79.9513982105605, 32.7874095604583], [-79.9513998695084, 32.7874069981357], [-79.9514007128822, 32.7874045153992], [-79.9514023707841, 32.787401951264], [-79.9514032131011, 32.7873994676165], [-79.9514048699413, 32.787396991852], [-79.9514057133474, 32.7873945064102], [-79.9514073712273, 32.7873919440785], [-79.9514082156683, 32.787389461351], [-79.9514098725407, 32.7873869828812], [-79.9514107159249, 32.7873844992428], [-79.9514123716971, 32.7873820234691], [-79.9514132150811, 32.7873795398307], [-79.951414871964, 32.7873770604591], [-79.9514157153371, 32.7873745777224], [-79.951417373244, 32.7873721019669], [-79.9514190301266, 32.7873696225952], [-79.9514198735103, 32.7873671389568], [-79.9514215303495, 32.787364663192], [-79.9514223726548, 32.7873621804462], [-79.951424029537, 32.7873597010745], [-79.9514256863759, 32.7873572253096], [-79.9514265297978, 32.7873548273457], [-79.9514281866474, 32.7873523506792], [-79.9514298434968, 32.7873498740126], [-79.951430685851, 32.7873474760396], [-79.951432341622, 32.7873450002655], [-79.9514339985036, 32.7873425208937], [-79.9514348408577, 32.7873401229206], [-79.9514364987634, 32.7873376471648], [-79.9514381545833, 32.7873352561635], [-79.9514389979662, 32.787332772525], [-79.9514406527184, 32.7873303815145], [-79.9514423085381, 32.7873279905133], [-79.9514439653758, 32.7873255147482], [-79.951444808797, 32.7873231167842], [-79.9514464646489, 32.7873207230776], [-79.9514481214972, 32.7873182464108], [-79.9514497773057, 32.7873158563111], [-79.9514506185915, 32.7873134583288], [-79.9514522744214, 32.7873110664257], [-79.9514539313079, 32.7873086754333], [-79.9514284023154, 32.7872521803646]]], "type": "Polygon"}, "id": "151", "properties": {"OBJECTID": 787, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5309.62890625, "Shape__Length": 331.664390130059, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9521236273308, 32.7872227943438, -79.9514998396946, 32.7881453925444], "geometry": {"coordinates": [[[-79.951524833918, 32.7879606889345], [-79.9515276003821, 32.787974364613], [-79.9515302258634, 32.7879864446399], [-79.9515344181312, 32.7880042584298], [-79.9515369394056, 32.788014258835], [-79.951542499473, 32.7880348178066], [-79.95154800001, 32.7880534887282], [-79.9515545141021, 32.7880739088757], [-79.9515620896527, 32.7880958234405], [-79.9515692335195, 32.7881150116672], [-79.9515753758386, 32.7881305623289], [-79.9515815321511, 32.7881453925444], [-79.9516049364356, 32.7881340054277], [-79.9517888433409, 32.7880448025392], [-79.9518948159131, 32.7879809632144], [-79.9520153064997, 32.787934363172], [-79.9521236273308, 32.7878816651892], [-79.9520104929469, 32.7876397792044], [-79.951998596099, 32.7876141653038], [-79.9519517101771, 32.7875118915564], [-79.951855362613, 32.7873046606286], [-79.9518169920406, 32.7872227943438], [-79.9517316918341, 32.7872511873523], [-79.9517270027497, 32.7872558078558], [-79.9516923991955, 32.7872922557042], [-79.9516827047724, 32.7873032931581], [-79.9516876153114, 32.7873601571157], [-79.9516229112216, 32.7873817742838], [-79.951602760664, 32.7874135752505], [-79.9515885500713, 32.7874383008196], [-79.9515679154012, 32.7874786722744], [-79.9515541680178, 32.7875095424001], [-79.9515416729868, 32.7875415676845], [-79.9515361436817, 32.7875573844703], [-79.951530178823, 32.7875759526276], [-79.9515205002314, 32.7876107346048], [-79.9515160499478, 32.7876296043281], [-79.9515116183745, 32.7876512717022], [-79.9515066710177, 32.7876812143984], [-79.9515015833875, 32.787728701984], [-79.9514998396946, 32.7877808969443], [-79.9515008038638, 32.7878138681596], [-79.9515039482831, 32.7878522537353], [-79.951509262101, 32.7878904685172], [-79.9515121987764, 32.7879067726986], [-79.9515219583231, 32.7879499658287], [-79.951524833918, 32.7879606889345]]], "type": "Polygon"}, "id": "152", "properties": {"OBJECTID": 793, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5049.466796875, "Shape__Length": 302.361808291147, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.929261480047, 32.7871810737504, -79.9284797729637, 32.7880805686068], "geometry": {"coordinates": [[[-79.9284797729637, 32.7872612637295], [-79.9286145614417, 32.7880805686068], [-79.929261480047, 32.7880002499634], [-79.9291256420246, 32.7871810737504], [-79.9284797729637, 32.7872612637295]]], "type": "Polygon"}, "id": "153", "properties": {"OBJECTID": 799, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7965.892578125, "Shape__Length": 364.515277785247, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.944405682685, 32.7875802423337, -79.9429311881335, 32.7883417408944], "geometry": {"coordinates": [[[-79.9439422102208, 32.7876118448028], [-79.9438176001989, 32.7876436807091], [-79.9437242417251, 32.7876678158852], [-79.9435997657977, 32.7876999386106], [-79.9434751898464, 32.787731937697], [-79.9433506234334, 32.7877639349362], [-79.9432260869186, 32.7877959241912], [-79.9431014903444, 32.7878279281327], [-79.9429311881335, 32.7878716730576], [-79.943021498669, 32.7879760272813], [-79.9431325301384, 32.7881038746785], [-79.9432050044305, 32.7881880629645], [-79.943338002695, 32.7883417408944], [-79.9434084837016, 32.7883236374117], [-79.9435175759761, 32.7882956269697], [-79.9436429313468, 32.7882634262371], [-79.9438021374169, 32.788222531723], [-79.9439235692382, 32.7881911869449], [-79.9440481087555, 32.7881589742486], [-79.9441573217458, 32.7881314530768], [-79.944405682685, 32.788070221503], [-79.9443506552343, 32.7879898125605], [-79.9442900098661, 32.7879011935087], [-79.9442380261067, 32.7878252324763], [-79.9441877283711, 32.787751734454], [-79.9440703715477, 32.7875802423337], [-79.9439422102208, 32.7876118448028]]], "type": "Polygon"}, "id": "154", "properties": {"OBJECTID": 801, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9339.541015625, "Shape__Length": 408.557644863167, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9514031145144, 32.7879905341854, -79.9508756185198, 32.7884158365416], "geometry": {"coordinates": [[[-79.9512937565633, 32.7879905341854], [-79.9508756185198, 32.788128869253], [-79.9510094989402, 32.7884158365416], [-79.9514031145144, 32.7882249258075], [-79.9512937565633, 32.7879905341854]]], "type": "Polygon"}, "id": "155", "properties": {"OBJECTID": 802, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1854.7265625, "Shape__Length": 174.764728336779, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9422617312658, 32.7880611358428, -79.9414666677473, 32.7884247549486], "geometry": {"coordinates": [[[-79.9422617312658, 32.7882582224728], [-79.942151948847, 32.7880611358428], [-79.9420741557324, 32.788081236068], [-79.9420076906825, 32.7880984112521], [-79.9418197735254, 32.788146965114], [-79.9414666677473, 32.7882381983714], [-79.9415236384849, 32.788309233733], [-79.9415719048978, 32.788369417735], [-79.9416162787141, 32.7884247549486], [-79.9418771149852, 32.7883588386384], [-79.9421017358534, 32.7883020733989], [-79.9421895543448, 32.7882745863243], [-79.9422617312658, 32.7882582224728]]], "type": "Polygon"}, "id": "156", "properties": {"OBJECTID": 805, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2217.982421875, "Shape__Length": 213.600010634751, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9542893675718, 32.7871509095318, -79.9535043497268, 32.7877809893686], "geometry": {"coordinates": [[[-79.9535043497268, 32.7873959014098], [-79.9536660163082, 32.7877809893686], [-79.9536782241349, 32.7877771383271], [-79.9537289673365, 32.7877611327428], [-79.9537875936871, 32.7877331343188], [-79.9539183990555, 32.7876912163665], [-79.9538573519791, 32.7875520310562], [-79.9539520858872, 32.7875218278835], [-79.9541585820566, 32.7874554921285], [-79.9542890856956, 32.7874136677031], [-79.9542893675718, 32.7874135772235], [-79.9542294404102, 32.7872769475564], [-79.9541859857517, 32.7871778712608], [-79.9540352824759, 32.7871509095318], [-79.9538313555667, 32.7872475452232], [-79.953825621753, 32.7872344944494], [-79.9535043497268, 32.7873959014098]]], "type": "Polygon"}, "id": "157", "properties": {"OBJECTID": 807, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3724.345703125, "Shape__Length": 275.740767617545, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9412053218022, 32.7873959378128, -79.9394341279009, 32.7884639228487], "geometry": {"coordinates": [[[-79.9408016048441, 32.7873959378128], [-79.940518073526, 32.7874709017928], [-79.9401610036257, 32.7875633811491], [-79.9394341279009, 32.7877491038419], [-79.9396399852759, 32.7880199670307], [-79.9397380732741, 32.788161583719], [-79.9399409804529, 32.7884639228487], [-79.9405768079717, 32.7883020008708], [-79.9412053218022, 32.7881391059744], [-79.94093565593, 32.7876373382112], [-79.9408016048441, 32.7873959378128]]], "type": "Polygon"}, "id": "158", "properties": {"OBJECTID": 808, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16340.9609375, "Shape__Length": 524.835324241248, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9419034950864, 32.7883588386384, -79.9416162787141, 32.7885363756466], "geometry": {"coordinates": [[[-79.9416162787141, 32.7884247549486], [-79.9416866511225, 32.7885125152694], [-79.9417057901683, 32.7885363756466], [-79.9419034950864, 32.7884882979947], [-79.9418893758679, 32.7884197166588], [-79.9418771149852, 32.7883588386384], [-79.9416162787141, 32.7884247549486]]], "type": "Polygon"}, "id": "159", "properties": {"OBJECTID": 810, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 455.923828125, "Shape__Length": 88.4482475451762, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.942406319965, 32.7882503237076, -79.9418771149852, 32.7885699941533], "geometry": {"coordinates": [[[-79.942406319965, 32.7884648347563], [-79.9423784616169, 32.7884164359311], [-79.9423353064529, 32.7883414603445], [-79.9422828503228, 32.7882503237076], [-79.9422617312658, 32.7882582224728], [-79.9421895543448, 32.7882745863243], [-79.9421017358534, 32.7883020733989], [-79.9418771149852, 32.7883588386384], [-79.9418893758679, 32.7884197166588], [-79.9419034950864, 32.7884882979947], [-79.9421660915173, 32.7884244398496], [-79.9421872522107, 32.7884748712707], [-79.942199113628, 32.788503093953], [-79.9422272014713, 32.7885699941533], [-79.9423594484859, 32.788521223564], [-79.9423684630519, 32.7885167959214], [-79.9423767794133, 32.7885114829531], [-79.9423832591188, 32.7885062803645], [-79.9423908417736, 32.7884985179808], [-79.9423941393677, 32.7884943231913], [-79.9423990582444, 32.7884865567191], [-79.94240236439, 32.7884795410623], [-79.9424047938208, 32.7884722743313], [-79.942406319965, 32.7884648347563]]], "type": "Polygon"}, "id": "160", "properties": {"OBJECTID": 814, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1309.650390625, "Shape__Length": 172.811503643196, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9508915334871, 32.7876946584402, -79.9502655567015, 32.7886650984101], "geometry": {"coordinates": [[[-79.9504265269103, 32.7878654550299], [-79.9504489894224, 32.7879138444734], [-79.9503138269194, 32.7879779687101], [-79.9503520282132, 32.7880647670652], [-79.9504011481587, 32.7881517754155], [-79.9503397871557, 32.7881802222313], [-79.9502655567015, 32.7882043037416], [-79.9504801480902, 32.7886594122486], [-79.9504827873286, 32.7886650984101], [-79.950509619604, 32.7886520716098], [-79.9506261093418, 32.788597021776], [-79.9507147411841, 32.7885551359847], [-79.9508023820388, 32.7885142363553], [-79.9508915334871, 32.7884726317569], [-79.9508014389893, 32.7882721136332], [-79.9506910776682, 32.7880265517484], [-79.9506479771053, 32.7879306498481], [-79.9505849696854, 32.7877974883362], [-79.9505549963958, 32.7877512115225], [-79.9505286144268, 32.7876946584402], [-79.9503687634449, 32.7877724014902], [-79.9504265269103, 32.7878654550299]]], "type": "Polygon"}, "id": "161", "properties": {"OBJECTID": 816, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4701.21484375, "Shape__Length": 328.779724700765, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.954521846975, 32.7874136677031, -79.951990247622, 32.7887423844772], "geometry": {"coordinates": [[[-79.9522773427478, 32.7884432760565], [-79.9523056245666, 32.7885077306643], [-79.9522172582485, 32.7885382378217], [-79.951990247622, 32.7886137764045], [-79.9520170655342, 32.7886759170602], [-79.9520457512076, 32.7887423844772], [-79.9522701593002, 32.7886699465538], [-79.9523458768926, 32.788645505006], [-79.9524520222643, 32.788611243235], [-79.9525638306563, 32.7885757185876], [-79.9525928856343, 32.7885664150985], [-79.9526189749836, 32.7885580610976], [-79.9526435766856, 32.7885501840522], [-79.9526555977995, 32.7885463351201], [-79.9526748620256, 32.7885401664454], [-79.952707491283, 32.7885290141029], [-79.9528484387841, 32.7884806214435], [-79.953006878621, 32.7884299235233], [-79.9531040655054, 32.7883987995683], [-79.9532020668018, 32.7883675986342], [-79.9533017073701, 32.7883353781444], [-79.9534021603022, 32.7883032510995], [-79.9535026141658, 32.7882710401104], [-79.9536030680066, 32.7882389138117], [-79.953703520706, 32.7882067874214], [-79.9538072406068, 32.7881735724167], [-79.9538317405764, 32.7881657916628], [-79.9538954426921, 32.7881453768226], [-79.9539591458046, 32.7881248762839], [-79.9540898171554, 32.7880829578982], [-79.9541543336389, 32.7880624651139], [-79.9542939890678, 32.7880177013667], [-79.9543209416819, 32.7880089133876], [-79.954521846975, 32.7879445736822], [-79.9544925488692, 32.7878774919917], [-79.9544648458562, 32.787813087042], [-79.9544363293707, 32.7877486787415], [-79.9544078139859, 32.7876841820641], [-79.9543682166869, 32.7875939912027], [-79.9543286194806, 32.7875037994277], [-79.9542890856956, 32.7874136677031], [-79.9541585820566, 32.7874554921285], [-79.9539520858872, 32.7875218278835], [-79.9538573519791, 32.7875520310562], [-79.9539183990555, 32.7876912163665], [-79.9537875936871, 32.7877331343188], [-79.9537289673365, 32.7877611327428], [-79.9536782241349, 32.7877771383271], [-79.9536660163082, 32.7877809893686], [-79.9536943641806, 32.7878468591868], [-79.953557299116, 32.7878865237896], [-79.9534566218868, 32.7879187031472], [-79.9534297328314, 32.7879272606104], [-79.9533617263606, 32.7879488892289], [-79.9533118631183, 32.7879648625103], [-79.9533102104385, 32.7879653921775], [-79.9533100496683, 32.7879654440103], [-79.9532612105657, 32.787981038244], [-79.9531607568958, 32.7880131642612], [-79.953060303192, 32.7880453758705], [-79.9530885141938, 32.7881091848732], [-79.9530888187669, 32.7881098728736], [-79.9530533151058, 32.7881212424102], [-79.9530100410968, 32.7881350967309], [-79.9529916301286, 32.7881409913869], [-79.952991436134, 32.788141053757], [-79.952893630014, 32.7881721975712], [-79.9527578215281, 32.7882158870084], [-79.9527360050884, 32.788222905021], [-79.952586489326, 32.7882810487782], [-79.9525658619182, 32.7882890716634], [-79.9526142518425, 32.7884005441352], [-79.9525940702822, 32.7884066436221], [-79.9525621916951, 32.7884162773585], [-79.9525315860945, 32.7884255269817], [-79.9525038522453, 32.7884339083683], [-79.9524336290141, 32.7882678764097], [-79.9523835071777, 32.7882849058557], [-79.9523228300863, 32.7883055207726], [-79.9522781591639, 32.7883225941474], [-79.9522321131702, 32.7883401932235], [-79.9522773427478, 32.7884432760565]]], "type": "Polygon"}, "id": "162", "properties": {"OBJECTID": 817, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 13210.953125, "Shape__Length": 784.458239668106, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9433282559795, 32.7879139254917, -79.942380171499, 32.7886737861695], "geometry": {"coordinates": [[[-79.942899140471, 32.7885972518259], [-79.9429624050417, 32.7886737861695], [-79.9433282559795, 32.7885680651672], [-79.9431942652171, 32.7884085040977], [-79.9431191710053, 32.7883217337645], [-79.9430502365805, 32.7882420815768], [-79.9429651352738, 32.7881489785854], [-79.9428703687035, 32.7880342688214], [-79.9427662410502, 32.7879139254917], [-79.942639074116, 32.7879459428276], [-79.9425091149517, 32.7879798279483], [-79.942380171499, 32.7880128812018], [-79.942478078547, 32.7881479422571], [-79.9425200694418, 32.7882058648445], [-79.9425407977408, 32.7882005184589], [-79.9425702106838, 32.7882354275017], [-79.9425930590429, 32.7882625429564], [-79.9426446994874, 32.7883238252662], [-79.9426719464229, 32.7883561615673], [-79.9427233448705, 32.7884171585759], [-79.9427393810489, 32.7884362113459], [-79.9428086056101, 32.7885183435603], [-79.942899140471, 32.7885972518259]]], "type": "Polygon"}, "id": "163", "properties": {"OBJECTID": 819, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4612.982421875, "Shape__Length": 305.630109689242, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9422272014713, 32.7884244398496, -79.9417057901683, 32.7887104268913], "geometry": {"coordinates": [[[-79.9417057901683, 32.7885363756466], [-79.9417796830763, 32.7886285213286], [-79.9418453692526, 32.7887104268913], [-79.9422272014713, 32.7885699941533], [-79.942199113628, 32.788503093953], [-79.9421872522107, 32.7884748712707], [-79.9421660915173, 32.7884244398496], [-79.9419034950864, 32.7884882979947], [-79.9417057901683, 32.7885363756466]]], "type": "Polygon"}, "id": "164", "properties": {"OBJECTID": 820, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1178.49609375, "Shape__Length": 147.971222263459, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9434068884348, 32.7885770420125, -79.943154188917, 32.7887168693414], "geometry": {"coordinates": [[[-79.9433357715223, 32.7885770420125], [-79.943154188917, 32.7886297117985], [-79.9431862025943, 32.7887168693414], [-79.9434068884348, 32.7886591045529], [-79.9433357715223, 32.7885770420125]]], "type": "Polygon"}, "id": "165", "properties": {"OBJECTID": 821, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 292.828125, "Shape__Length": 72.6362650480517, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9414219741678, 32.7882850727782, -79.9408235943073, 32.7887233470728], "geometry": {"coordinates": [[[-79.9408235943073, 32.7884106560869], [-79.9410369917795, 32.7887233470728], [-79.9414219741678, 32.7886234825077], [-79.9413557252739, 32.7885409153091], [-79.9412710358697, 32.7884353657508], [-79.9413933827546, 32.7883918791586], [-79.9413076869389, 32.7882850727782], [-79.941177537094, 32.7883188367041], [-79.9408235943073, 32.7884106560869]]], "type": "Polygon"}, "id": "166", "properties": {"OBJECTID": 822, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2263.267578125, "Shape__Length": 210.875644742005, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.942899140471, 32.7880128812018, -79.9420442732281, 32.7888286717983], "geometry": {"coordinates": [[[-79.9420442732281, 32.7887074736952], [-79.9421041900191, 32.7888286717983], [-79.9422072720208, 32.7887986643844], [-79.9423027702476, 32.7887708639476], [-79.9423983069877, 32.7887430520461], [-79.9424826866928, 32.78871848764], [-79.9425790097555, 32.7886904470161], [-79.9427053589573, 32.7886536645805], [-79.942899140471, 32.7885972518259], [-79.9428086056101, 32.7885183435603], [-79.9427393810489, 32.7884362113459], [-79.9427233448705, 32.7884171585759], [-79.9426719464229, 32.7883561615673], [-79.9426446994874, 32.7883238252662], [-79.9425930579754, 32.7882625429471], [-79.9425702106838, 32.7882354275017], [-79.9425407977408, 32.7882005184589], [-79.9425200694418, 32.7882058648445], [-79.942478078547, 32.7881479422571], [-79.942380171499, 32.7880128812018], [-79.9422337038623, 32.7880503875845], [-79.9423368405496, 32.7882151102411], [-79.9423999840939, 32.7883159347678], [-79.9424590162733, 32.7884102323132], [-79.9424696791838, 32.7884272293843], [-79.9425040773699, 32.7884110880526], [-79.9425472966719, 32.7884804312695], [-79.942567155767, 32.7885122943073], [-79.9425011531588, 32.7885369301338], [-79.9424064853703, 32.7885722646184], [-79.9423295901478, 32.7886009690669], [-79.9422355099179, 32.7886360875503], [-79.9421439081976, 32.7886702813669], [-79.9420442732281, 32.7887074736952]]], "type": "Polygon"}, "id": "167", "properties": {"OBJECTID": 827, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3285.453125, "Shape__Length": 366.097818477176, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9514832302219, 32.7883729486605, -79.9510945885691, 32.7889320207134], "geometry": {"coordinates": [[[-79.9514319740664, 32.7883729486605], [-79.9510945885691, 32.7885330325882], [-79.9512807214921, 32.7889320207134], [-79.9514783635772, 32.7888660391976], [-79.9514814321285, 32.7887772356901], [-79.9514832302219, 32.7886950037862], [-79.95148247683, 32.7886649283613], [-79.9514808768331, 32.7886340484593], [-79.9514778819279, 32.7885983245733], [-79.9514694725395, 32.7885332978696], [-79.9514572816885, 32.7884686995952], [-79.9514497771026, 32.788436610232], [-79.9514319740664, 32.7883729486605]]], "type": "Polygon"}, "id": "168", "properties": {"OBJECTID": 829, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2066.333984375, "Shape__Length": 189.3358940283, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9628276762655, 32.7861972528552, -79.9582057774788, 32.789426660214], "geometry": {"coordinates": [[[-79.9582057774788, 32.786679992681], [-79.9586836728942, 32.7870602178117], [-79.9617144672975, 32.789426660214], [-79.9628276762655, 32.7889951785806], [-79.9627472231288, 32.7889191600592], [-79.9626595916681, 32.7888310573766], [-79.9625799522663, 32.7887550492508], [-79.9625019573565, 32.7886775913417], [-79.9624468481151, 32.7885911395834], [-79.962439918834, 32.7885580953544], [-79.9624362546704, 32.7885241363989], [-79.9624227655404, 32.7884954149403], [-79.962399393153, 32.7884768355539], [-79.9623702794859, 32.7884621575023], [-79.9623386804731, 32.7884512379494], [-79.9622874845011, 32.7884463369488], [-79.9622321037516, 32.7884512764107], [-79.962177590549, 32.7884516743579], [-79.9621126726715, 32.7884375501699], [-79.9620494706186, 32.788416057192], [-79.9619862860107, 32.7883930997515], [-79.9618947523106, 32.7883595955867], [-79.9618040699397, 32.7883229214171], [-79.9617166916253, 32.7882820645581], [-79.96166410894, 32.7882569639815], [-79.961613984066, 32.7882304250754], [-79.9615679858747, 32.7881989376416], [-79.9615454220687, 32.7881807085519], [-79.9615236892221, 32.7881611968892], [-79.96151012374, 32.7881388335089], [-79.9615085908089, 32.7881309168272], [-79.961507875418, 32.78812266529], [-79.9615063455717, 32.7881145790898], [-79.961473597044, 32.7880634449092], [-79.9614195940103, 32.7880209826944], [-79.9613639497708, 32.7879797095689], [-79.9612840843906, 32.7879228518146], [-79.9612009345482, 32.7878685444628], [-79.9611325448551, 32.787804482799], [-79.9611277365737, 32.7877983455753], [-79.9611237417963, 32.7877922125537], [-79.96111893357, 32.787786070821], [-79.9610544957827, 32.7877316643329], [-79.9609752756454, 32.7876890725496], [-79.9608977090169, 32.7876440895677], [-79.9608517522588, 32.787609168933], [-79.9608066223177, 32.78757313703], [-79.9607614934444, 32.7875370185432], [-79.9606809053518, 32.787472597788], [-79.9606011349685, 32.787407837622], [-79.9605205409929, 32.7873439307552], [-79.960398772314, 32.7872533873222], [-79.9602753565231, 32.7871646352401], [-79.960152769797, 32.7870746013584], [-79.9600334565856, 32.7869828762834], [-79.959915785907, 32.7868899656157], [-79.9597997659663, 32.7867950911472], [-79.9596982022961, 32.7867159718754], [-79.9595974686381, 32.7866354860841], [-79.9595163953681, 32.7865436573101], [-79.959507614203, 32.7865295798587], [-79.9594996485311, 32.7865153388957], [-79.9594908673608, 32.7865012623449], [-79.9594596113397, 32.7864615674465], [-79.9594250790203, 32.7864238214936], [-79.9593913663157, 32.786385568457], [-79.9593505854334, 32.7863260378494], [-79.9593106283298, 32.7862656529843], [-79.9592624568649, 32.78621189705], [-79.9592374117607, 32.7861972528552], [-79.9586909176645, 32.7864528809134], [-79.9582057774788, 32.786679992681]]], "type": "Polygon"}, "id": "169", "properties": {"OBJECTID": 852, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 63068.1484375, "Shape__Length": 1362.84430515373, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9402132588437, 32.7886544884219, -79.9389465070554, 32.7893077250292], "geometry": {"coordinates": [[[-79.9389465070554, 32.7888931345288], [-79.9389993557939, 32.7890376250274], [-79.9390162963122, 32.7890334286938], [-79.9390632802027, 32.7891592336744], [-79.9391971034094, 32.7891197095316], [-79.9392910263606, 32.7890919690201], [-79.939384434195, 32.7890698884016], [-79.9394747064674, 32.7892035997025], [-79.9395767477854, 32.7891710440982], [-79.9396315396776, 32.7893077250292], [-79.9402132588437, 32.7891349016698], [-79.9398773394223, 32.7886544884219], [-79.9392168353646, 32.788823250621], [-79.9391208695634, 32.7888480586259], [-79.9390249197538, 32.7888728639892], [-79.9389465070554, 32.7888931345288]]], "type": "Polygon"}, "id": "170", "properties": {"OBJECTID": 854, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6765.466796875, "Shape__Length": 379.528855306601, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.954829349592, 32.7880476887788, -79.9520902610849, 32.789439404235], "geometry": {"coordinates": [[[-79.9545674715534, 32.7880476887788], [-79.953222831561, 32.7884784647435], [-79.9526300117123, 32.7886683786898], [-79.9520902610849, 32.7888389815382], [-79.9523633438253, 32.789439404235], [-79.9529811153953, 32.7892403476128], [-79.9530782175701, 32.7892008728574], [-79.9531793378479, 32.7891703452353], [-79.9532819768901, 32.7891393218891], [-79.9534857213877, 32.7890777361878], [-79.954829349592, 32.7886447363959], [-79.9545674715534, 32.7880476887788]]], "type": "Polygon"}, "id": "171", "properties": {"OBJECTID": 856, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 24877.263671875, "Shape__Length": 758.425555320476, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9512806338608, 32.7885930033, -79.9505953246817, 32.7895560107667], "geometry": {"coordinates": [[[-79.9512796906831, 32.7893069144549], [-79.9512048554303, 32.7891459664537], [-79.9511604576293, 32.7890505063329], [-79.9509473895263, 32.7885930033], [-79.9507818065673, 32.7886704362276], [-79.9508172369301, 32.7887393823054], [-79.9508341225281, 32.7887310850317], [-79.9509188927016, 32.788919643345], [-79.9508206055051, 32.7889639391611], [-79.9507665626121, 32.7889883284699], [-79.9507127472691, 32.7890126150939], [-79.9505953246817, 32.789065467361], [-79.950690536658, 32.7892697351789], [-79.9507350104825, 32.7893651438215], [-79.9508239706378, 32.7895560107667], [-79.9512505662463, 32.789359202088], [-79.9512581838891, 32.7893549548116], [-79.9512627843903, 32.7893515871147], [-79.9512669464342, 32.7893478341832], [-79.9512706225712, 32.7893437352912], [-79.9512747017991, 32.7893378109335], [-79.9512770999971, 32.7893330842324], [-79.9512791452753, 32.7893273399422], [-79.9512800916522, 32.7893231283698], [-79.95128060198, 32.7893188643607], [-79.9512806338608, 32.7893137223727], [-79.951280302307, 32.789310304283], [-79.9512796906831, 32.7893069144549]]], "type": "Polygon"}, "id": "172", "properties": {"OBJECTID": 861, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4816.01953125, "Shape__Length": 334.385588277632, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9523469013142, 32.7888960659688, -79.9517584355784, 32.7898159137202], "geometry": {"coordinates": [[[-79.9517807573038, 32.7890767692563], [-79.9517584355784, 32.7892012359024], [-79.9518040701524, 32.7893041916246], [-79.9518517807002, 32.7894064995607], [-79.9518995134864, 32.7895088320183], [-79.9519408922203, 32.7896033731886], [-79.9519865920548, 32.7897169358795], [-79.9519732761862, 32.7897205626279], [-79.9520097180294, 32.7898159137202], [-79.9523469013142, 32.7897194751697], [-79.9521666237471, 32.7893068489881], [-79.9520745435891, 32.7891011959977], [-79.9519912396635, 32.7889171899972], [-79.9519912193516, 32.7889171032471], [-79.9519906850598, 32.7889165187908], [-79.9519877276851, 32.7889132225045], [-79.9519830411439, 32.7889089987497], [-79.9519796157587, 32.7889059112872], [-79.951976182991, 32.7889043280214], [-79.9519703027188, 32.7889013557072], [-79.9519640369848, 32.7888990086695], [-79.9519593780076, 32.7888977359525], [-79.9519555671237, 32.7888969665092], [-79.9519517022797, 32.7888964229641], [-79.9519478026589, 32.7888961081869], [-79.9519419267123, 32.7888960659688], [-79.9519389949355, 32.7888962401599], [-79.9519328224182, 32.7888978674023], [-79.9519267078327, 32.7888996493542], [-79.9519176611844, 32.7889026074321], [-79.9519087791715, 32.7889059033041], [-79.9518983549866, 32.7889103042391], [-79.9518915809247, 32.788913480187], [-79.9518854362939, 32.7889166083185], [-79.9518779052507, 32.7889207625842], [-79.9518700219248, 32.7889255351955], [-79.9518638758024, 32.7889295876936], [-79.9518563513504, 32.788934971215], [-79.9518517271933, 32.7889385344292], [-79.9518445599457, 32.7889444900676], [-79.9518390455128, 32.7889494624364], [-79.9518329813891, 32.7889553995679], [-79.9518276442106, 32.7889610813949], [-79.9518229067106, 32.7889665257657], [-79.9518183326094, 32.7889722330683], [-79.9518130355424, 32.7889794645901], [-79.9518077598186, 32.7889874971237], [-79.9518008192184, 32.7889998288682], [-79.951797182264, 32.7890074254259], [-79.9517929616056, 32.7890177522468], [-79.9517894763896, 32.7890282720483], [-79.9517874937035, 32.789039298928], [-79.9517845453826, 32.7890556987815], [-79.9517807573038, 32.7890767692563]]], "type": "Polygon"}, "id": "173", "properties": {"OBJECTID": 872, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4119.916015625, "Shape__Length": 295.914462418329, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9609667648107, 32.7858951902837, -79.9544461343434, 32.7902854803526], "geometry": {"coordinates": [[[-79.9583114743915, 32.7893550060642], [-79.958669396481, 32.7896319011456], [-79.9595134154363, 32.7902854803526], [-79.9606936715301, 32.7898278739548], [-79.9606993956455, 32.7898254290081], [-79.9607051207375, 32.7898229020026], [-79.9607108458722, 32.7898203713898], [-79.9607141151414, 32.7898191131454], [-79.9607165719728, 32.78981775962], [-79.9607198423261, 32.7898164102994], [-79.9607222991574, 32.7898150567738], [-79.9607255694783, 32.7898137101583], [-79.9607280273293, 32.789812270967], [-79.9607304841496, 32.7898109183431], [-79.9607337554902, 32.7898094860618], [-79.9607362133301, 32.7898080477722], [-79.9607386711808, 32.7898066085807], [-79.9607419425425, 32.7898051744957], [-79.9607444014022, 32.7898036505404], [-79.9607468592525, 32.7898022113487], [-79.9607501316339, 32.789800691598], [-79.9607525904932, 32.7897991676424], [-79.9607550493847, 32.7897976409817], [-79.9607575082439, 32.789796117026], [-79.960760781634, 32.7897945125112], [-79.9607632415451, 32.7897929001847], [-79.9607657004361, 32.7897913735236], [-79.9607681603042, 32.789789764804], [-79.9607706212241, 32.7897880677135], [-79.9607730811348, 32.7897864553868], [-79.9607763545243, 32.7897848508715], [-79.9607788154546, 32.7897831528792], [-79.9607812763635, 32.7897814566902], [-79.9607837372829, 32.7897797595995], [-79.960786198213, 32.789778061607], [-79.9607886591216, 32.7897763654178], [-79.9607911210606, 32.7897745826614], [-79.9607935829995, 32.7897727999049], [-79.9607960439078, 32.7897711037157], [-79.9607985058465, 32.7897693209591], [-79.9608009678173, 32.7897675354973], [-79.9608034307542, 32.7897656688785], [-79.9608058926926, 32.7897638861218], [-79.9608083556722, 32.7897620158959], [-79.9608108175998, 32.7897602340409], [-79.960814930037, 32.7897564893847], [-79.9608173930162, 32.7897546191587], [-79.9608198570152, 32.7897526632671], [-79.9608223199619, 32.7897507957463], [-79.9608264344271, 32.7897468806604], [-79.9608288984149, 32.7897449256703], [-79.9608313624134, 32.7897429697785], [-79.96083547691, 32.7897390519871], [-79.9608379418849, 32.7897370140366], [-79.9608404058722, 32.7897350590463], [-79.9608420584684, 32.7897330105884], [-79.9608445224077, 32.7897309699235], [-79.9608461739146, 32.78972892326], [-79.9608486389213, 32.789726882604], [-79.9608511060474, 32.7897247535863], [-79.9608527564972, 32.7897227060119], [-79.9608552225233, 32.7897205796902], [-79.9608568740298, 32.7897185330266], [-79.9608593400557, 32.7897164067049], [-79.9608609936601, 32.789714273483], [-79.9608626451508, 32.7897121384394], [-79.9608651121854, 32.7897099273537], [-79.960866764722, 32.7897077941227], [-79.9608692318042, 32.7897056687115], [-79.9608708843142, 32.7897034480023], [-79.9608725378596, 32.7897012300074], [-79.9608741914371, 32.7896990093072], [-79.960876658471, 32.7896967982213], [-79.9608783131159, 32.7896945775301], [-79.9608799655933, 32.789692359526], [-79.9608816191705, 32.7896901388257], [-79.9608840872452, 32.7896878402706], [-79.9608857407899, 32.7896856222755], [-79.9608873964541, 32.7896833159187], [-79.9608890510399, 32.7896810104545], [-79.9608907045366, 32.7896787067847], [-79.9608923591222, 32.7896764013205], [-79.9608940137185, 32.7896740949545], [-79.9608956683146, 32.7896717885885], [-79.9608973239675, 32.7896694831333], [-79.960898978505, 32.7896670919943], [-79.9609006330687, 32.7896647883334], [-79.9609022886628, 32.7896623981052], [-79.9609039442675, 32.7896600069753], [-79.9609056009505, 32.7896576149527], [-79.960907256555, 32.7896552238227], [-79.9609089110919, 32.7896528326837], [-79.9609105666963, 32.7896504415536], [-79.9609114088016, 32.7896480444165], [-79.9609130644165, 32.7896456523846], [-79.9609147221294, 32.7896431737946], [-79.9609163777012, 32.7896407853697], [-79.9609172208582, 32.7896382998618], [-79.9609188764142, 32.789635823057], [-79.9609205330377, 32.7896333462613], [-79.9609213751533, 32.7896309482224], [-79.9609230318088, 32.7896284687214], [-79.9609246904979, 32.7896259080726], [-79.960925533633, 32.7896234243681], [-79.9609271892207, 32.7896209448581], [-79.960928032345, 32.7896184620552], [-79.9609296899769, 32.7896159004956], [-79.9609305331439, 32.7896134140858], [-79.9609321907649, 32.7896108534279], [-79.9609330349672, 32.7896083697324], [-79.960934692631, 32.7896058054675], [-79.9609355367745, 32.789603236999], [-79.9609363798827, 32.7896006658163], [-79.9609380364943, 32.7895981899222], [-79.9609388806378, 32.7895956214537], [-79.960939725833, 32.7895929646145], [-79.9609405700086, 32.7895903934409], [-79.9609422287071, 32.7895878318901], [-79.9609430728825, 32.7895852607164], [-79.9609439170149, 32.7895826931498], [-79.9609447622099, 32.7895800363105], [-79.9609456052853, 32.789577467833], [-79.9609464504803, 32.7895748109938], [-79.960948108143, 32.7895722467287], [-79.960948953327, 32.7895695907911], [-79.9609497974699, 32.7895670223226], [-79.9609506426645, 32.7895643654834], [-79.9609514888838, 32.7895617122601], [-79.9609523340783, 32.7895590554209], [-79.9609523657746, 32.7895563925747], [-79.9609532109692, 32.7895537357355], [-79.9609540561206, 32.7895510825032], [-79.960954901315, 32.7895484256639], [-79.9609557454418, 32.7895457688155], [-79.9609565906253, 32.789543112878], [-79.9609566223322, 32.7895404491301], [-79.9609574674836, 32.7895377958978], [-79.9609583126777, 32.7895351390584], [-79.9609591578611, 32.7895324831209], [-79.9609591905769, 32.7895297346092], [-79.9609600357279, 32.7895270813769], [-79.9609608819895, 32.7895244245466], [-79.9609609147052, 32.7895216760349], [-79.9609617598883, 32.7895190200974], [-79.9609617926148, 32.789516270684], [-79.9609626377979, 32.7895136147464], [-79.9609626705136, 32.7895108662347], [-79.9609635156644, 32.7895082130024], [-79.96096354838, 32.7895054644908], [-79.9609635800867, 32.7895028007429], [-79.9609644262893, 32.7895000591398], [-79.960964457996, 32.789497395392], [-79.9609653031202, 32.7894946546814], [-79.9609653358358, 32.7894919061698], [-79.9609653675424, 32.789489242422], [-79.960965400258, 32.7894864939104], [-79.9609662464604, 32.7894837523072], [-79.9609662781562, 32.7894810894611], [-79.9609663108396, 32.7894783436547], [-79.9609663435981, 32.7894755915361], [-79.9609663762707, 32.7894728466314], [-79.9609664079773, 32.7894701828836], [-79.9609664406929, 32.789467434372], [-79.9609664734084, 32.7894646858604], [-79.960966506124, 32.7894619373488], [-79.9609665378198, 32.7894592745027], [-79.9609665705461, 32.7894565250893], [-79.9609666032617, 32.7894537765777], [-79.9609666349575, 32.7894511137316], [-79.9609666676731, 32.78944836522], [-79.9609667003886, 32.7894456167084], [-79.9609667331041, 32.7894428681968], [-79.9609667648107, 32.789440204449], [-79.960965983997, 32.7894374526359], [-79.9609660167555, 32.7894347005173], [-79.9609660484192, 32.7894320403764], [-79.9609660811347, 32.7894292918648], [-79.9609653014315, 32.7894265364538], [-79.9609653331274, 32.7894238736077], [-79.9609645523676, 32.7894211172859], [-79.9609645840635, 32.7894184544398], [-79.9609646167791, 32.7894157059282], [-79.9609638349997, 32.789413035272], [-79.9609638676723, 32.7894102903673], [-79.9609630858929, 32.789407619711], [-79.9609631186085, 32.7894048711994], [-79.9609623368293, 32.7894022005431], [-79.9609623695449, 32.7893994520315], [-79.9609615866873, 32.7893967822679], [-79.9609608049082, 32.7893941116116], [-79.9609608375809, 32.789391366707], [-79.9609600558018, 32.7893886960507], [-79.960959274012, 32.7893860262961], [-79.9609584922329, 32.7893833556398], [-79.9609585239397, 32.789380691892], [-79.9609577431375, 32.7893779391771], [-79.9609569624155, 32.7893752694316], [-79.9609561806366, 32.7893725987753], [-79.9609553988471, 32.7893699290207], [-79.9609546160164, 32.7893673467352], [-79.9609546477233, 32.7893646829874], [-79.9609538659339, 32.7893620132328], [-79.9609530830877, 32.7893593425674], [-79.9609523012661, 32.789356675518], [-79.9609515184679, 32.7893540905272], [-79.9609507366572, 32.7893514225762], [-79.9609491403735, 32.7893488306768], [-79.9609483585843, 32.7893461609221], [-79.9609475768324, 32.7893435777439], [-79.9609467950434, 32.7893409079892], [-79.9609460122455, 32.7893383229984], [-79.9609452294154, 32.7893357407129], [-79.9609436330843, 32.7893330631388], [-79.9609428502436, 32.7893304817549], [-79.9609420674459, 32.7893278967641], [-79.9609412846267, 32.7893253135767], [-79.960939688333, 32.789322722579], [-79.9609389055511, 32.789320225968], [-79.9609381227644, 32.7893176400753], [-79.9609365264495, 32.7893150508811], [-79.9609357425845, 32.7893124658811], [-79.9609341452501, 32.7893099623523], [-79.9609333624206, 32.7893073800666], [-79.9609317651293, 32.7893048729309], [-79.9609309812802, 32.7893023763108], [-79.9609293860334, 32.7892997871254], [-79.9609286022274, 32.7892972868983], [-79.9609270038259, 32.7892947833604], [-79.9609262199878, 32.7892922858385], [-79.9609246226647, 32.7892897814078], [-79.960923024322, 32.7892873626427], [-79.9609222404734, 32.7892848660226], [-79.9609206442504, 32.7892823588957], [-79.9609190459079, 32.7892799401305], [-79.960917447507, 32.7892774365925], [-79.9609166626496, 32.7892750247361], [-79.9609150643075, 32.7892726059709], [-79.9609134669851, 32.7892701015401], [-79.9609118697107, 32.7892676827839], [-79.960910271358, 32.7892652649203], [-79.9609086709397, 32.7892629309098], [-79.9609070725979, 32.7892605121445], [-79.9609054742563, 32.7892580933792], [-79.9609038749057, 32.7892557593776], [-79.9609022776318, 32.7892533406213], [-79.9609006772032, 32.7892510075124], [-79.9608990778207, 32.789248676216], [-79.9608974794687, 32.7892462583523], [-79.9608958801186, 32.7892439243507], [-79.9608942818254, 32.7892415912599], [-79.9608926814235, 32.7892393456289], [-79.9608910810061, 32.7892370116181], [-79.9608894816455, 32.7892346785182], [-79.9608878812439, 32.7892324328872], [-79.9608854673901, 32.789230177642], [-79.960883869076, 32.7892278463545], [-79.9608822676392, 32.7892255980092], [-79.960880667238, 32.7892233523781], [-79.9608782533846, 32.7892210971327], [-79.9608766519637, 32.7892189371672], [-79.9608750526625, 32.7892166888399], [-79.9608726367007, 32.7892145210544], [-79.9608710363321, 32.789212272718], [-79.960868621438, 32.7892101049414], [-79.9608670210851, 32.7892079449848], [-79.9608654185972, 32.78920578501], [-79.9608630037036, 32.7892036172334], [-79.9608614023156, 32.7892014545624], [-79.960858986413, 32.7891993715495], [-79.9608573860606, 32.7891972115928], [-79.96085496908, 32.7891951294725], [-79.9608525531671, 32.7891930473612], [-79.9608509507383, 32.7891909721591], [-79.9608485358932, 32.7891888900568], [-79.960846932397, 32.7891868148457], [-79.9608445164845, 32.7891847327342], [-79.9608420995631, 32.7891827353865], [-79.9608404971347, 32.7891806601843], [-79.9608380801705, 32.7891786664436], [-79.9608356632494, 32.7891766690957], [-79.9608316428806, 32.7891726822111], [-79.960829224897, 32.7891707741357], [-79.9608268079764, 32.7891687767877], [-79.9608243900359, 32.7891668651053], [-79.960820367607, 32.7891630513548], [-79.9608179496347, 32.7891611423775], [-79.9595741803548, 32.7881908132601], [-79.9590752290528, 32.7878015646138], [-79.9586947737684, 32.7875045502147], [-79.958278123069, 32.787173038817], [-79.9577760515619, 32.78677353506], [-79.9569967608173, 32.7861535721082], [-79.9569749986659, 32.7861365502439], [-79.9567903607062, 32.7859973633681], [-79.9566549076826, 32.7858951902837], [-79.9562605476409, 32.7860821802332], [-79.9558490036206, 32.7862772695449], [-79.9558985266959, 32.7863538854375], [-79.9553184798889, 32.7866250997909], [-79.9549765052099, 32.7867848755197], [-79.9548734260447, 32.7868327003658], [-79.9545134486418, 32.7870010814459], [-79.9545109887371, 32.7870026900393], [-79.9545085298152, 32.7870042165742], [-79.954504422367, 32.7870075326898], [-79.9545019614037, 32.7870092296538], [-79.9544978519247, 32.7870127152967], [-79.9544937413761, 32.787016290212], [-79.95448962884, 32.7870200310475], [-79.9544871668699, 32.7870219011548], [-79.9544838646447, 32.7870258229688], [-79.9544814005807, 32.7870277787322], [-79.9544797489648, 32.787029826211], [-79.9544780984272, 32.787031872797], [-79.9544764457329, 32.7870339211683], [-79.9544747941167, 32.787035968647], [-79.9544731414529, 32.7870381035945], [-79.9544714888106, 32.7870402367386], [-79.9544689970525, 32.7870445938495], [-79.9544673422948, 32.7870468144533], [-79.9544648484102, 32.7870512599257], [-79.9544631936938, 32.7870535662041], [-79.9544615400358, 32.7870557841118], [-79.9544598575514, 32.7870604087685], [-79.9544582028239, 32.7870627159486], [-79.9544573605665, 32.7870651130407], [-79.9544556770773, 32.7870698215593], [-79.9544548348089, 32.787072219553], [-79.9544531790766, 32.7870746105951], [-79.9544523069555, 32.7870795010033], [-79.9544514636608, 32.7870819846626], [-79.9544506213921, 32.7870843826564], [-79.9544497791649, 32.7870868663247], [-79.9544497493448, 32.7870893560339], [-79.9544489049932, 32.7870918387823], [-79.9544480616659, 32.7870943251468], [-79.9544480318457, 32.7870968148561], [-79.9544471885508, 32.7870992985153], [-79.9544471587306, 32.7871017882245], [-79.9544471288672, 32.7871042815407], [-79.954447099047, 32.7871067712501], [-79.9544462546935, 32.78710934328], [-79.9544462248732, 32.7871118329892], [-79.954446195053, 32.7871143226985], [-79.9544461641636, 32.7871169016802], [-79.9544461343434, 32.7871193913895], [-79.9544469179874, 32.7871218880506], [-79.9544468881564, 32.7871243786616], [-79.9544468572778, 32.7871269567416], [-79.9544468274576, 32.7871294464509], [-79.9544476110909, 32.7871319440137], [-79.9544475812275, 32.78713443733], [-79.9544483648717, 32.7871369339911], [-79.9544483350515, 32.7871394237003], [-79.9544491197525, 32.7871419212723], [-79.9544499033446, 32.7871443331605], [-79.9547223177418, 32.787766258836], [-79.9548815124758, 32.7881278808529], [-79.9550509793811, 32.7885150176154], [-79.9553265730126, 32.7891439267673], [-79.955646527837, 32.7898733716945], [-79.956893462775, 32.7893516878418], [-79.957810876628, 32.7889672857516], [-79.9583114743915, 32.7893550060642]]], "type": "Polygon"}, "id": "174", "properties": {"OBJECTID": 874, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 213338.94921875, "Shape__Length": 2107.8463165385, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9422107680935, 32.7883918791586, -79.9400331246711, 32.789909667754], "geometry": {"coordinates": [[[-79.9408235943073, 32.7884106560869], [-79.940683180351, 32.7884470812305], [-79.9404815216255, 32.7884983837129], [-79.9403598405053, 32.7885292801299], [-79.9400331246711, 32.7886126609996], [-79.9401189041469, 32.7887487047181], [-79.9401689488064, 32.7888220606649], [-79.9402590392324, 32.7889541185393], [-79.9403489893517, 32.7890859713167], [-79.9404718073711, 32.7892660006465], [-79.9405833768554, 32.7894227164969], [-79.9407084886665, 32.7895984790245], [-79.9407656074184, 32.7896787201627], [-79.9408796101387, 32.7898388675488], [-79.9409300105745, 32.789909667754], [-79.9412638662535, 32.7897810821976], [-79.9417986033364, 32.7895751225268], [-79.9418585368414, 32.7895528046028], [-79.9419977799011, 32.7895009519937], [-79.9422107680935, 32.7894212776079], [-79.9421553225198, 32.7893500934255], [-79.9420873568679, 32.7892628375709], [-79.9420195371394, 32.7891722741057], [-79.9419494892998, 32.7890849713097], [-79.9418978751293, 32.7890206434301], [-79.9417010576769, 32.7887753454522], [-79.9415521211369, 32.7885897209981], [-79.9414573092403, 32.7884715538968], [-79.9413933827546, 32.7883918791586], [-79.9412710358697, 32.7884353657508], [-79.9413557252739, 32.7885409153091], [-79.9414219741678, 32.7886234825077], [-79.9410369917795, 32.7887233470728], [-79.9408235943073, 32.7884106560869]]], "type": "Polygon"}, "id": "175", "properties": {"OBJECTID": 884, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 26222.841796875, "Shape__Length": 748.528805615407, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.942392196079, 32.7895409975187, -79.9418254815233, 32.7899466889582], "geometry": {"coordinates": [[[-79.9418254815233, 32.7897158312095], [-79.9419894658224, 32.7899466889582], [-79.9420606526657, 32.7899132034174], [-79.9421179279075, 32.7898863838631], [-79.9421883022345, 32.7898528028439], [-79.9421819077746, 32.7898433847018], [-79.9422588222264, 32.7898071961658], [-79.942392196079, 32.789744443283], [-79.9423380528277, 32.7896470793356], [-79.9422791339057, 32.7895409975187], [-79.9421148363039, 32.789604431628], [-79.9420339170298, 32.789635428746], [-79.9419595336834, 32.7896641646151], [-79.9418998649251, 32.789687098127], [-79.9418254815233, 32.7897158312095]]], "type": "Polygon"}, "id": "176", "properties": {"OBJECTID": 885, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1754.416015625, "Shape__Length": 174.543845564484, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9339737088563, 32.7896681410766, -79.9334889301643, 32.7900106122472], "geometry": {"coordinates": [[[-79.9338263653967, 32.7896681974753], [-79.9338222916755, 32.7896687644025], [-79.9338190272348, 32.7896695079271], [-79.9338157607218, 32.789670595935], [-79.9338124899912, 32.7896719418311], [-79.9338092118819, 32.7896738044151], [-79.9338059265126, 32.7896764362021], [-79.9338034587606, 32.7896786494473], [-79.9334965044579, 32.789964340796], [-79.9334932064104, 32.7899679211961], [-79.9334915469312, 32.7899705671476], [-79.9334906998282, 32.789973311266], [-79.9334898517116, 32.7899761383445], [-79.9334890025703, 32.7899790492849], [-79.9334889668741, 32.7899819709234], [-79.9334889301643, 32.7899849755219], [-79.9334897079573, 32.7899879042515], [-79.9334904868191, 32.7899907455123], [-79.9334912667276, 32.7899935011078], [-79.933492861172, 32.7899961781291], [-79.9334952712213, 32.7899986891073], [-79.9334968698416, 32.790001024369], [-79.9335000902296, 32.7900038003359], [-79.9335033190019, 32.7900058900785], [-79.9335065551228, 32.7900073783602], [-79.9335097943837, 32.7900086096458], [-79.9335130367846, 32.7900095839354], [-79.9335162834271, 32.7900102110548], [-79.9335195342231, 32.7900104982181], [-79.9335227871343, 32.7900106122472], [-79.9335260431745, 32.7900104701819], [-79.933529303445, 32.7900099818483], [-79.9335325647622, 32.7900094078493], [-79.9339513943126, 32.7898895351935], [-79.9339546618996, 32.7898884471913], [-79.9339579368209, 32.78988675863], [-79.9339612149136, 32.7898848103673], [-79.9339644972019, 32.7898825185415], [-79.9339661514343, 32.7898803009102], [-79.9339686223043, 32.7898778324692], [-79.9339702807653, 32.7898752685696], [-79.933971126773, 32.7898726128185], [-79.9339727883613, 32.7898697928246], [-79.9339728240413, 32.789866871186], [-79.9339736731763, 32.7898639593406], [-79.9339737088563, 32.789861037702], [-79.9339729310151, 32.7898581116807], [-79.9339721521278, 32.7898552713248], [-79.9339713732516, 32.7898524300671], [-79.933969778806, 32.7898497521504], [-79.9339018680582, 32.789747968984], [-79.9338675175313, 32.7896961297207], [-79.933857128918, 32.7896807503652], [-79.933854715729, 32.789678408912], [-79.9338523025496, 32.7896762415133], [-79.933849080092, 32.7896736350829], [-79.9338458470952, 32.7896718041397], [-79.9338426099669, 32.7896704863052], [-79.9338393686103, 32.7896694272609], [-79.9338361219899, 32.7896687117701], [-79.9338328743548, 32.7896682541957], [-79.9338296214448, 32.7896681410766], [-79.9338263653967, 32.7896681974753]]], "type": "Polygon"}, "id": "177", "properties": {"OBJECTID": 889, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1122.13671875, "Shape__Length": 148.903328134485, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.940787842981, 32.7895278396453, -79.9399684578393, 32.7901633369756], "geometry": {"coordinates": [[[-79.9404920156486, 32.7895278396453], [-79.9399684578393, 32.789784328354], [-79.940226475163, 32.7901633369756], [-79.9404771008329, 32.7900698165264], [-79.9405776998587, 32.7900307904453], [-79.940787842981, 32.7899514825653], [-79.9406639590954, 32.7897740740779], [-79.9406077383675, 32.7896935629015], [-79.9405498732768, 32.7896106962948], [-79.9404920156486, 32.7895278396453]]], "type": "Polygon"}, "id": "178", "properties": {"OBJECTID": 894, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4167.7890625, "Shape__Length": 258.831982900393, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9419640300665, 32.7897273404073, -79.9410146268179, 32.7902319400948], "geometry": {"coordinates": [[[-79.9411186228578, 32.7901739229145], [-79.9412167117181, 32.790136029836], [-79.9413180690572, 32.7900969610113], [-79.9414104362409, 32.7900613386928], [-79.9415150608606, 32.7900211851107], [-79.941618871927, 32.789981021697], [-79.9417980720284, 32.7902319400948], [-79.941888891262, 32.7901896908666], [-79.941894619032, 32.7901869907051], [-79.9419518903729, 32.7901605120859], [-79.9418639013825, 32.7900364016848], [-79.941887606078, 32.7900271563578], [-79.9418764160836, 32.7900107399666], [-79.9418806563409, 32.7899964311398], [-79.9419640300665, 32.7899644218404], [-79.9417952398115, 32.7897273404073], [-79.9416759010123, 32.7897732081348], [-79.9416162310334, 32.7897962298793], [-79.9415148752485, 32.7898352105792], [-79.9414110633126, 32.7898754559624], [-79.941306438776, 32.7899156130619], [-79.9412140727715, 32.7899512353106], [-79.9411127155596, 32.7899902156687], [-79.9410146268179, 32.7900281086632], [-79.9411186228578, 32.7901739229145]]], "type": "Polygon"}, "id": "179", "properties": {"OBJECTID": 899, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3099.712890625, "Shape__Length": 310.975635566737, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9404920156486, 32.7888931345288, -79.9385575372293, 32.7904266673469], "geometry": {"coordinates": [[[-79.9389465070554, 32.7888931345288], [-79.9385575372293, 32.7889936881378], [-79.9386468001183, 32.789124866163], [-79.9387359699509, 32.7892559044327], [-79.9388898408514, 32.7894820116773], [-79.9389257219961, 32.7895347384611], [-79.9390170536924, 32.7896689354654], [-79.9390462186041, 32.7897117910964], [-79.9391030285435, 32.7897952724462], [-79.9392082897006, 32.7899499472285], [-79.9392715227801, 32.790042859674], [-79.9393769292848, 32.7901977475017], [-79.9394320552514, 32.7902787511858], [-79.9394734866566, 32.7903355399903], [-79.9395337812791, 32.7904266673469], [-79.9399846186448, 32.7902545953337], [-79.9401070486063, 32.7902083997933], [-79.940226475163, 32.7901633369756], [-79.9399684578393, 32.789784328354], [-79.9404920156486, 32.7895278396453], [-79.9403814156403, 32.789369452888], [-79.940297042349, 32.7892486237761], [-79.9402132588437, 32.7891349016698], [-79.9396315396776, 32.7893077250292], [-79.9395767477854, 32.7891710440982], [-79.9394747064674, 32.7892035997025], [-79.939384434195, 32.7890698884016], [-79.9392910263606, 32.7890919690201], [-79.9391971034094, 32.7891197095316], [-79.9390632802027, 32.7891592336744], [-79.9390162963122, 32.7890334286938], [-79.9389993557939, 32.7890376250274], [-79.9389465070554, 32.7888931345288]]], "type": "Polygon"}, "id": "180", "properties": {"OBJECTID": 906, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20641.90625, "Shape__Length": 731.877978018848, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9429558573965, 32.7897158312095, -79.9417952398115, 32.7908766693842], "geometry": {"coordinates": [[[-79.941888891262, 32.7901896908666], [-79.942063284458, 32.7904344672838], [-79.942053465261, 32.7904391079969], [-79.9420942643764, 32.7904963251169], [-79.9420999931874, 32.7904935401821], [-79.9421511325288, 32.7905702623078], [-79.9422373267482, 32.790699735532], [-79.9422454233137, 32.7907116096557], [-79.9423526157983, 32.7906609964182], [-79.9424453080816, 32.7907999245961], [-79.9425410460449, 32.7907546240986], [-79.9426223192388, 32.7908766693842], [-79.9427005120489, 32.7908450972824], [-79.942808476746, 32.7908015056975], [-79.9429558573965, 32.7907401015118], [-79.9424853346675, 32.7899136120232], [-79.9424391689806, 32.7898292863701], [-79.9423953730391, 32.7897508259798], [-79.942392196079, 32.789744443283], [-79.9422588222264, 32.7898071961658], [-79.9421819077746, 32.7898433847018], [-79.9421883022345, 32.7898528028439], [-79.9421179279075, 32.7898863838631], [-79.9420606526657, 32.7899132034174], [-79.9419894658224, 32.7899466889582], [-79.9418254815233, 32.7897158312095], [-79.9417952398115, 32.7897273404073], [-79.9419640300665, 32.7899644218404], [-79.9418806563409, 32.7899964311398], [-79.9418764160836, 32.7900107399666], [-79.941887606078, 32.7900271563578], [-79.9418639013825, 32.7900364016848], [-79.9419518903729, 32.7901605120859], [-79.941894619032, 32.7901869907051], [-79.941888891262, 32.7901896908666]]], "type": "Polygon"}, "id": "181", "properties": {"OBJECTID": 916, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9503.09375, "Shape__Length": 508.805133772072, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9430382669443, 32.789981021697, -79.9411186228578, 32.7913798222964], "geometry": {"coordinates": [[[-79.9411186228578, 32.7901739229145], [-79.9413178082254, 32.7904539621122], [-79.9414897911211, 32.7906961401587], [-79.9414945929326, 32.7907027109915], [-79.9415353907442, 32.7907600157684], [-79.9415889858742, 32.7908354697544], [-79.9416801917426, 32.7909627041875], [-79.9417817755752, 32.7911064345067], [-79.9418777766303, 32.7912408374724], [-79.9419265777312, 32.7913091217399], [-79.941976976797, 32.7913798222964], [-79.942167631515, 32.7912899877129], [-79.9422551904049, 32.7912483972102], [-79.9423435605884, 32.7912068127571], [-79.9423779285211, 32.7911906170747], [-79.9424319328121, 32.7911652291606], [-79.9425194894001, 32.7911237196167], [-79.9425988577825, 32.7910865248723], [-79.9426266822318, 32.791073106137], [-79.9427232338894, 32.7910278134278], [-79.9427985158709, 32.7909921298915], [-79.9428852492506, 32.7909514742295], [-79.9430382669443, 32.7908790080322], [-79.9429558573965, 32.7907401015118], [-79.942808476746, 32.7908015056975], [-79.9427005120489, 32.7908450972824], [-79.9426223192388, 32.7908766693842], [-79.9425411618839, 32.7907547567678], [-79.9424453080816, 32.7907999245961], [-79.9423525683408, 32.7906611240685], [-79.9422454233137, 32.7907116096557], [-79.942237433032, 32.7906995993718], [-79.9421511325288, 32.7905702623078], [-79.9420999931874, 32.7904935401821], [-79.9420942643764, 32.7904963251169], [-79.942053465261, 32.7904391079969], [-79.942063284458, 32.7904344672838], [-79.941888891262, 32.7901896908666], [-79.9417980720284, 32.7902319400948], [-79.941618871927, 32.789981021697], [-79.9415150608606, 32.7900211851107], [-79.9414104362409, 32.7900613386928], [-79.9413180690572, 32.7900969610113], [-79.9412167117181, 32.790136029836], [-79.9411186228578, 32.7901739229145]]], "type": "Polygon"}, "id": "182", "properties": {"OBJECTID": 928, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14897.6015625, "Shape__Length": 642.202576284027, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9397898326094, 32.7908580145398, -79.9390277149416, 32.7915807322222], "geometry": {"coordinates": [[[-79.9390277149416, 32.7914069648205], [-79.9391468876055, 32.7915807322222], [-79.9397898326094, 32.7911396646956], [-79.9395994401645, 32.7908580145398], [-79.9392660932775, 32.7910396045395], [-79.9393929927468, 32.7911898304233], [-79.9390277149416, 32.7914069648205]]], "type": "Polygon"}, "id": "183", "properties": {"OBJECTID": 938, "ORDNO": "2018-137", "ORDSTAT": null, "Shape__Area": 3144.046875, "Shape__Length": 280.255615233333, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9371517105158, 32.7905736190317, -79.9355792210179, 32.7918004517114], "geometry": {"coordinates": [[[-79.9355792210179, 32.7910868096547], [-79.9358068786225, 32.7914372225497], [-79.9357103545753, 32.7914823657844], [-79.9355843785671, 32.7915412825918], [-79.9357538141059, 32.7918004517114], [-79.9368457372002, 32.7913867977423], [-79.9371517105158, 32.7912643037739], [-79.9366998928494, 32.7905736190317], [-79.9355792210179, 32.7910868096547]]], "type": "Polygon"}, "id": "184", "properties": {"OBJECTID": 943, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15318.130859375, "Shape__Length": 537.865866264185, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9358068786225, 32.7910868096547, -79.9351300563418, 32.7918922574484], "geometry": {"coordinates": [[[-79.9355792210179, 32.7910868096547], [-79.9353560696361, 32.791188996805], [-79.9351300563418, 32.7912924924615], [-79.935350713243, 32.7916354294939], [-79.9355159647169, 32.7918922574484], [-79.9357538141059, 32.7918004517114], [-79.9355843785671, 32.7915412825918], [-79.9357103545753, 32.7914823657844], [-79.9358068786225, 32.7914372225497], [-79.9355792210179, 32.7910868096547]]], "type": "Polygon"}, "id": "185", "properties": {"OBJECTID": 946, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4131.37109375, "Shape__Length": 296.74450782033, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9418183956243, 32.7906372655724, -79.9399918986174, 32.7918674385455], "geometry": {"coordinates": [[[-79.9405709389139, 32.7918637013607], [-79.9408551278239, 32.7917380019027], [-79.9409384463939, 32.7918674385455], [-79.9410542379468, 32.7918128011072], [-79.9412260325719, 32.7917201434185], [-79.9413564258985, 32.7916587086616], [-79.941483493377, 32.7915988394399], [-79.9415877220027, 32.7915641961713], [-79.9418183956243, 32.7914564317026], [-79.9412577716833, 32.7906372655724], [-79.940468992737, 32.7910065399004], [-79.9403759449049, 32.7908699627127], [-79.9399918986174, 32.7910507882141], [-79.9400875648307, 32.791185102229], [-79.9401295222923, 32.7912440101716], [-79.9401832388553, 32.7913194126287], [-79.9402386350689, 32.791397184304], [-79.9402789225089, 32.7914537455823], [-79.9403623639583, 32.7915785085706], [-79.9404000835839, 32.7916313879199], [-79.9404583405725, 32.791713029698], [-79.9405205665487, 32.7917929824086], [-79.9405709389139, 32.7918637013607]]], "type": "Polygon"}, "id": "186", "properties": {"OBJECTID": 950, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 18761.81640625, "Shape__Length": 588.428780558585, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9349173425887, 32.7913867526472, -79.9339290469811, 32.7920389184483], "geometry": {"coordinates": [[[-79.9339290469811, 32.7917183989514], [-79.9341343715535, 32.7920389184483], [-79.9342507018974, 32.7919895849804], [-79.9342636196973, 32.7919836723314], [-79.9342878484282, 32.7920213420495], [-79.9344213643043, 32.7919582932761], [-79.934566239769, 32.791889872739], [-79.9345988754642, 32.7919405993399], [-79.9347295440941, 32.7918788944284], [-79.9347834977433, 32.7918534147314], [-79.9348037062955, 32.7918848212626], [-79.9349173425887, 32.7918311700693], [-79.9346313819237, 32.7913867526472], [-79.9345177512502, 32.7914404135381], [-79.9339290469811, 32.7917183989514]]], "type": "Polygon"}, "id": "187", "properties": {"OBJECTID": 953, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5156.033203125, "Shape__Length": 312.593263675366, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9270751126622, 32.7907511258232, -79.9252003485189, 32.7922275324052], "geometry": {"coordinates": [[[-79.9252003485189, 32.7915456966664], [-79.9254623630771, 32.7922275324052], [-79.9270751126622, 32.7915067324813], [-79.9270314861572, 32.7913545608109], [-79.9270169341212, 32.791278236985], [-79.9270024447324, 32.7911731063277], [-79.9269541990498, 32.7907511258232], [-79.9262801415504, 32.7910565147042], [-79.9252003485189, 32.7915456966664]]], "type": "Polygon"}, "id": "188", "properties": {"OBJECTID": 961, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 19836.1484375, "Shape__Length": 621.110392584109, "ZONE_BASE": "HI", "__folium_color": "#9467bd"}, "type": "Feature"}, {"bbox": [-79.9353082698224, 32.7912780872293, -79.9338381778252, 32.7923870967945], "geometry": {"coordinates": [[[-79.9339290469811, 32.7917183989514], [-79.9338381778252, 32.7917598257284], [-79.9340454434039, 32.7920770110675], [-79.9342341762319, 32.7923870967945], [-79.9344656841748, 32.79229772556], [-79.9347564287127, 32.7921854850252], [-79.9348929090893, 32.7921327974938], [-79.9350679454837, 32.7920652242095], [-79.9353082698224, 32.7919724461449], [-79.934861487582, 32.7912780872293], [-79.9346313819237, 32.7913867526472], [-79.9349173425887, 32.7918311700693], [-79.9348037062955, 32.7918848212626], [-79.9347834977433, 32.7918534147314], [-79.9347295440941, 32.7918788944284], [-79.9345988754642, 32.7919405993399], [-79.934566239769, 32.791889872739], [-79.9344213643043, 32.7919582932761], [-79.9342878484282, 32.7920213420495], [-79.9342636196973, 32.7919836723314], [-79.9342132556293, 32.7920054647983], [-79.9341343715535, 32.7920389184483], [-79.9339290469811, 32.7917183989514]]], "type": "Polygon"}, "id": "189", "properties": {"OBJECTID": 963, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7801.017578125, "Shape__Length": 593.96384333355, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9472063993483, 32.7892997691587, -79.9434062081712, 32.7916524298569], "geometry": {"coordinates": [[[-79.9439803908515, 32.7914991161705], [-79.9440783867004, 32.7916524298569], [-79.9442091010615, 32.7915932295975], [-79.9443249642362, 32.7915594825271], [-79.9444154636388, 32.7915186174832], [-79.9445058040809, 32.7914778231488], [-79.9445775986337, 32.7914454037406], [-79.9446668696525, 32.791405092466], [-79.944466253438, 32.7910808249597], [-79.9444294352717, 32.7910237629324], [-79.9444540572655, 32.7910130036247], [-79.9445286855546, 32.7911281877504], [-79.9446841789506, 32.7913704074698], [-79.9448490452883, 32.791310387336], [-79.9449606139383, 32.7912685690843], [-79.9450510181306, 32.7912251956534], [-79.9451065057259, 32.7911985730183], [-79.9452478657306, 32.7911301871704], [-79.9454060744113, 32.7910467243103], [-79.9456017585671, 32.7909434895186], [-79.9456754133596, 32.7909083213813], [-79.9457292376957, 32.7908826211421], [-79.9457948047124, 32.7908527482611], [-79.9459315731482, 32.7907890855668], [-79.9460797690557, 32.7907201038338], [-79.9462222513983, 32.7906537845326], [-79.9463892862195, 32.7905909970602], [-79.9465122953281, 32.7905324837583], [-79.9466208685358, 32.7904801228212], [-79.9467601439966, 32.7904136986364], [-79.9469735170992, 32.7903119342433], [-79.9472063993483, 32.7901992961906], [-79.9471561010259, 32.7900909155152], [-79.9471035352786, 32.7899776490044], [-79.9470035438638, 32.7897621914005], [-79.9469415545591, 32.7896286200648], [-79.9468938823621, 32.7895258992565], [-79.946840949605, 32.7894118701297], [-79.9467900137632, 32.7892997691587], [-79.9465874422569, 32.7893928802065], [-79.9464531437517, 32.78945460879], [-79.9463197039536, 32.7895159433068], [-79.9462133335599, 32.7895648346371], [-79.9461394319753, 32.789598801515], [-79.9460714202839, 32.7896300630773], [-79.9459412534887, 32.7896898913596], [-79.9458371952834, 32.7897377200852], [-79.9457551494616, 32.7897753727063], [-79.9456794033713, 32.7898102450922], [-79.9455432745301, 32.7898878030647], [-79.9454121658904, 32.7899488185085], [-79.9452555679214, 32.790021966516], [-79.9451235264677, 32.7900844219606], [-79.9450324571461, 32.7901268328471], [-79.9449811672632, 32.7901507184935], [-79.9448529337677, 32.7902111494], [-79.9446761836505, 32.7902953092469], [-79.9445749928062, 32.7903430570337], [-79.944489756804, 32.790383259646], [-79.9444006666796, 32.7904252903358], [-79.9446383682796, 32.790784107901], [-79.9447277479776, 32.7907425205295], [-79.9448129831643, 32.7907023168389], [-79.9449114273759, 32.790656491326], [-79.9449683287472, 32.7907156941896], [-79.94482887243, 32.7907784650654], [-79.944633068846, 32.7908442858546], [-79.9443716013737, 32.7904390306389], [-79.9442533204713, 32.7904948347063], [-79.9441253853604, 32.7905557580344], [-79.9439805780046, 32.7906235104002], [-79.9438385243285, 32.7906905297278], [-79.943729209264, 32.7907409482739], [-79.9434062081712, 32.7908882040041], [-79.9435107768754, 32.7910386340259], [-79.943560295433, 32.7911150448543], [-79.9436268230741, 32.7912177007375], [-79.9436861984486, 32.7913093194974], [-79.9437200852141, 32.7913811330209], [-79.9438521434068, 32.7913178937025], [-79.9438794900959, 32.7913567481592], [-79.943911613685, 32.7914175782854], [-79.9439242966475, 32.7914117753258], [-79.9439803908515, 32.7914991161705]]], "type": "Polygon"}, "id": "190", "properties": {"OBJECTID": 970, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 51945.833984375, "Shape__Length": 1408.95812222593, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9266740120709, 32.7879180065499, -79.9260795914715, 32.7883420871822], "geometry": {"coordinates": [[[-79.9266740120709, 32.7882771283084], [-79.9266300669704, 32.7879180065499], [-79.9260795914715, 32.7879841765711], [-79.9261336856595, 32.7883420871822], [-79.9266740120709, 32.7882771283084]]], "type": "Polygon"}, "id": "191", "properties": {"OBJECTID": 993, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2929.662109375, "Shape__Length": 218.241376014332, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9266300669704, 32.7872151129476, -79.9259903932632, 32.7879841765711], "geometry": {"coordinates": [[[-79.9266300669704, 32.7879180065499], [-79.9265427846435, 32.7872200497553], [-79.9264906563995, 32.7872151129476], [-79.9259903932632, 32.7873940432567], [-79.9260795914715, 32.7879841765711], [-79.9266300669704, 32.7879180065499]]], "type": "Polygon"}, "id": "192", "properties": {"OBJECTID": 994, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5478.166015625, "Shape__Length": 299.961852110022, "ZONE_BASE": "MU-2", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9265328643586, 32.7792041309543, -79.9235437846097, 32.7877445384529], "geometry": {"coordinates": [[[-79.9238230977317, 32.7876893905129], [-79.9248398835403, 32.7877445384529], [-79.9250909986452, 32.7876549956912], [-79.925834475152, 32.7873898832438], [-79.9265328643586, 32.787140841878], [-79.9263119696649, 32.7853337675574], [-79.9262883465039, 32.7852172594005], [-79.9262424492524, 32.7850389738449], [-79.9262024027977, 32.7849078145887], [-79.9261842945169, 32.7848297270589], [-79.9261125220792, 32.7846504613103], [-79.9258611200597, 32.7826354691177], [-79.9258446676097, 32.7824776214546], [-79.9258435775838, 32.7822642671845], [-79.9258586046228, 32.7820972726352], [-79.9258645188754, 32.7819741661999], [-79.9258631084035, 32.7818855060211], [-79.9258522201402, 32.7817528368904], [-79.9256964086147, 32.780462006266], [-79.9255435268691, 32.7792041309543], [-79.9235437846097, 32.7795506339012], [-79.9235632077809, 32.78049280974], [-79.9236066480088, 32.7837597598991], [-79.9236875344629, 32.7866409065027], [-79.9238230977317, 32.7876893905129]]], "type": "Polygon"}, "id": "193", "properties": {"OBJECTID": 995, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 290758.21875, "Shape__Length": 2682.43943530066, "ZONE_BASE": "LI", "__folium_color": "#8c564b"}, "type": "Feature"}, {"bbox": [-79.9269541990498, 32.7873898832438, -79.9236333964795, 32.791591777104], "geometry": {"coordinates": [[[-79.9238230977317, 32.7876893905129], [-79.9236333964795, 32.7881522687766], [-79.9240731380863, 32.7892270916261], [-79.9251588383889, 32.7891169453577], [-79.9253468117618, 32.7899529238688], [-79.9246318489614, 32.7902723006861], [-79.9243427985333, 32.7904014189932], [-79.9247987039784, 32.7911194540887], [-79.9250986341905, 32.791591777104], [-79.9252003485189, 32.7915456966664], [-79.9262801415504, 32.7910565147042], [-79.9269541990498, 32.7907511258232], [-79.9269289369747, 32.7904243319686], [-79.9268957083041, 32.7900706773758], [-79.926864503686, 32.7898139889047], [-79.9267633313582, 32.7889932451886], [-79.926732283246, 32.7887134701553], [-79.9266975454045, 32.7884356981976], [-79.9259807091045, 32.7885219170813], [-79.9259576266739, 32.7883691498106], [-79.9259047069137, 32.7879474336494], [-79.925834475152, 32.7873898832438], [-79.9250909986452, 32.7876549956912], [-79.9248398835403, 32.7877445384529], [-79.9238230977317, 32.7876893905129]]], "type": "Polygon"}, "id": "194", "properties": {"OBJECTID": 996, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 115473.810546875, "Shape__Length": 1762.67147682684, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9348199782639, 32.7833467899291, -79.9335802590626, 32.7845951960404], "geometry": {"coordinates": [[[-79.9335802590626, 32.7834782602075], [-79.9337151088647, 32.7836968140697], [-79.9337196212781, 32.7837061964162], [-79.9337894466776, 32.7838224897488], [-79.9337828844604, 32.7838249062935], [-79.933822713099, 32.7838866756252], [-79.9338569312795, 32.7839563304018], [-79.9338946298027, 32.7840190019212], [-79.9339001938008, 32.7840164116358], [-79.9342891526827, 32.7845949867714], [-79.9342892611603, 32.7845951960404], [-79.9343228083142, 32.784579680887], [-79.9344316247394, 32.7845290887933], [-79.93455434812, 32.7844721741018], [-79.9348199782639, 32.7843492843869], [-79.934819875948, 32.7843490075343], [-79.9347554052471, 32.7842531654547], [-79.9346622075156, 32.7841145299963], [-79.934617249163, 32.7840356318971], [-79.9345661322877, 32.783960808752], [-79.9344826815209, 32.7840012967622], [-79.9344209526419, 32.7839187840671], [-79.9343837066752, 32.7838615168471], [-79.9343500677768, 32.7838097948583], [-79.9344402071525, 32.783767544391], [-79.9343939119485, 32.7836987522594], [-79.9346881814853, 32.7835575967245], [-79.9346461159004, 32.7834950281133], [-79.9341828587051, 32.7837197365193], [-79.9341420714343, 32.7836554978462], [-79.9343267659825, 32.783569916442], [-79.934287187167, 32.7835050687841], [-79.9341341116165, 32.7835748566987], [-79.9340569639614, 32.7836100279968], [-79.9338962946536, 32.7833467899291], [-79.9338127394311, 32.7833795938292], [-79.9335804973015, 32.7834781594749], [-79.9335802590626, 32.7834782602075]]], "type": "Polygon"}, "id": "195", "properties": {"OBJECTID": 1032, "ORDNO": "2021-122", "ORDSTAT": null, "Shape__Area": 10010.32421875, "Shape__Length": 614.632863333078, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9373328006763, 32.7913847545784, -79.9367307152972, 32.7918782170486], "geometry": {"coordinates": [[[-79.9368796489016, 32.7918782170486], [-79.937214496187, 32.7916316872405], [-79.9373328006763, 32.7915401566713], [-79.9372782439767, 32.7914571269321], [-79.9372306909382, 32.7913847545784], [-79.9367307152972, 32.7915804685713], [-79.936806094488, 32.7917264806673], [-79.9368796489016, 32.7918782170486]]], "type": "Polygon"}, "id": "196", "properties": {"OBJECTID": 1058, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2091.318359375, "Shape__Length": 195.12736709153, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.937910338588, 32.7915401566713, -79.9368796489016, 32.7926436845471], "geometry": {"coordinates": [[[-79.9374398832958, 32.7925254723933], [-79.9374692540642, 32.7925081885476], [-79.9375869536202, 32.7926373218553], [-79.9375781529305, 32.7926436845471], [-79.937910338588, 32.7924231034774], [-79.9374327861339, 32.7916974809814], [-79.9373328006763, 32.7915401566713], [-79.937214496187, 32.7916316872405], [-79.9368796489016, 32.7918782170486], [-79.9370260820591, 32.7921552582051], [-79.9370410023084, 32.792183486339], [-79.9372788915574, 32.7920093205062], [-79.9373258147103, 32.792054969574], [-79.9372364707546, 32.7921205768123], [-79.9373117218231, 32.792201007758], [-79.9372409298496, 32.792249812595], [-79.9373075770446, 32.7923166791436], [-79.9373380185881, 32.7922978246134], [-79.9374194315283, 32.7923972132994], [-79.9373656392668, 32.7924365739151], [-79.9374398832958, 32.7925254723933]]], "type": "Polygon"}, "id": "197", "properties": {"OBJECTID": 1059, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7105.7265625, "Shape__Length": 453.184236501026, "ZONE_BASE": "MU-2", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9369342257676, 32.7916252021867, -79.9343086071167, 32.7931357462159], "geometry": {"coordinates": [[[-79.9366117769071, 32.7916252021867], [-79.9360885450896, 32.7918223004925], [-79.9354707626311, 32.7920588319517], [-79.9353236787878, 32.7921176009247], [-79.9343086071167, 32.7925094894271], [-79.93468078454, 32.7931357462159], [-79.9348494833404, 32.7930647307393], [-79.9350395091887, 32.7929875355036], [-79.9358116968523, 32.7926808534166], [-79.9360319204463, 32.7925939224494], [-79.9369342257676, 32.7922392498765], [-79.9366117769071, 32.7916252021867]]], "type": "Polygon"}, "id": "198", "properties": {"OBJECTID": 1135, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 25340.6953125, "Shape__Length": 740.987579974473, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9344949419866, 32.7913740247512, -79.9317362124516, 32.793658376277], "geometry": {"coordinates": [[[-79.9344784374465, 32.7930951322127], [-79.9344542565874, 32.7930504484641], [-79.9338848659127, 32.792113747937], [-79.9338332472206, 32.792034479442], [-79.9320523613846, 32.7913740247512], [-79.9317362124516, 32.7916629945294], [-79.9320785615594, 32.7919769111519], [-79.9325253872908, 32.7923715409875], [-79.9325830553235, 32.7924326826966], [-79.9326381866383, 32.7925256875842], [-79.9327204670328, 32.7926881055511], [-79.9332139438706, 32.793658376277], [-79.9344585235896, 32.7931869524274], [-79.9344653908503, 32.7931836564986], [-79.9344708634702, 32.7931802889027], [-79.9344750886032, 32.7931771277854], [-79.9344804242731, 32.7931722087396], [-79.9344850155547, 32.7931667799862], [-79.9344883064309, 32.793161781808], [-79.9344905677997, 32.7931574140665], [-79.9344917057763, 32.7931547202706], [-79.9344926766994, 32.7931519790263], [-79.9344934772562, 32.7931491993231], [-79.934494275811, 32.7931454465208], [-79.9344947662667, 32.793141654962], [-79.9344949419866, 32.7931378435275], [-79.934494620929, 32.7931321312046], [-79.9344935976593, 32.7931264776988], [-79.9344918842516, 32.7931209435382], [-79.9344899433098, 32.7931164679559], [-79.9344784374465, 32.7930951322127]]], "type": "Polygon"}, "id": "199", "properties": {"OBJECTID": 1158, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 41384.81640625, "Shape__Length": 908.215987846617, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9346829577578, 32.7907036468846, -79.9251391601673, 32.8019750127096], "geometry": {"coordinates": [[[-79.9307171754025, 32.7924161143403], [-79.9305602680267, 32.7924738277071], [-79.9305500949203, 32.7924625785567], [-79.9304579018092, 32.7924964879926], [-79.9304158534357, 32.7924700519251], [-79.930117986291, 32.7920047972516], [-79.9296537419685, 32.7912139717392], [-79.9293473295873, 32.7907036468846], [-79.9286196589315, 32.7910185284751], [-79.9251391601673, 32.7925741698773], [-79.9260483405632, 32.79464809336], [-79.9270262212448, 32.7968398262423], [-79.9274174368611, 32.7974476506022], [-79.9303309524829, 32.8019750127096], [-79.9315676735278, 32.8015168022973], [-79.9329130850556, 32.8010190673794], [-79.9331762984246, 32.8009202583834], [-79.9333487765018, 32.8008554471955], [-79.9341123361293, 32.8005620523162], [-79.9346829577578, 32.8003427355627], [-79.9341284797956, 32.7992401032472], [-79.9332522920546, 32.7974986588942], [-79.9315317939482, 32.7940788237655], [-79.9308590820113, 32.7927382297656], [-79.9307171754025, 32.7924161143403]]], "type": "Polygon"}, "id": "200", "properties": {"OBJECTID": 1485, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 794194.755859375, "Shape__Length": 3875.54103146001, "ZONE_BASE": "HI", "__folium_color": "#9467bd"}, "type": "Feature"}, {"bbox": [-79.9558089744651, 32.7846849088674, -79.9547419635725, 32.7853539571965], "geometry": {"coordinates": [[[-79.9547419635725, 32.7849588549109], [-79.954749970181, 32.7849768229167], [-79.9549180234285, 32.7853539571965], [-79.9552205030752, 32.7852526322767], [-79.9553686728546, 32.7852033380114], [-79.9554291781513, 32.7853316535074], [-79.9556454218231, 32.7852555000082], [-79.9558089744651, 32.7851517845937], [-79.9555960376375, 32.7846904646125], [-79.955558060616, 32.7846849088674], [-79.9547419635725, 32.7849588549109]]], "type": "Polygon"}, "id": "201", "properties": {"OBJECTID": 1957, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6486.345703125, "Shape__Length": 344.667452334043, "ZONE_BASE": "MU-2", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9284782918858, 32.7731299518315, -79.9282056779772, 32.7735192740016], "geometry": {"coordinates": [[[-79.9282084714026, 32.7731702662805], [-79.9282456730588, 32.7733765353034], [-79.9282585208273, 32.7735192740016], [-79.9284782918858, 32.7735033916584], [-79.9284624588045, 32.7733362349011], [-79.9284577822955, 32.773286908646], [-79.9284643643532, 32.7731421811826], [-79.9283290955126, 32.7731520066979], [-79.9283278045061, 32.7731299518315], [-79.9282056779772, 32.7731407743418], [-79.9282084714026, 32.7731702662805]]], "type": "Polygon"}, "id": "202", "properties": {"OBJECTID": 1962, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1259.130859375, "Shape__Length": 154.679694320183, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9368002796883, 32.7853477970203, -79.9362185547685, 32.7856981879427], "geometry": {"coordinates": [[[-79.9362185547685, 32.785587940659], [-79.9362920565777, 32.7856981879427], [-79.9368002796883, 32.7855173198887], [-79.9366868227588, 32.7853477970203], [-79.9362185547685, 32.785587940659]]], "type": "Polygon"}, "id": "203", "properties": {"OBJECTID": 1964, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1296.77734375, "Shape__Length": 164.986733365353, "ZONE_BASE": "UC", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9421041900191, 32.7887076584049, -79.9419051141219, 32.7888722210775], "geometry": {"coordinates": [[[-79.9419545951774, 32.7888722210775], [-79.9421041900191, 32.7888286717983], [-79.9420439410799, 32.7887076584049], [-79.9419051141219, 32.7887849211575], [-79.9419545951774, 32.7888722210775]]], "type": "Polygon"}, "id": "204", "properties": {"OBJECTID": 1971, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 270.265625, "Shape__Length": 66.3332862258049, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9435956295202, 32.7886591045529, -79.9430300127752, 32.7889636730706], "geometry": {"coordinates": [[[-79.9431862025943, 32.7887168693414], [-79.9430300127752, 32.7887643589946], [-79.9431102261097, 32.788845627318], [-79.9432043424176, 32.788823744711], [-79.9432452879565, 32.7888999986423], [-79.9433491486871, 32.788877076402], [-79.9433986151877, 32.7889636730706], [-79.9435956295202, 32.7888880536864], [-79.9435502316131, 32.7888326984378], [-79.9434894948868, 32.7887591442509], [-79.9434068884348, 32.7886591045529], [-79.9431862025943, 32.7887168693414]]], "type": "Polygon"}, "id": "205", "properties": {"OBJECTID": 1972, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1255.2265625, "Shape__Length": 165.820433615113, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9433986151877, 32.788877076402, -79.9432452879565, 32.7890015853732], "geometry": {"coordinates": [[[-79.9432452879565, 32.7888999986423], [-79.9432998375966, 32.7890015853732], [-79.9433986151877, 32.7889636730706], [-79.9433491486871, 32.788877076402], [-79.9432452879565, 32.7888999986423]]], "type": "Polygon"}, "id": "206", "properties": {"OBJECTID": 1973, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 163.84375, "Shape__Length": 51.5207053198062, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9433357715223, 32.7885680651672, -79.9419545951774, 32.7893680489543], "geometry": {"coordinates": [[[-79.9419545951774, 32.7888722210775], [-79.9421322086465, 32.7891038304775], [-79.9421806141654, 32.7891669671472], [-79.9423348439759, 32.7893680489543], [-79.9429203981664, 32.7891524890011], [-79.9429981291743, 32.7891173883665], [-79.9432998375966, 32.7890015853732], [-79.9432452879565, 32.7888999986423], [-79.9432043424176, 32.788823744711], [-79.9431102261097, 32.788845627318], [-79.9430300127752, 32.7887643589946], [-79.9431862025943, 32.7887168693414], [-79.943154188917, 32.7886297117985], [-79.9433357715223, 32.7885770420125], [-79.9433282559795, 32.7885680651672], [-79.9429624050417, 32.7886737861695], [-79.942899140471, 32.7885972518259], [-79.9427053589573, 32.7886536645805], [-79.9425790097555, 32.7886904470161], [-79.9424826866928, 32.78871848764], [-79.9423983069877, 32.7887430520461], [-79.9423027702476, 32.7887708639476], [-79.9422072720208, 32.7887986643844], [-79.9421041900191, 32.7888286717983], [-79.9419545951774, 32.7888722210775]]], "type": "Polygon"}, "id": "207", "properties": {"OBJECTID": 1974, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8542.1796875, "Shape__Length": 466.795728212329, "ZONE_BASE": "PUD", "__folium_color": "#7f7f7f"}, "type": "Feature"}, {"bbox": [-79.9504801480902, 32.7877545736131, -79.9481261576948, 32.7895755114281], "geometry": {"coordinates": [[[-79.950240235231, 32.788009229778], [-79.9500919745083, 32.7877545736131], [-79.9498940093625, 32.7878455778108], [-79.9497630834254, 32.7879057634186], [-79.9495857789736, 32.7879872695949], [-79.9492759421568, 32.7881295537519], [-79.9491818313421, 32.7881754749509], [-79.9490869048192, 32.7882213890719], [-79.9489895222836, 32.7882686573203], [-79.9488553119769, 32.788333988484], [-79.9487014580063, 32.7884091195925], [-79.9485926170341, 32.7884619589047], [-79.9484976909574, 32.7885078725792], [-79.9483839358325, 32.7885635012355], [-79.9482808230016, 32.7886136407171], [-79.9482194468749, 32.7886434345927], [-79.9481261576948, 32.7886885044101], [-79.9482710742277, 32.7890176303413], [-79.9483249195169, 32.7891403287988], [-79.9483827350667, 32.7892709623341], [-79.9485165595797, 32.7895755114281], [-79.9488331920873, 32.7894277349064], [-79.9489796467079, 32.7893591577106], [-79.9490892792471, 32.789308130314], [-79.9492046401975, 32.789254403227], [-79.9493200009911, 32.7892005885535], [-79.9494320901088, 32.7891482084558], [-79.9495531759846, 32.789091778705], [-79.9496742638065, 32.7890353515583], [-79.9497691722886, 32.7889909843662], [-79.9498558941652, 32.7889506673168], [-79.9499679847864, 32.7888982858461], [-79.9500800731225, 32.7888458167766], [-79.9501635253002, 32.7888068485551], [-79.9502559752863, 32.7887638315854], [-79.9503598799881, 32.7887155036151], [-79.9504801480902, 32.7886594122486], [-79.9502655567015, 32.7882043037416], [-79.9503397871557, 32.7881802222313], [-79.9502959291871, 32.788104891767], [-79.950240235231, 32.788009229778]]], "type": "Polygon"}, "id": "208", "properties": {"OBJECTID": 1984, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 31580.34765625, "Shape__Length": 763.040941184679, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9260247450783, 32.776804227153, -79.9255249006872, 32.7769654884537], "geometry": {"coordinates": [[[-79.9260247450783, 32.7769442886729], [-79.9260146644344, 32.776804227153], [-79.9258495796986, 32.7768189404018], [-79.9258511013438, 32.7768353915226], [-79.9256860175445, 32.7768501081671], [-79.9256051053771, 32.7768573219964], [-79.9255249006872, 32.7768644716431], [-79.9255331584286, 32.7769654884537], [-79.9256145417587, 32.7769585123845], [-79.9256948404108, 32.7769516277413], [-79.9256904163149, 32.7769107889379], [-79.9258543647651, 32.7768975160765], [-79.9258596158932, 32.7769392531487], [-79.9258535779501, 32.7769396014486], [-79.9258559992347, 32.7769592863353], [-79.9260247450783, 32.7769442886729]]], "type": "Polygon"}, "id": "209", "properties": {"OBJECTID": 2215, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 735.884765625, "Shape__Length": 158.761170725111, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9260364356241, 32.7768975160765, -79.9255331584286, 32.7774386259104], "geometry": {"coordinates": [[[-79.9260364356241, 32.7771843183892], [-79.9260253683233, 32.777086969967], [-79.926025374081, 32.7770649805569], [-79.9260247450783, 32.7769442886729], [-79.9258559992347, 32.7769592863353], [-79.9258535779501, 32.7769396014486], [-79.9258596158932, 32.7769392531487], [-79.9258543647651, 32.7768975160765], [-79.9256904163149, 32.7769107889379], [-79.9256948404108, 32.7769516277413], [-79.9256145417587, 32.7769585123845], [-79.9255331584286, 32.7769654884537], [-79.925573012968, 32.7774386259104], [-79.9260069675512, 32.7774226980471], [-79.925995554813, 32.777187251184], [-79.9260364356241, 32.7771843183892]]], "type": "Polygon"}, "id": "210", "properties": {"OBJECTID": 2216, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3360.16015625, "Shape__Length": 248.355300743309, "ZONE_BASE": "PUD", "__folium_color": "#7f7f7f"}, "type": "Feature"}, {"bbox": [-79.9509188927016, 32.7886704362276, -79.9498335935367, 32.7896601105883], "geometry": {"coordinates": [[[-79.9509188927016, 32.788919643345], [-79.9508341225281, 32.7887310850317], [-79.9508172369301, 32.7887393823054], [-79.9507818065673, 32.7886704362276], [-79.9507003082539, 32.7887085477462], [-79.9498335935367, 32.78912320792], [-79.950106718633, 32.7896382053507], [-79.9501145928159, 32.7896520493483], [-79.9501219735666, 32.7896491294135], [-79.9501256551143, 32.789655771454], [-79.9502459129515, 32.789599677506], [-79.9502601085919, 32.7896450632932], [-79.950437542699, 32.7895742232137], [-79.9503463277406, 32.7894089857176], [-79.9504739071404, 32.7893572489013], [-79.9505003507567, 32.7893465509109], [-79.9506196403652, 32.7892982040763], [-79.9508302967563, 32.7896601105883], [-79.9508829375342, 32.7896372856305], [-79.9508239706378, 32.7895560107667], [-79.9507350104825, 32.7893651438215], [-79.950690536658, 32.7892697351789], [-79.9505953246817, 32.789065467361], [-79.9507127472691, 32.7890126150939], [-79.9507665626121, 32.7889883284699], [-79.9508206055051, 32.7889639391611], [-79.9509188927016, 32.788919643345]]], "type": "Polygon"}, "id": "211", "properties": {"OBJECTID": 2234, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7590.806640625, "Shape__Length": 523.259853327515, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9265908706729, 32.7792858328299, -79.9257271591722, 32.7801860444288], "geometry": {"coordinates": [[[-79.9265895860463, 32.7795163966951], [-79.926589982712, 32.7794522706237], [-79.9265908706729, 32.7793085077351], [-79.926324088376, 32.7793532352082], [-79.9263082570621, 32.7792858328299], [-79.9260538624239, 32.7793284914046], [-79.9259190820526, 32.7793510877317], [-79.9257271591722, 32.7793832628521], [-79.9258239645869, 32.7801860444288], [-79.9263163986906, 32.7801318670011], [-79.926331681132, 32.7801301108793], [-79.9262999477451, 32.7800090233204], [-79.9265272162993, 32.7799839969714], [-79.9265175133397, 32.7799211296162], [-79.9264692314185, 32.779608360464], [-79.9264578695392, 32.7795347295658], [-79.9265895860463, 32.7795163966951]]], "type": "Polygon"}, "id": "212", "properties": {"OBJECTID": 2281, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8634.8515625, "Shape__Length": 413.48252950155, "ZONE_BASE": "MU-2", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9270003999751, 32.7792482543466, -79.9264578695392, 32.7799211296162], "geometry": {"coordinates": [[[-79.9270003999751, 32.7798679433687], [-79.9269696748488, 32.7795386417513], [-79.926956848936, 32.7794011724316], [-79.9269502585099, 32.7792482543466], [-79.9265756763321, 32.7793102303911], [-79.9265908706729, 32.7793085077351], [-79.926589982712, 32.7794522706237], [-79.9265895860463, 32.7795163966951], [-79.9264578695392, 32.7795347295658], [-79.9264692314185, 32.779608360464], [-79.9265175133397, 32.7799211296162], [-79.9270003999751, 32.7798679433687]]], "type": "Polygon"}, "id": "213", "properties": {"OBJECTID": 2282, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4067.2109375, "Shape__Length": 274.648420679173, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9372703143323, 32.7708267123341, -79.9354583865188, 32.7717142862412], "geometry": {"coordinates": [[[-79.9355580652384, 32.7714201685111], [-79.935561318527, 32.771420282495], [-79.9355645707594, 32.7714203955679], [-79.9355678219134, 32.7714205095331], [-79.935573514085, 32.7714207322173], [-79.9355767652501, 32.7714208452805], [-79.9355800185058, 32.7714209619691], [-79.9355832696599, 32.7714210759339], [-79.9355865218923, 32.7714211890062], [-79.935589775181, 32.7714213029894], [-79.9355930252797, 32.7714215035208], [-79.9355962775011, 32.7714216174945], [-79.9355995308009, 32.7714217305757], [-79.9356027819221, 32.7714218472452], [-79.9356060341775, 32.7714220459914], [-79.935609286399, 32.7714221599648], [-79.9356125375311, 32.7714222757322], [-79.9356182287027, 32.7714225804726], [-79.9356214787795, 32.7714227828067], [-79.9356247320793, 32.7714228958873], [-79.9356279832346, 32.7714230973288], [-79.9356312343997, 32.7714232103905], [-79.9356344866553, 32.7714234091359], [-79.9356377388768, 32.7714235231086], [-79.9356409889648, 32.7714237245405], [-79.9356442411874, 32.7714239259909], [-79.9356474923526, 32.7714240390522], [-79.9356507446083, 32.7714242377972], [-79.9356539946962, 32.7714244392288], [-79.9356572469179, 32.7714245532008], [-79.9356629370124, 32.7714249463095], [-79.9356661871334, 32.7714251450355], [-79.9356694393561, 32.7714253464852], [-79.9356726905115, 32.7714255479256], [-79.9356759406326, 32.7714257466513], [-79.9356791928884, 32.7714259453956], [-79.9356824440438, 32.7714261468357], [-79.9356856951993, 32.7714263482757], [-79.9356889463987, 32.7714265461086], [-79.9356921975542, 32.7714267475485], [-79.9356954487317, 32.7714269471847], [-79.9356986998872, 32.7714271486244], [-79.9357043878815, 32.7714276264852], [-79.9357076390701, 32.7714278252194], [-79.9357108902147, 32.7714280275605], [-79.9357141414032, 32.7714282262945], [-79.9357173904583, 32.7714285124878], [-79.9357206437816, 32.7714287112402], [-79.9357238928256, 32.7714289983351], [-79.9357271439813, 32.771429199774], [-79.9357303941136, 32.7714293975966], [-79.9357336452924, 32.7714296847098], [-79.9357368964372, 32.7714298870501], [-79.9357425833986, 32.7714304496726], [-79.9357458345544, 32.771430651111], [-79.9357490846989, 32.7714309355093], [-79.9357523358657, 32.7714311360458], [-79.9357555860103, 32.7714314204439], [-79.9357588361219, 32.7714317075471], [-79.9357620862445, 32.7714319937485], [-79.9357653374334, 32.7714321924812], [-79.9357685875451, 32.7714324795841], [-79.9357718376678, 32.7714327657853], [-79.9357750877905, 32.7714330519864], [-79.9357807758088, 32.7714336155181], [-79.9357840259206, 32.7714339026207], [-79.9357872749651, 32.7714341897139], [-79.9357905251209, 32.7714344732093], [-79.9357937752437, 32.7714347594099], [-79.9357970253556, 32.771435046512], [-79.9358002754784, 32.7714353327124], [-79.9358035255904, 32.7714356198145], [-79.9358067757353, 32.7714359042112], [-79.9358100258583, 32.7714361904114], [-79.9358132749371, 32.7714365622766], [-79.9358189618885, 32.7714371257972], [-79.9358222120005, 32.7714374128988], [-79.9358254610905, 32.7714377838619], [-79.9358287112026, 32.7714380709633], [-79.9358319602816, 32.7714384428281], [-79.9358352104047, 32.7714387290275], [-79.9358384605168, 32.7714390161286], [-79.9358417096289, 32.7714393852879], [-79.9358449597521, 32.7714396714871], [-79.9358482088202, 32.7714400442531], [-79.935853894706, 32.7714406952408], [-79.9358571437852, 32.7714410671049], [-79.9358603928644, 32.7714414389688], [-79.9358636429767, 32.7714417260693], [-79.935866892067, 32.7714420970314], [-79.9358701411353, 32.7714424697968], [-79.9358733912807, 32.7714427541917], [-79.935876640338, 32.7714431278588], [-79.9358798894504, 32.771443497017], [-79.9358855742595, 32.7714442363736], [-79.935888823372, 32.7714446055316], [-79.9358920724185, 32.7714449801], [-79.9358953215309, 32.7714453492578], [-79.9358985705775, 32.7714457238259], [-79.9359018196901, 32.7714460929836], [-79.9359050687367, 32.7714464675516], [-79.9359083178493, 32.7714468367091], [-79.935911566896, 32.7714472112769], [-79.9359172517716, 32.7714479452216], [-79.9359204997853, 32.7714484045527], [-79.935923748854, 32.7714487773167], [-79.9359269979448, 32.7714491482771], [-79.9359302459806, 32.7714496058044], [-79.9359334950605, 32.7714499776664], [-79.9359367441403, 32.7714503495284], [-79.9359399921872, 32.7714508061537], [-79.9359432412671, 32.7714511780154], [-79.9359489250333, 32.7714520030343], [-79.9359521730803, 32.7714524596592], [-79.9359554221493, 32.7714528324225], [-79.9359586712638, 32.7714532890565], [-79.9359619192765, 32.7714536609085], [-79.9359651673237, 32.7714541175331], [-79.9359684163942, 32.7714545777739], [-79.93597166444, 32.7714549469204], [-79.9359773482301, 32.7714558576124], [-79.935980596254, 32.7714562285622], [-79.9359838443013, 32.7714566851863], [-79.9359870923047, 32.7714571454173], [-79.9359903403411, 32.771457602943], [-79.9359935883885, 32.7714580595668], [-79.935996836425, 32.7714585170923], [-79.9360000844725, 32.771458973716], [-79.9360057672067, 32.7714598834957], [-79.9360090152434, 32.7714603410209], [-79.9360122643583, 32.7714607976536], [-79.9360155113056, 32.7714612569728], [-79.9360187593423, 32.7714617144977], [-79.9360220084574, 32.7714621711301], [-79.9360252553939, 32.7714626313509], [-79.936030938185, 32.7714636240985], [-79.9360341851326, 32.7714640834172], [-79.9360374321365, 32.7714646257051], [-79.9360406812408, 32.7714650832388], [-79.9360439282214, 32.771465539852], [-79.9360471751925, 32.7714660848448], [-79.9360504242969, 32.7714665423782], [-79.936056104932, 32.7714675369097], [-79.9360593540474, 32.7714679935411], [-79.936062598884, 32.7714685385149], [-79.936065848012, 32.7714690817224], [-79.9360690960603, 32.7714695383442], [-79.9360723419753, 32.7714700824254], [-79.936075591069, 32.7714705408598], [-79.9360812706607, 32.7714716210553], [-79.9360845186996, 32.7714721660565], [-79.936087766748, 32.7714726226778], [-79.9360910126414, 32.771473168562], [-79.9360942607244, 32.7714737099559], [-79.9360975066617, 32.7714742522329], [-79.9361031883556, 32.7714753351511], [-79.9361064342931, 32.7714758774279], [-79.9361096812979, 32.7714764197138], [-79.9361129293372, 32.7714769647142], [-79.9361161752419, 32.7714775096959], [-79.9361194222468, 32.7714780519817], [-79.9361251029069, 32.7714791321844], [-79.936128349912, 32.7714796744699], [-79.9361315979515, 32.7714802194697], [-79.9361348438564, 32.771480764451], [-79.9361380908961, 32.7714813915089], [-79.9361413378574, 32.7714819374009], [-79.9361470174851, 32.7714831023661], [-79.9361502644905, 32.771483644651], [-79.9361535104066, 32.77148418873], [-79.9361567573916, 32.7714848202961], [-79.9361600044081, 32.771485361679], [-79.9361632492695, 32.7714859923246], [-79.9361689299542, 32.7714871581998], [-79.9361721758705, 32.7714877022783], [-79.9361754228998, 32.7714883302369], [-79.9361786698725, 32.7714888752263], [-79.9361819147343, 32.7714895058715], [-79.9361875954304, 32.771490670844], [-79.9361908413706, 32.7714913005965], [-79.9361940872998, 32.7714919312506], [-79.936197333273, 32.7714925582977], [-79.936200580246, 32.7714931032864], [-79.9362062588206, 32.7714943548158], [-79.936209504761, 32.7714949845677], [-79.9362127507015, 32.7714956143196], [-79.936215996664, 32.7714962422679], [-79.9362192415262, 32.7714968729121], [-79.9362249211466, 32.7714981262533], [-79.9362281671203, 32.7714987532996], [-79.93623141305, 32.7714993839527], [-79.9362346579235, 32.7715000136947], [-79.9362379038879, 32.7715007291204], [-79.9362435824745, 32.7715019797462], [-79.9362468284155, 32.7715026094972], [-79.9362500743455, 32.7715032401498], [-79.9362533181755, 32.7715039555565], [-79.936256565173, 32.7715045862183], [-79.936262241616, 32.7715059252044], [-79.9362654886686, 32.7715065513572], [-79.9362687335552, 32.7715072676745], [-79.9362719784292, 32.7715078974155], [-79.9362776570075, 32.7715092364195], [-79.9362809008379, 32.7715099518254], [-79.9362841468234, 32.7715105779685], [-79.936287393845, 32.7715112943039], [-79.9362906376646, 32.7715120106113], [-79.936296315187, 32.7715133487034], [-79.9362995600851, 32.7715140641181], [-79.9363028049832, 32.7715147795328], [-79.9363060509142, 32.7715154101839], [-79.9363117274043, 32.7715168330388], [-79.9363149723027, 32.7715175484531], [-79.9363182172011, 32.7715182638674], [-79.9363214620996, 32.7715189792815], [-79.9363271385793, 32.7715204030373], [-79.9363303834779, 32.7715211184513], [-79.9363336283766, 32.7715218338651], [-79.9363368732753, 32.7715225492789], [-79.9363401181631, 32.7715232655943], [-79.936345793598, 32.7715246875365], [-79.936349039588, 32.7715254886337], [-79.9363522834197, 32.7715262040378], [-79.9363579598893, 32.7715276286939], [-79.9363612037559, 32.7715284288705], [-79.936364448655, 32.7715291442835], [-79.9363676935213, 32.7715298624016], [-79.9363733689589, 32.7715313718205], [-79.9363766128257, 32.7715321719966], [-79.9363798577252, 32.7715328874093], [-79.9363831015811, 32.771533688487], [-79.9363887769972, 32.7715351997087], [-79.9363920218969, 32.7715359151209], [-79.936395265753, 32.7715367161983], [-79.9364009412025, 32.7715382247142], [-79.9364041850588, 32.7715390257913], [-79.9364074288932, 32.7715398286719], [-79.9364106748606, 32.771540544093], [-79.9364163481996, 32.771542138264], [-79.9364195920563, 32.7715429393407], [-79.9364228358909, 32.7715437422209], [-79.9364285102978, 32.7715453364006], [-79.9364317541546, 32.771546137477], [-79.9364349979896, 32.7715469403569], [-79.9364406713295, 32.7715485345268], [-79.9364439173212, 32.7715493356214], [-79.9364471600891, 32.7715501384917], [-79.9364504039463, 32.7715509395676], [-79.9364560783541, 32.771552533746], [-79.9364593211459, 32.7715534222904], [-79.9364625650144, 32.7715542224643], [-79.9364682394226, 32.7715558166422], [-79.9364714822147, 32.7715567051862], [-79.9364747260834, 32.7715575053598], [-79.9364803994046, 32.7715591888092], [-79.9364836432734, 32.7715599889825], [-79.9364868860769, 32.7715608766245], [-79.9364925594096, 32.7715625591716], [-79.9364958032676, 32.7715633602464], [-79.9364990460932, 32.7715642460845], [-79.9365047194374, 32.7715659277293], [-79.9365079622632, 32.7715668135672], [-79.9365112050452, 32.7715677030119], [-79.9365168783897, 32.7715693846562], [-79.9365201212158, 32.7715702704937], [-79.9365257935173, 32.7715720378028], [-79.936529037387, 32.7715728379749], [-79.9365322801804, 32.7715737265173], [-79.9365379524714, 32.7715754947276], [-79.9365411952759, 32.771576382368], [-79.9365444391699, 32.7715772682142], [-79.9365501104049, 32.7715790355129], [-79.93655335431, 32.771579920457], [-79.9365590244581, 32.7715817770275], [-79.9365622683524, 32.7715826628731], [-79.9365655090118, 32.7715835513961], [-79.9365711824173, 32.7715854034851], [-79.9365744241772, 32.7715862893119], [-79.9365776669606, 32.7715871787549], [-79.9365833382319, 32.7715890308247], [-79.9365865810264, 32.7715899193657], [-79.9365922522981, 32.7715917714352], [-79.9365954940494, 32.7715927456411], [-79.9366011653215, 32.7715945977101], [-79.9366060284925, 32.7715960143825], [-79.9366133211406, 32.7715983125247], [-79.9366165639927, 32.7715992840341], [-79.9366222341983, 32.7716011360929], [-79.9366254770287, 32.7716021094056], [-79.9366311461474, 32.7716040507361], [-79.9366343889669, 32.7716050249503], [-79.9366376307282, 32.7716059107754], [-79.936643302037, 32.7716078476152], [-79.9366465437895, 32.7716088218198], [-79.9366522139874, 32.7716107622568], [-79.9366554557841, 32.7716117328542], [-79.9366611259714, 32.7716136741926], [-79.936664366703, 32.7716147322584], [-79.9366700368907, 32.7716166735964], [-79.9366732786878, 32.7716176441933], [-79.9366789478546, 32.7716196693926], [-79.9366821896079, 32.7716206435962], [-79.936687858808, 32.7716226660899], [-79.9366911005616, 32.7716236402932], [-79.9366967697292, 32.7716256654917], [-79.936700011483, 32.7716266396949], [-79.9367056806839, 32.7716286621877], [-79.9367089213616, 32.771629724761], [-79.936714590563, 32.7716317472534], [-79.9367178312849, 32.7716328062195], [-79.9367234993863, 32.7716348314075], [-79.9367267422431, 32.7716358903919], [-79.936732410334, 32.7716379164812], [-79.936736460191, 32.7716393260789], [-79.9367413191827, 32.7716410863084], [-79.9367469883416, 32.7716431124063], [-79.9367502291083, 32.7716441677646], [-79.9367558972024, 32.7716462813307], [-79.9367591379583, 32.7716473375905], [-79.9367648060528, 32.7716494511562], [-79.936768046809, 32.7716505074158], [-79.9367737138607, 32.7716527066463], [-79.9367793819889, 32.7716548175061], [-79.9367826227235, 32.7716558755688], [-79.9367882898089, 32.7716580720934], [-79.9367939568594, 32.7716601838449], [-79.9367971976185, 32.7716613275817], [-79.9368028636482, 32.7716635231946], [-79.9368061053958, 32.7716645857746], [-79.936811771426, 32.7716667813871], [-79.9368174395912, 32.7716689770178], [-79.9368206782052, 32.7716701216372], [-79.936826346327, 32.7716723208745], [-79.9368320134255, 32.7716745164953], [-79.9368352531072, 32.7716756611235], [-79.9368409202063, 32.7716778567439], [-79.9368465862295, 32.7716801407345], [-79.9368498259227, 32.7716812844606], [-79.9368554919793, 32.7716835657455], [-79.9368611580032, 32.7716858497353], [-79.9368668240604, 32.7716881310197], [-79.9368700637102, 32.7716892783522], [-79.9368757297679, 32.7716915596362], [-79.9368813947255, 32.7716938436159], [-79.9368870618511, 32.7716961249086], [-79.9368903004694, 32.7716973570041], [-79.9368959665281, 32.7716996382871], [-79.936901631522, 32.7717020070385], [-79.9369072965053, 32.7717043766915], [-79.9369105361892, 32.7717055213177], [-79.9369162011839, 32.7717078900684], [-79.936921866168, 32.7717102597207], [-79.9369275343035, 32.7717123705737], [-79.936930777139, 32.7717132564003], [-79.9369340230928, 32.7717138861331], [-79.9369372732189, 32.771714173205], [-79.9369405254639, 32.7717142862412], [-79.9369445962521, 32.77171388964], [-79.9369478589542, 32.7717133191765], [-79.9369511216381, 32.771712487181], [-79.9369543926797, 32.7717110564401], [-79.9369576637321, 32.7717096247973], [-79.9369609462906, 32.7717072481322], [-79.9369642330319, 32.7717045279045], [-79.9369658879086, 32.7717022227683], [-79.9369675438392, 32.7716998310653], [-79.9371167968665, 32.7714666231875], [-79.9372668916924, 32.7712309288828], [-79.9372685496667, 32.7712282801709], [-79.9372693964362, 32.7712255387371], [-79.9372702453157, 32.7712227116474], [-79.9372702798459, 32.7712198747772], [-79.9372703143323, 32.771217041514], [-79.9372695354794, 32.7712141155103], [-79.9372687556195, 32.7712113599446], [-79.9372679747168, 32.7712086900439], [-79.9372663805463, 32.7712060969483], [-79.9372647842218, 32.7712035931154], [-79.9372623714438, 32.7712013401139], [-79.9372591495416, 32.771198648104], [-79.9372559224312, 32.7711965593759], [-79.9372526900937, 32.7711948123973], [-79.9372470271976, 32.7711922732336], [-79.9372413622028, 32.7711898188239], [-79.9372357003747, 32.771187279669], [-79.9372324607141, 32.7711860466718], [-79.9372267988865, 32.7711835075164], [-79.9372211349602, 32.7711810531149], [-79.9372154699777, 32.7711785978023], [-79.9372098071084, 32.7711761443113], [-79.9372065674376, 32.7711749122152], [-79.9372009045797, 32.771172457822], [-79.9371952395874, 32.7711700034102], [-79.9371895767192, 32.7711675499183], [-79.937186337027, 32.7711663196251], [-79.9371806741703, 32.771163865231], [-79.937175010282, 32.7711614956002], [-79.9371717695449, 32.7711602634938], [-79.9371661056132, 32.7711578974696], [-79.9371604395909, 32.7711555278194], [-79.9371572020234, 32.7711542984458], [-79.9371515359907, 32.771151929697], [-79.937145872093, 32.7711495609666], [-79.9371426324021, 32.7711483306722], [-79.9371369674731, 32.7711460467048], [-79.9371313014414, 32.7711436779551], [-79.9371280638748, 32.7711424485806], [-79.9371223968117, 32.771140164594], [-79.9371167318592, 32.7711377949512], [-79.9371134921827, 32.7711366512322], [-79.9371078261548, 32.7711343699594], [-79.9371045865225, 32.7711332226332], [-79.937098921527, 32.7711308565965], [-79.9370948706449, 32.7711295326761], [-79.937090015868, 32.7711274279965], [-79.9370843509087, 32.7711251467318], [-79.9370811091228, 32.771124088668], [-79.9370754420623, 32.7711218046792], [-79.9370722034652, 32.7711206600667], [-79.9370665374724, 32.7711183760867], [-79.937060870415, 32.7711161795751], [-79.9370576307401, 32.7711150358547], [-79.9370519636831, 32.7711128393428], [-79.9370487240524, 32.7711116920151], [-79.9370430569739, 32.7711094973062], [-79.9370398173104, 32.7711083526836], [-79.9370341502873, 32.7711061534656], [-79.9370309095481, 32.7711050972131], [-79.9370252425145, 32.7711028988964], [-79.9370220028405, 32.7711017551751], [-79.9370163347533, 32.7710996434249], [-79.9370130950905, 32.7710984988016], [-79.9370074269818, 32.7710963888544], [-79.9370041862873, 32.7710953289943], [-79.9369985192549, 32.7710931306764], [-79.9369952785387, 32.7710920726195], [-79.9369896104528, 32.7710899608681], [-79.9369863697148, 32.7710889046145], [-79.9369807016513, 32.7710867910591], [-79.9369774609135, 32.7710857348053], [-79.9369717928504, 32.7710836212495], [-79.9369685521129, 32.7710825649954], [-79.9369653114413, 32.7710815033308], [-79.9369596433129, 32.7710793951849], [-79.9369564026305, 32.7710783344218], [-79.9369507324031, 32.7710763110297], [-79.9369474927774, 32.7710752511773], [-79.9369418246828, 32.7710731403254], [-79.9369385829359, 32.7710721670305], [-79.9369353422321, 32.7710711080702], [-79.936929673106, 32.7710690819813], [-79.9369264323914, 32.7710680239225], [-79.9369207632657, 32.7710659978331], [-79.9369175214864, 32.7710650272428], [-79.9369142807831, 32.771063968282], [-79.9369086106259, 32.7710620269555], [-79.9369053699118, 32.7710609688962], [-79.936899699722, 32.7710590302745], [-79.9368964590192, 32.7710579713132], [-79.9368932172734, 32.7710569980171], [-79.9368875481382, 32.7710549728279], [-79.9368843063596, 32.7710540022367], [-79.9368786362037, 32.7710520609088], [-79.9368753944582, 32.7710510876121], [-79.936872152691, 32.7710501161189], [-79.9368664825355, 32.7710481747904], [-79.9368632407795, 32.7710472023952], [-79.9368599990124, 32.7710462309017], [-79.9368543288466, 32.7710442904744], [-79.9368510871017, 32.7710433171771], [-79.9368454169033, 32.7710413794546], [-79.9368421751696, 32.7710404052553], [-79.9368389323929, 32.7710395167211], [-79.9368332621949, 32.7710375789981], [-79.9368300204615, 32.7710366047985], [-79.9368267776522, 32.7710357189692], [-79.9368211074767, 32.7710337794421], [-79.9368178646675, 32.7710328936127], [-79.9368146229345, 32.7710319194127], [-79.9368089516944, 32.7710300673537], [-79.9368057089184, 32.7710291788186], [-79.9368024671527, 32.7710282073236], [-79.9367992254442, 32.7710273187976], [-79.9367935531484, 32.7710254658269], [-79.9367903103618, 32.7710245781932], [-79.9367870696725, 32.7710235183273], [-79.9367813963472, 32.7710218375973], [-79.936778154593, 32.7710208651999], [-79.9367749107394, 32.7710199775565], [-79.9367692395361, 32.7710182102683], [-79.9367659956606, 32.7710173244282], [-79.9367627549961, 32.7710163502361], [-79.9367570816586, 32.7710145829289], [-79.936753839918, 32.771013697107], [-79.9367505971432, 32.7710128085704], [-79.9367473532682, 32.7710119227298], [-79.9367416820989, 32.7710101527352], [-79.936738438224, 32.7710092668943], [-79.9367351954517, 32.7710084658353], [-79.9367295221043, 32.7710066994286], [-79.9367262803973, 32.7710058109007], [-79.9367230375901, 32.7710049250687], [-79.9367197926833, 32.7710041239907], [-79.9367141215151, 32.7710023539948], [-79.9367108766085, 32.7710015529167], [-79.936707634869, 32.7710006670935], [-79.9367043920841, 32.7709997794575], [-79.9366987187509, 32.7709980996255], [-79.936695474934, 32.7709972967527], [-79.9366922310601, 32.7709964109106], [-79.9366889882886, 32.7709956098505], [-79.9366833139106, 32.770993928205], [-79.9366800722156, 32.7709930387741], [-79.936676828366, 32.7709922386061], [-79.9366735834602, 32.7709914375269], [-79.9366679101501, 32.77098975589], [-79.9366646663118, 32.7709889548199], [-79.9366614235628, 32.7709881519554], [-79.9366581796896, 32.7709872661124], [-79.9366525063822, 32.7709856719527], [-79.9366492614988, 32.7709848690695], [-79.9366460176608, 32.7709840679988], [-79.9366427748792, 32.7709832678391], [-79.9366370994706, 32.770981670955], [-79.9366338567002, 32.7709808698933], [-79.9366273679465, 32.7709792686436], [-79.9366241251982, 32.7709784657783], [-79.9366184497573, 32.7709768715984], [-79.9366152069872, 32.7709760705362], [-79.9366119610392, 32.7709753551206], [-79.9366087172239, 32.7709745522456], [-79.936605474454, 32.7709737511832], [-79.9365997979704, 32.7709722426676], [-79.9365965552006, 32.770971441605], [-79.9365933103183, 32.7709706387202], [-79.9365900665053, 32.7709699233226], [-79.9365868216011, 32.7709691222411], [-79.9365811461854, 32.770967613734], [-79.9365779023726, 32.770966898336], [-79.9365746564013, 32.770966097245], [-79.936571413656, 32.7709653818561], [-79.936568168774, 32.7709645789707], [-79.9365624934049, 32.7709631543337], [-79.9365592484902, 32.7709623541532], [-79.9365560036104, 32.7709616387454], [-79.9365527597981, 32.7709609233468], [-79.9365495138511, 32.7709602079295], [-79.936543839515, 32.7709586985282], [-79.9365405935682, 32.7709579831107], [-79.9365373486778, 32.7709572686041], [-79.9365341048658, 32.770956553205], [-79.9365308589192, 32.7709558377872], [-79.9365251835512, 32.7709544131485], [-79.9365219376047, 32.7709536977305], [-79.9365186927255, 32.7709529823217], [-79.9365154478465, 32.7709522669128], [-79.9365122029675, 32.7709515515038], [-79.9365089580886, 32.7709508360947], [-79.936503281632, 32.7709494132492], [-79.9365000367642, 32.7709486969381], [-79.9364967908419, 32.7709480671939], [-79.9364935459632, 32.7709473517844], [-79.9364903010845, 32.7709466363749], [-79.936487056206, 32.7709459209652], [-79.9364813797959, 32.7709445819896], [-79.9364781338501, 32.7709438665705], [-79.9364748878843, 32.7709432404326], [-79.936471643017, 32.7709425241209], [-79.9364683971062, 32.7709418934741], [-79.936465152228, 32.7709411780639], [-79.9364619073736, 32.770940548328], [-79.9364562288296, 32.7709392093327], [-79.9364529828751, 32.7709385822925], [-79.9364497379971, 32.7709378668819], [-79.9364464920866, 32.7709372362346], [-79.9364432461652, 32.770936606489], [-79.9364400012874, 32.7709358910781], [-79.9364367553771, 32.7709352604305], [-79.9364310768246, 32.7709340098137], [-79.936427831947, 32.7709332944025], [-79.9364245860259, 32.7709326646564], [-79.9364213401158, 32.7709320340084], [-79.9364180952291, 32.7709314069766], [-79.9364148482518, 32.7709307763192], [-79.9364116023309, 32.7709301465727], [-79.9364059238121, 32.7709288932495], [-79.9364026778583, 32.770928266208], [-79.9363994319376, 32.7709276364612], [-79.9363961860389, 32.7709270049109], [-79.9363929401182, 32.7709263751639], [-79.9363896941756, 32.7709257472203], [-79.9363864461442, 32.7709252031291], [-79.9363807686714, 32.7709239516174], [-79.9363775227509, 32.7709233218701], [-79.936374275765, 32.7709227795913], [-79.9363710298447, 32.7709221498437], [-79.9363677839353, 32.7709215191943], [-79.9363645369825, 32.77092097421], [-79.9363612910293, 32.7709203471674], [-79.9363580440875, 32.7709198012812], [-79.9363547992348, 32.7709191715425], [-79.9363491185736, 32.7709180065778], [-79.936345871599, 32.7709174633965], [-79.936342625679, 32.7709168336482], [-79.9363393786936, 32.7709162913685], [-79.9363361327737, 32.77091566162], [-79.9363328858323, 32.7709151157331], [-79.9363296388469, 32.7709145734531], [-79.9363263929272, 32.7709139437044], [-79.9363207123014, 32.7709128635111], [-79.9363174653491, 32.7709123185255], [-79.936314218364, 32.7709117762451], [-79.9363109724555, 32.7709111455942], [-79.9363044785073, 32.7709100592295], [-79.9363012315333, 32.770909516047], [-79.9362979845813, 32.770908971061], [-79.9362947386527, 32.7709084296911], [-79.9362914895772, 32.7709078837845], [-79.9362858100195, 32.7709068035989], [-79.9362825630348, 32.7709062613176], [-79.936279313972, 32.770905801987], [-79.9362760680547, 32.7709052597148], [-79.93627282107, 32.7709047174333], [-79.936269573051, 32.7709041724372], [-79.9362663271338, 32.7709036301648], [-79.9362630791496, 32.7709031699413], [-79.936259832165, 32.7709026276594], [-79.9362565852026, 32.770902083574], [-79.9362509035457, 32.7709010881409], [-79.9362476565613, 32.7709005458587], [-79.9362444085443, 32.7709000883399], [-79.9362411615931, 32.7708995433523], [-79.9362379135651, 32.770899086735], [-79.9362346666139, 32.7708985417473], [-79.9362314196534, 32.7708980851391], [-79.9362281695019, 32.7708976276013], [-79.9360267665137, 32.7708713956542], [-79.936023518499, 32.7708709381295], [-79.9360202715845, 32.7708704779089], [-79.9360170214585, 32.7708701060399], [-79.9360113397969, 32.7708691989753], [-79.936008089671, 32.770868827106], [-79.9360048405781, 32.7708683704733], [-79.9360015936872, 32.7708679959266], [-79.9359959088582, 32.7708671736061], [-79.9359926608671, 32.7708668017551], [-79.9359894117744, 32.7708663451219], [-79.935986162716, 32.7708659732614], [-79.9359829136687, 32.7708656004991], [-79.935978853365, 32.7708650520369], [-79.9359739808381, 32.770864407228], [-79.9359707328459, 32.7708639478984], [-79.9359674837547, 32.7708635787426], [-79.9359642347405, 32.7708632032745], [-79.9359585499355, 32.7708624666268], [-79.9359553008664, 32.7708620956672], [-79.9359520528524, 32.7708616381406], [-79.9359488037943, 32.7708612662791], [-79.9359455547363, 32.7708608944175], [-79.9359398699317, 32.7708601577689], [-79.9359366208737, 32.7708597859071], [-79.9359333718158, 32.7708594140452], [-79.935930122758, 32.7708590421832], [-79.9359244379536, 32.7708583055339], [-79.9359211888958, 32.7708579336716], [-79.9359179388049, 32.7708576465727], [-79.9359146908036, 32.7708572756213], [-79.9359114406455, 32.7708569064548], [-79.9359057558414, 32.7708561698046], [-79.9359025057507, 32.7708558827053], [-79.9358992566932, 32.7708555108424], [-79.9358960076246, 32.7708551398813], [-79.935892758578, 32.7708547671166], [-79.9358870727301, 32.7708541161307], [-79.9358838226396, 32.7708538290309], [-79.9358805735821, 32.7708534571676], [-79.9358773245247, 32.7708530853042], [-79.9358740743902, 32.7708528018111], [-79.9358708253658, 32.7708524272423], [-79.9358651394963, 32.7708517780588], [-79.9358618893949, 32.7708514918602], [-79.9358586403376, 32.7708511199963], [-79.9358553902473, 32.7708508328957], [-79.935852140113, 32.770850549402], [-79.9358464542767, 32.7708498975126], [-79.9358432052195, 32.7708495256482], [-79.9358399551293, 32.7708492385473], [-79.9358367050171, 32.7708489532497], [-79.935833454894, 32.7708486688537], [-79.9358277690578, 32.7708480169634], [-79.9358245189678, 32.770847729862], [-79.9358212688776, 32.7708474427605], [-79.9358180187326, 32.7708471601677], [-79.9358147686425, 32.770846873066], [-79.9358090827957, 32.7708462220765], [-79.9358058327167, 32.770845934073], [-79.9358025825718, 32.7708456514797], [-79.9357993324818, 32.7708453643776], [-79.9357960823919, 32.7708450772755], [-79.9357928322909, 32.770844791075], [-79.9357871453783, 32.7708442275532], [-79.9357838952775, 32.7708439413524], [-79.9357806441105, 32.7708437426202], [-79.9357773940207, 32.7708434555176], [-79.9357741439199, 32.7708431693167], [-79.9357684570514, 32.770842602187], [-79.9357652058735, 32.7708424043561], [-79.9357619557838, 32.7708421172531], [-79.9357587056942, 32.77084183015], [-79.9357554555605, 32.7708415466537], [-79.9357522044266, 32.7708413452156], [-79.9357465164472, 32.7708407816825], [-79.9357432663807, 32.7708405802535], [-79.9357400162471, 32.7708402967567], [-79.9357367651134, 32.7708400953183], [-79.9357335150238, 32.7708398082144], [-79.9357302638571, 32.7708396094809], [-79.9357245748666, 32.7708391289069], [-79.9357213258115, 32.7708388445172], [-79.9357180746779, 32.7708386430781], [-79.9357148245885, 32.7708383559739], [-79.9357115734108, 32.7708381581416], [-79.9357058854659, 32.7708376793794], [-79.9357026343323, 32.7708374779399], [-79.9356993831657, 32.7708372792056], [-79.9356961330654, 32.7708369930026], [-79.935692881899, 32.7708367942681], [-79.9356896307764, 32.7708365919265], [-79.9356839407091, 32.7708361997209], [-79.9356806916872, 32.770835912625], [-79.9356774405208, 32.7708357138901], [-79.93567418832, 32.7708355124406], [-79.9356709382209, 32.7708353137148], [-79.9356676870875, 32.7708351122744], [-79.9356619980987, 32.7708347191754], [-79.9356587469323, 32.7708345204399], [-79.9356554947316, 32.77083431899], [-79.9356522446216, 32.7708341211654], [-79.9356489934883, 32.7708339197245], [-79.9356457412656, 32.7708337200778], [-79.9356400533444, 32.7708333269869], [-79.9356368001104, 32.7708332102999], [-79.9356335500006, 32.7708330124749], [-79.935630297767, 32.7708328137294], [-79.9356270477011, 32.7708326122972], [-79.9356237965789, 32.770832409954], [-79.9356181054458, 32.7708321052139], [-79.93561485538, 32.7708319037814], [-79.9356116021022, 32.7708317907006], [-79.9356083520033, 32.7708315919731], [-79.9356051008812, 32.7708313896294], [-79.9356018476034, 32.7708312765483], [-79.9355961586382, 32.7708309691207], [-79.9355929064047, 32.7708307703742], [-79.9355896553166, 32.7708306528027], [-79.9355864041396, 32.7708304549671], [-79.9355831508949, 32.7708303391804], [-79.9355799007962, 32.7708301404522], [-79.93557420863, 32.7708299204735], [-79.9355709585644, 32.7708297190399], [-79.935567706365, 32.7708296050655], [-79.9355644530974, 32.7708294036038], [-79.9355612030217, 32.7708292905496], [-79.9355579497551, 32.7708291765656], [-79.9355522607901, 32.7708288691358], [-79.9355490075234, 32.7708287551517], [-79.9355457553572, 32.7708286384715], [-79.9355425042142, 32.7708285254075], [-79.9355392509366, 32.7708284123247], [-79.9355359987374, 32.7708282983495], [-79.9355303087052, 32.7708279909094], [-79.935527056506, 32.770827876934], [-79.9355238054071, 32.7708277602625], [-79.9355205521295, 32.7708276471793], [-79.9355172999303, 32.7708275332036], [-79.9355140487875, 32.7708274201387], [-79.9355083556102, 32.770827283117], [-79.9355051044784, 32.7708271691502], [-79.9355018512009, 32.7708270560665], [-79.9354985990017, 32.7708269420903], [-79.9354953468355, 32.7708268254088], [-79.9354920946254, 32.7708267123341], [-79.935487212672, 32.7708269286753], [-79.9354839521053, 32.7708274134438], [-79.9354806894065, 32.7708281606275], [-79.9354774204738, 32.7708294190968], [-79.9354741494082, 32.7708308525033], [-79.9354708742094, 32.7708327124414], [-79.935467588465, 32.7708352621908], [-79.9354651213205, 32.7708374727598], [-79.9354634664096, 32.7708397787772], [-79.9354618083541, 32.7708423426917], [-79.9354601513989, 32.7708449039103], [-79.9354593035089, 32.7708476453222], [-79.9354592689639, 32.7708504785848], [-79.9354584210968, 32.770853305671], [-79.9354583865188, 32.7708561416389], [-79.9355038693974, 32.7713953870477], [-79.9355046481699, 32.7713982273882], [-79.9355054279758, 32.7714009829653], [-79.9355070242544, 32.7714035742991], [-79.9355086194656, 32.7714061656235], [-79.935510216754, 32.7714084990414], [-79.9355126263482, 32.7714110099749], [-79.9355158534376, 32.7714132728033], [-79.9355190815368, 32.7714152777157], [-79.9355223159696, 32.7714168507044], [-79.9355255577364, 32.7714179097114], [-79.9355287994794, 32.7714187955659], [-79.935532047479, 32.771419255809], [-79.9355352987008, 32.7714195393205], [-79.9355385508992, 32.7714195676213], [-79.9355418030984, 32.7714196834], [-79.935545056387, 32.7714197973843], [-79.935548307552, 32.7714199104483], [-79.9355515597403, 32.7714200271284], [-79.9355548140734, 32.7714200554474], [-79.9355580652384, 32.7714201685111]]], "type": "Polygon"}, "id": "214", "properties": {"OBJECTID": 2341, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14730.4375, "Shape__Length": 528.743032258128, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9363854710023, 32.771530045692, -79.9355181376957, 32.7717897968549], "geometry": {"coordinates": [[[-79.9355494050239, 32.771530045692], [-79.9355461486098, 32.7715302752794], [-79.9355428901409, 32.7715307609699], [-79.9355396253156, 32.7715315929093], [-79.9355363584463, 32.7715326800499], [-79.9355330863667, 32.7715342820925], [-79.9355298079307, 32.7715362303841], [-79.9355265274515, 32.7715385213549], [-79.9355248736063, 32.7715407390029], [-79.9355224042987, 32.7715430379343], [-79.9355207462315, 32.7715456018499], [-79.9355199015149, 32.7715481701378], [-79.9355190546874, 32.7715509115596], [-79.9355182068264, 32.7715537377448], [-79.935518172239, 32.7715565746146], [-79.9355181376957, 32.7715594078774], [-79.9355351619158, 32.7717642552831], [-79.9355359406706, 32.771767097427], [-79.9355367194474, 32.7717699377675], [-79.9355375002911, 32.771772608581], [-79.9355390965664, 32.7717752008162], [-79.9355406939182, 32.7717776172031], [-79.935543104534, 32.7717799576981], [-79.9355455120176, 32.7717826426666], [-79.9355487412434, 32.7717847314586], [-79.9355519725012, 32.771786478473], [-79.935555211137, 32.7717877078985], [-79.9355584539514, 32.7717886821412], [-79.9355616988418, 32.7717893109994], [-79.9355649468883, 32.7717897685364], [-79.9355682012351, 32.7717897968549], [-79.9355722698783, 32.7717895770401], [-79.9356708208703, 32.7717790074214], [-79.9358548907993, 32.7717593905033], [-79.9360161562494, 32.7717420685273], [-79.9363525322584, 32.7717060824547], [-79.9363557928623, 32.7717055092834], [-79.936359056586, 32.7717046800181], [-79.9363623234954, 32.7717035892485], [-79.9363655955899, 32.7717020728581], [-79.9363688687498, 32.771700468999], [-79.9363721481821, 32.771698350247], [-79.9363746122081, 32.7716963957533], [-79.9363770825156, 32.771693837987], [-79.9363795580556, 32.771691025949], [-79.9363812212853, 32.771688036401], [-79.9363828803734, 32.7716853868086], [-79.9363837271751, 32.7716826453808], [-79.9363845813038, 32.7716793024933], [-79.936385429149, 32.7716764754003], [-79.9363854710023, 32.7716730397757], [-79.9363846921988, 32.7716701994407], [-79.9363847340961, 32.7716667602091], [-79.9363839542161, 32.7716640082445], [-79.9363823600287, 32.7716613303645], [-79.9363807658304, 32.7716586533861], [-79.936379174752, 32.771655720314], [-79.9363767683228, 32.7716529469916], [-79.9363743597297, 32.7716503513117], [-79.9363711295022, 32.7716484311759], [-79.9363679013401, 32.7716463415132], [-79.9363646700254, 32.7716445106495], [-79.9363614313836, 32.7716432812453], [-79.9363581906656, 32.7716422222698], [-79.9363541366291, 32.771641156222], [-79.9363484611738, 32.771639647704], [-79.9363452162817, 32.7716389313888], [-79.9363395408595, 32.7716374201651], [-79.9363362959566, 32.7716367047514], [-79.9363330520972, 32.7716359036724], [-79.9363273756099, 32.7716344799169], [-79.9363241307071, 32.7716337645028], [-79.9363184542201, 32.7716323407469], [-79.9363152093065, 32.7716316262343], [-79.9363119644038, 32.77163091082], [-79.9363062889609, 32.7716294013983], [-79.9363030430258, 32.7716287707471], [-79.9362973665394, 32.7716273469902], [-79.9362941216371, 32.7716266315754], [-79.9362908767349, 32.7716259161604], [-79.936285200249, 32.771624492403], [-79.9362819543032, 32.771623862653], [-79.9362787094011, 32.7716231472377], [-79.9362730329156, 32.7716217234796], [-79.9362697869809, 32.7716210928276], [-79.9362665420791, 32.7716203774121], [-79.9362608634499, 32.7716190420145], [-79.9362576185718, 32.7716184122732], [-79.9362543736702, 32.7716176968573], [-79.9362486961526, 32.7716163578615], [-79.9362454502184, 32.7716157272089], [-79.9362397726572, 32.7716143918197], [-79.9362365267121, 32.7716137620685], [-79.9362332807544, 32.771613045741], [-79.9362276032611, 32.7716117924187], [-79.9362243562159, 32.7716111653632], [-79.9362211113148, 32.7716104499464], [-79.9362154327545, 32.7716091966143], [-79.9362121878881, 32.77160856597], [-79.9362089419105, 32.7716079389233], [-79.9362032633505, 32.7716066855906], [-79.936200017384, 32.771606057642], [-79.9361967703722, 32.7716054278805], [-79.9361935255061, 32.7716047972357], [-79.9361878469135, 32.7716035466075], [-79.9361846009692, 32.7716029168549], [-79.9361813539922, 32.7716023718658], [-79.936175675389, 32.7716011221387], [-79.9361724294669, 32.7716004905824], [-79.9361691814226, 32.7715999455836], [-79.9361635038871, 32.7715986958653], [-79.936160255821, 32.7715981526698], [-79.9361570109445, 32.7715975229257], [-79.9361513302418, 32.7715963579517], [-79.9361480843435, 32.7715958120692], [-79.9361448373324, 32.7715951823063], [-79.9361415903229, 32.7715946400213], [-79.9361359107319, 32.7715934714489], [-79.9361326647554, 32.7715928444002], [-79.9361294188574, 32.7715922985172], [-79.9361237371116, 32.771591219207], [-79.9361204922465, 32.7715905885604], [-79.936117244159, 32.7715900471671], [-79.9361115645702, 32.7715889660715], [-79.9361083164828, 32.7715884246781], [-79.9361050695177, 32.7715878787852], [-79.9361018236091, 32.7715873338031], [-79.9360961418419, 32.7715862562952], [-79.9360928959334, 32.771585711313], [-79.9360896478463, 32.771585169919], [-79.9360864019488, 32.7715846240349], [-79.936080720215, 32.771583543821], [-79.9360774732063, 32.7715830015342], [-79.9360742272981, 32.7715824565515], [-79.9360685445206, 32.7715814620023], [-79.9360652985795, 32.7715809197245], [-79.9360620505476, 32.7715803738211], [-79.9360588035626, 32.7715799172083], [-79.9360531207856, 32.7715789226584], [-79.9360498748446, 32.7715783803802], [-79.936046626802, 32.7715778353781], [-79.9360433787608, 32.771577377854], [-79.9360376970624, 32.7715763824108], [-79.9360344490104, 32.7715759257882], [-79.9360312031136, 32.7715753799025], [-79.9360279539833, 32.7715749241721], [-79.9360222733636, 32.7715739278358], [-79.9360190242334, 32.7715734721051], [-79.9360157761925, 32.7715730145802], [-79.936012530241, 32.7715724732028], [-79.936006846443, 32.7715715625124], [-79.9360035994586, 32.7715711058981], [-79.9360003503835, 32.7715706456583], [-79.9359971023319, 32.7715701890346], [-79.9359938553586, 32.7715697315184], [-79.93598817155, 32.7715688217289], [-79.9359849245658, 32.7715683651141], [-79.935981675458, 32.771567907579], [-79.9359759937513, 32.7715670005127], [-79.9359727446656, 32.7715665411739], [-79.9359694955812, 32.7715661693129], [-79.9359662486082, 32.7715657117959], [-79.9359605648001, 32.7715648020051], [-79.9359573167503, 32.7715644328583], [-79.9359540676647, 32.771563973519], [-79.9359508196245, 32.7715635159923], [-79.9359475705404, 32.7715631441308], [-79.935941886723, 32.7715623227188], [-79.935938638716, 32.7715618624866], [-79.9359353895989, 32.7715614933299], [-79.9359321415809, 32.7715610339993], [-79.9359264577748, 32.7715602116848], [-79.935923208691, 32.7715598398226], [-79.9359199596071, 32.7715594679603], [-79.9359167115563, 32.7715590113345], [-79.9359134624834, 32.7715586385703], [-79.9359077776336, 32.7715579019201], [-79.9359045306503, 32.7715574453033], [-79.9359012805321, 32.771557070726], [-79.9358980314155, 32.7715567015683], [-79.9358923465989, 32.7715559622122], [-79.9358890974823, 32.7715555930543], [-79.9358858484317, 32.7715552184859], [-79.9358825993151, 32.7715548493278], [-79.9358793502646, 32.7715544747593], [-79.9358736654153, 32.7715537381075], [-79.9358704162989, 32.7715533689491], [-79.9358671672485, 32.7715529943802], [-79.935863917088, 32.7715527108868], [-79.9358606680046, 32.7715523390229], [-79.9358549831556, 32.7715516023703], [-79.9358517330392, 32.7715513152696], [-79.935848483956, 32.7715509434054], [-79.9358452348727, 32.7715505715412], [-79.9358395479125, 32.7715499205437], [-79.9358362988635, 32.7715496334519], [-79.9358330497474, 32.7715492642926], [-79.9358297996202, 32.771548978093], [-79.9358265505372, 32.7715486062282], [-79.9358233004209, 32.7715483191268], [-79.9358176145284, 32.7715476681377], [-79.9358143643793, 32.7715473837412], [-79.9358111153293, 32.7715470091708], [-79.9358078651692, 32.7715467256759], [-79.9358021792879, 32.7715460737843], [-79.9357989291609, 32.771545787584], [-79.9357956790449, 32.7715455004818], [-79.9357924288849, 32.7715452169865], [-79.9357891787689, 32.7715449298842], [-79.9357834918107, 32.7715443663621], [-79.9357802416728, 32.7715440810629], [-79.9357769915679, 32.7715437930585], [-79.9357737414411, 32.7715435068575], [-79.9357704912923, 32.7715432224599], [-79.9357672411655, 32.7715429362587], [-79.9357615542515, 32.7715423691286], [-79.9357583041247, 32.7715420829272], [-79.9357550529318, 32.7715418841944], [-79.9357518028051, 32.7715415979928], [-79.9357485526894, 32.7715413108894], [-79.9357428646985, 32.7715408321289], [-79.9357396145718, 32.7715405459269], [-79.935736363379, 32.7715403471936], [-79.9357331132524, 32.7715400609915], [-79.9357298620596, 32.771539862258], [-79.9357241741018, 32.7715393807913], [-79.9357209239424, 32.7715390972941], [-79.9357176738609, 32.7715388949626], [-79.9357144215998, 32.7715386087415], [-79.9357111704071, 32.7715384100074], [-79.9357079202817, 32.7715382112826], [-79.9357022312459, 32.7715377307074], [-79.9356989811206, 32.7715375319823], [-79.9356957309942, 32.7715372457793], [-79.9356924787783, 32.7715370434285], [-79.935689228653, 32.7715368447032], [-79.9356835385401, 32.7715364524975], [-79.9356802884588, 32.771536250165], [-79.9356770372663, 32.7715360514301], [-79.9356737850065, 32.7715358526858], [-79.9356705349143, 32.7715356512547], [-79.9356672837548, 32.7715354498144], [-79.9356615946764, 32.7715350603222], [-79.9356583435169, 32.7715348588815], [-79.9356550923355, 32.7715346592442], [-79.9356518401428, 32.7715345425669], [-79.9356485878721, 32.7715343447237], [-79.9356428999052, 32.7715339516329], [-79.9356396466121, 32.7715338376512], [-79.9356363965201, 32.7715336362192], [-79.9356331453607, 32.7715334347779], [-79.9356298920568, 32.7715333216976], [-79.9356266419318, 32.7715331229706], [-79.9356209518644, 32.771532814633], [-79.9356176996388, 32.7715327006599], [-79.9356144484685, 32.7715325001199], [-79.9356111951756, 32.7715323861373], [-79.9356079450507, 32.7715321874099], [-79.9356046928471, 32.771532071633], [-79.9355990027799, 32.7715317632943], [-79.9355957505433, 32.7715316502224], [-79.9355924972615, 32.7715315353377], [-79.9355892450139, 32.7715314231673], [-79.9355859938548, 32.7715312217247], [-79.9355827416293, 32.7715311077507], [-79.9355770505178, 32.7715308850763], [-79.9355737982923, 32.771530771102], [-79.9355705471232, 32.7715306580387], [-79.9355672938194, 32.7715305449568], [-79.9355640415939, 32.7715304309822], [-79.9355583504825, 32.7715302083069], [-79.9355550982461, 32.7715300952339], [-79.9355494050239, 32.771530045692]]], "type": "Polygon"}, "id": "215", "properties": {"OBJECTID": 2342, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2215.38671875, "Shape__Length": 229.718940268879, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9379136066156, 32.7739099039219, -79.9374125128809, 32.7742094913486], "geometry": {"coordinates": [[[-79.93770617283, 32.7742040635453], [-79.9377140265073, 32.7742094913486], [-79.9377290866394, 32.7741943161963], [-79.937752834841, 32.7741703866263], [-79.9378092862242, 32.7741135030169], [-79.9379136066156, 32.7740083855537], [-79.9378986012436, 32.7739099039219], [-79.9378833759565, 32.7739116349171], [-79.9377636227223, 32.7739264006353], [-79.937699266433, 32.7739342612996], [-79.937634910165, 32.7739421192248], [-79.9375705528182, 32.773949977107], [-79.9374125128809, 32.7739693078123], [-79.9374125547092, 32.7739697302341], [-79.9374275528924, 32.7739678909081], [-79.9374311711603, 32.7740047721928], [-79.9376174297418, 32.774139791999], [-79.93770617283, 32.7742040635453]]], "type": "Polygon"}, "id": "216", "properties": {"OBJECTID": 2343, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1201.888671875, "Shape__Length": 150.691320645164, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.955081179798, 32.7770671912145, -79.9491811528202, 32.7806279686908], "geometry": {"coordinates": [[[-79.9542845834576, 32.7806279686908], [-79.9543183558595, 32.7805929514873], [-79.9536702660034, 32.780164010106], [-79.9536834388879, 32.7801508081016], [-79.9543307184162, 32.7805795720401], [-79.9547005921958, 32.7801938623815], [-79.9542423221363, 32.7798776156316], [-79.9542678286204, 32.7798535220393], [-79.9547244852334, 32.7801687259154], [-79.9548950048466, 32.7799909091069], [-79.9541857458741, 32.7795074181434], [-79.9542096326738, 32.7794827100975], [-79.9549188915347, 32.7799662045282], [-79.955081179798, 32.7797964778424], [-79.9530089540149, 32.7783961171251], [-79.953034493346, 32.778369277091], [-79.9533023924193, 32.778550498727], [-79.9535026352171, 32.7783360883903], [-79.9525931223709, 32.7777306153677], [-79.9523953507776, 32.7779422965828], [-79.9526527484985, 32.7781171583762], [-79.9526147775976, 32.778163133413], [-79.952200786287, 32.7778867700572], [-79.9522246886376, 32.7778607765209], [-79.9510571416381, 32.7770671912145], [-79.9506632281326, 32.7774900465097], [-79.9502182172285, 32.7779676110435], [-79.9506538222205, 32.778272599572], [-79.9507482022905, 32.7783387785196], [-79.9508800949802, 32.7781941391118], [-79.9509502852804, 32.7782425003446], [-79.9508958775435, 32.7783023366744], [-79.9508708670983, 32.7782852010826], [-79.9507933780019, 32.7783702630115], [-79.9514290446161, 32.7788153499132], [-79.9514142334405, 32.778829396177], [-79.9508261187134, 32.7784211384832], [-79.9506498898581, 32.7785997601096], [-79.9506416558736, 32.7786080215212], [-79.9506497236471, 32.7786135883032], [-79.9514444435942, 32.779158737823], [-79.9516710518809, 32.7789170676115], [-79.9516944637769, 32.7789319554978], [-79.9514686730327, 32.7791732891614], [-79.9514759327258, 32.7791785044618], [-79.9514676904797, 32.7791874557613], [-79.9513038671044, 32.7790781615439], [-79.9513007043421, 32.7790705752616], [-79.9508472306643, 32.7787628574775], [-79.9506495440286, 32.7786285319501], [-79.9506269519767, 32.7786131350459], [-79.9506500116956, 32.7785896236424], [-79.9508204746282, 32.7784170516663], [-79.950653461924, 32.7783025752353], [-79.950593760013, 32.7782614327988], [-79.9504274630073, 32.7784258804084], [-79.9504078571219, 32.7784326689406], [-79.950095065467, 32.7787381928402], [-79.9496884266937, 32.7784596528852], [-79.9495105552633, 32.7786393725539], [-79.9491811528202, 32.7789728427399], [-79.9494259980099, 32.7791089500476], [-79.9496231711677, 32.7792181886493], [-79.949860185468, 32.7793290594644], [-79.950028256277, 32.7794232737425], [-79.9504143543833, 32.7796515565872], [-79.9506357470485, 32.7797763785016], [-79.9506866502585, 32.7798051642735], [-79.9510066156102, 32.779986062874], [-79.951191624758, 32.7800924467329], [-79.9513089268234, 32.7801467958004], [-79.9514604031432, 32.7802004943492], [-79.9516158765493, 32.7802601538145], [-79.9517342885119, 32.7802898576516], [-79.952155647496, 32.780359866763], [-79.9527077319439, 32.7804504091788], [-79.952761307241, 32.7804599745305], [-79.9525385591986, 32.7803121228793], [-79.9524550806381, 32.780218378537], [-79.9524514681443, 32.7801804660803], [-79.952472498793, 32.7801226636686], [-79.9525434091732, 32.7799756109074], [-79.9526654407214, 32.7798393010314], [-79.9526877074163, 32.7798140653621], [-79.952712448285, 32.7797860164069], [-79.9529408252067, 32.779939240345], [-79.9536469627834, 32.779189707048], [-79.9536760101269, 32.7792095406107], [-79.9529698777762, 32.77995864575], [-79.9532458939917, 32.7801417379338], [-79.9539487378946, 32.7793954402434], [-79.9539786070004, 32.7794145935632], [-79.9532757570035, 32.7801614081243], [-79.9538568449873, 32.7805470010976], [-79.953879909469, 32.780523061655], [-79.9539178306306, 32.7805490674353], [-79.9538997083325, 32.7805679835468], [-79.9541447736921, 32.7806186976134], [-79.9541933242388, 32.7805723832564], [-79.9542845834576, 32.7806279686908]]], "type": "Polygon"}, "id": "217", "properties": {"OBJECTID": 2411, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 144295.259765625, "Shape__Length": 3889.63109483716, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.958214296463, 32.7810955576488, -79.9546820065898, 32.7839558231214], "geometry": {"coordinates": [[[-79.9569846562403, 32.7839555819493], [-79.956988723415, 32.7839556166239], [-79.9569927905897, 32.7839556512983], [-79.9569976711993, 32.7839556929075], [-79.957001738374, 32.7839557275817], [-79.9570058055486, 32.7839557622557], [-79.9570098727234, 32.7839557969296], [-79.9570147543457, 32.7839557537744], [-79.9570188215204, 32.7839557884479], [-79.9570228886951, 32.7839558231214], [-79.9570277703175, 32.7839557799656], [-79.957031838548, 32.7839557262681], [-79.9570359057227, 32.7839557609412], [-79.9570399739101, 32.7839557108503], [-79.9570448555432, 32.7839556667922], [-79.9570489237306, 32.783955616701], [-79.9570529919179, 32.7839555666097], [-79.9570578735834, 32.7839555198458], [-79.9570619427942, 32.7839553840888], [-79.9570660110246, 32.7839553303901], [-79.957070079212, 32.7839552802983], [-79.9570749618685, 32.7839551505734], [-79.9570790300558, 32.7839551004813], [-79.9570830992882, 32.7839549629201], [-79.9570879819769, 32.7839548304894], [-79.9570920511877, 32.7839546947314], [-79.9570961203984, 32.7839545589733], [-79.9571001906982, 32.7839544214205], [-79.9571050723194, 32.7839542889801], [-79.9571091415301, 32.7839541532216], [-79.9571132107408, 32.7839540174628], [-79.9571180944313, 32.783953801169], [-79.9571221636743, 32.7839536627048], [-79.9571262339406, 32.7839534385749], [-79.9571303020837, 32.7839533028065], [-79.9571351879199, 32.7839530856285], [-79.9571392571079, 32.7839528623908], [-79.9571433273311, 32.7839526418673], [-79.9571473975974, 32.7839524177368], [-79.9571522812877, 32.7839522014416], [-79.9571563515108, 32.7839519809177], [-79.9571604217877, 32.783951755885], [-79.9571653064906, 32.7839514548256], [-79.957169376746, 32.783951231596], [-79.957173447012, 32.7839510074646], [-79.9571775182906, 32.7839506985693], [-79.9571824030042, 32.7839503966074], [-79.9571864732702, 32.7839501724755], [-79.9571905455732, 32.7839498671959], [-79.9571946158273, 32.783949554684], [-79.9571995015651, 32.7839492563375], [-79.9572035718191, 32.7839489438253], [-79.9572076430653, 32.7839486376342], [-79.9572117153885, 32.7839482412688], [-79.9572166001018, 32.7839479393056], [-79.9572206724034, 32.7839475447434], [-79.9572247436709, 32.7839472367483], [-79.9572288159725, 32.7839468421858], [-79.9572337006856, 32.7839465402219], [-79.9572377730194, 32.7839461429539], [-79.9572418452994, 32.7839457501945], [-79.957245918679, 32.7839453547388], [-79.9572508033477, 32.7839449670996], [-79.9572548767058, 32.7839445734472], [-79.9572589490286, 32.7839441770802], [-79.9572630223424, 32.7839436977528], [-79.9572679070433, 32.7839433074078], [-79.9572719814244, 32.7839428280892], [-79.9572760526473, 32.7839424344178], [-79.9572801270714, 32.783941951492], [-79.9572850117183, 32.7839415656551], [-79.9572890850425, 32.7839410854251], [-79.9572931583883, 32.7839406033915], [-79.9572972316909, 32.7839401249648], [-79.9573021184713, 32.7839396498637], [-79.9573061918277, 32.783939166928], [-79.9573102672209, 32.7839386028444], [-79.9573143394989, 32.783938120801], [-79.9573184138795, 32.783937641481], [-79.9573233006047, 32.7839370816062], [-79.9573273750283, 32.7839365986789], [-79.9573314482863, 32.7839360345764], [-79.9573355237222, 32.783935466885], [-79.957340410447, 32.7839349070096], [-79.9573444858937, 32.7839343384163], [-79.9573485591406, 32.7839337752149], [-79.9573526334981, 32.7839332084157], [-79.9573567089337, 32.7839326407236], [-79.9573615967366, 32.7839320799548], [-79.9573656721171, 32.7839314274895], [-79.957369746442, 32.7839308633949], [-79.9573738207992, 32.7839302965949], [-79.9573778951119, 32.7839296441202], [-79.9573827850052, 32.7839289976941], [-79.9573868593178, 32.783928345219], [-79.9573909347422, 32.7839277784276], [-79.9573950090547, 32.7839271259524], [-79.9573990855022, 32.7839264734951], [-79.9574039732493, 32.7839258279517], [-79.9574080507198, 32.7839250898287], [-79.9574121260888, 32.7839244382638], [-79.9574162004117, 32.783923784886], [-79.957420277882, 32.7839230467626], [-79.9574251666855, 32.7839224021292], [-79.9574292430773, 32.7839216648982], [-79.9574333195229, 32.7839209231584], [-79.9574373948915, 32.7839202715925], [-79.9574414702157, 32.7839195343519], [-79.9574455476855, 32.7839187962277], [-79.9574504364872, 32.7839180623117], [-79.9574545139568, 32.7839173241872], [-79.9574585903037, 32.7839165012806], [-79.9574626677948, 32.7839157613523], [-79.957466744186, 32.7839150241201], [-79.9574708216002, 32.7839142012222], [-79.9574748980343, 32.7839134603826], [-79.957479788883, 32.7839126444161], [-79.9574838662969, 32.7839118215177], [-79.957487943743, 32.783910995914], [-79.9574920201339, 32.7839102586809], [-79.9574960975906, 32.7839094321752], [-79.9575001750043, 32.7839086092763], [-79.9575042534624, 32.7839076989083], [-79.9575091443104, 32.7839068829406], [-79.9575132206886, 32.783906057327], [-79.9575172991694, 32.7839052344366], [-79.957521377638, 32.7839043231664], [-79.9575254550834, 32.7839034975614], [-79.957529533541, 32.7839025871926], [-79.9575336119662, 32.7839016795288], [-79.9575376904237, 32.7839007691598], [-79.9575417689026, 32.783899856987], [-79.9575466607943, 32.7838989535489], [-79.9575507392192, 32.7838980458846], [-79.9575548176763, 32.783897135515], [-79.9575588961548, 32.7838962233417], [-79.9575629746117, 32.7838953129718], [-79.9575670540592, 32.7838943196414], [-79.9575711325267, 32.7838934083695], [-79.9575752109388, 32.7838924123246], [-79.9575792904629, 32.7838915019633], [-79.9575833699423, 32.7838905059271], [-79.9575874494216, 32.7838895098909], [-79.9575923423244, 32.7838885216872], [-79.9575964218144, 32.7838875247489], [-79.9576005012934, 32.7838865287123], [-79.9576045807723, 32.7838855326755], [-79.9576086602619, 32.7838845357369], [-79.9576127397299, 32.7838835406015], [-79.9576168202315, 32.7838824588988], [-79.9576208996993, 32.7838814637633], [-79.957624980233, 32.7838803793551], [-79.9576290597113, 32.7838793833175], [-79.9576331402018, 32.783878302516], [-79.9576372196353, 32.7838772208035], [-79.957641301193, 32.7838761400109], [-79.9576453817262, 32.7838750556021], [-79.9576494622162, 32.7838739748001], [-79.9576535427061, 32.7838728939979], [-79.9576576232066, 32.7838718122939], [-79.9576617047515, 32.7838706431207], [-79.9576657852518, 32.7838695614165], [-79.9576698657521, 32.783868479712], [-79.9576739472859, 32.7838673114402], [-79.957678028798, 32.7838661449717], [-79.9576821092979, 32.7838650632669], [-79.9576861908421, 32.783863894093], [-79.9576902723862, 32.7838627249189], [-79.9576943538979, 32.7838615584499], [-79.9576984354418, 32.7838603892756], [-79.9577025180208, 32.7838592228154], [-79.9577065995321, 32.7838580563461], [-79.9577106800082, 32.7838568871621], [-79.9577147625636, 32.7838556332235], [-79.9577188440746, 32.7838544667537], [-79.9577229266407, 32.7838532119131], [-79.9577270081515, 32.783852045443], [-79.9577310907065, 32.7838507915039], [-79.9577351732721, 32.7838495366628], [-79.957739255827, 32.7838482827234], [-79.9577433384048, 32.7838471162619], [-79.9577474199026, 32.7838458614113], [-79.9577515045473, 32.7838445218151], [-79.9577555860342, 32.783843267866], [-79.9577596685991, 32.7838420130241], [-79.9577637511317, 32.7838407608874], [-79.9577678346976, 32.7838394221832], [-79.9577711048958, 32.7838381604203], [-79.9577751874047, 32.7838368208051], [-79.9577792710367, 32.7838355659717], [-79.9577833535454, 32.7838342263562], [-79.9577874381782, 32.7838328876606], [-79.9577915206867, 32.7838315480448], [-79.9577956042625, 32.783830208438], [-79.9577996878491, 32.7838288679294], [-79.9578037714247, 32.7838275283222], [-79.9578078560568, 32.7838261896259], [-79.9578111251309, 32.78382484308], [-79.9578152107856, 32.7838234187179], [-79.9578192932932, 32.7838220791013], [-79.9578233789692, 32.7838206529354], [-79.9578274614765, 32.7838193133185], [-79.9578315460955, 32.7838178862415], [-79.9578356317602, 32.7838164609771], [-79.9578389018454, 32.7838150296667], [-79.9578429874992, 32.7838136053036], [-79.9578470710286, 32.7838121800206], [-79.9578511567144, 32.7838107529521], [-79.9578552402435, 32.7838093276688], [-79.9578593258967, 32.7838079033052], [-79.9578625970595, 32.7838064711015], [-79.9578666816324, 32.7838049583489], [-79.9578707672853, 32.783803533985], [-79.9578748518579, 32.783802021232], [-79.9578789375212, 32.783800595966], [-79.9578822096953, 32.7837990789981], [-79.957886295335, 32.7837975662539], [-79.9578903809531, 32.783796055313], [-79.9578944655143, 32.7837945434611], [-79.9578985521888, 32.7837930334308], [-79.957901823327, 32.7837915137481], [-79.9579059100013, 32.7837900037175], [-79.9579099956402, 32.7837884909725], [-79.9579140823015, 32.7837868925618], [-79.9579173544744, 32.783785375593], [-79.9579214400573, 32.7837837780747], [-79.9579255267308, 32.7837822680435], [-79.9579296123133, 32.783780670525], [-79.9579328866081, 32.7837790651941], [-79.9579369722138, 32.7837775551534], [-79.9579410588741, 32.7837759567418], [-79.9579451455236, 32.7837743592319], [-79.9579484176828, 32.7837727538825], [-79.9579525053564, 32.7837711599883], [-79.9579565909487, 32.7837695615672], [-79.9579598662544, 32.7837678714719], [-79.9579639529138, 32.7837662730596], [-79.9579680395732, 32.7837646746471], [-79.9579721272334, 32.7837629923725], [-79.9579754004035, 32.7837613022587], [-79.95797948813, 32.7837597038549], [-79.9579835758005, 32.7837580206782], [-79.9579868500054, 32.7837563332783], [-79.9579909376756, 32.7837546501014], [-79.958214296463, 32.7836483160548], [-79.9582027335441, 32.7835947036928], [-79.9581939087981, 32.7835843205879], [-79.9581875233264, 32.7835740439287], [-79.9581754140915, 32.7835662111947], [-79.9581698430877, 32.7835558548944], [-79.9581545098775, 32.7835455020356], [-79.9581424314178, 32.7835350912185], [-79.9581336066743, 32.7835247090111], [-79.9581182130014, 32.7835194230352], [-79.9581094180307, 32.7835065466081], [-79.9580972780858, 32.7835012883393], [-79.9580851995959, 32.7834908811235], [-79.9580730586214, 32.7834857094196], [-79.9580642646724, 32.7834727482256], [-79.9580489017408, 32.7834648877681], [-79.9580368530322, 32.7834519863296], [-79.9580223035693, 32.7834441300915], [-79.9580069396007, 32.7834362678162], [-79.95799811385, 32.7834259721663], [-79.9579860672765, 32.7834129823613], [-79.9579707340683, 32.7834025438051], [-79.9579586567178, 32.783392132979], [-79.9579530836177, 32.7833818659324], [-79.9579442589229, 32.7833714828098], [-79.9579346505525, 32.7833586003435], [-79.9579258258731, 32.7833482163178], [-79.9579137485247, 32.7833378063892], [-79.9579049535701, 32.7833249326529], [-79.957896159673, 32.7833119705453], [-79.9578808869579, 32.7832964668942], [-79.9578721545764, 32.7832783522323], [-79.9578601069764, 32.7832654516876], [-79.9578512823045, 32.7832550685584], [-79.9578424576347, 32.7832446854285], [-79.9578328185267, 32.7832343801325], [-79.9578239938612, 32.7832239970014], [-79.9578118528944, 32.7832187395971], [-79.9578030579561, 32.7832058667554], [-79.9577942333077, 32.7831954827204], [-79.9577789022849, 32.7831850450603], [-79.9577701073655, 32.7831721713145], [-79.9577612827137, 32.7831617881789], [-79.9577459495766, 32.7831513495948], [-79.957737123907, 32.783141052123], [-79.9577340250687, 32.7831281421294], [-79.9577252301941, 32.7831152656753], [-79.9577099267504, 32.7831022517031], [-79.9577043568882, 32.783091896293], [-79.9576922467407, 32.783084149177], [-79.9576801068796, 32.7830788908671], [-79.9576712822802, 32.7830685050199], [-79.9576616431689, 32.7830582033175], [-79.9576495340851, 32.7830503678267], [-79.9576349846917, 32.7830425142481], [-79.9576228448291, 32.7830372568343], [-79.9575809179442, 32.7830058025723], [-79.9575687770778, 32.7830006299169], [-79.9575574701192, 32.7829937490786], [-79.9575486167819, 32.7829857717748], [-79.9575381284106, 32.7829784659316], [-79.9575284575589, 32.782970824357], [-79.9575196103967, 32.7829623303531], [-79.9575091209754, 32.7829551128781], [-79.9574986264624, 32.7829483219261], [-79.9574873092645, 32.7829422995395], [-79.9574743837071, 32.7829347149979], [-79.9574622592133, 32.7829280833047], [-79.9574403798554, 32.7829210248825], [-79.9574298873872, 32.7829140634954], [-79.9574185825077, 32.7829070104117], [-79.9574080889755, 32.7829000490137], [-79.9573919046598, 32.7828929507368], [-79.9573757182238, 32.7828859408194], [-79.95736441234, 32.7828789724944], [-79.9573539198386, 32.7828719254262], [-79.9573401747515, 32.7828649363107], [-79.9573296822872, 32.7828579758168], [-79.9573184040785, 32.7828486016315], [-79.9573079116287, 32.782841640234], [-79.9572974191806, 32.7828346788357], [-79.9572861153897, 32.7828276257488], [-79.957275622945, 32.7828206643486], [-79.9572651294345, 32.7828137029384], [-79.9572538235689, 32.7828067346031], [-79.9572433321526, 32.7827996875347], [-79.957227119087, 32.7827949094084], [-79.9572076224995, 32.7827925111874], [-79.9571971321776, 32.7827854623206], [-79.9571809180831, 32.7827807707554], [-79.9571696132303, 32.7827737185505], [-79.9571591218689, 32.7827667571493], [-79.9571486283742, 32.7827597957292], [-79.9571373225356, 32.7827528264815], [-79.9571268311244, 32.7827457803048], [-79.9571212746676, 32.7827342210343], [-79.9570671857471, 32.7826993991833], [-79.95705830887, 32.7826933984621], [-79.9570470574191, 32.7826818781159], [-79.9570341257977, 32.7826748075208], [-79.9570228476453, 32.7826655225901], [-79.9570123552411, 32.7826585611674], [-79.9570010771254, 32.7826492735294], [-79.9569905868159, 32.7826422264485], [-79.9569800933496, 32.7826352650139], [-79.9569688141836, 32.7826259764622], [-79.9569583238687, 32.7826189302803], [-79.9569470180528, 32.7826119619169], [-79.9569365256611, 32.7826050004877], [-79.9569203670268, 32.7825956712308], [-79.9569066496969, 32.7825862762109], [-79.9568905177366, 32.7825747151395], [-79.9568800263775, 32.7825676680401], [-79.9568687195071, 32.7825606996603], [-79.9568582292512, 32.7825536498629], [-79.9568477368735, 32.7825466884262], [-79.9568315505347, 32.7825396793388], [-79.9568153364401, 32.7825349038541], [-79.956804031714, 32.7825279354867], [-79.956790230205, 32.7825254973814], [-79.956774044953, 32.7825184873938], [-79.9567578596489, 32.7825113926312], [-79.9567367917496, 32.7825043400999], [-79.9567254859662, 32.7824973717161], [-79.9567150213231, 32.7824880909886], [-79.9567037176241, 32.7824810378483], [-79.9566932252675, 32.7824740763983], [-79.9566827328689, 32.7824670292729], [-79.9566689868318, 32.7824600400731], [-79.9566584945128, 32.7824530759151], [-79.9566415235394, 32.7824436540188], [-79.9566310578662, 32.7824344607531], [-79.9566205942753, 32.7824250934504], [-79.9566092885008, 32.7824181259577], [-79.9565931022157, 32.7824111159371], [-79.9565826930275, 32.7823971975413], [-79.9565714427123, 32.7823855905846], [-79.9565610057986, 32.7823739923682], [-79.9565424891281, 32.7823577700757], [-79.9565312665345, 32.7823438447377], [-79.9565209117956, 32.7823253725418], [-79.9565153554135, 32.7823138159495], [-79.9565048908147, 32.7823045352042], [-79.9564936682339, 32.7822906098629], [-79.9564889263766, 32.7822790575115], [-79.9564777027234, 32.7822651330614], [-79.9564672925471, 32.7822513003214], [-79.956456883398, 32.7822373819152], [-79.9564513270623, 32.7822258226149], [-79.9564408347564, 32.7822188611435], [-79.9564296132536, 32.7822049367073], [-79.9564158672346, 32.7821978618047], [-79.9564054293831, 32.7821863456337], [-79.956394938099, 32.7821792993947], [-79.9563828415398, 32.7821704357938], [-79.956378889449, 32.7821607813202], [-79.9563675837387, 32.7821538129036], [-79.9563571201989, 32.7821444464803], [-79.9563458689436, 32.7821329233652], [-79.9563354053764, 32.7821235596454], [-79.9563249664661, 32.7821120443602], [-79.9563194111909, 32.7821004877684], [-79.9563089199672, 32.7820934379151], [-79.9563008945693, 32.7820841806669], [-79.9562953382639, 32.7820726213597], [-79.9562848470565, 32.7820656598842], [-79.9562678185952, 32.7820608773786], [-79.9562573284696, 32.782053915008], [-79.9562468361999, 32.7820469535201], [-79.9562355304932, 32.7820398976134], [-79.9562250381946, 32.7820329388288], [-79.9562145736604, 32.782023658059], [-79.9561975750876, 32.7820165553809], [-79.956187110569, 32.7820072737069], [-79.9561790862918, 32.7819980137548], [-79.9561686772081, 32.7819840962261], [-79.9561524910388, 32.7819770861476], [-79.9561412408565, 32.7819654773484], [-79.9561308051177, 32.7819538791049], [-79.9561195261193, 32.7819445913772], [-79.9561090338738, 32.7819376298776], [-79.9560985426435, 32.7819305836133], [-79.9560872914176, 32.7819190631799], [-79.9560768002344, 32.7819120133069], [-79.9560663079962, 32.7819050518036], [-79.956052564178, 32.7818979777803], [-79.9560412574603, 32.7818910093247], [-79.9560308206762, 32.7818794110636], [-79.9560203561918, 32.7818701293756], [-79.9560090505478, 32.7818631609261], [-79.9559986138144, 32.7818515590553], [-79.9559881759624, 32.7818399616833], [-79.9559768713923, 32.78183299324], [-79.9559663802284, 32.7818259433575], [-79.9559550745945, 32.781818974903], [-79.9559445823663, 32.7818120142912], [-79.9559260392055, 32.7817980264217], [-79.9559147345921, 32.7817909731998], [-79.9558986306596, 32.7817770918178], [-79.9558881394764, 32.7817700446339], [-79.9558768327884, 32.7817630761631], [-79.9558557672649, 32.7817560244007], [-79.9558444626627, 32.7817489711724], [-79.9558340259648, 32.7817373692877], [-79.9558227192854, 32.781730400812], [-79.9558097601628, 32.7817257386487], [-79.955798455579, 32.7817186845145], [-79.9557879623188, 32.7817117229783], [-79.9557774711739, 32.7817046739816], [-79.9557661666489, 32.7816977046171], [-79.9557556744504, 32.7816907439891], [-79.9557444243146, 32.7816791387608], [-79.9557233566872, 32.7816720869574], [-79.9557120521172, 32.7816650328151], [-79.9557015610052, 32.7816580712899], [-79.9556877596537, 32.7816556339621], [-79.9556716290949, 32.7816439834587], [-79.9556553896415, 32.7816415253145], [-79.9556449241149, 32.7816322471925], [-79.9556311659729, 32.7816262876655], [-79.9557584871561, 32.7815236086466], [-79.9552340223574, 32.7810955576488], [-79.9550105905884, 32.781276185839], [-79.9546820065898, 32.7815423315996], [-79.9549658228181, 32.7821617746735], [-79.9548787511632, 32.782231983526], [-79.9551498820912, 32.7828240896562], [-79.9551815957092, 32.7828932506789], [-79.9552183457807, 32.7828813681325], [-79.9552929229912, 32.7831074913811], [-79.955293705609, 32.7831100727993], [-79.9552944871586, 32.7831127434901], [-79.9552960821459, 32.7831154202252], [-79.95529686471, 32.7831180061522], [-79.9552976463029, 32.7831206732359], [-79.9552984278527, 32.7831233439266], [-79.9552992094033, 32.7831259253358], [-79.9552999909532, 32.7831285960264], [-79.9553007725139, 32.7831312658154], [-79.9553015561458, 32.7831338517515], [-79.9553031511661, 32.7831365257813], [-79.9553039337413, 32.7831391108065], [-79.9553047153238, 32.7831417787919], [-79.9553054978992, 32.7831443638171], [-79.9553062804853, 32.7831469479406], [-79.9553078754953, 32.7831496228721], [-79.9553086570141, 32.7831522069864], [-79.9553094396644, 32.7831548749809], [-79.9553102222291, 32.7831574609078], [-79.9553118182754, 32.7831600492721], [-79.9553126008403, 32.783162635199], [-79.9553133824017, 32.7831653049879], [-79.9553149784373, 32.7831678942539], [-79.9553157610132, 32.783170479279], [-79.9553165436215, 32.7831730615989], [-79.9553181385576, 32.7831756535609], [-79.9553189222334, 32.78317823589], [-79.9553197048095, 32.7831808209151], [-79.9553213008457, 32.783183410181], [-79.9553220834218, 32.7831859952061], [-79.9553228660305, 32.7831885775259], [-79.9553244620452, 32.7831911685953], [-79.9553252446324, 32.7831937527186], [-79.9553268395799, 32.7831963437789], [-79.9553276232562, 32.7831989261078], [-79.9553292202748, 32.7832014333151], [-79.9553300028946, 32.7832040147332], [-79.9553307854605, 32.78320660066], [-79.9553323814974, 32.7832091899257], [-79.9553331651316, 32.7832116865801], [-79.9553347611364, 32.7832142785511], [-79.9553355436924, 32.783216776098], [-79.9553371407648, 32.7832193680781], [-79.9553379233742, 32.7832219503979], [-79.9553395204367, 32.7832244539981], [-79.9553403019463, 32.783227039014], [-79.9553418989982, 32.7832295435159], [-79.955343498196, 32.7832320471343], [-79.9553442786383, 32.783234632141], [-79.955345876758, 32.783237136652], [-79.9553466603929, 32.7832396333063], [-79.9553482563985, 32.7832422252771], [-79.9553498534509, 32.7832447297789], [-79.955350637086, 32.7832472264332], [-79.9553522341062, 32.7832497336402], [-79.9553530166739, 32.7832522302853], [-79.9553546147941, 32.7832547347962], [-79.9553562118469, 32.783257239298], [-79.95535699545, 32.7832597386574], [-79.9553585925137, 32.7832622422574], [-79.9553601895668, 32.7832647467591], [-79.9553617866307, 32.783267250359], [-79.9553625702556, 32.783269747915], [-79.9553641672766, 32.7832722551219], [-79.9553657653659, 32.7832746730562], [-79.9553665489909, 32.7832771706122], [-79.9553681460552, 32.7832796742121], [-79.955369744134, 32.7832820930482], [-79.9553713411554, 32.7832846002549], [-79.9553729382201, 32.7832871038547], [-79.9553737228704, 32.7832895157452], [-79.9553753199245, 32.7832920202467], [-79.9553769180037, 32.7832944390827], [-79.9553785150686, 32.7832969426824], [-79.955380113148, 32.7832993615184], [-79.9553808977987, 32.7833017734088], [-79.9553824958675, 32.7833041931465], [-79.9553840929004, 32.7833066994514], [-79.9553856910125, 32.783309115582], [-79.9553872890923, 32.783311534418], [-79.9553888871398, 32.7833139559591], [-79.9553904852197, 32.783316374795], [-79.9553920832998, 32.7833187936308], [-79.9553936814123, 32.7833212097614], [-79.9553952794925, 32.7833236285972], [-79.9553960641116, 32.7833260431927], [-79.9553976621919, 32.7833284620285], [-79.9553992602724, 32.7833308808642], [-79.9554008573179, 32.7833332969856], [-79.9554024564236, 32.7833356301559], [-79.9554040566393, 32.7833380490098], [-79.9554056547201, 32.7833404678455], [-79.9554072527478, 32.7833428019083], [-79.9554088508288, 32.7833452207439], [-79.9554104499242, 32.7833475548158], [-79.9554120480162, 32.7833499727497], [-79.955413647144, 32.7833523041163], [-79.9554160586546, 32.7833547298973], [-79.9554176577611, 32.7833570630673], [-79.955419256857, 32.7833593971391], [-79.9554208559528, 32.7833617312109], [-79.9554224540345, 32.7833641500463], [-79.9554240531414, 32.7833664832163], [-79.9554256522699, 32.7833688145828], [-79.955427251377, 32.7833711477528], [-79.9554288504733, 32.7833734818244], [-79.9554304496129, 32.7833758122891], [-79.9554328621496, 32.7833781524042], [-79.9554344612462, 32.7833804864758], [-79.9554360614003, 32.7833827321768], [-79.9554376605079, 32.7833850653466], [-79.9554392596047, 32.7833873994181], [-79.9554416731886, 32.7833896520641], [-79.9554432722964, 32.7833919852339], [-79.9554448713936, 32.7833943193053], [-79.9554464715482, 32.7833965650061], [-79.9554480706563, 32.7833988981758], [-79.9554504841975, 32.7834011544286], [-79.9554520843632, 32.7834033992276], [-79.9554536834608, 32.7834057332989], [-79.9554552835835, 32.7834079817048], [-79.9554576971683, 32.7834102343505], [-79.9554592973236, 32.7834124800511], [-79.9554608974358, 32.7834147293587], [-79.9554633099642, 32.7834169810934], [-79.9554649122223, 32.7834192295174], [-79.9554665123779, 32.7834214752179], [-79.9554689248636, 32.7834237305595], [-79.9554705250194, 32.78342597626], [-79.9554721251321, 32.7834282255674], [-79.9554745387287, 32.7834304773111], [-79.9554761398666, 32.783432640953], [-79.9554777400119, 32.7834348875551], [-79.9554801535765, 32.7834371420038], [-79.9554817547578, 32.7834393020387], [-79.9554841683119, 32.7834415573892], [-79.9554857694826, 32.7834437183256], [-79.9554873706641, 32.7834458783605], [-79.9554897842508, 32.7834481310056], [-79.9554913853894, 32.7834502946473], [-79.9554938000014, 32.7834524616268], [-79.9554954011725, 32.7834546225633], [-79.9554978157415, 32.7834567931498], [-79.9554994169236, 32.7834589531844], [-79.955501831536, 32.7834611201638], [-79.9555034327074, 32.7834632811001], [-79.9555058473201, 32.7834654480794], [-79.9555074484594, 32.783467611721], [-79.9555098630722, 32.7834697787002], [-79.955511464244, 32.7834719396364], [-79.9555138798712, 32.7834740218519], [-79.955515481054, 32.7834761818864], [-79.9555178966814, 32.7834782641017], [-79.9555194978213, 32.7834804277431], [-79.9555219134489, 32.7834825099583], [-79.9555243280625, 32.7834846769374], [-79.9555259291924, 32.7834867521988], [-79.9555283458879, 32.7834888344232], [-79.9555299480747, 32.7834909105954], [-79.9555323626995, 32.7834930766724], [-79.955534778317, 32.7834951597892], [-79.9555363805149, 32.7834972350597], [-79.9555387961434, 32.7834993172747], [-79.9555412127969, 32.7835013138242], [-79.955542814995, 32.7835033890945], [-79.955545230613, 32.7835054722111], [-79.9555492494653, 32.7835095440308], [-79.955551666162, 32.7835116262546], [-79.9555556839797, 32.7835156953597], [-79.9555580995768, 32.7835177802795], [-79.9555621194767, 32.7835217646298], [-79.9555645361206, 32.7835237620806], [-79.9555669517506, 32.783525844295], [-79.9555709716512, 32.783529828645], [-79.9555733883063, 32.7835318251939], [-79.9555758049508, 32.7835338226444], [-79.9555782226629, 32.783535820104], [-79.9555822425219, 32.7835397187791], [-79.9555846592099, 32.7835417126225], [-79.9555870779365, 32.7835436253182], [-79.9555894935249, 32.7835456218576], [-79.9555919102133, 32.7835476157009], [-79.9555959332226, 32.78355142963], [-79.9555983488006, 32.783553427071], [-79.9556007664711, 32.7835553388556], [-79.9556031841741, 32.7835572479349], [-79.9556056029122, 32.7835591597286], [-79.9556080195479, 32.7835610687987], [-79.9556104372189, 32.7835629805831], [-79.9556144602297, 32.7835667945116], [-79.9556168768765, 32.7835687026798], [-79.9556192945371, 32.7835706153658], [-79.9556217132549, 32.783572439681], [-79.9556241320371, 32.7835743478674], [-79.9556265496553, 32.7835761748786], [-79.9556289673594, 32.7835780839575], [-79.955631387102, 32.7835799118886], [-79.9556338047745, 32.783581734391], [-79.9556362224789, 32.7835836434697], [-79.9556386411651, 32.7835854704898], [-79.9556410609621, 32.7835872939121], [-79.9556434786242, 32.7835891173161], [-79.955645897343, 32.7835909416308], [-79.9556483160728, 32.7835927650438], [-79.955650735827, 32.7835945920728], [-79.9556531534895, 32.7835964154767], [-79.9556555732336, 32.7835981541258], [-79.9556579930204, 32.7835999784494], [-79.9556604117507, 32.7836018018622], [-79.9556628303845, 32.783603544109], [-79.955665249115, 32.7836053675217], [-79.9556676699271, 32.7836071061797], [-79.9556700896717, 32.7836088448285], [-79.9556733207558, 32.7836106760773], [-79.955675741579, 32.7836124138335], [-79.955678161324, 32.7836141524822], [-79.9556805799908, 32.7836158920234], [-79.955682999736, 32.783617630672], [-79.9556854205595, 32.7836193684279], [-79.9556878413617, 32.7836211079873], [-79.9556902589722, 32.7836228466175], [-79.955693494231, 32.7836245074549], [-79.9556975459749, 32.7836258307611], [-79.9557007534255, 32.7836296377252], [-79.9557031752962, 32.7836312880118], [-79.9557055950422, 32.7836330266599], [-79.9557088281776, 32.7836346865769], [-79.9557112499945, 32.783636341372], [-79.9557136707656, 32.7836379943546], [-79.9557160905017, 32.7836396446228], [-79.9557185112622, 32.783641298507], [-79.955721746533, 32.7836429584418], [-79.9557241673369, 32.7836446087189], [-79.9557265870303, 32.7836462625938], [-79.9557290077911, 32.7836479164778], [-79.9557314306444, 32.7836494847054], [-79.9557346638131, 32.7836511419164], [-79.9557370855991, 32.7836527101348], [-79.9557395074602, 32.7836543613224], [-79.9557419292463, 32.7836559295407], [-79.9557451634295, 32.7836575019878], [-79.9557475862833, 32.783659070215], [-79.955750008102, 32.7836606357279], [-79.9557524288318, 32.7836622030351], [-79.9557556640828, 32.783663775491], [-79.955758086937, 32.7836653437181], [-79.9557605087561, 32.7836669092308], [-79.9557629294647, 32.7836684783412], [-79.9557661657836, 32.783670050806], [-79.9557685885846, 32.78367153426], [-79.9557710093365, 32.7836730997633], [-79.9557734311345, 32.7836746670793], [-79.9557758550356, 32.783676147837], [-79.9557790891877, 32.7836777229884], [-79.9557815120214, 32.783679203737], [-79.9557839349089, 32.7836807692583], [-79.9557863577644, 32.7836822482033], [-79.95578959292, 32.7836837394924], [-79.9557920158185, 32.7836853041118], [-79.9557944386634, 32.7836867839584], [-79.9557968614761, 32.7836882665101], [-79.9558000966645, 32.7836897550938], [-79.9558025195526, 32.7836913206147], [-79.9558049423655, 32.7836928031663], [-79.955808177565, 32.7836942908479], [-79.955810601478, 32.7836957707033], [-79.9558130243128, 32.7836972514512], [-79.95581544814, 32.7836986492389], [-79.9558186844182, 32.7837001360277], [-79.9558211072532, 32.7837016167754], [-79.9558235300991, 32.7837030966214], [-79.955826765267, 32.7837045870078], [-79.9558291901944, 32.7837059820991], [-79.9558316130298, 32.7837074628467], [-79.9558348492657, 32.7837088639604], [-79.9558372731688, 32.783710344717], [-79.955839697029, 32.7837117397989], [-79.9558429333081, 32.7837132265871], [-79.9558453571686, 32.7837146216689], [-79.9558477799721, 32.7837161051214], [-79.9558510173085, 32.7837175035386], [-79.9558534400909, 32.7837188995129], [-79.9558558650192, 32.7837202946037], [-79.9558591023127, 32.7837216966276], [-79.9558615251274, 32.7837231791781], [-79.9558639489885, 32.7837245742595], [-79.9558671862715, 32.7837259771851], [-79.9558696101435, 32.7837273713647], [-79.9558720340047, 32.783728766446], [-79.9558752723127, 32.7837300837059], [-79.9558776961741, 32.7837314787871], [-79.9558809334684, 32.7837328808105], [-79.9558857822486, 32.7837355826019], [-79.9558890195432, 32.7837369846251], [-79.9558938682807, 32.7837396900232], [-79.9558995304622, 32.7837424014615], [-79.9559027677573, 32.7837438034844], [-79.9559076175526, 32.7837464205112], [-79.9559108558617, 32.7837477377701], [-79.9559414634141, 32.7837053070742], [-79.9559455090075, 32.7837071452669], [-79.9559487401548, 32.7837090612812], [-79.9559527857161, 32.7837109021788], [-79.9559560178882, 32.7837127325276], [-79.9559600634931, 32.7837145698179], [-79.9559641090335, 32.7837163232371], [-79.955967343341, 32.7837181536037], [-79.9559713878357, 32.7837199944916], [-79.9559746200085, 32.7837218248398], [-79.9559786666279, 32.7837235773659], [-79.9559827122229, 32.7837254155573], [-79.9559859454207, 32.7837271602397], [-79.9559899920405, 32.7837289127654], [-79.955994037636, 32.7837307509565], [-79.9559972697236, 32.7837324992365], [-79.9560013174438, 32.7837342490656], [-79.9560053640642, 32.7837360015908], [-79.9560085972197, 32.7837377498797], [-79.9560126438405, 32.7837395024046], [-79.9560166904938, 32.7837412522241], [-79.9560199247065, 32.783742912142], [-79.956023971317, 32.7837446655683], [-79.9560280179384, 32.7837464180927], [-79.9560312521515, 32.7837480780103], [-79.9560352997977, 32.7837497448691], [-79.9560393464087, 32.7837514982948], [-79.9560425806223, 32.7837531582121], [-79.9560466282905, 32.783754823267], [-79.9560506759372, 32.7837564901252], [-79.9560547235841, 32.7837581569832], [-79.9560579578198, 32.7837598150966], [-79.956062005467, 32.7837614819545], [-79.9560660531036, 32.7837631497139], [-79.9560692873073, 32.7837648105323], [-79.9560733360009, 32.7837663899208], [-79.9560773836487, 32.7837680567781], [-79.9560814323642, 32.7837697236444], [-79.9560846665577, 32.7837712960825], [-79.9560887152195, 32.7837728781757], [-79.9560927628572, 32.7837745459343], [-79.9560968115517, 32.7837761253221], [-79.9561008602141, 32.7837777074149], [-79.9561040954757, 32.7837792798616], [-79.9561081452165, 32.7837808610616], [-79.9561121928333, 32.7837824413415], [-79.9561162425422, 32.7837839359649], [-79.9561202912052, 32.7837855180571], [-79.9561235264674, 32.7837870905032], [-79.9561275761551, 32.7837885869297], [-79.956131624851, 32.7837901663164], [-79.9561356756279, 32.7837916609482], [-79.9561397232242, 32.7837932430307], [-79.9561429595114, 32.7837947298109], [-79.9561470092214, 32.7837962244333], [-79.9561510589099, 32.783797720859], [-79.9561551096876, 32.7837992154901], [-79.9561591583412, 32.7838007092013], [-79.9561632091299, 32.7838022029305], [-79.9561664443396, 32.7838036906027], [-79.956170496153, 32.7838050986663], [-79.956174544764, 32.7838065959838], [-79.9561785954886, 32.7838080058414], [-79.9561826451997, 32.7838095004626], [-79.9561866970136, 32.7838109085256], [-79.9561907477494, 32.7838123174811], [-79.9561947964042, 32.783813811191], [-79.9561980347741, 32.7838152132152], [-79.956202084432, 32.7838166230629], [-79.9562061351682, 32.7838180320178], [-79.9562101859046, 32.7838194409727], [-79.9562142366518, 32.7838208490256], [-79.956218288402, 32.7838221732165], [-79.9562223391387, 32.7838235821709], [-79.9562263919566, 32.7838249063706], [-79.9562304416261, 32.7838263153156], [-79.9562344944874, 32.783827635908], [-79.9562385441572, 32.7838290448529], [-79.9562417824743, 32.783830362103], [-79.9562458353036, 32.7838316854003], [-79.9562498870654, 32.7838330086884], [-79.9562539388275, 32.7838343319763], [-79.9562579895329, 32.7838356543532], [-79.9562620423626, 32.7838369776499], [-79.9562660930467, 32.7838383018301], [-79.9562701469225, 32.7838395376576], [-79.9562741976176, 32.7838408609358], [-79.9562782514613, 32.7838420994683], [-79.9562823032457, 32.7838434209518], [-79.9562863549654, 32.7838446585641], [-79.9562904077852, 32.7838459827616], [-79.9562944595267, 32.7838472185702], [-79.9562985134034, 32.7838484543968], [-79.9563025651127, 32.7838496929102], [-79.9563066189895, 32.7838509287366], [-79.9563106706991, 32.7838521672498], [-79.9563147255896, 32.7838533183121], [-79.9563187783669, 32.7838545568342], [-79.9563228311767, 32.7838557926509], [-79.9563268850107, 32.783856942802], [-79.9563309367209, 32.7838581813145], [-79.9563349916119, 32.7838593323762], [-79.9563390443465, 32.783860485223], [-79.956343097146, 32.7838617219407], [-79.9563471520482, 32.7838628721003], [-79.9563512058829, 32.7838640222506], [-79.9563552596745, 32.7838651760077], [-79.9563593135095, 32.7838663261577], [-79.9563633673338, 32.7838674772093], [-79.956367422193, 32.7838685416936], [-79.9563714760175, 32.783869692745], [-79.9563755297663, 32.7838707608269], [-79.9563795846692, 32.7838719109853], [-79.9563836395074, 32.7838729772726], [-79.9563876933538, 32.78387412652], [-79.9563917481921, 32.7838751928069], [-79.9563958030413, 32.783876258192], [-79.9564006713248, 32.7838773305158], [-79.9564047250959, 32.7838783967932], [-79.9564087810236, 32.7838794612852], [-79.9564128358733, 32.7838805266698], [-79.9564168917362, 32.7838815072904], [-79.9564209465968, 32.7838825717729], [-79.9564250014467, 32.7838836371571], [-79.95642905731, 32.7838846177773], [-79.9564331132057, 32.7838855956923], [-79.9564371680666, 32.7838866601743], [-79.9564412239194, 32.7838876416959], [-79.9564452797938, 32.7838886214139], [-79.9564501491349, 32.783889605365], [-79.9564542050095, 32.7838905850827], [-79.9564582608627, 32.7838915666037], [-79.9564623167375, 32.7838925463211], [-79.9564663715772, 32.7838935233241], [-79.9564704295329, 32.7838944182866], [-79.956474485408, 32.7838953980037], [-79.9564785423287, 32.7838962902516], [-79.9564834116275, 32.7838972778083], [-79.9564874685161, 32.7838981727612], [-79.9564915254371, 32.7838990650087], [-79.9564955823582, 32.7838999572561], [-79.956499639247, 32.7839008522086], [-79.9565036961251, 32.7839017480627], [-79.9565077530572, 32.7839026394079], [-79.9565118099463, 32.7839035343599], [-79.9565166803022, 32.7839044335447], [-79.956520738237, 32.7839052410275], [-79.9565247951263, 32.7839061359791], [-79.956528853072, 32.78390694256], [-79.9565329110613, 32.7839078348152], [-79.9565369679074, 32.7839086440918], [-79.956541839277, 32.7839094585119], [-79.9565458972122, 32.7839102659939], [-79.956549954102, 32.7839111609447], [-79.9565540130721, 32.7839118818592], [-79.9565580710076, 32.7839126893408], [-79.956562128954, 32.7839134959205], [-79.956567000281, 32.7839143139465], [-79.9565710592837, 32.7839150321552], [-79.9565751171979, 32.7839158414397], [-79.9565791761577, 32.7839165632551], [-79.9565832340828, 32.7839173716376], [-79.9565872930535, 32.783918092551], [-79.956592165448, 32.7839188213036], [-79.9565962254756, 32.7839195431275], [-79.9566002833682, 32.7839202649331], [-79.9566043423284, 32.7839209867477], [-79.9566084012886, 32.7839217085621], [-79.9566132736836, 32.7839224373139], [-79.9566173326332, 32.7839231600298], [-79.956621393685, 32.7839237961874], [-79.956625451578, 32.7839245179922], [-79.9566295126623, 32.7839251514443], [-79.95663438399, 32.7839258801861], [-79.9566384439639, 32.7839265172358], [-79.9566425039377, 32.7839271542854], [-79.9566465639224, 32.7839277904331], [-79.9566506239503, 32.7839284229738], [-79.9566554973482, 32.7839290678618], [-79.9566595573331, 32.7839297040091], [-79.9566636173072, 32.783930341058], [-79.9566676794052, 32.7839308897452], [-79.9566717383119, 32.7839315267847], [-79.9566766138231, 32.783932084212], [-79.9566806727623, 32.783932718546], [-79.9566847348281, 32.7839332699378], [-79.9566887947912, 32.7839338186061], [-79.956693669268, 32.7839344626], [-79.956697729199, 32.7839350139732], [-79.9567017902405, 32.7839355617484], [-79.9567058512391, 32.7839361131304], [-79.9567107267285, 32.7839365830784], [-79.9567147877595, 32.7839371317549], [-79.9567188487474, 32.7839376840382], [-79.9567229108023, 32.783938147049], [-79.9567277852682, 32.7839387026617], [-79.9567318483475, 32.7839391692883], [-79.956735909335, 32.7839396322895], [-79.9567399714015, 32.7839401836795], [-79.956744032389, 32.7839406466805], [-79.9567489089356, 32.7839411175377], [-79.9567529709693, 32.783941582351], [-79.9567570330353, 32.7839420444589], [-79.9567610949929, 32.7839424263025], [-79.9567659715505, 32.7839428962573], [-79.9567700325276, 32.7839433601592], [-79.9567740966742, 32.7839437375119], [-79.9567789710862, 32.7839442083498], [-79.956783035222, 32.783944586604], [-79.9567870982905, 32.7839449648488], [-79.9567911592786, 32.7839454278482], [-79.9567960368063, 32.7839458166452], [-79.9568000988505, 32.7839461912735], [-79.9568041629435, 32.7839465731339], [-79.9568082260007, 32.7839468629983], [-79.9568131035717, 32.7839472481876], [-79.9568171655729, 32.7839476264225], [-79.9568212307328, 32.7839479190098], [-79.9568252927233, 32.7839482981461], [-79.9568301713181, 32.7839485976692], [-79.9568342333303, 32.7839489750017], [-79.9568382984688, 32.7839492693921], [-79.9568423625936, 32.7839495592645], [-79.9568472401211, 32.7839498587777], [-79.9568513052705, 32.7839501522659], [-79.956855368328, 32.7839504421287], [-79.9568602458555, 32.7839507416415], [-79.9568643099374, 32.7839510351202], [-79.9568683750754, 32.783951240228], [-79.9568724391573, 32.7839515337063], [-79.9568773176979, 32.7839517484547], [-79.9568813817907, 32.783952041031], [-79.9568854469287, 32.7839522461383], [-79.9568903255016, 32.7839524581809], [-79.9568943905966, 32.7839526668948], [-79.9568984546456, 32.783952873796], [-79.9569025208512, 32.7839530789117], [-79.9569073983567, 32.7839532909446], [-79.9569114655868, 32.7839534996761], [-79.9569155306918, 32.783953618206], [-79.9569195957976, 32.7839538260173], [-79.95692447436, 32.7839540389603], [-79.9569285405217, 32.7839541584007], [-79.9569326066404, 32.7839542814479], [-79.9569374852136, 32.7839544934886], [-79.9569415513323, 32.7839546165355], [-79.9569456174941, 32.7839547359752], [-79.956949683656, 32.7839548554148], [-79.956954563242, 32.7839549826912], [-79.9569586294038, 32.7839551021305], [-79.9569626965785, 32.783955136806], [-79.9569675761322, 32.783955266787], [-79.9569716412266, 32.7839553862168], [-79.9569757094688, 32.783955420901], [-79.9569797766434, 32.7839554555759], [-79.9569846562403, 32.7839555819493]]], "type": "Polygon"}, "id": "218", "properties": {"OBJECTID": 2419, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 68449.78515625, "Shape__Length": 1206.88613244249, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9288160940495, 32.783421300494, -79.9286049331058, 32.7836629630692], "geometry": {"coordinates": [[[-79.9287071316399, 32.783421300494], [-79.9286477977311, 32.7834577192158], [-79.9286049331058, 32.7834860988798], [-79.928652634104, 32.7835624485092], [-79.9287187986455, 32.7836629630692], [-79.9288160940495, 32.7836236355008], [-79.9287060585271, 32.7834517632373], [-79.9287207096526, 32.783445816764], [-79.9287071316399, 32.783421300494]]], "type": "Polygon"}, "id": "219", "properties": {"OBJECTID": 2429, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 344.240234375, "Shape__Length": 84.1361736022051, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9287659580003, 32.7864456993985, -79.9283597020026, 32.7871523379681], "geometry": {"coordinates": [[[-79.9287659580003, 32.7871145925747], [-79.9287360843651, 32.7868627060074], [-79.9287316353817, 32.7868252173917], [-79.928716589403, 32.7866984317379], [-79.928712349864, 32.7866626692673], [-79.9287058773914, 32.7866080686237], [-79.9286866303445, 32.7864456993985], [-79.9283597020026, 32.7865660026997], [-79.9283938608065, 32.7867636390455], [-79.9284619424794, 32.7871523379681], [-79.9287659580003, 32.7871145925747]]], "type": "Polygon"}, "id": "220", "properties": {"OBJECTID": 2430, "ORDNO": "2018-034", "ORDSTAT": null, "Shape__Area": 3025.505859375, "Shape__Length": 241.41613335487, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9290647497892, 32.7866586501204, -79.928716589403, 32.7868627060074], "geometry": {"coordinates": [[[-79.928716589403, 32.7866984317379], [-79.9287316353817, 32.7868252173917], [-79.9287360843651, 32.7868627060074], [-79.9290647497892, 32.7868219029534], [-79.9290370699347, 32.7866586501204], [-79.9289615204409, 32.7866680280038], [-79.928716589403, 32.7866984317379]]], "type": "Polygon"}, "id": "221", "properties": {"OBJECTID": 2431, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 797.50390625, "Shape__Length": 116.741890451449, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9281919260753, 32.7840000490971, -79.9262426769481, 32.7870850411199], "geometry": {"coordinates": [[[-79.9281919260753, 32.7865519163054], [-79.9281392581166, 32.7862977619856], [-79.9279893776981, 32.7854503476689], [-79.9279761386634, 32.7852829401163], [-79.9280054371995, 32.7852820145334], [-79.9278586078385, 32.7840000490971], [-79.9276074964529, 32.784031371263], [-79.9273199608385, 32.7840608052605], [-79.9266993472806, 32.7841184997255], [-79.9262426769481, 32.7841548325292], [-79.9262699479434, 32.7844351200402], [-79.926297715379, 32.784594159999], [-79.9263340524861, 32.7847606837472], [-79.9263610597067, 32.7848772116675], [-79.926398117989, 32.7849968345081], [-79.9264481198657, 32.7851910635138], [-79.9264772257119, 32.7853467089478], [-79.9265320110272, 32.7857812516911], [-79.9265590992639, 32.7859960335741], [-79.9266894594994, 32.7870850411199], [-79.9273608861954, 32.7868449942456], [-79.9275159478116, 32.786789398142], [-79.9281919260753, 32.7865519163054]]], "type": "Polygon"}, "id": "222", "properties": {"OBJECTID": 2432, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 63056.564453125, "Shape__Length": 1097.82195750317, "ZONE_BASE": "LI", "__folium_color": "#8c564b"}, "type": "Feature"}, {"bbox": [-79.9289631353831, 32.7839204899241, -79.927843780306, 32.7852820145334], "geometry": {"coordinates": [[[-79.9289631353831, 32.7852521942777], [-79.9289469998202, 32.7849308838804], [-79.9287582601897, 32.7845357954222], [-79.9283954969813, 32.7839204899241], [-79.9280482895124, 32.7839762208393], [-79.927843780306, 32.7840018310469], [-79.9278586078385, 32.7840000490971], [-79.9280054371995, 32.7852820145334], [-79.9289631353831, 32.7852521942777]]], "type": "Polygon"}, "id": "223", "properties": {"OBJECTID": 2433, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16052.2421875, "Shape__Length": 531.138943653146, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9276425589871, 32.7831553753807, -79.926108062882, 32.7840477607577], "geometry": {"coordinates": [[[-79.9275308550174, 32.7831553753807], [-79.926108062882, 32.7833035150821], [-79.9262009210903, 32.7840477607577], [-79.9266860487438, 32.7840091174657], [-79.9273050335969, 32.7839515828493], [-79.9276273745995, 32.7839177590215], [-79.9276425589871, 32.7839159540728], [-79.9276425116574, 32.7839156353097], [-79.9275994072963, 32.7836221138036], [-79.9275308550174, 32.7831553753807]]], "type": "Polygon"}, "id": "224", "properties": {"OBJECTID": 2434, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16175.43359375, "Shape__Length": 521.592246003231, "ZONE_BASE": "LI", "__folium_color": "#8c564b"}, "type": "Feature"}, {"bbox": [-79.9283492660204, 32.7831147609868, -79.9275308550174, 32.7839156353097], "geometry": {"coordinates": [[[-79.9283492660204, 32.7838163178945], [-79.9282351755129, 32.7836124296655], [-79.9280342163002, 32.7833756189184], [-79.927920901462, 32.7831147609868], [-79.9275308550174, 32.7831553753807], [-79.9275994072963, 32.7836221138036], [-79.9276425116574, 32.7839156353097], [-79.9280288516389, 32.7838676191469], [-79.9281935952464, 32.7838433088159], [-79.9283492660204, 32.7838163178945]]], "type": "Polygon"}, "id": "225", "properties": {"OBJECTID": 2435, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6089.33984375, "Shape__Length": 330.093809089391, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9350262732163, 32.7922022405248, -79.9307171754025, 32.8003427355627], "geometry": {"coordinates": [[[-79.9350262732163, 32.8002109237446], [-79.9349939416528, 32.8001597643031], [-79.9349869427643, 32.8000533903184], [-79.9347151279232, 32.7995149965861], [-79.9347625385019, 32.7994967818883], [-79.9345915689613, 32.7991569890342], [-79.9334495804411, 32.7968872711629], [-79.9334128377731, 32.7969011367817], [-79.9333333311924, 32.7967384837071], [-79.9333630520069, 32.7967272524919], [-79.9329580979974, 32.7958984507161], [-79.9327034297088, 32.7953210424927], [-79.9321771879071, 32.7942749088004], [-79.9318485120748, 32.7943989446001], [-79.9314271463183, 32.7935665873228], [-79.9317596840539, 32.7934440086018], [-79.9314420312346, 32.7928112883187], [-79.9311334740543, 32.7922022405248], [-79.9307171754025, 32.7924161143403], [-79.9308590820113, 32.7927382297656], [-79.9315317939482, 32.7940788237655], [-79.9332522920546, 32.7974986588942], [-79.9341284797956, 32.7992401032472], [-79.9346829577578, 32.8003427355627], [-79.9350262732163, 32.8002109237446]]], "type": "Polygon"}, "id": "226", "properties": {"OBJECTID": 2436, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 55611.91796875, "Shape__Length": 2476.330726445, "ZONE_BASE": "LI", "__folium_color": "#8c564b"}, "type": "Feature"}, {"bbox": [-79.9329022846496, 32.7917338689193, -79.9312821259157, 32.7940215988902], "geometry": {"coordinates": [[[-79.9329022846496, 32.7937768591128], [-79.9328650197146, 32.7937039371518], [-79.9328340626393, 32.7936433577214], [-79.9328031159855, 32.7935828027239], [-79.9327721464604, 32.7935222006234], [-79.932741189503, 32.7934616220725], [-79.9327102440457, 32.793401067062], [-79.9326792861176, 32.7933404875851], [-79.9326434408688, 32.7932697234103], [-79.9326582853838, 32.7932640531945], [-79.9325750937376, 32.7930997189435], [-79.9327677741764, 32.7930260846742], [-79.9325133291587, 32.7925246262629], [-79.932488151693, 32.7924864455855], [-79.9324396061141, 32.7924350051226], [-79.9321128034456, 32.7921477581481], [-79.9316586389096, 32.7917338689193], [-79.9312821259157, 32.7920780015827], [-79.9314468960743, 32.7923987991176], [-79.9322619054492, 32.7940215988902], [-79.9329022846496, 32.7937768591128]]], "type": "Polygon"}, "id": "227", "properties": {"OBJECTID": 2442, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 25169.9609375, "Shape__Length": 755.731332880395, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9332903800265, 32.776357175726, -79.9327943106819, 32.7766515538966], "geometry": {"coordinates": [[[-79.932810781805, 32.7765320613129], [-79.9329611153504, 32.7765176510151], [-79.9329780963606, 32.7766515538966], [-79.9332757248523, 32.7766246280159], [-79.9332677416105, 32.7765617482975], [-79.9332903800265, 32.7765596920188], [-79.9332647061031, 32.776357175726], [-79.932955658237, 32.7763868066714], [-79.9327943106819, 32.7764022301318], [-79.932810781805, 32.7765320613129]]], "type": "Polygon"}, "id": "228", "properties": {"OBJECTID": 2462, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1532.95703125, "Shape__Length": 175.857595134358, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9340521674634, 32.7766190621834, -79.93282744901, 32.7777166464302], "geometry": {"coordinates": [[[-79.93282744901, 32.7766633218087], [-79.932961141699, 32.7777166464302], [-79.9340521674634, 32.7776147137558], [-79.9340192568802, 32.7773011547391], [-79.9339980005385, 32.777303140229], [-79.9339571736066, 32.7769587109469], [-79.933920882437, 32.7766664229015], [-79.9337604105928, 32.7766840638652], [-79.9337777926222, 32.7768320856439], [-79.9335951125162, 32.7768486084461], [-79.933581937575, 32.7767268315412], [-79.9333534869139, 32.7767475173504], [-79.9333371924211, 32.7766190621834], [-79.9332757248523, 32.7766246280159], [-79.9329780963606, 32.7766515538966], [-79.93282744901, 32.7766633218087]]], "type": "Polygon"}, "id": "229", "properties": {"OBJECTID": 2463, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15612.341796875, "Shape__Length": 565.327878204524, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9329780963606, 32.7765176510151, -79.932810781805, 32.7766635105049], "geometry": {"coordinates": [[[-79.9329780963606, 32.7766515538966], [-79.9329611153504, 32.7765176510151], [-79.932810781805, 32.7765320613129], [-79.9328274733915, 32.7766635105049], [-79.9329780963606, 32.7766515538966]]], "type": "Polygon"}, "id": "230", "properties": {"OBJECTID": 2464, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 297.52734375, "Shape__Length": 69.0170525660696, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9389466545289, 32.7909343369721, -79.937436884003, 32.7923001442967], "geometry": {"coordinates": [[[-79.938418977028, 32.7909343369721], [-79.9378854429989, 32.7911246591595], [-79.937436884003, 32.7913020749701], [-79.9380964080593, 32.7923001442967], [-79.9389466545289, 32.7917178597275], [-79.938418977028, 32.7909343369721]]], "type": "Polygon"}, "id": "231", "properties": {"OBJECTID": 2477, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16255.443359375, "Shape__Length": 512.202351128383, "ZONE_BASE": "MU-2", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9393929927468, 32.7907429134561, -79.938418977028, 32.7917178597275], "geometry": {"coordinates": [[[-79.938418977028, 32.7909343369721], [-79.9389466545289, 32.7917178597275], [-79.939023336958, 32.791665344342], [-79.9391468876055, 32.7915807322222], [-79.9390277149416, 32.7914069648205], [-79.9393929927468, 32.7911898304233], [-79.9392660932775, 32.7910396045395], [-79.9391239038713, 32.7911142702362], [-79.9390708638855, 32.7910411773641], [-79.9391074024795, 32.7910240580979], [-79.9390408192725, 32.790923346294], [-79.9390387507323, 32.7909202179246], [-79.9390344633413, 32.7909219357191], [-79.9390259314595, 32.7909253554465], [-79.9389202062084, 32.7907429134561], [-79.9385254681666, 32.790893667328], [-79.938418977028, 32.7909343369721]]], "type": "Polygon"}, "id": "232", "properties": {"OBJECTID": 2478, "ORDNO": "2015-177", "ORDSTAT": null, "Shape__Area": 6266.8046875, "Shape__Length": 388.867232300202, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.929122901313, 32.7760539104448, -79.9281059775697, 32.7764031378946], "geometry": {"coordinates": [[[-79.9282039757786, 32.7763977655847], [-79.9282104911117, 32.77639713547], [-79.9282618004108, 32.7763920874144], [-79.9282732022366, 32.7763909851591], [-79.9283489419009, 32.7763837468043], [-79.9284303824911, 32.7763759550133], [-79.9284336348877, 32.7763760691776], [-79.9285344611905, 32.7763794450106], [-79.928534500212, 32.7763762654807], [-79.9285573038574, 32.7763741474943], [-79.9286248961925, 32.7763678648], [-79.9286476998335, 32.7763657467967], [-79.9287120703258, 32.7763569458702], [-79.9288049505996, 32.7763449603729], [-79.9289257700812, 32.7763326152036], [-79.9289137574379, 32.7762352353543], [-79.9289811679876, 32.7762292277362], [-79.929122901313, 32.7762165965222], [-79.9291087431773, 32.7760539104448], [-79.9289653515541, 32.7760722555792], [-79.9288912104592, 32.7760817421556], [-79.9288040248941, 32.77608517768], [-79.9287100465721, 32.7760963680593], [-79.9286365936772, 32.7761143170192], [-79.9285463536601, 32.7761258619685], [-79.9284306314886, 32.7761406674287], [-79.928340391417, 32.776152212226], [-79.9282679790859, 32.776161476388], [-79.928204992772, 32.776169534371], [-79.9281059775697, 32.7761819553523], [-79.9281211656778, 32.7761802586104], [-79.9281444916985, 32.7764031378946], [-79.9281584314277, 32.7764020894512], [-79.928203635819, 32.7763977184161], [-79.9282039107229, 32.7763971517665], [-79.9282039757786, 32.7763977655847]]], "type": "Polygon"}, "id": "233", "properties": {"OBJECTID": 2600, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3301.947265625, "Shape__Length": 290.451585855034, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9291549154217, 32.7761802586104, -79.9271459485547, 32.7767593421157], "geometry": {"coordinates": [[[-79.9291549154217, 32.7765685312429], [-79.9291453631215, 32.7764659296826], [-79.9291408366548, 32.7764133770861], [-79.929130616448, 32.7763202353433], [-79.929122901313, 32.7762165965222], [-79.9289665958504, 32.7762311851972], [-79.9289137574379, 32.7762352353543], [-79.9289257700812, 32.7763326152036], [-79.9288049505996, 32.7763449603729], [-79.9287120703258, 32.7763569458702], [-79.9286476998335, 32.7763657467967], [-79.9286248961925, 32.7763678648], [-79.9285573038574, 32.7763741474943], [-79.928534500212, 32.7763762654807], [-79.9285344611905, 32.7763794450106], [-79.9284336348877, 32.7763760691776], [-79.9284303824911, 32.7763759550133], [-79.9283489419009, 32.7763837468043], [-79.9282732022366, 32.7763909851591], [-79.9282618004108, 32.7763920874144], [-79.9282104911117, 32.77639713547], [-79.9282039757786, 32.7763977655847], [-79.9282039107229, 32.7763971517665], [-79.928203635819, 32.7763977184161], [-79.9281584314277, 32.7764020894512], [-79.9281444916985, 32.7764031378946], [-79.9281211656778, 32.7761802586104], [-79.9271850758488, 32.7762972284892], [-79.9271459485547, 32.7767593421157], [-79.9278998049587, 32.7766867592248], [-79.9279006469003, 32.7766949579756], [-79.9284730183457, 32.7766398285675], [-79.9284721742161, 32.776631629802], [-79.9291549154217, 32.7765685312429]]], "type": "Polygon"}, "id": "234", "properties": {"OBJECTID": 2601, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10901.939453125, "Shape__Length": 594.777282812962, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9498886710174, 32.7892076328559, -79.9492759693038, 32.7896898601105], "geometry": {"coordinates": [[[-79.9497628426629, 32.7896898601105], [-79.9498886710174, 32.7896398773635], [-79.9496526460253, 32.7892076328559], [-79.9492759693038, 32.7893833793838], [-79.9494016320452, 32.7896531069897], [-79.9494907070444, 32.7896115315935], [-79.9495769023894, 32.7895712904752], [-79.9496009638252, 32.7896229097539], [-79.9497024549254, 32.7895755500151], [-79.9497628426629, 32.7896898601105]]], "type": "Polygon"}, "id": "235", "properties": {"OBJECTID": 2843, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2331.21484375, "Shape__Length": 223.929384580975, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.950490301632, 32.78912320792, -79.9494016320452, 32.7906904747377], "geometry": {"coordinates": [[[-79.9495769023894, 32.7895712904752], [-79.9494907070444, 32.7896115315935], [-79.9494016320452, 32.7896531069897], [-79.9494243312343, 32.789702758527], [-79.9494409875629, 32.7897383779287], [-79.9494648040587, 32.7897874582708], [-79.9495060955732, 32.7898717393646], [-79.9495497656549, 32.789961192147], [-79.9495918667339, 32.7900458201543], [-79.9496347389715, 32.7901339800402], [-79.9496673057076, 32.7901997138939], [-79.9496823083433, 32.7902291252645], [-79.9499151975287, 32.7905872354422], [-79.9499823369686, 32.7906904747377], [-79.9502241912426, 32.7905937315541], [-79.9502490891156, 32.7905639564633], [-79.9504558781279, 32.7903166617752], [-79.9504083644123, 32.7902436303255], [-79.950490301632, 32.7902062631532], [-79.9503637927039, 32.7899828548757], [-79.9502897655463, 32.7900166283775], [-79.9502436553806, 32.7899334497364], [-79.9502070904184, 32.789867490546], [-79.9501696267916, 32.7897999111529], [-79.9500925020972, 32.7896607852426], [-79.9501145928159, 32.7896520493483], [-79.9498335935367, 32.78912320792], [-79.9496526460253, 32.7892076328559], [-79.9498886710174, 32.7896398773635], [-79.9497628426629, 32.7896898601105], [-79.9497024549254, 32.7895755500151], [-79.9496009638252, 32.7896229097539], [-79.9495769023894, 32.7895712904752]]], "type": "Polygon"}, "id": "236", "properties": {"OBJECTID": 2844, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11354.0234375, "Shape__Length": 582.311084031069, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9357795506077, 32.7804406059293, -79.934926700222, 32.7806043271628], "geometry": {"coordinates": [[[-79.9354207045445, 32.7806043271628], [-79.9357696201628, 32.7804667803839], [-79.9357728894509, 32.7804654344274], [-79.9357753590043, 32.7804631354887], [-79.9357778274791, 32.7804608374424], [-79.9357786712301, 32.7804583548154], [-79.9357795160693, 32.7804557829162], [-79.9357795506077, 32.7804529496505], [-79.9357787686016, 32.7804503672064], [-79.9357771711176, 32.7804479481152], [-79.9357755725892, 32.7804456146892], [-79.9357731543825, 32.7804437016025], [-79.9357699227559, 32.7804419581992], [-79.9357666806742, 32.7804409848722], [-79.93576261786, 32.7804406059293], [-79.934926700222, 32.780478686259], [-79.9349414656233, 32.7806019937811], [-79.9349414899115, 32.7806021905926], [-79.9349423828876, 32.7806019756136], [-79.9351201631362, 32.7805658328397], [-79.9354144647602, 32.780506000781], [-79.9354207045445, 32.7806043271628]]], "type": "Polygon"}, "id": "237", "properties": {"OBJECTID": 2988, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1079.595703125, "Shape__Length": 224.738479117006, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9362710745163, 32.7796941193151, -79.9348446011311, 32.7801914712087], "geometry": {"coordinates": [[[-79.9362710745163, 32.780112072376], [-79.936224898235, 32.7797624036528], [-79.9362159685302, 32.7796941193151], [-79.9358731267847, 32.7797242087858], [-79.935468394535, 32.779759602647], [-79.9348446011311, 32.7798142144194], [-79.9348668725066, 32.7799890451124], [-79.934892061232, 32.7801914712087], [-79.9356644808438, 32.7801569619053], [-79.9358598240279, 32.7801481837431], [-79.9360218807296, 32.7801339572769], [-79.9361350770024, 32.7801240322189], [-79.9362710745163, 32.780112072376]]], "type": "Polygon"}, "id": "238", "properties": {"OBJECTID": 2989, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8259.703125, "Shape__Length": 413.304841806259, "ZONE_BASE": "DR-4", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9362889488344, 32.780112072376, -79.9361350770024, 32.7802987036956], "geometry": {"coordinates": [[[-79.9361350770024, 32.7801240322189], [-79.9361589799493, 32.7802987036956], [-79.9362889488344, 32.7802474327184], [-79.9362710745163, 32.780112072376], [-79.9361350770024, 32.7801240322189]]], "type": "Polygon"}, "id": "239", "properties": {"OBJECTID": 2990, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 313.57421875, "Shape__Length": 72.5155392788902, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9360302105825, 32.7801339572769, -79.934892061232, 32.7803691262805], "geometry": {"coordinates": [[[-79.934892061232, 32.7801914712087], [-79.9349134848546, 32.7803691262805], [-79.9352724329832, 32.780352754076], [-79.9358674228742, 32.7803256317977], [-79.9360302105825, 32.7803181997891], [-79.9360218807296, 32.7801339572769], [-79.9358598240279, 32.7801481837431], [-79.9356644808438, 32.7801569619053], [-79.934892061232, 32.7801914712087]]], "type": "Polygon"}, "id": "240", "properties": {"OBJECTID": 2991, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2957.673828125, "Shape__Length": 298.572499475965, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9361246173624, 32.7789084124985, -79.9357609581077, 32.779031706225], "geometry": {"coordinates": [[[-79.9361119317359, 32.7789084124985], [-79.9358521610124, 32.7789307226906], [-79.9357609581077, 32.7789384309057], [-79.9357793444172, 32.779031706225], [-79.9361246173624, 32.7790021531335], [-79.9361119317359, 32.7789084124985]]], "type": "Polygon"}, "id": "241", "properties": {"OBJECTID": 2992, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 486.369140625, "Shape__Length": 102.916049458184, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9361722426745, 32.7788145005141, -79.9353858826208, 32.7794144798696], "geometry": {"coordinates": [[[-79.9353858826208, 32.7788769286645], [-79.9354126638219, 32.7790155447098], [-79.9354402427507, 32.7791554591204], [-79.9354597871322, 32.7791537380474], [-79.9354760331838, 32.7792890870436], [-79.9354711476116, 32.7792894738038], [-79.9354776323431, 32.7793580796202], [-79.9356128143191, 32.7793461990973], [-79.9356217435606, 32.7794144798696], [-79.9356868912594, 32.7794087771168], [-79.9357772833927, 32.7794008878449], [-79.9361722426745, 32.7793662692451], [-79.9361633141188, 32.7792979849158], [-79.9361543844657, 32.779229704184], [-79.9361364917409, 32.7790958885166], [-79.9361246173624, 32.7790021531335], [-79.9357793444172, 32.779031706225], [-79.9357609581077, 32.7789384309057], [-79.9358521610124, 32.7789307226906], [-79.9361119317359, 32.7789084124985], [-79.9361059846071, 32.7788623184945], [-79.9360992460897, 32.7788145005141], [-79.9358345849212, 32.7788377096511], [-79.9357433789243, 32.7788456793574], [-79.9353858826208, 32.7788769286645]]], "type": "Polygon"}, "id": "242", "properties": {"OBJECTID": 2993, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5080.505859375, "Shape__Length": 384.347189683871, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9362087737657, 32.7788769286645, -79.9347352201521, 32.7797594996768], "geometry": {"coordinates": [[[-79.9353858826208, 32.7788769286645], [-79.9347352201521, 32.7789339700081], [-79.9347530425438, 32.7790733712515], [-79.9347700527039, 32.7792127627159], [-79.9347870953978, 32.7793494047674], [-79.9348041370887, 32.7794861333855], [-79.9348211788111, 32.7796228638068], [-79.93483740826, 32.7797594996768], [-79.9352584264121, 32.7797227048028], [-79.9353879089488, 32.7797113773434], [-79.935517391429, 32.7796999640725], [-79.935635471723, 32.7796896527058], [-79.9357226085236, 32.7796819912699], [-79.9358138143299, 32.7796741090471], [-79.9358781488166, 32.7796683991167], [-79.935943295655, 32.7796627809907], [-79.936036946854, 32.7796544887946], [-79.9362087737657, 32.7796394903191], [-79.9361901344765, 32.7795001696748], [-79.9361812047817, 32.7794318889434], [-79.9361722426745, 32.7793662692451], [-79.9357772833927, 32.7794008878449], [-79.9356868912594, 32.7794087771168], [-79.9356217435606, 32.7794144798696], [-79.9356128143191, 32.7793461990973], [-79.9354776323431, 32.7793580796202], [-79.9354711476116, 32.7792894738038], [-79.9354760331838, 32.7792890870436], [-79.9354597871322, 32.7791537380474], [-79.9354402427507, 32.7791554591204], [-79.9354126638219, 32.7790155447098], [-79.9353858826208, 32.7788769286645]]], "type": "Polygon"}, "id": "243", "properties": {"OBJECTID": 2994, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11251.55859375, "Shape__Length": 525.672617789523, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9375602258637, 32.7787552818369, -79.9362539759885, 32.7800589477089], "geometry": {"coordinates": [[[-79.9362539759885, 32.7788615907373], [-79.9363835717333, 32.7798424061946], [-79.9367673390836, 32.7800589477089], [-79.9375602258637, 32.7797461149922], [-79.9374144695672, 32.7787552818369], [-79.9362539759885, 32.7788615907373]]], "type": "Polygon"}, "id": "244", "properties": {"OBJECTID": 2995, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 19335.1171875, "Shape__Length": 541.750111369603, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9366470850147, 32.7799638704043, -79.9364012196459, 32.7801924598697], "geometry": {"coordinates": [[[-79.9364144181529, 32.7799640938451], [-79.9364111540879, 32.7799649258179], [-79.9364078816846, 32.7799664422108], [-79.9364045987767, 32.7799687331887], [-79.9364029447959, 32.7799710383286], [-79.9364012887369, 32.7799734264192], [-79.9364012541749, 32.7799762632919], [-79.9364012196459, 32.7799790974594], [-79.936429532624, 32.7801924598697], [-79.9366371578891, 32.7801103417963], [-79.9366404292854, 32.7801089958352], [-79.9366428924863, 32.7801070404233], [-79.9366445475417, 32.7801047343877], [-79.9366462025532, 32.780102431959], [-79.9366470504607, 32.7800996057633], [-79.9366470850147, 32.7800967688905], [-79.9366463029863, 32.7800941864521], [-79.9366447054846, 32.7800917673722], [-79.9366431079831, 32.7800893482924], [-79.9366406939671, 32.7800872657144], [-79.9364249745271, 32.7799656447913], [-79.9364217355758, 32.7799644153877], [-79.9364184882863, 32.7799638704043], [-79.9364144181529, 32.7799640938451]]], "type": "Polygon"}, "id": "245", "properties": {"OBJECTID": 2996, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 433.986328125, "Shape__Length": 90.5706651338279, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9360929020859, 32.7784613388151, -79.9359124870429, 32.778771709487], "geometry": {"coordinates": [[[-79.9360533646242, 32.7784613388151], [-79.9359124870429, 32.7784729204611], [-79.9359341633477, 32.7786350596298], [-79.9359520211247, 32.778771709487], [-79.9360929020859, 32.7787593639662], [-79.9360750263104, 32.7786241731441], [-79.9360533646242, 32.7784613388151]]], "type": "Polygon"}, "id": "246", "properties": {"OBJECTID": 2997, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 626.23046875, "Shape__Length": 111.033148928168, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9359520211247, 32.77847293609, -79.9349733667599, 32.7788427374173], "geometry": {"coordinates": [[[-79.9351409353086, 32.7788427374173], [-79.935302989727, 32.7788285975799], [-79.9354161822211, 32.7788186758751], [-79.935516348026, 32.7788098410573], [-79.9356165117317, 32.7788010891083], [-79.935714232074, 32.7787925773527], [-79.9358371987714, 32.7787817933664], [-79.9359520211247, 32.778771709487], [-79.9359341633477, 32.7786350596298], [-79.9359155414501, 32.7784943656098], [-79.9359146684469, 32.7784944328685], [-79.9359123139103, 32.77847293609], [-79.9358099109371, 32.7784812476407], [-79.9358043238444, 32.7784823506811], [-79.935340678962, 32.7785194554854], [-79.9349733667599, 32.778550699313], [-79.9349757174692, 32.7785671530167], [-79.9349742802664, 32.7785672640559], [-79.9349885222631, 32.7786667729756], [-79.9351163733219, 32.7786556047672], [-79.9351409353086, 32.7788427374173]]], "type": "Polygon"}, "id": "247", "properties": {"OBJECTID": 2998, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3861.447265625, "Shape__Length": 290.574928469788, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9358099109371, 32.7775944499093, -79.9345948979772, 32.7788787557083], "geometry": {"coordinates": [[[-79.9358099109371, 32.7784812476407], [-79.935807733128, 32.7784814243939], [-79.9357584443785, 32.7781552338834], [-79.9350339485671, 32.7782325236265], [-79.9350257896754, 32.7781328196691], [-79.9350620260569, 32.7781301220912], [-79.9350564829088, 32.7780854411197], [-79.9351649577109, 32.7780737118924], [-79.9351573398348, 32.7780169021247], [-79.9352800667099, 32.7780042534296], [-79.9352212377874, 32.7775944499093], [-79.935103951654, 32.7776065714327], [-79.9350021415968, 32.7776170239067], [-79.9349084757194, 32.7776266895594], [-79.9348213252211, 32.7776357228701], [-79.9347064822356, 32.7776475207856], [-79.9345948979772, 32.7776590033752], [-79.9346257056467, 32.7779342402764], [-79.934631494672, 32.7779930461468], [-79.9346410676072, 32.7780751649401], [-79.93465277993, 32.7781819522221], [-79.9346637459577, 32.778283237222], [-79.934697438662, 32.7785886493952], [-79.9347092024751, 32.7786913157385], [-79.9347296914213, 32.7788787557083], [-79.9351409353086, 32.7788427374173], [-79.9351163733219, 32.7786556047672], [-79.9349885222631, 32.7786667729756], [-79.9349742802664, 32.7785672640559], [-79.9349757174692, 32.7785671530167], [-79.9349733667599, 32.778550699313], [-79.935340678962, 32.7785194554854], [-79.9358043238444, 32.7784823506811], [-79.9358099109371, 32.7784812476407]]], "type": "Polygon"}, "id": "248", "properties": {"OBJECTID": 2999, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11939.720703125, "Shape__Length": 663.376043192551, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9359469980134, 32.7775220961735, -79.9352449223006, 32.7777284858987], "geometry": {"coordinates": [[[-79.9354913717746, 32.7777284858987], [-79.9354970748237, 32.7777277626529], [-79.9355939984226, 32.7777177821971], [-79.9356917364296, 32.7777077221741], [-79.9356990662257, 32.7777070130719], [-79.9356953218758, 32.7776806090389], [-79.9357661817719, 32.7776732379576], [-79.9358460003083, 32.7776650862192], [-79.9359469980134, 32.7776546259773], [-79.9359290891894, 32.7775220961735], [-79.9358264649131, 32.7775327154017], [-79.9357474588129, 32.7775408732923], [-79.9356692681283, 32.7775489570613], [-79.9355715303074, 32.7775590161644], [-79.9354746069042, 32.7775689947987], [-79.9353972306206, 32.7775769971014], [-79.9353198543008, 32.7775850011585], [-79.9352449223006, 32.7775926810391], [-79.9352644578723, 32.777724966285], [-79.9353385755975, 32.7777173622736], [-79.9354159530783, 32.7777093600172], [-79.9354868140888, 32.777701989107], [-79.9354913717746, 32.7777284858987]]], "type": "Polygon"}, "id": "249", "properties": {"OBJECTID": 3000, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1434.9453125, "Shape__Length": 195.567330394616, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9359849450773, 32.777681115677, -79.9357886599619, 32.7779602999123], "geometry": {"coordinates": [[[-79.9357886599619, 32.7776977433676], [-79.9357976373172, 32.7777620744967], [-79.9358057719941, 32.7778288034884], [-79.9358147221267, 32.7778953700289], [-79.9358236922229, 32.7779602999123], [-79.9359849450773, 32.7779450393509], [-79.9359767882723, 32.7778801138488], [-79.9359678380177, 32.7778135473204], [-79.9359588898099, 32.7777468139699], [-79.9359507424616, 32.777681115677], [-79.9357886599619, 32.7776977433676]]], "type": "Polygon"}, "id": "250", "properties": {"OBJECTID": 3001, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 635.490234375, "Shape__Length": 106.372862756908, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9354691305463, 32.7777289574212, -79.9352674620829, 32.7780345956245], "geometry": {"coordinates": [[[-79.9352674620829, 32.7777454352275], [-79.9352801938025, 32.7778354833345], [-79.935289969492, 32.7779009379249], [-79.9352997462636, 32.7779663925242], [-79.9353094895309, 32.7780345956245], [-79.9354691305463, 32.7780181168612], [-79.9354593871452, 32.7779499146754], [-79.9354496102558, 32.7778844600889], [-79.9354406467461, 32.7778190134821], [-79.9354271025666, 32.7777289574212], [-79.9352674620829, 32.7777454352275]]], "type": "Polygon"}, "id": "251", "properties": {"OBJECTID": 3002, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 691.501953125, "Shape__Length": 112.949361416124, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9357584443785, 32.7780290714006, -79.9351207854844, 32.7782212249865], "geometry": {"coordinates": [[[-79.9357376793146, 32.7780290714006], [-79.9351207854844, 32.7780926708492], [-79.9351380136298, 32.7782212249865], [-79.9357584443785, 32.7781552338834], [-79.9357564050606, 32.7781415984342], [-79.9357376793146, 32.7780290714006]]], "type": "Polygon"}, "id": "252", "properties": {"OBJECTID": 3003, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1179.6328125, "Shape__Length": 172.795016454843, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9360497791148, 32.7780086833419, -79.9358188359302, 32.778448655123], "geometry": {"coordinates": [[[-79.9358188359302, 32.7780251131264], [-79.9358277756508, 32.7780925363196], [-79.9358367446998, 32.7781575545739], [-79.9358448783994, 32.7782243692312], [-79.9358538485188, 32.7782893018199], [-79.9358628081878, 32.7783550928643], [-79.9358746832403, 32.778448655123], [-79.9360497791148, 32.7784322261595], [-79.9360370905071, 32.778338655942], [-79.9360281296644, 32.7782729505758], [-79.9360199748738, 32.7782078546455], [-79.9360110266297, 32.7781411176891], [-79.936002870831, 32.7780761065222], [-79.9359939309769, 32.7780086833419], [-79.9358188359302, 32.7780251131264]]], "type": "Polygon"}, "id": "253", "properties": {"OBJECTID": 3004, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1104.03515625, "Shape__Length": 152.06857441239, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9374534987823, 32.7774373008967, -79.936747626409, 32.7778215829918], "geometry": {"coordinates": [[[-79.9367900515024, 32.777818225059], [-79.9367908240705, 32.7778215829918], [-79.937233615474, 32.7777996597347], [-79.937232849135, 32.777795788715], [-79.9374534987823, 32.7777793242265], [-79.9374228860969, 32.777487427514], [-79.9374221187207, 32.7774836412592], [-79.9374213513445, 32.7774798550043], [-79.9374197685211, 32.7774762321132], [-79.9374189990378, 32.7774726189923], [-79.9374166017771, 32.7774690765048], [-79.9374150158152, 32.7774657115111], [-79.9374126154269, 32.7774624260193], [-79.9374102129425, 32.7774593127597], [-79.9374069949782, 32.7774563655689], [-79.9374037760154, 32.7774535004363], [-79.9374005528025, 32.7774508967988], [-79.9373973286076, 32.7774485492737], [-79.9373932889081, 32.7774462821428], [-79.9373900584438, 32.7774443620328], [-79.9373868206041, 32.7774430478915], [-79.9373827715073, 32.7774414651712], [-79.9373787213954, 32.7774401412685], [-79.9373754783426, 32.7774392554532], [-79.9373722311164, 32.7774386248207], [-79.9373689849823, 32.777438079872], [-79.9373649222651, 32.7774376162097], [-79.9373616719274, 32.7774374166269], [-79.9373584195016, 32.7774373008967], [-79.937355163879, 32.7774373600943], [-79.9373510938904, 32.7774376692408], [-79.936747626409, 32.7774945287046], [-79.9367900515024, 32.777818225059]]], "type": "Polygon"}, "id": "254", "properties": {"OBJECTID": 3005, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3356.794921875, "Shape__Length": 236.059592041044, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9367900515024, 32.7774945287046, -79.9363787058372, 32.7778529015236], "geometry": {"coordinates": [[[-79.9363787058372, 32.7775292059325], [-79.9364211306581, 32.7778529015236], [-79.9366768520595, 32.7778288378645], [-79.9367900515024, 32.777818225059], [-79.936747626409, 32.7774945287046], [-79.9366344273697, 32.7775051423723], [-79.9363787058372, 32.7775292059325]]], "type": "Polygon"}, "id": "255", "properties": {"OBJECTID": 3006, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1781.75390625, "Shape__Length": 168.881777597061, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9364211306581, 32.7775292059325, -79.936081450893, 32.7778809827559], "geometry": {"coordinates": [[[-79.9363787058372, 32.7775292059325], [-79.9362752787154, 32.7775389582061], [-79.9361718494357, 32.7775487103736], [-79.936081450893, 32.777557286159], [-79.9361238746144, 32.7778809827559], [-79.9362142734881, 32.7778724069388], [-79.9363177020791, 32.7778626547258], [-79.9364211306581, 32.7778529015236], [-79.9363787058372, 32.7775292059325]]], "type": "Polygon"}, "id": "256", "properties": {"OBJECTID": 3007, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1435.732421875, "Shape__Length": 152.831087626623, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.937535130838, 32.7777793242265, -79.93652969484, 32.7787044134604], "geometry": {"coordinates": [[[-79.9366460017669, 32.7778905059205], [-79.9366527070248, 32.7779410732694], [-79.9366860973703, 32.777937924807], [-79.9367002732128, 32.7780431045689], [-79.9367121731589, 32.7781346053575], [-79.9367144302171, 32.7781496585626], [-79.9367285883235, 32.7782562125653], [-79.9367427486082, 32.7783626782063], [-79.936756092345, 32.7784692242277], [-79.9366363787001, 32.7784802096596], [-79.93652969484, 32.7784900195243], [-79.9365438527871, 32.7785965726506], [-79.9365579950832, 32.7787044134604], [-79.9366646792261, 32.7786946892453], [-79.9367843931616, 32.7786837037854], [-79.9374603279438, 32.7786218018669], [-79.9374652082458, 32.7786218442553], [-79.9374692772385, 32.77862170915], [-79.937474163829, 32.7786212348413], [-79.9374790535364, 32.7786205044382], [-79.9374839474141, 32.7786194313741], [-79.9374880310576, 32.7786180924459], [-79.9374921126269, 32.7786169239463], [-79.9374953828756, 32.7786155788551], [-79.9374994738169, 32.7786136402697], [-79.9375027482576, 32.7786119507138], [-79.9375068455198, 32.7786094927262], [-79.937510944812, 32.7786068679167], [-79.9375142339031, 32.7786039745382], [-79.9375175261106, 32.7786008250655], [-79.937520820425, 32.7785975024588], [-79.9375241157596, 32.7785940959903], [-79.9375266008713, 32.7785904227563], [-79.9375282736309, 32.7785866576946], [-79.9375307608052, 32.7785828149335], [-79.9375324367141, 32.7785787910725], [-79.9375332992286, 32.7785747610488], [-79.9375341638281, 32.7785705596947], [-79.9375350284166, 32.7785663592423], [-79.9375350796328, 32.778562150824], [-79.937535130838, 32.7785579433073], [-79.9375343687041, 32.7785537251195], [-79.9374833861345, 32.7780639963533], [-79.9374534987823, 32.7777793242265], [-79.937232849135, 32.777795788715], [-79.937233615474, 32.7777996597347], [-79.9367908240705, 32.7778215829918], [-79.9367974750258, 32.7778766157458], [-79.9367331398, 32.7778825001943], [-79.9366460017669, 32.7778905059205]]], "type": "Polygon"}, "id": "257", "properties": {"OBJECTID": 3008, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10274.427734375, "Shape__Length": 451.91629861768, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.936756092345, 32.777865486481, -79.9361261231679, 32.778733914983], "geometry": {"coordinates": [[[-79.9366460017669, 32.7778905059205], [-79.9365873675287, 32.7778958347161], [-79.9365295466272, 32.7779011732599], [-79.9364709123088, 32.7779065074101], [-79.9364657177886, 32.777865486481], [-79.9361261231679, 32.7778966374223], [-79.9361380235927, 32.7779881355694], [-79.9361521966827, 32.7780934001496], [-79.9361663561941, 32.7781998694624], [-79.9361796991916, 32.7783064164465], [-79.9361938566818, 32.7784129696112], [-79.9362080152959, 32.7785195209812], [-79.9362221728206, 32.7786259893722], [-79.9362363136913, 32.778733914983], [-79.9365579950832, 32.7787044134604], [-79.9365438527871, 32.7785965726506], [-79.93652969484, 32.7784900195243], [-79.9366363787001, 32.7784802096596], [-79.936756092345, 32.7784692242277], [-79.9367427486082, 32.7783626782063], [-79.9367285883235, 32.7782562125653], [-79.9367144302171, 32.7781496585626], [-79.9367121731589, 32.7781346053575], [-79.9367002732128, 32.7780431045689], [-79.9366860973703, 32.777937924807], [-79.9366527070248, 32.7779410732694], [-79.9366460017669, 32.7778905059205]]], "type": "Polygon"}, "id": "258", "properties": {"OBJECTID": 3009, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5970.533203125, "Shape__Length": 345.816323218856, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9384375242658, 32.7773381255241, -79.9375777159217, 32.7777372940606], "geometry": {"coordinates": [[[-79.9383375461136, 32.7773443332033], [-79.9382699506255, 32.7773507880772], [-79.9382243454079, 32.7773550294892], [-79.9381111435193, 32.7773657328751], [-79.9379987571612, 32.7773763512491], [-79.9379401212118, 32.777381856532], [-79.9378757833229, 32.7773879967733], [-79.9378106330511, 32.7773940478601], [-79.9376941734352, 32.7774050625662], [-79.9375777159217, 32.777415989702], [-79.9376025631484, 32.777646933595], [-79.9376120396124, 32.7777372940606], [-79.9377903945196, 32.7777202921071], [-79.9379777080349, 32.7777024180364], [-79.9380811394009, 32.777692491208], [-79.9381756089407, 32.777683605682], [-79.9382106289974, 32.7776802148296], [-79.9382464623933, 32.7776768337319], [-79.9383401195991, 32.7776678526489], [-79.9383946846636, 32.7776626554443], [-79.9383979433713, 32.7776622553521], [-79.9384012052259, 32.7776615964606], [-79.9384044681222, 32.7776608519037], [-79.9384077341434, 32.777659850351], [-79.9384110022588, 32.7776586765659], [-79.9384142777097, 32.777656899517], [-79.9384175499917, 32.7776553830708], [-79.9384208306616, 32.7776531767937], [-79.9384241196536, 32.7776502860963], [-79.9384274065731, 32.7776475658275], [-79.9384290604931, 32.7776453454336], [-79.9384307175271, 32.7776428689456], [-79.93843237455, 32.7776403933594], [-79.9384340326474, 32.7776378294026], [-79.9384348783678, 32.7776351763293], [-79.9384365385483, 32.7776324410421], [-79.9384365720016, 32.7776296898348], [-79.9384374198381, 32.7776268627258], [-79.9384374542892, 32.7776240294602], [-79.9384374897818, 32.7776211105293], [-79.9384375242658, 32.7776182745586], [-79.9384279613732, 32.7775350406147], [-79.9384242934595, 32.7775021955312], [-79.9384043251278, 32.7773381255241], [-79.9383375461136, 32.7773443332033]]], "type": "Polygon"}, "id": "259", "properties": {"OBJECTID": 3010, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3951.29296875, "Shape__Length": 268.66652994037, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9393949213948, 32.7772496274, -79.9384849502227, 32.7778025278861], "geometry": {"coordinates": [[[-79.9388081829035, 32.7776413335392], [-79.9388233062451, 32.7778025278861], [-79.9389698976747, 32.7777886810581], [-79.9389592190199, 32.7776633452521], [-79.9393949213948, 32.7776221968294], [-79.9393777267828, 32.7774974944777], [-79.9393597178181, 32.7773728698368], [-79.9393425055689, 32.7772496274], [-79.9392358204269, 32.7772596939138], [-79.9391291341162, 32.7772697666375], [-79.9390224489141, 32.777279833867], [-79.938927165452, 32.7772888013619], [-79.9387708018314, 32.7773035093816], [-79.9386380562767, 32.7773161016968], [-79.9384849502227, 32.777330494016], [-79.9384975149578, 32.7774344556152], [-79.9385093342637, 32.7775329122601], [-79.9385181653057, 32.7776093526391], [-79.9385189442207, 32.7776121938641], [-79.9385197231028, 32.7776150377943], [-79.9385205030595, 32.7776177933541], [-79.9385220974651, 32.7776204676011], [-79.938522879494, 32.777623052732], [-79.9385244759609, 32.7776255574519], [-79.9385268858135, 32.7776280683277], [-79.9385284853943, 32.7776303169536], [-79.9385316992257, 32.7776336076777], [-79.9385349245073, 32.7776360444636], [-79.9385381508557, 32.777638217923], [-79.9385413844881, 32.7776398801053], [-79.9385446181793, 32.7776416252568], [-79.9385478570375, 32.7776427698311], [-79.9385510980048, 32.7776438287494], [-79.9385543421187, 32.7776446288684], [-79.9385575882937, 32.7776452594602], [-79.9385608376522, 32.7776457160254], [-79.9385640880114, 32.7776459146746], [-79.9385673415101, 32.7776459429042], [-79.9385705971067, 32.7776458863794], [-79.9385974729278, 32.7776432851019], [-79.9386007316079, 32.7776427993298], [-79.9386039934602, 32.7776421404328], [-79.9386072574434, 32.7776413940763], [-79.9386105213307, 32.7776404799776], [-79.9386146059856, 32.7776390526415], [-79.9386186937428, 32.7776373701129], [-79.9386219701973, 32.7776355100985], [-79.9386260642398, 32.7776333983509], [-79.9386293459082, 32.7776310216302], [-79.9386326297181, 32.7776285565482], [-79.9386359176868, 32.7776258371849], [-79.9386392056032, 32.7776229464724], [-79.9386416833173, 32.7776198755782], [-79.93864416314, 32.777616719028], [-79.9386458306146, 32.7776133831794], [-79.9386474990936, 32.7776098768926], [-79.9386491603303, 32.7776070541338], [-79.9386508278155, 32.7776037173833], [-79.9386524952937, 32.7776004690126], [-79.9386541481328, 32.7775983369861], [-79.9386566362778, 32.7775943201576], [-79.9386599377898, 32.7775903987655], [-79.9386632268304, 32.777587591031], [-79.9386665230979, 32.7775840131922], [-79.938669824646, 32.7775801765727], [-79.9386755485381, 32.7775776478868], [-79.9386796498884, 32.7775749346773], [-79.9386837397201, 32.777572993338], [-79.938688649226, 32.7775707164127], [-79.9386927348739, 32.7775692070157], [-79.9386976370307, 32.7775674467776], [-79.9387017185347, 32.7775662782378], [-79.9387057968705, 32.7775653703006], [-79.9387098731565, 32.7775646309885], [-79.9387131308025, 32.7775642299769], [-79.9387172049878, 32.7775637512767], [-79.938721273936, 32.77756352775], [-79.9387253429363, 32.7775634755722], [-79.9387294087426, 32.7775635983226], [-79.9387326601665, 32.7775637969765], [-79.9387367228488, 32.7775641767223], [-79.9387407813396, 32.7775648134545], [-79.9387448398827, 32.7775656215357], [-79.9387488941974, 32.7775666018303], [-79.938752947501, 32.7775678409427], [-79.93875699874, 32.7775691621039], [-79.9387610478634, 32.7775706573007], [-79.9387659009452, 32.7775729341478], [-79.9387707498512, 32.7775755545574], [-79.9387739783229, 32.7775776414528], [-79.9387763996095, 32.7775791243313], [-79.9387804289202, 32.7775823373506], [-79.938782849192, 32.7775839915688], [-79.9387860713836, 32.7775865951607], [-79.9387892799837, 32.7775903169095], [-79.9387924865015, 32.7775942099888], [-79.938795690926, 32.7775982753002], [-79.9387972790481, 32.7776014671421], [-79.9387988796658, 32.7776036310008], [-79.9388004657274, 32.7776069923697], [-79.9388020381866, 32.7776114727973], [-79.938805264523, 32.7776137355311], [-79.9388051497078, 32.7776231812529], [-79.9388058847668, 32.7776296312378], [-79.9388074707963, 32.7776329953118], [-79.9388074259225, 32.7776366870335], [-79.9388081829035, 32.7776413335392]]], "type": "Polygon"}, "id": "260", "properties": {"OBJECTID": 3011, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4703.576171875, "Shape__Length": 331.907390022977, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9395764560761, 32.7785079445472, -79.9383481557549, 32.7793239398994], "geometry": {"coordinates": [[[-79.9395175706617, 32.7785079445472], [-79.9389161437528, 32.7785972191441], [-79.9386618814586, 32.7786349584463], [-79.9384662954489, 32.7786640130896], [-79.9383481557549, 32.778813140674], [-79.9384062660069, 32.7789178411487], [-79.9386299146056, 32.7793239398994], [-79.9387827692608, 32.7792635056165], [-79.9389691334625, 32.7791902175436], [-79.9391955547966, 32.7791006990211], [-79.9393402310137, 32.7790437968629], [-79.9395764560761, 32.7789507525992], [-79.9395481295397, 32.7787378192632], [-79.9395347176364, 32.7786365135435], [-79.9395175706617, 32.7785079445472]]], "type": "Polygon"}, "id": "261", "properties": {"OBJECTID": 3012, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9303.611328125, "Shape__Length": 392.484575782935, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9395175706617, 32.7776221968294, -79.9375480425831, 32.7796972073784], "geometry": {"coordinates": [[[-79.9388081829035, 32.7776413335392], [-79.9388048980677, 32.7776438833895], [-79.9388040283321, 32.7776485130784], [-79.9388023441543, 32.7776531357024], [-79.9388006641826, 32.7776575879159], [-79.9387990102718, 32.7776598083149], [-79.9387973438654, 32.7776630566969], [-79.9387956784562, 32.7776662230206], [-79.9387940266496, 32.7776682702855], [-79.9387907251517, 32.7776721907794], [-79.9387874257031, 32.777675942648], [-79.9387841272695, 32.7776795231768], [-79.9387816673309, 32.7776812198321], [-79.9387783835671, 32.7776836813111], [-79.9387751007963, 32.7776859732538], [-79.9387718222757, 32.7776880911791], [-79.9387677230207, 32.7776907196376], [-79.9387628135362, 32.7776930822406], [-79.9387587268095, 32.7776946800104], [-79.9387538236164, 32.7776965250146], [-79.938749742107, 32.7776976935561], [-79.9387456627351, 32.7776986862583], [-79.9387415854019, 32.7776995112368], [-79.938738325616, 32.7776999122307], [-79.9387090075884, 32.7777027502766], [-79.9386055794539, 32.7777125045112], [-79.9384988925501, 32.7777225739806], [-79.9383922056583, 32.7777327281296], [-79.9382855197616, 32.7777427983239], [-79.9381755761702, 32.7777531828463], [-79.9380688891341, 32.777763254646], [-79.9379613887669, 32.7777734013587], [-79.9378392288044, 32.7777849664393], [-79.9377292840424, 32.7777954380294], [-79.9376193403185, 32.777805822052], [-79.937630209414, 32.7779153513857], [-79.9377060927275, 32.7786316442213], [-79.9377060540719, 32.7786348210498], [-79.9377068287892, 32.778638005843], [-79.9377067901006, 32.7786411853767], [-79.937706751445, 32.7786443622052], [-79.9377067127784, 32.7786475399354], [-79.9377066740789, 32.7786507203707], [-79.9377066354233, 32.7786538971992], [-79.9377057833836, 32.7786570669645], [-79.9377057457594, 32.7786601590294], [-79.9377048947761, 32.7786633297058], [-79.9377040437677, 32.7786664147076], [-79.9377031927592, 32.7786694997094], [-79.9377015283665, 32.778672577648], [-79.9377006783893, 32.7786755778863], [-79.9376990150388, 32.7786785701597], [-79.9376981661368, 32.7786814820275], [-79.93769650275, 32.778684389528], [-79.9376948425734, 32.7786872086766], [-79.9376931813182, 32.7786900287177], [-79.9376907077209, 32.7786927560302], [-79.9376890485503, 32.7786954047407], [-79.9376865759842, 32.7786980472897], [-79.9376841044932, 32.7787006014681], [-79.9376824473851, 32.7787030806514], [-79.9376799769363, 32.7787055491646], [-79.9376775075157, 32.7787078454361], [-79.9376742268233, 32.7787101364662], [-79.9376717594794, 32.7787123497869], [-79.9376676538997, 32.7787154912986], [-79.937664376309, 32.7787174396582], [-79.9376619121028, 32.7787193950811], [-79.9376586366297, 32.7787211694049], [-79.9376553611564, 32.7787229437285], [-79.9376520866784, 32.7787245485157], [-79.9376488154106, 32.778726064951], [-79.9376455441176, 32.7787274957116], [-79.9376422727776, 32.778728842601], [-79.9376381912411, 32.7787300958785], [-79.9376349240847, 32.7787311866829], [-79.9376316559046, 32.7787322738711], [-79.9376275785705, 32.7787331817819], [-79.9376243135067, 32.7787340128759], [-79.9376202392779, 32.7787346655941], [-79.9376169773773, 32.7787353244649], [-79.9376129030984, 32.7787358058338], [-79.937590094903, 32.7787384422241], [-79.9375860154113, 32.7787393519184], [-79.9375827483338, 32.7787405238873], [-79.9375794769922, 32.7787418707751], [-79.9375753923377, 32.7787433801444], [-79.937572116829, 32.7787451571711], [-79.9375688319126, 32.7787476195104], [-79.9375655533228, 32.7787497374037], [-79.937563083901, 32.7787521211509], [-79.937560612369, 32.7787545905541], [-79.9375581408399, 32.7787571474352], [-79.9375564806573, 32.7787599665819], [-79.9375540060113, 32.778762779557], [-79.9375523415866, 32.7787657718191], [-79.9375514916034, 32.7787687720564], [-79.9375498261719, 32.7787719347566], [-79.9375489740815, 32.7787751081278], [-79.9375489354201, 32.7787782849562], [-79.937548082331, 32.7787815403858], [-79.9375480425831, 32.7787848064864], [-79.9375488162753, 32.7787880751425], [-79.9375487765385, 32.7787913403415], [-79.9376833661137, 32.7796972073784], [-79.9386299146056, 32.7793239398994], [-79.9384062660069, 32.7789178411487], [-79.9383481557549, 32.778813140674], [-79.9384662954489, 32.7786640130896], [-79.9386618814586, 32.7786349584463], [-79.9389161437528, 32.7785972191441], [-79.9395175706617, 32.7785079445472], [-79.9394848211156, 32.7782573492227], [-79.9394129304283, 32.7777468241738], [-79.9393949213948, 32.7776221968294], [-79.9389592190199, 32.7776633452521], [-79.9389698976747, 32.7777886810581], [-79.9388233062451, 32.7778025278861], [-79.9388081829035, 32.7776413335392]]], "type": "Polygon"}, "id": "262", "properties": {"OBJECTID": 3013, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 35123.833984375, "Shape__Length": 953.51305943746, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9423704772175, 32.7756004096885, -79.939828608462, 32.7783286066448], "geometry": {"coordinates": [[[-79.9400505646315, 32.7756915895193], [-79.9400473091305, 32.7756918201377], [-79.9400432371091, 32.7756921284534], [-79.9400399795225, 32.7756924429241], [-79.9400367229814, 32.7756927592075], [-79.9400334632874, 32.775693159334], [-79.9400302056843, 32.7756935630859], [-79.9400269460175, 32.7756940488867], [-79.9400236852614, 32.7756945364817], [-79.940020426651, 32.7756950231934], [-79.9400171659222, 32.7756955964627], [-79.9400139030858, 32.775696255388], [-79.9400106423842, 32.7756969143316], [-79.9400073795477, 32.7756975732566], [-79.9400041167385, 32.7756983178561], [-79.9400008549747, 32.7756990642682], [-79.9399975879996, 32.7757000640505], [-79.9399943241283, 32.7757008961185], [-79.939991061357, 32.7757017254904], [-79.939987795378, 32.7757026432141], [-79.9399845294372, 32.7757036457105], [-79.9399812614324, 32.7757049061136], [-79.939977994424, 32.7757059086006], [-79.9399747285212, 32.7757069958696], [-79.9399714573413, 32.7757083419191], [-79.939968189287, 32.7757095184508], [-79.9399649223547, 32.775710690483], [-79.9399616490614, 32.775712210568], [-79.9399583800214, 32.7757134682561], [-79.9399551078444, 32.7757150722211], [-79.9399518366639, 32.7757164182702], [-79.9399485613061, 32.7757181962616], [-79.9399452797455, 32.7757205730172], [-79.939942818812, 32.7757221822082], [-79.9399395351546, 32.7757246437179], [-79.9399370752607, 32.7757263431013], [-79.9399337905246, 32.7757288055033], [-79.9399305058375, 32.7757313517762], [-79.9399272221628, 32.775733902567], [-79.9399239353677, 32.7757365344958], [-79.939920649596, 32.7757391700407], [-79.939917363835, 32.7757418046838], [-79.939913253264, 32.7757453754978], [-79.9399091426869, 32.7757490346915], [-79.9399050299857, 32.7757526929647], [-79.9399025669864, 32.7757545600616], [-79.9398992801785, 32.7757573687492], [-79.9398959787642, 32.7757612044994], [-79.9398935157317, 32.7757630743014], [-79.9398902154116, 32.7757669957352], [-79.939886099599, 32.7757709101018], [-79.9398827981671, 32.7757748351332], [-79.9398795082318, 32.775777813338], [-79.9398778564864, 32.775779860617], [-79.9398762047408, 32.7757819078962], [-79.9398745529952, 32.7757839551752], [-79.9398712620192, 32.775787019045], [-79.9398696102733, 32.775789066324], [-79.9398679585274, 32.775791113603], [-79.9398654798682, 32.7757942701866], [-79.9398630022871, 32.7757974258777], [-79.9398613494844, 32.7757994722456], [-79.9398596966979, 32.7758016051897], [-79.9398580438784, 32.775803740839], [-79.9398555642001, 32.7758069812842], [-79.9398538988919, 32.7758102332962], [-79.9398514181349, 32.7758134746338], [-79.9398497642858, 32.7758156950466], [-79.9398472845959, 32.7758189363933], [-79.9398456182307, 32.7758221874942], [-79.9398439664836, 32.7758242347728], [-79.9398422876353, 32.7758285138567], [-79.9398397943668, 32.7758328733602], [-79.939838114445, 32.7758372408145], [-79.9398364334938, 32.7758416930322], [-79.9398347525424, 32.7758461452498], [-79.9398330705505, 32.7758506831327], [-79.9398322008654, 32.7758553146316], [-79.9398313322314, 32.7758598595634], [-79.939830462568, 32.7758644892588], [-79.9398295918423, 32.7758692064229], [-79.939829535537, 32.7758738431672], [-79.9398286648002, 32.775878561233], [-79.939828608462, 32.7758832006826], [-79.9398293644857, 32.7758879292395], [-79.9398293081475, 32.775892568689], [-79.9398300652006, 32.7758972124824], [-79.93983082221, 32.7759018598827], [-79.9398315792304, 32.7759065063812], [-79.9398331506827, 32.7759110715583], [-79.9398339087654, 32.7759156305881], [-79.9398354812472, 32.7759201110016], [-79.9398370537292, 32.7759245914151], [-79.9403096864577, 32.7767941282995], [-79.9403900424504, 32.7769426575637], [-79.9411386940906, 32.7783286066448], [-79.9423704772175, 32.7778427609363], [-79.9418825766448, 32.7769555765384], [-79.9411368043882, 32.7756004096885], [-79.9400505646315, 32.7756915895193]]], "type": "Polygon"}, "id": "263", "properties": {"OBJECTID": 3014, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 52831.677734375, "Shape__Length": 993.836195276987, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9409645197359, 32.7771688080346, -79.9398198037927, 32.7785957768053], "geometry": {"coordinates": [[[-79.9398198037927, 32.7772111369059], [-79.9398539876873, 32.7774775491874], [-79.9399175162906, 32.7774710581962], [-79.9399891274284, 32.7776028478568], [-79.940067586799, 32.7775726894544], [-79.9401073639461, 32.777646479496], [-79.9401296400361, 32.7776877312177], [-79.9400536342965, 32.7777167917438], [-79.9400695576986, 32.777745363652], [-79.9401077363411, 32.7778168194241], [-79.9401196731782, 32.7778386552534], [-79.9401753624632, 32.7779418765242], [-79.9402064002429, 32.7779984929395], [-79.9402565149522, 32.7780918719562], [-79.9402716323832, 32.7781197496583], [-79.9402187012154, 32.778124359431], [-79.9402863256988, 32.7782495841975], [-79.9402894978836, 32.7782563132093], [-79.9403404272728, 32.7783496117714], [-79.9404765425968, 32.7785957768053], [-79.9405950606679, 32.7785492134186], [-79.9409645197359, 32.7784032904301], [-79.9408881407976, 32.7782620115495], [-79.940833254404, 32.7781595758434], [-79.9407791523832, 32.7780595484896], [-79.9407035728492, 32.777919477659], [-79.940622418685, 32.777769482517], [-79.9405547931234, 32.7776444256757], [-79.9405006906684, 32.7775444865748], [-79.9404386370383, 32.7774293575236], [-79.9403694289951, 32.7773006831428], [-79.9402978175035, 32.7771688080346], [-79.9400299027173, 32.7771925120515], [-79.9399134519937, 32.7772028417444], [-79.9398198037927, 32.7772111369059]]], "type": "Polygon"}, "id": "264", "properties": {"OBJECTID": 3015, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10628.546875, "Shape__Length": 523.663173047422, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9404765425968, 32.7772111369059, -79.9395062846489, 32.7788892951551], "geometry": {"coordinates": [[[-79.9398198037927, 32.7772111369059], [-79.9397579146189, 32.7772166121585], [-79.9396935821488, 32.7772223277346], [-79.9396259920578, 32.7772283550314], [-79.9395062846489, 32.7772389997074], [-79.939524215539, 32.7773699788746], [-79.9395325001202, 32.7774245981547], [-79.9395436751754, 32.7775092203734], [-79.93956843724, 32.7776806347895], [-79.9395819189478, 32.7777761846908], [-79.9395953996227, 32.7778718220605], [-79.9396186258985, 32.7780357496555], [-79.9396380837258, 32.7781750768055], [-79.9396470389297, 32.7782414690322], [-79.939656762657, 32.7783115627364], [-79.9396746261944, 32.7784482120454], [-79.9396924908282, 32.7785847756885], [-79.9397081104461, 32.7787052554917], [-79.9397327198413, 32.7788892951551], [-79.9399697615862, 32.7787958288477], [-79.9401348746565, 32.7787306860232], [-79.9402264210453, 32.7786946292594], [-79.9403441249382, 32.7786481465375], [-79.9404765425968, 32.7785957768053], [-79.9403404272728, 32.7783496117714], [-79.9402894978836, 32.7782563132093], [-79.9402863256988, 32.7782495841975], [-79.9402187012154, 32.778124359431], [-79.9402716323832, 32.7781197496583], [-79.9402565149522, 32.7780918719562], [-79.9402064002429, 32.7779984929395], [-79.9401753624632, 32.7779418765242], [-79.9401196731782, 32.7778386552534], [-79.9401077363411, 32.7778168194241], [-79.9400695576986, 32.777745363652], [-79.9400536342965, 32.7777167917438], [-79.9401296400361, 32.7776877312177], [-79.9401073639461, 32.777646479496], [-79.940067586799, 32.7775726894544], [-79.9399891274284, 32.7776028478568], [-79.9399175162906, 32.7774710581962], [-79.9398539876873, 32.7774775491874], [-79.9398198037927, 32.7772111369059]]], "type": "Polygon"}, "id": "265", "properties": {"OBJECTID": 3016, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12672.822265625, "Shape__Length": 577.162512623212, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.942939886637, 32.7779593093874, -79.941189215088, 32.7793510279542], "geometry": {"coordinates": [[[-79.9422812293819, 32.7780248695893], [-79.9420425560813, 32.7781190990901], [-79.9418210496393, 32.7782063485263], [-79.9415856445031, 32.7782993157925], [-79.941189215088, 32.7784557444544], [-79.9413547407531, 32.7787588604726], [-79.9414176130538, 32.7788736498369], [-79.9414789055909, 32.7789846495184], [-79.9415736097957, 32.7791576967803], [-79.9416794592799, 32.7793510279542], [-79.941994160518, 32.7792261873593], [-79.9423080422532, 32.7791018574339], [-79.9424592610039, 32.7790419157805], [-79.9424715200553, 32.7790372140764], [-79.9425254700276, 32.7790157757844], [-79.9426734161904, 32.7789573531285], [-79.942939886637, 32.7788517658786], [-79.942779085782, 32.7785610651495], [-79.9426835809617, 32.7783866375319], [-79.9426127368938, 32.7782582911953], [-79.9425840856353, 32.7782059869595], [-79.9425363200564, 32.7781200206578], [-79.9424479712139, 32.7779593093874], [-79.9422812293819, 32.7780248695893]]], "type": "Polygon"}, "id": "266", "properties": {"OBJECTID": 3017, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20198.1171875, "Shape__Length": 570.608363315785, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9415315117779, 32.7785102863735, -79.9404184770169, 32.7796565093448], "geometry": {"coordinates": [[[-79.9404184770169, 32.7787553071413], [-79.9405211210128, 32.7789444000035], [-79.9406325198058, 32.7791492929816], [-79.9406842301281, 32.7792454344345], [-79.9407447044391, 32.7793566826282], [-79.9409078297436, 32.7796565093448], [-79.9411113638283, 32.7795759806323], [-79.9415315117779, 32.7794093619326], [-79.9413651864373, 32.7791049559174], [-79.9413047084153, 32.7789939632259], [-79.9412521841679, 32.7788979033782], [-79.9411399656222, 32.7786933474833], [-79.941039688896, 32.7785102863735], [-79.9407290849678, 32.7786326673003], [-79.9405508937597, 32.7787031104713], [-79.9404184770169, 32.7787553071413]]], "type": "Polygon"}, "id": "267", "properties": {"OBJECTID": 3018, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10042.513671875, "Shape__Length": 415.332862776696, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9409078297436, 32.7787553071413, -79.9397915429545, 32.7799044052373], "geometry": {"coordinates": [[[-79.9404184770169, 32.7787553071413], [-79.940347365363, 32.7787832946807], [-79.9402787021613, 32.7788106161913], [-79.9401838885326, 32.7788477647691], [-79.9400866190636, 32.778886177111], [-79.9397915429545, 32.7790024206647], [-79.9398973684687, 32.7791972989499], [-79.939953067774, 32.7792997448408], [-79.9400087682665, 32.7794021916184], [-79.9400954956523, 32.7795621141739], [-79.9401623420419, 32.7796845014198], [-79.9402816946099, 32.7799044052373], [-79.9405571630121, 32.7797952946234], [-79.940732903745, 32.7797258618966], [-79.9409078297436, 32.7796565093448], [-79.9407447044391, 32.7793566826282], [-79.9406842301281, 32.7792454344345], [-79.9406325198058, 32.7791492929816], [-79.9405211210128, 32.7789444000035], [-79.9404184770169, 32.7787553071413]]], "type": "Polygon"}, "id": "268", "properties": {"OBJECTID": 3019, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10110.970703125, "Shape__Length": 416.589871923658, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9462725717397, 32.7880268565763, -79.9448923583099, 32.788634263856], "geometry": {"coordinates": [[[-79.9449443238789, 32.7886102916886], [-79.945147871989, 32.7885299266033], [-79.9452402110117, 32.7884962771052], [-79.9452549262481, 32.7884903896268], [-79.9453019385732, 32.7885721431401], [-79.9453992175748, 32.7885336409463], [-79.9454899576126, 32.7884977427303], [-79.9455240354728, 32.7885726831369], [-79.9455525798325, 32.788634263856], [-79.9456514121205, 32.7886018712539], [-79.9456579437694, 32.7885998659464], [-79.9458025153431, 32.7885526642432], [-79.9457510044605, 32.7884391762679], [-79.9458147107671, 32.7884185915984], [-79.9458963891927, 32.7883918930843], [-79.9460425934597, 32.7883441902215], [-79.9460005879039, 32.7882519142333], [-79.9462725717397, 32.7881634620904], [-79.9462099497548, 32.7880268565763], [-79.9459443081241, 32.7881291955614], [-79.9458012688357, 32.7881843143085], [-79.94572116773, 32.7882151495388], [-79.94565986261, 32.7882390140826], [-79.9455176437239, 32.788293624624], [-79.9454146551402, 32.7883333673179], [-79.9453010404163, 32.7883771406115], [-79.9451956008136, 32.7884177223447], [-79.9451040545737, 32.7884530966397], [-79.9448923583099, 32.7885345105591], [-79.9449443238789, 32.7886102916886]]], "type": "Polygon"}, "id": "269", "properties": {"OBJECTID": 3135, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3929.37890625, "Shape__Length": 411.18542888882, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9464413715746, 32.7881634620904, -79.9449443238789, 32.7895287566469], "geometry": {"coordinates": [[[-79.9456518316981, 32.7888186174071], [-79.9456431510088, 32.7887950606171], [-79.9456231696939, 32.7887718041488], [-79.9457160583658, 32.7887429504768], [-79.9459485498659, 32.7886702438465], [-79.945922550039, 32.7886087040829], [-79.9459332004128, 32.7886052227698], [-79.9458899079545, 32.7885243817446], [-79.9459258481956, 32.7885124940719], [-79.9459995425116, 32.7886754791088], [-79.9464413715746, 32.7885353156503], [-79.9463803604457, 32.7884000137181], [-79.9463660879799, 32.7883692257111], [-79.9463145764729, 32.7882557379751], [-79.9462725717397, 32.7881634620904], [-79.9460005879039, 32.7882519142333], [-79.9460425934597, 32.7883441902215], [-79.9458963891927, 32.7883918930843], [-79.9458147107671, 32.7884185915984], [-79.9457510044605, 32.7884391762679], [-79.9458025153431, 32.7885526642432], [-79.9456579437694, 32.7885998659464], [-79.9456514121205, 32.7886018712539], [-79.9455525798325, 32.788634263856], [-79.9455240354728, 32.7885726831369], [-79.9454899576126, 32.7884977427303], [-79.9453992175748, 32.7885336409463], [-79.9453019385732, 32.7885721431401], [-79.9452549262481, 32.7884903896268], [-79.9452402110117, 32.7884962771052], [-79.945147871989, 32.7885299266033], [-79.9449443238789, 32.7886102916886], [-79.945000291506, 32.788691521022], [-79.9450578436613, 32.7887762838549], [-79.9451122073707, 32.7888556099622], [-79.9451593775206, 32.7889243081242], [-79.9451609733604, 32.7889268975242], [-79.9452017270719, 32.788987981167], [-79.945248888048, 32.7890574502842], [-79.9452952355952, 32.7891269141746], [-79.9453511748781, 32.789210632167], [-79.9454047308482, 32.7892895201034], [-79.9454606692293, 32.789373241645], [-79.9455118129703, 32.7894497883208], [-79.9455645546897, 32.7895287566469], [-79.9457355514898, 32.7894492255912], [-79.945682812746, 32.7893700021467], [-79.9456612522399, 32.7893363997505], [-79.9457635248788, 32.7892886622108], [-79.9458183404919, 32.7892632798166], [-79.9457640028845, 32.7891817186029], [-79.9457080673738, 32.7890977456159], [-79.9456497476191, 32.7890091076058], [-79.9455904068828, 32.7889196193565], [-79.9456129049171, 32.788908828894], [-79.9456750442542, 32.7888816149266], [-79.9456518316981, 32.7888186174071]]], "type": "Polygon"}, "id": "270", "properties": {"OBJECTID": 3136, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9735.25390625, "Shape__Length": 689.088120612387, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9459741395515, 32.7892632798166, -79.9455645546897, 32.7896513562812], "geometry": {"coordinates": [[[-79.9455645546897, 32.7895287566469], [-79.9456468705752, 32.7896513562812], [-79.9458170509729, 32.7895722500528], [-79.9459193237915, 32.7895244249035], [-79.9459700472321, 32.7895011535517], [-79.9459741395515, 32.7894991272117], [-79.9458183404919, 32.7892632798166], [-79.9457635248788, 32.7892886622108], [-79.9456612522399, 32.7893363997505], [-79.945682812746, 32.7893700021467], [-79.9457355514898, 32.7894492255912], [-79.9455645546897, 32.7895287566469]]], "type": "Polygon"}, "id": "271", "properties": {"OBJECTID": 3137, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1119.48828125, "Shape__Length": 154.821997124961, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9467243704166, 32.7885641711149, -79.9457779147733, 32.7894823576971], "geometry": {"coordinates": [[[-79.9457779147733, 32.7891543045485], [-79.9460059762531, 32.7894823576971], [-79.9462594227502, 32.7893626758208], [-79.9465234617563, 32.7892377069918], [-79.9467243704166, 32.7891438151789], [-79.9466697110346, 32.7890263008532], [-79.9465101920677, 32.7886834241178], [-79.9464547129245, 32.7885641711149], [-79.9460121528977, 32.7887045573921], [-79.9460971650523, 32.7888778711889], [-79.9461322472132, 32.7889577621307], [-79.9461384703898, 32.7889719348651], [-79.9461047980873, 32.7889870643948], [-79.9460659375644, 32.7888976139114], [-79.9459572698379, 32.7889465312143], [-79.9459974987673, 32.7890364453415], [-79.9458539021456, 32.7891022307815], [-79.9458621842046, 32.7891125650228], [-79.9457779147733, 32.7891543045485]]], "type": "Polygon"}, "id": "272", "properties": {"OBJECTID": 3138, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6903.880859375, "Shape__Length": 389.213194068911, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9460659375644, 32.7886906961892, -79.9456129049171, 32.7891543045485], "geometry": {"coordinates": [[[-79.9460659375644, 32.7888976139114], [-79.9460626016291, 32.7888898762885], [-79.9459768747605, 32.7886906961892], [-79.9457450744833, 32.7887631869785], [-79.9456431510088, 32.7887950606171], [-79.9456518316981, 32.7888186174071], [-79.9456750442542, 32.7888816149266], [-79.9456129049171, 32.788908828894], [-79.9456612347692, 32.7889807266444], [-79.9457779147733, 32.7891543045485], [-79.9458621842046, 32.7891125650228], [-79.9458539021456, 32.7891022307815], [-79.9459974987673, 32.7890364453415], [-79.9459572698379, 32.7889465312143], [-79.9460653566059, 32.7889008978994], [-79.9460659375644, 32.7888976139114]]], "type": "Polygon"}, "id": "273", "properties": {"OBJECTID": 3139, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1813.890625, "Shape__Length": 183.276947443877, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9500887335216, 32.7864666085532, -79.9474928188346, 32.7880835310471], "geometry": {"coordinates": [[[-79.9485888662895, 32.7875827216446], [-79.9485857266589, 32.7875757793946], [-79.9486550249253, 32.78755068705], [-79.9487246773984, 32.7875217117044], [-79.9488305025442, 32.787716998824], [-79.9489904273115, 32.7880835310471], [-79.9491115450917, 32.7880245299914], [-79.9492244773402, 32.7879695780971], [-79.9493374084155, 32.7879147117644], [-79.9494527941834, 32.7878586678683], [-79.9498554221433, 32.7876626629724], [-79.9500722827161, 32.7875571508541], [-79.9497619816826, 32.7869766379548], [-79.9499931100637, 32.7869023428285], [-79.9499368265411, 32.7867793653892], [-79.9500887335216, 32.7867305036398], [-79.949967435558, 32.7864666085532], [-79.9493532766785, 32.78666388887], [-79.9487154305339, 32.7868687778931], [-79.9485814931796, 32.786911608497], [-79.9483813982917, 32.7869759445221], [-79.9482907438445, 32.7870050592825], [-79.948187021158, 32.7870384418392], [-79.9480832994136, 32.7870717395444], [-79.9479493593947, 32.7871147389845], [-79.9474928188346, 32.7872612239339], [-79.9475483167956, 32.787381532655], [-79.9480048568242, 32.7872350474874], [-79.9480603544527, 32.7873554407396], [-79.9481666049852, 32.787585018056], [-79.9482172636288, 32.7877019345472], [-79.9482842351014, 32.7876804351575], [-79.9483512044167, 32.7876589348112], [-79.9484549267566, 32.7876256368768], [-79.9485594645523, 32.7875922628945], [-79.9485888662895, 32.7875827216446]]], "type": "Polygon"}, "id": "274", "properties": {"OBJECTID": 3213, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 28419.48046875, "Shape__Length": 898.96508829262, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9488832588956, 32.7872350474874, -79.9475483167956, 32.7885353662864], "geometry": {"coordinates": [[[-79.9475483167956, 32.787381532655], [-79.9476046273549, 32.7875019331134], [-79.9477100664609, 32.7877311611617], [-79.9477963658602, 32.7879284420529], [-79.9478525735897, 32.7880574314907], [-79.9479285603538, 32.7882328920893], [-79.9480005887608, 32.7883992966496], [-79.9480607806458, 32.7885353662864], [-79.9481368873325, 32.7884983951755], [-79.948501056098, 32.7883213082706], [-79.9485837095043, 32.7882811303125], [-79.948683610009, 32.7882407614139], [-79.9488014660039, 32.7881896047478], [-79.9488832588956, 32.7881541024246], [-79.9487681843641, 32.7878926449152], [-79.9487349505873, 32.7878149611942], [-79.9486961477009, 32.787726839572], [-79.9486577253638, 32.7877422265832], [-79.9486244916992, 32.7876645464405], [-79.9485888662895, 32.7875827216446], [-79.9485594645523, 32.7875922628945], [-79.9484549267566, 32.7876256368768], [-79.9483512044167, 32.7876589348112], [-79.9482842351014, 32.7876804351575], [-79.9482172636288, 32.7877019345472], [-79.9481666049852, 32.787585018056], [-79.9480603544527, 32.7873554407396], [-79.9480048568242, 32.7872350474874], [-79.9475483167956, 32.787381532655]]], "type": "Polygon"}, "id": "275", "properties": {"OBJECTID": 3214, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12686.2890625, "Shape__Length": 520.05570402378, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9475579911314, 32.7873063056342, -79.9462515347902, 32.7879723298001], "geometry": {"coordinates": [[[-79.9462983102049, 32.7877613418182], [-79.946632350054, 32.7876539229603], [-79.9466933838689, 32.7877873338047], [-79.9468452954536, 32.7877384787916], [-79.9468912747306, 32.787838515605], [-79.9469520362206, 32.7879723298001], [-79.9470108579796, 32.7879522246347], [-79.9470094583818, 32.7879399133645], [-79.9472100533914, 32.7878745692881], [-79.9475579911314, 32.7877612288124], [-79.9473532842514, 32.7873063056342], [-79.9469816800575, 32.7874255995442], [-79.9468477388754, 32.7874685157123], [-79.946738299056, 32.7875036515084], [-79.9465863877874, 32.7875525090927], [-79.9462515347902, 32.7876599217194], [-79.9462983102049, 32.7877613418182]]], "type": "Polygon"}, "id": "276", "properties": {"OBJECTID": 3215, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5911.830078125, "Shape__Length": 394.294571825603, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9477248983575, 32.7876539229603, -79.9462983102049, 32.7887244534088], "geometry": {"coordinates": [[[-79.9462983102049, 32.7877613418182], [-79.9463585300808, 32.7878947485304], [-79.9464687186873, 32.7881346701572], [-79.9465551017593, 32.7883249075387], [-79.9465622292007, 32.7883410323927], [-79.9465955078607, 32.7884147652686], [-79.9466295711327, 32.7884910787278], [-79.9466644375161, 32.7885681746701], [-79.9466984905159, 32.7886452608945], [-79.9467434980595, 32.7887244534088], [-79.946994625101, 32.788640478075], [-79.9469568547639, 32.7885625509942], [-79.9469225873909, 32.7884853412512], [-79.9468883211351, 32.7884081324101], [-79.9470526344511, 32.7883553066806], [-79.9471743249682, 32.7883162375963], [-79.9472361020807, 32.7884556698035], [-79.947405981414, 32.7884010391255], [-79.94737889185, 32.7883536473102], [-79.9474140432212, 32.7883396890176], [-79.9473720724837, 32.7882444945728], [-79.9474537471605, 32.7882180529175], [-79.9477248983575, 32.7881310495657], [-79.9476694732056, 32.7880046415367], [-79.9476085185313, 32.7878645303362], [-79.9475579911314, 32.7877612288124], [-79.9472100533914, 32.7878745692881], [-79.9470094583818, 32.7879399133645], [-79.9470108579796, 32.7879522246347], [-79.9469520362206, 32.7879723298001], [-79.9468925370032, 32.7878403490784], [-79.9468462864713, 32.7877383709856], [-79.9466935634028, 32.787787408399], [-79.946632350054, 32.7876539229603], [-79.9462983102049, 32.7877613418182]]], "type": "Polygon"}, "id": "277", "properties": {"OBJECTID": 3216, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10952.84765625, "Shape__Length": 577.402745726614, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9479291586022, 32.7881310495657, -79.9467434980595, 32.7890637304224], "geometry": {"coordinates": [[[-79.9467434980595, 32.7887244534088], [-79.9468148035413, 32.788887263165], [-79.9468887460928, 32.7890637304224], [-79.9470464091871, 32.7890062020928], [-79.9471355852681, 32.7889650495351], [-79.9472910281054, 32.7888932861628], [-79.9473900195248, 32.7888476663143], [-79.9474063812833, 32.7888401631277], [-79.9476060032287, 32.7887479894384], [-79.9477049932535, 32.7887024577065], [-79.9479291586022, 32.7885988131222], [-79.9478808564135, 32.7884888735203], [-79.9478610671328, 32.7884432634894], [-79.947830984295, 32.7883741992929], [-79.9477644880146, 32.7882213273457], [-79.9477248983575, 32.7881310495657], [-79.9474537471605, 32.7882180529175], [-79.9473720724837, 32.7882444945728], [-79.9474140432212, 32.7883396890176], [-79.94737889185, 32.7883536473102], [-79.947405981414, 32.7884010391255], [-79.9472361020807, 32.7884556698035], [-79.9471743249682, 32.7883162375963], [-79.9470526344511, 32.7883553066806], [-79.9468884720938, 32.7884080092563], [-79.9469225231294, 32.7884852694531], [-79.9469565752588, 32.7885624439757], [-79.946994625101, 32.788640478075], [-79.9467434980595, 32.7887244534088]]], "type": "Polygon"}, "id": "278", "properties": {"OBJECTID": 3217, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8183.4140625, "Shape__Length": 448.822761188239, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9483878930942, 32.7887551652663, -79.9469666474044, 32.7901129574726], "geometry": {"coordinates": [[[-79.9474959651021, 32.7889870716568], [-79.9474845090547, 32.7889925563651], [-79.9473920647242, 32.7890349688783], [-79.9472906212056, 32.7890814279833], [-79.9469666474044, 32.7892307669499], [-79.9470713065691, 32.7894572418846], [-79.9471307805789, 32.7895852298895], [-79.9472330716337, 32.7898057547429], [-79.9473068181334, 32.7899646162433], [-79.9473758103065, 32.7901129574726], [-79.9478176270828, 32.7899068214458], [-79.9479370808624, 32.7898510664343], [-79.9483878930942, 32.789640964605], [-79.9482508801238, 32.7893308930759], [-79.9481907122675, 32.7891928478147], [-79.9479982890925, 32.7887551652663], [-79.9474959651021, 32.7889870716568]]], "type": "Polygon"}, "id": "279", "properties": {"OBJECTID": 3218, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16102.205078125, "Shape__Length": 510.257578500089, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9504026784502, 32.7867305036398, -79.9497619816826, 32.7875571508541], "geometry": {"coordinates": [[[-79.9499368265411, 32.7867793653892], [-79.9499931100637, 32.7869023428285], [-79.9497619816826, 32.7869766379548], [-79.9500722827161, 32.7875571508541], [-79.9501998634397, 32.7875018079304], [-79.9502001500026, 32.7875016832306], [-79.9504026784502, 32.7874141257314], [-79.950310020525, 32.7872116607428], [-79.9503099300021, 32.7872114642681], [-79.9500887335216, 32.7867305036398], [-79.9499368265411, 32.7867793653892]]], "type": "Polygon"}, "id": "280", "properties": {"OBJECTID": 3219, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3875.44140625, "Shape__Length": 285.775127624523, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9429565876521, 32.7893461059606, -79.9427045959341, 32.7896394150019], "geometry": {"coordinates": [[[-79.9428078610821, 32.7895625975637], [-79.9428081336093, 32.7895624871891], [-79.9428535755296, 32.7896394150019], [-79.9429565876521, 32.7895980423161], [-79.9428083134998, 32.7893461059606], [-79.9427045959341, 32.7893860628535], [-79.9427731254061, 32.7895029900104], [-79.9427808265027, 32.7895161304644], [-79.9427812934934, 32.7895159198629], [-79.9428079121587, 32.7895623472947], [-79.9428078610821, 32.7895625975637]]], "type": "Polygon"}, "id": "281", "properties": {"OBJECTID": 3220, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 474.404296875, "Shape__Length": 100.154894751591, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9440312585873, 32.7901694971681, -79.9437251261802, 32.7904799918989], "geometry": {"coordinates": [[[-79.9437251261802, 32.7902397982441], [-79.943883153631, 32.7904799918989], [-79.9440312585873, 32.7904099720386], [-79.9438738912419, 32.790169556113], [-79.9438738535184, 32.7901694971681], [-79.9438737334154, 32.7901695403213], [-79.9437252343471, 32.7902395944613], [-79.9437251261802, 32.7902397982441]]], "type": "Polygon"}, "id": "282", "properties": {"OBJECTID": 3221, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 689.09375, "Shape__Length": 110.608358675272, "ZONE_BASE": "MU-1", "__folium_color": "#c49c94"}, "type": "Feature"}, {"bbox": [-79.943883153631, 32.7899033233561, -79.9431042464257, 32.7906710578666], "geometry": {"coordinates": [[[-79.9433011391969, 32.7903706819488], [-79.9433593379086, 32.7904691987643], [-79.9434103619041, 32.7905554517588], [-79.9434781180642, 32.7906710578666], [-79.9436810448949, 32.7905754009698], [-79.9437816889116, 32.7905279071189], [-79.943883153631, 32.7904799918989], [-79.9437251261802, 32.7902397982441], [-79.9437249731185, 32.790239565151], [-79.9436398740738, 32.7902798071347], [-79.9435575448014, 32.7901583197739], [-79.9434887883198, 32.7900582554238], [-79.9434160508831, 32.7899510231378], [-79.9433832717011, 32.7899033233561], [-79.9431042464257, 32.7900351759047], [-79.9432437540655, 32.79027217574], [-79.9433011391969, 32.7903706819488]]], "type": "Polygon"}, "id": "283", "properties": {"OBJECTID": 3222, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3998.9140625, "Shape__Length": 285.97012470174, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9434781180642, 32.7903706819488, -79.9429969032807, 32.7908115076324], "geometry": {"coordinates": [[[-79.9429969032807, 32.7905014588881], [-79.9430152361147, 32.7905328000337], [-79.9430551038763, 32.7905997991084], [-79.9431061307349, 32.790685885418], [-79.9431196721277, 32.7907097955178], [-79.9431802729247, 32.7908115076324], [-79.9432784655409, 32.7907650274204], [-79.9433242865246, 32.7907435184791], [-79.9433905665577, 32.7907121352495], [-79.9434781180642, 32.7906710578666], [-79.9434103619041, 32.7905554517588], [-79.9433593379086, 32.7904691987643], [-79.9433011391969, 32.7903706819488], [-79.9429969032807, 32.7905014588881]]], "type": "Polygon"}, "id": "284", "properties": {"OBJECTID": 3223, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1715.236328125, "Shape__Length": 166.293375718946, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9438738535184, 32.789264699247, -79.9425146291756, 32.7905014588881], "geometry": {"coordinates": [[[-79.9428518128109, 32.7902552181161], [-79.9428956655457, 32.7903290433977], [-79.9429387049564, 32.7904029418999], [-79.9429969032807, 32.7905014588881], [-79.9433011391969, 32.7903706819488], [-79.9432437540655, 32.79027217574], [-79.9431042464257, 32.7900351759047], [-79.9433832717011, 32.7899033233561], [-79.9434160508831, 32.7899510231378], [-79.9434887883198, 32.7900582554238], [-79.9435575448014, 32.7901583197739], [-79.9436398740738, 32.7902798071347], [-79.9437249731185, 32.790239565151], [-79.9437251261802, 32.7902397982441], [-79.9437252343471, 32.7902395944613], [-79.9438737334154, 32.7901695403213], [-79.9438738535184, 32.7901694971681], [-79.9437932033043, 32.7900469666101], [-79.9437268985557, 32.7899459775363], [-79.9436557993118, 32.7898378162191], [-79.9436198575474, 32.7897825309143], [-79.9435815044926, 32.78972481778], [-79.9435439649647, 32.7896671125602], [-79.9434984351321, 32.7895973971291], [-79.9434353267789, 32.7895012467894], [-79.9433881981816, 32.7894291132174], [-79.9433282878878, 32.7893377151563], [-79.9432170093883, 32.7893899226444], [-79.9431171850168, 32.7894369090506], [-79.9430200136316, 32.789264699247], [-79.9429088515215, 32.7893073759624], [-79.9428083134998, 32.7893461059606], [-79.9429565876521, 32.7895980423161], [-79.9428535755296, 32.7896394150019], [-79.9428081336093, 32.7895624871891], [-79.9428078610821, 32.7895625975637], [-79.9425146291756, 32.7896807245209], [-79.9425592573782, 32.789757648118], [-79.9426102749759, 32.7898444181465], [-79.9428518128109, 32.7902552181161]]], "type": "Polygon"}, "id": "285", "properties": {"OBJECTID": 3224, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11325.44921875, "Shape__Length": 633.176759531175, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9391345598755, 32.7827571196565, -79.9367062338385, 32.7848142089175], "geometry": {"coordinates": [[[-79.9381418481828, 32.7848142089175], [-79.9382799737056, 32.7847616357569], [-79.9384589580558, 32.7846940397805], [-79.9388046742691, 32.7845629478345], [-79.9387428517844, 32.7844286657846], [-79.9388400872987, 32.784393604453], [-79.9388820124417, 32.784491635053], [-79.9391345598755, 32.7844144619346], [-79.9387567508073, 32.7837536977226], [-79.9386723179174, 32.7836057343643], [-79.9381863939312, 32.7827571196565], [-79.9375167233322, 32.7831037536115], [-79.9373497139315, 32.7831902644763], [-79.9367062338385, 32.7835234632607], [-79.9371561622635, 32.784254086283], [-79.9372455010305, 32.784399946963], [-79.9374952009404, 32.7848052434539], [-79.9376032859828, 32.7847478585935], [-79.9375680894103, 32.7846986734664], [-79.9379713976209, 32.7845145699775], [-79.9381418481828, 32.7848142089175]]], "type": "Polygon"}, "id": "286", "properties": {"OBJECTID": 3229, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 41423.228515625, "Shape__Length": 900.506722871981, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9397699960912, 32.7840348525313, -79.9391757243899, 32.7846171585519], "geometry": {"coordinates": [[[-79.9391757243899, 32.7841702754304], [-79.9394314365853, 32.7846171585519], [-79.9397699960912, 32.7845387880722], [-79.9394970780367, 32.7840348525313], [-79.9391757243899, 32.7841702754304]]], "type": "Polygon"}, "id": "287", "properties": {"OBJECTID": 3230, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2728.62890625, "Shape__Length": 218.086506644907, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9392749518237, 32.784393604453, -79.9374952009404, 32.7851871384156], "geometry": {"coordinates": [[[-79.9377305454362, 32.7851871384156], [-79.938395280821, 32.7849558428786], [-79.938576289744, 32.7848928961207], [-79.9387148732422, 32.7848432997944], [-79.9388333638075, 32.7848011811052], [-79.9390154742623, 32.7847398710714], [-79.9391086488846, 32.7847100725882], [-79.9392749518237, 32.7846594786828], [-79.9391345598755, 32.7844144619346], [-79.9388820124417, 32.784491635053], [-79.9388400872987, 32.784393604453], [-79.9387428517844, 32.7844286657846], [-79.9388046742691, 32.7845629478345], [-79.9384589580558, 32.7846940397805], [-79.9382799737056, 32.7847616357569], [-79.9381418481828, 32.7848142089175], [-79.9379713976209, 32.7845145699775], [-79.9375680894103, 32.7846986734664], [-79.9376032859828, 32.7847478585935], [-79.9374952009404, 32.7848052434539], [-79.9377305454362, 32.7851871384156]]], "type": "Polygon"}, "id": "288", "properties": {"OBJECTID": 3231, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8299.478515625, "Shape__Length": 550.949810974517, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9457214790537, 32.7853591267676, -79.9435306842704, 32.7873288492086], "geometry": {"coordinates": [[[-79.9442848662696, 32.7858517262902], [-79.9441592602316, 32.7858783007323], [-79.94401896932, 32.7859081869946], [-79.944069288984, 32.7860525893411], [-79.9440554166556, 32.7860560760483], [-79.9439525993937, 32.7860818188773], [-79.943765735485, 32.7861283953141], [-79.9440119247868, 32.7865577882869], [-79.9444491883396, 32.7873288492086], [-79.9457214790537, 32.7869373494537], [-79.9452369730489, 32.7858995208619], [-79.9451779000503, 32.7857714740737], [-79.9449998347143, 32.7853591267676], [-79.9445069702822, 32.785479808635], [-79.9443825501007, 32.7855104292421], [-79.9442577102441, 32.7855409622314], [-79.9441198166259, 32.7855745650099], [-79.9440251676913, 32.7855975412172], [-79.9439011431182, 32.7856279086316], [-79.9438187332226, 32.7856479863183], [-79.9437918041849, 32.7856547962675], [-79.9436824610269, 32.785682027369], [-79.9435306842704, 32.7857198871263], [-79.943595202752, 32.7858337471872], [-79.9436127317793, 32.7858642209431], [-79.9436510229123, 32.7859270009347], [-79.9437067776604, 32.7860255821331], [-79.9437577817574, 32.7861133814368], [-79.9439462798216, 32.7860662175943], [-79.9440303294668, 32.7860452106513], [-79.9440335978002, 32.7860439501387], [-79.9440360630957, 32.7860419098222], [-79.9440385294587, 32.7860398695149], [-79.9440401844204, 32.7860375642795], [-79.9440410269336, 32.7860350806831], [-79.9440410612061, 32.7860322474134], [-79.9440410955223, 32.7860294105367], [-79.9439947060274, 32.7858963808728], [-79.9441211297911, 32.7858695548295], [-79.9442157446971, 32.7858493261424], [-79.944279363236, 32.7858358732445], [-79.9442848662696, 32.7858517262902]]], "type": "Polygon"}, "id": "289", "properties": {"OBJECTID": 3298, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 36402.873046875, "Shape__Length": 952.448497991207, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9482804851419, 32.7814468210334, -79.9478623337966, 32.7818080006791], "geometry": {"coordinates": [[[-79.9481593089887, 32.7814468210334], [-79.9478623337966, 32.7815085031626], [-79.9479368083394, 32.7818080006791], [-79.9482804851419, 32.7817019843699], [-79.9481773000836, 32.7814857870527], [-79.9481737370964, 32.7814782062634], [-79.9481593089887, 32.7814468210334]]], "type": "Polygon"}, "id": "290", "properties": {"OBJECTID": 3353, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1429.3125, "Shape__Length": 151.696604627847, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9485761626693, 32.7817019843699, -79.947349269339, 32.7825877392873], "geometry": {"coordinates": [[[-79.947349269339, 32.7820033892216], [-79.9473851716695, 32.7821236754658], [-79.9473987340246, 32.7821538908774], [-79.9474345560654, 32.7822190427763], [-79.9474959485499, 32.7823144322107], [-79.9475162502977, 32.7823484860791], [-79.9475270138531, 32.7823665414139], [-79.9475663045076, 32.7824463193029], [-79.9475956727701, 32.782506990334], [-79.9476327397918, 32.7825877392873], [-79.9485761626693, 32.7823214941283], [-79.9482804851419, 32.7817019843699], [-79.9479368083394, 32.7818080006791], [-79.9474148653305, 32.7819682112228], [-79.947349269339, 32.7820033892216]]], "type": "Polygon"}, "id": "291", "properties": {"OBJECTID": 3354, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9684.07421875, "Shape__Length": 394.277064238555, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9468994340053, 32.7801834414954, -79.9461870843235, 32.7812647332031], "geometry": {"coordinates": [[[-79.9461870843235, 32.7802971488266], [-79.946273750329, 32.7804632520646], [-79.9463231041195, 32.7805529280857], [-79.946494186884, 32.7808692237172], [-79.9464909177015, 32.7808704851874], [-79.9463993684952, 32.7809068054471], [-79.9464840945853, 32.7810988348981], [-79.946556935032, 32.7812647332031], [-79.9467114279051, 32.7812031848515], [-79.9468994340053, 32.7811283512932], [-79.9468105559915, 32.7808758148006], [-79.946775852068, 32.7807854083616], [-79.9467418041545, 32.7807081490894], [-79.9467338805244, 32.7806907277762], [-79.9467085251753, 32.7806346760154], [-79.9466767061792, 32.7805749594565], [-79.9466369604757, 32.7804979063158], [-79.9466051302092, 32.7804392204378], [-79.9465589696662, 32.7803545555667], [-79.9464691097641, 32.7801834414954], [-79.9461870843235, 32.7802971488266]]], "type": "Polygon"}, "id": "292", "properties": {"OBJECTID": 3355, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5084.08984375, "Shape__Length": 356.502559903513, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.946556935032, 32.7802971488266, -79.9457170434411, 32.7813993438858], "geometry": {"coordinates": [[[-79.9461870843235, 32.7802971488266], [-79.9459729085143, 32.780383523837], [-79.9457170434411, 32.7804865459995], [-79.9459733527493, 32.7809532163852], [-79.9461293669619, 32.781237257574], [-79.9462185216964, 32.7813993438858], [-79.946556935032, 32.7812647332031], [-79.9464840945853, 32.7810988348981], [-79.9463993684952, 32.7809068054471], [-79.9464909177015, 32.7808704851874], [-79.946494186884, 32.7808692237172], [-79.9463231041195, 32.7805529280857], [-79.946273750329, 32.7804632520646], [-79.9461870843235, 32.7802971488266]]], "type": "Polygon"}, "id": "293", "properties": {"OBJECTID": 3356, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6971.20703125, "Shape__Length": 378.136065208748, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9471963125109, 32.7812548478671, -79.9466074054169, 32.7821271293065], "geometry": {"coordinates": [[[-79.9466074054169, 32.7813894261298], [-79.9466245786876, 32.7814287812466], [-79.946698242948, 32.7815963468391], [-79.9467316682975, 32.7816741761385], [-79.9467363764252, 32.7816849638328], [-79.9468003937234, 32.7818170141401], [-79.9467785213905, 32.7818224740287], [-79.9468309834263, 32.7819777886616], [-79.9468914872542, 32.7821271293065], [-79.9471963125109, 32.7820346003772], [-79.947166926194, 32.7819528892998], [-79.9471496753458, 32.781899312567], [-79.9471096745975, 32.7817759599154], [-79.9470986980466, 32.781741676006], [-79.9470587585899, 32.7816133421335], [-79.9470344679207, 32.781536425746], [-79.9470141003756, 32.7814714807017], [-79.9469456234114, 32.7812548478671], [-79.9466074054169, 32.7813894261298]]], "type": "Polygon"}, "id": "294", "properties": {"OBJECTID": 3357, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3944.515625, "Shape__Length": 290.056410949283, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9468914872542, 32.7813894261298, -79.9462848536289, 32.7821992321277], "geometry": {"coordinates": [[[-79.9466074054169, 32.7813894261298], [-79.9462848536289, 32.7815177696513], [-79.9464952162612, 32.7818931960024], [-79.9465756398727, 32.7820415368608], [-79.94665749889, 32.7821992321277], [-79.9468914872542, 32.7821271293065], [-79.9468309834263, 32.7819777886616], [-79.9467785213905, 32.7818224740287], [-79.9468003937234, 32.7818170141401], [-79.9467363764252, 32.7816849638328], [-79.9467316682975, 32.7816741761385], [-79.946698242948, 32.7815963468391], [-79.9466245786876, 32.7814287812466], [-79.9466074054169, 32.7813894261298]]], "type": "Polygon"}, "id": "295", "properties": {"OBJECTID": 3358, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3441.92578125, "Shape__Length": 272.152439256926, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9474895508624, 32.7820346003772, -79.94665749889, 32.7827965724581], "geometry": {"coordinates": [[[-79.94665749889, 32.7821992321277], [-79.9467367398884, 32.7823444991664], [-79.9469842864971, 32.7827965724581], [-79.9474895508624, 32.7826554933003], [-79.9474451642564, 32.7825584744625], [-79.9474165915511, 32.7824992991675], [-79.9473792575915, 32.7824245053682], [-79.9473521502377, 32.7823787439246], [-79.9472780958624, 32.782260723051], [-79.9472550644956, 32.7822188709399], [-79.9472039464395, 32.7820564976773], [-79.9471963125109, 32.7820346003772], [-79.9468914872542, 32.7821271293065], [-79.94665749889, 32.7821992321277]]], "type": "Polygon"}, "id": "296", "properties": {"OBJECTID": 3359, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5306.416015625, "Shape__Length": 298.906534143806, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9466365619772, 32.7822254990889, -79.9452474997899, 32.7829745353314], "geometry": {"coordinates": [[[-79.9466365619772, 32.7824874404597], [-79.9464932921601, 32.7822254990889], [-79.9462570479871, 32.7823200166593], [-79.9461393360654, 32.7823670208841], [-79.9460183547585, 32.7824151989756], [-79.9459039107962, 32.7824610271819], [-79.9457861984834, 32.7825080319693], [-79.9456684870676, 32.7825549518802], [-79.9455507745449, 32.7826019528346], [-79.9452474997899, 32.782723034133], [-79.945315960892, 32.7828472352101], [-79.9453851982595, 32.7829745353314], [-79.9456892591434, 32.7828557772702], [-79.9456964294852, 32.7828682113314], [-79.9457740927409, 32.7828368375165], [-79.9458133362046, 32.7828206838328], [-79.9458967212772, 32.7827869567582], [-79.9459310551304, 32.7827731650254], [-79.946020164163, 32.7827369945144], [-79.9460487739281, 32.7827256461051], [-79.946143606919, 32.7826871196244], [-79.9461632254661, 32.7826793010738], [-79.9462670494897, 32.7826371598374], [-79.9462833988066, 32.7826305991249], [-79.9463904909287, 32.7825872819845], [-79.9464003037881, 32.7825830737627], [-79.9466365619772, 32.7824874404597]]], "type": "Polygon"}, "id": "297", "properties": {"OBJECTID": 3360, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5844.439453125, "Shape__Length": 383.684978885659, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9468299841223, 32.7824874404597, -79.9453851982595, 32.7831772473366], "geometry": {"coordinates": [[[-79.9453851982595, 32.7829745353314], [-79.9456333119625, 32.7831772473366], [-79.9459165624802, 32.7830975716196], [-79.946047166959, 32.7830608973528], [-79.9461777733753, 32.7830241417991], [-79.9463075641659, 32.7829874638548], [-79.946438169306, 32.7829507071125], [-79.9465687743699, 32.7829140359056], [-79.9468299841223, 32.7828405199213], [-79.9466365619772, 32.7824874404597], [-79.9464003037881, 32.7825830737627], [-79.9463904909287, 32.7825872819845], [-79.9462833988066, 32.7826305991249], [-79.9462670494897, 32.7826371598374], [-79.9461632254661, 32.7826793010738], [-79.946143606919, 32.7826871196244], [-79.9460487739281, 32.7827256461051], [-79.946020164163, 32.7827369945144], [-79.9459310551304, 32.7827731650254], [-79.9458967212772, 32.7827869567582], [-79.9458133362046, 32.7828206838328], [-79.9457740927409, 32.7828368375165], [-79.9456964294852, 32.7828682113314], [-79.9456892591434, 32.7828557772702], [-79.9453851982595, 32.7829745353314]]], "type": "Polygon"}, "id": "298", "properties": {"OBJECTID": 3361, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6251.578125, "Shape__Length": 385.778934625754, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9460696776525, 32.7805445186214, -79.9443240642607, 32.7819476827095], "geometry": {"coordinates": [[[-79.9452591458435, 32.7806676698465], [-79.9450932227001, 32.7807326385597], [-79.9449845095526, 32.7807755969635], [-79.9447630003681, 32.7808627642826], [-79.9443240642607, 32.7810355872145], [-79.9443853453947, 32.7811478713385], [-79.9444991714159, 32.7813550164317], [-79.9445150782727, 32.7813850431725], [-79.9445620497207, 32.7814698042123], [-79.9446249281583, 32.7815845946672], [-79.9446901867958, 32.7817043864538], [-79.9447562362021, 32.781826073468], [-79.9448231012997, 32.7819476827095], [-79.9452097458419, 32.7817938217872], [-79.9453331783586, 32.7817446348371], [-79.9454574262733, 32.7816953673145], [-79.9456135537489, 32.7816333176723], [-79.9458252678202, 32.7815489863361], [-79.9460696776525, 32.7814517920792], [-79.9459693749769, 32.7812697656451], [-79.9458706694606, 32.7810902437573], [-79.945810981103, 32.7809805497582], [-79.9457942594882, 32.7809505973346], [-79.945697147285, 32.7807739226003], [-79.9456454149745, 32.7806791602174], [-79.9455713867997, 32.7805445186214], [-79.9452591458435, 32.7806676698465]]], "type": "Polygon"}, "id": "299", "properties": {"OBJECTID": 3362, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20342.029296875, "Shape__Length": 572.087740651429, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9464246565379, 32.7815764219077, -79.9448915539097, 32.7825989532815], "geometry": {"coordinates": [[[-79.9458937247191, 32.7816736154102], [-79.9457702915511, 32.7817228029163], [-79.9456460458979, 32.781771983297], [-79.9455226135296, 32.7818211696611], [-79.9453991799439, 32.7818704451734], [-79.9452765668789, 32.7819190395368], [-79.9448915539097, 32.7820724863765], [-79.9449496430648, 32.782179758249], [-79.9450069489884, 32.7822845369819], [-79.9450642550931, 32.7823893120822], [-79.9451215613458, 32.7824941746349], [-79.9451788666147, 32.7825989532815], [-79.9455647021291, 32.7824449958517], [-79.9457175647551, 32.7823839478161], [-79.9459325529374, 32.7822981826143], [-79.9460559878068, 32.7822488254051], [-79.94617942258, 32.7821994644646], [-79.9462415460842, 32.7821748320871], [-79.9463028572027, 32.7821501043015], [-79.9464246565379, 32.7821014189338], [-79.9462814004198, 32.7818384475379], [-79.9461381337458, 32.7815764219077], [-79.9458937247191, 32.7816736154102]]], "type": "Polygon"}, "id": "300", "properties": {"OBJECTID": 3363, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11764.6328125, "Shape__Length": 460.237524834475, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9477441194333, 32.7785824419683, -79.946027401769, 32.7800067955647], "geometry": {"coordinates": [[[-79.9467735196565, 32.7787532349322], [-79.9465664833381, 32.7788325632388], [-79.9463220123502, 32.778934682782], [-79.946027401769, 32.7790513439271], [-79.9461640151526, 32.7793008192317], [-79.9465506830107, 32.7800067955647], [-79.9468209563949, 32.7798950352058], [-79.9468975247495, 32.7798633735231], [-79.9471499670048, 32.7797678019861], [-79.9477441194333, 32.7795368445057], [-79.9477189777675, 32.7794912037703], [-79.947715237737, 32.7794844159611], [-79.9472183738857, 32.7785824419683], [-79.9467735196565, 32.7787532349322]]], "type": "Polygon"}, "id": "301", "properties": {"OBJECTID": 3364, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20405.443359375, "Shape__Length": 571.654100953016, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9464055974683, 32.7791082995213, -79.9455050879232, 32.7802177088612], "geometry": {"coordinates": [[[-79.9455050879232, 32.779257021565], [-79.945601394014, 32.7794329148171], [-79.9456706456866, 32.7795588404777], [-79.945722377328, 32.7796536055435], [-79.9457454595781, 32.7796957244234], [-79.9457836592903, 32.7797658889503], [-79.9458449414212, 32.7798781714259], [-79.9458552884281, 32.7798970737489], [-79.9459070370851, 32.7799904626844], [-79.9459762751507, 32.7801176767757], [-79.9460311978007, 32.7802177088612], [-79.9464055974683, 32.7800666544072], [-79.9462280975148, 32.7797429173648], [-79.946120642897, 32.7795469971359], [-79.9460132021846, 32.7793499649709], [-79.9459773908192, 32.7792841138272], [-79.9458802686444, 32.7791082995213], [-79.9455050879232, 32.779257021565]]], "type": "Polygon"}, "id": "302", "properties": {"OBJECTID": 3365, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6463.541015625, "Shape__Length": 372.153701828473, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9460311978007, 32.779257021565, -79.9451274542979, 32.7803691798813], "geometry": {"coordinates": [[[-79.9455050879232, 32.779257021565], [-79.9451274542979, 32.7794065807686], [-79.9452930131527, 32.7797083136393], [-79.9453447444618, 32.7798030797682], [-79.9454060270782, 32.7799152777005], [-79.9454681232496, 32.7800274826151], [-79.9455294061822, 32.7801396804884], [-79.9455915026609, 32.7802518862448], [-79.9456559783073, 32.7803691798813], [-79.9459077616408, 32.7802674095977], [-79.9460311978007, 32.7802177088612], [-79.9459762751507, 32.7801176767757], [-79.9459070370851, 32.7799904626844], [-79.9458552884281, 32.7798970737489], [-79.9458449414212, 32.7798781714259], [-79.9457836592903, 32.7797658889503], [-79.9457454595781, 32.7796957244234], [-79.945722377328, 32.7796536055435], [-79.9456706456866, 32.7795588404777], [-79.945601394014, 32.7794329148171], [-79.9455050879232, 32.779257021565]]], "type": "Polygon"}, "id": "303", "properties": {"OBJECTID": 3366, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6508.611328125, "Shape__Length": 373.21382718986, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9458137662578, 32.7780766066842, -79.9449322163161, 32.7791374879023], "geometry": {"coordinates": [[[-79.9449322163161, 32.7782265542225], [-79.9449775888137, 32.7783088924957], [-79.9450786692748, 32.7784934200102], [-79.9450866236137, 32.7785084328967], [-79.945131190254, 32.7785901653459], [-79.9451725791934, 32.778665599926], [-79.9451693059235, 32.7786671165439], [-79.9451756698052, 32.7786791126031], [-79.9452234590105, 32.7787633627695], [-79.9452672717005, 32.7788401899052], [-79.9452704671357, 32.7788451162187], [-79.9453166609052, 32.7789268617272], [-79.9454361374285, 32.7791374879023], [-79.9456249514708, 32.7790628364652], [-79.9458137662578, 32.7789881847463], [-79.9456498057724, 32.7786887822935], [-79.9455550950316, 32.7785156525307], [-79.9454603711491, 32.778343464998], [-79.9453147306544, 32.7780766066842], [-79.9451046761024, 32.7781588076874], [-79.9449322163161, 32.7782265542225]]], "type": "Polygon"}, "id": "304", "properties": {"OBJECTID": 3367, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6240.41015625, "Shape__Length": 359.711350750501, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9454361374285, 32.7782265542225, -79.9445586883757, 32.7792865460259], "geometry": {"coordinates": [[[-79.9449322163161, 32.7782265542225], [-79.9445586883757, 32.7783732268942], [-79.9446040616001, 32.7784554823471], [-79.9447130957512, 32.7786550212808], [-79.9447584630548, 32.7787377906708], [-79.9448070279023, 32.7788252284636], [-79.9448531838779, 32.7789100644106], [-79.9448985576914, 32.7789923170539], [-79.9449439305115, 32.7790746589533], [-79.9450601372049, 32.7792865460259], [-79.9451533214198, 32.7792494653053], [-79.945248136453, 32.7792121460617], [-79.9453421370136, 32.7791748143129], [-79.9454361374285, 32.7791374879023], [-79.9453166609052, 32.7789268617272], [-79.9452704671357, 32.7788451162187], [-79.9452672717005, 32.7788401899052], [-79.9452234590105, 32.7787633627695], [-79.9451756698052, 32.7786791126031], [-79.9451693059235, 32.7786671165439], [-79.9451725791934, 32.778665599926], [-79.945131190254, 32.7785901653459], [-79.9450866236137, 32.7785084328967], [-79.9450786692748, 32.7784934200102], [-79.9449775888137, 32.7783088924957], [-79.9449322163161, 32.7782265542225]]], "type": "Polygon"}, "id": "305", "properties": {"OBJECTID": 3368, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6103.416015625, "Shape__Length": 358.766116357079, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9514911864401, 32.7793010253335, -79.9492543663987, 32.7811131469476], "geometry": {"coordinates": [[[-79.9492543663987, 32.7793987683342], [-79.9492584085114, 32.7794007789704], [-79.9496375302642, 32.7796679193969], [-79.9498108003209, 32.779803237306], [-79.9499154693651, 32.7798933010122], [-79.9502322026437, 32.7802074911054], [-79.9502362242456, 32.780211389973], [-79.9502402436697, 32.7802152924292], [-79.9502426601328, 32.7802172872791], [-79.9502458683036, 32.7802211818719], [-79.9502482847345, 32.780223179427], [-79.9502539093647, 32.7802289804896], [-79.9502579287903, 32.7802328829452], [-79.9502619493271, 32.7802367818028], [-79.950265970921, 32.7802406815713], [-79.9502699914103, 32.7802444956558], [-79.9502740130157, 32.7802483945222], [-79.9502780324756, 32.7802522942719], [-79.9502820551009, 32.7802561083744], [-79.9502860745399, 32.7802600099273], [-79.9502900971659, 32.7802638240296], [-79.9502941177056, 32.7802677228862], [-79.9502981392649, 32.780271536979], [-79.9503021608245, 32.7802753510717], [-79.950306180287, 32.7802792508205], [-79.9503102029147, 32.7802830649221], [-79.9503142234079, 32.7802868790052], [-79.9503182460256, 32.7802906940083], [-79.9503222665195, 32.7802945080912], [-79.9503246850625, 32.7802964190868], [-79.9503287066244, 32.7803002331786], [-79.9503327271192, 32.7803040472612], [-79.9503367497493, 32.7803078613619], [-79.9503407702448, 32.7803116754442], [-79.9503447928756, 32.7803154895446], [-79.9503472103631, 32.7803173996289], [-79.9503512329569, 32.7803211280546], [-79.9503552545211, 32.7803249421456], [-79.9503592760482, 32.7803286705619], [-79.9503616946147, 32.7803305797533], [-79.9503657161798, 32.7803343938439], [-79.9503697387643, 32.7803381231708], [-79.9503737603301, 32.7803419372612], [-79.9503761777923, 32.7803437607686], [-79.9503802004261, 32.7803475748679], [-79.9503842230119, 32.7803513041943], [-79.9503882456089, 32.7803550326189], [-79.9503906630985, 32.7803569427023], [-79.9503946846394, 32.7803606702156], [-79.9503987155251, 32.7803637980896], [-79.9504019309236, 32.7803670037392], [-79.9504059597342, 32.7803702154656], [-79.9504091751116, 32.7803734229184], [-79.9504115957135, 32.7803750742019], [-79.9504148100613, 32.78037836732], [-79.9504180244419, 32.7803816577328], [-79.9504220521913, 32.7803849578293], [-79.9504252665398, 32.7803882509471], [-79.9504284799021, 32.7803916261233], [-79.9504325066225, 32.7803950118849], [-79.9504357199528, 32.780398389766], [-79.9504389322425, 32.7804018542143], [-79.9504421456058, 32.7804052293902], [-79.9504453578744, 32.7804086956417], [-79.9504485702083, 32.7804121564828], [-79.9504517814475, 32.7804157083996], [-79.9504549937602, 32.7804191710439], [-79.9504582050324, 32.7804227202553], [-79.950461416305, 32.7804262694666], [-79.9504646275886, 32.7804298177761], [-79.95046783781, 32.7804334544561], [-79.9504710480318, 32.780437091136], [-79.9504742582863, 32.7804407251107], [-79.9504766551069, 32.7804443548122], [-79.9504798653619, 32.7804479887867], [-79.9504830745657, 32.78045171023], [-79.9504854703896, 32.7804554228915], [-79.950488679583, 32.7804591452363], [-79.9504910753857, 32.7804628597013], [-79.9504942845796, 32.780466582046], [-79.9504966793529, 32.7804703821762], [-79.9504998875284, 32.7804741892844], [-79.9505022823021, 32.7804779894145], [-79.9505054904781, 32.7804817965226], [-79.9505078852523, 32.7804855966526], [-79.9505102790077, 32.7804894815462], [-79.9505126727524, 32.7804933673414], [-79.9505158799104, 32.7804972592129], [-79.950518273634, 32.7805011468116], [-79.9505206673686, 32.7805050335085], [-79.9505230600736, 32.7805090058707], [-79.9505254528005, 32.7805129764293], [-79.9505278465465, 32.7805168622244], [-79.9505302392522, 32.7805208345864], [-79.9505326309174, 32.7805248935156], [-79.9505350236452, 32.7805288640741], [-79.9505366019191, 32.7805329151236], [-79.9505389946364, 32.7805368865837], [-79.9505413863133, 32.7805409446111], [-79.9505437779796, 32.78054500354], [-79.9505453562543, 32.7805490545894], [-79.950546958312, 32.7805511272193], [-79.9505477365932, 32.7805540558375], [-79.9506390675061, 32.780738750262], [-79.9506621038898, 32.7807849053131], [-79.9507715728001, 32.7810173449905], [-79.9508054485091, 32.7811131469476], [-79.9514283152869, 32.780937334976], [-79.9514856159017, 32.7806955845169], [-79.9514856488691, 32.7806928396174], [-79.9514864942659, 32.780690182846], [-79.9514873406806, 32.780687441311], [-79.9514873726624, 32.7806847784699], [-79.951488219088, 32.7806820360331], [-79.9514882520878, 32.7806792884284], [-79.9514890985024, 32.7806765468933], [-79.9514891304949, 32.7806738831505], [-79.9514899769094, 32.7806711416154], [-79.95149000992, 32.7806683931089], [-79.9514900429306, 32.7806656446025], [-79.9514900759412, 32.780662896096], [-79.9514909223557, 32.7806601545609], [-79.9514909553662, 32.7806574060544], [-79.9514909883767, 32.780654657548], [-79.9514910213873, 32.7806519090415], [-79.9514910543979, 32.780649160535], [-79.9514910874084, 32.7806464120285], [-79.951491120419, 32.780643663522], [-79.9514911534295, 32.7806409150155], [-79.9514911864401, 32.780638166509], [-79.951490406047, 32.7806354110311], [-79.951490438007, 32.7806327499935], [-79.9514904710501, 32.7806299987818], [-79.9514905040174, 32.7806272538822], [-79.9514897236353, 32.7806244975025], [-79.9514897566784, 32.7806217462908], [-79.9514889762422, 32.7806189944198], [-79.9514890082348, 32.780616330677], [-79.951488227842, 32.780613575199], [-79.9514882608527, 32.7806108266926], [-79.951487479442, 32.7806081559783], [-79.9514875124418, 32.7806054083736], [-79.9514867310311, 32.7806027376592], [-79.9514859506386, 32.7805999821813], [-79.951485168128, 32.780597314163], [-79.9514843877741, 32.7805946443596], [-79.9514844207849, 32.7805918958531], [-79.9514836393744, 32.7805892251388], [-79.9514828579532, 32.7805865553262], [-79.9514820765429, 32.7805838846119], [-79.9514812950892, 32.7805812175045], [-79.9514796992471, 32.780578625484], [-79.9514789178044, 32.7805759574749], [-79.9514781363835, 32.7805732876623], [-79.9514773539445, 32.7805707026133], [-79.9514765704056, 32.7805681202604], [-79.9514749766602, 32.7805654425836], [-79.9514741942214, 32.7805628575346], [-79.9514734117502, 32.7805602751909], [-79.9514718158653, 32.7805576867773], [-79.9514710324086, 32.7805551864919], [-79.9514694365347, 32.7805525971765], [-79.9514686530781, 32.7805500968912], [-79.951467056137, 32.7805475075666], [-79.9514654603019, 32.7805450039258], [-79.9514646768455, 32.7805425036404], [-79.9514630799432, 32.7805399999903], [-79.9514614830517, 32.7805374954385], [-79.9514606985341, 32.7805350835237], [-79.9514591005753, 32.7805325789627], [-79.9514575037119, 32.780530160987], [-79.9514559057919, 32.7805277421006], [-79.951454307872, 32.780525323214], [-79.9514527099522, 32.7805229043275], [-79.9514511110144, 32.7805205702045], [-79.9514495120273, 32.7805181513088], [-79.9514479141571, 32.780515817195], [-79.9514463152088, 32.7805134839737], [-79.951444716228, 32.7805111534577], [-79.9514423038882, 32.7805088123629], [-79.9514407028545, 32.7805065638961], [-79.9514391049415, 32.7805042333892], [-79.9514375049755, 32.7805019849315], [-79.9514350905566, 32.7804998169708], [-79.9514334905908, 32.780497568513], [-79.9514310761228, 32.7804953157795], [-79.951429476174, 32.7804931547997], [-79.9514270617448, 32.7804909877406], [-79.9514254607504, 32.7804888249481], [-79.9514230442358, 32.7804867426435], [-79.9514214442874, 32.7804845816636], [-79.9514190288405, 32.780482499368], [-79.9514150092528, 32.7804784274049], [-79.9514125948845, 32.7804763442166], [-79.9514085753142, 32.7804723597312], [-79.9514061577716, 32.7804703630917], [-79.9514037402459, 32.78046845393], [-79.9514013238202, 32.7804665420723], [-79.9513989062947, 32.7804646329105], [-79.9513964877344, 32.7804627210343], [-79.9513940702584, 32.7804608966454], [-79.9513916527549, 32.78045898568], [-79.9513892331936, 32.7804572460454], [-79.9513868135722, 32.7804554225397], [-79.9513843950676, 32.7804536838158], [-79.9513819765247, 32.7804518594174], [-79.951379555924, 32.7804502063497], [-79.9513771352848, 32.7804484676075], [-79.9513739023499, 32.7804468075766], [-79.9513714817602, 32.7804451536071], [-79.9513690600707, 32.7804435023335], [-79.9513666395197, 32.7804419340384], [-79.9513634044672, 32.780440361467], [-79.9513609817814, 32.7804387931534], [-79.9513585601308, 32.7804372275542], [-79.9513553251494, 32.7804357379518], [-79.9513529024808, 32.7804342571162], [-79.9513140675812, 32.7804164863641], [-79.951263076075, 32.7803950040512], [-79.9512582245577, 32.7803925572702], [-79.9512525606578, 32.7803900187524], [-79.9512493215144, 32.780388787036], [-79.9512444699654, 32.7803863429597], [-79.9512388071661, 32.7803838017452], [-79.9512355669341, 32.7803825718228], [-79.9512307164366, 32.7803800402771], [-79.9512274772939, 32.7803788085601], [-79.9512226267968, 32.7803762770141], [-79.9512169629423, 32.7803737348876], [-79.9512137237675, 32.7803725058756], [-79.9512088732712, 32.780369974329], [-79.9512032094174, 32.7803674322019], [-79.9511999712614, 32.7803661184258], [-79.9511951208092, 32.7803635832718], [-79.9511918826534, 32.7803622694954], [-79.9511870322017, 32.780359734341], [-79.9511813683167, 32.7803571949181], [-79.9511781301939, 32.7803558784363], [-79.9511732797104, 32.7803533459866], [-79.9511700415878, 32.7803520295044], [-79.9511651911047, 32.7803494970544], [-79.9511619529824, 32.7803481805721], [-79.9511571024999, 32.7803456481217], [-79.9511514396242, 32.7803430248356], [-79.9511482015132, 32.7803417074512], [-79.9511433510205, 32.780339175902], [-79.9511401129098, 32.7803378585174], [-79.9511352634793, 32.7803352385973], [-79.9511320253254, 32.7803339248194], [-79.9511271759062, 32.7803313039973], [-79.9511239377526, 32.7803299902191], [-79.9511190873047, 32.7803274550621], [-79.9511158491947, 32.7803261376768], [-79.9511109997222, 32.7803235213628], [-79.951107762631, 32.7803221192136], [-79.9511029131698, 32.7803195019975], [-79.9510972503516, 32.7803168742], [-79.9510940122316, 32.780315557716], [-79.9510891627712, 32.7803129404993], [-79.951083499943, 32.780310313603], [-79.9510810762532, 32.7803089184273], [-79.9510778381337, 32.7803076019428], [-79.9510729886742, 32.7803049847255], [-79.9510673268764, 32.7803022721631], [-79.9510624774175, 32.7802996549454], [-79.9510592403279, 32.780298252795], [-79.951054390902, 32.7802956328717], [-79.9510511538127, 32.780294230721], [-79.9510463043439, 32.7802916144044], [-79.9510406425478, 32.7802889018407], [-79.9510382188592, 32.7802875066643], [-79.9510325560017, 32.7802848824708], [-79.9510301323134, 32.7802834872942], [-79.9510268942065, 32.7802821699066], [-79.9510220458009, 32.7802794652184], [-79.9510163840063, 32.7802767526536], [-79.9510139603185, 32.7802753574766], [-79.9510115366307, 32.7802739622996], [-79.9510082984811, 32.7802726485185], [-79.9510034500875, 32.7802699429278], [-79.9510002129999, 32.7802685407758], [-79.950995364596, 32.7802658360866], [-79.9509921275087, 32.7802644339344], [-79.950987279116, 32.780261728343], [-79.9509848554291, 32.7802603331655], [-79.9509816183422, 32.7802589310131], [-79.9509767699502, 32.7802562254213], [-79.9509735328202, 32.7802548268756], [-79.9509711091337, 32.7802534316978], [-79.9509686854472, 32.7802520365199], [-79.9509654462749, 32.7802507191215], [-79.9509630236561, 32.7802493239527], [-79.9509605999698, 32.7802479287747], [-79.9509581762837, 32.7802465335966], [-79.9509549391977, 32.7802451314434], [-79.9509525155118, 32.7802437362652], [-79.9509500918259, 32.780242341087], [-79.9509476670726, 32.7802409458995], [-79.9509444310545, 32.7802395437553], [-79.9509395826539, 32.7802368390638], [-79.9509363455794, 32.7802354360084], [-79.950933921894, 32.7802340408299], [-79.9509314981978, 32.780232646553], [-79.9509290734452, 32.7802312513652], [-79.9509258384571, 32.780229763555], [-79.950923414772, 32.7802283683762], [-79.9509209900196, 32.7802269731883], [-79.9509185674021, 32.7802255780186], [-79.9509153303175, 32.7802241758644], [-79.9509129066328, 32.7802227806854], [-79.9509104818806, 32.7802213854972], [-79.9509072458639, 32.7802199833519], [-79.9509048221794, 32.7802185881728], [-79.9509023984894, 32.7802171046139], [-79.9508999758725, 32.7802157094438], [-79.9508967387453, 32.7802143108961], [-79.9508943150611, 32.7802129157167], [-79.9508918914095, 32.7802115178322], [-79.9508894687549, 32.7802100369873], [-79.9508862316714, 32.7802086348323], [-79.9508838069202, 32.7802072396436], [-79.9508813843038, 32.7802058444732], [-79.9508789616387, 32.7802043645299], [-79.9508757234882, 32.7802029623655], [-79.9508733008829, 32.7802015662931], [-79.9508708782181, 32.7802000863497], [-79.9508684545347, 32.7801986911699], [-79.9508652163846, 32.7801972890052], [-79.9508627948308, 32.7801958054638], [-79.9508603711043, 32.7801944138907], [-79.9508579474158, 32.7801929303309], [-79.9508547114009, 32.7801915281843], [-79.950852287718, 32.7801901330041], [-79.9508498650647, 32.7801886521585], [-79.9508474403145, 32.780187256969], [-79.950845018718, 32.7801857770342], [-79.9508417816361, 32.7801843748781], [-79.9508393579048, 32.7801828949249], [-79.9508369352899, 32.7801814997536], [-79.9508345126696, 32.7801800162024], [-79.9508312755502, 32.7801785283715], [-79.950828851868, 32.7801771331909], [-79.950826430272, 32.7801756532557], [-79.9508240065901, 32.780174258075], [-79.9508207695036, 32.7801727675385], [-79.9508183479079, 32.7801712876032], [-79.9508159242262, 32.7801698924223], [-79.9508135004957, 32.7801684124686], [-79.9508110778437, 32.7801669316222], [-79.9508078418305, 32.7801655294743], [-79.9508054192112, 32.7801640459226], [-79.950802995481, 32.7801625659687], [-79.9508005728673, 32.7801611707966], [-79.9507973368165, 32.7801596829739], [-79.9507949130868, 32.7801582030199], [-79.9507924904244, 32.7801567230748], [-79.950790067811, 32.7801553279026], [-79.9507876451922, 32.7801538443506], [-79.9507844080637, 32.7801523574201], [-79.9507819864801, 32.7801508765823], [-79.950779563829, 32.7801493957353], [-79.9507771401323, 32.7801479130757], [-79.9507747174814, 32.7801464322286], [-79.9507714814696, 32.7801450300797], [-79.9507690577406, 32.7801435501251], [-79.9507666351225, 32.7801420665726], [-79.9507642135286, 32.7801405866362], [-79.9507617908782, 32.7801391057889], [-79.9507585537507, 32.7801376188578], [-79.9507561310895, 32.780136138912], [-79.9507537095393, 32.7801346553685], [-79.950751285811, 32.7801331754135], [-79.9507488631609, 32.780131694566], [-79.9507456281797, 32.780130206751], [-79.9507432055515, 32.7801287240998], [-79.9507407818343, 32.780127243243], [-79.9507383591738, 32.7801257632969], [-79.9507359376242, 32.780124279753], [-79.950733514926, 32.7801227141323], [-79.950730278867, 32.7801212272095], [-79.9507278562502, 32.7801197436563], [-79.9506470841869, 32.7800718073804], [-79.950383765878, 32.7799157009972], [-79.9493157399664, 32.7793010253335], [-79.9492543663987, 32.7793987683342]]], "type": "Polygon"}, "id": "306", "properties": {"OBJECTID": 3369, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14671.671875, "Shape__Length": 723.500696132193, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9505299929401, 32.7783947741613, -79.9473826364676, 32.7815029531071], "geometry": {"coordinates": [[[-79.9479143693545, 32.7794827720434], [-79.9479151537647, 32.7794851839806], [-79.947916752589, 32.7794875181495], [-79.9479183514243, 32.7794898514166], [-79.9479191358347, 32.7794922633538], [-79.9479207346918, 32.7794945948174], [-79.9479215191132, 32.7794970058529], [-79.9479231179378, 32.7794993400217], [-79.9479247157411, 32.7795017589541], [-79.9479255001518, 32.7795041708912], [-79.9479270989767, 32.77950650506], [-79.9479278833875, 32.7795089169972], [-79.9479294812019, 32.7795113350278], [-79.9479302656128, 32.779513746965], [-79.9479318644706, 32.7795160784284], [-79.947932648849, 32.7795184930708], [-79.9479342466529, 32.7795209120031], [-79.947935031064, 32.7795233239402], [-79.9479366289006, 32.7795257401672], [-79.9479374133118, 32.7795281521043], [-79.9479390110834, 32.7795305737418], [-79.9479397954947, 32.7795329856789], [-79.9479413932991, 32.7795354046111], [-79.9479421777431, 32.779537813843], [-79.9479437755477, 32.779540232775], [-79.9479445599592, 32.7795426447121], [-79.9479461577312, 32.7795450663495], [-79.9479469421428, 32.7795474782866], [-79.9479477255222, 32.779549975889], [-79.947949323338, 32.7795523939193], [-79.9479501088063, 32.7795548067673], [-79.9479517045224, 32.7795573104538], [-79.9479524889343, 32.7795597223908], [-79.9479532733462, 32.7795621343279], [-79.9479548701301, 32.7795646380235], [-79.9479556545312, 32.7795670508622], [-79.9479564389433, 32.7795694627993], [-79.9479580357274, 32.7795719664948], [-79.947958821207, 32.779574378441], [-79.9479596034868, 32.7795768787394], [-79.9479612012926, 32.7795792976714], [-79.9479619846835, 32.779581794372], [-79.9479627680744, 32.7795842910725], [-79.947963552476, 32.7795867039113], [-79.9479651492279, 32.779589210312], [-79.947965932619, 32.7795917070126], [-79.9479667170316, 32.7795941189495], [-79.9479675014794, 32.779596616561], [-79.9479690971859, 32.779599121149], [-79.9479698805772, 32.7796016178496], [-79.9479706649466, 32.7796040333935], [-79.9479714483379, 32.779606530094], [-79.9479730451231, 32.7796090337894], [-79.9479738285145, 32.7796115304899], [-79.9479746118626, 32.7796140307974], [-79.9479753952433, 32.7796165283997], [-79.9479761797024, 32.7796190251094], [-79.9479769630832, 32.7796215227117], [-79.9479777453749, 32.7796240221082], [-79.9479793421497, 32.7796265267053], [-79.9479801255307, 32.7796290243075], [-79.9479809089225, 32.779631521008], [-79.9479816923145, 32.7796340177085], [-79.9479824756629, 32.7796365180159], [-79.947983259055, 32.7796390147164], [-79.9479840424361, 32.7796415123186], [-79.9479848268957, 32.7796440090282], [-79.9479856092229, 32.7796465940993], [-79.9479863915369, 32.7796490916923], [-79.9479871749291, 32.7796515883928], [-79.9479879582779, 32.7796540887002], [-79.9479887406379, 32.779656671066], [-79.9479895240303, 32.7796591677664], [-79.9479903073793, 32.7796616680738], [-79.9479910897394, 32.7796642504396], [-79.9479918731319, 32.7796667471401], [-79.947992656481, 32.7796692474475], [-79.9479934399088, 32.7796718298224], [-79.9479942233014, 32.7796743265229], [-79.9479950045618, 32.7796769115846], [-79.9479957879436, 32.7796794091868], [-79.9479965702715, 32.7796819942578], [-79.9479973536643, 32.7796844909582], [-79.9479981360249, 32.7796870733239], [-79.9479989193744, 32.7796895736313], [-79.947999701735, 32.779692155997], [-79.9479996717335, 32.7796946457027], [-79.9480004540508, 32.7796972316754], [-79.9480012374439, 32.7796997283758], [-79.9480020208396, 32.7797023134559], [-79.9480028032004, 32.7797048958217], [-79.9480035865936, 32.779707392522], [-79.9480035555165, 32.7797099715001], [-79.9480043368209, 32.7797125529549], [-79.9480051201707, 32.7797150532623], [-79.9480059025318, 32.779717635628], [-79.9480066848603, 32.7797202206989], [-79.9480066538267, 32.77972279607], [-79.9480074371876, 32.7797252954756], [-79.9480082195489, 32.7797278778413], [-79.9480090018667, 32.7797304638138], [-79.9480089708441, 32.7797330382832], [-79.9480097531619, 32.7797356242558], [-79.9480105365556, 32.7797381209562], [-79.9480113199845, 32.7797407033311], [-79.9480112889184, 32.7797432814074], [-79.9480120712799, 32.7797458637731], [-79.9480128525415, 32.7797484488347], [-79.948012821508, 32.7797510242059], [-79.9480136038371, 32.7797536092768], [-79.9480143861988, 32.7797561916425], [-79.9480143551328, 32.7797587697188], [-79.9480151374945, 32.7797613520844], [-79.9480151064286, 32.7797639301607], [-79.9480158887904, 32.7797665125264], [-79.9480166711196, 32.7797690975973], [-79.9480166400863, 32.7797716729684], [-79.9480174224156, 32.7797742580393], [-79.9480173913823, 32.7797768334103], [-79.9480181737117, 32.7797794184812], [-79.9480181426784, 32.7797819938523], [-79.9480189250079, 32.7797845789232], [-79.9480188939746, 32.7797871542943], [-79.9480196773716, 32.7797897393743], [-79.9480204597338, 32.7797923217399], [-79.948020428668, 32.7797948998163], [-79.9480212099628, 32.7797974821727], [-79.9480211778647, 32.7798001459144], [-79.9480211468424, 32.7798027203838], [-79.9480219291613, 32.7798053063564], [-79.9480218981389, 32.7798078808258], [-79.9480226804579, 32.7798104667984], [-79.9480226494248, 32.7798130421695], [-79.9480234307332, 32.7798157120039], [-79.9480233996675, 32.7798182900803], [-79.9480233686343, 32.7798208654514], [-79.9480241509643, 32.7798234505223], [-79.9480241199311, 32.7798260258934], [-79.948024901229, 32.7798286966296], [-79.9480248701958, 32.7798312720007], [-79.9480248391302, 32.779833850077], [-79.9480256214928, 32.7798364324426], [-79.9481945693212, 32.780938090223], [-79.9481953496129, 32.7809408457221], [-79.9481953175197, 32.7809435094641], [-79.9481960988436, 32.7809461792978], [-79.9481968801567, 32.7809488500332], [-79.9481976615132, 32.7809515171617], [-79.9481976294201, 32.7809541809038], [-79.9481984107442, 32.7809568507375], [-79.9481991920574, 32.7809595214729], [-79.9481999712928, 32.780962276061], [-79.9481999391998, 32.780964939803], [-79.9482007205566, 32.7809676069315], [-79.9482015018699, 32.7809702776669], [-79.9482022842509, 32.7809729484115], [-79.9482030656078, 32.7809756155399], [-79.9482030335149, 32.780978279282], [-79.9482038148393, 32.7809809491156], [-79.9482045961529, 32.780983619851], [-79.9482053775101, 32.7809862869794], [-79.9482061588237, 32.7809889577148], [-79.9482061267417, 32.7809916205551], [-79.9482069080556, 32.7809942912905], [-79.9482076894128, 32.7809969584189], [-79.9482084707267, 32.7809996291543], [-79.948209250984, 32.7810022989787], [-79.9482092188913, 32.7810049627208], [-79.9482100002052, 32.7810076334561], [-79.9482107826302, 32.7810103005937], [-79.9482115639443, 32.7810129713291], [-79.9482123452693, 32.7810156411627], [-79.9482131265835, 32.781018311898], [-79.9482130945343, 32.7810209720332], [-79.9482138758485, 32.7810236427685], [-79.9482146571737, 32.7810263126021], [-79.948215438488, 32.7810289833374], [-79.9482162198459, 32.7810316504658], [-79.9482170011603, 32.7810343212011], [-79.9482177824829, 32.7810369026548], [-79.9482185637974, 32.7810395733902], [-79.9482185317158, 32.7810422362305], [-79.9482193140979, 32.7810449069751], [-79.948220095456, 32.7810475741034], [-79.9482208767707, 32.7810502448387], [-79.9482216580963, 32.7810529146722], [-79.9482224394111, 32.7810555854075], [-79.9482232217906, 32.7810581677722], [-79.9482240031055, 32.7810608385075], [-79.9482247844313, 32.781063508341], [-79.9482255657572, 32.7810661781746], [-79.9482263460373, 32.7810688461955], [-79.9482271283845, 32.7810714312653], [-79.9482270963357, 32.7810740914005], [-79.9482278787184, 32.7810767621449], [-79.9482286600336, 32.7810794328801], [-79.9482294423808, 32.7810820179501], [-79.9482302237396, 32.7810846850784], [-79.948231005055, 32.7810873558136], [-79.9482317863812, 32.7810900256471], [-79.9482325687614, 32.7810926080117], [-79.9482333500877, 32.7810952778452], [-79.9482341314032, 32.7810979485805], [-79.9482349127188, 32.7811006193157], [-79.9482356940317, 32.7811032016711], [-79.9482364753582, 32.7811058715046], [-79.948237257774, 32.7811085395438], [-79.9482380401327, 32.7811111237119], [-79.9482388214485, 32.7811137944471], [-79.9482396028078, 32.7811164615753], [-79.948240385145, 32.7811190475469], [-79.9482411664718, 32.7811217173803], [-79.9482419488525, 32.7811242997449], [-79.9482427301794, 32.7811269695784], [-79.9482435114955, 32.7811296403135], [-79.9482442928089, 32.781132222669], [-79.9482450741251, 32.7811348934041], [-79.9482458575843, 32.7811374748761], [-79.9482466389006, 32.7811401456113], [-79.948247421249, 32.7811427306811], [-79.9482482025654, 32.7811454014162], [-79.9482497973333, 32.7811480755374], [-79.9482505796819, 32.7811506606072], [-79.948251361042, 32.7811533277353], [-79.9482521433797, 32.7811559137069], [-79.9482529236398, 32.7811585835311], [-79.9482537060212, 32.7811611658956], [-79.9482544884054, 32.7811638366399], [-79.9482552707542, 32.7811664217096], [-79.9482560531357, 32.7811690040742], [-79.9482568344526, 32.7811716748093], [-79.9482576168451, 32.781174256272], [-79.9482583981729, 32.7811769261054], [-79.9482599939195, 32.7811795190698], [-79.94826077528, 32.7811821861979], [-79.9482615565618, 32.7811847712584], [-79.9482623389436, 32.7811873536229], [-79.9482631213284, 32.7811900243672], [-79.9482639037103, 32.7811926067316], [-79.9482646860597, 32.7811951918013], [-79.9482662807965, 32.7811978686275], [-79.9482670631677, 32.7812004518938], [-79.9482678455281, 32.7812030360617], [-79.9482686268891, 32.7812057031897], [-79.9482694092279, 32.7812082891612], [-79.9482701916102, 32.7812108715256], [-79.9482709718713, 32.7812135413497], [-79.9482725686973, 32.7812161334213], [-79.9482733510797, 32.7812187157858], [-79.9482741334296, 32.7812213008555], [-79.9482749147475, 32.7812239715905], [-79.9482756971301, 32.7812265539548], [-79.948277292889, 32.7812291460173], [-79.9482780752717, 32.7812317283817], [-79.9482788565899, 32.7812343991167], [-79.948279637916, 32.7812369805701], [-79.9482804213337, 32.7812395656489], [-79.9482820171147, 32.7812421559079], [-79.948282799476, 32.7812447400757], [-79.9482835818481, 32.7812473233418], [-79.9482843631774, 32.781249993175], [-79.9482851455605, 32.7812525755394], [-79.9482867413201, 32.7812551676017], [-79.9482875237033, 32.781257749966], [-79.9482883049866, 32.7812603350264], [-79.9482890884373, 32.7812629173999], [-79.9482906841972, 32.7812655094622], [-79.9482914665807, 32.7812680918265], [-79.9482922489316, 32.7812706768961], [-79.9482930312825, 32.7812732619656], [-79.9482946270753, 32.7812758513226], [-79.9482954094264, 32.7812784363921], [-79.94829619181, 32.7812810187564], [-79.9482977875705, 32.7812836108186], [-79.9482985699543, 32.7812861931829], [-79.9482993523382, 32.7812887755471], [-79.9483001346895, 32.7812913606167], [-79.9483017304828, 32.7812939499736], [-79.9483025128343, 32.7812965350431], [-79.9483032952183, 32.7812991174073], [-79.9483048909793, 32.7813017094694], [-79.9483056733309, 32.7813042945389], [-79.9483064557152, 32.7813068769031], [-79.9483080514764, 32.7813094689652], [-79.9483088348927, 32.781311965664], [-79.9483096172771, 32.7813145480283], [-79.9483112130278, 32.781317140992], [-79.9483119954231, 32.7813197224545], [-79.9483127777642, 32.7813223084256], [-79.9483143745905, 32.781324812117], [-79.9483151569752, 32.7813273944812], [-79.9483159393273, 32.7813299795506], [-79.9483175351218, 32.7813325689074], [-79.9483183174741, 32.7813351539768], [-79.9483191008801, 32.7813376515773], [-79.9483206966531, 32.7813402427374], [-79.9483214790273, 32.7813428260034], [-79.9483222624443, 32.7813453227021], [-79.9483238582067, 32.781347914764], [-79.9483246405592, 32.7813504998334], [-79.9483262363544, 32.78135308919], [-79.9483270197608, 32.7813555867904], [-79.9483278021135, 32.7813581718598], [-79.948329398941, 32.781360675551], [-79.9483301812938, 32.7813632606203], [-79.9483317770894, 32.7813658499769], [-79.9483325605069, 32.7813683466756], [-79.9483341562592, 32.7813709396391], [-79.9483349396768, 32.7813734363377], [-79.94833572203, 32.781376021407], [-79.9483373178259, 32.7813786107635], [-79.9483381012437, 32.7813811074622], [-79.9483396969964, 32.7813837004256], [-79.9483404804143, 32.7813861971243], [-79.948342076178, 32.7813887891859], [-79.9483428595852, 32.7813912867864], [-79.9483436430032, 32.781393783485], [-79.9483452387672, 32.7813963755466], [-79.9483460221745, 32.781398873147], [-79.9483476179712, 32.7814014625033], [-79.9483484013569, 32.7814039619072], [-79.9483499971538, 32.7814065512635], [-79.9483507805613, 32.7814090488639], [-79.9483523773578, 32.78141155526], [-79.9483531597443, 32.781414137624], [-79.9483547565626, 32.7814166422166], [-79.9483555399486, 32.7814191416204], [-79.948357135746, 32.7814217309767], [-79.9483579191647, 32.7814242276752], [-79.9483959812339, 32.7815029531071], [-79.9484989285031, 32.7814740107296], [-79.9494065609178, 32.7812177154697], [-79.9505299929401, 32.7809033859], [-79.9503974209562, 32.7806067969433], [-79.950396643677, 32.7806037853639], [-79.9503950540463, 32.780600679337], [-79.9503934633858, 32.7805976589754], [-79.9503918716687, 32.7805946377029], [-79.9503894686728, 32.7805916103717], [-79.9503878779909, 32.7805885918136], [-79.9503862863118, 32.7805856562156], [-79.9503846956518, 32.7805826358539], [-79.9503831028729, 32.7805797029519], [-79.9503815132914, 32.7805766816976], [-79.9503791082098, 32.7805737391207], [-79.9503775164987, 32.7805708062278], [-79.9503759247768, 32.7805678742366], [-79.950374332031, 32.7805649386292], [-79.9503719269657, 32.7805620835302], [-79.9503703352876, 32.780559147932], [-79.9503679291551, 32.7805562928237], [-79.9503663374772, 32.7805533572254], [-79.9503639313342, 32.7805505030188], [-79.9503623386049, 32.7805476548894], [-79.9503599324622, 32.7805448006826], [-79.9503583387031, 32.7805420382185], [-79.9503559315041, 32.7805391831009], [-79.9503543388452, 32.7805364179406], [-79.9503519327031, 32.7805335637338], [-79.9503495255419, 32.7805307942905], [-79.950347930716, 32.7805280318171], [-79.9503455246334, 32.7805252614812], [-79.9503431164103, 32.7805225804084], [-79.9503407092822, 32.7805198082598], [-79.9503382999919, 32.7805171271777], [-79.9503367062823, 32.7805144494861], [-79.9503342980922, 32.7805117657079], [-79.950331889913, 32.780509081028], [-79.9503294806232, 32.7805063999458], [-79.9503270735119, 32.7805037152749], [-79.9503246642706, 32.7805011189654], [-79.9503222550621, 32.7804985199506], [-79.9503198447537, 32.7804959236319], [-79.9503174366129, 32.7804933246262], [-79.9503150273722, 32.7804907283165], [-79.9503126160668, 32.7804882149578], [-79.9503102068372, 32.7804856177463], [-79.9503069842324, 32.7804831001317], [-79.9503045739948, 32.7804805867819], [-79.9503021626683, 32.7804780752265], [-79.9502997534659, 32.7804755645911], [-79.950297342177, 32.7804731387101], [-79.9502941164189, 32.7804707058404], [-79.9502917072603, 32.7804681915978], [-79.9502892949202, 32.7804658531856], [-79.9502860691517, 32.7804634212175], [-79.9502836578635, 32.7804609953362], [-79.9502804332219, 32.7804586472482], [-79.950278020904, 32.7804563070322], [-79.9502739992997, 32.7804524072641], [-79.9502715839185, 32.7804504106204], [-79.950269166429, 32.7804485005346], [-79.9502651448471, 32.7804445989627], [-79.9502627294338, 32.780442605024], [-79.9502587078634, 32.7804387025502], [-79.9502562913829, 32.7804367086023], [-79.9502522719154, 32.7804328088518], [-79.9502498544111, 32.7804308112876], [-79.9502458349659, 32.7804269097334], [-79.9502434184968, 32.7804249148835], [-79.9502393969172, 32.7804210133108], [-79.9502369815051, 32.7804190193716], [-79.9502329599044, 32.7804151196022], [-79.9502305434685, 32.7804131220468], [-79.9502265250442, 32.7804091357283], [-79.9502241075412, 32.7804071381636], [-79.9502200869982, 32.7804032393047], [-79.9502176716304, 32.7804012417582], [-79.9502136510506, 32.7803972572245], [-79.9502112346157, 32.7803952596687], [-79.9502072161714, 32.7803912751531], [-79.9502047986585, 32.7803892784898], [-79.9502007802473, 32.7803852912687], [-79.9501983637696, 32.7803832973197], [-79.9501943432349, 32.7803793091784], [-79.9501919267575, 32.7803773152292], [-79.95018790728, 32.7803733279986], [-79.9501838878029, 32.7803693407679], [-79.9501814723934, 32.7803673468276], [-79.9501774518603, 32.7803633586858], [-79.9501750353837, 32.7803613647363], [-79.9501726200181, 32.7803593671889], [-79.9501710179945, 32.7803572927507], [-79.9501669974622, 32.7803533046084], [-79.9501645809862, 32.7803513106587], [-79.9501621656211, 32.7803493131111], [-79.9501605625413, 32.7803472377619], [-79.9501565430666, 32.7803432505303], [-79.9501541277019, 32.7803412529825], [-79.9501501081472, 32.7803371836831], [-79.9501476917045, 32.7803351870278], [-79.9501460907603, 32.7803331116967], [-79.9501436732612, 32.7803311141304], [-79.9501412568297, 32.7803291165732], [-79.9501396547748, 32.7803270448398], [-79.950137239411, 32.7803250472917], [-79.9501356373997, 32.7803229719513], [-79.9501332198903, 32.7803209752866], [-79.9501308034593, 32.7803189777292], [-79.9501292014482, 32.7803169023887], [-79.9501267860415, 32.7803149084473], [-79.9501251829958, 32.7803128303924], [-79.9501227665217, 32.7803108364418], [-79.9501211645219, 32.7803087601995], [-79.9501187491481, 32.7803067635528], [-79.95011472964, 32.7803026906453], [-79.9501123142293, 32.7803006083239], [-79.9501107122191, 32.7802985329831], [-79.9501066916861, 32.7802946341205], [-79.9497947707016, 32.7799860682638], [-79.949697353051, 32.7799019069863], [-79.9495297219322, 32.7797711041192], [-79.9492030405639, 32.7795402337467], [-79.9491997911737, 32.7795399470096], [-79.9491965427566, 32.779539490736], [-79.9491924829939, 32.7795387686669], [-79.9491892377391, 32.7795381383663], [-79.9491859903386, 32.779537508949], [-79.9491819378303, 32.7795362728964], [-79.9491786956473, 32.779535387403], [-79.9491746462397, 32.7795338050726], [-79.949171407172, 32.7795326607794], [-79.9491673608364, 32.7795308232562], [-79.9491633187307, 32.7795288117152], [-79.9491608961461, 32.7795273290328], [-79.9491568549775, 32.7795250622807], [-79.9491544355229, 32.7795234082766], [-79.9491520149575, 32.7795217578703], [-79.9491487923816, 32.7795190661711], [-79.949145572914, 32.7795162049538], [-79.9491423555778, 32.779513255375], [-79.9491407525376, 32.7795111800125], [-79.949137537206, 32.7795079752318], [-79.9491351374096, 32.779504688175], [-79.9491335374778, 32.7795024432944], [-79.9491319375532, 32.7795001091322], [-79.9491303531435, 32.7794965747625], [-79.9491287553069, 32.7794941558458], [-79.9491279708739, 32.7794917430146], [-79.9491263751579, 32.7794892366383], [-79.9491256072565, 32.779485450456], [-79.9491248238332, 32.7794829537629], [-79.9491240403845, 32.7794803704935], [-79.949123258025, 32.7794777854298], [-79.9491224756222, 32.779475203973], [-79.9491225076865, 32.7794725402311], [-79.9491225386871, 32.7794699648598], [-79.949121757359, 32.7794672941308], [-79.9491217883813, 32.779464716956], [-79.9491218204457, 32.7794620532141], [-79.9491218524666, 32.7794593930792], [-79.949122696903, 32.7794568210881], [-79.949122728924, 32.7794541609532], [-79.9491235733495, 32.779451589864], [-79.9491244177423, 32.7794490214798], [-79.9491244487754, 32.7794464434033], [-79.9491252942357, 32.7794438750284], [-79.9491261376298, 32.7794413896044], [-79.9491277943944, 32.7794389129711], [-79.9491294645823, 32.7794352325048], [-79.9491303069233, 32.7794328345497], [-79.9491319626565, 32.7794304435816], [-79.9491336173258, 32.7794281409842], [-79.9491352720747, 32.7794259204543], [-79.9491369267873, 32.7794236142498], [-79.9491394051564, 32.779420373606], [-79.9491410567644, 32.7794183252994], [-79.9491443486194, 32.7794152611881], [-79.9491476362879, 32.7794123674874], [-79.9491509239599, 32.7794095621664], [-79.9491542095948, 32.7794070147523], [-79.9491566694238, 32.7794053142812], [-79.9491591281927, 32.7794037905604], [-79.9491632241365, 32.7794015062273], [-79.9491656797864, 32.7794001529261], [-79.9491681365035, 32.7793987996341], [-79.9491722262274, 32.7793970319982], [-79.9491754931849, 32.7793958588179], [-79.9491795798369, 32.7793943463743], [-79.9491836612496, 32.7793930918101], [-79.9491869251388, 32.7793922622018], [-79.9491901880441, 32.7793916030317], [-79.9491942642901, 32.7793907776956], [-79.9491975251114, 32.7793902916595], [-79.9492007828138, 32.7793899760431], [-79.9492040394487, 32.7793896604174], [-79.9492081105791, 32.779389437462], [-79.9492113641099, 32.7793893797339], [-79.949214617677, 32.7793894076803], [-79.9492178712804, 32.7793895213012], [-79.949221120676, 32.7793898071361], [-79.949225183536, 32.7793902713064], [-79.9492284319478, 32.7793907275793], [-79.9492316782285, 32.7793912722135], [-79.9492357349022, 32.7793922503757], [-79.949238978079, 32.7793930529075], [-79.9492422213247, 32.7793939384085], [-79.9492462728109, 32.7793953476024], [-79.9492503190582, 32.7793970146756], [-79.9492543663987, 32.7793987683342], [-79.9493157399664, 32.7793010253335], [-79.9476858812306, 32.7783947741613], [-79.9473826364676, 32.7785148309097], [-79.9479143693545, 32.7794827720434]]], "type": "Polygon"}, "id": "307", "properties": {"OBJECTID": 3370, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 65606.84765625, "Shape__Length": 1208.15197197672, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9514397686042, 32.78093410177, -79.9508054485091, 32.781637655558], "geometry": {"coordinates": [[[-79.9508054485091, 32.7811131469476], [-79.9510553492608, 32.781637655558], [-79.9510586101499, 32.7816370810923], [-79.9510643195228, 32.7816358413245], [-79.9510675814411, 32.7816351811932], [-79.9510732917997, 32.7816338593667], [-79.9510765547688, 32.7816331117663], [-79.9510822672183, 32.7816316159032], [-79.9510855301872, 32.7816308683026], [-79.9510912447057, 32.7816292002066], [-79.9510945086604, 32.7816283705473], [-79.9511002231895, 32.7816267015491], [-79.9511059397984, 32.7816248594164], [-79.9511092047821, 32.7816239440913], [-79.95111492242, 32.7816220162928], [-79.9511206410651, 32.7816200046321], [-79.9511263607501, 32.781617906404], [-79.9511320814857, 32.7816157207067], [-79.9511378021886, 32.7816135377144], [-79.9511410703025, 32.7816123617853], [-79.9511459796724, 32.7816099986846], [-79.9511517024546, 32.7816076425574], [-79.9511549715865, 32.7816063818642], [-79.9511598840708, 32.781603848343], [-79.9511631521458, 32.7816025867388], [-79.951165608894, 32.7816012334063], [-79.9511680656422, 32.7815998800738], [-79.9511713358027, 32.7815985337148], [-79.9511737925507, 32.7815971803822], [-79.9511762492986, 32.7815958270495], [-79.9511787081323, 32.7815943889623], [-79.9511811648418, 32.781592949955], [-79.9511844360527, 32.7815915161268], [-79.951186894897, 32.7815900771376], [-79.9511893516062, 32.7815886381301], [-79.9511918104336, 32.7815871116629], [-79.9511942692285, 32.7815855879008], [-79.9511967291124, 32.7815840623443], [-79.9512000002519, 32.7815825455464], [-79.9512024590466, 32.7815810217841], [-79.9512049199702, 32.7815794096604], [-79.9512073787479, 32.78157779842], [-79.9512098386039, 32.7815761862869], [-79.9512122984598, 32.7815745741539], [-79.9512147593398, 32.7815729656369], [-79.9512172191463, 32.7815712687308], [-79.9512196800203, 32.781569571834], [-79.9512237894231, 32.781566171076], [-79.9512262492293, 32.7815644741699], [-79.9512287101029, 32.7815627772728], [-79.951231172038, 32.7815609920051], [-79.9512336349971, 32.7815592103534], [-79.9512377443114, 32.7815556391476], [-79.9512402062028, 32.7815538574867], [-79.9512426702341, 32.7815519865625], [-79.9512467816275, 32.7815482422221], [-79.9512492445801, 32.7815463721903], [-79.9512533570406, 32.7815426278589], [-79.951257471548, 32.7815387130982], [-79.9512599365859, 32.7815367583118], [-79.9512640500253, 32.7815328435418], [-79.9512665139954, 32.781530888746], [-79.9512681666609, 32.7815288404193], [-79.9512706306308, 32.7815268856235], [-79.9512722811504, 32.7815248381801], [-79.9512739327373, 32.7815227907459], [-79.951276397736, 32.7815207502846], [-79.9512780514193, 32.7815186171941], [-79.9512797029952, 32.7815165706615], [-79.9512821679552, 32.7815144445255], [-79.9512838205708, 32.7815123114257], [-79.9512854721897, 32.7815102612861], [-79.9512871258618, 32.7815081290973], [-79.9512895929071, 32.7815059182066], [-79.9512912444874, 32.7815037823924], [-79.9512928970917, 32.7815016501943], [-79.9512945507251, 32.7814994323307], [-79.9512962054583, 32.7814972117712], [-79.9512978590915, 32.7814949939076], [-79.9512995116896, 32.7814927733296], [-79.9513011653226, 32.7814905554659], [-79.9513028189881, 32.7814883348971], [-79.9513044736884, 32.7814861170426], [-79.9513061283827, 32.7814838108082], [-79.9513077820154, 32.7814815929445], [-79.9513094356313, 32.7814792876027], [-79.9513110903144, 32.7814769822701], [-79.9513127450084, 32.7814746760357], [-79.951315242009, 32.7814700602103], [-79.9513168977209, 32.7814676692122], [-79.951318551347, 32.7814653629686], [-79.9513210483302, 32.7814606596651], [-79.9513227051093, 32.781458268676], [-79.9513243608208, 32.7814558776778], [-79.9513252031319, 32.7814534788053], [-79.9513268588324, 32.7814510887087], [-79.9513277000651, 32.7814486907288], [-79.9513293557764, 32.7814462997306], [-79.9513301991055, 32.7814438160943], [-79.951331855884, 32.7814414251052], [-79.9513326992021, 32.7814389423707], [-79.951334354913, 32.7814365513723], [-79.951335198231, 32.7814340686378], [-79.9513360415922, 32.7814315822964], [-79.9513376972645, 32.7814291056234], [-79.9513385405823, 32.7814266228889], [-79.9513393839434, 32.7814241365474], [-79.9513402272611, 32.7814216538128], [-79.951341885068, 32.7814191771581], [-79.9513427283965, 32.7814166935219], [-79.9513435727647, 32.7814141233184], [-79.9513444160931, 32.7814116396821], [-79.9513452594214, 32.7814091560458], [-79.9513461037895, 32.7814065858423], [-79.9513469470685, 32.7814040174332], [-79.9513477904291, 32.7814015310916], [-79.9513486347754, 32.7813989626916], [-79.9513494791542, 32.7813963915864], [-79.9513503245679, 32.7813938231956], [-79.951351168914, 32.7813912547956], [-79.9513520132926, 32.7813886836903], [-79.9513520442281, 32.7813861083179], [-79.9513528886066, 32.7813835372127], [-79.9513537329527, 32.7813809688127], [-79.951354577331, 32.7813783977074], [-79.951354608299, 32.7813758196298], [-79.951355453663, 32.7813731664661], [-79.9513562969739, 32.7813705953517], [-79.9514397686042, 32.78093410177], [-79.9508054485091, 32.7811131469476]]], "type": "Polygon"}, "id": "308", "properties": {"OBJECTID": 3371, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3828.62890625, "Shape__Length": 259.562606406859, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9508486372218, 32.7809033859, -79.9494065609178, 32.7820004352455], "geometry": {"coordinates": [[[-79.950843468522, 32.7815706829705], [-79.9505299929401, 32.7809033859], [-79.9498514237446, 32.7810923418809], [-79.9494065609178, 32.7812177154697], [-79.9496058501491, 32.7817273216421], [-79.9496517945009, 32.7818434809453], [-79.9497138747432, 32.7820004352455], [-79.9501568286352, 32.781875363366], [-79.9506269993694, 32.7817427324118], [-79.9507708732276, 32.7817021330585], [-79.9507714238373, 32.7817017995931], [-79.9507788827514, 32.7816986250785], [-79.9507930640716, 32.7816914661973], [-79.9508029107723, 32.7816850376006], [-79.9508119851858, 32.7816778448393], [-79.9508202043366, 32.781669952134], [-79.9508274936804, 32.7816614327961], [-79.950833787159, 32.7816523647186], [-79.9508390261428, 32.7816428294658], [-79.9508431636579, 32.7816329159168], [-79.9508461612704, 32.7816227130234], [-79.9508479911452, 32.7816123161414], [-79.9508486372218, 32.7816018180221], [-79.9508480940604, 32.7815913160169], [-79.95084636585, 32.781580905756], [-79.950843468522, 32.7815706829705]]], "type": "Polygon"}, "id": "309", "properties": {"OBJECTID": 3372, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14663.126953125, "Shape__Length": 480.977797001369, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9475322341532, 32.7780731746049, -79.9471372759324, 32.7783944153593], "geometry": {"coordinates": [[[-79.9473139914116, 32.7783944153593], [-79.9475322341532, 32.7783076446913], [-79.9475282076307, 32.7783042597368], [-79.9475257850861, 32.7783027788257], [-79.9475225491601, 32.7783012909166], [-79.9475201266374, 32.7782998082019], [-79.9475177040931, 32.7782983272906], [-79.9475144681565, 32.7782968402832], [-79.947512045645, 32.7782953566665], [-79.94750962309, 32.7782938766569], [-79.9475063871646, 32.7782923887474], [-79.9475039646099, 32.7782909087376], [-79.9475015420986, 32.7782894251208], [-79.9474983051061, 32.778287937202], [-79.947495883619, 32.7782864572011], [-79.9474934610646, 32.7782849771911], [-79.9474902251289, 32.778283490183], [-79.9474878036401, 32.7782819218023], [-79.9474853810968, 32.7782804408904], [-79.9474821451722, 32.7782789529803], [-79.9474797215835, 32.7782774702556], [-79.9474773001079, 32.7782759893527], [-79.9474740641728, 32.7782745023442], [-79.947471641617, 32.778272933954], [-79.9474692201417, 32.7782714530509], [-79.9474667975882, 32.7782699730404], [-79.947463561697, 32.7782684824246], [-79.9474611380762, 32.7782670024047], [-79.9474587176231, 32.7782654367379], [-79.9474554817323, 32.7782639461219], [-79.9474530581117, 32.7782624661019], [-79.9474506376589, 32.7782609004349], [-79.9474474017683, 32.7782594098187], [-79.9474449781481, 32.7782579297985], [-79.9474425576956, 32.7782563641313], [-79.9474393218053, 32.7782548735149], [-79.9474368992636, 32.778253392602], [-79.9474344766764, 32.7782518269163], [-79.947431241843, 32.7782503372106], [-79.9474288203236, 32.7782487715339], [-79.9474263967148, 32.7782472906117], [-79.9474239762955, 32.7782457222389], [-79.9474207403625, 32.7782442352289], [-79.9474183178085, 32.7782426668377], [-79.9474158952675, 32.7782411859244], [-79.947412661435, 32.7782396132581], [-79.9474102389159, 32.7782381305412], [-79.9474078163297, 32.778236564855], [-79.9474045814756, 32.778235076952], [-79.9474021599896, 32.7782335085697], [-79.9473997363708, 32.7782320285486], [-79.947397314885, 32.7782304601661], [-79.9473940810533, 32.7782288874994], [-79.9473916585131, 32.7782274065856], [-79.9473892359601, 32.7782258381938], [-79.9473860010958, 32.7782243511921], [-79.9473835796105, 32.7782227828093], [-79.9473811570251, 32.7782212171226], [-79.9473787355528, 32.7782197362177], [-79.947375500687, 32.778218160836], [-79.947373078102, 32.7782165951491], [-79.9473706566171, 32.7782150267661], [-79.9473682351342, 32.7782135467628], [-79.9473650002688, 32.7782119713808], [-79.9473625776841, 32.7782104056937], [-79.947360157267, 32.7782088373196], [-79.9473569223693, 32.7782072646427], [-79.9473544987629, 32.778205783719], [-79.9473520772678, 32.7782042162374], [-79.9473496568184, 32.7782026505684], [-79.9473464208863, 32.7782010751767], [-79.9473439993697, 32.7781995094984], [-79.9473415789532, 32.778197941124], [-79.9473391574368, 32.7781963754456], [-79.9473359215052, 32.7781948000537], [-79.9473334989669, 32.7781933191388], [-79.9473310785181, 32.7781917534694], [-79.9473278425868, 32.7781901780773], [-79.9473254210708, 32.7781886123986], [-79.947323000655, 32.7781870440239], [-79.9473205791392, 32.7781854783451], [-79.9473173432083, 32.7781839029527], [-79.9473149227927, 32.7781823345777], [-79.9473125012772, 32.7781807688989], [-79.9473100787269, 32.7781792005054], [-79.9473068448642, 32.7781775421618], [-79.947304424449, 32.7781759737867], [-79.9473020018664, 32.7781744080984], [-79.9472995803731, 32.7781728406157], [-79.9472963465453, 32.7781712679464], [-79.947293925063, 32.7781696995618], [-79.9472915024808, 32.7781681338733], [-79.9472890809987, 32.7781665654887], [-79.9472866615845, 32.7781649141531], [-79.9472834256549, 32.7781633387598], [-79.9472810041731, 32.778161770375], [-79.9472785837262, 32.7781602047047], [-79.9472761622446, 32.7781586363198], [-79.9472729273158, 32.7781569779661], [-79.9472705058343, 32.7781554095811], [-79.9472680853878, 32.7781538439105], [-79.9472656638612, 32.7781521907527], [-79.9472624289673, 32.7781506180732], [-79.9472600085537, 32.7781490496972], [-79.9472575870274, 32.7781473965392], [-79.9472551655139, 32.7781458308591], [-79.9472527440331, 32.7781442624738], [-79.9472495112728, 32.7781426014327], [-79.9472470886921, 32.7781410357433], [-79.9472446672115, 32.7781394673578], [-79.9472422467315, 32.7781378160121], [-79.9472390118712, 32.7781362406269], [-79.9472365914131, 32.7781345874776], [-79.9472341699002, 32.7781330217971], [-79.9472317505097, 32.778131368657], [-79.9472293279297, 32.7781298029672], [-79.9472260941029, 32.7781281419163], [-79.9472236736906, 32.7781265735396], [-79.9472212521438, 32.7781249221844], [-79.9472188306642, 32.7781233537983], [-79.9472164102068, 32.7781217006487], [-79.947213175315, 32.778120127968], [-79.9472107548686, 32.7781184739164], [-79.9472083343789, 32.7781168234719], [-79.9472059128998, 32.7781152550857], [-79.9472026790631, 32.7781135949358], [-79.9472002575515, 32.7781120292547], [-79.9471978371057, 32.778110375203], [-79.9471954166599, 32.7781087211512], [-79.9471929951486, 32.7781071554699], [-79.9471905746921, 32.7781055023198], [-79.9471873419236, 32.7781038421787], [-79.9471849203782, 32.7781021908227], [-79.9471824988998, 32.7781006224361], [-79.9471800784547, 32.778098968384], [-79.9471776579987, 32.7780973152336], [-79.9471744241415, 32.7780956568864], [-79.9471720026635, 32.7780940884996], [-79.9471695821752, 32.7780924380542], [-79.9471671617196, 32.7780907849036], [-79.947164741275, 32.7780891308512], [-79.947161507451, 32.7780874697985], [-79.9471590869957, 32.7780858166478], [-79.9471566654857, 32.7780842509658], [-79.9471542450414, 32.7780825969132], [-79.9471518245538, 32.7780809464676], [-79.9471494040988, 32.7780792933166], [-79.9471461702863, 32.7780776313618], [-79.9471437498316, 32.7780759782107], [-79.9471413293769, 32.7780743250596], [-79.9471372759324, 32.7780731746049], [-79.9473139914116, 32.7783944153593]]], "type": "Polygon"}, "id": "310", "properties": {"OBJECTID": 3373, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 618.197265625, "Shape__Length": 127.695823879346, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9465704076218, 32.7765288449931, -79.9448927203173, 32.7778968882709], "geometry": {"coordinates": [[[-79.9457647733106, 32.7766496135364], [-79.9456732365262, 32.7766852461101], [-79.9455931428323, 32.7767163373127], [-79.9455016058643, 32.7767519733652], [-79.9454362242415, 32.7767772644316], [-79.9453446871892, 32.77681289676], [-79.9452531500513, 32.7768485299217], [-79.9451943021933, 32.776871556776], [-79.9451027639083, 32.776907274589], [-79.94502267081, 32.7769382824587], [-79.9449311323418, 32.7769739153708], [-79.9449098851438, 32.7769820632608], [-79.9448927203173, 32.7769888728646], [-79.9450391368098, 32.777258574636], [-79.9450844922995, 32.7773422871127], [-79.9451306622737, 32.7774259218235], [-79.9451553216292, 32.7774720910206], [-79.9451998940476, 32.7775533067384], [-79.9452436521604, 32.7776346876693], [-79.9452906087789, 32.7777204790747], [-79.9453869075792, 32.7778968882709], [-79.9454253220534, 32.7778818422591], [-79.945528308683, 32.7778412402423], [-79.9456312941931, 32.7778007229027], [-79.9457350929514, 32.7777602151915], [-79.9458380793482, 32.7777196967856], [-79.9459410645276, 32.7776791827926], [-79.946044862997, 32.7776385864394], [-79.9461478490631, 32.7775980713802], [-79.9462516483965, 32.7775574757628], [-79.9463374684399, 32.7775238541986], [-79.9465704076218, 32.7774323166924], [-79.9465186618607, 32.7773387549294], [-79.9464685284494, 32.7772464975547], [-79.9464136040552, 32.7771467235956], [-79.9463698264553, 32.7770669761481], [-79.9463300297495, 32.7769943035908], [-79.946318877897, 32.7769747080839], [-79.9462973969134, 32.7769347503801], [-79.94625362056, 32.7768549172276], [-79.9462082465916, 32.7767726642043], [-79.9461867574144, 32.7767333936079], [-79.9461413845953, 32.7766510557974], [-79.9460976075144, 32.7765713064533], [-79.9460745300569, 32.7765288449931], [-79.9457647733106, 32.7766496135364]]], "type": "Polygon"}, "id": "311", "properties": {"OBJECTID": 3374, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 19160.953125, "Shape__Length": 554.325503465915, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9471363297248, 32.7778811983514, -79.946119106945, 32.7788133616309], "geometry": {"coordinates": [[[-79.9468163520883, 32.7778811983514], [-79.9466692301337, 32.7779391163169], [-79.9465212945727, 32.7779970298067], [-79.9463741711706, 32.7780549465072], [-79.9462262352612, 32.7781128560339], [-79.9462700132325, 32.7781926053453], [-79.9463504096774, 32.7783387257755], [-79.9464109103002, 32.7784484255835], [-79.9463602348627, 32.77846826146], [-79.9462425323259, 32.7785149231031], [-79.946119106945, 32.7785639405246], [-79.9462551995178, 32.7788133616309], [-79.9463794396172, 32.7787643519872], [-79.9464971423845, 32.7787176929163], [-79.9466091223356, 32.7786733878432], [-79.9467211032175, 32.7786289961007], [-79.9468330829521, 32.7785846899212], [-79.946891933587, 32.7785614034657], [-79.9471363297248, 32.7784645506723], [-79.9470885750723, 32.7783772082772], [-79.9470408194713, 32.7782899524315], [-79.9469930629092, 32.778202695657], [-79.9469453085339, 32.77811544249], [-79.9469381362821, 32.778103095968], [-79.9469094824833, 32.7780507927461], [-79.9468824264331, 32.7780009111687], [-79.9468545560009, 32.7779510198688], [-79.9468259033028, 32.7778986336681], [-79.9468163520883, 32.7778811983514]]], "type": "Polygon"}, "id": "312", "properties": {"OBJECTID": 3375, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7479.923828125, "Shape__Length": 387.16269022037, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9468163520883, 32.7775570309592, -79.9454618991157, 32.7789300554061], "geometry": {"coordinates": [[[-79.9468163520883, 32.7778811983514], [-79.946638861323, 32.7775570309592], [-79.9464909264327, 32.7776149408028], [-79.9463438036109, 32.7776728610714], [-79.9461958683287, 32.7777307705589], [-79.9460487472501, 32.777788602112], [-79.9458068147639, 32.7778835828041], [-79.9454618991157, 32.7780188224056], [-79.9455359249802, 32.7781535524108], [-79.9456831619426, 32.7784229998538], [-79.9458240358525, 32.7786805385803], [-79.9459609411518, 32.7789300554061], [-79.9462551995178, 32.7788133616309], [-79.946119106945, 32.7785639405246], [-79.9462425323259, 32.7785149231031], [-79.9463602348627, 32.77846826146], [-79.9464109103002, 32.7784484255835], [-79.9463504096774, 32.7783387257755], [-79.9462700132325, 32.7781926053453], [-79.9462262352612, 32.7781128560339], [-79.9463741711706, 32.7780549465072], [-79.9465212945727, 32.7779970298067], [-79.9466692301337, 32.7779391163169], [-79.9468163520883, 32.7778811983514]]], "type": "Polygon"}, "id": "313", "properties": {"OBJECTID": 3376, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11690.009765625, "Shape__Length": 554.566317208955, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9450301710746, 32.7760940616915, -79.9444988336921, 32.7764263410974], "geometry": {"coordinates": [[[-79.9449426224837, 32.7760940616915], [-79.9444988336921, 32.7762667583254], [-79.9445648984275, 32.7763868150252], [-79.9445863837048, 32.7764263410974], [-79.9450301710746, 32.7762539029514], [-79.9449426224837, 32.7760940616915]]], "type": "Polygon"}, "id": "314", "properties": {"OBJECTID": 3377, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1267.078125, "Shape__Length": 155.426587563188, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9460398682184, 32.7757759838965, -79.9445863837048, 32.7769033485967], "geometry": {"coordinates": [[[-79.9445863837048, 32.7764263410974], [-79.9446802872907, 32.7765986926737], [-79.9447590684588, 32.7767435989824], [-79.9448458039538, 32.7769033485967], [-79.9452895932033, 32.7767308238261], [-79.9454963688549, 32.7766503131804], [-79.9456590097879, 32.7765871175941], [-79.9460398682184, 32.7764388725114], [-79.9457607244449, 32.7757759838965], [-79.9453120379364, 32.775950274459], [-79.9449426224837, 32.7760940616915], [-79.9450301710746, 32.7762539029514], [-79.9445863837048, 32.7764263410974]]], "type": "Polygon"}, "id": "315", "properties": {"OBJECTID": 3378, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12695.2578125, "Shape__Length": 487.065446552364, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9446986864607, 32.7763262340063, -79.9440001986968, 32.7770977854496], "geometry": {"coordinates": [[[-79.9442079305434, 32.7763754883018], [-79.9440001986968, 32.7764677538448], [-79.9441259356473, 32.7766982783963], [-79.9441800427527, 32.7767981311211], [-79.9442771287944, 32.7769764391418], [-79.9443431771023, 32.7770977854496], [-79.944461679641, 32.7770521642498], [-79.9446496517622, 32.7769796534671], [-79.9446986864607, 32.7769608349488], [-79.9445626054193, 32.7767110649915], [-79.9444806313577, 32.7765612385546], [-79.9443533198795, 32.7763262340063], [-79.9442079305434, 32.7763754883018]]], "type": "Polygon"}, "id": "316", "properties": {"OBJECTID": 3379, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4029.015625, "Shape__Length": 271.270504537889, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9442908721829, 32.776491385172, -79.9435890342604, 32.7772549822783], "geometry": {"coordinates": [[[-79.9435890342604, 32.7766329135439], [-79.9436582995323, 32.7767572929194], [-79.9437132247004, 32.7768567236466], [-79.9437777192498, 32.7769721281919], [-79.9437968286155, 32.7770063094646], [-79.94393536051, 32.7772549822783], [-79.9440538645426, 32.777209361482], [-79.9441723684308, 32.7771636539949], [-79.9442908721829, 32.7771180356747], [-79.9442112448468, 32.7769758705422], [-79.9441244678645, 32.7768196408695], [-79.9440663490107, 32.7767152028362], [-79.9440106101748, 32.7766157643461], [-79.9439413445133, 32.776491385172], [-79.9435890342604, 32.7766329135439]]], "type": "Polygon"}, "id": "317", "properties": {"OBJECTID": 3380, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3971.158203125, "Shape__Length": 269.573783730731, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9456757269811, 32.7752083760711, -79.9439802191876, 32.7760672042502], "geometry": {"coordinates": [[[-79.9451724694573, 32.7752084327901], [-79.9451692160474, 32.7752084047362], [-79.9451659605459, 32.7752084614365], [-79.9451627071247, 32.775208522664], [-79.9451594526906, 32.7752085793734], [-79.945156197189, 32.7752086360734], [-79.9451529427873, 32.7752087784572], [-79.9451496872422, 32.775208838764], [-79.945146431773, 32.7752089811384], [-79.9451431773386, 32.7752091262271], [-79.9451399197778, 32.7752093533556], [-79.945136664276, 32.7752094984349], [-79.9451334088064, 32.7752097291886], [-79.9451301512129, 32.7752099590221], [-79.9451268947086, 32.7752101870612], [-79.9451211939739, 32.7752107394252], [-79.9451179364018, 32.7752110558346], [-79.9451146799189, 32.7752113704496], [-79.9451114212902, 32.7752116859479], [-79.9439802191876, 32.7753221006867], [-79.9443893185434, 32.7760672042502], [-79.9456757269811, 32.7755667645098], [-79.9456425441641, 32.7754854766994], [-79.9456417619436, 32.7754828916145], [-79.9456401653007, 32.7754803878898], [-79.9456393830911, 32.7754778019032], [-79.9456377875159, 32.7754752981877], [-79.9456370052628, 32.7754727158081], [-79.9456354086639, 32.7754702084763], [-79.9456346243091, 32.7754677117527], [-79.9456330276667, 32.775465208028], [-79.9456314321026, 32.7754626150309], [-79.9456306488152, 32.7754601183165], [-79.9456290511495, 32.7754576993553], [-79.9456274555749, 32.7754551956396], [-79.9456266723313, 32.7754526953182], [-79.945625074633, 32.7754501906824], [-79.9456234769567, 32.7754477726228], [-79.9456218803258, 32.7754452679961], [-79.9456210960154, 32.7754428560452], [-79.9456194994175, 32.775440437093], [-79.9456179017525, 32.7754380181317], [-79.9456163040437, 32.7754355143974], [-79.9456147063897, 32.7754330945342], [-79.9456131076903, 32.7754307612381], [-79.9456115100256, 32.7754283422766], [-79.9456107267828, 32.7754259303348], [-79.9456091291183, 32.7754235113733], [-79.9456075293518, 32.7754211780678], [-79.945605930631, 32.775418846575], [-79.9456043329994, 32.7754164249082], [-79.9456019209243, 32.7754140864048], [-79.945600323293, 32.7754117531177], [-79.9455987235379, 32.7754094189103], [-79.9455971248393, 32.775407085614], [-79.9455955250845, 32.7754048397863], [-79.945593926397, 32.7754025055882], [-79.9455923287334, 32.7754001750062], [-79.9455899145898, 32.7753979194534], [-79.945588314868, 32.7753956709204], [-79.9455867151136, 32.7753934250927], [-79.9455851153919, 32.7753911765597], [-79.9455827033509, 32.7753889237304], [-79.945581102562, 32.7753866751881], [-79.9455795028079, 32.7753844293603], [-79.9455770886761, 32.7753822612852], [-79.9455754889549, 32.7753800127521], [-79.9455738892339, 32.7753778525987], [-79.945571474035, 32.7753756845143], [-79.945569874314, 32.7753734359812], [-79.9455674591481, 32.7753713535712], [-79.9455658583601, 32.7753691934085], [-79.945563444229, 32.7753670253332], [-79.9455618434847, 32.7753648615634], [-79.9455594282757, 32.7753627827603], [-79.9455578264642, 32.775360707361], [-79.9455554113316, 32.7753586222456], [-79.9455538094877, 32.7753565495515], [-79.9455513943226, 32.7753544671412], [-79.9455489791903, 32.7753523820256], [-79.9455473784576, 32.7753503057337], [-79.9455449611582, 32.7753483116847], [-79.945540943159, 32.7753442386382], [-79.94553852696, 32.775342241893], [-79.945536110761, 32.7753402451477], [-79.9455320906716, 32.7753363452351], [-79.9455296744838, 32.775334347588], [-79.945527257218, 32.7753324392131], [-79.9455248400067, 32.7753305263294], [-79.945522422741, 32.7753286179543], [-79.9455200055299, 32.7753267050705], [-79.9455159844072, 32.7753228908227], [-79.9455135661181, 32.7753210672111], [-79.9455111478292, 32.7753192435993], [-79.9455087295512, 32.7753174190858], [-79.9455063112624, 32.775315595474], [-79.9455038930174, 32.7753137682552], [-79.9455014747289, 32.7753119446433], [-79.9454990564513, 32.7753101201296], [-79.9454966371392, 32.7753083812812], [-79.9454942178272, 32.7753066424327], [-79.9454909851618, 32.7753048965728], [-79.9454885658499, 32.7753031577243], [-79.9454861465382, 32.7753014188756], [-79.9454837261919, 32.7752997656922], [-79.9454813068803, 32.7752980268435], [-79.9454788865451, 32.7752963727582], [-79.9454764662099, 32.775294718673], [-79.945473232478, 32.7752930611831], [-79.9454708121321, 32.7752914079995], [-79.9454683907625, 32.7752898395793], [-79.945465970395, 32.775288188199], [-79.9454635490256, 32.7752866197788], [-79.9454603142703, 32.7752850470522], [-79.9454578929011, 32.7752834786318], [-79.9454554714993, 32.7752819129166], [-79.9454522357096, 32.7752804258551], [-79.9454498143407, 32.7752788574346], [-79.9454473919153, 32.7752773764828], [-79.9454441561259, 32.775275889421], [-79.9454417337334, 32.7752744057639], [-79.9454393112973, 32.7752729257137], [-79.9454360744954, 32.7752715225135], [-79.9454336510356, 32.7752701272268], [-79.9454304152468, 32.7752686401647], [-79.945425567293, 32.7752659352561], [-79.9454223304806, 32.7752645329573], [-79.9454199070322, 32.7752631367686], [-79.9454142446586, 32.7752605132182], [-79.9454085823398, 32.775257885159], [-79.945402918943, 32.7752553463718], [-79.9453996800727, 32.7752541145013], [-79.9453940156525, 32.7752516604772], [-79.9453883502087, 32.7752492912163], [-79.9453851102713, 32.7752481477159], [-79.9453794437605, 32.7752458668252], [-79.9453737762152, 32.7752436715995], [-79.9453705352979, 32.7752426092553], [-79.945364867753, 32.7752404140292], [-79.9453616257684, 32.7752394400553], [-79.9453583848078, 32.7752383813177], [-79.9453527141373, 32.7752364448904], [-79.9453494721529, 32.7752354709161], [-79.9453462301686, 32.7752344969418], [-79.9453405584747, 32.7752326452774], [-79.945337315423, 32.7752317596734], [-79.9453340724042, 32.775230871364], [-79.9453283996867, 32.7752291044627], [-79.9453251556115, 32.7752283036219], [-79.9453219125602, 32.7752274180174], [-79.9453186685068, 32.7752266153729], [-79.9453129926744, 32.7752251063684], [-79.9453097475646, 32.7752243911925], [-79.9453065034787, 32.775223591253], [-79.9453032583689, 32.7752228760768], [-79.9453000132592, 32.7752221609006], [-79.9452943353686, 32.7752208223241], [-79.9452910892241, 32.775220192813], [-79.9452878430579, 32.7752195651052], [-79.9452845958462, 32.7752189355847], [-79.9452813507801, 32.7752183051807], [-79.945278103601, 32.7752177613345], [-79.9452748553435, 32.7752172183808], [-79.9452716092427, 32.7752166736418], [-79.9452659271263, 32.7752155965594], [-79.9452626799906, 32.7752151374855], [-79.945259431755, 32.7752146811076], [-79.9452561824629, 32.7752142238186], [-79.9452529352947, 32.7752137674497], [-79.9452496871027, 32.7752133074646], [-79.9452464367758, 32.7752129358406], [-79.9452431885836, 32.7752125642351], [-79.9452399403482, 32.7752121078566], [-79.9452366900646, 32.7752118210051], [-79.9452334408052, 32.77521144939], [-79.9452301894543, 32.7752111625292], [-79.9452269412297, 32.7752107936284], [-79.9452236899004, 32.7752105933436], [-79.9452204385496, 32.7752103064826], [-79.9452147513242, 32.7752098290732], [-79.9452114989493, 32.7752096269754], [-79.9452082486657, 32.775209428503], [-79.9452049973475, 32.775209227316], [-79.9452017449291, 32.7752090288249], [-79.9451984936106, 32.7752089160174], [-79.9451952412246, 32.7752088032007], [-79.9451919878258, 32.7752086858659], [-79.9451887365073, 32.7752085730582], [-79.9451854820299, 32.7752085449956], [-79.945182229644, 32.7752084321785], [-79.9451789773014, 32.7752084041341], [-79.945175722824, 32.7752083760711], [-79.9451724694573, 32.7752084327901]]], "type": "Polygon"}, "id": "318", "properties": {"OBJECTID": 3381, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12817.802734375, "Shape__Length": 479.619663903576, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9442467523754, 32.7753327200729, -79.9422534053969, 32.7766603431177], "geometry": {"coordinates": [[[-79.9422534053969, 32.7754844262037], [-79.942892221836, 32.7766603431177], [-79.94334221437, 32.7764863720337], [-79.9442467523754, 32.7761303008487], [-79.9438120729899, 32.7753327200729], [-79.9422534053969, 32.7754844262037]]], "type": "Polygon"}, "id": "319", "properties": {"OBJECTID": 3382, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 23901.3125, "Shape__Length": 628.303778062984, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9438163718644, 32.7754844262037, -79.9413260346762, 32.7777929363819], "geometry": {"coordinates": [[[-79.9422534053969, 32.7754844262037], [-79.941445754202, 32.775572839613], [-79.9413260346762, 32.7755846907918], [-79.9420805433985, 32.7769574555567], [-79.9421919756313, 32.7771597681038], [-79.942208696355, 32.7771896326369], [-79.9422659967625, 32.77729432603], [-79.9423209165096, 32.7773941018528], [-79.9424307595671, 32.7775934784993], [-79.942539787612, 32.7777929363819], [-79.9431355828194, 32.7775632339225], [-79.9432499989369, 32.7775192983771], [-79.9433619685869, 32.7774758565419], [-79.9434404266912, 32.7774456066953], [-79.9435205176632, 32.7774148604626], [-79.9436038776726, 32.777382852785], [-79.9436774345362, 32.7773542829666], [-79.9438163718644, 32.7773006772367], [-79.9437622451171, 32.7772024564949], [-79.9437144612655, 32.7771178621999], [-79.9436897840515, 32.7770731517202], [-79.9436483888433, 32.7769984912553], [-79.943632454017, 32.7769708666514], [-79.9436077748334, 32.7769264140626], [-79.94334221437, 32.7764863720337], [-79.942892221836, 32.7766603431177], [-79.9422534053969, 32.7754844262037]]], "type": "Polygon"}, "id": "320", "properties": {"OBJECTID": 3383, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 37105.943359375, "Shape__Length": 928.860424410517, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9452387339875, 32.7770609618449, -79.9442932091984, 32.7780727533053], "geometry": {"coordinates": [[[-79.9442932091984, 32.7772379050853], [-79.9443553030603, 32.7773500257684], [-79.9444229546828, 32.7774734447576], [-79.944426931188, 32.7774809534712], [-79.9445740497046, 32.7774233817681], [-79.9446623655774, 32.7775870095153], [-79.9445945273731, 32.7776135685719], [-79.9446693306726, 32.7777510519021], [-79.9446876355192, 32.7777846245703], [-79.9447242389453, 32.7778521152467], [-79.9446907285206, 32.7778651381444], [-79.9447186121974, 32.7779137413409], [-79.9448273229795, 32.7778707831961], [-79.944887820286, 32.7779804846442], [-79.9449387668515, 32.7780727533053], [-79.9450556498994, 32.7780265998964], [-79.9452387339875, 32.7779548216117], [-79.9451026477166, 32.7777051405894], [-79.9450469423727, 32.7776027809228], [-79.9449721375704, 32.777465383491], [-79.9448838212401, 32.7773017559696], [-79.9447525113753, 32.7770609618449], [-79.9445955957327, 32.7771214559452], [-79.9444419489456, 32.7771807768094], [-79.9442932091984, 32.7772379050853]]], "type": "Polygon"}, "id": "321", "properties": {"OBJECTID": 3384, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5942.439453125, "Shape__Length": 397.714564985838, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9449387668515, 32.7772379050853, -79.9439973568588, 32.7782487560065], "geometry": {"coordinates": [[[-79.9442932091984, 32.7772379050853], [-79.9439973568588, 32.7773520047001], [-79.9440602441184, 32.7774658476743], [-79.9441278932773, 32.7775893551895], [-79.9442218169566, 32.7777601624682], [-79.9443149265909, 32.7779309599443], [-79.9443786020461, 32.7780468729534], [-79.9444390989108, 32.7781565746255], [-79.9444900461624, 32.7782487560065], [-79.9449387668515, 32.7780727533053], [-79.944887820286, 32.7779804846442], [-79.9448273229795, 32.7778707831961], [-79.9447186121974, 32.7779137413409], [-79.9446907285206, 32.7778651381444], [-79.9447242389453, 32.7778521152467], [-79.9446876355192, 32.7777846245703], [-79.9446693306726, 32.7777510519021], [-79.9445945273731, 32.7776135685719], [-79.9446623655774, 32.7775870095153], [-79.9445740497046, 32.7774233817681], [-79.944426931188, 32.7774809534712], [-79.9444229546828, 32.7774734447576], [-79.9443553030603, 32.7773500257684], [-79.9442932091984, 32.7772379050853]]], "type": "Polygon"}, "id": "322", "properties": {"OBJECTID": 3385, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6090.0546875, "Shape__Length": 396.613185783951, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9443413243739, 32.7774115557385, -79.9425924214887, 32.7787960326417], "geometry": {"coordinates": [[[-79.943489793408, 32.77755085956], [-79.9433328759991, 32.7776113529456], [-79.9432258123898, 32.7776526907723], [-79.943104039269, 32.7776994846792], [-79.9425924214887, 32.777896929141], [-79.9426720220663, 32.7780410683392], [-79.9427142001588, 32.7781183142564], [-79.9427571917061, 32.7781955671893], [-79.942840765087, 32.7783475577121], [-79.9429227421278, 32.778497045321], [-79.9430055328447, 32.7786465390036], [-79.9430516963289, 32.7787306912171], [-79.943053295053, 32.7787330218424], [-79.9430883249125, 32.7787960326417], [-79.9435362367777, 32.7786200289396], [-79.9436253259348, 32.778585234441], [-79.9437193223248, 32.7785482502097], [-79.9438697153561, 32.7784892484333], [-79.9439653466162, 32.7784515909317], [-79.9441410767956, 32.7783826664185], [-79.9443413243739, 32.7783042512962], [-79.9442338591091, 32.7781097063978], [-79.9442235251185, 32.7780897741543], [-79.9441757569228, 32.7780037201049], [-79.9441303988635, 32.7779202633794], [-79.9440866240083, 32.7778404285412], [-79.9440110040186, 32.7777032813951], [-79.9438510275867, 32.7774115557385], [-79.943489793408, 32.77755085956]]], "type": "Polygon"}, "id": "323", "properties": {"OBJECTID": 3386, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20132.375, "Shape__Length": 569.484781228317, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9449128146389, 32.7784313814775, -79.943158372328, 32.7798396986131], "geometry": {"coordinates": [[[-79.9442487207264, 32.7784951802992], [-79.9441555442066, 32.7785316588671], [-79.9440607325429, 32.7785687211669], [-79.9439700064349, 32.7786043594945], [-79.9439046177889, 32.7786300789757], [-79.943780380637, 32.7786787434442], [-79.9436953740045, 32.7787123693587], [-79.9436038310921, 32.7787482582897], [-79.9434918525993, 32.7787922179419], [-79.943158372328, 32.7789230830971], [-79.9432594548945, 32.7791071792917], [-79.9433271229192, 32.7792292282655], [-79.9433979688252, 32.7793575742021], [-79.9434974515866, 32.7795395100166], [-79.9435802443088, 32.779689000622], [-79.9436630237723, 32.7798396986131], [-79.9440995097397, 32.7796671148928], [-79.9442262070139, 32.7796169237681], [-79.9443627135996, 32.7795626975805], [-79.9444706069387, 32.7795201637487], [-79.9445793218935, 32.7794769479097], [-79.9446888501318, 32.7794338273709], [-79.9448065547379, 32.7793871672179], [-79.9449128146389, 32.7793451338587], [-79.9447958093109, 32.7791319537381], [-79.9447472432787, 32.7790446890814], [-79.9446907292553, 32.7789418082202], [-79.9446302481424, 32.7788308207909], [-79.9445769121388, 32.7787342377472], [-79.9445196080151, 32.7786295454202], [-79.9444105587782, 32.7784313814775], [-79.9442487207264, 32.7784951802992]]], "type": "Polygon"}, "id": "324", "properties": {"OBJECTID": 3387, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20532.212890625, "Shape__Length": 574.624736830146, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9435158912419, 32.7789766744633, -79.9417467993242, 32.7803975609493], "geometry": {"coordinates": [[[-79.9428461982458, 32.7790409033669], [-79.9427472946241, 32.7790799917949], [-79.9426541126946, 32.7791167244047], [-79.9425658339328, 32.7791516956578], [-79.9425233285972, 32.77916868134], [-79.9424775550973, 32.779186755227], [-79.9423688394666, 32.7792298808171], [-79.9422184389521, 32.7792893974595], [-79.9417467993242, 32.7794761015421], [-79.9418709651285, 32.7797018901985], [-79.9418980104817, 32.7797524627246], [-79.9420213907639, 32.7799760087861], [-79.9420763150949, 32.7800756107212], [-79.9421487585321, 32.7802062916383], [-79.9422044798721, 32.7803071891293], [-79.9422546344698, 32.7803975609493], [-79.9425096671253, 32.7802965129163], [-79.9426461737537, 32.7802424608724], [-79.9427696034466, 32.7801934478475], [-79.9428881235008, 32.780146796566], [-79.9429821260442, 32.7801094693319], [-79.9430998335408, 32.7800628108268], [-79.9432183573565, 32.7800158192699], [-79.9435158912419, 32.7798980411254], [-79.9434020704465, 32.7796908130915], [-79.9433455503299, 32.7795886196387], [-79.9432587837061, 32.779431446989], [-79.9431744107795, 32.7792781602189], [-79.9431043619883, 32.7791511097586], [-79.9430080435636, 32.7789766744633], [-79.9428461982458, 32.7790409033669]]], "type": "Polygon"}, "id": "325", "properties": {"OBJECTID": 3388, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20876.341796875, "Shape__Length": 579.31526398429, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9455049990403, 32.7794616498386, -79.9437275079574, 32.7809159241961], "geometry": {"coordinates": [[[-79.94452773612, 32.7796393696182], [-79.9443511789698, 32.7797093147687], [-79.9442302055922, 32.7797571466225], [-79.9440381196344, 32.7798329725445], [-79.9437275079574, 32.7799560482369], [-79.9438079225534, 32.7801004525508], [-79.9438763753946, 32.7802249979613], [-79.9439384708566, 32.7803371179907], [-79.9440045441406, 32.7804566592509], [-79.9440706186417, 32.7805761148116], [-79.9442035660277, 32.7808164080137], [-79.9442584922671, 32.7809159241961], [-79.944569913811, 32.7807934556304], [-79.9449884155561, 32.780628443161], [-79.9451862200505, 32.7805506070533], [-79.9455049990403, 32.7804249340303], [-79.9454572439128, 32.7803376766452], [-79.945415853902, 32.7802622448529], [-79.9453744639955, 32.7801868103421], [-79.9453259101978, 32.7800982600049], [-79.9452869087821, 32.7800272271669], [-79.9452375552748, 32.7799375516255], [-79.9451738897318, 32.779820610154], [-79.9450998640905, 32.7796859673926], [-79.9449764846291, 32.7794616498386], [-79.94452773612, 32.7796393696182]]], "type": "Polygon"}, "id": "326", "properties": {"OBJECTID": 3389, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21532.337890625, "Shape__Length": 587.532703429122, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9401346434159, 32.7790611641831, -79.938380801651, 32.7804596137078], "geometry": {"coordinates": [[[-79.9389053582336, 32.780374090973], [-79.9388465031463, 32.7803973762871], [-79.9388815400524, 32.7804596137078], [-79.9390082414435, 32.780409430688], [-79.9390728184562, 32.7803837897249], [-79.9391373954091, 32.7803581505313], [-79.9392109635276, 32.7803289837322], [-79.939363000959, 32.7802689681876], [-79.9394365679411, 32.7802398824098], [-79.9395101368896, 32.7802106306676], [-79.9395689916849, 32.780187344133], [-79.9397218503339, 32.7801266507736], [-79.9401346434159, 32.7799633233864], [-79.9398068182507, 32.7793597003288], [-79.9396444950628, 32.7790611641831], [-79.9390101985122, 32.7793113032261], [-79.9388336386424, 32.7793810672679], [-79.9387183877434, 32.7794263676901], [-79.938380801651, 32.7795595047162], [-79.9384795109484, 32.7797374004769], [-79.9385463907406, 32.7798568660697], [-79.9386291846374, 32.7800055908467], [-79.9387111737714, 32.7801536213878], [-79.9387979392109, 32.7803103680561], [-79.9388576065582, 32.7802870041372], [-79.9389053582336, 32.780374090973]]], "type": "Polygon"}, "id": "327", "properties": {"OBJECTID": 3390, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20254.046875, "Shape__Length": 587.006569294704, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9383522821363, 32.7796093388713, -79.9376067227285, 32.7804619977657], "geometry": {"coordinates": [[[-79.9383522821363, 32.779794928317], [-79.9382491017258, 32.7796093388713], [-79.9379876300262, 32.7797147501513], [-79.9379344981767, 32.7797356777102], [-79.9378633870267, 32.7797635790546], [-79.9377808276488, 32.7797961913425], [-79.9377039933474, 32.7798263624211], [-79.9376067227285, 32.7798646880318], [-79.9376552852537, 32.779951782406], [-79.9377372873448, 32.7800986088747], [-79.9377731064011, 32.780163346984], [-79.9378829445941, 32.7803624725722], [-79.9379386788897, 32.7804619977657], [-79.9380760020292, 32.7804079560783], [-79.9382231369811, 32.7803497905341], [-79.9382631889143, 32.7803340746626], [-79.9382074554197, 32.7802345478242], [-79.9381525364701, 32.7801349441598], [-79.9380968032507, 32.7800354154696], [-79.9381000714374, 32.780034243496], [-79.9381532023943, 32.78001331315], [-79.9380879194942, 32.77989635387], [-79.9383522821363, 32.779794928317]]], "type": "Polygon"}, "id": "328", "properties": {"OBJECTID": 3391, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4647.41015625, "Shape__Length": 333.464533101507, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9421054695285, 32.7795346578459, -79.9409739101946, 32.7807002480671], "geometry": {"coordinates": [[[-79.9409739101946, 32.7797825572686], [-79.9411394335328, 32.7800860992523], [-79.9412205917382, 32.7802359236509], [-79.9412380938128, 32.7802684591065], [-79.9413089187258, 32.7803983536531], [-79.9414728363232, 32.7807002480671], [-79.9416477522476, 32.7806319260498], [-79.9418104044042, 32.7805685633113], [-79.9421054695285, 32.7804533482533], [-79.9419383237394, 32.7801491884363], [-79.9418483627656, 32.7799872624207], [-79.9417663861542, 32.7798377749694], [-79.9417512595864, 32.779810587278], [-79.9417154418788, 32.7797455076747], [-79.9416000435562, 32.7795346578459], [-79.9414856041381, 32.7795801392344], [-79.9413965100186, 32.779615187371], [-79.9413016877028, 32.7796530203373], [-79.9411300364034, 32.7797206865042], [-79.9409739101946, 32.7797825572686]]], "type": "Polygon"}, "id": "329", "properties": {"OBJECTID": 3392, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10342.6875, "Shape__Length": 422.303848994942, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9387480495474, 32.779794928317, -79.9379386788897, 32.7807660861024], "geometry": {"coordinates": [[[-79.9379386788897, 32.7804619977657], [-79.9381074392584, 32.7807660861024], [-79.9382439524721, 32.7807117819719], [-79.9383919022686, 32.780653537617], [-79.9385112470327, 32.7806062114079], [-79.938623234537, 32.7805619127432], [-79.9386796370117, 32.7805395531838], [-79.9387480495474, 32.7805128950273], [-79.9383522821363, 32.779794928317], [-79.9380879194942, 32.77989635387], [-79.9381532023943, 32.78001331315], [-79.9381000714374, 32.780034243496], [-79.9380968032507, 32.7800354154696], [-79.9381525364701, 32.7801349441598], [-79.9382074554197, 32.7802345478242], [-79.9382631889143, 32.7803340746626], [-79.9382231369811, 32.7803497905341], [-79.9380760020292, 32.7804079560783], [-79.9379386788897, 32.7804619977657]]], "type": "Polygon"}, "id": "330", "properties": {"OBJECTID": 3393, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5752.357421875, "Shape__Length": 367.950193325896, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9414728363232, 32.7797825572686, -79.94034940845, 32.7809445417225], "geometry": {"coordinates": [[[-79.9409739101946, 32.7797825572686], [-79.94034940845, 32.7800298652315], [-79.940613589297, 32.7805157720379], [-79.9406804215509, 32.7806394439929], [-79.940748067387, 32.7807631238577], [-79.9408467390472, 32.7809445417225], [-79.9411802232714, 32.7808143672699], [-79.9413665793385, 32.7807417653543], [-79.9414728363232, 32.7807002480671], [-79.9413089187258, 32.7803983536531], [-79.9412380938128, 32.7802684591065], [-79.9412205917382, 32.7802359236509], [-79.9411394335328, 32.7800860992523], [-79.9409739101946, 32.7797825572686]]], "type": "Polygon"}, "id": "331", "properties": {"OBJECTID": 3394, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10252.078125, "Shape__Length": 420.441944810971, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9376814519133, 32.7811209551424, -79.9374737095054, 32.7813255314832], "geometry": {"coordinates": [[[-79.9375946885846, 32.7811209551424], [-79.9374737095054, 32.7811687839294], [-79.9375604726645, 32.7813255314832], [-79.9376814519133, 32.7812777026096], [-79.9375946885846, 32.7811209551424]]], "type": "Polygon"}, "id": "332", "properties": {"OBJECTID": 3395, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 340.669921875, "Shape__Length": 75.5472367868494, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9406987977043, 32.780088206465, -79.9389508027211, 32.7814880689973], "geometry": {"coordinates": [[[-79.93989001914, 32.7802119463428], [-79.9396930219879, 32.7802899540684], [-79.9395720441863, 32.7803377813098], [-79.9392949397882, 32.7804474779782], [-79.9389508027211, 32.7805839958095], [-79.9390335896194, 32.7807333217758], [-79.9391028537628, 32.7808576181298], [-79.9391721149541, 32.7809820857676], [-79.9392740048623, 32.7811661959566], [-79.9392891288008, 32.7811935561906], [-79.9393321240796, 32.7812703784194], [-79.9393950142851, 32.7813836250756], [-79.9394531316821, 32.7814880689973], [-79.9395953537024, 32.7814326070886], [-79.939734306232, 32.7813784072064], [-79.9399116734519, 32.7813093333095], [-79.9400596169353, 32.7812516866004], [-79.9401732312265, 32.781207318541], [-79.9403350721178, 32.7811439507133], [-79.9404478654548, 32.7811001741091], [-79.9406987977043, 32.7810021866856], [-79.9406112689975, 32.7808410527644], [-79.9405316921899, 32.7806949355582], [-79.9403669801081, 32.7803917433498], [-79.940202273352, 32.780088206465], [-79.93989001914, 32.7802119463428]]], "type": "Polygon"}, "id": "333", "properties": {"OBJECTID": 3396, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20343.5234375, "Shape__Length": 572.030574065483, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9427041829487, 32.7805778989586, -79.9415453710157, 32.7817773275612], "geometry": {"coordinates": [[[-79.9415453710157, 32.7808233709647], [-79.9417284944846, 32.781151715176], [-79.9418112887672, 32.7813009545174], [-79.94188055521, 32.7814253349625], [-79.94194265105, 32.781537283787], [-79.9420764105922, 32.7817773275612], [-79.9421941186833, 32.7817307582804], [-79.9423118266489, 32.7816841888866], [-79.9424941083249, 32.7816122308982], [-79.9427041829487, 32.7815292660639], [-79.9426269434301, 32.7813913293435], [-79.9425720187623, 32.7812918115217], [-79.9425099212114, 32.7811798639121], [-79.9424995643452, 32.7811618224655], [-79.9424406540996, 32.7810554811214], [-79.9423570455358, 32.780906237883], [-79.9421747347203, 32.7805778989586], [-79.9415453710157, 32.7808233709647]]], "type": "Polygon"}, "id": "334", "properties": {"OBJECTID": 3397, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10751.080078125, "Shape__Length": 432.981127231513, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9420764105922, 32.7808233709647, -79.9409249940256, 32.7820238790498], "geometry": {"coordinates": [[[-79.9415453710157, 32.7808233709647], [-79.9414154116973, 32.7808740424617], [-79.9412854511782, 32.780924800388], [-79.9409249940256, 32.7810654788731], [-79.9409830953312, 32.7811713819815], [-79.9410372193234, 32.7812697762276], [-79.9410977142556, 32.7813794768852], [-79.9411884574146, 32.7815439885922], [-79.9413189997693, 32.7817807398243], [-79.9413778977112, 32.7818880240354], [-79.9414527193765, 32.7820238790498], [-79.9416399089747, 32.7819499067986], [-79.9417886793198, 32.7818910630026], [-79.9418916744359, 32.7818502936008], [-79.9420764105922, 32.7817773275612], [-79.94194265105, 32.781537283787], [-79.94188055521, 32.7814253349625], [-79.9418112887672, 32.7813009545174], [-79.9417284944846, 32.781151715176], [-79.9415453710157, 32.7808233709647]]], "type": "Polygon"}, "id": "335", "properties": {"OBJECTID": 3398, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10675.017578125, "Shape__Length": 432.153614159546, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9393051874305, 32.7806423283087, -79.9375604726645, 32.782065953969], "geometry": {"coordinates": [[[-79.9375604726645, 32.7813255314832], [-79.9376122289983, 32.7814176335518], [-79.9376695287645, 32.7815221569133], [-79.9377276420796, 32.7816266873122], [-79.9377698353514, 32.7817025580166], [-79.9378470475846, 32.7818419568046], [-79.9379139291801, 32.7819614236813], [-79.9379720430802, 32.782065953969], [-79.9382139894028, 32.7819714170454], [-79.9383374157196, 32.7819231794801], [-79.9384028021851, 32.7818978921842], [-79.9384632893752, 32.7818742803383], [-79.9383940264141, 32.781749982716], [-79.9383446466303, 32.7816629672153], [-79.9382960814236, 32.7815759587639], [-79.9382546876256, 32.7815012964283], [-79.9382124940882, 32.7814255088621], [-79.9382345689745, 32.7814164232751], [-79.9382558304466, 32.7814073306247], [-79.9382980386423, 32.7814819152548], [-79.9383322642909, 32.7815440601249], [-79.9383895952966, 32.7816460041653], [-79.9384365651524, 32.7817305087691], [-79.9385074288908, 32.7818569666236], [-79.938634124134, 32.7818073863367], [-79.9387894234321, 32.7817470561694], [-79.9389512631938, 32.7816839480662], [-79.9390289162646, 32.781653441493], [-79.9393051874305, 32.7815457122692], [-79.9392359245615, 32.7814213303644], [-79.9391905537907, 32.781339160363], [-79.9391451820643, 32.7812570760107], [-79.939130841324, 32.7812322116146], [-79.9390966173267, 32.7811699822156], [-79.9390615789411, 32.781107830517], [-79.9390194005056, 32.781030670775], [-79.9389724336603, 32.780946078951], [-79.938802852352, 32.7806423283087], [-79.9386998551098, 32.7806831807608], [-79.9385821454928, 32.7807298350449], [-79.938482416264, 32.780769514426], [-79.9382756108481, 32.7808512143789], [-79.9381374632628, 32.7809060220144], [-79.9380344664656, 32.7809468739169], [-79.9378546321313, 32.7810179852711], [-79.9376715292863, 32.7810903549001], [-79.9375946885846, 32.7811209551424], [-79.9376814519133, 32.7812777026096], [-79.9375604726645, 32.7813255314832]]], "type": "Polygon"}, "id": "336", "properties": {"OBJECTID": 3399, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20829.3671875, "Shape__Length": 721.731746380131, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9413055827269, 32.7811230382662, -79.9395166738875, 32.7825775719894], "geometry": {"coordinates": [[[-79.9406029535841, 32.7811911081976], [-79.9405138636932, 32.7812256426074], [-79.9404255860728, 32.7812601839883], [-79.9403070694632, 32.7813063161928], [-79.9401468644844, 32.7813689225819], [-79.9399882965086, 32.7814306853028], [-79.9398297272301, 32.781492448711], [-79.9396973110656, 32.7815443010626], [-79.9395166738875, 32.7816146359343], [-79.9397196875219, 32.7819792362618], [-79.9397833629497, 32.7820948947175], [-79.9398733243676, 32.7822566491544], [-79.939961688439, 32.7824159880978], [-79.940051653655, 32.7825775719894], [-79.940319770405, 32.7824715725669], [-79.9405233084594, 32.7823912152279], [-79.940689247572, 32.7823255646824], [-79.9407481034068, 32.7823021955076], [-79.9408069582036, 32.7822789092647], [-79.9409516417723, 32.7822218347616], [-79.9410440121757, 32.7821851847565], [-79.9413055827269, 32.7820821332522], [-79.9412124537405, 32.7819130494204], [-79.9411654842342, 32.7818283754611], [-79.9411105619681, 32.7817286856387], [-79.9410421129327, 32.781604052995], [-79.9409839966641, 32.7814993537327], [-79.9409346488905, 32.781409675558], [-79.9408892764878, 32.7813274214138], [-79.940777053569, 32.7811230382662], [-79.9406029535841, 32.7811911081976]]], "type": "Polygon"}, "id": "337", "properties": {"OBJECTID": 3400, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21669.5625, "Shape__Length": 589.581722487781, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9399045140589, 32.7816722006799, -79.9380421254045, 32.7831536075581], "geometry": {"coordinates": [[[-79.9391831841697, 32.7817448022567], [-79.9390352403724, 32.781802445213], [-79.9388881108239, 32.7818600102826], [-79.9386306385492, 32.7819602577226], [-79.9385276469887, 32.7820005960531], [-79.9383233008393, 32.7820803415397], [-79.9382194966207, 32.782120586887], [-79.9380421254045, 32.7821897412966], [-79.9381106447753, 32.7823082789628], [-79.9381624220915, 32.7823987513642], [-79.9381990610909, 32.7824630635899], [-79.9382508396214, 32.7825534511918], [-79.938291457094, 32.7826251848497], [-79.9384420196021, 32.7828875420211], [-79.9384914032489, 32.782974129149], [-79.9385423857065, 32.7830632200956], [-79.9385941649485, 32.7831536075581], [-79.9387870815469, 32.7830772832115], [-79.938919507914, 32.7830249160506], [-79.9389930773223, 32.7829958341377], [-79.9391287717414, 32.7829422054713], [-79.939264464931, 32.7828886641235], [-79.939396890699, 32.7828362107723], [-79.9396740015486, 32.7827266842828], [-79.9399045140589, 32.7826358254028], [-79.9397826976305, 32.7824176142126], [-79.9397062795706, 32.7822794238943], [-79.9396362323721, 32.7821525454521], [-79.9395669696234, 32.7820280753561], [-79.939369544984, 32.7816722006799], [-79.9391831841697, 32.7817448022567]]], "type": "Polygon"}, "id": "338", "properties": {"OBJECTID": 3401, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22872.640625, "Shape__Length": 606.512818494318, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9421967218884, 32.7822066809913, -79.940120916507, 32.7840198880104], "geometry": {"coordinates": [[[-79.9407402834146, 32.7838182603166], [-79.940850492729, 32.7840176497695], [-79.9408517296246, 32.7840198880104], [-79.9415412467057, 32.7838473570683], [-79.9416966938099, 32.7838083411354], [-79.9417109759618, 32.7838047563366], [-79.9417220984982, 32.7838267572197], [-79.9417289175623, 32.7838399469235], [-79.9417308421658, 32.7838436701135], [-79.9417749716118, 32.7838272145749], [-79.9418803843292, 32.7837885276608], [-79.941984201346, 32.7837472476092], [-79.942183538587, 32.7836693672748], [-79.9421967218884, 32.7836642163514], [-79.9421489027515, 32.7835824546634], [-79.9420843451145, 32.7834721178688], [-79.9419743653435, 32.7832834760036], [-79.9419161740124, 32.7831848738411], [-79.9418540197936, 32.7830776473975], [-79.941850822294, 32.7830729825063], [-79.9417974982362, 32.7829755406609], [-79.9417592805709, 32.7829070043098], [-79.9416987837818, 32.782797301256], [-79.9416518289172, 32.7827113415937], [-79.941604059722, 32.7826253694572], [-79.9415579028731, 32.7825407026792], [-79.9415109337218, 32.7824559440832], [-79.9413740335411, 32.7822066809913], [-79.9412824829046, 32.782242824293], [-79.9411909331985, 32.7822788845663], [-79.941099381343, 32.782315027722], [-79.9409816718473, 32.7823615986577], [-79.9406833117593, 32.7824795313598], [-79.9405623325334, 32.782527359601], [-79.9403522502873, 32.7826105831728], [-79.940120916507, 32.7827020382022], [-79.9402379349849, 32.7829135934314], [-79.9403414260471, 32.7831002047635], [-79.9404138694081, 32.7832308858487], [-79.9404966634869, 32.7833802081807], [-79.9405890219056, 32.7835456803732], [-79.9406144930065, 32.7835920288999], [-79.9406686285339, 32.7836895621728], [-79.9407155995882, 32.7837741515763], [-79.9407402834146, 32.7838182603166]]], "type": "Polygon"}, "id": "339", "properties": {"OBJECTID": 3402, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 31602.998046875, "Shape__Length": 722.767777427577, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9481593089887, 32.7812596949306, -79.9472346624988, 32.7820033892216], "geometry": {"coordinates": [[[-79.9472504199615, 32.7816355948914], [-79.9472346624988, 32.7816388673246], [-79.9472663121735, 32.7817396905934], [-79.9473236191433, 32.7819174527708], [-79.947349269339, 32.7820033892216], [-79.9474148653305, 32.7819682112228], [-79.9479368083394, 32.7818080006791], [-79.9478623337966, 32.7815085031626], [-79.9481593089887, 32.7814468210334], [-79.9481184370597, 32.7812829679821], [-79.9481126312243, 32.7812596949306], [-79.9476459056044, 32.7813644918091], [-79.9476551896431, 32.781393863246], [-79.9476924140989, 32.781543795036], [-79.9472504199615, 32.7816355948914]]], "type": "Polygon"}, "id": "340", "properties": {"OBJECTID": 3403, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4467.62890625, "Shape__Length": 350.889502163972, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9481126312243, 32.7802289222942, -79.9468712325896, 32.7814968029071], "geometry": {"coordinates": [[[-79.9476551896431, 32.781393863246], [-79.9476459056044, 32.7813644918091], [-79.9481126312243, 32.7812596949306], [-79.9480001366851, 32.7809350692628], [-79.9478989812074, 32.7803193919911], [-79.9478421153767, 32.7803260220033], [-79.9474150152547, 32.7803758131849], [-79.947391205347, 32.7802289222942], [-79.9470839482516, 32.780439179584], [-79.9468712325896, 32.7805847407781], [-79.9469765528797, 32.7807752625317], [-79.9472083271681, 32.7814968029071], [-79.9476551896431, 32.781393863246]]], "type": "Polygon"}, "id": "341", "properties": {"OBJECTID": 3404, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14835.154296875, "Shape__Length": 511.868562616591, "ZONE_BASE": "PUD", "__folium_color": "#7f7f7f"}, "type": "Feature"}, {"bbox": [-79.9478989812074, 32.7796664159523, -79.9466274501219, 32.7805847407781], "geometry": {"coordinates": [[[-79.9478989812074, 32.7803193919911], [-79.947848713649, 32.7799251395577], [-79.9478445513073, 32.7798980279955], [-79.9478439280817, 32.7798928713593], [-79.9478426164404, 32.779882563839], [-79.9478412128901, 32.7798722645467], [-79.9478397195657, 32.7798619735005], [-79.9478381364347, 32.7798516934058], [-79.947836463508, 32.7798414233608], [-79.9478346997181, 32.7798311633562], [-79.9478328471783, 32.779820915214], [-79.9478309048211, 32.7798106789251], [-79.9478288726357, 32.7798004553909], [-79.9478267506221, 32.7797902446117], [-79.9478245398478, 32.7797800465966], [-79.9478222392236, 32.7797698631398], [-79.9478198498171, 32.7797596942505], [-79.9478173716065, 32.7797495417323], [-79.9478148046245, 32.7797394028799], [-79.9478121488167, 32.7797292822019], [-79.9478094042157, 32.7797191769932], [-79.9478065707891, 32.779709089959], [-79.9478036495934, 32.7796990220102], [-79.9478006406504, 32.7796889713433], [-79.9477975428708, 32.7796789397525], [-79.9477935548953, 32.7796664159523], [-79.9470802377364, 32.7799488664174], [-79.9468638270303, 32.7800346312287], [-79.9466274501219, 32.7801265185464], [-79.9467509845457, 32.7803508077841], [-79.9468712325896, 32.7805847407781], [-79.9470839482516, 32.780439179584], [-79.947391205347, 32.7802289222942], [-79.9474150152547, 32.7803758131849], [-79.9478421153767, 32.7803260220033], [-79.9478989812074, 32.7803193919911]]], "type": "Polygon"}, "id": "342", "properties": {"OBJECTID": 3405, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8827.294921875, "Shape__Length": 445.858105941979, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9295201803267, 32.7803630507903, -79.9284368260863, 32.7808813541732], "geometry": {"coordinates": [[[-79.9287972528707, 32.7804275361284], [-79.9284368260863, 32.7804649063061], [-79.9284613848168, 32.7807060630997], [-79.9284792353253, 32.7808813541732], [-79.9295201803267, 32.7807804901172], [-79.9294694406304, 32.7803630507903], [-79.9287972528707, 32.7804275361284]]], "type": "Polygon"}, "id": "343", "properties": {"OBJECTID": 3406, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6454.8828125, "Shape__Length": 343.284572105947, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9283280626585, 32.7800634247646, -79.9272415195036, 32.7809762202574], "geometry": {"coordinates": [[[-79.9272657522942, 32.7804286494108], [-79.9272686755642, 32.7804555605775], [-79.9272800670601, 32.7805215467971], [-79.9273256491153, 32.7807841976742], [-79.9273590833553, 32.7809762202574], [-79.9279988632756, 32.7809174343587], [-79.9280735642432, 32.7809105134991], [-79.9283104629712, 32.7808885370431], [-79.9283280626585, 32.7808703018828], [-79.9283002449742, 32.7806204471577], [-79.9282715682865, 32.7803443982988], [-79.9282488474915, 32.7801199352227], [-79.9281422499844, 32.7800634247646], [-79.9279434046852, 32.7800829639125], [-79.9277252818943, 32.7801049680338], [-79.9277692403553, 32.780367434948], [-79.9277374671512, 32.7803712796559], [-79.9277230475128, 32.7802868830165], [-79.9276927059535, 32.7801079453418], [-79.9272415195036, 32.7801498615999], [-79.927259376309, 32.7803517119869], [-79.9272657522942, 32.7804286494108]]], "type": "Polygon"}, "id": "344", "properties": {"OBJECTID": 3407, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12096.6015625, "Shape__Length": 504.842629457677, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.928906471334, 32.7809263602588, -79.9285013526444, 32.7810697394607], "geometry": {"coordinates": [[[-79.9285013526444, 32.7809661283746], [-79.9285130979037, 32.7810697394607], [-79.9286637750189, 32.7810549135083], [-79.928906471334, 32.7810325546874], [-79.9288939448848, 32.7809263602588], [-79.9285013526444, 32.7809661283746]]], "type": "Polygon"}, "id": "345", "properties": {"OBJECTID": 3408, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 612.8203125, "Shape__Length": 115.996115738421, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9283520634795, 32.7809962370095, -79.9274448661695, 32.7811712816691], "geometry": {"coordinates": [[[-79.9274448661695, 32.7810788482701], [-79.9274551205292, 32.7811712816691], [-79.9278281227871, 32.7811369284768], [-79.9283520634795, 32.7810861005102], [-79.9283420702173, 32.7809962370095], [-79.9274448661695, 32.7810788482701]]], "type": "Polygon"}, "id": "346", "properties": {"OBJECTID": 3409, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1224.783203125, "Shape__Length": 225.198247445783, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9282707982599, 32.7812377596194, -79.927492339617, 32.7818495837536], "geometry": {"coordinates": [[[-79.9279354533324, 32.7812623260564], [-79.927492339617, 32.7813038784521], [-79.9275890469267, 32.78159817826], [-79.9276755439884, 32.7818495837536], [-79.9282707982599, 32.7817839850125], [-79.9282186385716, 32.7814020370142], [-79.9281960082279, 32.7812377596194], [-79.9279354533324, 32.7812623260564]]], "type": "Polygon"}, "id": "347", "properties": {"OBJECTID": 3410, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5360.111328125, "Shape__Length": 293.53057383069, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9290197660491, 32.7811628679845, -79.9282416464633, 32.7818684988044], "geometry": {"coordinates": [[[-79.9287760102082, 32.7811768171925], [-79.9286131862406, 32.7811953642988], [-79.9283852508386, 32.7812166758488], [-79.9283855943322, 32.7812191327532], [-79.9282416464633, 32.7812335591866], [-79.9283366887678, 32.7818684988044], [-79.9286981337701, 32.7818291898158], [-79.9290197660491, 32.7817927525939], [-79.9289293178894, 32.7811628679845], [-79.9287760102082, 32.7811768171925]]], "type": "Polygon"}, "id": "348", "properties": {"OBJECTID": 3411, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6499.99609375, "Shape__Length": 322.890242849297, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9314426857443, 32.7806841316472, -79.9296920055307, 32.7809567118739], "geometry": {"coordinates": [[[-79.9303664406176, 32.7807849585616], [-79.9296920055307, 32.7808554273019], [-79.9297029661501, 32.7809567118739], [-79.9303798463995, 32.7808859235506], [-79.9314426857443, 32.7807853455077], [-79.9314300952858, 32.7806841316472], [-79.9303664406176, 32.7807849585616]]], "type": "Polygon"}, "id": "349", "properties": {"OBJECTID": 3412, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2623.2734375, "Shape__Length": 416.743894027366, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9295416792642, 32.7808625046, -79.9290079360468, 32.7810224654007], "geometry": {"coordinates": [[[-79.9290079360468, 32.7809153232469], [-79.9290204520739, 32.7810224654007], [-79.9295416792642, 32.780974283442], [-79.9295292194599, 32.7808625046], [-79.9290079360468, 32.7809153232469]]], "type": "Polygon"}, "id": "350", "properties": {"OBJECTID": 3413, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 850.2734375, "Shape__Length": 145.94075699422, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9315640815138, 32.7809161164486, -79.9297190621992, 32.7816304655051], "geometry": {"coordinates": [[[-79.9314976462473, 32.7809161164486], [-79.9297190621992, 32.7810936692987], [-79.9297800986382, 32.7816304655051], [-79.9315640815138, 32.7814534403941], [-79.9314976462473, 32.7809161164486]]], "type": "Polygon"}, "id": "351", "properties": {"OBJECTID": 3414, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14267.05859375, "Shape__Length": 542.279726528985, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9296382478186, 32.7811029095628, -79.9291429802615, 32.7816886310235], "geometry": {"coordinates": [[[-79.9294863498096, 32.7811115970957], [-79.9291429802615, 32.7811460199298], [-79.9291853094158, 32.7815021935503], [-79.9292074659685, 32.7816886310235], [-79.9296382478186, 32.7816437864404], [-79.9295730101188, 32.7811029095628], [-79.9294863498096, 32.7811115970957]]], "type": "Polygon"}, "id": "352", "properties": {"OBJECTID": 3415, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3478.826171875, "Shape__Length": 240.715943428085, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.931599181473, 32.7815780540903, -79.9297940708241, 32.7821720356877], "geometry": {"coordinates": [[[-79.93018258952, 32.781714507187], [-79.9301052122158, 32.7817222500521], [-79.9297940708241, 32.7817535449348], [-79.9298285981236, 32.7820559574772], [-79.9298418182129, 32.7821720356877], [-79.9301113673676, 32.7821492257513], [-79.9302310773903, 32.7821391069686], [-79.931599181473, 32.7820234139903], [-79.9315688567696, 32.7817758450638], [-79.9315436185545, 32.7815780540903], [-79.93018258952, 32.781714507187]]], "type": "Polygon"}, "id": "353", "properties": {"OBJECTID": 3416, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11289.080078125, "Shape__Length": 507.713782360825, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9297031762494, 32.7817614291406, -79.9292190222347, 32.782216824943], "geometry": {"coordinates": [[[-79.9292190222347, 32.7818119914957], [-79.9292740680495, 32.782216824943], [-79.9297031762494, 32.7821729466556], [-79.9296526804037, 32.7817614291406], [-79.9292190222347, 32.7818119914957]]], "type": "Polygon"}, "id": "354", "properties": {"OBJECTID": 3417, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2632.05859375, "Shape__Length": 205.585659270894, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9331516226626, 32.7792829557038, -79.9314967888586, 32.7806552989699], "geometry": {"coordinates": [[[-79.9326770359604, 32.7793115996262], [-79.9326446072357, 32.779313839126], [-79.932277012383, 32.7793543910972], [-79.9314967888586, 32.7794296540245], [-79.9315775006642, 32.780079933927], [-79.931594537449, 32.7802166648065], [-79.9316477522756, 32.7806552989699], [-79.9331516226626, 32.7805230948518], [-79.9331068316338, 32.780148171991], [-79.9330988825213, 32.7800887727196], [-79.9330814515769, 32.7799455805912], [-79.9330647444543, 32.7797978495246], [-79.9330505181494, 32.7796819342993], [-79.9330719172918, 32.7796800187532], [-79.9330648097017, 32.7796199026474], [-79.9330318121261, 32.7794073282292], [-79.9330197699547, 32.7792829557038], [-79.9326770359604, 32.7793115996262]]], "type": "Polygon"}, "id": "355", "properties": {"OBJECTID": 3418, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 27760.40234375, "Shape__Length": 669.371207013753, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9314415622424, 32.7794952262131, -79.9295826938737, 32.780746016049], "geometry": {"coordinates": [[[-79.9313088553391, 32.7794952262131], [-79.9311676218124, 32.7795212133438], [-79.9295826938737, 32.7797715700051], [-79.929588661572, 32.7798570684465], [-79.9296101441378, 32.7800858870922], [-79.9296798837688, 32.780746016049], [-79.930257714217, 32.7806855941522], [-79.9310707260346, 32.7806076810133], [-79.9314415622424, 32.7805728253516], [-79.9313088553391, 32.7794952262131]]], "type": "Polygon"}, "id": "356", "properties": {"OBJECTID": 3419, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 26691.1328125, "Shape__Length": 665.982568847008, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9334507107432, 32.78063358498, -79.9316618454998, 32.7823607593888], "geometry": {"coordinates": [[[-79.9325356617001, 32.7806889117382], [-79.932286464261, 32.7807108765004], [-79.9316618454998, 32.78076572375], [-79.9317293519907, 32.7812986352439], [-79.9317367440339, 32.7813593464349], [-79.9317448969624, 32.7814243579094], [-79.9317560628763, 32.7815090656302], [-79.9317649209774, 32.7815829320731], [-79.9317775466225, 32.7816813126439], [-79.9317864720659, 32.7817496784768], [-79.9317938715466, 32.7818097882072], [-79.9318013046794, 32.7818671485343], [-79.9318079569905, 32.7819218389227], [-79.9318154237615, 32.7819764516499], [-79.9318220760898, 32.7820311420382], [-79.9318369340545, 32.7821465480135], [-79.9318458101406, 32.7822189554413], [-79.9318635991968, 32.7823607593888], [-79.932313322753, 32.7821731288898], [-79.9324343406985, 32.7821224719354], [-79.9324923978267, 32.7820980662413], [-79.9325831606064, 32.7820602046166], [-79.9326714662735, 32.782023607506], [-79.9330328800003, 32.7818725714693], [-79.9334507107432, 32.78169814293], [-79.9333284657155, 32.7815164304537], [-79.9333325590227, 32.7815143170697], [-79.9333084873136, 32.7814870476099], [-79.9332437765553, 32.7813902782558], [-79.9332212456502, 32.7811702629947], [-79.933165165033, 32.78063358498], [-79.9325356617001, 32.7806889117382]]], "type": "Polygon"}, "id": "357", "properties": {"OBJECTID": 3420, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 30739.7734375, "Shape__Length": 725.850676282589, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.928729492307, 32.7784835735375, -79.9281404830543, 32.7793406689282], "geometry": {"coordinates": [[[-79.928729492307, 32.7792857525982], [-79.9287244024891, 32.77923648854], [-79.9287186036563, 32.7791787121586], [-79.9286865499561, 32.7788740014943], [-79.9286457867445, 32.7784835735375], [-79.9285047892176, 32.7785052714221], [-79.928408619307, 32.7785199793995], [-79.9283254898668, 32.7785326515646], [-79.9282268734723, 32.7785478493086], [-79.9281404830543, 32.7785610952049], [-79.9281824457689, 32.7787873808244], [-79.92818471933, 32.7788009715677], [-79.9281977053813, 32.7788696347773], [-79.9282023294425, 32.7788905500812], [-79.9282260492014, 32.7790125625313], [-79.9282428797977, 32.7790993818082], [-79.9282543836052, 32.7791562648746], [-79.9282589645111, 32.77918069786], [-79.9282650730317, 32.7792132228728], [-79.9282742685326, 32.7792593457535], [-79.9282911666943, 32.7793406689282], [-79.9285836552891, 32.7793039758209], [-79.928729492307, 32.7792857525982]]], "type": "Polygon"}, "id": "358", "properties": {"OBJECTID": 3421, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5630.35546875, "Shape__Length": 317.70497976282, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9287775763449, 32.7792857525982, -79.9282911666943, 32.7798837592671], "geometry": {"coordinates": [[[-79.9282911666943, 32.7793406689282], [-79.9283026505622, 32.7793991814336], [-79.9283742625731, 32.7797947785578], [-79.928382931047, 32.7798837592671], [-79.9286079782298, 32.7798409768058], [-79.9287775763449, 32.7798088740349], [-79.928729492307, 32.7792857525982], [-79.9285836552891, 32.7793039758209], [-79.9282911666943, 32.7793406689282]]], "type": "Polygon"}, "id": "359", "properties": {"OBJECTID": 3422, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3311.263671875, "Shape__Length": 236.493717967254, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9282231039091, 32.7793060904958, -79.927189260556, 32.780031402586], "geometry": {"coordinates": [[[-79.9278893152883, 32.7793400697951], [-79.9278167833224, 32.7793508585745], [-79.927650530063, 32.7793755996847], [-79.9275633295538, 32.7793884088077], [-79.927189260556, 32.7794439701608], [-79.927207935763, 32.7796453984453], [-79.9272438665515, 32.780031402586], [-79.9275802295624, 32.7799993929238], [-79.9278693542469, 32.7799718608162], [-79.9280543040419, 32.7799483987961], [-79.9281700898332, 32.7799263064631], [-79.9282231039091, 32.7799150894518], [-79.9282129954959, 32.7798108009789], [-79.9282023039378, 32.7797540134013], [-79.9281825212552, 32.7796426022423], [-79.9281680327443, 32.7795637901302], [-79.92816267223, 32.7795365988089], [-79.9281527635506, 32.7794823089576], [-79.9281444152259, 32.7794334446936], [-79.928142125867, 32.779421139828], [-79.9281298582413, 32.7793602152434], [-79.9281191340984, 32.7793060904958], [-79.9278893152883, 32.7793400697951]]], "type": "Polygon"}, "id": "360", "properties": {"OBJECTID": 3423, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8728.947265625, "Shape__Length": 374.817219101119, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9294338454504, 32.7797998210882, -79.9283939043823, 32.7803253912535], "geometry": {"coordinates": [[[-79.9284159129389, 32.7801922018609], [-79.9286728590705, 32.7801620015275], [-79.9288009234056, 32.7801466662593], [-79.9288092477393, 32.7801783800573], [-79.9289977313839, 32.7801551757163], [-79.9290189919443, 32.7803253912535], [-79.9292061390203, 32.7803109966451], [-79.9291893323445, 32.7801952359962], [-79.9291730420434, 32.780094649645], [-79.9293259011288, 32.7800704601967], [-79.9293076882905, 32.7799801226359], [-79.9294338454504, 32.7799627949967], [-79.9294316408312, 32.7799419099312], [-79.9294217340359, 32.7797998210882], [-79.9292808406644, 32.77982705807], [-79.9290301733797, 32.7798746325881], [-79.9287435060449, 32.7799279029943], [-79.9286164754744, 32.7799519328332], [-79.9283939043823, 32.7799943979124], [-79.9284159129389, 32.7801922018609]]], "type": "Polygon"}, "id": "361", "properties": {"OBJECTID": 3424, "ORDNO": "2022-042", "ORDSTAT": null, "Shape__Area": 4033.783203125, "Shape__Length": 350.135264093191, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9274152915213, 32.7812668186403, -79.9259744876917, 32.781694520679], "geometry": {"coordinates": [[[-79.9274152915213, 32.7816242358452], [-79.927343609408, 32.7813786326129], [-79.9273099955103, 32.7812668186403], [-79.926630079842, 32.7813428147887], [-79.9264636895309, 32.7813593509258], [-79.926382727652, 32.781366019262], [-79.9263017668281, 32.7813726875539], [-79.926224787742, 32.7813799029839], [-79.9260750745519, 32.7813913570268], [-79.9259744876917, 32.7813996402548], [-79.9260010293731, 32.7816398825341], [-79.9260041885088, 32.7816727587492], [-79.9262537509017, 32.7816540358142], [-79.9263337538895, 32.7816493161298], [-79.9264150559859, 32.7816445203154], [-79.9264980300585, 32.7816396254872], [-79.9266633992625, 32.7816261249383], [-79.9266660247883, 32.781694520679], [-79.9274152915213, 32.7816242358452]]], "type": "Polygon"}, "id": "362", "properties": {"OBJECTID": 3425, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6509.9375, "Shape__Length": 401.426195121955, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9278513660851, 32.7816242358452, -79.9260035078477, 32.7831668174344], "geometry": {"coordinates": [[[-79.9260041885088, 32.7816727587492], [-79.9260256986159, 32.7818806485748], [-79.9260257241921, 32.7820299135137], [-79.92602006777, 32.7821175881717], [-79.9260072253597, 32.7822501292269], [-79.9260035078477, 32.7823748421878], [-79.9260131415365, 32.782540958423], [-79.9260910080465, 32.7831668174344], [-79.9278513660851, 32.78298352967], [-79.9277482060288, 32.7827343338368], [-79.927639394884, 32.7823849169379], [-79.9274152915213, 32.7816242358452], [-79.9266660247883, 32.781694520679], [-79.9266633992625, 32.7816261249383], [-79.9264980300585, 32.7816396254872], [-79.9264150559859, 32.7816445203154], [-79.9263337538895, 32.7816493161298], [-79.9262537509017, 32.7816540358142], [-79.9260041885088, 32.7816727587492]]], "type": "Polygon"}, "id": "363", "properties": {"OBJECTID": 3426, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 33774.431640625, "Shape__Length": 749.104738015118, "ZONE_BASE": "LI", "__folium_color": "#8c564b"}, "type": "Feature"}, {"bbox": [-79.9270829321137, 32.7801648679894, -79.9258379453072, 32.7811193847604], "geometry": {"coordinates": [[[-79.926602131116, 32.7802111648497], [-79.9263178725821, 32.7802424883196], [-79.9258379453072, 32.7802953777298], [-79.9258565150011, 32.7804390274065], [-79.9259444937424, 32.7811193847604], [-79.9270829321137, 32.7810133486808], [-79.9269864435923, 32.7802674127358], [-79.9270345630484, 32.7802599464268], [-79.9270222610646, 32.7801648679894], [-79.926602131116, 32.7802111648497]]], "type": "Polygon"}, "id": "364", "properties": {"OBJECTID": 3427, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14225.064453125, "Shape__Length": 487.674557296402, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9460090708668, 32.7732988393639, -79.9419842150735, 32.7753139495955], "geometry": {"coordinates": [[[-79.942650226027, 32.7747575344249], [-79.9421625614181, 32.7747840230336], [-79.9422342957777, 32.7753139495955], [-79.9439559735756, 32.7751439550362], [-79.9460090708668, 32.7749435615271], [-79.945997769999, 32.7749362485856], [-79.945981612897, 32.7749270053605], [-79.9459775741473, 32.7749246510449], [-79.9459678585506, 32.7749208725188], [-79.94595894176, 32.7749183057246], [-79.9459379087586, 32.7749087616541], [-79.9459169099248, 32.7748962111608], [-79.9459055976941, 32.7748899289087], [-79.9458991562429, 32.7748844605969], [-79.9458943217744, 32.7748806393531], [-79.9458821785712, 32.7748758100071], [-79.9458643574603, 32.7748696448152], [-79.9458489712171, 32.7748639298759], [-79.9458319624694, 32.7748578537466], [-79.9458141693698, 32.7748493692724], [-79.9457972280369, 32.7748377104666], [-79.9457819465401, 32.7748233216828], [-79.9457691154934, 32.774808092764], [-79.945758734896, 32.774792023711], [-79.9457507839491, 32.7747768368476], [-79.9457436577322, 32.7747607146752], [-79.9457308443634, 32.7747440231303], [-79.9457212273001, 32.7747320874457], [-79.9457083662014, 32.7747193491263], [-79.9456914725925, 32.774703741587], [-79.945667272298, 32.7746868698274], [-79.9456406548502, 32.7746681708564], [-79.9456212973502, 32.7746545188902], [-79.9456108473296, 32.7746442904032], [-79.9455947265874, 32.7746319559539], [-79.9455729311961, 32.7746181945869], [-79.9455438716578, 32.7745996476965], [-79.9455163527087, 32.7745882448786], [-79.9454960937333, 32.7745817970859], [-79.9454774946407, 32.7745727040912], [-79.945453993722, 32.7745654581785], [-79.9454361913952, 32.7745577455388], [-79.9454216455397, 32.7745497173719], [-79.9454103272137, 32.7745440347404], [-79.9453909749294, 32.7745298678354], [-79.9453772476462, 32.7745215031215], [-79.9453619154483, 32.7745113218038], [-79.9453554657586, 32.7745065405893], [-79.9453385359258, 32.774493940304], [-79.9453297136623, 32.7744835535764], [-79.945312807683, 32.7744689793791], [-79.9452927168692, 32.774448703382], [-79.9452653609275, 32.7744238140871], [-79.9452452285855, 32.7744069773179], [-79.9452162729442, 32.7743798421803], [-79.9451953117417, 32.7743642842707], [-79.9451832101575, 32.7743560192271], [-79.9451711531894, 32.7743440615578], [-79.9451421146045, 32.7743237949547], [-79.9451122439604, 32.774304983042], [-79.94508884383, 32.7742894040819], [-79.945068679367, 32.7742752310232], [-79.945046041712, 32.7742637818142], [-79.9450234632079, 32.7742474379576], [-79.9449935874396, 32.7742290543424], [-79.9449685398628, 32.7742150943716], [-79.9449394214267, 32.7742014428837], [-79.9449191885187, 32.7741929372348], [-79.944901398771, 32.7741841938292], [-79.9448836453596, 32.7741724440206], [-79.944861023296, 32.7741597088966], [-79.9448303539855, 32.7741397735553], [-79.9447859451024, 32.7741125014096], [-79.9447657454606, 32.774101246331], [-79.9447415362034, 32.7740852328549], [-79.9447116522438, 32.7740676246766], [-79.9446834272101, 32.77404736408], [-79.9446495430147, 32.7740242237977], [-79.9446196767641, 32.7740051538769], [-79.9445898790482, 32.7739804156131], [-79.9445713601252, 32.7739647091223], [-79.9445584328656, 32.7739574667864], [-79.9445463832993, 32.7739448201177], [-79.9445222250451, 32.773924682952], [-79.9444818798646, 32.7738976225173], [-79.9444665499848, 32.7738872670522], [-79.9444447694788, 32.7738723043681], [-79.9444342822633, 32.7738650830741], [-79.9444270161608, 32.7738604688192], [-79.9444036671116, 32.773840596537], [-79.9443778957281, 32.7738192414742], [-79.9443633843926, 32.7738084646887], [-79.9443497341885, 32.7737937425955], [-79.9443337020971, 32.7737741922696], [-79.9443200612475, 32.7737586973822], [-79.9443024087287, 32.7737386172189], [-79.9442758956892, 32.7737113315879], [-79.9442566362716, 32.7736896034269], [-79.9442446117445, 32.7736749810265], [-79.9442188674373, 32.773651394125], [-79.9441987708064, 32.7736316355486], [-79.9441819212863, 32.773612421746], [-79.9441504660087, 32.7735902447045], [-79.944126275698, 32.7735726855258], [-79.9441101793106, 32.7735584590418], [-79.9440957210316, 32.7735433015738], [-79.9440861147392, 32.7735305046009], [-79.944079694267, 32.7735233192818], [-79.9440741016592, 32.773514939866], [-79.9440678920897, 32.7734903167058], [-79.9440576666871, 32.7734614545309], [-79.9440530515809, 32.7734395091506], [-79.9440500392313, 32.7734195553269], [-79.9440469541619, 32.7734055259232], [-79.9440438410724, 32.7733939898479], [-79.9440390566327, 32.7733859573982], [-79.9440293942416, 32.773377800773], [-79.9440188894607, 32.7733721277399], [-79.9440026445696, 32.7733700954573], [-79.9439831026765, 32.7733717331305], [-79.9439586548446, 32.7733754721064], [-79.9439374738444, 32.7733781237123], [-79.9439146599752, 32.7733813618387], [-79.9438926822183, 32.7733825473911], [-79.9438690851279, 32.773383288784], [-79.9438511647079, 32.7733853697084], [-79.9438324174704, 32.7733884697782], [-79.9438153145929, 32.7733902980278], [-79.9438006194454, 32.7733946388309], [-79.9437736723785, 32.7734032513446], [-79.9437524715875, 32.7734075377723], [-79.9437362100901, 32.7734069662816], [-79.943719935065, 32.7734075129459], [-79.9437052991808, 32.7734070429662], [-79.9436955391536, 32.7734069586872], [-79.9436882056377, 32.7734080109293], [-79.9436702405204, 32.7734137853524], [-79.9436547237652, 32.7734188901111], [-79.9436351777306, 32.7734208685862], [-79.9436221653955, 32.7734206705413], [-79.9436075128816, 32.773421574801], [-79.9435977216479, 32.7734240694893], [-79.9435887614578, 32.7734251076776], [-79.9435806343523, 32.7734245207406], [-79.9435749815477, 32.773421120708], [-79.9435701950418, 32.7734133506554], [-79.9435678288381, 32.7734072302167], [-79.9435646814871, 32.7733984426221], [-79.9435632470826, 32.7733825390211], [-79.9435593778885, 32.773366183316], [-79.9435570948197, 32.7733531925235], [-79.9435516124247, 32.7733356216436], [-79.9435501645135, 32.7733209227757], [-79.9435503588771, 32.7733048600892], [-79.9435496183102, 32.7732988393639], [-79.9434144186794, 32.7733129622485], [-79.9431619397424, 32.7733393008029], [-79.9431586812179, 32.7733397010218], [-79.9431554237194, 32.7733400164771], [-79.9431521662209, 32.7733403319323], [-79.9431489087224, 32.7733406473875], [-79.9425934393169, 32.7733997564342], [-79.9424688252407, 32.7734130255593], [-79.9423067467138, 32.7734301785839], [-79.9421454803917, 32.7734473384181], [-79.9419842150735, 32.7734644980489], [-79.9420339904295, 32.7738338922692], [-79.9420343094429, 32.7738336416129], [-79.9421954294189, 32.773816815233], [-79.9423568279051, 32.773799727714], [-79.9425182765493, 32.7737826359071], [-79.942650226027, 32.7747575344249]]], "type": "Polygon"}, "id": "365", "properties": {"OBJECTID": 3433, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 68454.224609375, "Shape__Length": 1335.23782694692, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.942650226027, 32.7737826359071, -79.9420339904295, 32.7747840230336], "geometry": {"coordinates": [[[-79.9420339904295, 32.7738338922692], [-79.9421625614181, 32.7747840230336], [-79.942650226027, 32.7747575344249], [-79.9425182765493, 32.7737826359071], [-79.9423568279051, 32.773799727714], [-79.9421954294189, 32.773816815233], [-79.9420339904295, 32.7738338922692]]], "type": "Polygon"}, "id": "366", "properties": {"OBJECTID": 3434, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6968.515625, "Shape__Length": 365.245749733278, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9420730794725, 32.7734803670689, -79.9409978067123, 32.7754069084964], "geometry": {"coordinates": [[[-79.9414955095778, 32.7735182490963], [-79.9413293379139, 32.7735375153831], [-79.94123647485, 32.7735483913178], [-79.9411493176228, 32.7735584616332], [-79.9409978067123, 32.7735760479995], [-79.9410164690773, 32.7737139935701], [-79.9410351315121, 32.7738519382382], [-79.9410447943974, 32.7739270995737], [-79.9410552717012, 32.7740021804812], [-79.9411792011066, 32.7749174857576], [-79.941244848169, 32.7754069084964], [-79.9416593712142, 32.7753672020384], [-79.9419338201051, 32.7753408013339], [-79.9420730794725, 32.7753274862311], [-79.942023767541, 32.774966454181], [-79.9420058500408, 32.7748340136857], [-79.9418804353449, 32.7739064116989], [-79.9418229642642, 32.7734803670689], [-79.9414955095778, 32.7735182490963]]], "type": "Polygon"}, "id": "367", "properties": {"OBJECTID": 3435, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22717.072265625, "Shape__Length": 675.605820357406, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9417904459332, 32.7730211877849, -79.9410473880686, 32.773415336627], "geometry": {"coordinates": [[[-79.9410525045626, 32.7733667576299], [-79.9410500259867, 32.7733698285622], [-79.9410491741592, 32.7733730831217], [-79.9410483264158, 32.7733759129528], [-79.94104747141, 32.7733793415387], [-79.9410474297393, 32.7733827771656], [-79.9410473880686, 32.7733862127924], [-79.9410481670281, 32.773389054], [-79.9410489470378, 32.7733918086406], [-79.9410505392935, 32.7733945721163], [-79.9410521295279, 32.7733976782715], [-79.941053720795, 32.7734006112834], [-79.9410561274319, 32.7734033836126], [-79.9410585403294, 32.7734055517672], [-79.94106176768, 32.7734078108427], [-79.9410649960195, 32.773409900382], [-79.9410682274588, 32.7734116463492], [-79.9410714672671, 32.7734128783434], [-79.9410747091689, 32.7734138497256], [-79.9410779531094, 32.7734145650045], [-79.9410812022907, 32.7734150242079], [-79.9410844525265, 32.7734153084645], [-79.9410877058684, 32.773415336627], [-79.9410909623163, 32.7734151086954], [-79.9412147726303, 32.7734010620453], [-79.9414135201399, 32.7733785579681], [-79.9417336335428, 32.7733424154202], [-79.9417368931559, 32.7733419259671], [-79.9417401537528, 32.7733413553573], [-79.9417434164482, 32.7733406116134], [-79.9417466812531, 32.7733396938339], [-79.9417499470852, 32.7733386912906], [-79.9417532150159, 32.7733375156134], [-79.9417573035386, 32.7733357482172], [-79.9417605745731, 32.7733343164458], [-79.9417638549962, 32.7733321100801], [-79.9417671374848, 32.7733297332856], [-79.941770422039, 32.7733271860623], [-79.9417737097188, 32.7733243809414], [-79.9417769984696, 32.7733214874499], [-79.9417794759512, 32.7733184164936], [-79.9417819565695, 32.7733150867381], [-79.9417836238093, 32.7733117535535], [-79.9417852931911, 32.773308243628], [-79.9417869635674, 32.7733046516441], [-79.9417886350146, 32.7733009712897], [-79.9417894941547, 32.7732971991359], [-79.9417903532947, 32.7732934269821], [-79.9417903991003, 32.7732896477923], [-79.9417904459332, 32.773285783839], [-79.9417896784045, 32.7732819976133], [-79.9417889108759, 32.7732782113876], [-79.94178814232, 32.7732745099254], [-79.9417873737531, 32.7732708093649], [-79.9417857897538, 32.7732672749024], [-79.9417833924313, 32.7732637325022], [-79.9417818063666, 32.7732603684684], [-79.9417794048803, 32.7732571696307], [-79.9417761890219, 32.7732540494223], [-79.941773784432, 32.7732511066786], [-79.9417705633496, 32.7732484175013], [-79.941767341251, 32.7732458121858], [-79.9417633027036, 32.7732434568299], [-79.9417600743535, 32.7732413673091], [-79.9417568387024, 32.7732398801502], [-79.9415586329259, 32.7731505476299], [-79.9414154415634, 32.7730859123398], [-79.9412714380761, 32.7730211877849], [-79.9410525045626, 32.7733667576299]]], "type": "Polygon"}, "id": "368", "properties": {"OBJECTID": 3436, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2412.369140625, "Shape__Length": 213.085321831207, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9411282450211, 32.7722468810378, -79.9392540211121, 32.7734563396172], "geometry": {"coordinates": [[[-79.9394148828391, 32.772512986044], [-79.9392540211121, 32.7727647360595], [-79.9393842565408, 32.7728243655052], [-79.9395128738766, 32.7728832899782], [-79.939641491413, 32.7729422999909], [-79.939770108023, 32.7730013125646], [-79.9398987248287, 32.7730603232002], [-79.9400273438939, 32.7731192498483], [-79.9401567743913, 32.7731782663591], [-79.94028539173, 32.7732372756875], [-79.9404140102662, 32.7732962884972], [-79.9405426289921, 32.7733552118906], [-79.9406712468085, 32.7734142244214], [-79.9407634658361, 32.7734563396172], [-79.9408123066263, 32.7734534122123], [-79.9409590780133, 32.7732230117389], [-79.9411282450211, 32.7729566387173], [-79.9409138854155, 32.7728580612983], [-79.9406995262938, 32.7727594835048], [-79.9405563487155, 32.772693816524], [-79.9404277330281, 32.7726346343409], [-79.9402991175535, 32.7725755367957], [-79.9401567538612, 32.7725098800013], [-79.9400135770622, 32.7724441276143], [-79.9398712137879, 32.7723784713903], [-79.9397280384868, 32.7723127186794], [-79.9395848644308, 32.7722468810378], [-79.9394148828391, 32.772512986044]]], "type": "Polygon"}, "id": "369", "properties": {"OBJECTID": 3437, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15210.115234375, "Shape__Length": 545.045150691019, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.943041854118, 32.772275188692, -79.9413568818079, 32.7733126935684], "geometry": {"coordinates": [[[-79.9416123000685, 32.77248107204], [-79.9415359995408, 32.7726021350675], [-79.9413568818079, 32.7728841396712], [-79.9415146357387, 32.7729552544628], [-79.9418099161933, 32.7730887211907], [-79.9419361225923, 32.773145391107], [-79.9419625647799, 32.7733126935684], [-79.9420122531576, 32.7733070242269], [-79.9425938322749, 32.7732412715473], [-79.9426141947205, 32.7732389566971], [-79.942947339187, 32.7732013760758], [-79.9429505925215, 32.7732014041888], [-79.9429538468823, 32.7732013475381], [-79.9429571022801, 32.7732012052221], [-79.9429603577107, 32.7732010602009], [-79.9429644316607, 32.7732004938814], [-79.9429676901918, 32.773200092766], [-79.9429709518865, 32.7731995185256], [-79.9429742124616, 32.773198860405], [-79.9429782926451, 32.7731977791918], [-79.9429815574207, 32.773196862281], [-79.9429848221743, 32.7731959471735], [-79.9429889096805, 32.7731943492725], [-79.9429929971369, 32.7731925791207], [-79.9429962660497, 32.7731913204502], [-79.9430003587325, 32.7731892067446], [-79.9430028164077, 32.7731877679121], [-79.9430052761679, 32.7731861568472], [-79.9430077369735, 32.773184547595], [-79.9430101966923, 32.7731828517573], [-79.9430126585264, 32.7731810693619], [-79.9430151214193, 32.7731791994976], [-79.9430184101235, 32.7731763059729], [-79.9430200617461, 32.7731742586519], [-79.9430233535502, 32.7731711090331], [-79.9430250072661, 32.7731689769577], [-79.9430266609844, 32.7731667565028], [-79.9430283136025, 32.7731645387438], [-79.9430299683577, 32.7731622326235], [-79.943031624139, 32.7731598417397], [-79.9430332799093, 32.7731574517576], [-79.9430349523686, 32.7731537713955], [-79.9430357958426, 32.7731512887204], [-79.9430374526303, 32.7731487264969], [-79.9430383117149, 32.7731449543343], [-79.9430391572847, 32.7731422985253], [-79.9430400018283, 32.7731397274798], [-79.9430408473653, 32.7731370743759], [-79.9430408796128, 32.7731344106375], [-79.9430417251824, 32.7731317548284], [-79.94304175743, 32.77312909109], [-79.9430417896339, 32.7731264309585], [-79.9430418218814, 32.7731237672201], [-79.943041854118, 32.7731211043834], [-79.9430410740697, 32.7731183479521], [-79.9430411063064, 32.7731156851154], [-79.9430403241513, 32.7731131027198], [-79.9430403563989, 32.7731104389814], [-79.94303957527, 32.7731077718223], [-79.9430387931478, 32.7731051867214], [-79.9430380110256, 32.7731026016206], [-79.9430372289119, 32.7731001039978], [-79.9430356334245, 32.7730975145745], [-79.9430340504064, 32.773093806985], [-79.9430324528558, 32.7730913879905], [-79.943031668638, 32.7730889760235], [-79.9430300700614, 32.7730866417925], [-79.9430284714825, 32.7730843959411], [-79.9430268728952, 32.7730820626117], [-79.943024457823, 32.7730798944776], [-79.9430228571727, 32.7730777315769], [-79.9430196412765, 32.7730746114012], [-79.9430164232953, 32.7730716634577], [-79.9430132042555, 32.7730688029827], [-79.9430107861248, 32.7730669757151], [-79.9428336573984, 32.7729164107048], [-79.9427402658335, 32.7728367463058], [-79.9427185108184, 32.7728196362652], [-79.9426572708458, 32.7727716903225], [-79.9425999998586, 32.7727320250258], [-79.9425709603207, 32.7727119300482], [-79.942471736492, 32.7726437269339], [-79.9424693151763, 32.7726420763873], [-79.9424668949608, 32.7726404231447], [-79.9424644747563, 32.7726387690003], [-79.9424620545519, 32.7726371148559], [-79.9424588210083, 32.7726354545817], [-79.9424563997337, 32.7726338888075], [-79.942453980597, 32.7726322346722], [-79.9424515592819, 32.7726305841252], [-79.9424491380404, 32.7726290156458], [-79.9424459055648, 32.7726273553804], [-79.9424434832233, 32.7726257895969], [-79.9424410630196, 32.772624135452], [-79.9424386417784, 32.7726225669724], [-79.9424362226095, 32.7726209155419], [-79.942432986973, 32.7726193400212], [-79.9424305667261, 32.7726176894831], [-79.9424281454852, 32.7726161210033], [-79.9424257242117, 32.7726145552286], [-79.9424233029711, 32.7726129867486], [-79.9424200694292, 32.7726113264734], [-79.9424168400272, 32.7726093244388], [-79.9424128056424, 32.7726066264434], [-79.9424095710852, 32.7726050500297], [-79.9424071498123, 32.7726034842546], [-79.9424047285723, 32.7726019157743], [-79.9424023072995, 32.7726003499991], [-79.9423990727317, 32.7725987744868], [-79.9423966514592, 32.7725972087115], [-79.9423942291819, 32.7725957258962], [-79.9423918079095, 32.7725941601209], [-79.9423885733422, 32.7725925846083], [-79.94238615207, 32.7725910188328], [-79.9423837297711, 32.7725895378208], [-79.9423813085319, 32.77258796934], [-79.9423780728944, 32.7725864821976], [-79.9423756516555, 32.7725849137167], [-79.9423732293569, 32.7725834327045], [-79.9423699947575, 32.7725818598966], [-79.942367572481, 32.7725803770808], [-79.9423651512096, 32.7725788113049], [-79.9423627289114, 32.7725773302925], [-79.9423594933074, 32.7725758404444], [-79.9423570720362, 32.7725742746683], [-79.9423546497384, 32.7725727936557], [-79.9423514141457, 32.7725713029056], [-79.942348991837, 32.7725698227947], [-79.9423465695393, 32.7725683417819], [-79.9423433339032, 32.7725668546386], [-79.9423409115948, 32.7725653745275], [-79.9423384893302, 32.7725638908094], [-79.9423352536944, 32.7725624036658], [-79.9423328313972, 32.7725609226528], [-79.9423304090892, 32.7725594425414], [-79.9423271734973, 32.7725579517908], [-79.9423247501626, 32.7725565564428], [-79.9423223278548, 32.7725550763313], [-79.9423190922305, 32.7725535882856], [-79.942316668896, 32.7725521929375], [-79.9423142465885, 32.7725507128258], [-79.9423110099267, 32.7725493104452], [-79.9423085876631, 32.7725478267265], [-79.9423053510015, 32.7725464243456], [-79.9423029286943, 32.7725449442337], [-79.9423005053603, 32.7725435488853], [-79.9422972697368, 32.7725420608391], [-79.942294846403, 32.7725406654905], [-79.9422924230693, 32.7725392701419], [-79.9422891864083, 32.7725378677607], [-79.9422867641017, 32.7725363876485], [-79.9422835274408, 32.7725349852671], [-79.9422811041402, 32.7725335872131], [-79.9422786808178, 32.7725321909625], [-79.9422754441136, 32.7725307921878], [-79.9422730207805, 32.7725293968389], [-79.9422697841201, 32.7725279944571], [-79.9422649364273, 32.7725252885224], [-79.9422616997673, 32.7725238861404], [-79.9422592764346, 32.7725224907912], [-79.9422560397747, 32.7725210884091], [-79.9422528062394, 32.7725194281294], [-79.9422455310531, 32.7725156704072], [-79.9422398700346, 32.7725129574386], [-79.9422342089728, 32.7725102480767], [-79.9422309712759, 32.7725089313591], [-79.942228547955, 32.7725075351075], [-79.9420829785376, 32.7724377269565], [-79.9419131469865, 32.772356457491], [-79.9417433157406, 32.772275188692], [-79.9416123000685, 32.77248107204]]], "type": "Polygon"}, "id": "370", "properties": {"OBJECTID": 3438, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 13676.580078125, "Shape__Length": 499.489391318506, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9410834531234, 32.7735968183521, -79.9403215697313, 32.7754708318043], "geometry": {"coordinates": [[[-79.9405138082233, 32.7736341412417], [-79.9403215697313, 32.7736564423262], [-79.9403713335866, 32.7739795983515], [-79.9403841690158, 32.7740614012781], [-79.9403999941208, 32.7741649615979], [-79.9404165658932, 32.774274025965], [-79.9404339510404, 32.774383098278], [-79.9404505239363, 32.7744920769779], [-79.940467095823, 32.7746011422439], [-79.940483667762, 32.7747102066072], [-79.940500240771, 32.7748191862061], [-79.9405176261751, 32.7749282549067], [-79.9405341982065, 32.7750373219723], [-79.9405583431028, 32.7751926646088], [-79.9406005202178, 32.7754708318043], [-79.9407633985492, 32.7754552327684], [-79.9408708978477, 32.7754449095603], [-79.9409792115033, 32.7754345085355], [-79.9410834531234, 32.775424504145], [-79.9410393990638, 32.7750997654962], [-79.9410244885058, 32.774987792748], [-79.9410095446477, 32.7748785685011], [-79.9409946007723, 32.7747693487625], [-79.9409796580172, 32.7746600397512], [-79.9409655275845, 32.7745508252494], [-79.9409505838531, 32.7744416028042], [-79.9409356401481, 32.7743323812601], [-79.9409206975415, 32.7742230722468], [-79.9409057539333, 32.7741138488982], [-79.9408916236705, 32.7740046352963], [-79.9408751961996, 32.7738836310658], [-79.9408363775511, 32.7735968183521], [-79.9405138082233, 32.7736341412417]]], "type": "Polygon"}, "id": "371", "properties": {"OBJECTID": 3439, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 13585.134765625, "Shape__Length": 597.711809344707, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9404388651697, 32.7736648952775, -79.9393445899017, 32.7755673900879], "geometry": {"coordinates": [[[-79.9400573612852, 32.7736768993386], [-79.9399750869579, 32.7736866648252], [-79.9397364107334, 32.7737148330284], [-79.9393445899017, 32.7737612581266], [-79.9394103149631, 32.7741763822412], [-79.9394307362603, 32.7743032597906], [-79.9394495830457, 32.7744258327598], [-79.9394700357529, 32.774550134037], [-79.9394881465216, 32.7746663426901], [-79.9395070185379, 32.7747868515741], [-79.9395281971142, 32.7749183756158], [-79.9395463549808, 32.77503071941], [-79.9395743019807, 32.7752077419451], [-79.9395818272836, 32.775257887843], [-79.9395931606521, 32.7753293689798], [-79.9396052698592, 32.7754039474275], [-79.9396173581902, 32.7754802463934], [-79.9396317551502, 32.7755673900879], [-79.9398581694016, 32.7755445249756], [-79.9399485738595, 32.7755353449504], [-79.9401130895209, 32.7755188176478], [-79.9402767917652, 32.7755022830781], [-79.9404388651697, 32.7754859046281], [-79.9403747588602, 32.7750710539056], [-79.9403582025956, 32.7749607036427], [-79.9403408163991, 32.7748517160756], [-79.9403242592231, 32.7747414478691], [-79.9403076906185, 32.7746321246846], [-79.9402903159664, 32.7745221966001], [-79.940273737004, 32.774413733673], [-79.9402571873073, 32.7743028631009], [-79.9402397971483, 32.7741941352189], [-79.940221738619, 32.7740735487388], [-79.9402059241953, 32.7739691272359], [-79.9401893047672, 32.7738640151672], [-79.9401591849266, 32.7736648952775], [-79.9400573612852, 32.7736768993386]]], "type": "Polygon"}, "id": "372", "properties": {"OBJECTID": 3440, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22045.9453125, "Shape__Length": 666.416265688197, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9388931757386, 32.7743084925526, -79.937355449854, 32.7757800171334], "geometry": {"coordinates": [[[-79.9388038303839, 32.7743084925526], [-79.9386613772016, 32.7744507078583], [-79.9385889215457, 32.7745225785609], [-79.9385255190777, 32.7745857673608], [-79.9384604762508, 32.7746500583653], [-79.9383962456448, 32.7747144411576], [-79.9383279075006, 32.7747821358779], [-79.9382768500476, 32.7748334057328], [-79.9381903913306, 32.7749195858244], [-79.9381031096824, 32.7750065324876], [-79.9380059527299, 32.7751028418784], [-79.9379219627791, 32.7751866389294], [-79.937837972678, 32.7752704350218], [-79.9376798839512, 32.7754272873179], [-79.9375753023778, 32.7755319496262], [-79.9375341329132, 32.7755728239384], [-79.937355449854, 32.7757508046058], [-79.9373957664496, 32.7757800171334], [-79.9375863355659, 32.775761657935], [-79.9377109390777, 32.7757495985039], [-79.9378282140529, 32.7757382445782], [-79.9379454878644, 32.7757268959413], [-79.9381083681862, 32.7757111272967], [-79.9382614755711, 32.7756963098212], [-79.9383942229574, 32.7756835448014], [-79.9385212705031, 32.775671161256], [-79.9388054962361, 32.7756436457335], [-79.9387504289629, 32.7752218309762], [-79.938838393169, 32.7752126287997], [-79.938830903679, 32.7750926478141], [-79.9387535152384, 32.7751017703849], [-79.9387299948527, 32.7749622356275], [-79.9388090004191, 32.7749538170046], [-79.9388052406583, 32.7749286132898], [-79.9387878270936, 32.7748219492752], [-79.9387856042354, 32.7748040601439], [-79.9387659146466, 32.7746839733202], [-79.9388931757386, 32.7746539829403], [-79.9388878622669, 32.7746225836773], [-79.938882596855, 32.7745874061452], [-79.9388704539383, 32.7745155734194], [-79.9388477416662, 32.7743765615531], [-79.9388224945507, 32.7743790065581], [-79.9388038303839, 32.7743084925526]]], "type": "Polygon"}, "id": "373", "properties": {"OBJECTID": 3441, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14586.806640625, "Shape__Length": 632.222783247261, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.939469232843, 32.7739855689561, -79.9387299948527, 32.7756436457335], "geometry": {"coordinates": [[[-79.938838393169, 32.7752126287997], [-79.9387504289629, 32.7752218309762], [-79.9388054962361, 32.7756436457335], [-79.9391744203563, 32.7756079341133], [-79.939321012257, 32.7755938280779], [-79.939469232843, 32.7755794816699], [-79.939419356669, 32.7752657709407], [-79.939399716188, 32.7751415614606], [-79.9393815730519, 32.7750279308519], [-79.9393604124276, 32.7748949450637], [-79.9393400067865, 32.7747668636816], [-79.939327142977, 32.7746873808051], [-79.9393105411659, 32.774580894358], [-79.9392931573717, 32.7744718227848], [-79.939271211829, 32.7743365124669], [-79.9392470079204, 32.7741862346604], [-79.9392228604642, 32.7740313174033], [-79.9392212786366, 32.7740276115769], [-79.9392205101719, 32.7740239109999], [-79.9392189272927, 32.7740202917404], [-79.9392173423976, 32.7740168384009], [-79.9392149430334, 32.7740134708874], [-79.9392125427051, 32.774010182727], [-79.9392101402515, 32.7740070695039], [-79.9392069223537, 32.7740041223616], [-79.9392045146853, 32.7740014383662], [-79.9392004793056, 32.773998825028], [-79.9391972541005, 32.7739964793455], [-79.9391932134732, 32.7739942979401], [-79.939189984116, 32.7739922940166], [-79.9391867453911, 32.77399106108], [-79.9391826974562, 32.7739894811344], [-79.9391786464099, 32.7739881572825], [-79.9391754024371, 32.7739873562787], [-79.9391721563826, 32.7739867266052], [-79.9391680959248, 32.7739861773471], [-79.9391648456959, 32.7739858912361], [-79.939161595478, 32.7739856042232], [-79.9391575287749, 32.7739855689561], [-79.9391534600119, 32.7739857032157], [-79.9391502034939, 32.7739859347026], [-79.9391469438531, 32.7739864231852], [-79.9391436832261, 32.7739869928241], [-79.9391404215034, 32.7739876526369], [-79.9391371576769, 32.7739884855836], [-79.9391330732562, 32.7739899084279], [-79.9391289867096, 32.7739915062095], [-79.9391248970291, 32.7739933618884], [-79.9391216186183, 32.7739953950495], [-79.939118344382, 32.7739970846479], [-79.9391150607662, 32.773999546135], [-79.9391117750355, 32.7740021816577], [-79.9391084872336, 32.774004987609], [-79.9388837007546, 32.7742287823703], [-79.9388038303839, 32.7743084925526], [-79.9388224945507, 32.7743790065581], [-79.9388477416662, 32.7743765615531], [-79.9388704539383, 32.7745155734194], [-79.938882596855, 32.7745874061452], [-79.9388878622669, 32.7746225836773], [-79.9388931757386, 32.7746539829403], [-79.9387659146466, 32.7746839733202], [-79.9387856042354, 32.7748040601439], [-79.9387878270936, 32.7748219492752], [-79.9388052406583, 32.7749286132898], [-79.9388090004191, 32.7749538170046], [-79.9387299948527, 32.7749622356275], [-79.9387535152384, 32.7751017703849], [-79.938830903679, 32.7750926478141], [-79.938838393169, 32.7752126287997]]], "type": "Polygon"}, "id": "374", "properties": {"OBJECTID": 3442, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12196.095703125, "Shape__Length": 568.683172009722, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.939177095406, 32.7737589549196, -79.9388295231127, 32.7739505518399], "geometry": {"coordinates": [[[-79.9388295231127, 32.7737984567005], [-79.9388851341077, 32.7738409429396], [-79.9388834625387, 32.7738446223528], [-79.9390139501008, 32.7739505518399], [-79.9391703914598, 32.7737950570966], [-79.9391720452505, 32.7737927519208], [-79.93917451657, 32.773790196812], [-79.9391753643672, 32.7737873678955], [-79.9391762131724, 32.773784456019], [-79.939177057825, 32.7737818859017], [-79.939177095406, 32.7737787929363], [-79.9391763133593, 32.7737762105158], [-79.9391755313454, 32.7737736253901], [-79.9391747524324, 32.7737707850722], [-79.9391731570911, 32.7737681919914], [-79.939170747364, 32.7737657659021], [-79.9391675221527, 32.7737633336426], [-79.9391642917418, 32.7737614171872], [-79.9391610561531, 32.7737600147322], [-79.9391578142662, 32.7737589549196], [-79.9388295231127, 32.7737984567005]]], "type": "Polygon"}, "id": "375", "properties": {"OBJECTID": 3443, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 482.703125, "Shape__Length": 98.9092054636035, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9386649697307, 32.7738184197128, -79.93814608785, 32.7742362335099], "geometry": {"coordinates": [[[-79.93814608785, 32.7739452562099], [-79.9381589911558, 32.774021218796], [-79.9381531348341, 32.7740346539915], [-79.9381583361998, 32.7740750706572], [-79.938168790536, 32.7740849553251], [-79.9381808085385, 32.7741670066252], [-79.9382588691919, 32.7742362335099], [-79.9383080029656, 32.7742092568194], [-79.9382565642477, 32.7741582165574], [-79.938418638672, 32.7741415828889], [-79.9384073638516, 32.774065378343], [-79.9384723791355, 32.7740033200771], [-79.9385118841809, 32.7739655261188], [-79.9385843143841, 32.7738956284623], [-79.9386649697307, 32.7738184197128], [-79.938469458186, 32.7738421495667], [-79.9383765912988, 32.7738533696079], [-79.9382177384082, 32.7738726915893], [-79.9381913877401, 32.7738990904255], [-79.93814608785, 32.7739452562099]]], "type": "Polygon"}, "id": "376", "properties": {"OBJECTID": 3444, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1522.2109375, "Shape__Length": 192.773076337343, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9390139501008, 32.7737984567005, -79.9362823368993, 32.775884009452], "geometry": {"coordinates": [[[-79.93814608785, 32.7739452562099], [-79.9380983311718, 32.7739926875688], [-79.9379986799474, 32.7740935277406], [-79.9379187963289, 32.7741741823572], [-79.9378380919355, 32.7742554286149], [-79.937746682233, 32.7743474065785], [-79.937660215113, 32.7744342734161], [-79.9375770409008, 32.7745178184791], [-79.9374930374932, 32.7746027333868], [-79.9374189133062, 32.774677937426], [-79.9373447973328, 32.7747524560991], [-79.9372402161687, 32.7748572055911], [-79.9371224444382, 32.7749763581204], [-79.9370055004137, 32.7750942245025], [-79.9369033846214, 32.7751968487746], [-79.9368177396496, 32.7752828618341], [-79.9367246749523, 32.7753769710455], [-79.9366085505037, 32.7754943328462], [-79.9365031364375, 32.7756004461821], [-79.9363392517375, 32.7757654125017], [-79.9362824310555, 32.775822299464], [-79.9362823996774, 32.775824874831], [-79.9362823682664, 32.7758274529032], [-79.9362823368993, 32.7758300273685], [-79.9362831198787, 32.7758325277498], [-79.9362830885007, 32.7758351031168], [-79.936283871513, 32.7758376007928], [-79.936283840102, 32.7758401788651], [-79.9362846231254, 32.7758426756394], [-79.9362854061379, 32.7758451733155], [-79.9362869888846, 32.7758487962206], [-79.9362885716645, 32.7758524164206], [-79.9362893557209, 32.7758548284314], [-79.9362909541789, 32.7758571618496], [-79.9362925390355, 32.7758606116207], [-79.9362949393597, 32.7758638953304], [-79.9362973396399, 32.775867182647], [-79.9363005553988, 32.7758703030004], [-79.9363037606767, 32.7758742836129], [-79.9363077814427, 32.7758780088823], [-79.9363110045557, 32.7758807009279], [-79.936313423666, 32.7758823551853], [-79.9363158438439, 32.775884009452], [-79.936477911397, 32.7758683233836], [-79.9365292178073, 32.7758633566151], [-79.9367588807681, 32.7758411305982], [-79.9371530509574, 32.7758030661404], [-79.9373317387427, 32.7756248278795], [-79.9373992618249, 32.7755573845417], [-79.9374997110105, 32.7754580109204], [-79.9376051132581, 32.7753527542814], [-79.9376891005568, 32.7752692135403], [-79.9377640362914, 32.7751941868239], [-79.9378447217429, 32.7751145745582], [-79.9379229472401, 32.7750365650873], [-79.9380044645842, 32.774955411493], [-79.9380843394058, 32.7748755323093], [-79.9381378589764, 32.7748224802369], [-79.9381897350361, 32.7747707034994], [-79.938243253411, 32.7747176513722], [-79.9382976006683, 32.7746632356282], [-79.938355235813, 32.7746061807696], [-79.9384746268225, 32.7744874713038], [-79.9385676751242, 32.7743944762217], [-79.9386483737862, 32.7743137434821], [-79.9387825826578, 32.774180475919], [-79.9388566906494, 32.7741064721743], [-79.9389307911946, 32.7740330707472], [-79.9390139501008, 32.7739505518399], [-79.9388834625387, 32.7738446223528], [-79.9388851341077, 32.7738409429396], [-79.9388295231127, 32.7737984567005], [-79.9386902229324, 32.7738153732712], [-79.9386649697307, 32.7738184197128], [-79.9385843143841, 32.7738956284623], [-79.9385118841809, 32.7739655261188], [-79.9384723791355, 32.7740033200771], [-79.9384073638516, 32.774065378343], [-79.938418638672, 32.7741415828889], [-79.9382565642477, 32.7741582165574], [-79.9383080029656, 32.7742092568194], [-79.9382588691919, 32.7742362335099], [-79.9381808085385, 32.7741670066252], [-79.938168790536, 32.7740849553251], [-79.9381583361998, 32.7740750706572], [-79.9381531348341, 32.7740346539915], [-79.9381589911558, 32.774021218796], [-79.93814608785, 32.7739452562099]]], "type": "Polygon"}, "id": "377", "properties": {"OBJECTID": 3445, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 23829.646484375, "Shape__Length": 925.495588710253, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9391549151133, 32.7727465789029, -79.9384321313428, 32.7737258171821], "geometry": {"coordinates": [[[-79.9389302592424, 32.7727465789029], [-79.9387946215148, 32.7729976020087], [-79.9386414802309, 32.7730155176116], [-79.9384818218668, 32.7730344045604], [-79.9384321313428, 32.7730402428965], [-79.9384471395731, 32.7731438820642], [-79.9384591597799, 32.7732257628997], [-79.9386155599515, 32.7732073644576], [-79.9386305673978, 32.7733110883681], [-79.9386335220831, 32.7733356835762], [-79.9386455759102, 32.7734147275146], [-79.9386905995676, 32.7737258171821], [-79.9388193053356, 32.7737106141786], [-79.9389805936365, 32.7736916561429], [-79.9391549151133, 32.7736711777012], [-79.9391399070261, 32.7735674502438], [-79.939124898957, 32.7734638120673], [-79.9391098909411, 32.7733600846087], [-79.9390940685421, 32.7732564393677], [-79.9390790594872, 32.7731527155054], [-79.9390520319232, 32.7729671929539], [-79.9390273159774, 32.7727920011185], [-79.9389302592424, 32.7727465789029]]], "type": "Polygon"}, "id": "378", "properties": {"OBJECTID": 3446, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5893.9765625, "Shape__Length": 370.538960476585, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9389302592424, 32.7723388110875, -79.9380181601231, 32.7737564631032], "geometry": {"coordinates": [[[-79.9382007865006, 32.7736696858389], [-79.9383775523063, 32.7736488861218], [-79.9384150232594, 32.7736444875039], [-79.9384307436347, 32.7737564631032], [-79.9385293100293, 32.7737447784332], [-79.9386905995676, 32.7737258171821], [-79.9386455759102, 32.7734147275146], [-79.9386335220831, 32.7733356835762], [-79.9386305673978, 32.7733110883681], [-79.9386155599515, 32.7732073644576], [-79.9384591597799, 32.7732257628997], [-79.9384471395731, 32.7731438820642], [-79.9384321313428, 32.7730402428965], [-79.9384818218668, 32.7730344045604], [-79.9386414802309, 32.7730155176116], [-79.9387946215148, 32.7729976020087], [-79.9389302592424, 32.7727465789029], [-79.9388162177164, 32.7726931037877], [-79.9387021752779, 32.7726397151335], [-79.9384740907715, 32.772532853636], [-79.9383568121887, 32.7724780594732], [-79.9382395347291, 32.7724231849436], [-79.9380664493371, 32.7723422227568], [-79.9380632106091, 32.7723409086249], [-79.9380599698555, 32.7723398487926], [-79.9380567249267, 32.7723392200007], [-79.9380534747593, 32.7723388463823], [-79.9380494092007, 32.7723388110875], [-79.9380461527412, 32.772339042545], [-79.9380428900263, 32.7723397005157], [-79.9380396273622, 32.7723405298352], [-79.9380363583405, 32.7723417063057], [-79.9380330841563, 32.7723433949729], [-79.9380298068493, 32.7723454281137], [-79.9380265190277, 32.7723481501644], [-79.938024050849, 32.7723503598744], [-79.9380223939149, 32.7723528354537], [-79.9380207380405, 32.7723553994219], [-79.9380198912838, 32.7723581408612], [-79.9380190445268, 32.7723608823005], [-79.9380181956716, 32.772363708494], [-79.9380181601231, 32.77236663103], [-79.9380189400534, 32.7723694713641], [-79.9380480960071, 32.7725804371394], [-79.9380810325377, 32.7728150574747], [-79.9381019818136, 32.7729653063548], [-79.9381177016103, 32.7730772864947], [-79.9381318940314, 32.773181004297], [-79.938146901933, 32.7732847309811], [-79.9381588529244, 32.773372193603], [-79.9381820774116, 32.7735359482559], [-79.9382007865006, 32.7736696858389]]], "type": "Polygon"}, "id": "379", "properties": {"OBJECTID": 3447, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10169.806640625, "Shape__Length": 548.278678840669, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9384307436347, 32.7736444875039, -79.9382007865006, 32.7737816553081], "geometry": {"coordinates": [[[-79.9382007865006, 32.7736696858389], [-79.938215693256, 32.7737816553081], [-79.9384307436347, 32.7737564631032], [-79.9384150232594, 32.7736444875039], [-79.9383775523063, 32.7736488861218], [-79.9382007865006, 32.7736696858389]]], "type": "Polygon"}, "id": "380", "properties": {"OBJECTID": 3448, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 359.919921875, "Shape__Length": 78.0961301360787, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9404569919735, 32.7728909729006, -79.9392107174664, 32.7736197880245], "geometry": {"coordinates": [[[-79.9392477702281, 32.7728909729006], [-79.9392445148623, 32.7728912007923], [-79.9392412541955, 32.7728916892681], [-79.9392379914956, 32.7728924329451], [-79.9392347266811, 32.7728933506577], [-79.9392314545919, 32.7728948671251], [-79.9392281804365, 32.7728966414989], [-79.9392249010019, 32.7728986746534], [-79.9392224369949, 32.7729006301064], [-79.9392191534169, 32.7729031799757], [-79.939216677934, 32.7729059920717], [-79.9392150147344, 32.7729089852655], [-79.9392133557528, 32.7729116312897], [-79.9392125027502, 32.772914889434], [-79.9392116487067, 32.7729182332435], [-79.939210800952, 32.7729210594547], [-79.9392107592092, 32.7729244950807], [-79.9392107174664, 32.7729279307068], [-79.9392561133087, 32.7732085314471], [-79.939278829109, 32.7733473691932], [-79.9393218845195, 32.7736197880245], [-79.9394831705111, 32.7736010845278], [-79.9396444553333, 32.7735823835144], [-79.9399214091415, 32.7735502508755], [-79.9399539926576, 32.773546498434], [-79.940156820039, 32.7735229991474], [-79.9404248142593, 32.7734919069214], [-79.9404280748754, 32.7734912479669], [-79.9404313397274, 32.7734904158969], [-79.9404346055417, 32.773489328616], [-79.9404378797721, 32.7734877237552], [-79.9404411529351, 32.773486118885], [-79.9404444312574, 32.7734840009159], [-79.9404468973496, 32.7734819606838], [-79.940449368612, 32.773479406451], [-79.9404510307405, 32.7734764989055], [-79.9404535061771, 32.7734735127302], [-79.940455172442, 32.7734702643271], [-79.9404560202005, 32.7734675228799], [-79.9404568668806, 32.7734647823251], [-79.9404569085855, 32.7734613457967], [-79.9404569513082, 32.7734578254065], [-79.9404569919735, 32.7734544745433], [-79.9404562130216, 32.7734516342337], [-79.9404554319737, 32.7734488786783], [-79.9404538376289, 32.7734462008507], [-79.9404522495496, 32.7734430947064], [-79.9404498439267, 32.7734402403069], [-79.9404474372752, 32.773437470671], [-79.9404442120515, 32.7734350375436], [-79.9404409858219, 32.7734328632338], [-79.9404377543717, 32.7734309431957], [-79.9402169179693, 32.7733298148815], [-79.9401077152484, 32.7732796493447], [-79.9399507866685, 32.7732075081855], [-79.9398359180671, 32.7731550576579], [-79.9396644281974, 32.7730764347037], [-79.9393780737189, 32.772945102656], [-79.939268058648, 32.7728948400384], [-79.9392648230788, 32.7728934384881], [-79.939261580182, 32.7728924643435], [-79.9392583362492, 32.772891663342], [-79.9392550891987, 32.7728912068141], [-79.9392518368802, 32.7728910081648], [-79.9392477702281, 32.7728909729006]]], "type": "Polygon"}, "id": "381", "properties": {"OBJECTID": 3449, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6866.69140625, "Shape__Length": 384.83782299515, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9394356253813, 32.7720435850802, -79.9388452354129, 32.7726919924288], "geometry": {"coordinates": [[[-79.9388452354129, 32.772578176868], [-79.9390862825396, 32.7726892768863], [-79.9390895222996, 32.7726904205532], [-79.9390927662344, 32.7726912206574], [-79.9390960132701, 32.7726917655694], [-79.9390992645134, 32.7726919642135], [-79.9391025178277, 32.7726919924288], [-79.9391057753056, 32.7726916779832], [-79.9391090369692, 32.7726910190732], [-79.9391123007037, 32.7726901897343], [-79.9391155697239, 32.7726890132351], [-79.9391188428328, 32.7726873245295], [-79.9391221212056, 32.772685290467], [-79.9391254068755, 32.7726826558462], [-79.9391270616918, 32.7726803524841], [-79.9391287175708, 32.7726779616532], [-79.9392771385412, 32.7724458604044], [-79.9394322031184, 32.7722025589952], [-79.9394338620799, 32.7721999129682], [-79.9394347077344, 32.7721971706081], [-79.9394347421838, 32.7721943346387], [-79.9394355909649, 32.772191422761], [-79.9394356253813, 32.7721885894968], [-79.9394348464849, 32.7721857482794], [-79.9394340686888, 32.7721829043659], [-79.9394324743545, 32.7721802301324], [-79.9394316923475, 32.7721776450088], [-79.9394292826303, 32.7721751332506], [-79.9394276831262, 32.7721728846379], [-79.939424459045, 32.7721704514932], [-79.9394212338904, 32.7721681067187], [-79.9394179972954, 32.7721666158819], [-79.939147813463, 32.7720435850802], [-79.9389770259604, 32.7723089952934], [-79.9390077632371, 32.7723231762979], [-79.9388452354129, 32.772578176868]]], "type": "Polygon"}, "id": "382", "properties": {"OBJECTID": 3450, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2818.638671875, "Shape__Length": 229.461496924136, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.939147813463, 32.7717193597976, -79.938093109373, 32.772578176868], "geometry": {"coordinates": [[[-79.939147813463, 32.7720435850802], [-79.9390022086812, 32.7719770375712], [-79.9387101853997, 32.771844022447], [-79.9385637668969, 32.7717774673519], [-79.9384432359397, 32.7717226495557], [-79.9384400004343, 32.771721159604], [-79.9384367575831, 32.7717202738174], [-79.9384335116292, 32.7717196432228], [-79.9384302614542, 32.7717193597976], [-79.9384261938263, 32.7717194092695], [-79.9384221220212, 32.7717198023039], [-79.9384188593213, 32.7717204611863], [-79.9384155945311, 32.7717213797787], [-79.9384123235389, 32.7717228962331], [-79.9384090483435, 32.7717246705756], [-79.9384057720734, 32.7717265332883], [-79.9384033028731, 32.7717289170507], [-79.9384016480338, 32.7717312222063], [-79.9383991788222, 32.7717336068703], [-79.938243321917, 32.7719750053444], [-79.9380957530597, 32.7722038508067], [-79.9380949062813, 32.772206506572], [-79.9380940584718, 32.7722092471008], [-79.9380932127641, 32.7722119903534], [-79.9380931783041, 32.7722148236171], [-79.9380931427692, 32.7722177452514], [-79.938093109373, 32.7722204910464], [-79.9380947025592, 32.7722232563731], [-79.9380954845964, 32.7722259235727], [-79.9380970798885, 32.7722285157654], [-79.9380986762192, 32.7722309348149], [-79.9381010901146, 32.7722331878095], [-79.9381034966221, 32.7722358727185], [-79.9381067248474, 32.7722379623355], [-79.9381099614666, 32.7722394496002], [-79.938224011329, 32.7722920678081], [-79.9383429204983, 32.7723466129162], [-79.9384682956447, 32.772404480463], [-79.938596909665, 32.7724636647047], [-79.9387255206397, 32.7725229380652], [-79.9388452354129, 32.772578176868], [-79.9390077632371, 32.7723231762979], [-79.9389770259604, 32.7723089952934], [-79.939147813463, 32.7720435850802]]], "type": "Polygon"}, "id": "383", "properties": {"OBJECTID": 3451, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7394.818359375, "Shape__Length": 346.667302388228, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9387329873281, 32.770527492595, -79.9375088476541, 32.7715046008284], "geometry": {"coordinates": [[[-79.9378918248047, 32.7705278776388], [-79.9378885632018, 32.770528537418], [-79.9378852995728, 32.7705294514966], [-79.9378820274905, 32.7705308849582], [-79.9378787575648, 32.7705323166348], [-79.937875472977, 32.7705347780783], [-79.9378721904766, 32.7705371556694], [-79.9378705356458, 32.7705394608175], [-79.9378688797981, 32.7705419373052], [-79.9376756773577, 32.7708444292461], [-79.9375114914269, 32.7711019071835], [-79.9375098323841, 32.7711045567911], [-79.9375089856234, 32.7711072982266], [-79.9375089511338, 32.7711101323915], [-79.9375089166552, 32.7711129656548], [-79.9375088821766, 32.7711157989181], [-79.9375088476541, 32.7711186357883], [-79.9375096275209, 32.7711213913525], [-79.9375112217769, 32.7711240656107], [-79.937512818063, 32.7711265730473], [-79.9375144143573, 32.7711289921041], [-79.9375168282072, 32.77113124511], [-79.9375192357446, 32.7711339291377], [-79.9375224638794, 32.7711359339971], [-79.9375257004368, 32.7711374221788], [-79.9376656419128, 32.7712012573574], [-79.9378371304462, 32.7712795422401], [-79.9380094347346, 32.7713577464847], [-79.9381809239166, 32.7714360281815], [-79.9383257222119, 32.7715019699579], [-79.9383289618812, 32.7715030288721], [-79.9383322047232, 32.7715039146616], [-79.9383354538519, 32.7715043712326], [-79.9383387039491, 32.7715045725928], [-79.9383419572189, 32.7715046008284], [-79.9383452156969, 32.7715042007378], [-79.9383484762912, 32.7715036266116], [-79.938351741052, 32.7715027098245], [-79.9383550089268, 32.7715015369434], [-79.938358284126, 32.7714997617007], [-79.9383615635611, 32.7714977258647], [-79.9383640316558, 32.7714953447992], [-79.9383664987783, 32.7714931314663], [-79.9383681546446, 32.7714907415478], [-79.9385339559931, 32.7712340511584], [-79.9387295994043, 32.7709313202188], [-79.9387304450947, 32.7709286635384], [-79.9387321051274, 32.7709259291509], [-79.9387321395663, 32.7709230958873], [-79.9387329873281, 32.7709202687783], [-79.9387322084987, 32.7709174248515], [-79.9387322429375, 32.770914591588], [-79.938731463034, 32.7709118360316], [-79.9387306831307, 32.7709090804752], [-79.9387290878109, 32.7709064909964], [-79.9387274904526, 32.770904069241], [-79.9387250776451, 32.7709018162684], [-79.9387226627661, 32.7708997337243], [-79.9387194356167, 32.7708975584586], [-79.9387162053546, 32.7708956392867], [-79.9383918238771, 32.7707482577921], [-79.9382114333809, 32.7706662863744], [-79.9380536904295, 32.7705947381042], [-79.9379129394851, 32.770530724991], [-79.9379096998283, 32.7705294929136], [-79.9379064570268, 32.770528607113], [-79.9379032132195, 32.7705278917502], [-79.9378999620562, 32.7705276055964], [-79.9378967109214, 32.770527492595], [-79.9378918248047, 32.7705278776388]]], "type": "Polygon"}, "id": "384", "properties": {"OBJECTID": 3452, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9895.107421875, "Shape__Length": 393.475923829851, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9399010965547, 32.7709906617309, -79.9385078717828, 32.772039451476], "geometry": {"coordinates": [[[-79.9388931828104, 32.7709908075457], [-79.938889924354, 32.7709912076508], [-79.9388866627523, 32.7709918665549], [-79.9388833990725, 32.7709927842672], [-79.938880125992, 32.7709942998138], [-79.9388768539349, 32.7709958189765], [-79.9388735714815, 32.7709982813673], [-79.9388711054227, 32.7710003215672], [-79.9388686372859, 32.7710026205753], [-79.9388669814315, 32.7710050114021], [-79.9386738232024, 32.7713041558859], [-79.9385113265542, 32.7715565797062], [-79.9385096686004, 32.7715592293367], [-79.9385088229411, 32.7715618824088], [-79.9385079751329, 32.7715647122217], [-79.9385079406865, 32.7715675454854], [-79.9385079051658, 32.7715704671195], [-79.9385078717828, 32.7715732129145], [-79.9385086506107, 32.7715760568429], [-79.9385102437944, 32.771578734686], [-79.9385118391309, 32.7715813232661], [-79.9385134375959, 32.7715837423285], [-79.9385150360242, 32.7715860766182], [-79.938518256956, 32.7715887649789], [-79.9385214851235, 32.7715908581918], [-79.9385247164815, 32.7715926889986], [-79.9386678959766, 32.7716579264163], [-79.9388393863057, 32.7717362098978], [-79.9389542577174, 32.7717883150944], [-79.9390828763486, 32.771846983919], [-79.9392260566779, 32.7719122206852], [-79.9393554890181, 32.7719708944734], [-79.9394986666216, 32.7720363888188], [-79.9395019073863, 32.7720375360909], [-79.93950515026, 32.7720384218494], [-79.9395083951772, 32.7720390515046], [-79.9395116463911, 32.7720393385174], [-79.9395148975842, 32.772039451476], [-79.9395181539959, 32.7720392226846], [-79.9395214146074, 32.772038736005], [-79.939524677268, 32.7720379048425], [-79.9395279441175, 32.7720368166936], [-79.9395312183211, 32.7720352109556], [-79.9395344934676, 32.7720333518102], [-79.9395377801788, 32.7720307162861], [-79.9395402514596, 32.7720281593668], [-79.9395419072821, 32.7720257712358], [-79.9397044299357, 32.7717708554116], [-79.9398984543404, 32.7714673329985], [-79.9398992989002, 32.7714646790059], [-79.9399001466567, 32.7714619375631], [-79.9399009933404, 32.7714591086331], [-79.9399010277525, 32.7714562744673], [-79.9399010621536, 32.7714534412033], [-79.9399010965547, 32.7714506079392], [-79.9399003177207, 32.7714478487924], [-79.9398987244258, 32.7714450889], [-79.9398971269979, 32.7714425814853], [-79.9398955305937, 32.7714400776867], [-79.9398939310582, 32.7714378317855], [-79.9398907069911, 32.7714353986533], [-79.9398874787856, 32.7714333063783], [-79.9398842474049, 32.7714314756076], [-79.93965449733, 32.7713280369612], [-79.9394530573041, 32.77123764216], [-79.9392233061794, 32.7711343731346], [-79.939050991865, 32.7710569424903], [-79.9389094219454, 32.7709932679305], [-79.9389061801861, 32.770992206308], [-79.9389029363272, 32.7709914052972], [-79.9388996882819, 32.7709909487507], [-79.9388964381763, 32.7709906617309], [-79.9388931828104, 32.7709908075457]]], "type": "Polygon"}, "id": "385", "properties": {"OBJECTID": 3453, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11782.6015625, "Shape__Length": 435.401104905701, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.938255521366, 32.7712672058641, -79.9370951179329, 32.7721532708216], "geometry": {"coordinates": [[[-79.9374224431207, 32.7712673507288], [-79.9374191867462, 32.7712676660405], [-79.9374159240804, 32.7712684105706], [-79.9374126582512, 32.7712693273234], [-79.9374093861912, 32.7712708437417], [-79.9374061099058, 32.7712727073294], [-79.9374028305365, 32.7712748243055], [-79.9374003655276, 32.7712769501595], [-79.937398711702, 32.771279170538], [-79.937396240377, 32.7712816399358], [-79.9372420029186, 32.7715235679579], [-79.9370985416528, 32.7717488396704], [-79.9370968825962, 32.7717514883708], [-79.9370960358162, 32.7717542298035], [-79.9370960013129, 32.7717570639686], [-79.937095153501, 32.7717598901648], [-79.9370951179329, 32.7717628117986], [-79.9370958967604, 32.7717656521291], [-79.9370966766089, 32.7717684085979], [-79.9370982708311, 32.7717710855669], [-79.9370990527655, 32.7717736707053], [-79.9371014624154, 32.7717761816076], [-79.9371030618743, 32.7717784284471], [-79.9371062827478, 32.7717811186485], [-79.9371095109215, 32.7717832091935], [-79.9371127464395, 32.7717846964751], [-79.9373254776569, 32.7718828407912], [-79.9374468099786, 32.7719386974513], [-79.9375649027055, 32.7719933255117], [-79.9376878525621, 32.7720498822756], [-79.9378108014918, 32.7721065281884], [-79.9379078673684, 32.7721511812132], [-79.9379111102554, 32.7721521526883], [-79.9379143561963, 32.7721526976224], [-79.9379176042797, 32.7721531541952], [-79.9379208575658, 32.7721532708216], [-79.9379249262639, 32.7721530473216], [-79.9379281869105, 32.772152558881], [-79.937931450625, 32.7721517304755], [-79.9379347174986, 32.7721506423691], [-79.9379379875423, 32.77214929366], [-79.9379412648473, 32.7721473479997], [-79.9379445494652, 32.7721447134015], [-79.9379470218304, 32.7721421592288], [-79.9379486777754, 32.7721397648072], [-79.9380954168667, 32.7719123750932], [-79.9382520988547, 32.7716699531718], [-79.9382537578857, 32.771667303554], [-79.9382546025194, 32.7716646477692], [-79.9382554513712, 32.7716618206725], [-79.9382554858697, 32.771658983802], [-79.938255521366, 32.7716560648731], [-79.9382547403927, 32.7716533102059], [-79.9382539626068, 32.7716504689904], [-79.9382531806028, 32.7716477990866], [-79.938251586351, 32.7716452096106], [-79.9382499889595, 32.771642790554], [-79.9382475772186, 32.7716404492014], [-79.9382451665086, 32.7716380230852], [-79.9382419383021, 32.7716359334719], [-79.9382387069923, 32.7716340990507], [-79.9381246474485, 32.7715822590517], [-79.9379830867822, 32.7715177204428], [-79.9378415262671, 32.7714530987012], [-79.9376983466939, 32.7713879450812], [-79.9374386832944, 32.7712696390675], [-79.9374354426129, 32.7712686648932], [-79.9374321976789, 32.7712678647359], [-79.937428949642, 32.7712674072485], [-79.9374256995558, 32.7712672058641], [-79.9374224431207, 32.7712673507288]]], "type": "Polygon"}, "id": "386", "properties": {"OBJECTID": 3454, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8362.599609375, "Shape__Length": 364.9477917955, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.936324268014, 32.7718237386324, -79.9355919149642, 32.7722160107413], "geometry": {"coordinates": [[[-79.936324268014, 32.7721022126931], [-79.936286176904, 32.7718237386324], [-79.9361403874414, 32.7718393080231], [-79.9360051857859, 32.7718537635831], [-79.9358691686097, 32.7718683011814], [-79.9356191263157, 32.7718950737155], [-79.9356158656999, 32.7718956468673], [-79.9356125998173, 32.7718965644739], [-79.9356093308475, 32.7718979104248], [-79.9356060555886, 32.7718996846923], [-79.9356027760961, 32.771901718651], [-79.9355994945717, 32.7719040943873], [-79.9355978406884, 32.7719063147416], [-79.935596183683, 32.7719087911896], [-79.9355945245767, 32.7719113523917], [-79.9355936787924, 32.7719140081489], [-79.9355928319526, 32.7719167504731], [-79.9355919840905, 32.7719195766589], [-79.9355919495493, 32.7719224099219], [-79.9355919149642, 32.7719252467918], [-79.9356306685599, 32.7722160107413], [-79.9358888177936, 32.7721915416398], [-79.935883638504, 32.7721493213992], [-79.9359072584092, 32.7721467753733], [-79.9360432749126, 32.7721322404282], [-79.9361784770259, 32.7721177821204], [-79.936324268014, 32.7721022126931]]], "type": "Polygon"}, "id": "387", "properties": {"OBJECTID": 3455, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3061.74609375, "Shape__Length": 240.198119140973, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9368417795518, 32.7717704614698, -79.9363542582996, 32.7721388172585], "geometry": {"coordinates": [[[-79.9368417795518, 32.7719536397098], [-79.9368185004715, 32.7717946090406], [-79.9368185350057, 32.7717917730721], [-79.9368169418458, 32.7717890095325], [-79.9368161598516, 32.7717863423248], [-79.9368145646407, 32.7717838348882], [-79.9368129662433, 32.771781501478], [-79.9368105534609, 32.7717792484674], [-79.9368073273918, 32.7717769856824], [-79.9368040981384, 32.7717749844016], [-79.9368008647454, 32.7717733230762], [-79.936797623993, 32.7717721784378], [-79.936794382246, 32.7717712908134], [-79.936791136302, 32.7717706601752], [-79.9367878850983, 32.7717704614698], [-79.9367830031041, 32.7717705894831], [-79.9365085272013, 32.7717999020494], [-79.9363814692945, 32.7718135729855], [-79.9363782086867, 32.7718141461576], [-79.9363749439155, 32.7718150610886], [-79.9363716759804, 32.7718162357202], [-79.9363684017616, 32.7718179261463], [-79.9363651233793, 32.7718199583314], [-79.9363618376475, 32.7718225937796], [-79.9363601838419, 32.7718248971133], [-79.9363577135156, 32.7718272808252], [-79.9363568677206, 32.7718298518149], [-79.9363552097402, 32.7718324978094], [-79.9363543618596, 32.7718353276074], [-79.9363543273432, 32.7718381608706], [-79.9363542928269, 32.7718409941338], [-79.9363542582996, 32.7718438282986], [-79.9363945886763, 32.7721388172585], [-79.9365525930935, 32.7721222381849], [-79.9365339192715, 32.7719857518635], [-79.9368417795518, 32.7719536397098]]], "type": "Polygon"}, "id": "388", "properties": {"OBJECTID": 3456, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1609.861328125, "Shape__Length": 187.268227231448, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9380136750546, 32.7718789733256, -79.9369704788793, 32.7735649435452], "geometry": {"coordinates": [[[-79.937535276401, 32.7734904296094], [-79.9375351674115, 32.7734905260609], [-79.9375392074579, 32.7735649435452], [-79.9376843074721, 32.7735482608253], [-79.9376845632837, 32.7735481169497], [-79.937684590866, 32.7735483065744], [-79.9380136750546, 32.7735103614014], [-79.9380039970446, 32.773436661549], [-79.9379934890328, 32.7733643261803], [-79.9379740651871, 32.7732225091408], [-79.9379702962723, 32.773197996128], [-79.9379530554543, 32.7730772432444], [-79.9379418836117, 32.7729927057035], [-79.937929118528, 32.772905320766], [-79.9379179467053, 32.7728206975501], [-79.9379044676165, 32.7727251448121], [-79.9378902410147, 32.7726241772832], [-79.9378618224872, 32.7724193999426], [-79.9378475949171, 32.7723184324029], [-79.9378370714853, 32.7722474739943], [-79.937649413841, 32.7721608023248], [-79.9374779310426, 32.7720819175151], [-79.9373630674818, 32.7720292942433], [-79.937191584133, 32.771950409024], [-79.9370435609303, 32.7718822915119], [-79.9370403233106, 32.7718808889826], [-79.9370370815326, 32.7718799156902], [-79.9370338366063, 32.7718792886746], [-79.9370305854065, 32.771879001596], [-79.9370273321232, 32.7718789733256], [-79.9370232613362, 32.7718792815499], [-79.9370200007631, 32.7718798520339], [-79.9370167359632, 32.7718807696873], [-79.9370134659484, 32.7718821156665], [-79.9370101917505, 32.771883805208], [-79.937006914448, 32.7718858374195], [-79.9370036266228, 32.7718885585409], [-79.9370011584226, 32.7718908566098], [-79.9369995025003, 32.7718932474116], [-79.9369704788793, 32.7719387795117], [-79.9369989662809, 32.7721377155842], [-79.9370086631811, 32.7722097824565], [-79.9370533405886, 32.7722147222499], [-79.9372005573548, 32.7722824891422], [-79.9373154232333, 32.7723348537596], [-79.9373744729413, 32.7723619979002], [-79.9373886988929, 32.7724629663879], [-79.9373902084658, 32.772472600269], [-79.9374044354525, 32.7725734866979], [-79.9374194748015, 32.7726744622495], [-79.9374321567586, 32.7727686328235], [-79.9374464487002, 32.7728641899736], [-79.9374584344448, 32.7729487346325], [-79.9374703857211, 32.7730361134566], [-79.9374823715235, 32.7731206572131], [-79.9374891437965, 32.7731657274888], [-79.9375033794054, 32.7732659240836], [-79.9375063557271, 32.773288627461], [-79.9375205840483, 32.7733895138947], [-79.9375251149665, 32.7734182424023], [-79.9375348103363, 32.773490482377], [-79.937535276401, 32.7734904296094]]], "type": "Polygon"}, "id": "389", "properties": {"OBJECTID": 3457, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11657.580078125, "Shape__Length": 577.16552698462, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9371220109823, 32.7719536397098, -79.9363945886763, 32.7739783173332], "geometry": {"coordinates": [[[-79.9363945886763, 32.7721388172585], [-79.9364109866068, 32.7722617103083], [-79.9364371615681, 32.7724500596298], [-79.936455085829, 32.772581212321], [-79.9364827213047, 32.7727832308137], [-79.9365237675885, 32.7730863839722], [-79.9365416920533, 32.7732174536906], [-79.9365664062474, 32.7733922149866], [-79.9365716340263, 32.773430487391], [-79.9366029705595, 32.7736626043038], [-79.9366246115814, 32.7738226516032], [-79.9366463039129, 32.7739783173332], [-79.9367798936263, 32.7739629857712], [-79.9368866012, 32.7739507716569], [-79.9370022701519, 32.7739374304723], [-79.9371220109823, 32.7739236961872], [-79.9371002498269, 32.7737735275342], [-79.9370815424015, 32.7736397897813], [-79.9370680641261, 32.773544322617], [-79.9370537714199, 32.7734487654063], [-79.9370380518341, 32.7733368743972], [-79.9370118083946, 32.7731540212847], [-79.9369953362539, 32.7730371401968], [-79.9369721475898, 32.7728706368274], [-79.9369526596364, 32.7727342300669], [-79.9369233964242, 32.7725321984465], [-79.9369039421221, 32.772393040478], [-79.9368784790488, 32.7722129474331], [-79.9368417795518, 32.7719536397098], [-79.9365339192715, 32.7719857518635], [-79.9365525930935, 32.7721222381849], [-79.9363945886763, 32.7721388172585]]], "type": "Polygon"}, "id": "390", "properties": {"OBJECTID": 3458, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 13571.904296875, "Shape__Length": 631.722548140275, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9365819516585, 32.7721022126931, -79.9356306685599, 32.7740669664991], "geometry": {"coordinates": [[[-79.9361784770259, 32.7721177821204], [-79.9360432749126, 32.7721322404282], [-79.9359072584092, 32.7721467753733], [-79.935883638504, 32.7721493213992], [-79.9358888177936, 32.7721915416398], [-79.9356306685599, 32.7722160107413], [-79.935655959409, 32.7724100205801], [-79.9356805375478, 32.7725957787438], [-79.9356969345591, 32.7727186718955], [-79.9357133305272, 32.7728415668409], [-79.9357297286981, 32.7729644600009], [-79.9357461185163, 32.7730879546109], [-79.9357789014353, 32.7733346859319], [-79.9358116939481, 32.7735806453624], [-79.9358295169645, 32.7737199588893], [-79.9358503955822, 32.7738757051703], [-79.9358757209, 32.7740669664991], [-79.9361339404346, 32.7740372586832], [-79.9364206675223, 32.774004360395], [-79.9365819516585, 32.773985834749], [-79.9365169401352, 32.7735133341895], [-79.9364990228926, 32.7733814943596], [-79.9364945739485, 32.7733460640905], [-79.9364706073375, 32.7731767202856], [-79.9364370468593, 32.7729268900201], [-79.9364138927824, 32.7727576371452], [-79.9363989560953, 32.7726483285004], [-79.9363840184241, 32.7725391037168], [-79.9363690807463, 32.7724298825397], [-79.9363541431405, 32.7723207461348], [-79.9363392045031, 32.7722115222422], [-79.936324268014, 32.7721022126931], [-79.9361784770259, 32.7721177821204]]], "type": "Polygon"}, "id": "391", "properties": {"OBJECTID": 3459, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 19668.029296875, "Shape__Length": 660.92529673484, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9380571345876, 32.7722097824565, -79.9370086631811, 32.7739088383963], "geometry": {"coordinates": [[[-79.9370086631811, 32.7722097824565], [-79.9370349032122, 32.7723928916445], [-79.9370506382902, 32.7725034958608], [-79.9370648649225, 32.7726043796244], [-79.93707909159, 32.7727053508653], [-79.9371495709931, 32.7731966206525], [-79.9371667834863, 32.7733195233873], [-79.937181011453, 32.7734204071557], [-79.9371952373095, 32.7735213792847], [-79.9372094632293, 32.77362226123], [-79.9372507131332, 32.7739088383963], [-79.9373631244585, 32.7738958978429], [-79.9374698318686, 32.77388368322], [-79.9375830564435, 32.7738706638548], [-79.9377280492623, 32.7738539711288], [-79.9380571345876, 32.7738161133156], [-79.9380429076862, 32.7737151412836], [-79.9380286818379, 32.7736140853893], [-79.9380136750546, 32.7735103614014], [-79.937684590866, 32.7735483065744], [-79.9376845632837, 32.7735481169497], [-79.9376843074721, 32.7735482608253], [-79.9375392074579, 32.7735649435452], [-79.9375351674115, 32.7734905260609], [-79.937535276401, 32.7734904296094], [-79.9375348103363, 32.773490482377], [-79.9375251149665, 32.7734182424023], [-79.9375205840483, 32.7733895138947], [-79.9375063557271, 32.773288627461], [-79.9375033794054, 32.7732659240836], [-79.9374891437965, 32.7731657274888], [-79.9374823715235, 32.7731206572131], [-79.9374703857211, 32.7730361134566], [-79.9374584344448, 32.7729487346325], [-79.9374464487002, 32.7728641899736], [-79.9374321567586, 32.7727686328235], [-79.9374194748015, 32.7726744622495], [-79.9374044354525, 32.7725734866979], [-79.9373902084658, 32.772472600269], [-79.9373886988929, 32.7724629663879], [-79.9373744729413, 32.7723619979002], [-79.9373154232333, 32.7723348537596], [-79.9372005573548, 32.7722824891422], [-79.9370533405886, 32.7722147222499], [-79.9370086631811, 32.7722097824565]]], "type": "Polygon"}, "id": "392", "properties": {"OBJECTID": 3460, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10309.52734375, "Shape__Length": 617.402506531465, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9357472450763, 32.7722964471743, -79.935061557863, 32.7741339189125], "geometry": {"coordinates": [[[-79.9355103460743, 32.7722964471743], [-79.9351666286811, 32.77233399937], [-79.935061557863, 32.7723455399199], [-79.9350838885465, 32.7725153874223], [-79.9351025581138, 32.7726519587271], [-79.9351040622024, 32.7726620218643], [-79.9351256918255, 32.7728226708616], [-79.935148012274, 32.7729932902403], [-79.9351487878927, 32.7729963893827], [-79.9351681767125, 32.7731407858493], [-79.9353016676346, 32.7741339189125], [-79.9353700920286, 32.7741260101391], [-79.9354955382983, 32.7741113810719], [-79.935620984515, 32.7740967527779], [-79.9357472450763, 32.7740821332442], [-79.9356764778165, 32.7735482510589], [-79.9356466552933, 32.7733255946814], [-79.9356168873047, 32.7730983899223], [-79.9355967242418, 32.7729508953083], [-79.9355744018369, 32.7727801903285], [-79.9355520805866, 32.7726094853571], [-79.9355334103253, 32.7724729141215], [-79.9355103460743, 32.7722964471743]]], "type": "Polygon"}, "id": "393", "properties": {"OBJECTID": 3461, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11956.466796875, "Shape__Length": 576.610483106877, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9355103460743, 32.7718920776578, -79.9339018393707, 32.774240500795], "geometry": {"coordinates": [[[-79.9355103460743, 32.7722964471743], [-79.9354820348024, 32.7720833390261], [-79.9354567109224, 32.7718920776578], [-79.9352962552602, 32.771909663873], [-79.9348165186431, 32.7719620106925], [-79.9347261100183, 32.7719718749574], [-79.9344760586696, 32.7719992466058], [-79.9344084554783, 32.7720066461678], [-79.9342422987879, 32.7720247837669], [-79.9341909860936, 32.7720303510245], [-79.9339018393707, 32.7720619324171], [-79.9339254288942, 32.7721951973772], [-79.9339505842856, 32.7723333729421], [-79.9339543635519, 32.7723568553799], [-79.933994144839, 32.7725630187447], [-79.9340148042869, 32.7726696287871], [-79.9340346620371, 32.7727754580665], [-79.9340645090078, 32.7729290480714], [-79.9340683135076, 32.7729506431869], [-79.9340744216542, 32.7729832526414], [-79.9340965517343, 32.7731028483789], [-79.9341033935627, 32.7731420782804], [-79.9341475145222, 32.7733925153114], [-79.934155118322, 32.7734359634179], [-79.9342081999178, 32.7736853620361], [-79.9342405126623, 32.7738370011792], [-79.9342674624551, 32.7739615304356], [-79.934317482103, 32.7741952708382], [-79.9343182493157, 32.7741990571112], [-79.934319831951, 32.7742026800412], [-79.9343214146195, 32.7742063002658], [-79.9343229993684, 32.7742097500619], [-79.9343253984943, 32.7742131221801], [-79.9343277986771, 32.7742164077313], [-79.93433020203, 32.7742194335817], [-79.9343334197381, 32.7742223835576], [-79.9343358262283, 32.7742251524123], [-79.9343398625404, 32.7742276784424], [-79.9343430875905, 32.7742300269582], [-79.9343463210388, 32.7742316874473], [-79.9343495513613, 32.7742336040301], [-79.9343535971067, 32.7742353572696], [-79.9343576460002, 32.7742368526116], [-79.9343608878358, 32.7742378259753], [-79.9343641317737, 32.7742386271068], [-79.9343673767573, 32.774239342573], [-79.9343714382423, 32.7742398063254], [-79.9343754996834, 32.7742402736846], [-79.9343787509736, 32.7742404724541], [-79.934382004344, 32.774240500795], [-79.9343860742046, 32.7742403658016], [-79.9343893296554, 32.7742401362357], [-79.9344487948791, 32.7742331798262], [-79.9346557004224, 32.7742091263373], [-79.9348332794277, 32.7741885092524], [-79.9349961961608, 32.7741695706334], [-79.935153413162, 32.7741511837061], [-79.9353016676346, 32.7741339189125], [-79.9351681767125, 32.7731407858493], [-79.9351487878927, 32.7729963893827], [-79.935148012274, 32.7729932902403], [-79.9351256918255, 32.7728226708616], [-79.9351040622024, 32.7726620218643], [-79.9351025581138, 32.7726519587271], [-79.9350838885465, 32.7725153874223], [-79.935061557863, 32.7723455399199], [-79.9351666286811, 32.77233399937], [-79.9355103460743, 32.7722964471743]]], "type": "Polygon"}, "id": "394", "properties": {"OBJECTID": 3462, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 37081.037109375, "Shape__Length": 916.824976923667, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9356089599001, 32.774201426339, -79.9344989264266, 32.7756662841993], "geometry": {"coordinates": [[[-79.9356089599001, 32.7746828316207], [-79.9355870590678, 32.7744775972319], [-79.9355570744074, 32.774201426339], [-79.9351481543339, 32.7742488895867], [-79.934968128948, 32.7742699151034], [-79.9348076562315, 32.7742885322716], [-79.9346471823792, 32.774307236698], [-79.9345632790989, 32.7743169843693], [-79.9344989264266, 32.7743244997878], [-79.934534348593, 32.774621419949], [-79.9345372686378, 32.7746487628578], [-79.9345602141817, 32.7748348470796], [-79.9345749801467, 32.7749579877483], [-79.9345875073895, 32.7750646125571], [-79.9346111511809, 32.7752601540858], [-79.9346244247852, 32.7753722829787], [-79.9346273784558, 32.7753968746821], [-79.93464808549, 32.7755664520601], [-79.9346598823544, 32.7756662841993], [-79.9348251969198, 32.7756510578726], [-79.9349481655947, 32.775639758989], [-79.9349709667902, 32.7756376370834], [-79.9351159232163, 32.7756242126472], [-79.9351810723438, 32.7756182513763], [-79.9351700044716, 32.7755252949139], [-79.935169274923, 32.7755184165826], [-79.9351478027195, 32.7753447996369], [-79.9351456130391, 32.7753242503083], [-79.9351315662915, 32.7752087635303], [-79.9351364537486, 32.7752082036498], [-79.9351254194555, 32.7751125022942], [-79.9351128077499, 32.775012747889], [-79.9351193229298, 32.7750121174066], [-79.9351067950115, 32.7749054078801], [-79.9351001087117, 32.7748534662224], [-79.9352133118356, 32.7748423399958], [-79.9352001705727, 32.7747192171629], [-79.9356089599001, 32.7746828316207]]], "type": "Polygon"}, "id": "395", "properties": {"OBJECTID": 3463, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14530.626953125, "Shape__Length": 597.540695730933, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9357472140973, 32.7746828316207, -79.9346598823544, 32.7760491164729], "geometry": {"coordinates": [[[-79.9346598823544, 32.7756662841993], [-79.9346710168108, 32.7757537410032], [-79.9347064579232, 32.7760491164729], [-79.9348709609134, 32.77603388301], [-79.935016731383, 32.7760204648709], [-79.9351625018408, 32.7760070438529], [-79.9353082722428, 32.775993623563], [-79.935453229252, 32.7759801951195], [-79.9355989995315, 32.7759667771884], [-79.9357472140973, 32.775953118817], [-79.9357282330768, 32.7757752273081], [-79.9357076935002, 32.7755917371769], [-79.9356952663757, 32.7754767813095], [-79.9356755057184, 32.7752961342246], [-79.935660939152, 32.7751565053862], [-79.9356207064374, 32.7747868720734], [-79.9356089599001, 32.7746828316207], [-79.9352001705727, 32.7747192171629], [-79.9352133118356, 32.7748423399958], [-79.9351001087117, 32.7748534662224], [-79.9351067950115, 32.7749054078801], [-79.9351193229298, 32.7750121174066], [-79.9351128077499, 32.775012747889], [-79.9351254194555, 32.7751125022942], [-79.9351364537486, 32.7752082036498], [-79.9351315662915, 32.7752087635303], [-79.9351456130391, 32.7753242503083], [-79.9351478027195, 32.7753447996369], [-79.935169274923, 32.7755184165826], [-79.9351700044716, 32.7755252949139], [-79.9351810723438, 32.7756182513763], [-79.9351159232163, 32.7756242126472], [-79.9349709667902, 32.7756376370834], [-79.9349481655947, 32.775639758989], [-79.9348251969198, 32.7756510578726], [-79.9346598823544, 32.7756662841993]]], "type": "Polygon"}, "id": "396", "properties": {"OBJECTID": 3464, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12680.791015625, "Shape__Length": 572.467625224017, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9377141894996, 32.7739678909081, -79.9356801404301, 32.7759278185953], "geometry": {"coordinates": [[[-79.9374125547092, 32.7739697302341], [-79.9372849904419, 32.7739853772662], [-79.9371831597746, 32.7739978929267], [-79.9370520017352, 32.7740139332567], [-79.9368898885932, 32.7740337428426], [-79.9367676918598, 32.7740487442776], [-79.9366487526313, 32.7740633428307], [-79.9365550698486, 32.7740748132276], [-79.9364369459666, 32.7740892482169], [-79.9362886802805, 32.7741074594089], [-79.9361461163067, 32.7741249444308], [-79.9359994803479, 32.7741429097184], [-79.9358789141691, 32.7741575817539], [-79.9356801404301, 32.7741819659841], [-79.9356954636612, 32.7743261529489], [-79.9357093665498, 32.7744534903044], [-79.9357276490436, 32.7746220164763], [-79.9357423203718, 32.7747530526278], [-79.935754025199, 32.7748606161721], [-79.9357664575112, 32.7749750580252], [-79.9357789349237, 32.7750858902265], [-79.935788373564, 32.7751790885715], [-79.935798626632, 32.7752722074255], [-79.9358081741725, 32.7753563874694], [-79.9358154565689, 32.7754263727702], [-79.9358316009404, 32.7755700519296], [-79.9358446992336, 32.7756966959881], [-79.935870352657, 32.7759278185953], [-79.9360234597674, 32.7759130012059], [-79.9361453450013, 32.7757903656112], [-79.9362861704718, 32.7756487369225], [-79.9363808856454, 32.7755527539439], [-79.9365497138178, 32.7753826774692], [-79.9366147711183, 32.7753173594929], [-79.9366765372863, 32.7752551025609], [-79.9367728919236, 32.7751580152664], [-79.936892301519, 32.7750380196544], [-79.9369763101018, 32.7749527624942], [-79.9371484290383, 32.7747793653096], [-79.9372316059488, 32.7746955653342], [-79.9374004308174, 32.7745254867997], [-79.9374852485731, 32.7744404978644], [-79.9375725428021, 32.7743525218614], [-79.9377141894996, 32.7742098697308], [-79.93770617283, 32.7742040635453], [-79.9376174297418, 32.774139791999], [-79.9374311711603, 32.7740047721928], [-79.9374275528924, 32.7739678909081], [-79.9374125547092, 32.7739697302341]]], "type": "Polygon"}, "id": "397", "properties": {"OBJECTID": 3465, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 31364.384765625, "Shape__Length": 786.052927962936, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9323519357741, 32.7734513693849, -79.9319014354307, 32.7738594894718], "geometry": {"coordinates": [[[-79.9319014354307, 32.7735319347296], [-79.9319074230273, 32.7735743353714], [-79.9319111429722, 32.7736028009013], [-79.9319207412405, 32.7736826005964], [-79.9319429800237, 32.7738594894718], [-79.9323519357741, 32.7738092000799], [-79.9323297234919, 32.7736299901955], [-79.9323186368064, 32.7735389280575], [-79.9323178644482, 32.7735355700981], [-79.9323058783208, 32.7734513693849], [-79.9319014354307, 32.7735319347296]]], "type": "Polygon"}, "id": "398", "properties": {"OBJECTID": 3466, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2098.544921875, "Shape__Length": 183.544851369684, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9337722626734, 32.7715647264418, -79.9321863021924, 32.7738991196468], "geometry": {"coordinates": [[[-79.9337722626734, 32.7720705185046], [-79.9337425906291, 32.7719025835773], [-79.9337343049519, 32.7718483931659], [-79.9337313642403, 32.7718227707634], [-79.9337269878163, 32.7717815007412], [-79.9337233890348, 32.7717431594415], [-79.9337204641111, 32.7717162448478], [-79.9337135623859, 32.7716153397489], [-79.9337117403011, 32.7715647264418], [-79.9336115741998, 32.7715742496049], [-79.9334820940797, 32.7715865211164], [-79.933362384227, 32.771597931662], [-79.9331034195613, 32.7716225596576], [-79.9330553728988, 32.7716271241264], [-79.9328306104717, 32.7716485282001], [-79.932768720603, 32.7716543434758], [-79.932617250178, 32.771668827407], [-79.9324747388099, 32.7716823585407], [-79.9321863021924, 32.7717096827045], [-79.9323164793822, 32.7726277007916], [-79.9323718418327, 32.7730410358224], [-79.9323831358027, 32.7731818404562], [-79.9324777306435, 32.7738991196468], [-79.9327530309811, 32.7738694787405], [-79.9330478805954, 32.7738376945236], [-79.9331285166116, 32.7738289465892], [-79.9331271218743, 32.773809951705], [-79.9331082525624, 32.7736898710683], [-79.9330863966026, 32.7735481167395], [-79.9331010545139, 32.773546782709], [-79.9330973383804, 32.773518061131], [-79.9330839819836, 32.7734128033344], [-79.9330734424635, 32.7732769041182], [-79.9330692541724, 32.773220258521], [-79.9330474991269, 32.7730701739223], [-79.933035579537, 32.7729804762866], [-79.9330280854851, 32.7729281838702], [-79.9330071061239, 32.7727811984248], [-79.9329928841641, 32.7726802258079], [-79.9329876632319, 32.7726416124058], [-79.9332100322682, 32.7726164923301], [-79.9331756480051, 32.7724348605721], [-79.9331657244316, 32.7723816009545], [-79.9331276820497, 32.7721665188993], [-79.9331223477498, 32.7721370933094], [-79.933183429881, 32.7721308397303], [-79.9334098421404, 32.7721076457135], [-79.9334424180309, 32.7721043233141], [-79.9335621401535, 32.7720920515385], [-79.9337722626734, 32.7720705185046]]], "type": "Polygon"}, "id": "399", "properties": {"OBJECTID": 3467, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 29555.197265625, "Shape__Length": 924.714900313138, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9341886023931, 32.7720705185046, -79.9329876632319, 32.7743802322687], "geometry": {"coordinates": [[[-79.9331285166116, 32.7738289465892], [-79.933148174062, 32.7740175816575], [-79.9331852275647, 32.7743802322687], [-79.9332593583539, 32.7743713427386], [-79.9333066046963, 32.7743658278773], [-79.933433681483, 32.7743509581132], [-79.9334923314319, 32.7743442529837], [-79.9335444651084, 32.7743381827243], [-79.9339664220255, 32.7742890311605], [-79.9341334132349, 32.7742696115413], [-79.9341366729143, 32.7742691231924], [-79.9341407511326, 32.7742682163094], [-79.9341440150062, 32.7742673843978], [-79.9341480984975, 32.7742660455818], [-79.9341513665321, 32.7742648728127], [-79.9341554552962, 32.7742631020635], [-79.9341587275249, 32.7742615857317], [-79.9341620081749, 32.7742593795696], [-79.9341652908723, 32.7742570056841], [-79.9341685757051, 32.7742544568612], [-79.9341718636752, 32.7742516510426], [-79.9341751527128, 32.7742487577552], [-79.9341776304881, 32.7742456869526], [-79.9341801114226, 32.7742423573508], [-79.9341817789703, 32.7742390242695], [-79.9341834486755, 32.7742355144474], [-79.9341851193822, 32.7742319225669], [-79.9341867911567, 32.7742282432179], [-79.9341876495665, 32.7742245585856], [-79.9341876956906, 32.7742207803001], [-79.934188556258, 32.7742169189272], [-79.9341886023931, 32.7742131397399], [-79.9341878351859, 32.774209353466], [-79.9341870679788, 32.7742055671923], [-79.9341632457969, 32.7740913704306], [-79.9340801447676, 32.7737023785518], [-79.9340270572186, 32.7734534965738], [-79.9340201703371, 32.7734179574832], [-79.933974535292, 32.7731583148074], [-79.9339676956233, 32.7731189126665], [-79.9339402362862, 32.772969465728], [-79.9339356457702, 32.7729457164899], [-79.9339126774276, 32.7728282642931], [-79.933858404786, 32.7725432904293], [-79.9338217240315, 32.772349779726], [-79.9338140952862, 32.7723083956836], [-79.9337745222175, 32.7720853138567], [-79.9337722626734, 32.7720705185046], [-79.9335621401535, 32.7720920515385], [-79.9334424180309, 32.7721043233141], [-79.9334098421404, 32.7721076457135], [-79.933183429881, 32.7721308397303], [-79.9331223477498, 32.7721370933094], [-79.9331276820497, 32.7721665188993], [-79.9331657244316, 32.7723816009545], [-79.9331756480051, 32.7724348605721], [-79.9332100322682, 32.7726164923301], [-79.9329876632319, 32.7726416124058], [-79.9329928841641, 32.7726802258079], [-79.9330071061239, 32.7727811984248], [-79.9330280854851, 32.7729281838702], [-79.933035579537, 32.7729804762866], [-79.9330474991269, 32.7730701739223], [-79.9330692541724, 32.773220258521], [-79.9330734424635, 32.7732769041182], [-79.9330839819836, 32.7734128033344], [-79.9330973383804, 32.773518061131], [-79.9331010545139, 32.773546782709], [-79.9330863966026, 32.7735481167395], [-79.9331082525624, 32.7736898710683], [-79.9331271218743, 32.773809951705], [-79.9331285166116, 32.7738289465892]]], "type": "Polygon"}, "id": "400", "properties": {"OBJECTID": 3468, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 28786.140625, "Shape__Length": 799.571643386934, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9331852275647, 32.7738289465892, -79.9324777306435, 32.7744573824409], "geometry": {"coordinates": [[[-79.9324777306435, 32.7738991196468], [-79.9324888248508, 32.7739895839213], [-79.9324998907853, 32.7740825370128], [-79.9325117354011, 32.7741782465938], [-79.932522831774, 32.7742685395377], [-79.9325465536987, 32.7744573824409], [-79.9327730225586, 32.7744299793697], [-79.9328789252818, 32.7744171592933], [-79.932982382663, 32.7744047497746], [-79.9330915450463, 32.7743915259687], [-79.9331852275647, 32.7743802322687], [-79.933148174062, 32.7740175816575], [-79.9331285166116, 32.7738289465892], [-79.9330478805954, 32.7738376945236], [-79.9327530309811, 32.7738694787405], [-79.9324777306435, 32.7738991196468]]], "type": "Polygon"}, "id": "401", "properties": {"OBJECTID": 3469, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5342.314453125, "Shape__Length": 292.43307443438, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.932433321327, 32.7735319347296, -79.93142270685, 32.7745885909171], "geometry": {"coordinates": [[[-79.9315222693353, 32.7736073932943], [-79.9315370560793, 32.7737284693318], [-79.9315592783164, 32.7739066477639], [-79.9315717806925, 32.7740149915828], [-79.9318615936272, 32.7739960462311], [-79.931886659042, 32.7741413522949], [-79.9319730108653, 32.7741307674861], [-79.9319758261329, 32.774166695917], [-79.9319870596128, 32.7742458226895], [-79.9318819713266, 32.7742584786574], [-79.9318827153307, 32.7742642406643], [-79.9317517923945, 32.7742609483488], [-79.9317510379036, 32.7742561313725], [-79.9316573552888, 32.774267427581], [-79.931658134999, 32.7742701831835], [-79.9315856329478, 32.7742789119153], [-79.93142270685, 32.7742985340189], [-79.9314590149199, 32.7745885909171], [-79.9316716344513, 32.7745629600506], [-79.931787313385, 32.7745489393764], [-79.9319160268718, 32.7745333973763], [-79.9320260018109, 32.7745201852203], [-79.9321506411122, 32.7745051232541], [-79.9322084799942, 32.7744981546351], [-79.9322646900599, 32.774491344924], [-79.9323249742376, 32.7744840530929], [-79.932433321327, 32.7744709111364], [-79.9324230183563, 32.7743820869804], [-79.9323992652559, 32.774195991671], [-79.9323896591301, 32.7741167068923], [-79.9323763528796, 32.7740075850801], [-79.9323667489103, 32.7739282146454], [-79.9323526482812, 32.7738174526764], [-79.9323519357741, 32.7738092000799], [-79.9319429800237, 32.7738594894718], [-79.9319207412405, 32.7736826005964], [-79.9319111429722, 32.7736028009013], [-79.9319074230273, 32.7735743353714], [-79.9319014354307, 32.7735319347296], [-79.9317489538517, 32.7735623000215], [-79.9315222693353, 32.7736073932943]]], "type": "Polygon"}, "id": "402", "properties": {"OBJECTID": 3470, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9149.158203125, "Shape__Length": 565.529334307546, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9319870596128, 32.7736073932943, -79.9307794275097, 32.7746565958979], "geometry": {"coordinates": [[[-79.9315222693353, 32.7736073932943], [-79.9307794275097, 32.7737553517264], [-79.9308217098047, 32.7740887554285], [-79.9308952857481, 32.7746565958979], [-79.9314590149199, 32.7745885909171], [-79.93142270685, 32.7742985340189], [-79.9315856329478, 32.7742789119153], [-79.931658134999, 32.7742701831835], [-79.9316573552888, 32.774267427581], [-79.9317510379036, 32.7742561313725], [-79.9317517923945, 32.7742609483488], [-79.9318827153307, 32.7742642406643], [-79.9318819713266, 32.7742584786574], [-79.9319870596128, 32.7742458226895], [-79.9319758261329, 32.774166695917], [-79.9319730108653, 32.7741307674861], [-79.931886659042, 32.7741413522949], [-79.9318615936272, 32.7739960462311], [-79.9315717806925, 32.7740149915828], [-79.9315592783164, 32.7739066477639], [-79.9315370560793, 32.7737284693318], [-79.9315222693353, 32.7736073932943]]], "type": "Polygon"}, "id": "403", "properties": {"OBJECTID": 3471, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10898.4453125, "Shape__Length": 503.277814704163, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9333046199534, 32.7744757042667, -79.9328197179274, 32.7753546129031], "geometry": {"coordinates": [[[-79.9328744772136, 32.7745149614555], [-79.9328927744765, 32.7746151940777], [-79.9328251901027, 32.7746207892802], [-79.9328197179274, 32.7746692737851], [-79.9328978862725, 32.7746627428212], [-79.9329178447341, 32.7748268118846], [-79.9329259580241, 32.7748950884301], [-79.9329289090637, 32.7749197676325], [-79.9329340702908, 32.774963449739], [-79.9329259273534, 32.7749641515805], [-79.932936311682, 32.7750461919005], [-79.9329648114876, 32.7750437764794], [-79.9329707356922, 32.7750915893309], [-79.9329744350553, 32.7751216851677], [-79.9328824203773, 32.7751294725], [-79.9328964557386, 32.7752456466602], [-79.932966484857, 32.7752397282377], [-79.9329805361076, 32.7753546129031], [-79.9333046199534, 32.7753272025951], [-79.9332905683015, 32.7752124036417], [-79.9332720174906, 32.775066212263], [-79.933253528672, 32.774915039688], [-79.9332254130371, 32.7746863011182], [-79.9331995161686, 32.7744757042667], [-79.9330398476113, 32.7744950160396], [-79.9328744772136, 32.7745149614555]]], "type": "Polygon"}, "id": "404", "properties": {"OBJECTID": 3472, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4220.1640625, "Shape__Length": 336.622401334419, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9318272048474, 32.7752081217786, -79.9309851630072, 32.7758819436703], "geometry": {"coordinates": [[[-79.9309851630072, 32.7752839303783], [-79.9309953356526, 32.7753562607766], [-79.9310267205483, 32.775574556384], [-79.9310706266371, 32.7758819436703], [-79.9318272048474, 32.7758094389227], [-79.9318103850343, 32.7756550151258], [-79.9317934305367, 32.7755029664879], [-79.9317869101125, 32.7754441685237], [-79.9317650662339, 32.775279754515], [-79.9317562903274, 32.7752081217786], [-79.9316636606328, 32.7752172113881], [-79.9315613124352, 32.7752272540569], [-79.9315597279673, 32.7752145423805], [-79.9312201234899, 32.7752555555292], [-79.9309851630072, 32.7752839303783]]], "type": "Polygon"}, "id": "405", "properties": {"OBJECTID": 3473, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6903.544921875, "Shape__Length": 332.679287773758, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9326288258307, 32.774564804131, -79.930907943068, 32.7759717399203], "geometry": {"coordinates": [[[-79.9318086530346, 32.7756543578952], [-79.9320470259722, 32.7756350602611], [-79.9320563452019, 32.7757051483682], [-79.9320707868859, 32.7757152388199], [-79.9322079421893, 32.7757028923455], [-79.9322139012194, 32.7757706956198], [-79.9322239085312, 32.7758795875657], [-79.9322266266659, 32.7759112512724], [-79.9323352868044, 32.7759018998248], [-79.9323433678084, 32.7759717399203], [-79.9325353596026, 32.7759597345812], [-79.9326288258307, 32.7759493367285], [-79.9324609422475, 32.774564804131], [-79.9311433736894, 32.7747237897686], [-79.930907943068, 32.7747522279852], [-79.9309851630072, 32.7752839303783], [-79.9312201234899, 32.7752555555292], [-79.9315597279673, 32.7752145423805], [-79.9315613124352, 32.7752272540569], [-79.9316636606328, 32.7752172113881], [-79.9317562903274, 32.7752081217786], [-79.9317650662339, 32.775279754515], [-79.9317869101125, 32.7754441685237], [-79.9317934305367, 32.7755029664879], [-79.9318086530346, 32.7756543578952]]], "type": "Polygon"}, "id": "406", "properties": {"OBJECTID": 3474, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20040.451171875, "Shape__Length": 711.842037501983, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9333186380714, 32.7745149614555, -79.9325575829545, 32.7760644426447], "geometry": {"coordinates": [[[-79.9327326560621, 32.7760020251073], [-79.9328776029538, 32.7759895483544], [-79.9328864478115, 32.7760644426447], [-79.9330835253917, 32.7760462328958], [-79.9330695064141, 32.7759286872021], [-79.9330584260389, 32.7758369343669], [-79.9330225963269, 32.7758400578504], [-79.9330196105722, 32.7758181271385], [-79.9330159405555, 32.7757856263633], [-79.9330468859055, 32.7757828038797], [-79.9330394188938, 32.7757281912645], [-79.9330282693131, 32.7756421058572], [-79.9330738665272, 32.7756384687446], [-79.9330721885161, 32.7755760895173], [-79.9329402738297, 32.7755872228076], [-79.93292696983, 32.7754778422386], [-79.9329416248841, 32.7754766813514], [-79.9333186380714, 32.7754448366245], [-79.9333046199534, 32.7753272025951], [-79.9329805361076, 32.7753546129031], [-79.932966484857, 32.7752397282377], [-79.9328964557386, 32.7752456466602], [-79.9328824203773, 32.7751294725], [-79.9329744350553, 32.7751216851677], [-79.9329707356922, 32.7750915893309], [-79.9329648114876, 32.7750437764794], [-79.932936311682, 32.7750461919005], [-79.9329259273534, 32.7749641515805], [-79.9329340702908, 32.774963449739], [-79.9329289090637, 32.7749197676325], [-79.9329259580241, 32.7748950884301], [-79.9329178447341, 32.7748268118846], [-79.9328978862725, 32.7746627428212], [-79.9328197179274, 32.7746692737851], [-79.9328251901027, 32.7746207892802], [-79.9328927744765, 32.7746151940777], [-79.9328744772136, 32.7745149614555], [-79.9327767193543, 32.7745268217906], [-79.9325575829545, 32.7745532580579], [-79.9325752655566, 32.7747037356081], [-79.9325937636406, 32.7748540507285], [-79.9326018756324, 32.7749224129609], [-79.9326108010303, 32.7749907786833], [-79.9326203727832, 32.7750728119425], [-79.93262999391, 32.7751508081175], [-79.932644028972, 32.7752669796017], [-79.9326580798027, 32.7753818643045], [-79.9326720981056, 32.7754994127436], [-79.9326854028567, 32.7756087933499], [-79.9326928024358, 32.7756689029858], [-79.9327031372963, 32.775755066091], [-79.9327142435679, 32.7758446692122], [-79.932727496978, 32.7759582582333], [-79.9327326560621, 32.7760020251073]]], "type": "Polygon"}, "id": "407", "properties": {"OBJECTID": 3475, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7619.404296875, "Shape__Length": 626.882366048708, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9345931247629, 32.7743374357373, -79.9332801642722, 32.7761610077423], "geometry": {"coordinates": [[[-79.9342633738116, 32.7743516600684], [-79.9341517758402, 32.7743646057718], [-79.9340491382921, 32.7743765093757], [-79.9338446742984, 32.7744004126767], [-79.9336426576149, 32.7744238193178], [-79.9332801642722, 32.7744660139147], [-79.9333311955926, 32.7748831607099], [-79.933346059548, 32.7749980524117], [-79.933374117872, 32.7752315160731], [-79.9333948570797, 32.7753982576915], [-79.9334081962988, 32.775504889718], [-79.9334355559866, 32.7757289826301], [-79.9334570091258, 32.7759039768483], [-79.9334888473754, 32.7761610077423], [-79.9338854426864, 32.7761245224784], [-79.93433415769, 32.7760830771667], [-79.9344261805626, 32.7760746016072], [-79.9345931247629, 32.7760593050091], [-79.9345539494953, 32.7757365813046], [-79.9345377223053, 32.7755998579883], [-79.9345259098857, 32.7755014000975], [-79.93450594827, 32.7753373294809], [-79.934493389657, 32.7752333675049], [-79.9344823550422, 32.7751376624747], [-79.9344771500873, 32.7750976739739], [-79.9344624103637, 32.7749723050854], [-79.9344483362591, 32.7748591384075], [-79.9344416975246, 32.7748032443834], [-79.9344335756731, 32.7747355730059], [-79.9344188277524, 32.7746110607876], [-79.9343855630124, 32.7743374357373], [-79.9342633738116, 32.7743516600684]]], "type": "Polygon"}, "id": "408", "properties": {"OBJECTID": 3476, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 28174.318359375, "Shape__Length": 702.637768309386, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.933408224995, 32.7754448366245, -79.93292696983, 32.7761966354301], "geometry": {"coordinates": [[[-79.9330835253917, 32.7760462328958], [-79.9331020235663, 32.7761966354301], [-79.9332298786425, 32.7761848641295], [-79.933408224995, 32.7761684664299], [-79.9333615532494, 32.775793879148], [-79.9333467867281, 32.7756709123571], [-79.9333327590819, 32.7755541394979], [-79.9333186380714, 32.7754448366245], [-79.9329416248841, 32.7754766813514], [-79.93292696983, 32.7754778422386], [-79.9329402738297, 32.7755872228076], [-79.9330721885161, 32.7755760895173], [-79.9330738665272, 32.7756384687446], [-79.9330282693131, 32.7756421058572], [-79.9330394188938, 32.7757281912645], [-79.9330468859055, 32.7757828038797], [-79.9330159405555, 32.7757856263633], [-79.9330196105722, 32.7758181271385], [-79.9330225963269, 32.7758400578504], [-79.9330584260389, 32.7758369343669], [-79.9330695064141, 32.7759286872021], [-79.9330835253917, 32.7760462328958]]], "type": "Polygon"}, "id": "409", "properties": {"OBJECTID": 3477, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3443.177734375, "Shape__Length": 298.4421483967, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9331020235663, 32.7759895483544, -79.9327326560621, 32.7762281045956], "geometry": {"coordinates": [[[-79.9327326560621, 32.7760020251073], [-79.932760803337, 32.7762281045956], [-79.9329049467305, 32.7762147568388], [-79.9331020235663, 32.7761966354301], [-79.9330835253917, 32.7760462328958], [-79.9328864478115, 32.7760644426447], [-79.9328776029538, 32.7759895483544], [-79.9327326560621, 32.7760020251073]]], "type": "Polygon"}, "id": "410", "properties": {"OBJECTID": 3478, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 927.26171875, "Shape__Length": 136.582653606565, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9326652804566, 32.7756350602611, -79.9310706266371, 32.7763771392102], "geometry": {"coordinates": [[[-79.9310706266371, 32.7758819436703], [-79.9311421113764, 32.7763771392102], [-79.9318986789889, 32.7763109070522], [-79.9326652804566, 32.776249968575], [-79.9326288258307, 32.7759493367285], [-79.9325353596026, 32.7759597345812], [-79.9323433678084, 32.7759717399203], [-79.9323352868044, 32.7759018998248], [-79.9322266266659, 32.7759112512724], [-79.9322239085312, 32.7758795875657], [-79.9322139012194, 32.7757706956198], [-79.9322079421893, 32.7757028923455], [-79.9320707868859, 32.7757152388199], [-79.9320563452019, 32.7757051483682], [-79.9320470259722, 32.7756350602611], [-79.9318086530346, 32.7756543578952], [-79.9318272048474, 32.7758094389227], [-79.9310706266371, 32.7758819436703]]], "type": "Polygon"}, "id": "411", "properties": {"OBJECTID": 3479, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11048.1015625, "Shape__Length": 516.333219283242, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9337035667388, 32.7706797667199, -79.9327331350218, 32.7711706671776], "geometry": {"coordinates": [[[-79.9327331350218, 32.7706797667199], [-79.9327861804412, 32.7711312910784], [-79.9327861258481, 32.7711357573885], [-79.9327898333661, 32.7711652544727], [-79.9329516629072, 32.7711682958684], [-79.933118382778, 32.7711705256655], [-79.9331248882535, 32.7711706671776], [-79.9332592382798, 32.7711592961634], [-79.9332763378096, 32.7711579004396], [-79.9332844804114, 32.7711571967716], [-79.9334854790846, 32.7711499301676], [-79.9335147740865, 32.7711488995669], [-79.9337035667388, 32.7711420402304], [-79.9336890928292, 32.7707287341077], [-79.9334964391207, 32.7707188081757], [-79.933253384378, 32.7707063808197], [-79.933091619736, 32.7706980980183], [-79.9328981517863, 32.7706881640409], [-79.9327331350218, 32.7706797667199]]], "type": "Polygon"}, "id": "412", "properties": {"OBJECTID": 3480, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6255.310546875, "Shape__Length": 327.798180441385, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9320273970566, 32.7710686250712, -79.9318358919778, 32.7712698332647], "geometry": {"coordinates": [[[-79.9320036414503, 32.7710686250712], [-79.9318358919778, 32.7710839966902], [-79.9318596483316, 32.7712698332647], [-79.9320273970566, 32.7712544643087], [-79.9320036414503, 32.7710686250712]]], "type": "Polygon"}, "id": "413", "properties": {"OBJECTID": 3481, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 464.8125, "Shape__Length": 87.0585239189439, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9337150420544, 32.7706445808321, -79.9320478714459, 32.7716146140537], "geometry": {"coordinates": [[[-79.9327331350218, 32.7706797667199], [-79.9325559260041, 32.7706706612574], [-79.9323900970549, 32.7706621698096], [-79.9322982414251, 32.7706574180372], [-79.9321998803943, 32.7706524353537], [-79.9320478714459, 32.7706445808321], [-79.9320775935444, 32.7708746232571], [-79.9320835411373, 32.7709203738448], [-79.9320998308824, 32.7710515977142], [-79.9321161868293, 32.7711774129569], [-79.9321303056579, 32.7712866275379], [-79.9321436090883, 32.7713960081522], [-79.9321718447585, 32.7716146140537], [-79.9325081735815, 32.7715825872651], [-79.9328347276032, 32.7715515934545], [-79.9329943414624, 32.77153640832], [-79.9331401099786, 32.7715225613927], [-79.9332809933448, 32.7715091848352], [-79.9335000536592, 32.771488332649], [-79.9337150420544, 32.7714678729482], [-79.9337126111724, 32.7714005063671], [-79.9337071060643, 32.7712518495869], [-79.9337035667388, 32.7711420402304], [-79.9335147740865, 32.7711488995669], [-79.9334854790846, 32.7711499301676], [-79.9332844804114, 32.7711571967716], [-79.9332763378096, 32.7711579004396], [-79.9332592382798, 32.7711592961634], [-79.9331248882535, 32.7711706671776], [-79.933118382778, 32.7711705256655], [-79.9329516629072, 32.7711682958684], [-79.9327898333661, 32.7711652544727], [-79.9327861258481, 32.7711357573885], [-79.9327861804412, 32.7711312910784], [-79.9327331350218, 32.7706797667199]]], "type": "Polygon"}, "id": "414", "properties": {"OBJECTID": 3482, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 13830.126953125, "Shape__Length": 588.070519003855, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9320808804583, 32.7712818116629, -79.9312343928388, 32.7717435005535], "geometry": {"coordinates": [[[-79.9320311295516, 32.7712818116629], [-79.9315295137494, 32.7713275118451], [-79.9315265611223, 32.7713029173727], [-79.9314850305642, 32.7713067625629], [-79.9313775425908, 32.7713164778626], [-79.9312586524733, 32.7713273767583], [-79.9312563786317, 32.7713136986053], [-79.9312343928388, 32.7713157412585], [-79.9312596883502, 32.7715085517731], [-79.9312909754245, 32.7717435005535], [-79.9313707805477, 32.7717360388649], [-79.9313692527155, 32.7717278648153], [-79.9314376577204, 32.771721504734], [-79.931438370124, 32.7717297573338], [-79.9315849504431, 32.7717160897927], [-79.9317087293692, 32.7717045460727], [-79.9317869057508, 32.7716973233046], [-79.9320808804583, 32.7716699113522], [-79.9320704951868, 32.7715879593512], [-79.932055639791, 32.7714724651671], [-79.932037782248, 32.7713364163103], [-79.9320311295516, 32.7712818116629]]], "type": "Polygon"}, "id": "415", "properties": {"OBJECTID": 3483, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4688.857421875, "Shape__Length": 293.140602017898, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9320311295516, 32.7704202495574, -79.9303547973128, 32.7718142512829], "geometry": {"coordinates": [[[-79.9320036414503, 32.7710686250712], [-79.9319843991036, 32.7709128067287], [-79.9319487150133, 32.7706382166061], [-79.9317757650149, 32.770613427321], [-79.9316020007058, 32.7705886333837], [-79.9314988808548, 32.7705738146468], [-79.9313949476755, 32.7705589932266], [-79.9311627232799, 32.7705256931782], [-79.9310807137513, 32.770513984999], [-79.9309735327839, 32.7704987019579], [-79.9307193851823, 32.7704623759019], [-79.9304311356474, 32.7704210318366], [-79.9304278866624, 32.7704206571232], [-79.9304246365618, 32.7704203734853], [-79.9304205711108, 32.7704202495574], [-79.9304165024564, 32.7704203871333], [-79.9304132460592, 32.7704206174858], [-79.9304091742785, 32.7704210102534], [-79.9304059136725, 32.770421584168], [-79.930402652028, 32.7704222428458], [-79.9303993882956, 32.7704230719521], [-79.9303953049266, 32.7704244106424], [-79.9303912183981, 32.7704260072297], [-79.9303879483356, 32.7704273530316], [-79.9303846709047, 32.7704293002926], [-79.930381396622, 32.7704309905583], [-79.9303781139325, 32.7704333670465], [-79.9303748291659, 32.7704359130614], [-79.9303715412175, 32.7704387187767], [-79.9303682511479, 32.7704416976257], [-79.9303657733466, 32.7704447683499], [-79.930363293424, 32.7704480122077], [-79.9303616247203, 32.7704514336059], [-79.930359954978, 32.7704549397675], [-79.9303582841862, 32.7704585315942], [-79.9303566112289, 32.7704623001615], [-79.9303557527165, 32.7704659829617], [-79.9303557053238, 32.7704698514181], [-79.9303548446503, 32.7704736234811], [-79.9303547973128, 32.7704774874288], [-79.9303555653883, 32.7704812737343], [-79.9303845812265, 32.7707022028014], [-79.9303979855034, 32.7708031658733], [-79.9304403658989, 32.771128325908], [-79.9304753499812, 32.7713932887297], [-79.930479081996, 32.7714206361316], [-79.9305147596744, 32.7716953989387], [-79.9305303853441, 32.7718142512829], [-79.9311256644876, 32.7717588925168], [-79.9312909754245, 32.7717435005535], [-79.9312596883502, 32.7715085517731], [-79.9312343928388, 32.7713157412585], [-79.9312563786317, 32.7713136986053], [-79.9312586524733, 32.7713273767583], [-79.9313775425908, 32.7713164778626], [-79.9314850305642, 32.7713067625629], [-79.9315265611223, 32.7713029173727], [-79.9315295137494, 32.7713275118451], [-79.9320311295516, 32.7712818116629], [-79.9320273970566, 32.7712544643087], [-79.9318596483316, 32.7712698332647], [-79.9318358919778, 32.7710839966902], [-79.9320036414503, 32.7710686250712]]], "type": "Polygon"}, "id": "416", "properties": {"OBJECTID": 3484, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 23029.861328125, "Shape__Length": 721.530519048375, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9321694615464, 32.7717258561068, -79.9312748263437, 32.7725519208791], "geometry": {"coordinates": [[[-79.9312748263437, 32.7718002264546], [-79.9313134351126, 32.7721015574261], [-79.9313232075976, 32.772100612006], [-79.9313328409355, 32.7721774892001], [-79.9313343666562, 32.7721857489064], [-79.9313462444273, 32.7722786244166], [-79.9313811297163, 32.7725519208791], [-79.9315505234551, 32.7725352745941], [-79.9318770950567, 32.772503252659], [-79.9321694615464, 32.7724745386051], [-79.9321345738318, 32.7722012414681], [-79.9321226952327, 32.7721083660352], [-79.9321063884474, 32.7719785164029], [-79.9320900723023, 32.771849435953], [-79.9320736889246, 32.7717258561068], [-79.9318220591622, 32.771749343287], [-79.9316274330612, 32.7717674018772], [-79.9314661940078, 32.7717824862653], [-79.9312748263437, 32.7718002264546]], [[-79.9318255078147, 32.7719327705036], [-79.9318450516986, 32.7719309643443], [-79.9318539436098, 32.7720019938344], [-79.9318343997101, 32.7720037999951], [-79.9318255078147, 32.7719327705036]]], "type": "Polygon"}, "id": "417", "properties": {"OBJECTID": 3485, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8856.888671875, "Shape__Length": 402.123486772837, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9313811297163, 32.7718002264546, -79.9305370360931, 32.7726251943773], "geometry": {"coordinates": [[[-79.9312748263437, 32.7718002264546], [-79.9311062578113, 32.7718159335306], [-79.9309547899881, 32.7718301575064], [-79.9305370360931, 32.7718689416803], [-79.9305645545315, 32.7720793801222], [-79.9305764104612, 32.7721739708121], [-79.9305860441548, 32.7722507660075], [-79.9305994467928, 32.7723519013066], [-79.9306343298177, 32.7726251943773], [-79.9312288389229, 32.7725668252148], [-79.9313811297163, 32.7725519208791], [-79.9313462444273, 32.7722786244166], [-79.9313343666562, 32.7721857489064], [-79.9313328409355, 32.7721774892001], [-79.9313232075976, 32.772100612006], [-79.9313134351126, 32.7721015574261], [-79.9312748263437, 32.7718002264546]]], "type": "Polygon"}, "id": "418", "properties": {"OBJECTID": 3486, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8363.6015625, "Shape__Length": 368.354635193794, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9322233261061, 32.7725585725005, -79.9310331802996, 32.7729441862079], "geometry": {"coordinates": [[[-79.9310331802996, 32.7726690556295], [-79.9310613957822, 32.7728891172238], [-79.9310736135915, 32.7728877648197], [-79.9314362313938, 32.7728518799255], [-79.931448296734, 32.7729441862079], [-79.931710487659, 32.772918234392], [-79.9318463593818, 32.7729047868367], [-79.9322233261061, 32.7728719414402], [-79.93220338411, 32.7727346866796], [-79.9321833089845, 32.7725585725005], [-79.9319186944357, 32.7725817833207], [-79.9314074860807, 32.772631946368], [-79.9310331802996, 32.7726690556295]]], "type": "Polygon"}, "id": "419", "properties": {"OBJECTID": 3487, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4839.552734375, "Shape__Length": 341.017588220135, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9323034162691, 32.772930362211, -79.9317411260723, 32.7735088099798], "geometry": {"coordinates": [[[-79.9317411260723, 32.772979067381], [-79.9317506957504, 32.7730611854536], [-79.9317632875968, 32.7731623135409], [-79.9317723760861, 32.7732172812808], [-79.9317888381025, 32.7733344218732], [-79.9318671177871, 32.7733187867247], [-79.9318661668598, 32.773463001652], [-79.9318694012696, 32.773464577443], [-79.9318726346452, 32.7734661505193], [-79.9318758596312, 32.7734685838727], [-79.9318790824688, 32.7734711055871], [-79.93188067972, 32.7734734372495], [-79.9318822769989, 32.7734759411625], [-79.9318838721294, 32.7734785334366], [-79.9318846518397, 32.7734812890374], [-79.9318854305019, 32.7734841303034], [-79.9318862091423, 32.7734869733728], [-79.9318861744803, 32.7734898066352], [-79.9318853254348, 32.773492718461], [-79.9318844784633, 32.7734954607599], [-79.9318836315027, 32.7734982021571], [-79.9318819722546, 32.7735008507873], [-79.9318803140572, 32.7735033262744], [-79.9318786600684, 32.7735056322532], [-79.9318786211919, 32.7735088099798], [-79.931952791285, 32.7734966587523], [-79.9321264729746, 32.7734620971678], [-79.9323034162691, 32.7734268766081], [-79.9322899169855, 32.7733334693829], [-79.9322764523667, 32.7732373172745], [-79.9322562402428, 32.7730941179714], [-79.9322442437454, 32.7730108622875], [-79.9322330280546, 32.772930362211], [-79.931942284594, 32.7729591771788], [-79.9317411260723, 32.772979067381]]], "type": "Polygon"}, "id": "420", "properties": {"OBJECTID": 3488, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3648.2578125, "Shape__Length": 252.401736466225, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9318862091423, 32.772979067381, -79.9313943017297, 32.7735888217635], "geometry": {"coordinates": [[[-79.9314568984223, 32.77300725], [-79.9314568658214, 32.7730099137353], [-79.9314724762338, 32.7731301366188], [-79.9313943017297, 32.7731371860628], [-79.9314158482177, 32.7732376204446], [-79.93146043667, 32.7734492349992], [-79.9314896383733, 32.7735888217635], [-79.9316983831958, 32.7735472666989], [-79.9318630974091, 32.7735144299389], [-79.9318663581211, 32.7735138559853], [-79.93187127173, 32.7735110653251], [-79.9318786211919, 32.7735088099798], [-79.9318786600684, 32.7735056322532], [-79.9318803140572, 32.7735033262744], [-79.9318819722546, 32.7735008507873], [-79.9318836315027, 32.7734982021571], [-79.9318844784633, 32.7734954607599], [-79.9318853254348, 32.773492718461], [-79.9318861744803, 32.7734898066352], [-79.9318862091423, 32.7734869733728], [-79.9318854305019, 32.7734841303034], [-79.9318846518397, 32.7734812890374], [-79.9318838721294, 32.7734785334366], [-79.9318822769989, 32.7734759411625], [-79.93188067972, 32.7734734372495], [-79.9318790824688, 32.7734711055871], [-79.9318758596312, 32.7734685838727], [-79.9318726346452, 32.7734661505193], [-79.9318694012696, 32.773464577443], [-79.9318661668598, 32.773463001652], [-79.9318671177871, 32.7733187867247], [-79.9317888381025, 32.7733344218732], [-79.9317723760861, 32.7732172812808], [-79.9317632875968, 32.7731623135409], [-79.9317506957504, 32.7730611854536], [-79.9317411260723, 32.772979067381], [-79.9316482844628, 32.7729882209392], [-79.9315570705438, 32.7729973029698], [-79.9314568984223, 32.77300725]]], "type": "Polygon"}, "id": "421", "properties": {"OBJECTID": 3489, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2982.373046875, "Shape__Length": 244.872423083133, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9314896383733, 32.7726690556295, -79.9306447138204, 32.7737272290143], "geometry": {"coordinates": [[[-79.9310331802996, 32.7726690556295], [-79.9306447138204, 32.7727071501165], [-79.9306729304307, 32.772927127949], [-79.9306930346767, 32.7730787461218], [-79.9307078307171, 32.7731989619941], [-79.9307227277681, 32.77331102075], [-79.930734570324, 32.7734066439187], [-79.9307538793675, 32.7735569664146], [-79.930761315311, 32.7736139840926], [-79.9307940911809, 32.7737272290143], [-79.9310028377658, 32.7736856724401], [-79.9312833396572, 32.7736297963206], [-79.9314195137947, 32.7736027260467], [-79.9314545755626, 32.7735958167427], [-79.9314896383733, 32.7735888217635], [-79.93146043667, 32.7734492349992], [-79.9314158482177, 32.7732376204446], [-79.9313943017297, 32.7731371860628], [-79.9314724762338, 32.7731301366188], [-79.9314568658214, 32.7730099137353], [-79.9314568984223, 32.77300725], [-79.9314502133718, 32.7729553081445], [-79.9314368327659, 32.7728522846916], [-79.9310736135915, 32.7728877648197], [-79.9310613957822, 32.7728891172238], [-79.9310331802996, 32.7726690556295]]], "type": "Polygon"}, "id": "422", "properties": {"OBJECTID": 3490, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9587.541015625, "Shape__Length": 437.156915877157, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.945318777317, 32.7886541490922, -79.9446364037328, 32.7895187951453], "geometry": {"coordinates": [[[-79.9446791315105, 32.7889042826353], [-79.9447199624975, 32.7889708683027], [-79.9447627380195, 32.7890417616597], [-79.9447790509214, 32.7890687048981], [-79.9448051215179, 32.7891102915179], [-79.944813136817, 32.7891230756206], [-79.9448499640425, 32.7891767809732], [-79.9448734100585, 32.7892102663037], [-79.9448808314779, 32.7892208646428], [-79.944887242155, 32.7892300212487], [-79.9449267821229, 32.7892864906496], [-79.9449331288, 32.789295554714], [-79.9449858418943, 32.7893649148943], [-79.9449860114741, 32.7893648415043], [-79.9449865883356, 32.7893656987129], [-79.9450409284699, 32.7894470005719], [-79.9450888750344, 32.7895187951453], [-79.945318777317, 32.7894121141655], [-79.945270016092, 32.7893403108575], [-79.9452156768566, 32.7892590109138], [-79.9451613376792, 32.7891776261738], [-79.9451245776101, 32.7891226769631], [-79.9450878186227, 32.7890676420761], [-79.9450502462222, 32.7890125983608], [-79.9450326724472, 32.7889857335689], [-79.9450166810276, 32.7889624861522], [-79.9449436428579, 32.7888630079845], [-79.9448602228574, 32.7887292570786], [-79.9448052724965, 32.7886541490922], [-79.9446390407146, 32.7887351493466], [-79.9446871103534, 32.7888103044759], [-79.9446364037328, 32.7888340434913], [-79.9446791315105, 32.7889042826353]]], "type": "Polygon"}, "id": "423", "properties": {"OBJECTID": 3537, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3301.4765625, "Shape__Length": 287.710718842931, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9448052724965, 32.7885860010117, -79.944312990438, 32.7889829467054], "geometry": {"coordinates": [[[-79.944312990438, 32.7887547776887], [-79.9443813837162, 32.7888460220878], [-79.9444169295422, 32.7888934433507], [-79.9444468529847, 32.7889333651337], [-79.9444840169737, 32.7889829467054], [-79.9445810748567, 32.7889438155684], [-79.9446791315105, 32.7889042826353], [-79.9446364037328, 32.7888340434913], [-79.9446871103534, 32.7888103044759], [-79.9446390407146, 32.7887351493466], [-79.9448052724965, 32.7886541490922], [-79.944759264147, 32.7885860010117], [-79.9445854746533, 32.7886509996772], [-79.9445312354096, 32.7886718944484], [-79.944312990438, 32.7887547776887]]], "type": "Polygon"}, "id": "424", "properties": {"OBJECTID": 3538, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1297.40625, "Shape__Length": 174.246595276702, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9433282878878, 32.7891847151604, -79.9430200136316, 32.7894369090506], "geometry": {"coordinates": [[[-79.9430200136316, 32.789264699247], [-79.9431171850168, 32.7894369090506], [-79.9432170093883, 32.7893899226444], [-79.9433282878878, 32.7893377151563], [-79.9432276293713, 32.7891847151604], [-79.9431230075681, 32.7892247854397], [-79.9430200136316, 32.789264699247]]], "type": "Polygon"}, "id": "425", "properties": {"OBJECTID": 3539, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 632.6796875, "Shape__Length": 100.735980696249, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9441138471199, 32.7889383284402, -79.943341487524, 32.7895680507621], "geometry": {"coordinates": [[[-79.9441138471199, 32.7893283895125], [-79.9438427944352, 32.7889383284402], [-79.9437981906118, 32.7889585133535], [-79.9437205969154, 32.7889879521516], [-79.9436206253474, 32.7890259003978], [-79.943341487524, 32.7891318553726], [-79.9436243194357, 32.7895680507621], [-79.9438434679718, 32.7894603922812], [-79.9441138471199, 32.7893283895125]]], "type": "Polygon"}, "id": "426", "properties": {"OBJECTID": 3540, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3888.9453125, "Shape__Length": 250.084245459613, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.945518559633, 32.789295554714, -79.9445460204243, 32.7900316827034], "geometry": {"coordinates": [[[-79.9446054934203, 32.7896903787462], [-79.9448265158601, 32.7900316827034], [-79.9449391129424, 32.7899771655995], [-79.9450328337453, 32.7899337387327], [-79.9451012800741, 32.7899060545602], [-79.945205197303, 32.789857042933], [-79.9452894702959, 32.7898177387763], [-79.9454301955266, 32.7897522078975], [-79.945518559633, 32.7897110504051], [-79.9454242615133, 32.7895699634926], [-79.9453683229975, 32.7894862455397], [-79.945318777317, 32.7894121141655], [-79.9450887447372, 32.7895187101512], [-79.9450406353034, 32.7894469637743], [-79.9449860948706, 32.7893656268201], [-79.9449331288, 32.789295554714], [-79.9447827500427, 32.7893595804641], [-79.944754377311, 32.7893711759491], [-79.9445460204243, 32.7894627357908], [-79.9446730504531, 32.7896471404051], [-79.9446227962073, 32.7896823456494], [-79.9446054934203, 32.7896903787462]]], "type": "Polygon"}, "id": "427", "properties": {"OBJECTID": 3541, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5745.376953125, "Shape__Length": 334.493272732203, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.944228484438, 32.7894603922812, -79.9436243194357, 32.7901529853305], "geometry": {"coordinates": [[[-79.9436243194357, 32.7895680507621], [-79.9437249912998, 32.7897233060334], [-79.9439670489639, 32.7900980718017], [-79.9440036041553, 32.7901529853305], [-79.9441008663904, 32.7901050300576], [-79.9442255597028, 32.7900435494122], [-79.944228484438, 32.790042108266], [-79.9441969996979, 32.7899893037639], [-79.9441912643973, 32.7899920156912], [-79.9441510411896, 32.7899310508146], [-79.9441038321101, 32.7898529692235], [-79.9441005543544, 32.7898479357496], [-79.9440710404828, 32.7898034460109], [-79.9440558552227, 32.7897805553354], [-79.9440423036386, 32.789760126339], [-79.943995413108, 32.7896894425049], [-79.9439934365765, 32.7896864629161], [-79.943949533472, 32.7896202815598], [-79.9439472518342, 32.7896168403025], [-79.9438954364033, 32.7895387314964], [-79.9438870364275, 32.7895260693668], [-79.9438434679718, 32.7894603922812], [-79.9436243194357, 32.7895680507621]]], "type": "Polygon"}, "id": "428", "properties": {"OBJECTID": 3542, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2525.076171875, "Shape__Length": 234.396454724085, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9447980325108, 32.7897067521821, -79.9440036041553, 32.790360324149], "geometry": {"coordinates": [[[-79.9440036041553, 32.7901529853305], [-79.9441380482641, 32.790360324149], [-79.9442379517962, 32.790313189683], [-79.9443636933585, 32.7902529796068], [-79.9446447431696, 32.7901132361682], [-79.9447980325108, 32.7900444622587], [-79.9445702285662, 32.7897067521821], [-79.9444952375749, 32.7897415690271], [-79.9444219279558, 32.7897756049145], [-79.9443749451487, 32.7897073166087], [-79.9442166727365, 32.7897837197981], [-79.9442164797742, 32.78980073306], [-79.9441038321101, 32.7898529692235], [-79.9441510411896, 32.7899310508146], [-79.9441912643973, 32.7899920156912], [-79.9441969996979, 32.7899893037639], [-79.944228484438, 32.790042108266], [-79.9441008663904, 32.7901050300576], [-79.9440036041553, 32.7901529853305]]], "type": "Polygon"}, "id": "429", "properties": {"OBJECTID": 3543, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4095.62890625, "Shape__Length": 291.833882529971, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9449331288, 32.7887547776887, -79.9438427944352, 32.7898529692235], "geometry": {"coordinates": [[[-79.9441138471199, 32.7893283895125], [-79.9438434679718, 32.7894603922812], [-79.9438870364275, 32.7895260693668], [-79.9438954364033, 32.7895387314964], [-79.9439472518342, 32.7896168403025], [-79.943949533472, 32.7896202815598], [-79.9439934365765, 32.7896864629161], [-79.943995413108, 32.7896894425049], [-79.9440423036386, 32.789760126339], [-79.9440558552227, 32.7897805553354], [-79.9440710404828, 32.7898034460109], [-79.9441005543544, 32.7898479357496], [-79.9441038321101, 32.7898529692235], [-79.9442164797742, 32.78980073306], [-79.9442166727365, 32.7897837197981], [-79.9443749451487, 32.7897073166087], [-79.9444219279558, 32.7897756049145], [-79.9444952375749, 32.7897415690271], [-79.9445702285662, 32.7897067521821], [-79.9446054934203, 32.7896903787462], [-79.9446227962073, 32.7896823456494], [-79.9446730504531, 32.7896471404051], [-79.9445460204243, 32.7894627357908], [-79.944754377311, 32.7893711759491], [-79.9447827500427, 32.7893595804641], [-79.9449331288, 32.789295554714], [-79.9449267821229, 32.7892864906496], [-79.944887242155, 32.7892300212487], [-79.9448808314779, 32.7892208646428], [-79.9448734100585, 32.7892102663037], [-79.9448499640425, 32.7891767809732], [-79.944813136817, 32.7891230756206], [-79.9448051215179, 32.7891102915179], [-79.9447790509214, 32.7890687048981], [-79.9447627380195, 32.7890417616597], [-79.9447199624975, 32.7889708683027], [-79.9446791315105, 32.7889042826353], [-79.9445810748567, 32.7889438155684], [-79.9444840169737, 32.7889829467054], [-79.9444468529847, 32.7889333651337], [-79.944312990438, 32.7887547776887], [-79.9441795648855, 32.788806863477], [-79.9441202812764, 32.7888300060999], [-79.9438427944352, 32.7889383284402], [-79.9441138471199, 32.7893283895125]]], "type": "Polygon"}, "id": "430", "properties": {"OBJECTID": 3544, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10037.990234375, "Shape__Length": 487.528690490131, "ZONE_BASE": "PUD", "__folium_color": "#7f7f7f"}, "type": "Feature"}, {"bbox": [-79.9446737934947, 32.7881822681483, -79.9434376914791, 32.7888678145179], "geometry": {"coordinates": [[[-79.9436471688468, 32.7887181546306], [-79.943638029544, 32.7887234533648], [-79.9436203304951, 32.7887337131378], [-79.9437315016572, 32.7888678145179], [-79.9440531496876, 32.7887422517222], [-79.9440441402526, 32.7887257840102], [-79.9445051787364, 32.7885473246236], [-79.9446737934947, 32.7884813227878], [-79.9444764418933, 32.7881822681483], [-79.944022210231, 32.7883008276401], [-79.9440211897074, 32.788302049837], [-79.9434376914791, 32.7884510366957], [-79.9434393337459, 32.7884529609651], [-79.943652365341, 32.7887151422757], [-79.9436471688468, 32.7887181546306]]], "type": "Polygon"}, "id": "431", "properties": {"OBJECTID": 3545, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6313.125, "Shape__Length": 353.731788311769, "ZONE_BASE": "PUD", "__folium_color": "#7f7f7f"}, "type": "Feature"}, {"bbox": [-79.9461504182598, 32.7870924656502, -79.9442143597143, 32.788414728676], "geometry": {"coordinates": [[[-79.9453228674414, 32.7872382840639], [-79.9452926509635, 32.7872479031813], [-79.9452461018589, 32.787262534572], [-79.9451824097951, 32.7872819989805], [-79.9451644388272, 32.7872879413463], [-79.9450754130085, 32.7873168116579], [-79.9450427467194, 32.787327095887], [-79.9449545488685, 32.7873547665955], [-79.9449210659572, 32.7873653025771], [-79.9448622701169, 32.7873835203219], [-79.9447977830422, 32.7874013480596], [-79.9447577861943, 32.7874124266338], [-79.9445815364282, 32.7874555751275], [-79.9445750079264, 32.7874572368048], [-79.9444509819383, 32.7874875191171], [-79.9443604077182, 32.7875098444641], [-79.9443163475102, 32.7875203737889], [-79.9442143597143, 32.7875446648442], [-79.9444717784896, 32.7879206344012], [-79.9445229485226, 32.7879948649058], [-79.9445844996187, 32.7880853341028], [-79.9446220775632, 32.7881397737801], [-79.9446596503755, 32.788194730153], [-79.9447004200508, 32.7882545244775], [-79.9448099410723, 32.788414728676], [-79.9448990344969, 32.7883803651473], [-79.9450968380018, 32.7883040710969], [-79.9452071801498, 32.7882618164264], [-79.9453044484862, 32.788224171865], [-79.9454033478362, 32.7881861093071], [-79.9455071538747, 32.7881461184509], [-79.9456109587832, 32.7881061247925], [-79.945729477694, 32.7880603291763], [-79.9461504182598, 32.7878981696088], [-79.9461210996257, 32.7878333204289], [-79.946077499455, 32.7877384550941], [-79.9460251897729, 32.7876237555104], [-79.9458960139888, 32.7873394312815], [-79.9458397369799, 32.7872163671881], [-79.9458222898825, 32.7871790224796], [-79.9457859119542, 32.7870924656502], [-79.9453228674414, 32.7872382840639]]], "type": "Polygon"}, "id": "432", "properties": {"OBJECTID": 3546, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21085.0078125, "Shape__Length": 596.252750190518, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9466445964558, 32.7856358449709, -79.9462482267842, 32.7858796329517], "geometry": {"coordinates": [[[-79.9462482267842, 32.7857464449775], [-79.9463094353948, 32.7858796329517], [-79.9466445964558, 32.7857707150309], [-79.9465826155288, 32.7856358449709], [-79.9462482267842, 32.7857464449775]]], "type": "Polygon"}, "id": "433", "properties": {"OBJECTID": 3547, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 761.03515625, "Shape__Length": 118.052879694354, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9461110702641, 32.7858301207316, -79.9454958680948, 32.7861280611908], "geometry": {"coordinates": [[[-79.945554719045, 32.7861221614478], [-79.945931053705, 32.7859966683712], [-79.9459914519952, 32.7861280611908], [-79.9461110702641, 32.7860870039322], [-79.9459941279824, 32.7858301207316], [-79.9454958680948, 32.7859919442089], [-79.945554719045, 32.7861221614478]]], "type": "Polygon"}, "id": "434", "properties": {"OBJECTID": 3548, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1349.04296875, "Shape__Length": 192.430412698978, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9472941195189, 32.7857464449775, -79.945554719045, 32.7875318055252], "geometry": {"coordinates": [[[-79.945554719045, 32.7861221614478], [-79.9455703239826, 32.7861562491217], [-79.9456147705325, 32.7862483731344], [-79.945669520288, 32.7863630055368], [-79.9457369784311, 32.7865030880841], [-79.945802061807, 32.7866379113732], [-79.9459665860945, 32.7870265659875], [-79.9460085090836, 32.7871255400992], [-79.9461332108983, 32.7874000055838], [-79.9461933514464, 32.7875318055252], [-79.946621869248, 32.7873942142969], [-79.9467344140452, 32.787358077245], [-79.9468408805565, 32.7873238916452], [-79.9469407114237, 32.787291839396], [-79.9470598925579, 32.7872535704147], [-79.9472941195189, 32.7871783591979], [-79.9472266606231, 32.7870324237088], [-79.9470627832985, 32.7866721625564], [-79.9470035175075, 32.7865412471729], [-79.9469337850408, 32.7863872088106], [-79.9468849760772, 32.7862793918862], [-79.946831625134, 32.7861641723633], [-79.9467003960151, 32.7858921323819], [-79.9466445964558, 32.7857707150309], [-79.9463094280963, 32.7858796184594], [-79.9462482267842, 32.7857464449775], [-79.9461064478413, 32.7857948724515], [-79.9459941279824, 32.7858301207316], [-79.9461110702641, 32.7860870039322], [-79.9459914519952, 32.7861280611908], [-79.945931053705, 32.7859966683712], [-79.945554719045, 32.7861221614478]]], "type": "Polygon"}, "id": "435", "properties": {"OBJECTID": 3549, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 26360.99609375, "Shape__Length": 734.679929458241, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9499110871091, 32.783629520991, -79.9461173250007, 32.7871296739919], "geometry": {"coordinates": [[[-79.9488242885124, 32.7849030709312], [-79.9488211334885, 32.7849037084748], [-79.9488154228025, 32.7849049481292], [-79.948812162844, 32.7849055225444], [-79.9488064542426, 32.784906589064], [-79.9488031953482, 32.7849070751083], [-79.9487999342861, 32.7849075638395], [-79.948794230925, 32.7849083724789], [-79.9487909709162, 32.7849087737409], [-79.9487877119531, 32.7849091768155], [-79.9487820095765, 32.7849098150161], [-79.9487787526874, 32.7849100458579], [-79.9487754948209, 32.7849103578563], [-79.9487722379317, 32.7849105886979], [-79.9487665396922, 32.7849108833344], [-79.9487632838346, 32.7849110285104], [-79.9487600280095, 32.784911170981], [-79.9487567731726, 32.7849112313932], [-79.9487510770179, 32.7849113528946], [-79.9487478232452, 32.7849113249359], [-79.9487445694725, 32.784911296977], [-79.9487413156997, 32.7849112690181], [-79.9487356226291, 32.7849111344244], [-79.9487323698771, 32.7849110217016], [-79.9487291181894, 32.784910820608], [-79.9487258665017, 32.7849106195144], [-79.9487201765043, 32.7849102297272], [-79.9487169258374, 32.7849099438697], [-79.9487136751814, 32.7849096571103], [-79.9487104255462, 32.7849092855872], [-79.948704739719, 32.7849085495307], [-79.9487014900948, 32.7849081771056], [-79.9486982414805, 32.7849077208185], [-79.9486925577386, 32.7849068116271], [-79.9486893101561, 32.7849062696744], [-79.9486860626062, 32.7849057250163], [-79.9486803819379, 32.7849045606316], [-79.9486771343881, 32.7849040159733], [-79.9486714557834, 32.7849026802575], [-79.9486682102862, 32.7849019651698], [-79.9486625327352, 32.7849005419846], [-79.9486592882591, 32.7848997421331], [-79.9486536138252, 32.7848980601477], [-79.9486503693926, 32.784897256689], [-79.9486446959691, 32.7848954908414], [-79.9486390246092, 32.7848935536626], [-79.9486333532821, 32.7848916137784], [-79.9486276840188, 32.7848895025631], [-79.9486220157658, 32.7848873074855], [-79.9486163485448, 32.7848850267423], [-79.9486131092718, 32.7848837949557], [-79.948608256515, 32.784881436439], [-79.9486025924443, 32.7848788941903], [-79.9485993531391, 32.7848776651084], [-79.9485945014475, 32.7848752182206], [-79.9485888373775, 32.7848726759713], [-79.9485839877282, 32.7848700595557], [-79.9485783246473, 32.7848674352474], [-79.948575900871, 32.7848660400214], [-79.9485726626311, 32.7848647225683], [-79.9485702388549, 32.7848633273422], [-79.9485678150788, 32.784861932116], [-79.9485653913029, 32.7848605368899], [-79.9485629675269, 32.7848591416636], [-79.9485597303084, 32.7848577394464], [-79.9485573065326, 32.78485634422], [-79.9485548838214, 32.784854860623], [-79.9485524600458, 32.7848534653966], [-79.9485500372912, 32.7848519854065], [-79.9485468010941, 32.7848504984252], [-79.9485443783506, 32.7848490175332], [-79.9485419555963, 32.7848475375429], [-79.9485395328855, 32.7848460539456], [-79.9485371111631, 32.7848444882898], [-79.9485346884091, 32.7848430082993], [-79.9485322667195, 32.7848414399382], [-79.9485298449975, 32.7848398742823], [-79.9485274233081, 32.784838305921], [-79.9485250015861, 32.784836740265], [-79.9485225798969, 32.7848351719037], [-79.9485201592397, 32.7848335178769], [-79.948517737518, 32.7848319522207], [-79.9485153168609, 32.7848302981938], [-79.9485128951255, 32.7848286450595], [-79.9485104754926, 32.7848269946486], [-79.9485080548358, 32.7848253406216], [-79.948505634179, 32.7848236865945], [-79.9485032135115, 32.7848220334692], [-79.9485007928549, 32.7848203794421], [-79.948498373176, 32.7848186442581], [-79.9484959535406, 32.7848169054672], [-79.9484935328843, 32.7848152514399], [-79.9484895070563, 32.7848117808493], [-79.9484870884857, 32.7848099536876], [-79.9484846688508, 32.7848082148964], [-79.9484822491834, 32.7848064788105], [-79.9484782244098, 32.7848029207506], [-79.9484758057963, 32.7848010971956], [-79.9484733871937, 32.7847992727389], [-79.9484693634527, 32.7847956290132], [-79.9484669448039, 32.7847937197835], [-79.9484645272584, 32.7847918962375], [-79.94846050455, 32.7847881668462], [-79.948456482863, 32.7847843526911], [-79.9484540653149, 32.7847824407651], [-79.9484500425609, 32.7847786266006], [-79.9484460219423, 32.7847748124543], [-79.9484420012419, 32.7847708278605], [-79.9484379816559, 32.7847669280486], [-79.9484339620455, 32.7847629416603], [-79.9484315444629, 32.7847609440592], [-79.9484299434783, 32.7847588687046], [-79.948425923847, 32.7847548841195], [-79.9484243207275, 32.7847528087465], [-79.948421905234, 32.7847507263907], [-79.9484203042498, 32.784748651036], [-79.9484178877355, 32.7847466534439], [-79.948416285673, 32.7847445789817], [-79.948414683586, 32.7847424179431], [-79.9484130815346, 32.7847403425791], [-79.9484106671092, 32.7847382602323], [-79.948409065058, 32.7847361848683], [-79.9484074640279, 32.7847340247406], [-79.9484058619738, 32.7847318609967], [-79.9484034464814, 32.7847297786407], [-79.9484018465299, 32.7847276176203], [-79.948400245511, 32.7847254565907], [-79.9483986445139, 32.7847232937576], [-79.9483970424169, 32.7847211336206], [-79.9483954413982, 32.784718972591], [-79.948393027995, 32.7847168054802], [-79.9483914280302, 32.7847145569817], [-79.9483898270118, 32.784712395952], [-79.9483882259797, 32.7847101474442], [-79.9483866249614, 32.7847079864145], [-79.948385026032, 32.7847057406302], [-79.9483834260676, 32.7847034921316], [-79.9483818260598, 32.7847012472399], [-79.948380225039, 32.7846989978303], [-79.9483786250314, 32.7846967529385], [-79.948376238512, 32.7846922656384], [-79.9483746396156, 32.7846900171488], [-79.9483730406511, 32.7846876856898], [-79.9483714406874, 32.784685437191], [-79.9483698406774, 32.7846831039193], [-79.9483682406812, 32.7846808581257], [-79.9483658573268, 32.7846761967986], [-79.9483642583846, 32.784673863536], [-79.9483626594207, 32.7846715320769], [-79.9483602739101, 32.7846668725348], [-79.9483586749791, 32.7846645383704], [-79.9483562915821, 32.78465988065], [-79.9483546936725, 32.7846574617219], [-79.9483530936634, 32.78465512845], [-79.9483523092055, 32.7846527156125], [-79.9483507102641, 32.7846503823498], [-79.9483499257955, 32.7846479704139], [-79.9483475434206, 32.7846432279298], [-79.9483459455115, 32.7846408090016], [-79.9483451610431, 32.7846383970657], [-79.9483435620775, 32.7846359772266], [-79.9483427776092, 32.7846335652907], [-79.9483411796895, 32.7846311472642], [-79.9483403952214, 32.7846287353283], [-79.9483024107534, 32.7845404465766], [-79.9480093551428, 32.7838807061248], [-79.9478976774731, 32.783629520991], [-79.9475192000104, 32.7837646114866], [-79.9461173250007, 32.7841997756867], [-79.9463217094939, 32.7846558605887], [-79.9465190083003, 32.7850924712458], [-79.9467573078424, 32.7856372407894], [-79.9470103862724, 32.7861711382985], [-79.9473408336222, 32.7869007804833], [-79.9474470899616, 32.7871296739919], [-79.9499110871091, 32.7863384044169], [-79.9493707120374, 32.7851081540486], [-79.9492965594296, 32.7849414624606], [-79.9492647530408, 32.7848759866678], [-79.9492359348264, 32.7848421873117], [-79.949198861334, 32.7848147236756], [-79.9491554288343, 32.784794999963], [-79.9488242885124, 32.7849030709312]]], "type": "Polygon"}, "id": "436", "properties": {"OBJECTID": 3550, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 106593.1171875, "Shape__Length": 1395.52556231712, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9463553256429, 32.7852616049059, -79.9459218566056, 32.7856771132357], "geometry": {"coordinates": [[[-79.9460000999879, 32.785540912285], [-79.9460014975482, 32.785541705314], [-79.9460541604614, 32.7856719636844], [-79.9460573097227, 32.7856771132357], [-79.9460596124774, 32.7856763277346], [-79.9463553256429, 32.7855753369942], [-79.9463522201353, 32.7855679765288], [-79.9463118257636, 32.7854756847814], [-79.9463115930396, 32.7854751524982], [-79.9462700686768, 32.7853802510155], [-79.9462181547746, 32.7852616049059], [-79.9461559309727, 32.785281716439], [-79.9459765877764, 32.7853430960838], [-79.9459218566056, 32.7853616929378], [-79.9460000999879, 32.785540912285]]], "type": "Polygon"}, "id": "437", "properties": {"OBJECTID": 3551, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1579.70703125, "Shape__Length": 160.065102381553, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9465399496497, 32.7833723397287, -79.9444534308157, 32.7858834566494], "geometry": {"coordinates": [[[-79.9453108111152, 32.785570488991], [-79.9453361410281, 32.7856286908215], [-79.945393217292, 32.7857527053496], [-79.945454280019, 32.7858834566494], [-79.945682200988, 32.7858052758566], [-79.9457908495119, 32.7857681582877], [-79.9458692747987, 32.7857412604401], [-79.9460573097227, 32.7856771132357], [-79.9460541604614, 32.7856719636844], [-79.9460014975482, 32.785541705314], [-79.9460000999879, 32.785540912285], [-79.9459218566056, 32.7853616929378], [-79.9459765877764, 32.7853430960838], [-79.9461559309727, 32.785281716439], [-79.9462181547746, 32.7852616049059], [-79.9462700686768, 32.7853802510155], [-79.9463115930396, 32.7854751524982], [-79.9463118257636, 32.7854756847814], [-79.9463522201353, 32.7855679765288], [-79.9463553256429, 32.7855753369942], [-79.9463643179844, 32.7855722661328], [-79.9465399496497, 32.7855124438922], [-79.9464956051314, 32.7854119042833], [-79.9464536399155, 32.7853164516552], [-79.9464021923054, 32.7851978096417], [-79.9463752712026, 32.7851365876193], [-79.9463110885905, 32.7849946452132], [-79.9462532498978, 32.7848662425488], [-79.9461946000581, 32.7847378337722], [-79.9461779667778, 32.7847004934258], [-79.9461351960497, 32.7846043456514], [-79.9459466592981, 32.7841834449706], [-79.9457984684808, 32.7838573804877], [-79.9457128873219, 32.7836686943636], [-79.9455732869726, 32.7833723397287], [-79.9444534308157, 32.7836794810503], [-79.9445239351558, 32.7838365125702], [-79.9445286963263, 32.7838464323441], [-79.9448560451829, 32.7845608514515], [-79.9449812708212, 32.7848348347231], [-79.9451413713279, 32.7851851423422], [-79.9451627686918, 32.7852320563044], [-79.9453108111152, 32.785570488991]]], "type": "Polygon"}, "id": "438", "properties": {"OBJECTID": 3552, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 38748.5078125, "Shape__Length": 965.543147097919, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9449482599289, 32.7837338238987, -79.9436075801731, 32.7854103537266], "geometry": {"coordinates": [[[-79.9439077507455, 32.7838302687874], [-79.9438449439563, 32.7838439837041], [-79.9437185126321, 32.7838716697167], [-79.9436075801731, 32.7838959650603], [-79.9436732129455, 32.7840520964737], [-79.9437356503949, 32.7842033907797], [-79.943806812469, 32.7843732272479], [-79.9438147369168, 32.7843906487669], [-79.9438709364854, 32.7845196399851], [-79.9440205226655, 32.7848644464251], [-79.9442612328896, 32.7854103537266], [-79.9447091851143, 32.7853010039014], [-79.9449482599289, 32.7852423344956], [-79.9446653067624, 32.7846237334453], [-79.9445202511967, 32.7843078301302], [-79.9444615990278, 32.7841796784099], [-79.9443918695753, 32.7840258279942], [-79.9443332022224, 32.78389905138], [-79.9443102275652, 32.7838479995718], [-79.9442587297083, 32.7837338238987], [-79.9439077507455, 32.7838302687874]]], "type": "Polygon"}, "id": "439", "properties": {"OBJECTID": 3553, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16574.1171875, "Shape__Length": 582.589598932446, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9438294382785, 32.7839305916954, -79.9426197846774, 32.7848638590777], "geometry": {"coordinates": [[[-79.9429183766162, 32.7846474793261], [-79.9433100090684, 32.7845533651913], [-79.9433424555785, 32.7846283795912], [-79.9433772822186, 32.7847083926677], [-79.9434113224915, 32.7847862552815], [-79.9434453648899, 32.7848638590777], [-79.9435767261451, 32.784832181092], [-79.9438294382785, 32.7847715673377], [-79.9436739006197, 32.784465882274], [-79.9436541196428, 32.7844198423537], [-79.9435774134791, 32.7842375856478], [-79.9434493385366, 32.7839305916954], [-79.9433710305778, 32.7839478673164], [-79.9432755968222, 32.7839686897811], [-79.9426197846774, 32.7841124899216], [-79.9426443769754, 32.7841642423337], [-79.9427325639374, 32.7843387799488], [-79.9428880868483, 32.7845960213383], [-79.9429183766162, 32.7846474793261]]], "type": "Polygon"}, "id": "440", "properties": {"OBJECTID": 3554, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8894.18359375, "Shape__Length": 426.512049928155, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9441226521592, 32.7845533651913, -79.9429181818314, 32.7856068606804], "geometry": {"coordinates": [[[-79.9429181818314, 32.7846481359826], [-79.9434659978583, 32.7856068606804], [-79.9441226521592, 32.7854448199456], [-79.9438294382785, 32.7847715673377], [-79.9435767261451, 32.784832181092], [-79.9434453648899, 32.7848638590777], [-79.9434113224915, 32.7847862552815], [-79.9433772822186, 32.7847083926677], [-79.9433424555785, 32.7846283795912], [-79.9433100090684, 32.7845533651913], [-79.9429181818314, 32.7846481359826]]], "type": "Polygon"}, "id": "441", "properties": {"OBJECTID": 3555, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9570.203125, "Shape__Length": 445.592032438732, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9425853533119, 32.7841439892421, -79.9420825084035, 32.7847398923782], "geometry": {"coordinates": [[[-79.9420825084035, 32.7842308436829], [-79.9422919249271, 32.7847398923782], [-79.9423008998526, 32.7847377352237], [-79.9424583778142, 32.7846991534157], [-79.9424349058475, 32.7846219843124], [-79.9424067166821, 32.7845313740606], [-79.9423714636718, 32.7844194843633], [-79.9424620820332, 32.7843933822125], [-79.9425853533119, 32.7843579405467], [-79.9425114630098, 32.7842119594529], [-79.9424789330996, 32.7841439892421], [-79.9424650672375, 32.7841469617761], [-79.9422978508954, 32.7841836557188], [-79.9420825084035, 32.7842308436829]]], "type": "Polygon"}, "id": "442", "properties": {"OBJECTID": 3556, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2283.171875, "Shape__Length": 230.371923691555, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9421973208092, 32.7847188322041, -79.9412764402891, 32.7859811579168], "geometry": {"coordinates": [[[-79.9412764402891, 32.7847867141196], [-79.9413463706035, 32.7849133885971], [-79.9413880125117, 32.784990655622], [-79.9414390861263, 32.7850854231859], [-79.9415178701254, 32.7852316069144], [-79.9415891756523, 32.7853567456019], [-79.9416600936306, 32.7854819891156], [-79.9417378286459, 32.7856198252601], [-79.9418268877994, 32.7857776943668], [-79.9419416488463, 32.7859811579168], [-79.9421351372814, 32.785933505229], [-79.9420182768962, 32.7857269574711], [-79.9421411299941, 32.7856943903696], [-79.9420742021197, 32.7855306354065], [-79.9420165556171, 32.7853895886149], [-79.9419736387505, 32.7853988680124], [-79.9419029711391, 32.7852735483906], [-79.9421973208092, 32.7851955066828], [-79.9421562179239, 32.7850903427245], [-79.9421463246254, 32.7850650265414], [-79.9421071842125, 32.7849648793094], [-79.9420692192203, 32.7848677372237], [-79.9420417729875, 32.7847975120736], [-79.9419504650134, 32.7848160758287], [-79.9419442089857, 32.7848036368237], [-79.9418146987645, 32.7848270069377], [-79.941683206589, 32.7848526098488], [-79.9416429275458, 32.7847188322041], [-79.9412764402891, 32.7847867141196]]], "type": "Polygon"}, "id": "443", "properties": {"OBJECTID": 3557, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8233.671875, "Shape__Length": 499.576493048667, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9433237524011, 32.7842313005731, -79.9410894942216, 32.785933505229], "geometry": {"coordinates": [[[-79.9420742021197, 32.7855306354065], [-79.9421411299941, 32.7856943903696], [-79.9420182768962, 32.7857269574711], [-79.9421351372814, 32.785933505229], [-79.942231239935, 32.7859148637364], [-79.9426612449297, 32.7858071175514], [-79.9433237524011, 32.7856423837692], [-79.9432281328129, 32.7854742377112], [-79.9431711779965, 32.785373794459], [-79.9430577726058, 32.7851743245048], [-79.9428593023711, 32.7852238555888], [-79.9426418883482, 32.7852781132823], [-79.9424887850404, 32.7853029071178], [-79.9423022287357, 32.7853520992885], [-79.9422859954644, 32.7853172942082], [-79.9422488054973, 32.7853272716328], [-79.9422337990808, 32.7852888436592], [-79.9423374561943, 32.7852636262925], [-79.9430145336641, 32.7850976232406], [-79.9429632814788, 32.785007234117], [-79.9427435413658, 32.7846294875194], [-79.9426429956908, 32.784463120139], [-79.9425830189813, 32.7843584244965], [-79.9423694474874, 32.7844199683539], [-79.9424564426284, 32.7846982384601], [-79.9422897124226, 32.7847403656519], [-79.9420805918383, 32.7842313005731], [-79.9416977704758, 32.7843151997561], [-79.9410894942216, 32.7844485069679], [-79.9412764402891, 32.7847867141196], [-79.9412785482348, 32.7847863238301], [-79.9416429275458, 32.7847188322041], [-79.941683206589, 32.7848526098488], [-79.9418146987645, 32.7848270069377], [-79.9419442089857, 32.7848036368237], [-79.9419504650134, 32.7848160758287], [-79.9420417729875, 32.7847975120736], [-79.9420692192203, 32.7848677372237], [-79.9421071842125, 32.7849648793094], [-79.9421463246254, 32.7850650265414], [-79.9421562179239, 32.7850903427245], [-79.9421973208092, 32.7851955066828], [-79.9419029711391, 32.7852735483906], [-79.9419736387505, 32.7853988680124], [-79.9420165556171, 32.7853895886149], [-79.9420742021197, 32.7855306354065]]], "type": "Polygon"}, "id": "444", "properties": {"OBJECTID": 3558, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 23472.482421875, "Shape__Length": 1127.95651889798, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9436476204511, 32.7857557630963, -79.942918664556, 32.7863455779101], "geometry": {"coordinates": [[[-79.942918664556, 32.7858719627241], [-79.9430392997696, 32.7861887735189], [-79.9430566581233, 32.7862333334482], [-79.9430688984238, 32.7862302611261], [-79.9431130605175, 32.7863455779101], [-79.9436476204511, 32.7862059686495], [-79.9436287981051, 32.7861479074195], [-79.9436173504697, 32.7861527073427], [-79.9435185517685, 32.7859808266183], [-79.9434810742009, 32.7859181383825], [-79.9433886692641, 32.7857557630963], [-79.9431193882408, 32.7858229298692], [-79.9430443188166, 32.785841437226], [-79.942918664556, 32.7858719627241]]], "type": "Polygon"}, "id": "445", "properties": {"OBJECTID": 3559, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3875.75, "Shape__Length": 252.362280213108, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.943799797897, 32.7858719627241, -79.9424641818077, 32.7867116318001], "geometry": {"coordinates": [[[-79.942918664556, 32.7858719627241], [-79.9427970868153, 32.7859017513497], [-79.9427040693108, 32.7859243970404], [-79.9424641818077, 32.7859827132739], [-79.9425988077709, 32.7862189835164], [-79.9426657148411, 32.7863371583621], [-79.942707938548, 32.7864109687183], [-79.9427549369491, 32.7864935834528], [-79.9428202507797, 32.7866089099779], [-79.9428783955211, 32.7867116318001], [-79.9430807917487, 32.7866590060983], [-79.9432350418773, 32.7866185051246], [-79.943421933136, 32.7865698681255], [-79.943799797897, 32.7864712523191], [-79.9437073636761, 32.7863111117686], [-79.9436476204511, 32.7862059686495], [-79.9431130605175, 32.7863455779101], [-79.9430688984238, 32.7862302611261], [-79.9430566581233, 32.7862333334482], [-79.9430392997696, 32.7861887735189], [-79.942918664556, 32.7858719627241]]], "type": "Polygon"}, "id": "446", "properties": {"OBJECTID": 3560, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7365.58203125, "Shape__Length": 436.067966613741, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9442753571916, 32.7865958818629, -79.9429461867121, 32.7875914856195], "geometry": {"coordinates": [[[-79.9435669603727, 32.7866752193331], [-79.9432803229605, 32.7867500762708], [-79.9432010136519, 32.7867707475889], [-79.9431231241234, 32.7867910785033], [-79.9429461867121, 32.7868372659952], [-79.9430543083395, 32.7870368031545], [-79.9431478126385, 32.7872081722877], [-79.9432783202846, 32.7874538664569], [-79.9433508915743, 32.7875914856195], [-79.9436023387665, 32.7875205867132], [-79.9436666941886, 32.7875102256609], [-79.9437555295566, 32.7874831214189], [-79.9438447420732, 32.7874559022283], [-79.9439296160833, 32.7874340258722], [-79.9440876622462, 32.7873945314623], [-79.9442753571916, 32.7873415983284], [-79.9442100614973, 32.787221214356], [-79.9441248156197, 32.7870640463757], [-79.9440782612753, 32.7869782173593], [-79.9440440179078, 32.7869150828446], [-79.9438708875113, 32.7865958818629], [-79.9435669603727, 32.7866752193331]]], "type": "Polygon"}, "id": "447", "properties": {"OBJECTID": 3561, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11671.611328125, "Shape__Length": 434.050223384533, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9431939694416, 32.7868782541619, -79.9409584348419, 32.7880307160854], "geometry": {"coordinates": [[[-79.9413173420438, 32.7880142639017], [-79.9415940815892, 32.7879364255746], [-79.9416303619622, 32.7880307160854], [-79.9417805176892, 32.7879927562336], [-79.9420636884888, 32.7879212465433], [-79.9421967057687, 32.787887693156], [-79.9422211889507, 32.7878812907746], [-79.9423052449105, 32.7878599423511], [-79.9423648176153, 32.7878447365558], [-79.9424186814958, 32.7878308557808], [-79.9424243934613, 32.7878294459864], [-79.9424831537223, 32.787814233111], [-79.9425557834936, 32.7877957924709], [-79.9426806459235, 32.7877637129218], [-79.9427467501873, 32.7877466749446], [-79.9428699793119, 32.7877151835154], [-79.9429271041191, 32.7877005587231], [-79.9431939694416, 32.7876319095674], [-79.9430937581705, 32.7874421518249], [-79.9430468525188, 32.7873518083912], [-79.9430277526246, 32.7873166819389], [-79.943005465458, 32.7872760294582], [-79.9429266891477, 32.7871302643095], [-79.9428574437044, 32.7870036534738], [-79.9427898098135, 32.7868782541619], [-79.9427065652823, 32.7869000418982], [-79.9424291018767, 32.7869707447261], [-79.9423736106072, 32.7869847818785], [-79.9422495657692, 32.7870165218669], [-79.9420896171053, 32.7870572311619], [-79.9419492518015, 32.7870931260678], [-79.9418235755532, 32.7871251960197], [-79.9416660752129, 32.7871652387422], [-79.9416489372997, 32.787169642054], [-79.941415505538, 32.7872320460296], [-79.9413151129384, 32.7872588384412], [-79.9412310448385, 32.7872813909272], [-79.9411461611346, 32.7873040210695], [-79.9410522980011, 32.7873290634008], [-79.9409584348419, 32.7873541913346], [-79.9410293005305, 32.7874811645019], [-79.9410412399587, 32.7875029145988], [-79.9411089009988, 32.7876258215632], [-79.9411661892183, 32.787731976409], [-79.941232999667, 32.7878580540114], [-79.9412870989188, 32.78795885316], [-79.9413173420438, 32.7880142639017]]], "type": "Polygon"}, "id": "448", "properties": {"OBJECTID": 3562, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22711.548828125, "Shape__Length": 646.468518658454, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9416303619622, 32.7879364255746, -79.9413173420438, 32.7880983143795], "geometry": {"coordinates": [[[-79.9413173420438, 32.7880142639017], [-79.9413618819139, 32.7880983143795], [-79.9416303619622, 32.7880307160854], [-79.9415940815892, 32.7879364255746], [-79.9413173420438, 32.7880142639017]]], "type": "Polygon"}, "id": "449", "properties": {"OBJECTID": 3563, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 401.63671875, "Shape__Length": 88.9903229341682, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9412024745225, 32.7863475084858, -79.9404639985378, 32.7868486010581], "geometry": {"coordinates": [[[-79.9410123870872, 32.7863475084858], [-79.9408720266891, 32.7863831433628], [-79.940504796454, 32.7864766034849], [-79.9404639985378, 32.7864866429204], [-79.940526164935, 32.7865929259869], [-79.9405277501648, 32.7865963748054], [-79.9406105747091, 32.786743377828], [-79.9406695001437, 32.7868486010581], [-79.9412024745225, 32.7867061542157], [-79.941146810681, 32.786600186604], [-79.9410123870872, 32.7863475084858]]], "type": "Polygon"}, "id": "450", "properties": {"OBJECTID": 3564, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3277.7109375, "Shape__Length": 231.124014134736, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9427199477703, 32.7860247035078, -79.9406695001437, 32.7872325668737], "geometry": {"coordinates": [[[-79.9406695001437, 32.7868486010581], [-79.9406750692924, 32.786858957257], [-79.940753934353, 32.7869970797959], [-79.9408136756625, 32.7871021395733], [-79.9408455368411, 32.7871583346072], [-79.9408869396775, 32.7872325668737], [-79.9412093383847, 32.7871463651669], [-79.941309729798, 32.7871195746367], [-79.9414068569164, 32.787093700002], [-79.9414925569094, 32.7870707331447], [-79.9415994798321, 32.787042108641], [-79.9416492593262, 32.7870294824997], [-79.9417276026537, 32.7870094585584], [-79.9418271636518, 32.7869840330171], [-79.9420173071466, 32.7869356003313], [-79.9421731768639, 32.7868958009887], [-79.9423233334947, 32.7868575852826], [-79.942429422642, 32.7868304976946], [-79.9426571064253, 32.7867724205366], [-79.9427199477703, 32.7867560424832], [-79.9425773567248, 32.7865056141577], [-79.942436362156, 32.7862576912364], [-79.9423041374131, 32.7860247035078], [-79.9420887279699, 32.786077129713], [-79.9419296079187, 32.7861166428974], [-79.9417990471698, 32.7861491855137], [-79.941622790168, 32.7861931043439], [-79.9414897825825, 32.7862261404131], [-79.9414669318572, 32.7862319570472], [-79.9414204180714, 32.7862436662428], [-79.9413322847434, 32.7862660095586], [-79.9411690728029, 32.7863075470462], [-79.9410123870872, 32.7863475084858], [-79.941146810681, 32.786600186604], [-79.9412024745225, 32.7867061542157], [-79.9406695001437, 32.7868486010581]]], "type": "Polygon"}, "id": "451", "properties": {"OBJECTID": 3565, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 19586.681640625, "Shape__Length": 641.495576785248, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9407345810252, 32.7865213170978, -79.9395805179112, 32.787458958078], "geometry": {"coordinates": [[[-79.9395805179112, 32.7867036330323], [-79.9400074072606, 32.787458958078], [-79.9407345810252, 32.7872696633288], [-79.9405322600824, 32.786913571321], [-79.9403841309639, 32.7866507237528], [-79.940310042252, 32.7865213170978], [-79.9397543365621, 32.7866596986987], [-79.9395805179112, 32.7867036330323]]], "type": "Polygon"}, "id": "452", "properties": {"OBJECTID": 3566, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9240.943359375, "Shape__Length": 389.979468701449, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9400074072606, 32.7867036330323, -79.9388395269011, 32.7876281080092], "geometry": {"coordinates": [[[-79.9395805179112, 32.7867036330323], [-79.9394271012966, 32.7867423338714], [-79.9388395269011, 32.786892117457], [-79.9390001533544, 32.7871304209387], [-79.9391520360769, 32.7873519004041], [-79.9392039615067, 32.7874305190342], [-79.9393087158674, 32.787580464604], [-79.9393447468626, 32.7876281080092], [-79.9397707279922, 32.7875205588269], [-79.9400074072606, 32.787458958078], [-79.9395805179112, 32.7867036330323]]], "type": "Polygon"}, "id": "453", "properties": {"OBJECTID": 3567, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8980.35546875, "Shape__Length": 386.534718834296, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.939195563654, 32.7869294737786, -79.9381842739352, 32.7878118177651], "geometry": {"coordinates": [[[-79.9381842739352, 32.7870593151318], [-79.9384511981539, 32.7874155622318], [-79.938533687063, 32.7875404246219], [-79.9385492391576, 32.7875656594392], [-79.9384432083525, 32.787598923567], [-79.9385856777735, 32.7878118177651], [-79.9386957136156, 32.7877830279903], [-79.9388188063782, 32.7877609500999], [-79.9389504209126, 32.7877277334699], [-79.939195563654, 32.7876658631786], [-79.939028921422, 32.7874237967314], [-79.9386935076731, 32.7869294737786], [-79.9383123969845, 32.787026756996], [-79.9381842739352, 32.7870593151318]]], "type": "Polygon"}, "id": "454", "properties": {"OBJECTID": 3568, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6699.54296875, "Shape__Length": 365.627952340721, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9385856777735, 32.7870593138534, -79.9377709374688, 32.78789329606], "geometry": {"coordinates": [[[-79.9377709374688, 32.787165000762], [-79.9378158850492, 32.7872763862258], [-79.9378109131964, 32.7872976913145], [-79.9378199262116, 32.7873289361028], [-79.9379196506304, 32.787433240598], [-79.9380613543441, 32.7873970399566], [-79.938146107288, 32.7875222442195], [-79.9382200432705, 32.7876314497749], [-79.9382560104156, 32.7876842081636], [-79.9382987822496, 32.7877460574762], [-79.9382340735541, 32.7877633612904], [-79.9382791850496, 32.78789329606], [-79.9383801148314, 32.7878644356608], [-79.9385856777735, 32.7878118177651], [-79.9384432083525, 32.787598923567], [-79.9385492391576, 32.7875656594392], [-79.938533687063, 32.7875404246219], [-79.9384511981539, 32.7874155622318], [-79.9381844383686, 32.7870593138534], [-79.9380452087893, 32.7871024649095], [-79.9378901679641, 32.7871441474386], [-79.9377709374688, 32.787165000762]]], "type": "Polygon"}, "id": "455", "properties": {"OBJECTID": 3569, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4342.38671875, "Shape__Length": 342.979680870144, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9382987822496, 32.787165000762, -79.9373562752759, 32.7880100103319], "geometry": {"coordinates": [[[-79.9377709374688, 32.787165000762], [-79.9373562752759, 32.7872787350003], [-79.9374596956434, 32.7874253770893], [-79.9375390906431, 32.7875303747106], [-79.9375910575826, 32.7876054727304], [-79.9376070394281, 32.7876291494224], [-79.9377485503349, 32.7878337015242], [-79.9378710114958, 32.7880100103319], [-79.9382791850496, 32.78789329606], [-79.9382340735541, 32.7877633612904], [-79.9382987822496, 32.7877460574762], [-79.9382200432705, 32.7876314497749], [-79.938146107288, 32.7875222442195], [-79.9380613543441, 32.7873970399566], [-79.9379196506304, 32.787433240598], [-79.9378199262116, 32.7873289361028], [-79.9378109131964, 32.7872976913145], [-79.9378158850492, 32.7872763862258], [-79.9377709374688, 32.787165000762]]], "type": "Polygon"}, "id": "456", "properties": {"OBJECTID": 3570, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5808.453125, "Shape__Length": 344.710137956972, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9395961154652, 32.7880586923916, -79.9391530986106, 32.7883082735758], "geometry": {"coordinates": [[[-79.9394969811072, 32.7880586923916], [-79.9392896955069, 32.788111527755], [-79.9392040022251, 32.7881337211726], [-79.9392338944694, 32.7882179033662], [-79.9391530986106, 32.7882387648134], [-79.9391847962791, 32.7883082735758], [-79.9393455735241, 32.7882666319044], [-79.9395961154652, 32.7882025746584], [-79.9395769311721, 32.7881744063875], [-79.9395505414979, 32.7881367253254], [-79.9394969811072, 32.7880586923916]]], "type": "Polygon"}, "id": "457", "properties": {"OBJECTID": 3604, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 875.08203125, "Shape__Length": 134.890407471481, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9393968083109, 32.7884673420926, -79.9392288784938, 32.7886273792009], "geometry": {"coordinates": [[[-79.9393968083109, 32.7886030323779], [-79.9393211686268, 32.7884673420926], [-79.9392288784938, 32.7884967786998], [-79.9393021392186, 32.7886273792009], [-79.9393968083109, 32.7886030323779]]], "type": "Polygon"}, "id": "458", "properties": {"OBJECTID": 3605, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 212.9765625, "Shape__Length": 60.9718936941577, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9397975138294, 32.7877860313506, -79.9379552145146, 32.7887776689807], "geometry": {"coordinates": [[[-79.9383684905057, 32.7887189431664], [-79.9383686555005, 32.7887181058908], [-79.9386483779525, 32.7886447262715], [-79.9387221336871, 32.7887776689807], [-79.9388442928275, 32.7887455572442], [-79.9391225928524, 32.7886736684679], [-79.9393021392186, 32.7886273792009], [-79.9392288784938, 32.7884967786998], [-79.9393211686268, 32.7884673420926], [-79.9393968083109, 32.7886030323779], [-79.9394612837865, 32.788586238165], [-79.9397975138294, 32.7885005027014], [-79.9397280225323, 32.7883944154976], [-79.9395961154652, 32.7882025746584], [-79.9393455735241, 32.7882666319044], [-79.9391847962791, 32.7883082735758], [-79.9391530986106, 32.7882387648134], [-79.9392338944694, 32.7882179033662], [-79.9392040022251, 32.7881337211726], [-79.9392896955069, 32.788111527755], [-79.9394969811072, 32.7880586923916], [-79.9394929722206, 32.7880539320238], [-79.9394553432115, 32.7880038723202], [-79.9393960813813, 32.7879263039657], [-79.9393576359058, 32.7878765807532], [-79.9392871422125, 32.7877860313506], [-79.9385763515626, 32.7879654962256], [-79.9379552145146, 32.7881315620327], [-79.9381071642287, 32.788347461045], [-79.9382967265442, 32.7886147942006], [-79.9383159167796, 32.7886423603015], [-79.9383678777345, 32.7887180594612], [-79.9383684905057, 32.7887189431664]]], "type": "Polygon"}, "id": "459", "properties": {"OBJECTID": 3606, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15073.494140625, "Shape__Length": 663.093274854552, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9387221336871, 32.7886447262715, -79.9383684905057, 32.7888470874355], "geometry": {"coordinates": [[[-79.9383684905057, 32.7887189431664], [-79.938457427784, 32.7888470874355], [-79.9387218669774, 32.7887777397159], [-79.9387221336871, 32.7887776689807], [-79.9386483779525, 32.7886447262715], [-79.9383686555005, 32.7887181058908], [-79.9383684905057, 32.7887189431664]]], "type": "Polygon"}, "id": "460", "properties": {"OBJECTID": 3607, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 611.732421875, "Shape__Length": 102.669173611396, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9384909858145, 32.7897683218645, -79.9367648523282, 32.7911814132924], "geometry": {"coordinates": [[[-79.9384909858145, 32.7907477505199], [-79.9384909036398, 32.7907476596233], [-79.9378513263434, 32.7897683218645], [-79.9371567855767, 32.7900931108485], [-79.9367648523282, 32.7902761096049], [-79.9369350069611, 32.7905338286328], [-79.9369382065444, 32.7905382357489], [-79.9369397979528, 32.790541171525], [-79.9369413935783, 32.7905437610327], [-79.9369429902385, 32.7905463532548], [-79.937012487164, 32.7906517549287], [-79.9370156752743, 32.7906572802198], [-79.937335952111, 32.7911476310268], [-79.9373583212746, 32.7911814132924], [-79.9375708915156, 32.7910962429693], [-79.9378185881237, 32.7909992637733], [-79.9384909858145, 32.7907477505199]]], "type": "Polygon"}, "id": "461", "properties": {"OBJECTID": 3608, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 19630.009765625, "Shape__Length": 561.777398056343, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9388364209677, 32.7896235395515, -79.9378513263434, 32.7907477505199], "geometry": {"coordinates": [[[-79.9378513263434, 32.7897683218645], [-79.9384909036398, 32.7907476596233], [-79.9384909858145, 32.7907477505199], [-79.9384912292849, 32.7907476597431], [-79.9388364209677, 32.7906286600914], [-79.9387542479599, 32.7905131057765], [-79.9386688416651, 32.7903852142005], [-79.9386036577099, 32.7902876093956], [-79.938562468002, 32.7902180163191], [-79.9385097524876, 32.7901400984893], [-79.9384683250285, 32.7900811125155], [-79.9383652497946, 32.7899298370346], [-79.9381607581661, 32.7896235395515], [-79.9378514659393, 32.7897682563405], [-79.9378513263434, 32.7897683218645]]], "type": "Polygon"}, "id": "462", "properties": {"OBJECTID": 3609, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6048.912109375, "Shape__Length": 381.841857553807, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9388237761185, 32.789410508768, -79.9381605288438, 32.7899298370346], "geometry": {"coordinates": [[[-79.9388237761185, 32.7897147526259], [-79.9388227304324, 32.7897132068281], [-79.9387587739695, 32.7896202238427], [-79.9387204190184, 32.7895630231872], [-79.9386165080876, 32.789410508768], [-79.9381605288438, 32.7896236962844], [-79.9383652497946, 32.7899298370346], [-79.938823214882, 32.7897148983647], [-79.9388237761185, 32.7897147526259]]], "type": "Polygon"}, "id": "463", "properties": {"OBJECTID": 3610, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2706.255859375, "Shape__Length": 209.466522571969, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9390202663473, 32.7897147526259, -79.9383652497946, 32.7902178719935], "geometry": {"coordinates": [[[-79.938823214882, 32.7897148983647], [-79.9383652497946, 32.7899298370346], [-79.9384683250285, 32.7900811125155], [-79.9385100099733, 32.7901399086323], [-79.9385627583414, 32.7902178465873], [-79.9385627761832, 32.7902178719935], [-79.9389283146881, 32.7900469621949], [-79.9390199624335, 32.7900041117291], [-79.9390202663473, 32.7900040548434], [-79.9390201509529, 32.7900038861012], [-79.9389705894413, 32.7899313860975], [-79.9389262144197, 32.7898662088686], [-79.938924229795, 32.7898632940585], [-79.9388237761185, 32.7897147526259], [-79.938823214882, 32.7897148983647]]], "type": "Polygon"}, "id": "464", "properties": {"OBJECTID": 3611, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2571.111328125, "Shape__Length": 204.863816215937, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9292519579913, 32.7899388619726, -79.9270991549486, 32.791418635037], "geometry": {"coordinates": [[[-79.9270991549486, 32.7907282557704], [-79.927099396732, 32.7907303880295], [-79.9272029627693, 32.7913065716586], [-79.9272772493456, 32.791418635037], [-79.9286360794149, 32.7908111992885], [-79.9291489024413, 32.7905908031484], [-79.9292519579913, 32.7905464355869], [-79.9290406582864, 32.7901959198895], [-79.9288818880145, 32.7899406945481], [-79.9288807499281, 32.7899388619726], [-79.9270991549486, 32.7907282557704]]], "type": "Polygon"}, "id": "465", "properties": {"OBJECTID": 3763, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21469.82421875, "Shape__Length": 657.396933715568, "ZONE_BASE": "HI", "__folium_color": "#9467bd"}, "type": "Feature"}, {"bbox": [-79.9288807499281, 32.7893547510459, -79.9270363830236, 32.7907282557704], "geometry": {"coordinates": [[[-79.9288807499281, 32.7899388619726], [-79.9285177609355, 32.7893547510459], [-79.9270363830236, 32.7900111282262], [-79.9270695134852, 32.7903154000284], [-79.9270850629906, 32.790572722242], [-79.9270898547962, 32.7906462107648], [-79.9270991549486, 32.7907282557704], [-79.9288807499281, 32.7899388619726]]], "type": "Polygon"}, "id": "466", "properties": {"OBJECTID": 3764, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 17892.173828125, "Shape__Length": 593.10104656398, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9285881284215, 32.7866141455657, -79.9266907847039, 32.7893769705928], "geometry": {"coordinates": [[[-79.9268904651449, 32.7887886676041], [-79.9268938575212, 32.7887882888266], [-79.9277536358316, 32.7887119714269], [-79.9277668049692, 32.7888213641973], [-79.9278336052032, 32.7893769705928], [-79.9283144088857, 32.7891654294398], [-79.9285744995149, 32.7890509907819], [-79.9285881284215, 32.7888547433188], [-79.9282035402855, 32.7866141455657], [-79.9275928955129, 32.7868332625025], [-79.9275327431312, 32.7868543865157], [-79.9275092581879, 32.7868626344612], [-79.9275092873849, 32.7868627781092], [-79.9273679104792, 32.7869133564218], [-79.9273548135047, 32.7869182332614], [-79.9272338725329, 32.7869618408289], [-79.9266907847039, 32.7871557901066], [-79.9267794988501, 32.7879219138467], [-79.9268904651449, 32.7887886676041]]], "type": "Polygon"}, "id": "467", "properties": {"OBJECTID": 3828, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 50569.0859375, "Shape__Length": 1004.4253172759, "ZONE_BASE": "MU-2", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9334065724611, 32.7852336477169, -79.9327589562117, 32.7857918057614], "geometry": {"coordinates": [[[-79.9327589562117, 32.7854167901557], [-79.9329440736615, 32.7857131284549], [-79.93297026047, 32.7857004705154], [-79.9330317874612, 32.7857918057614], [-79.9334065724611, 32.7856130507778], [-79.9331427415712, 32.7852336477169], [-79.9327589562117, 32.7854167901557]]], "type": "Polygon"}, "id": "468", "properties": {"OBJECTID": 3894, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2885.4140625, "Shape__Length": 216.867750945355, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9335200957879, 32.7854167901557, -79.9323987077543, 32.78608880474], "geometry": {"coordinates": [[[-79.9327414997996, 32.7860460282939], [-79.932977884177, 32.7859420883552], [-79.9330290128459, 32.7860188133545], [-79.9330761562048, 32.78608880474], [-79.9331882384875, 32.7860374693285], [-79.9331850424115, 32.7860327167407], [-79.9331346724754, 32.7859604643157], [-79.9335200957879, 32.7857766486549], [-79.9334065724611, 32.7856130507778], [-79.9330317874612, 32.7857918057614], [-79.93297026047, 32.7857004705154], [-79.9329440736615, 32.7857131284549], [-79.9327589562117, 32.7854167901557], [-79.9324136282126, 32.785581624247], [-79.9324103491772, 32.785583659936], [-79.9324070660062, 32.7855860337774], [-79.9324054117825, 32.7855882540917], [-79.9324037554745, 32.7855906448349], [-79.9324020959704, 32.7855932096045], [-79.9324004376087, 32.7855958555494], [-79.932399590547, 32.7855985969538], [-79.9323995558528, 32.785601433827], [-79.9323987077543, 32.7856042599949], [-79.9323994865525, 32.7856071003596], [-79.932399452928, 32.7856098497641], [-79.9324002327738, 32.7856126044635], [-79.9324018260264, 32.7856152823902], [-79.9324034224947, 32.785617871965], [-79.9327022157323, 32.7860651823871], [-79.9327414997996, 32.7860460282939]]], "type": "Polygon"}, "id": "469", "properties": {"OBJECTID": 3895, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4992.310546875, "Shape__Length": 384.636077110615, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9332519198477, 32.7859420883552, -79.9323763972513, 32.7866939563069], "geometry": {"coordinates": [[[-79.9324009355715, 32.7866002698542], [-79.932452758975, 32.7865752154344], [-79.932533449308, 32.7866939563069], [-79.9326112045801, 32.7866553813877], [-79.9326161136655, 32.7866531064981], [-79.9326963114263, 32.7866146358039], [-79.9327274108252, 32.7865996155719], [-79.9327814203299, 32.7865738027015], [-79.9328403431111, 32.7865452811624], [-79.9328657146294, 32.7865329624354], [-79.9329508212595, 32.7864922148715], [-79.9330465709866, 32.7864459758989], [-79.9332519198477, 32.7863519022955], [-79.9331943986285, 32.7862656713096], [-79.9331320828711, 32.7861723551481], [-79.9330761562048, 32.78608880474], [-79.9330290128459, 32.7860188133545], [-79.932977884177, 32.7859420883552], [-79.9327414997996, 32.7860460282939], [-79.932792629402, 32.7861226650224], [-79.9328261759708, 32.7861736408287], [-79.9328285869113, 32.7861759813809], [-79.9328309978925, 32.7861784932823], [-79.9328342202348, 32.7861810961315], [-79.9328374509019, 32.7861829306891], [-79.9328406900208, 32.7861842485683], [-79.9328439312359, 32.7861853076387], [-79.9328471745474, 32.7861861079005], [-79.9328504241939, 32.7861865646178], [-79.9328536758815, 32.7861867670352], [-79.9328569307769, 32.7861867070461], [-79.9328601898282, 32.786186307101], [-79.9328634509756, 32.7861856483473], [-79.9328667184579, 32.7861846460491], [-79.932869986989, 32.7861834706075], [-79.9328839007149, 32.7861765495305], [-79.9329398251574, 32.7862603588357], [-79.9329370845057, 32.7862849036505], [-79.9328413307083, 32.7863314851977], [-79.932757033439, 32.7863725833437], [-79.9326719226253, 32.7864135877588], [-79.9325876251969, 32.7864546857884], [-79.9325025142216, 32.7864957775641], [-79.9323763972513, 32.786562263383], [-79.9324009355715, 32.7866002698542]]], "type": "Polygon"}, "id": "470", "properties": {"OBJECTID": 3896, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3333.83203125, "Shape__Length": 329.469278739585, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9341301021118, 32.7857766486549, -79.9317983008649, 32.7876042527553], "geometry": {"coordinates": [[[-79.9324009355715, 32.7866002698542], [-79.9323763972513, 32.786562263383], [-79.932263192333, 32.7866166905823], [-79.93214475107, 32.7866639997755], [-79.9317983008649, 32.7868096719194], [-79.9319381520871, 32.7875390597718], [-79.9319811443377, 32.7876042527553], [-79.9327306093925, 32.7872694930463], [-79.9328549373652, 32.7872149144214], [-79.932973537348, 32.7871629470339], [-79.9330905039276, 32.7871114838445], [-79.9331943836234, 32.7870657458208], [-79.9332982632214, 32.7870200068074], [-79.9341301021118, 32.7866548822506], [-79.933914237287, 32.786344359811], [-79.933758343192, 32.7861194063893], [-79.9335704649125, 32.7858489847816], [-79.9335200957879, 32.7857766486549], [-79.9331346724754, 32.7859604643157], [-79.9331850424115, 32.7860327167407], [-79.9331882384875, 32.7860374693285], [-79.9330761562048, 32.78608880474], [-79.9331320828711, 32.7861723551481], [-79.9331943986285, 32.7862656713096], [-79.9332519198477, 32.7863519022955], [-79.9330465709866, 32.7864459758989], [-79.9329508212595, 32.7864922148715], [-79.9328657146294, 32.7865329624354], [-79.9328403431111, 32.7865452811624], [-79.9327814203299, 32.7865738027015], [-79.9327274108252, 32.7865996155719], [-79.9326963114263, 32.7866146358039], [-79.9326161136655, 32.7866531064981], [-79.9326112045801, 32.7866553813877], [-79.932533449308, 32.7866939563069], [-79.932452758975, 32.7865752154344], [-79.9324009355715, 32.7866002698542]]], "type": "Polygon"}, "id": "471", "properties": {"OBJECTID": 3897, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 25616.6015625, "Shape__Length": 822.554393276937, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9327738998877, 32.7856144751023, -79.9316435805589, 32.7866998967485], "geometry": {"coordinates": [[[-79.9317559669888, 32.7865979795358], [-79.9317754662749, 32.7866998967485], [-79.9323188543181, 32.7864785650453], [-79.9323252453499, 32.7864881568335], [-79.9324348976584, 32.7864360289239], [-79.9324277026022, 32.786425658154], [-79.9325201861164, 32.7863805084657], [-79.9326044866804, 32.7863391507818], [-79.9326895984603, 32.7862978893995], [-79.9327738998877, 32.7862565352155], [-79.9327484206386, 32.7862112157413], [-79.9327236960967, 32.7861707105333], [-79.932667005741, 32.786083114851], [-79.9326612737653, 32.7860861572405], [-79.9323456934273, 32.7856144751023], [-79.9321754864957, 32.7856955391917], [-79.9319545405687, 32.7858009867554], [-79.931887439388, 32.7858329545252], [-79.9317344149496, 32.7859059243366], [-79.9316435805589, 32.7859493671254], [-79.9317559669888, 32.7865979795358]]], "type": "Polygon"}, "id": "472", "properties": {"OBJECTID": 3898, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10530.265625, "Shape__Length": 417.462526577248, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9317960186081, 32.7860800198107, -79.9299406295699, 32.7883280489011], "geometry": {"coordinates": [[[-79.9302492705319, 32.7879175591548], [-79.9302938245724, 32.7883280489011], [-79.9313416492276, 32.7878716562448], [-79.9313636700285, 32.7878615126426], [-79.9313786655098, 32.7878859156424], [-79.9315086201519, 32.7878289408307], [-79.9315006267502, 32.7877982248208], [-79.9317960186081, 32.7876692146163], [-79.9316496474283, 32.7869075281036], [-79.9316576767932, 32.7869064276347], [-79.9315794760343, 32.7864994837839], [-79.9316203809496, 32.7864939610246], [-79.9315439084074, 32.786089789169], [-79.9314578702949, 32.7861325612597], [-79.9314212635676, 32.7860800198107], [-79.9313090885694, 32.7861357853281], [-79.9313456952526, 32.7861883268109], [-79.9311604878426, 32.7862789126394], [-79.9311413558967, 32.7862480325621], [-79.9308667122343, 32.7863703215975], [-79.9308854600912, 32.7864005643715], [-79.9306453566587, 32.7865067602664], [-79.9306640280188, 32.7865368815606], [-79.9303940489925, 32.7866551989554], [-79.9303748575683, 32.7866242217388], [-79.9299406295699, 32.7868162755125], [-79.9301116622546, 32.7870818785677], [-79.9302492705319, 32.7879175591548]]], "type": "Polygon"}, "id": "473", "properties": {"OBJECTID": 3899, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 36891.26953125, "Shape__Length": 855.250718865476, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9301421102716, 32.7868731765263, -79.9296094937277, 32.7886346426057], "geometry": {"coordinates": [[[-79.9296230746557, 32.7868966866694], [-79.929625396026, 32.7869065009216], [-79.929677463788, 32.7869063549185], [-79.929726035376, 32.7871915391746], [-79.9297064838636, 32.7871936849541], [-79.9297125471485, 32.7872299891135], [-79.92972389399, 32.7872998400097], [-79.929717374697, 32.7873006406251], [-79.9297309850359, 32.7873850290845], [-79.9297635720691, 32.7873813623023], [-79.9297946011718, 32.7875711303003], [-79.9297991387076, 32.7875991720123], [-79.9296801946073, 32.787612647467], [-79.929732053106, 32.787895111696], [-79.9297412155481, 32.7879440686774], [-79.9297656175159, 32.7880771704451], [-79.9297709790539, 32.7881043617211], [-79.9297900195581, 32.7882102722099], [-79.929822606919, 32.7882066036082], [-79.929841680153, 32.7883098512526], [-79.9296094937277, 32.7883360836676], [-79.9296384763285, 32.7884936175141], [-79.9296560056355, 32.7885900671687], [-79.9296652218324, 32.7886346426057], [-79.929883625643, 32.7885382835677], [-79.9301421102716, 32.7884242370061], [-79.9301059687281, 32.7882532366895], [-79.9300735696825, 32.7880424115297], [-79.9300629969528, 32.7879757482106], [-79.9300524263658, 32.7879088242789], [-79.9299898798025, 32.7875026583183], [-79.9299369033628, 32.7871786088799], [-79.929743768981, 32.7868731765263], [-79.9296948128842, 32.7868847742421], [-79.9296230746557, 32.7868966866694]]], "type": "Polygon"}, "id": "474", "properties": {"OBJECTID": 3900, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6887.7734375, "Shape__Length": 569.558074695784, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.929841680153, 32.7868966866694, -79.9292491591344, 32.7886854394696], "geometry": {"coordinates": [[[-79.9296230746557, 32.7868966866694], [-79.9296059551345, 32.7868996301906], [-79.9292491591344, 32.7869372259732], [-79.9292999569244, 32.7872396946514], [-79.9293068061331, 32.7872782377556], [-79.9293317889888, 32.7874302399685], [-79.9293673545368, 32.7876480525104], [-79.9294044166015, 32.7878765279276], [-79.9294143238883, 32.7879311594951], [-79.9294508054957, 32.7881405604912], [-79.9294864748943, 32.788349952569], [-79.9294872378196, 32.7883540815392], [-79.9295162728547, 32.7885074962864], [-79.9295345786602, 32.7886069576729], [-79.9295507010835, 32.7886854394696], [-79.9296652218324, 32.7886346426057], [-79.9296560056355, 32.7885900671687], [-79.9296384763285, 32.7884936175141], [-79.9296094937277, 32.7883360836676], [-79.929841680153, 32.7883098512526], [-79.929822606919, 32.7882066036082], [-79.9297900195581, 32.7882102722099], [-79.9297709790539, 32.7881043617211], [-79.9297656175159, 32.7880771704451], [-79.9297412155481, 32.7879440686774], [-79.929732053106, 32.787895111696], [-79.9296801946073, 32.787612647467], [-79.9297991387076, 32.7875991720123], [-79.9297946011718, 32.7875711303003], [-79.9297635720691, 32.7873813623023], [-79.9297309850359, 32.7873850290845], [-79.929717374697, 32.7873006406251], [-79.92972389399, 32.7872998400097], [-79.9297125471485, 32.7872299891135], [-79.9297064838636, 32.7871936849541], [-79.929726035376, 32.7871915391746], [-79.929677463788, 32.7869063549185], [-79.929625396026, 32.7869065009216], [-79.9296230746557, 32.7868966866694]]], "type": "Polygon"}, "id": "475", "properties": {"OBJECTID": 3901, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8472.224609375, "Shape__Length": 573.773195248112, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9357463636131, 32.7842794799567, -79.9333293642295, 32.7860090670172], "geometry": {"coordinates": [[[-79.9348274120711, 32.7844401062425], [-79.93469323581, 32.7845022459163], [-79.9345476041018, 32.7845696975979], [-79.9344044303404, 32.7846357952179], [-79.9343217948198, 32.7846742466686], [-79.9333293642295, 32.7851342684546], [-79.9339296436405, 32.7860090670172], [-79.9343077182059, 32.7858273339262], [-79.9347348937627, 32.7856217985064], [-79.9350057673325, 32.7854911864891], [-79.9351219705313, 32.7854354157006], [-79.9352463571977, 32.7853755107649], [-79.935295460482, 32.7853517129928], [-79.9357463636131, 32.7851346161374], [-79.9356872421229, 32.7850461403853], [-79.9356440995031, 32.7849815119759], [-79.9355929660087, 32.7849049575957], [-79.935543432219, 32.784830741143], [-79.9355018873675, 32.7847685317803], [-79.9354699289297, 32.7847207522191], [-79.9354259732358, 32.7846561130501], [-79.9353876246941, 32.7845986561783], [-79.9353620576163, 32.7845604673139], [-79.9353261065276, 32.7845065529539], [-79.9353005395368, 32.7844683613718], [-79.9352837653079, 32.7844428747107], [-79.9352542013709, 32.7843989793955], [-79.9351734931109, 32.7842794799567], [-79.9348274120711, 32.7844401062425]]], "type": "Polygon"}, "id": "476", "properties": {"OBJECTID": 3902, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 30821.59765625, "Shape__Length": 731.139168774492, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9354472096525, 32.7855144082307, -79.9339622951927, 32.7865715516853], "geometry": {"coordinates": [[[-79.9350788504979, 32.7855144082307], [-79.9350295692832, 32.7855427144493], [-79.9349306177622, 32.7855903447639], [-79.9348316661332, 32.7856379749987], [-79.93479772321, 32.7856543129318], [-79.934451788101, 32.7858212848195], [-79.9343069422804, 32.7858908930663], [-79.9339622951927, 32.7860564490075], [-79.9341601380777, 32.7863322262426], [-79.9343201714073, 32.7865715516853], [-79.9346837593787, 32.7864120657682], [-79.9348228046696, 32.7863511688018], [-79.9349495850454, 32.7862953207048], [-79.9350379212316, 32.786256490063], [-79.9350968137132, 32.7862304607587], [-79.9351982341958, 32.7861860731466], [-79.9353042635317, 32.7861420384972], [-79.9354472096525, 32.7860589463298], [-79.9352134935777, 32.785713449217], [-79.9350788504979, 32.7855144082307]]], "type": "Polygon"}, "id": "477", "properties": {"OBJECTID": 3903, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11655.59375, "Shape__Length": 448.276074374903, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9361719328981, 32.7853078879749, -79.9350788504979, 32.7860589463298], "geometry": {"coordinates": [[[-79.9350788504979, 32.7855144082307], [-79.9352134935777, 32.785713449217], [-79.9354472096525, 32.7860589463298], [-79.9361719328981, 32.7857405118468], [-79.9360101611379, 32.7855046909186], [-79.9359556608284, 32.7854293591585], [-79.9358683287158, 32.7853078879749], [-79.9354511680313, 32.7855069896708], [-79.9353602832113, 32.7853838765261], [-79.9353599631971, 32.7853836789448], [-79.9353601506964, 32.7853838870968], [-79.9352840599917, 32.7854153798748], [-79.9352499287966, 32.7854318497647], [-79.9350788504979, 32.7855144082307]]], "type": "Polygon"}, "id": "478", "properties": {"OBJECTID": 3904, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6591.171875, "Shape__Length": 348.939058837802, "ZONE_BASE": "UC", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9358683287158, 32.7851811832143, -79.9353599631971, 32.7855069896708], "geometry": {"coordinates": [[[-79.9358683287158, 32.7853078879749], [-79.9357813926794, 32.7851811832143], [-79.9353599631971, 32.7853836789448], [-79.9354511680313, 32.7855069896708], [-79.9358683287158, 32.7853078879749]]], "type": "Polygon"}, "id": "479", "properties": {"OBJECTID": 3905, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1036.23046875, "Shape__Length": 146.03018651342, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9372101089389, 32.7859489002727, -79.9344501929626, 32.7881751080404], "geometry": {"coordinates": [[[-79.9362083780556, 32.7859489002727], [-79.9362051200379, 32.7859491298688], [-79.9362010496924, 32.7859494353703], [-79.9361977895539, 32.7859498390021], [-79.9361945273729, 32.7859504978354], [-79.9361912652265, 32.7859512414416], [-79.9361871822184, 32.7859524107911], [-79.9361830982463, 32.7859538344498], [-79.9361798277009, 32.7859550920289], [-79.9344776409802, 32.7867096884404], [-79.9344743588357, 32.7867119793775], [-79.9344710746107, 32.7867144407433], [-79.9344677872155, 32.7867171618102], [-79.934464499864, 32.7867199667481], [-79.9344620206772, 32.7867230375514], [-79.9344595415121, 32.7867261940292], [-79.9344578737035, 32.7867295298241], [-79.9344553924576, 32.7867329442088], [-79.9344537204221, 32.7867365387937], [-79.9344528629462, 32.7867401377674], [-79.9344511909433, 32.7867438171251], [-79.934451144813, 32.7867475963176], [-79.9344502852234, 32.7867513684254], [-79.934450239093, 32.7867551476179], [-79.9344501929626, 32.7867589268104], [-79.9344509602915, 32.7867627130877], [-79.9344517286881, 32.7867664118962], [-79.9344533105221, 32.786770119593], [-79.9344540799206, 32.7867737363431], [-79.9344564773276, 32.7867772779905], [-79.9344580633446, 32.7867806430259], [-79.934460463911, 32.7867839258737], [-79.9351802693966, 32.7877988836067], [-79.9354274445526, 32.7881751080404], [-79.9366634698322, 32.7876291553657], [-79.9372101089389, 32.7873876985517], [-79.9369592983233, 32.7870158615978], [-79.9369587821238, 32.7870135375911], [-79.9362666106022, 32.7859768945497], [-79.9362642111016, 32.7859736081398], [-79.9362618073581, 32.7859705823236], [-79.9362594015362, 32.7859676394581], [-79.9362561822879, 32.7859648626725], [-79.9362529598625, 32.7859622590117], [-79.9362489197971, 32.7859599043628], [-79.9362456932202, 32.7859577290376], [-79.9362416479357, 32.7859558027151], [-79.9362376026767, 32.7859540495451], [-79.9362335521291, 32.7859525551559], [-79.9362294995394, 32.7859513159683], [-79.9362262551727, 32.7859506005598], [-79.9362230076052, 32.7859499726015], [-79.93621894771, 32.7859494205487], [-79.9362156959778, 32.7859491343498], [-79.9362124442473, 32.7859489356287], [-79.9362083780556, 32.7859489002727]]], "type": "Polygon"}, "id": "480", "properties": {"OBJECTID": 3906, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 49790.64453125, "Shape__Length": 888.338434772936, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9346027287638, 32.7868215456548, -79.933211257575, 32.787785766168], "geometry": {"coordinates": [[[-79.933211257575, 32.7872721203159], [-79.9333990769964, 32.7875475192194], [-79.9334833110666, 32.787511661539], [-79.9336703351791, 32.787785766168], [-79.9342870230953, 32.7875182357839], [-79.9346027287638, 32.7873811403903], [-79.9344061329237, 32.7870912330451], [-79.9342942551988, 32.7869258439535], [-79.9342231228717, 32.7868215456548], [-79.9338664739073, 32.7869805297581], [-79.933211257575, 32.7872721203159]]], "type": "Polygon"}, "id": "481", "properties": {"OBJECTID": 3907, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10334.13671875, "Shape__Length": 423.962336383745, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9330204336651, 32.7874387625615, -79.9318663224844, 32.7880994212162], "geometry": {"coordinates": [[[-79.9318663224844, 32.7878739338026], [-79.9320248281965, 32.7879935807206], [-79.9321650444213, 32.7880994212162], [-79.9323227069576, 32.788025848285], [-79.9323343500558, 32.7880204153212], [-79.9324290582465, 32.7879762202969], [-79.9324388522754, 32.7879716495772], [-79.9324749259099, 32.7879553624384], [-79.9325207337162, 32.7879362545048], [-79.932675448071, 32.7878709586079], [-79.932692646297, 32.7879035864671], [-79.9328083875792, 32.7878548075307], [-79.9328242023981, 32.7878480292966], [-79.932918779997, 32.7878074942135], [-79.9328895847531, 32.7877641850143], [-79.9329394677704, 32.78774314286], [-79.9329623698102, 32.7877332086693], [-79.9330204336651, 32.787708458236], [-79.9328366131235, 32.7874387625615], [-79.9327564451175, 32.7874747427454], [-79.932623608046, 32.7875356509785], [-79.932247008377, 32.7877038805555], [-79.9318663224844, 32.7878739338026]]], "type": "Polygon"}, "id": "482", "properties": {"OBJECTID": 3908, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4944.693359375, "Shape__Length": 328.508203373716, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9336703351791, 32.7872721203159, -79.9321650444213, 32.7883146417739], "geometry": {"coordinates": [[[-79.9325207337162, 32.7879362545048], [-79.9324749259099, 32.7879553624384], [-79.9324290582465, 32.7879762202969], [-79.9323343500558, 32.7880204153212], [-79.9323227069576, 32.788025848285], [-79.9321650444213, 32.7880994212162], [-79.9322409652748, 32.7881567281617], [-79.9324501675544, 32.7883146417739], [-79.9326294704569, 32.7882381206818], [-79.9326963004522, 32.7882095996409], [-79.9328565625268, 32.7881427484413], [-79.9329748115239, 32.788088328588], [-79.9331493874952, 32.7880076576548], [-79.9332221726631, 32.7879766811544], [-79.9332949577793, 32.7879457046109], [-79.9333677428439, 32.7879147280241], [-79.93351331285, 32.7878528594939], [-79.9335860977596, 32.7878218827777], [-79.933644976001, 32.7877970543746], [-79.9336703351791, 32.787785766168], [-79.9334833110666, 32.787511661539], [-79.9333990769964, 32.7875475192194], [-79.933211257575, 32.7872721203159], [-79.9328366131235, 32.7874387625615], [-79.9330204336651, 32.787708458236], [-79.9329623698102, 32.7877332086693], [-79.9329394677704, 32.78774314286], [-79.9328895847531, 32.7877641850143], [-79.932918779997, 32.7878074942135], [-79.9328242023981, 32.7878480292966], [-79.9328083875792, 32.7878548075307], [-79.932692646297, 32.7879035864671], [-79.932675448071, 32.7878709586079], [-79.9325207337162, 32.7879362545048]]], "type": "Polygon"}, "id": "483", "properties": {"OBJECTID": 3909, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8418.853515625, "Shape__Length": 498.459769715286, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9350323642186, 32.7874897281831, -79.9339900556966, 32.7883503871298], "geometry": {"coordinates": [[[-79.9341596664748, 32.7880674023538], [-79.9343207960391, 32.7883503871298], [-79.9350323642186, 32.7880414157173], [-79.9348582355471, 32.7877769578792], [-79.9346729960965, 32.7874897281831], [-79.9342853159804, 32.7876580668193], [-79.9339900556966, 32.7877863175869], [-79.9341596664748, 32.7880674023538]]], "type": "Polygon"}, "id": "484", "properties": {"OBJECTID": 3910, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7246.421875, "Shape__Length": 341.290666725278, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9343207960391, 32.7880674023538, -79.933324929694, 32.788714599895], "geometry": {"coordinates": [[[-79.9341596664748, 32.7880674023538], [-79.9338122352901, 32.7882210123623], [-79.9337901886007, 32.7881846908765], [-79.9335593761153, 32.7882846516179], [-79.9335805927895, 32.7883196050408], [-79.9334534444741, 32.7883746693707], [-79.9334476018889, 32.7883643844017], [-79.933324929694, 32.7884223689863], [-79.9334891953073, 32.788714599895], [-79.9343207960391, 32.7883503871298], [-79.9341596664748, 32.7880674023538]]], "type": "Polygon"}, "id": "485", "properties": {"OBJECTID": 3911, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4505.638671875, "Shape__Length": 305.020130831805, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9341596664748, 32.7877863175869, -79.9325547677599, 32.7888545634681], "geometry": {"coordinates": [[[-79.9339900556966, 32.7877863175869], [-79.933711155179, 32.7879073278033], [-79.9334093833137, 32.7880356944914], [-79.9332943209597, 32.7880945380943], [-79.9331503482311, 32.7881576666361], [-79.933065905151, 32.7881816486986], [-79.9329268724975, 32.7882410837536], [-79.9328540880517, 32.7882719744139], [-79.9327755777428, 32.7883053916311], [-79.9325547677599, 32.7883993296055], [-79.9326466384648, 32.7884709126388], [-79.9326563140653, 32.7884780394874], [-79.9327489889309, 32.7885504050377], [-79.932811050092, 32.7885981052109], [-79.9328851927319, 32.7886557885402], [-79.9329593375625, 32.7887133879724], [-79.9331414776369, 32.7888545634681], [-79.9332829630722, 32.7887941196465], [-79.9334891953073, 32.788714599895], [-79.933324929694, 32.7884223689863], [-79.9334489177861, 32.7883667000643], [-79.9334534444741, 32.7883746693707], [-79.9335805927895, 32.7883196050408], [-79.9335593761153, 32.7882846516179], [-79.9337901886007, 32.7881846908765], [-79.9338122352901, 32.7882210123623], [-79.9341596664748, 32.7880674023538], [-79.9339900556966, 32.7877863175869]]], "type": "Polygon"}, "id": "486", "properties": {"OBJECTID": 3912, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9124.439453125, "Shape__Length": 511.635746817945, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9353023335891, 32.7881737791612, -79.9344699945308, 32.7886094222474], "geometry": {"coordinates": [[[-79.9344699945308, 32.7884558883521], [-79.9349668355839, 32.7886094222474], [-79.9353023335891, 32.7884505944082], [-79.9351194048868, 32.7881737791612], [-79.9344699945308, 32.7884558883521]]], "type": "Polygon"}, "id": "487", "properties": {"OBJECTID": 3913, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2666.53125, "Shape__Length": 225.093166142509, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9357001231567, 32.7885705972569, -79.935030364939, 32.7892787039693], "geometry": {"coordinates": [[[-79.935030364939, 32.7887369366346], [-79.9351102468702, 32.7888578917762], [-79.9351885229835, 32.7889770301193], [-79.9350665956343, 32.7890348101006], [-79.9351520653721, 32.7891645769939], [-79.9352271476007, 32.7892787039693], [-79.9357001231567, 32.7890546691912], [-79.9356601926876, 32.7889933315623], [-79.9354564936245, 32.7886849820007], [-79.9353814126168, 32.7885705972569], [-79.935030364939, 32.7887369366346]]], "type": "Polygon"}, "id": "488", "properties": {"OBJECTID": 3914, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3861.029296875, "Shape__Length": 267.389742041494, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9352271476007, 32.7884558883521, -79.9332816758173, 32.7897948260384], "geometry": {"coordinates": [[[-79.9344699945308, 32.7884558883521], [-79.9342745190751, 32.7885406024221], [-79.9341297525345, 32.7886033365136], [-79.9332816758173, 32.7889642001449], [-79.9334549547254, 32.7890982518636], [-79.9337966982085, 32.7893610801486], [-79.9338521865441, 32.7894141353297], [-79.9338706742935, 32.7894325063083], [-79.9339164859015, 32.7894785167657], [-79.9339573096178, 32.7895332486917], [-79.9339973545217, 32.7895851384451], [-79.9340237044772, 32.7896259127781], [-79.9340524823627, 32.7896678238299], [-79.9340588727509, 32.7896774155215], [-79.934136355696, 32.7897948260384], [-79.9342599190397, 32.7897364596907], [-79.9344047596874, 32.7896678010038], [-79.9344759503022, 32.7896342306048], [-79.9345528687656, 32.7895979648555], [-79.9346126054823, 32.7895697074542], [-79.9348327284955, 32.7894654517801], [-79.9349399289845, 32.7894144158151], [-79.9350340308483, 32.7893700502557], [-79.9351305898201, 32.7893244199925], [-79.9352271476007, 32.7892787039693], [-79.9351520653721, 32.7891645769939], [-79.9350665956343, 32.7890348101006], [-79.9351885229835, 32.7889770301193], [-79.9351102468702, 32.7888578917762], [-79.935030364939, 32.7887369366346], [-79.934908438888, 32.7887947164661], [-79.934779970205, 32.7888551907165], [-79.9346154923557, 32.7889331300734], [-79.9345132067072, 32.7889814588516], [-79.9344341295685, 32.7888613679678], [-79.9349668355839, 32.7886094222474], [-79.9344699945308, 32.7884558883521]]], "type": "Polygon"}, "id": "489", "properties": {"OBJECTID": 3915, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20202.27734375, "Shape__Length": 734.584694879379, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9377141110995, 32.7874824587541, -79.9354575198816, 32.7889607290849], "geometry": {"coordinates": [[[-79.9368349949043, 32.7876801053915], [-79.9365266191696, 32.7878168418707], [-79.9361086333951, 32.7880021028146], [-79.9358607852837, 32.7881119607709], [-79.9354575198816, 32.7882907316852], [-79.9356564324842, 32.7885913090632], [-79.9356699997569, 32.7886129034113], [-79.9358992533552, 32.7889607290849], [-79.9363689464, 32.7887386400338], [-79.9366070527793, 32.7886271488096], [-79.9367862451009, 32.7885432373581], [-79.9370562620986, 32.7884166453726], [-79.9372387252845, 32.7883313845815], [-79.9377141110995, 32.7881089953891], [-79.937664535027, 32.7880379566015], [-79.9376117699787, 32.7879615629586], [-79.9375558055023, 32.7878806747167], [-79.9375062328354, 32.7878092895891], [-79.9374454650926, 32.7877220043466], [-79.9374222801991, 32.7876885586166], [-79.9373887167421, 32.7876387031222], [-79.9373319538673, 32.7875566038921], [-79.9372807891301, 32.7874824587541], [-79.9368349949043, 32.7876801053915]]], "type": "Polygon"}, "id": "490", "properties": {"OBJECTID": 3916, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22705.25390625, "Shape__Length": 658.238526846253, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9384977610055, 32.7882747593471, -79.9374708625325, 32.7894995518468], "geometry": {"coordinates": [[[-79.9374708625325, 32.7884426654362], [-79.9376292180511, 32.7886670375197], [-79.9375064802823, 32.7887247299068], [-79.9375952271209, 32.7888528037185], [-79.9376017725854, 32.7888497681608], [-79.9376490110514, 32.7889123698451], [-79.9377042652487, 32.7889849198183], [-79.9376911701252, 32.7889913345075], [-79.9376428821019, 32.7890149671889], [-79.9376404866112, 32.789011252469], [-79.9376134630003, 32.7890257069189], [-79.9377158011796, 32.7891734838296], [-79.937701075926, 32.7891801422916], [-79.937736267094, 32.7892299261597], [-79.93792254802, 32.7894995518468], [-79.9384977610055, 32.7892305209781], [-79.9383106674587, 32.7889607195882], [-79.9382451081012, 32.7888658339787], [-79.9381795510654, 32.7887709447466], [-79.9381291733059, 32.7886987800129], [-79.9381155897179, 32.7886785638062], [-79.9380787977539, 32.7886266161794], [-79.9380220105574, 32.7885463225361], [-79.9379884161525, 32.7884990434836], [-79.9379396217438, 32.7884305899419], [-79.9379068398714, 32.7883834026927], [-79.9378796384229, 32.7883456285423], [-79.9378300600185, 32.7882747593471], [-79.937545318401, 32.7884080096683], [-79.9374708625325, 32.7884426654362]]], "type": "Polygon"}, "id": "491", "properties": {"OBJECTID": 3917, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9254.21875, "Shape__Length": 443.177371147958, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.93792254802, 32.7884426654362, -79.9360102887116, 32.7900960423081], "geometry": {"coordinates": [[[-79.9374708625325, 32.7884426654362], [-79.9372802154572, 32.788531978682], [-79.9372515785629, 32.7885453034665], [-79.9365585368437, 32.7888698251049], [-79.9364799865663, 32.7889065098941], [-79.9364358012574, 32.7889272558161], [-79.9363425140635, 32.7889716295237], [-79.9360102887116, 32.7891288554603], [-79.9363593636117, 32.7896587180036], [-79.9364240608786, 32.7897572919721], [-79.9364392492697, 32.7897794991458], [-79.9364640079448, 32.7898173398677], [-79.9365015449903, 32.789874959801], [-79.9365518623937, 32.7899518494139], [-79.9366469224095, 32.7900960423081], [-79.93693985283, 32.7899589151034], [-79.9370740421597, 32.7898962571341], [-79.9371967766135, 32.7898389962057], [-79.93792254802, 32.7894995518468], [-79.937736267094, 32.7892299261597], [-79.937701075926, 32.7891801422916], [-79.9377158011796, 32.7891734838296], [-79.9376134630003, 32.7890257069189], [-79.9376404866112, 32.789011252469], [-79.9376428821019, 32.7890149671889], [-79.9376911701252, 32.7889913345075], [-79.9377042652487, 32.7889849198183], [-79.9376490110514, 32.7889123698451], [-79.9376017725854, 32.7888497681608], [-79.9375952271209, 32.7888528037185], [-79.9375064802823, 32.7887247299068], [-79.9376292180511, 32.7886670375197], [-79.9374708625325, 32.7884426654362]]], "type": "Polygon"}, "id": "492", "properties": {"OBJECTID": 3918, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 25069.015625, "Shape__Length": 672.50029275034, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9364560625922, 32.7892229055632, -79.9344326145805, 32.7906039912162], "geometry": {"coordinates": [[[-79.9344326145805, 32.7898754280517], [-79.9345820017906, 32.790100843426], [-79.9346630111824, 32.7900627193703], [-79.9347404942036, 32.79018021788], [-79.9348387687274, 32.7903273621434], [-79.9349770789603, 32.7902606191344], [-79.9351336587107, 32.7904968336972], [-79.9352768363084, 32.7904311635094], [-79.9354224709304, 32.7903642276152], [-79.9355822631138, 32.7906039912162], [-79.9364560625922, 32.790202362005], [-79.9362395975055, 32.7898729405075], [-79.9358114451827, 32.7892229055632], [-79.9347263821896, 32.7897365954191], [-79.9346298236072, 32.7897822262764], [-79.9345136227608, 32.7898373915647], [-79.9344326145805, 32.7898754280517]]], "type": "Polygon"}, "id": "493", "properties": {"OBJECTID": 3919, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22111.90234375, "Shape__Length": 646.453784707628, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9355822631138, 32.7898754280517, -79.9342484922459, 32.7909235768783], "geometry": {"coordinates": [[[-79.9344326145805, 32.7898754280517], [-79.9342574951554, 32.7899584282686], [-79.9342484922459, 32.7899628166417], [-79.9342572759691, 32.789976381017], [-79.9343978801978, 32.7901881447741], [-79.9344761775333, 32.7903056505471], [-79.9345776292017, 32.7904590931615], [-79.9346287608877, 32.7905359022926], [-79.9346750997011, 32.7906054576852], [-79.9346958637936, 32.7906373344177], [-79.9347214386214, 32.7906750103556], [-79.9347597810198, 32.7907331536977], [-79.9348149081511, 32.7908159280119], [-79.9348860035528, 32.7909235768783], [-79.9350504534916, 32.7908482999904], [-79.9351527284679, 32.7908010005412], [-79.9352934492987, 32.7907366833441], [-79.9354358147524, 32.7906710049971], [-79.935493903921, 32.790644280374], [-79.9355822631138, 32.7906039912162], [-79.9354224709304, 32.7903642276152], [-79.9352768363084, 32.7904311635094], [-79.9351336587107, 32.7904968336972], [-79.9349770789603, 32.7902606191344], [-79.9348387687274, 32.7903273621434], [-79.9347404942036, 32.79018021788], [-79.9346630111824, 32.7900627193703], [-79.9345820017906, 32.790100843426], [-79.9344326145805, 32.7898754280517]]], "type": "Polygon"}, "id": "494", "properties": {"OBJECTID": 3920, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7198.322265625, "Shape__Length": 468.751706509495, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9366373937461, 32.7902985159515, -79.9349245570538, 32.7912085704682], "geometry": {"coordinates": [[[-79.9357615450278, 32.7906466086944], [-79.9349245570538, 32.7910312030569], [-79.9350411766119, 32.7912085704682], [-79.9362585919206, 32.7906509311567], [-79.9366373937461, 32.7904775290311], [-79.9365191637648, 32.7902985159515], [-79.9357615450278, 32.7906466086944]]], "type": "Polygon"}, "id": "495", "properties": {"OBJECTID": 3921, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5456.697265625, "Shape__Length": 458.593465545036, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9347713782657, 32.7899816827393, -79.932175340507, 32.7917244890868], "geometry": {"coordinates": [[[-79.933871062141, 32.7900237814876], [-79.9337861528591, 32.790048038671], [-79.9336359293125, 32.7900910538042], [-79.93347883145, 32.7901639876742], [-79.9333675522767, 32.7902156731183], [-79.9333282716921, 32.7902344874742], [-79.9332707227028, 32.7902834640838], [-79.9331827406063, 32.7903594053589], [-79.9331358781216, 32.7903993710486], [-79.9329896274974, 32.7905166375691], [-79.9328720042159, 32.790621440421], [-79.9328185410799, 32.7906688201368], [-79.9327091531704, 32.7907654482766], [-79.9326153811095, 32.790849155767], [-79.9325265560322, 32.7909274944285], [-79.9323209291441, 32.7911098696602], [-79.932175340507, 32.7912393410576], [-79.9324498998166, 32.7913412961306], [-79.9325657180247, 32.7913842248897], [-79.932679109487, 32.7914261033734], [-79.9327973558171, 32.7914700847943], [-79.9331942151112, 32.7916173408632], [-79.9332509105751, 32.7916382816263], [-79.9333408139152, 32.7916714485815], [-79.9334833590454, 32.7917244890868], [-79.9336003786749, 32.7916691587223], [-79.9337026680112, 32.7916208279883], [-79.9337992291002, 32.7915752862337], [-79.9338957901332, 32.7915296533181], [-79.933980894844, 32.7914894217134], [-79.9340905461806, 32.7914378053828], [-79.9341330989901, 32.7914176457859], [-79.9342272023555, 32.7913733683065], [-79.934240297056, 32.7913670387501], [-79.9343237629302, 32.791327823434], [-79.9344227806514, 32.791280840715], [-79.9346019878941, 32.7911963282728], [-79.9347713782657, 32.7911161987019], [-79.9344853822804, 32.7906846363137], [-79.9344518151768, 32.7906352092356], [-79.9342528968242, 32.7903350590628], [-79.9341642205019, 32.7902014857977], [-79.9340180199585, 32.7899816827393], [-79.933871062141, 32.7900237814876]]], "type": "Polygon"}, "id": "496", "properties": {"OBJECTID": 3922, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 36081.76953125, "Shape__Length": 764.658782963069, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9324461253981, 32.7882314597486, -79.9317342271071, 32.7887578936472], "geometry": {"coordinates": [[[-79.9319097474309, 32.7886434575145], [-79.9319807555267, 32.7887578936472], [-79.9321206093708, 32.7886978689013], [-79.9324461253981, 32.7885575133923], [-79.9323252301609, 32.7884642889756], [-79.9322462534558, 32.7884027817159], [-79.9321745256324, 32.7883472645402], [-79.9321027967886, 32.7882917509203], [-79.9320254337034, 32.7882314597486], [-79.9318176617872, 32.7883235342838], [-79.9317342271071, 32.7883605160902], [-79.9319097474309, 32.7886434575145]]], "type": "Polygon"}, "id": "497", "properties": {"OBJECTID": 3923, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2826.201171875, "Shape__Length": 217.892761123483, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9307506968029, 32.7886289739727, -79.9304806775772, 32.7889374428752], "geometry": {"coordinates": [[[-79.9304806775772, 32.7886801081409], [-79.9305835263303, 32.7888516914405], [-79.9306353576, 32.7889374428752], [-79.9307506968029, 32.7888863085504], [-79.9306988665178, 32.7888005571745], [-79.9305960175983, 32.7886289739727], [-79.9304806775772, 32.7886801081409]]], "type": "Polygon"}, "id": "498", "properties": {"OBJECTID": 3924, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 554.107421875, "Shape__Length": 105.389045431346, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.931964182501, 32.7879515606793, -79.9303881970929, 32.7891405456634], "geometry": {"coordinates": [[[-79.9306353576, 32.7889374428752], [-79.9307573465052, 32.7891405456634], [-79.9311041314584, 32.7889909319217], [-79.9312783396124, 32.7889159158223], [-79.9314460070326, 32.7888435063776], [-79.93167828477, 32.7887434857215], [-79.9319097474309, 32.7886434575145], [-79.9317342271071, 32.7883605160902], [-79.9316548786054, 32.7883958164251], [-79.9316181694166, 32.7883374275323], [-79.9316238963343, 32.7883348135175], [-79.9317106028267, 32.7882964850543], [-79.931964182501, 32.7881841098428], [-79.9318815309959, 32.7881258646734], [-79.9319001110089, 32.7881176172576], [-79.9316872666236, 32.7879515606793], [-79.9314685525141, 32.7880500052362], [-79.9305035358965, 32.788474576521], [-79.9303881970929, 32.7885257106105], [-79.9304806775772, 32.7886801081409], [-79.9305960175983, 32.7886289739727], [-79.9306988665178, 32.7888005571745], [-79.9307506968029, 32.7888863085504], [-79.9306353576, 32.7889374428752]]], "type": "Polygon"}, "id": "499", "properties": {"OBJECTID": 3925, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 13676.625, "Shape__Length": 578.998821128947, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.931418488483, 32.7889909319217, -79.9307573465052, 32.7896495147781], "geometry": {"coordinates": [[[-79.9307573465052, 32.7891405456634], [-79.9308275084099, 32.7892573811857], [-79.9308865110751, 32.789355479097], [-79.9309455159786, 32.7894534922267], [-79.9310045199581, 32.7895515044179], [-79.9310635240921, 32.7896495147781], [-79.931418488483, 32.789496450817], [-79.9313578487078, 32.7893991108395], [-79.9312972090238, 32.78930177444], [-79.9312365705977, 32.789204433512], [-79.9311767446684, 32.7891070166827], [-79.9311041314584, 32.7889909319217], [-79.9307573465052, 32.7891405456634]]], "type": "Polygon"}, "id": "500", "properties": {"OBJECTID": 3926, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3315.994140625, "Shape__Length": 238.860210798112, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9329393466675, 32.7885575133923, -79.9310635240921, 32.7897497765418], "geometry": {"coordinates": [[[-79.9310635240921, 32.7896495147781], [-79.9311241279377, 32.7897497765418], [-79.9312435574295, 32.789696874704], [-79.9314775256479, 32.789591884715], [-79.9316501360521, 32.789514538204], [-79.9317074016608, 32.7894887506062], [-79.9318170192216, 32.7894398009658], [-79.9319258242681, 32.7893907548536], [-79.9320468965485, 32.7893365805648], [-79.9322767712164, 32.789233445389], [-79.9324256611165, 32.7891663683236], [-79.9325696384079, 32.7891019113418], [-79.9327536996971, 32.7890194199222], [-79.932820761041, 32.7889908845911], [-79.9329393466675, 32.7889403780552], [-79.9327322230705, 32.7887797436441], [-79.9326347038395, 32.7887043318024], [-79.9325404134885, 32.7886309212715], [-79.9325130136551, 32.7886095521854], [-79.9324461253981, 32.7885575133923], [-79.9321206093708, 32.7886978689013], [-79.9319807555267, 32.7887578936472], [-79.9319097474309, 32.7886434575145], [-79.93167828477, 32.7887434857215], [-79.9314460070326, 32.7888435063776], [-79.9312783396124, 32.7889159158223], [-79.9311041314584, 32.7889909319217], [-79.9311767446684, 32.7891070166827], [-79.9312365705977, 32.789204433512], [-79.9312972090238, 32.78930177444], [-79.9313578487078, 32.7893991108395], [-79.931418488483, 32.789496450817], [-79.9310635240921, 32.7896495147781]]], "type": "Polygon"}, "id": "501", "properties": {"OBJECTID": 3927, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14601.921875, "Shape__Length": 614.398787048563, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9337702994908, 32.7890497500484, -79.9312112665444, 32.7911580770894], "geometry": {"coordinates": [[[-79.9328358574872, 32.7891536236627], [-79.9328072249489, 32.7891664316031], [-79.9325771725927, 32.7892700198412], [-79.9323531726046, 32.7893764678841], [-79.9322397000613, 32.7894303913535], [-79.932117467392, 32.789488477792], [-79.9318848394475, 32.7895990242836], [-79.9317888401811, 32.7896446433633], [-79.931673745439, 32.7896952261794], [-79.931551667734, 32.7897488772804], [-79.9314361744745, 32.7897996340576], [-79.9312112665444, 32.7898984768431], [-79.931343317433, 32.7901209761625], [-79.9314006889947, 32.7902194040795], [-79.9314198290222, 32.7902509235935], [-79.9314613304991, 32.7903167404464], [-79.9315076277559, 32.7903893890946], [-79.9315587199204, 32.7904692915844], [-79.9316098110998, 32.7905491949458], [-79.9316481145637, 32.7906103465657], [-79.9316632839904, 32.7906339294786], [-79.9317191606794, 32.7907216916993], [-79.9317478946629, 32.7907670425256], [-79.9317678263924, 32.7908004573431], [-79.9318339644552, 32.7909139095359], [-79.931841927074, 32.7909280657392], [-79.9318881514495, 32.7910068100212], [-79.9319072897293, 32.7910385007923], [-79.9319320205233, 32.7910785769578], [-79.9319544065304, 32.7911108984995], [-79.9319840814533, 32.7911458611122], [-79.9319961347235, 32.7911580770894], [-79.9320816665868, 32.7910830612852], [-79.9321770601202, 32.7909998823934], [-79.9322790391825, 32.7909104056582], [-79.93237608556, 32.7908250964728], [-79.9324690128324, 32.7907439574382], [-79.9325594742357, 32.790664945898], [-79.93261210826, 32.790618760307], [-79.9326573409484, 32.7905790394231], [-79.9327535646928, 32.7904944099707], [-79.932856359262, 32.7904047658285], [-79.9329509378127, 32.7903215801457], [-79.9330447226098, 32.7902366703736], [-79.9331393217924, 32.7901518542095], [-79.9333293624854, 32.789979648859], [-79.9334560471418, 32.7898655590075], [-79.9335424298192, 32.7897872876893], [-79.933627160253, 32.78971097062], [-79.9337135426358, 32.7896326108024], [-79.9337702994908, 32.7895818234181], [-79.933559928381, 32.7894203865436], [-79.933480943617, 32.7893593976735], [-79.9334011465493, 32.7892983141923], [-79.9333116780637, 32.7892297593982], [-79.933079570391, 32.7890497500484], [-79.9328358574872, 32.7891536236627]]], "type": "Polygon"}, "id": "502", "properties": {"OBJECTID": 3928, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 37532.88671875, "Shape__Length": 816.517284111727, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9309177445104, 32.7895213528381, -79.9303579845027, 32.7899846055368], "geometry": {"coordinates": [[[-79.9304387581874, 32.7895940559966], [-79.9303579845027, 32.7896277260577], [-79.930570837281, 32.7899846055368], [-79.9306592661462, 32.7899463460569], [-79.9307230581104, 32.7899191567829], [-79.9307549630262, 32.7899049187512], [-79.9309177445104, 32.789833067024], [-79.9308396522828, 32.7896993258656], [-79.9308021990236, 32.7896352621752], [-79.9307521299662, 32.7895213528381], [-79.9305401293042, 32.7896097259402], [-79.9305268334039, 32.7895876842689], [-79.9304781000735, 32.7896079987075], [-79.9304634752393, 32.7895837530475], [-79.9304387581874, 32.7895940559966]]], "type": "Polygon"}, "id": "503", "properties": {"OBJECTID": 3929, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2117.37890625, "Shape__Length": 194.024013781611, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9306252874551, 32.7886260271091, -79.9296683945778, 32.7901037759353], "geometry": {"coordinates": [[[-79.9306252874551, 32.7893131483157], [-79.9302041616774, 32.7886260271091], [-79.9298167013645, 32.7887961221489], [-79.9296959403173, 32.7888225077649], [-79.9296683945778, 32.7889248939844], [-79.929924440212, 32.789414662008], [-79.930078215367, 32.7897018051747], [-79.9302939397545, 32.7901037759353], [-79.9304564296455, 32.790033651085], [-79.930570837281, 32.7899846055368], [-79.9303579845027, 32.7896277260577], [-79.9304387581874, 32.7895940559966], [-79.9304157797616, 32.7895562232834], [-79.9303674326735, 32.7894766175657], [-79.9304238047291, 32.7894018809872], [-79.9306252874551, 32.7893131483157]]], "type": "Polygon"}, "id": "504", "properties": {"OBJECTID": 3930, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10330.21484375, "Shape__Length": 501.766307566743, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9289994460026, 32.7881576808881, -79.9286330575336, 32.7889863952739], "geometry": {"coordinates": [[[-79.9289994460026, 32.788882476835], [-79.9289375711781, 32.7884821203583], [-79.9288874379177, 32.7881577318528], [-79.9288873851599, 32.7881576808881], [-79.9288872771604, 32.788157694372], [-79.9286330575336, 32.7881893144037], [-79.9286710009804, 32.7884121261388], [-79.9287623946124, 32.7889863952739], [-79.9289994355316, 32.7888825470866], [-79.9289994460026, 32.788882476835]]], "type": "Polygon"}, "id": "505", "properties": {"OBJECTID": 3931, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2866.244140625, "Shape__Length": 261.69393204048, "ZONE_BASE": "MU-1", "__folium_color": "#c49c94"}, "type": "Feature"}, {"bbox": [-79.929387053033, 32.7881089923442, -79.9288873851599, 32.7888825470866], "geometry": {"coordinates": [[[-79.929387053033, 32.7887130313633], [-79.929350770666, 32.7885085317578], [-79.9293263797615, 32.7883745696415], [-79.9293089245458, 32.788272112552], [-79.9292800100661, 32.7881089923442], [-79.9288873851599, 32.7881576808881], [-79.9288874379177, 32.7881577318528], [-79.9289375711781, 32.7884821203583], [-79.9289994460026, 32.788882476835], [-79.9289994355316, 32.7888825470866], [-79.9289996040675, 32.7888824728076], [-79.9291421339021, 32.7888209480615], [-79.929387053033, 32.7887130313633]]], "type": "Polygon"}, "id": "506", "properties": {"OBJECTID": 3932, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3997.8359375, "Shape__Length": 270.480122915527, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9310269363447, 32.791006964581, -79.9298829013581, 32.7922664042374], "geometry": {"coordinates": [[[-79.9299844364928, 32.7914447034039], [-79.9300548844904, 32.7915899199898], [-79.9301636978846, 32.7917752700639], [-79.930452028755, 32.7922664042374], [-79.9305090151365, 32.7922399672145], [-79.9310031411012, 32.7920555526337], [-79.9310127932087, 32.7920368075156], [-79.9310269363447, 32.7920114163188], [-79.9309759163427, 32.7919255873573], [-79.9309703385571, 32.7919160035028], [-79.9309424538108, 32.7918677442702], [-79.9307922708164, 32.7915749700394], [-79.9307668594165, 32.7915240683554], [-79.9306967211931, 32.791382409036], [-79.9306035152739, 32.7911863007773], [-79.9305147199361, 32.791006964581], [-79.9298829013581, 32.7912745929368], [-79.9299844364928, 32.7914447034039]]], "type": "Polygon"}, "id": "507", "properties": {"OBJECTID": 3933, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11014.115234375, "Shape__Length": 443.231049775793, "ZONE_BASE": "LI", "__folium_color": "#8c564b"}, "type": "Feature"}, {"bbox": [-79.9303577638731, 32.7903442395014, -79.9299562215939, 32.7907676406045], "geometry": {"coordinates": [[[-79.9299562215939, 32.7904414834559], [-79.9299564636812, 32.7904416803698], [-79.9301685373097, 32.7907676406045], [-79.9303577638731, 32.790686950158], [-79.9301830207386, 32.7903442395014], [-79.9299562215939, 32.7904414834559]]], "type": "Polygon"}, "id": "508", "properties": {"OBJECTID": 3934, "ORDNO": "2022-081", "ORDSTAT": null, "Shape__Area": 1279.00390625, "Shape__Length": 150.571424897507, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9301085644031, 32.7890127675125, -79.9287258173158, 32.7904816854675], "geometry": {"coordinates": [[[-79.9301085644031, 32.7901727995164], [-79.9297873089903, 32.7895536241998], [-79.9294565114089, 32.7890127675125], [-79.9287258173158, 32.7893322919047], [-79.9290479369547, 32.7898737347992], [-79.9292370410549, 32.7901915901101], [-79.9292913189843, 32.7902828223608], [-79.9293426835547, 32.7903691591748], [-79.9294096292114, 32.7904816854675], [-79.9295453931892, 32.7904178166654], [-79.9296206400253, 32.7903854037348], [-79.9297490471086, 32.790330347126], [-79.9298643728295, 32.7902805058227], [-79.9301085644031, 32.7901727995164]]], "type": "Polygon"}, "id": "509", "properties": {"OBJECTID": 3935, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15476.2109375, "Shape__Length": 519.753889618876, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9314544129308, 32.7899805412965, -79.9306649313614, 32.7908885985847], "geometry": {"coordinates": [[[-79.9308122854073, 32.79006561202], [-79.9306649313614, 32.7901272760291], [-79.9308734635231, 32.7904703822455], [-79.9309833509439, 32.7906412060506], [-79.9309121319284, 32.7906726449556], [-79.9310049090408, 32.7908233958576], [-79.9310454677498, 32.7908885985847], [-79.9314544129308, 32.7907127233511], [-79.9314040546792, 32.7906441218272], [-79.9312091714418, 32.7903236924981], [-79.9310053324127, 32.7899805412965], [-79.9308122854073, 32.79006561202]]], "type": "Polygon"}, "id": "510", "properties": {"OBJECTID": 3936, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4864.568359375, "Shape__Length": 320.753343975389, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9318417840777, 32.7907127233511, -79.9310307469766, 32.7916080128817], "geometry": {"coordinates": [[[-79.9310454677498, 32.7908885985847], [-79.9310307469766, 32.7908948252133], [-79.9310802403751, 32.7909723096435], [-79.9310974163751, 32.7909648148323], [-79.9311589903579, 32.7910523691634], [-79.9312088798822, 32.791031158199], [-79.931265506761, 32.7911240820836], [-79.9313245143155, 32.7912219237088], [-79.9312836216383, 32.7912393453309], [-79.9315077280909, 32.7916080128817], [-79.9315784852993, 32.7915435163753], [-79.9318417840777, 32.7913025467114], [-79.9318040119869, 32.7912644209732], [-79.9317631068185, 32.7912163882487], [-79.9317311259952, 32.7911704111586], [-79.9317040052024, 32.7911261926903], [-79.9316721200836, 32.7910724011046], [-79.9316290773541, 32.7909995221095], [-79.9316139330784, 32.790973967095], [-79.9315597548318, 32.7908802900809], [-79.9315446032791, 32.7908553329118], [-79.9315039066022, 32.7907902076085], [-79.9314544129308, 32.7907127233511], [-79.9310454677498, 32.7908885985847]]], "type": "Polygon"}, "id": "511", "properties": {"OBJECTID": 3937, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4781.166015625, "Shape__Length": 319.126447342398, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9315077280909, 32.7901272760291, -79.9303542661869, 32.7918415040385], "geometry": {"coordinates": [[[-79.9311222590979, 32.7918006899395], [-79.9311228360218, 32.7918008347643], [-79.9311303109213, 32.7918098255433], [-79.9311345498948, 32.7918139965946], [-79.9311439380124, 32.7918216017307], [-79.9311516988475, 32.791826598968], [-79.9311599962688, 32.7918309371406], [-79.9311717583386, 32.7918356293382], [-79.9311841387742, 32.7918390003347], [-79.9311937058055, 32.7918406269508], [-79.9312034138232, 32.7918414647887], [-79.9312131721921, 32.7918415040385], [-79.9312196604393, 32.7918410854477], [-79.9312324736873, 32.7918391925919], [-79.9312418360696, 32.7918368664701], [-79.9312508863357, 32.7918337836858], [-79.9312595418833, 32.7918299759835], [-79.9312650507683, 32.791827050748], [-79.9312703251456, 32.7918238321705], [-79.9312728670198, 32.7918221156324], [-79.9312742674353, 32.7918216264438], [-79.9315077280909, 32.7916080128817], [-79.9312836216383, 32.7912393453309], [-79.9313245143155, 32.7912219237088], [-79.931265506761, 32.7911240820836], [-79.9312088798822, 32.791031158199], [-79.9311589903579, 32.7910523691634], [-79.9310974163751, 32.7909648148323], [-79.9310802403751, 32.7909723096435], [-79.9310307469766, 32.7908948252133], [-79.9310454677498, 32.7908885985847], [-79.9310049090408, 32.7908233958576], [-79.9309121319284, 32.7906726449556], [-79.9309833509439, 32.7906412060506], [-79.9308734635231, 32.7904703822455], [-79.9306649313614, 32.7901272760291], [-79.9303542661869, 32.7902627028416], [-79.9305209764089, 32.7906007157057], [-79.93061347269, 32.7908044834313], [-79.9306898332131, 32.7909692102441], [-79.9308210847782, 32.7912070443073], [-79.9311082945558, 32.7917616275363], [-79.9311093953573, 32.7917700855593], [-79.9311114127972, 32.7917781502728], [-79.9311132669412, 32.7917834196697], [-79.931115520733, 32.7917885753192], [-79.9311181637399, 32.7917935972898], [-79.9311222590979, 32.7918006899395]]], "type": "Polygon"}, "id": "512", "properties": {"OBJECTID": 3938, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9927.91796875, "Shape__Length": 559.338950873972, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9339380460846, 32.7818046335166, -79.9318795280066, 32.7832256376749], "geometry": {"coordinates": [[[-79.9331194870454, 32.7819727514464], [-79.9329747578445, 32.7820332523222], [-79.932381121888, 32.782281136419], [-79.9318795280066, 32.7824907420642], [-79.9319400139451, 32.7829500502207], [-79.9319567181586, 32.7830840384017], [-79.9319647874676, 32.7831497155973], [-79.9319979375296, 32.7832061785435], [-79.932022859651, 32.7832256376749], [-79.9326029526257, 32.7829840788784], [-79.9327083718948, 32.7829395244417], [-79.9334687333379, 32.7826178151896], [-79.9334981665323, 32.7826057878778], [-79.9339380460846, 32.7824247644386], [-79.9338325786814, 32.7822678503439], [-79.933799024611, 32.7822176512419], [-79.9337271116346, 32.7821110254423], [-79.9336432274224, 32.7819854793574], [-79.9336048801597, 32.781928021934], [-79.9335657216577, 32.7818705583287], [-79.9335217845064, 32.7818046335166], [-79.9331194870454, 32.7819727514464]]], "type": "Polygon"}, "id": "513", "properties": {"OBJECTID": 3939, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21042.556640625, "Shape__Length": 636.434503572032, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9318188528161, 32.7825787677332, -79.9312124374389, 32.7834858224744], "geometry": {"coordinates": [[[-79.9313688101503, 32.782705318967], [-79.9314954318221, 32.7829280474827], [-79.9315233160936, 32.7829761370163], [-79.9313631154066, 32.7830376164626], [-79.931394981564, 32.7830926146009], [-79.9314029381631, 32.7831072857236], [-79.9312124374389, 32.7831849930853], [-79.9312427114414, 32.7832372267556], [-79.9312721762562, 32.7832891972282], [-79.9313335147315, 32.7833955616847], [-79.9313846829623, 32.7834858224744], [-79.9318188528161, 32.7833039693846], [-79.9317665408436, 32.783214668268], [-79.9317493890527, 32.7830899704684], [-79.9317406914627, 32.7830288871339], [-79.9317309682692, 32.7829592255999], [-79.9317227521443, 32.7828993675545], [-79.9317153063735, 32.7828430370027], [-79.9316790766513, 32.7825787677332], [-79.9313688101503, 32.782705318967]]], "type": "Polygon"}, "id": "514", "properties": {"OBJECTID": 3940, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4200.34765625, "Shape__Length": 327.714026501388, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9343398165744, 32.7825265483979, -79.9320837071664, 32.7838381527376], "geometry": {"coordinates": [[[-79.9328686352123, 32.782994923499], [-79.9327664290619, 32.7830372379871], [-79.9324385621459, 32.7831720759765], [-79.9320837071664, 32.7833183599002], [-79.9321628243964, 32.7834344999079], [-79.9323562453544, 32.783716566062], [-79.9323754242317, 32.7837449076838], [-79.9324393653589, 32.7838381527376], [-79.9326536176395, 32.7837473350723], [-79.933052682031, 32.7835781559615], [-79.9332914649768, 32.7834770735993], [-79.9333977710632, 32.7834321312923], [-79.9334501074975, 32.7834099100087], [-79.9335171622338, 32.78338154384], [-79.9339284897184, 32.783207316623], [-79.9340544253907, 32.7831536968949], [-79.9343398165744, 32.7830328301103], [-79.9343022860329, 32.7829751220964], [-79.9342671370924, 32.7829222452084], [-79.9342072386999, 32.7828309284008], [-79.9341648970062, 32.7827674220142], [-79.9341313604431, 32.7827158451518], [-79.9340978091556, 32.7826653900353], [-79.9340530745622, 32.7825980840701], [-79.9340059500995, 32.7825265483979], [-79.9336666351381, 32.782666528648], [-79.9337177971443, 32.7827404164598], [-79.9337641699391, 32.7828067917042], [-79.9337993552136, 32.7828566650412], [-79.9337846370264, 32.7828628072324], [-79.9336519180311, 32.7826725842559], [-79.9332431052196, 32.7828409912536], [-79.9328686352123, 32.782994923499]]], "type": "Polygon"}, "id": "515", "properties": {"OBJECTID": 3941, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 18461.001953125, "Shape__Length": 689.645198969907, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9315233621328, 32.7827055083334, -79.9299107715585, 32.7839258836515], "geometry": {"coordinates": [[[-79.9313684982294, 32.7827055083334], [-79.9312101977604, 32.7827699053784], [-79.9310196986683, 32.7828476124465], [-79.9307849260144, 32.7829389089415], [-79.9307241106223, 32.7829640671113], [-79.930382577668, 32.7831088329348], [-79.9302229937798, 32.7831709448705], [-79.9299107715585, 32.7833024507792], [-79.9301913189906, 32.7837117802981], [-79.9303360532846, 32.7839258836515], [-79.9313846829623, 32.7834858224744], [-79.9313335147315, 32.7833955616847], [-79.9312721762562, 32.7832891972282], [-79.9312427114414, 32.7832372267556], [-79.9312127331373, 32.7831851697229], [-79.9314032040824, 32.7831074530822], [-79.9313948161082, 32.78309278721], [-79.9313633482666, 32.7830377808271], [-79.9315233621328, 32.7829763006507], [-79.9314958596675, 32.7829282433105], [-79.9313684982294, 32.7827055083334]]], "type": "Polygon"}, "id": "516", "properties": {"OBJECTID": 3942, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14612.169921875, "Shape__Length": 543.489959299133, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.932216697534, 32.7834194621399, -79.9314235242638, 32.7840433141814], "geometry": {"coordinates": [[[-79.9314235242638, 32.7836000176165], [-79.9315906165279, 32.7838422581259], [-79.9316958239854, 32.7838029261275], [-79.9317622998989, 32.783922266653], [-79.9318303095503, 32.7840433141814], [-79.9318596038929, 32.7840313500737], [-79.932216697534, 32.7838852567462], [-79.9321775369304, 32.7838278801439], [-79.9321327990303, 32.7837609161291], [-79.9321200058384, 32.7837426784627], [-79.932101637351, 32.7837146865715], [-79.9320568575266, 32.7836511590592], [-79.9319089465666, 32.7834394992733], [-79.9319073480675, 32.7834370801214], [-79.9319049361708, 32.7834347386406], [-79.9319025295012, 32.7834320572134], [-79.9318993041464, 32.783429623858], [-79.9318960777741, 32.7834273609407], [-79.9318928440292, 32.7834257878632], [-79.9318896102677, 32.7834240416331], [-79.931886371285, 32.7834228094037], [-79.9318831312515, 32.7834217503175], [-79.9318798859166, 32.7834209500118], [-79.9318766416797, 32.7834202344883], [-79.9318733932197, 32.7834197768527], [-79.9318701405589, 32.7834195753019], [-79.9318668889519, 32.7834194621399], [-79.9318628175892, 32.7834196845184], [-79.9318587462652, 32.7834200782459], [-79.9318554852273, 32.7834206485929], [-79.9318522209704, 32.7834213947697], [-79.9318489557039, 32.7834223979608], [-79.9318456830724, 32.7834238285578], [-79.9314235242638, 32.7836000176165]]], "type": "Polygon"}, "id": "517", "properties": {"OBJECTID": 3943, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3796.388671875, "Shape__Length": 261.71331252584, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9318303095503, 32.7836000176165, -79.9304030155759, 32.7845113937608], "geometry": {"coordinates": [[[-79.9314235242638, 32.7836000176165], [-79.9304030155759, 32.7840283008213], [-79.9307134606033, 32.7845113937608], [-79.9314677499639, 32.7841926828224], [-79.9315963704369, 32.784145780665], [-79.9316589289818, 32.7841205155277], [-79.9318303095503, 32.7840433141814], [-79.9317622998989, 32.783922266653], [-79.9316954273244, 32.7838027116342], [-79.9315906165279, 32.7838422581259], [-79.9314235242638, 32.7836000176165]]], "type": "Polygon"}, "id": "518", "properties": {"OBJECTID": 3944, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9708.615234375, "Shape__Length": 423.713246024671, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9330855305002, 32.7839817950625, -79.9318631688445, 32.7853465491861], "geometry": {"coordinates": [[[-79.9321933286169, 32.7851971771198], [-79.9323357094067, 32.7851296132646], [-79.9324772775781, 32.785062043959], [-79.9326747409946, 32.7853465491861], [-79.9330855305002, 32.785150586635], [-79.9328880661992, 32.784866081175], [-79.9328057212782, 32.7847475082867], [-79.9327049835784, 32.7846030049274], [-79.9325570915198, 32.784389539719], [-79.9324979338183, 32.7843042419574], [-79.9324811405002, 32.7842804727358], [-79.9324060020688, 32.7841714975687], [-79.9322740912234, 32.7839817950625], [-79.9320443018015, 32.7840790048356], [-79.9319134598053, 32.7841344717399], [-79.9321210926267, 32.7844518790464], [-79.9319738121897, 32.7845210312868], [-79.9320399279442, 32.7846360270802], [-79.9319040867711, 32.7847010711313], [-79.9318631688445, 32.7847207283382], [-79.9319974655968, 32.7849149189221], [-79.9320110619159, 32.7849341060319], [-79.9321109854057, 32.7850786028673], [-79.9321933286169, 32.7851971771198]]], "type": "Polygon"}, "id": "519", "properties": {"OBJECTID": 3945, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12017.109375, "Shape__Length": 535.974103216971, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9326747409946, 32.785062043959, -79.9321933286169, 32.7854816899171], "geometry": {"coordinates": [[[-79.9321933286169, 32.7851971771198], [-79.9323916059284, 32.7854816899171], [-79.9325331724926, 32.7854141205258], [-79.9326747409946, 32.7853465491861], [-79.9324772775781, 32.785062043959], [-79.9323357094067, 32.7851296132646], [-79.9321933286169, 32.7851971771198]]], "type": "Polygon"}, "id": "520", "properties": {"OBJECTID": 3946, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1582.814453125, "Shape__Length": 159.844729772388, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9323916059284, 32.7841344717399, -79.9307826202317, 32.7858592829756], "geometry": {"coordinates": [[[-79.9319134598053, 32.7841344717399], [-79.9317826166057, 32.784190023268], [-79.9316427802487, 32.7842491025664], [-79.9315119377425, 32.7843045690422], [-79.9313721010188, 32.7843636480319], [-79.9312240855481, 32.78442635204], [-79.9311161428812, 32.7844718806112], [-79.9310090125019, 32.7845175009584], [-79.9307826202317, 32.7846150023134], [-79.9308799127105, 32.7847626489337], [-79.930919853696, 32.784822784282], [-79.9309733623729, 32.7849042556694], [-79.9310907696992, 32.7850824066293], [-79.9312233437742, 32.7852843126663], [-79.9313365860957, 32.7854682303185], [-79.9314618323158, 32.785667059954], [-79.9315074719306, 32.7857364526269], [-79.9315882564245, 32.7858592829756], [-79.9317083192343, 32.7858072141712], [-79.9318163336631, 32.7857559301682], [-79.9319243490021, 32.7857045613066], [-79.9320315518768, 32.7856531816515], [-79.9322475829789, 32.7855503568874], [-79.9323916059284, 32.7854816899171], [-79.9321933286169, 32.7851971771198], [-79.9321109854057, 32.7850786028673], [-79.9320110619159, 32.7849341060319], [-79.9319974655968, 32.7849149189221], [-79.9318631688445, 32.7847207283382], [-79.9319040867711, 32.7847010711313], [-79.9320399279442, 32.7846360270802], [-79.9319738121897, 32.7845210312868], [-79.9321210926267, 32.7844518790464], [-79.9319134598053, 32.7841344717399]]], "type": "Polygon"}, "id": "521", "properties": {"OBJECTID": 3947, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20996.53515625, "Shape__Length": 654.092902861341, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9337168711462, 32.7836970810171, -79.9325046188969, 32.7850627211454], "geometry": {"coordinates": [[[-79.9333894966402, 32.7842411248395], [-79.933063020259, 32.7836970810171], [-79.9325046188969, 32.7839336529768], [-79.9328867353904, 32.784490050011], [-79.9329674627149, 32.7846077510886], [-79.9330002363208, 32.7846553688795], [-79.9331353101186, 32.7848527421366], [-79.9332799042341, 32.7850627211454], [-79.9337168711462, 32.7848602119597], [-79.9335665086853, 32.784643183147], [-79.9334050329449, 32.7843945335911], [-79.9333213834764, 32.7842730502828], [-79.9333894966402, 32.7842411248395]]], "type": "Polygon"}, "id": "522", "properties": {"OBJECTID": 3948, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10500.578125, "Shape__Length": 476.496117296151, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9316524429921, 32.7821190762822, -79.9305791801793, 32.7827055264813], "geometry": {"coordinates": [[[-79.9308091545835, 32.7826252394273], [-79.9309489626442, 32.7825683054282], [-79.9309887511699, 32.7826406385491], [-79.93099447668, 32.7826381977087], [-79.9310318860286, 32.7827055264813], [-79.9312804384269, 32.7826038426107], [-79.9315142687392, 32.7825084759837], [-79.9316524429921, 32.7824520436695], [-79.9316309676681, 32.782279113101], [-79.9316109616368, 32.7821190762822], [-79.9305791801793, 32.7822064431893], [-79.930736742935, 32.7824931784133], [-79.9308091545835, 32.7826252394273]]], "type": "Polygon"}, "id": "523", "properties": {"OBJECTID": 3949, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6061.689453125, "Shape__Length": 336.044418599743, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9305080830575, 32.7822165635329, -79.9292948676309, 32.7826945816405], "geometry": {"coordinates": [[[-79.9293955846713, 32.7825337609666], [-79.9295360172717, 32.7824921282771], [-79.9295328605183, 32.7824842826396], [-79.9295540894548, 32.7824779400015], [-79.9296226735972, 32.7824575814175], [-79.9296498338278, 32.782498278113], [-79.9296594263647, 32.7825121060182], [-79.9296945660476, 32.7825654982188], [-79.9297257039424, 32.7826135309605], [-79.9297656431214, 32.7826735818989], [-79.9297800288228, 32.7826945816405], [-79.9299084760971, 32.7826354021671], [-79.9298689321004, 32.7825755919159], [-79.9299400144148, 32.7825457397352], [-79.9300302507623, 32.7825078429182], [-79.9301223736058, 32.7826468594478], [-79.930228753615, 32.7826015138115], [-79.9301096933411, 32.782425197237], [-79.9302939606907, 32.7823743343558], [-79.9303002261584, 32.7823853311143], [-79.9305080830575, 32.7822995909544], [-79.9304589907417, 32.7822165635329], [-79.9302111635753, 32.7822264064016], [-79.9300016243577, 32.7822502771261], [-79.9297615165996, 32.7822755484735], [-79.9296434947666, 32.7822854461899], [-79.9295514732753, 32.7822932337375], [-79.9294854874736, 32.7823006439108], [-79.9292948676309, 32.7823218237672], [-79.9293396870754, 32.7824482331634], [-79.9293955846713, 32.7825337609666]]], "type": "Polygon"}, "id": "524", "properties": {"OBJECTID": 3950, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4177.57421875, "Shape__Length": 392.900738772016, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9292977088423, 32.7823372784946, -79.9287987638886, 32.7826969268976], "geometry": {"coordinates": [[[-79.9292977088423, 32.7825544663967], [-79.9291563822397, 32.7823372784946], [-79.929027671552, 32.7823516985554], [-79.9287987638886, 32.7823770976299], [-79.9289583556337, 32.7826969268976], [-79.9291112671909, 32.7826328932117], [-79.9291308925161, 32.7826246481645], [-79.9292977088423, 32.7825544663967]]], "type": "Polygon"}, "id": "525", "properties": {"OBJECTID": 3951, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1581.5, "Shape__Length": 161.084674279714, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9285234819321, 32.7824121822336, -79.9278916451532, 32.782729517359], "geometry": {"coordinates": [[[-79.9279530939514, 32.7826600839012], [-79.9282349426131, 32.7826612890246], [-79.928244713678, 32.782729517359], [-79.9284065369508, 32.7826897570776], [-79.9285234819321, 32.7826610126633], [-79.9284846244473, 32.7824121822336], [-79.9283652644912, 32.7824254786456], [-79.9278916451532, 32.7824782339718], [-79.9279530939514, 32.7826600839012]]], "type": "Polygon"}, "id": "526", "properties": {"OBJECTID": 3952, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2018.59765625, "Shape__Length": 197.65371966926, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9310318860286, 32.7825683054282, -79.9308091545835, 32.7827648139617], "geometry": {"coordinates": [[[-79.9308091545835, 32.7826252394273], [-79.9308863554873, 32.7827648139617], [-79.9310318860286, 32.7827055264813], [-79.93099447668, 32.7826381977087], [-79.9309887511699, 32.7826406385491], [-79.9309489626442, 32.7825683054282], [-79.9308091545835, 32.7826252394273]]], "type": "Polygon"}, "id": "527", "properties": {"OBJECTID": 3953, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 359.16015625, "Shape__Length": 76.7826683523274, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9295484211504, 32.7825544663967, -79.9289583556337, 32.7831031140622], "geometry": {"coordinates": [[[-79.9289583556337, 32.7826969268976], [-79.9290306088462, 32.7828416980791], [-79.9290711018895, 32.7829228841157], [-79.9291608177789, 32.7831031140622], [-79.9292818419839, 32.7830522041272], [-79.9295484211504, 32.7829402066898], [-79.9294374419437, 32.7827690654484], [-79.9292977088423, 32.7825544663967], [-79.9291308925161, 32.7826246481645], [-79.9291112671909, 32.7826328932117], [-79.9289583556337, 32.7826969268976]]], "type": "Polygon"}, "id": "528", "properties": {"OBJECTID": 3954, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2631.126953125, "Shape__Length": 206.980463171834, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9307983524797, 32.7822995909544, -79.9293955846713, 32.7832034472698], "geometry": {"coordinates": [[[-79.9293955846713, 32.7825337609666], [-79.9294355119696, 32.7825946722621], [-79.9294714396909, 32.7826501330212], [-79.9295105642681, 32.7827103473633], [-79.9295496877987, 32.7827705643892], [-79.9295856156649, 32.7828260251158], [-79.9296263377408, 32.7828885729201], [-79.9296391060623, 32.7829087865564], [-79.9296670567131, 32.7829513786088], [-79.9297197401641, 32.7830336171038], [-79.9298282968584, 32.7832034472698], [-79.9299215180297, 32.7831642319964], [-79.9300531711558, 32.7831088590964], [-79.9301848230341, 32.7830537484799], [-79.9303271071583, 32.7829939175886], [-79.9305626137669, 32.7828947878209], [-79.9307983524797, 32.7827973217174], [-79.930640425723, 32.7825234201197], [-79.9305080830575, 32.7822995909544], [-79.9303002261584, 32.7823853311143], [-79.9302939606907, 32.7823743343558], [-79.9301096933411, 32.782425197237], [-79.930228753615, 32.7826015138115], [-79.9301223736058, 32.7826468594478], [-79.9300302507623, 32.7825078429182], [-79.9299400144148, 32.7825457397352], [-79.9298689321004, 32.7825755919159], [-79.9299084776242, 32.7826354517814], [-79.9297800288228, 32.7826945816405], [-79.9297656431214, 32.7826735818989], [-79.9297257039424, 32.7826135309605], [-79.9296945660476, 32.7825654982188], [-79.9296594263647, 32.7825121060182], [-79.9296498338278, 32.782498278113], [-79.9296226735972, 32.7824575814175], [-79.9295540894548, 32.7824779400015], [-79.9295328605183, 32.7824842826396], [-79.9295360172717, 32.7824921282771], [-79.9293955846713, 32.7825337609666]]], "type": "Polygon"}, "id": "529", "properties": {"OBJECTID": 3955, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9261.78125, "Shape__Length": 514.777490912575, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9297408001585, 32.7829643984212, -79.9286281477029, 32.7836236355008], "geometry": {"coordinates": [[[-79.9287071316399, 32.783421300494], [-79.9287205691533, 32.7834457821657], [-79.9287060585271, 32.7834517632373], [-79.9288160940495, 32.7836236355008], [-79.9289214803731, 32.783580684771], [-79.9290302196409, 32.7835365404137], [-79.9291471320739, 32.7834892885295], [-79.9291659357646, 32.783481720776], [-79.9293654656343, 32.7833976555829], [-79.9294938478383, 32.7833438031047], [-79.9296254994008, 32.7832886894724], [-79.9297408001585, 32.7832401314978], [-79.9295643947255, 32.7829643984212], [-79.9294490942832, 32.7830128651431], [-79.9293174441039, 32.7830679776916], [-79.9291890611182, 32.7831218308755], [-79.9290974759937, 32.7831602870408], [-79.929063340237, 32.7830872930275], [-79.9290231529271, 32.7830087664731], [-79.928767423752, 32.7831039898381], [-79.9287888207816, 32.7831531333648], [-79.9286514072757, 32.7832038776494], [-79.9286281477029, 32.7832164683077], [-79.9287067986997, 32.7833147167844], [-79.9286518684993, 32.7833413242151], [-79.9287071316399, 32.783421300494]]], "type": "Polygon"}, "id": "530", "properties": {"OBJECTID": 3956, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5730.412109375, "Shape__Length": 360.082937170668, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9302597032433, 32.7833467060574, -79.9288675173398, 32.7845067224905], "geometry": {"coordinates": [[[-79.9292722243688, 32.7841016479131], [-79.9291643000335, 32.7841456300812], [-79.9291054345899, 32.7841694229157], [-79.9290465690921, 32.7841932175254], [-79.9289877035512, 32.7842170130086], [-79.9289296514246, 32.7842408146832], [-79.9288675173398, 32.7842657827395], [-79.9289352029807, 32.7843850028594], [-79.9290036738011, 32.7845067224905], [-79.9290641959116, 32.7844805363012], [-79.9291222618443, 32.7844556191105], [-79.9291803288058, 32.7844306153253], [-79.9292383947164, 32.7844056944728], [-79.9292964605718, 32.7843807753962], [-79.9294035979707, 32.7843346434595], [-79.9294461263225, 32.7843163728575], [-79.9294951863103, 32.7842961014042], [-79.929600664023, 32.7842526142893], [-79.9297110485868, 32.7842070209364], [-79.9298132575876, 32.7841647089956], [-79.9299449017812, 32.7841103678146], [-79.9300029577663, 32.7840862211941], [-79.9300879938541, 32.7840511457695], [-79.9302597032433, 32.7839801478076], [-79.930219783139, 32.783918463972], [-79.9302022128537, 32.7838917683953], [-79.9301686244418, 32.7838444899245], [-79.93010066702, 32.783747255792], [-79.9300846689387, 32.7837250398396], [-79.9299815282348, 32.7835779348396], [-79.9299095608912, 32.783476030993], [-79.9298671883186, 32.783415271616], [-79.9298159639105, 32.7833467060574], [-79.929653237894, 32.7834149448034], [-79.9295076820459, 32.7834761215957], [-79.9293621249262, 32.7835372982058], [-79.929231286263, 32.7835924177739], [-79.9292165697541, 32.783598386282], [-79.9290579594095, 32.7836626281595], [-79.9289524884623, 32.7837055124327], [-79.9289580655183, 32.7837151820454], [-79.9290912373762, 32.783934105189], [-79.9290913253092, 32.783934247547], [-79.9291438798176, 32.784019691197], [-79.9292109237457, 32.7839923607798], [-79.9292722243688, 32.7841016479131]]], "type": "Polygon"}, "id": "531", "properties": {"OBJECTID": 3957, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12049.408203125, "Shape__Length": 517.193433031156, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9306261501082, 32.7840645858702, -79.9293421384716, 32.7849839304137], "geometry": {"coordinates": [[[-79.9293421384716, 32.7844694847499], [-79.929496590744, 32.7847122984461], [-79.9294467117576, 32.7847329099432], [-79.9296063403547, 32.7849839304137], [-79.9297314699364, 32.7849301339726], [-79.9298467917281, 32.7848800321117], [-79.9299629278738, 32.7848299390697], [-79.9301330404512, 32.7847566068749], [-79.930174748005, 32.7847388464946], [-79.9302826904543, 32.7846934035162], [-79.930384095788, 32.7846503102913], [-79.930509213891, 32.7845974589908], [-79.9306261501082, 32.7845483147402], [-79.9305535171962, 32.7844342072233], [-79.9304415530304, 32.7842665483945], [-79.930393569215, 32.7841964800929], [-79.9303151997005, 32.7840645858702], [-79.9293421384716, 32.7844694847499]]], "type": "Polygon"}, "id": "532", "properties": {"OBJECTID": 3958, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9082.638671875, "Shape__Length": 401.361344942848, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9296063403547, 32.7844694776864, -79.929005610384, 32.7851429744904], "geometry": {"coordinates": [[[-79.9293417435396, 32.7844694776864], [-79.9292313363298, 32.7845168741861], [-79.929005610384, 32.7846141129622], [-79.9291368123355, 32.784861106508], [-79.9292383001538, 32.7851429744904], [-79.9296063403547, 32.7849839304137], [-79.9294467117576, 32.7847329099432], [-79.929496590744, 32.7847122984461], [-79.9293417435396, 32.7844694776864]]], "type": "Polygon"}, "id": "533", "properties": {"OBJECTID": 3959, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3173.28125, "Shape__Length": 243.271004223558, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9311991413736, 32.7846446346697, -79.9294767208866, 32.786007766012], "geometry": {"coordinates": [[[-79.9295148510443, 32.7851471126004], [-79.9296576245865, 32.7853794347547], [-79.9297286060142, 32.7854955899685], [-79.9295512222486, 32.7855645607531], [-79.929609961877, 32.785683790605], [-79.9294767208866, 32.7857355391351], [-79.929546601355, 32.7858750505007], [-79.9295081816777, 32.785890005874], [-79.9295661259495, 32.786007766012], [-79.9297393812313, 32.7859437390186], [-79.9299175453933, 32.7858774351956], [-79.9300188849167, 32.7858398383706], [-79.9301202243483, 32.7858023289398], [-79.9301439249447, 32.7857935151295], [-79.9302191002083, 32.7857665988511], [-79.9303735357084, 32.7857113436025], [-79.9306627961435, 32.7856078694984], [-79.9309332655855, 32.7855107598112], [-79.9309471594067, 32.7855056424527], [-79.9311991413736, 32.7854092986251], [-79.9311032631937, 32.7852618359651], [-79.9310171925825, 32.7851314585346], [-79.9308560983578, 32.7848894833684], [-79.9306891149318, 32.7846446346697], [-79.9303975424176, 32.7847677711558], [-79.9301127091657, 32.7848888014847], [-79.9300284709587, 32.7849250878659], [-79.9299556829906, 32.784956406019], [-79.9298109203121, 32.7850189645384], [-79.9296612494417, 32.7850837958636], [-79.9295148510443, 32.7851471126004]]], "type": "Polygon"}, "id": "534", "properties": {"OBJECTID": 3960, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 18626.951171875, "Shape__Length": 609.810369693234, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9297286060142, 32.7851471126004, -79.9291476297392, 32.7861594096054], "geometry": {"coordinates": [[[-79.9295148510443, 32.7851471126004], [-79.9293913552942, 32.785200320696], [-79.9291476297392, 32.7853056495332], [-79.9291671653374, 32.7855700486289], [-79.9291677680648, 32.7855872338854], [-79.9291752040703, 32.7857105664622], [-79.9291793145753, 32.7857733963989], [-79.9291783536982, 32.7858517287039], [-79.9291771210081, 32.7859522194541], [-79.9291574951073, 32.7861594096054], [-79.9294770436745, 32.7860409145444], [-79.9295661259495, 32.786007766012], [-79.9295081816777, 32.785890005874], [-79.929546601355, 32.7858750505007], [-79.9294767208866, 32.7857355391351], [-79.929609961877, 32.785683790605], [-79.9295512222486, 32.7855645607531], [-79.9297286060142, 32.7854955899685], [-79.9296576245865, 32.7853794347547], [-79.9295148510443, 32.7851471126004]]], "type": "Polygon"}, "id": "535", "properties": {"OBJECTID": 3961, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5303.2265625, "Shape__Length": 357.646845383883, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9290231529271, 32.7823846635897, -79.9279524967932, 32.7837620003272], "geometry": {"coordinates": [[[-79.9279524967932, 32.7826600272636], [-79.9280894247515, 32.7830877856384], [-79.928136779014, 32.7831745829106], [-79.9283818535544, 32.7836007335264], [-79.9284180245848, 32.783665836461], [-79.9284746744236, 32.7837620003272], [-79.9287187986455, 32.7836629630692], [-79.928652634104, 32.7835624485092], [-79.9286049331058, 32.7834860988798], [-79.92864774179, 32.7834577538976], [-79.9287071316399, 32.783421300494], [-79.9286518684993, 32.7833413242151], [-79.9287067986997, 32.7833147167844], [-79.9286281477029, 32.7832164683077], [-79.9286514072757, 32.7832038776494], [-79.9287450141167, 32.7831692957698], [-79.9287888207816, 32.7831531333648], [-79.928767423752, 32.7831039898381], [-79.9290231529271, 32.7830087664731], [-79.928990111625, 32.7829401198519], [-79.9289135515506, 32.7827703886997], [-79.9288342249239, 32.7826032386811], [-79.9287311500997, 32.7823846635897], [-79.9286008102997, 32.7823992429916], [-79.928484320703, 32.7824121398924], [-79.9285235686637, 32.7826609917788], [-79.9284060712915, 32.7826896853611], [-79.9282445078533, 32.7827294993228], [-79.9282347695547, 32.7826612108524], [-79.9279524967932, 32.7826600272636]]], "type": "Polygon"}, "id": "536", "properties": {"OBJECTID": 3962, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10644.830078125, "Shape__Length": 544.238058962594, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9290913253092, 32.7837055124327, -79.9286678076084, 32.7840495715626], "geometry": {"coordinates": [[[-79.9290913253092, 32.783934247547], [-79.9290912373762, 32.783934105189], [-79.9289580655183, 32.7837151820454], [-79.9289524884623, 32.7837055124327], [-79.9289287820225, 32.7837149256761], [-79.9288789077205, 32.7837351906717], [-79.9287734386995, 32.7837780775147], [-79.928667967473, 32.783820961543], [-79.9286678076084, 32.7838210259772], [-79.9288071052963, 32.7840495715626], [-79.9289127053225, 32.7840067354345], [-79.9290183707054, 32.7839638718316], [-79.9290913253092, 32.783934247547]]], "type": "Polygon"}, "id": "537", "properties": {"OBJECTID": 3963, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1195.22265625, "Shape__Length": 138.325859671782, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9292722243688, 32.7838210259772, -79.9285624982618, 32.7845168228607], "geometry": {"coordinates": [[[-79.9292722243688, 32.7841016479131], [-79.9292109237457, 32.7839923607798], [-79.9291438798176, 32.784019691197], [-79.9290913253092, 32.783934247547], [-79.9290183707054, 32.7839638718316], [-79.9289127053225, 32.7840067354345], [-79.9288071052963, 32.7840495715626], [-79.9286678076084, 32.7838210259772], [-79.9285624982618, 32.7838637598248], [-79.9287012442541, 32.7840924413885], [-79.9287538864086, 32.7841780275657], [-79.9287849853783, 32.7842292373826], [-79.9288168218928, 32.7842866420493], [-79.9288828795776, 32.78440610587], [-79.9289369940611, 32.7845043323689], [-79.9289799576517, 32.7845168228607], [-79.9290036738011, 32.7845067224905], [-79.9289352029807, 32.7843850028594], [-79.9288675173398, 32.7842657827395], [-79.9289296514246, 32.7842408146832], [-79.9289877035512, 32.7842170130086], [-79.9290465690921, 32.7841932175254], [-79.9291054345899, 32.7841694229157], [-79.9291643000335, 32.7841456300812], [-79.9292722243688, 32.7841016479131]]], "type": "Polygon"}, "id": "538", "properties": {"OBJECTID": 3964, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2179.775390625, "Shape__Length": 307.069338278607, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9346158574978, 32.7781078266073, -79.9337779067644, 32.7790890590688], "geometry": {"coordinates": [[[-79.9337779067644, 32.778178741037], [-79.9337871875644, 32.7782608528503], [-79.9337866564008, 32.7783522465077], [-79.9338065470172, 32.7784637721587], [-79.9339908196341, 32.7784363533861], [-79.9340208569996, 32.7786801187359], [-79.9338181026712, 32.7786983455074], [-79.9338711613806, 32.7790890590688], [-79.9343910691209, 32.7790343527734], [-79.9346158574978, 32.7790122586805], [-79.9345660229746, 32.7786297450823], [-79.9344983670873, 32.7781078266073], [-79.9344022626046, 32.7781172974858], [-79.9337779067644, 32.778178741037]]], "type": "Polygon"}, "id": "539", "properties": {"OBJECTID": 3965, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9289.734375, "Shape__Length": 450.72991816749, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9340208569996, 32.778178741037, -79.9330258837444, 32.7791579163711], "geometry": {"coordinates": [[[-79.9337779067644, 32.778178741037], [-79.9336485738899, 32.7781914424738], [-79.93346207803, 32.7782106436618], [-79.9333560432588, 32.7782243784991], [-79.9330258837444, 32.7782525936996], [-79.9330318419309, 32.7782947640763], [-79.9330406683061, 32.7783713753041], [-79.933047336855, 32.7784246913448], [-79.9330532098926, 32.7784766260501], [-79.9330606089211, 32.7785368213479], [-79.9330768333078, 32.7786736296674], [-79.9330886120007, 32.7787748362425], [-79.9330974887932, 32.7788472426513], [-79.9331056173088, 32.7789143153932], [-79.9331122534177, 32.7789703799437], [-79.9332417519093, 32.7789576805062], [-79.9332424656113, 32.7789658456334], [-79.9332431782447, 32.7789740982292], [-79.9331144941501, 32.7789868074763], [-79.9331196021573, 32.7790346970908], [-79.9331255099234, 32.7790838842062], [-79.9331339441596, 32.7791579163711], [-79.9338711613806, 32.7790890590688], [-79.9338181026712, 32.7786983455074], [-79.9340208569996, 32.7786801187359], [-79.9339908196341, 32.7784363533861], [-79.9338065470172, 32.7784637721587], [-79.9337866564008, 32.7783522465077], [-79.9337871875644, 32.7782608528503], [-79.9337779067644, 32.778178741037]]], "type": "Polygon"}, "id": "540", "properties": {"OBJECTID": 3966, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10629.1015625, "Shape__Length": 482.264987332409, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9346958016385, 32.7791200656793, -79.9336387896493, 32.7795498074311], "geometry": {"coordinates": [[[-79.9336387896493, 32.7792189271533], [-79.9336631660987, 32.7794210912126], [-79.9337926630878, 32.7794083875658], [-79.9338749246233, 32.7794002592903], [-79.9338728369141, 32.7793713760555], [-79.9339217032673, 32.7793666479213], [-79.9340104791961, 32.7793578891261], [-79.9341073984881, 32.7793484247395], [-79.9341766289515, 32.7793415544135], [-79.9342841358945, 32.7793310665604], [-79.9342945231082, 32.77941310501], [-79.9343865568143, 32.7794040298205], [-79.9344476407914, 32.7793980335025], [-79.9344661252861, 32.7795498074311], [-79.9346958016385, 32.7795272380995], [-79.9346765023135, 32.779375542788], [-79.934666928124, 32.7792935123562], [-79.9346557743594, 32.7792076010994], [-79.9346454539112, 32.7791200656793], [-79.9344092631678, 32.7791432617538], [-79.9343897166877, 32.7791451530877], [-79.9340859254065, 32.7791749752582], [-79.9339890052367, 32.7791845270963], [-79.9339002305171, 32.7791932011123], [-79.9338326290415, 32.7791999123256], [-79.9337674740207, 32.7792062164526], [-79.9336387896493, 32.7792189271533]]], "type": "Polygon"}, "id": "541", "properties": {"OBJECTID": 3967, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3682.248046875, "Shape__Length": 341.617042662432, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9344661252861, 32.7792189271533, -79.9331484892941, 32.7796739104014], "geometry": {"coordinates": [[[-79.9336387896493, 32.7792189271533], [-79.9331484892941, 32.7792670498532], [-79.9331715894335, 32.7794403405533], [-79.9331827732602, 32.7795236747769], [-79.9331924310488, 32.7795987520156], [-79.9332020867948, 32.7796739104014], [-79.9334610847338, 32.779648511188], [-79.9335742943171, 32.779637383767], [-79.9336923904619, 32.7796257883956], [-79.9338886761865, 32.7796064511943], [-79.9342063124154, 32.7795753757213], [-79.9343097495883, 32.7795651932802], [-79.9343846801937, 32.7795577736718], [-79.9344661252861, 32.7795498074311], [-79.9344476407914, 32.7793980335025], [-79.9343865568143, 32.7794040298205], [-79.9342945231082, 32.77941310501], [-79.9342841358945, 32.7793310665604], [-79.9341766289515, 32.7793415544135], [-79.9341073984881, 32.7793484247395], [-79.9340104791961, 32.7793578891261], [-79.9339217032673, 32.7793666479213], [-79.9338728369141, 32.7793713760555], [-79.9338749246233, 32.7794002592903], [-79.9337926630878, 32.7794083875658], [-79.9336631660987, 32.7794210912126], [-79.9336387896493, 32.7792189271533]]], "type": "Polygon"}, "id": "542", "properties": {"OBJECTID": 3968, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5398.39453125, "Shape__Length": 399.668413122579, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9347253828393, 32.7796092721474, -79.9344178729413, 32.7797940242247], "geometry": {"coordinates": [[[-79.9344178729413, 32.7796375189902], [-79.9344200919018, 32.7796556643044], [-79.9344371131674, 32.7797940242247], [-79.9345348221571, 32.7797865440983], [-79.9347253828393, 32.7797697340376], [-79.9347172676559, 32.7797013728023], [-79.9347083747437, 32.7796302578044], [-79.9347053769043, 32.7796092721474], [-79.9345147935341, 32.7796279695171], [-79.9344178729413, 32.7796375189902]]], "type": "Polygon"}, "id": "543", "properties": {"OBJECTID": 3969, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 682.419921875, "Shape__Length": 106.668885779962, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9347483667813, 32.7796375189902, -79.9332132885408, 32.7800841298203], "geometry": {"coordinates": [[[-79.9344178729413, 32.7796375189902], [-79.9343836653452, 32.7796409158429], [-79.9343535310291, 32.7796438305147], [-79.9342908169393, 32.7796500705116], [-79.9341938952301, 32.779659619798], [-79.9336205184947, 32.7797158694114], [-79.9334877611288, 32.7797288871542], [-79.9332132885408, 32.7797558703829], [-79.9332221823291, 32.7798269025398], [-79.9332333494609, 32.7799116110129], [-79.9332564593712, 32.7800841298203], [-79.9339975264269, 32.780018947765], [-79.9343794612349, 32.7799853388009], [-79.9344185503775, 32.7799818996956], [-79.9345415178646, 32.7799711151976], [-79.9347483667813, 32.7799528146342], [-79.9347350566378, 32.7798435225617], [-79.9347253828393, 32.7797697340376], [-79.9345348221571, 32.7797865440983], [-79.9344371131674, 32.7797940242247], [-79.9344200919018, 32.7796556643044], [-79.9344178729413, 32.7796375189902]]], "type": "Polygon"}, "id": "544", "properties": {"OBJECTID": 3970, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6795.2265625, "Shape__Length": 423.179302439802, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9348016724047, 32.7800075932215, -79.9332639269353, 32.7805166198958], "geometry": {"coordinates": [[[-79.9343787860937, 32.7800406496913], [-79.9332639269353, 32.7801387388412], [-79.9333138132251, 32.7805166198958], [-79.9343741279723, 32.7804222640048], [-79.9348016724047, 32.7803842415015], [-79.9347550197143, 32.7800075932215], [-79.9343787860937, 32.7800406496913]]], "type": "Polygon"}, "id": "545", "properties": {"OBJECTID": 3971, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8376.279296875, "Shape__Length": 433.926033320683, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9348420867367, 32.7804799219601, -79.9333205393317, 32.7813892006696], "geometry": {"coordinates": [[[-79.93437189629, 32.7805191197142], [-79.9341878474331, 32.7805354683194], [-79.9341495714349, 32.7805389144379], [-79.9339761103221, 32.78055432778], [-79.9333205393317, 32.7806126085792], [-79.9333405828134, 32.7807698082203], [-79.9333494432597, 32.7808435861721], [-79.9333583362229, 32.7809147039927], [-79.9333672302803, 32.7809857334426], [-79.933376886307, 32.7810609811074], [-79.9333864605249, 32.7811429259906], [-79.9333946744631, 32.7812030427121], [-79.9334012931059, 32.7812605662751], [-79.933408011407, 32.7813099336052], [-79.9334452772538, 32.7813892006696], [-79.934191569058, 32.7810969437562], [-79.9343656728191, 32.781028967713], [-79.9347220555191, 32.7808896482836], [-79.9347269674055, 32.780887200186], [-79.934731878191, 32.780884667306], [-79.9347351485673, 32.7808833222882], [-79.9347376066284, 32.7808819683934], [-79.9347400625434, 32.7808806153816], [-79.9347425195259, 32.780879262379], [-79.9347449786431, 32.780877821917], [-79.9347474366707, 32.7808763832491], [-79.934749894665, 32.7808748598083], [-79.9347523537597, 32.7808733336716], [-79.9347548138889, 32.7808718102493], [-79.9347589186074, 32.7808686688254], [-79.9347613787471, 32.7808670570232], [-79.9347638409885, 32.7808653604668], [-79.9347663000605, 32.7808637486552], [-79.9347704089925, 32.7808603493427], [-79.9347728722788, 32.7808585671209], [-79.9347769822664, 32.780854993763], [-79.9347810953899, 32.7808513383654], [-79.9347852074564, 32.7808475945785], [-79.934787671787, 32.7808456392131], [-79.934790973618, 32.7808418035986], [-79.9347934379484, 32.7808398482331], [-79.9347950888414, 32.7808378010121], [-79.9347967408017, 32.7808357538006], [-79.934798392762, 32.780833706589], [-79.9348000457897, 32.7808316593866], [-79.9348016977498, 32.780829612175], [-79.9348033496767, 32.7808274801905], [-79.9348050027149, 32.7808253446083], [-79.934806655709, 32.7808232126331], [-79.9348083097816, 32.7808210797654], [-79.9348099628195, 32.7808189441832], [-79.9348116168587, 32.7808167265426], [-79.9348132698632, 32.7808145061875], [-79.9348157645262, 32.7808100647257], [-79.9348174207107, 32.7808077587239], [-79.9348199164956, 32.7808032252845], [-79.9348224122139, 32.7807986097776], [-79.9348240673196, 32.7807963046682], [-79.9348257517355, 32.7807915973246], [-79.9348274089537, 32.7807892065591], [-79.9348282517446, 32.7807868050953], [-79.9348290944915, 32.7807844072382], [-79.9348299372383, 32.7807820093812], [-79.9348307799412, 32.7807796151312], [-79.9348316216205, 32.7807772172648], [-79.9348333081921, 32.7807723331803], [-79.9348341519729, 32.7807698505597], [-79.9348349957647, 32.7807673670374], [-79.9348358395787, 32.7807649691897], [-79.9348366834034, 32.7807624829621], [-79.934837527184, 32.7807600003416], [-79.9348375575612, 32.7807575106388], [-79.9348384024311, 32.780754938746], [-79.9348384328083, 32.7807524490433], [-79.9348392765997, 32.7807499655209], [-79.934839306977, 32.7807474758182], [-79.9348401518356, 32.7807449048271], [-79.9348401822238, 32.7807424142226], [-79.9348410270823, 32.7807398432316], [-79.9348410574595, 32.7807373535288], [-79.9348410888818, 32.7807347781608], [-79.9348411193029, 32.780732284851], [-79.9348411507143, 32.7807297103848], [-79.934841993438, 32.7807272268532], [-79.9348420248933, 32.7807246487799], [-79.9348420552704, 32.7807221590772], [-79.9348420867367, 32.7807195801022], [-79.9348413058125, 32.7807169985631], [-79.9348413362116, 32.7807145070569], [-79.934841367656, 32.7807119298854], [-79.9348413980331, 32.7807094401827], [-79.9348406160965, 32.7807068541256], [-79.9348124724002, 32.7804799219601], [-79.93437189629, 32.7805191197142]]], "type": "Polygon"}, "id": "546", "properties": {"OBJECTID": 3972, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12635.140625, "Shape__Length": 487.396349810287, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9352329374512, 32.7810438506855, -79.9334809478334, 32.7823656162294], "geometry": {"coordinates": [[[-79.9343645342035, 32.7811222463509], [-79.9341511989936, 32.7812051694159], [-79.9340302263454, 32.7812523040657], [-79.9338405957541, 32.7813259882185], [-79.9334809478334, 32.7814658763695], [-79.9335648449832, 32.7815903035], [-79.9336111792803, 32.7816597708589], [-79.9336543323788, 32.7817232845103], [-79.9337142493564, 32.781813057809], [-79.9338380846804, 32.7819978752462], [-79.9338764310709, 32.7820553316859], [-79.9339619247021, 32.7821823508026], [-79.9340442236308, 32.7823045325342], [-79.9340849665164, 32.7823656162294], [-79.9343507020031, 32.7822554038268], [-79.9344504557415, 32.7822139252207], [-79.9345780091856, 32.782160917884], [-79.9347161882362, 32.7821037940751], [-79.9348363818249, 32.7820539022564], [-79.9352329374512, 32.7818894190414], [-79.934565610296, 32.7810438506855], [-79.9343645342035, 32.7811222463509]]], "type": "Polygon"}, "id": "547", "properties": {"OBJECTID": 3973, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 18563.123046875, "Shape__Length": 546.706962538486, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9358064379713, 32.7820101902771, -79.9341373674682, 32.7832112412081], "geometry": {"coordinates": [[[-79.9351411622474, 32.7820771714745], [-79.9350022046761, 32.7821314545144], [-79.9349278160136, 32.7821609561713], [-79.9344553486374, 32.7823462508686], [-79.9343490821294, 32.7823881047293], [-79.9341373674682, 32.7824713025551], [-79.9342244405417, 32.7826022825819], [-79.9342659834407, 32.7826645807437], [-79.9343434698627, 32.7827812191526], [-79.9343922016184, 32.7828543171447], [-79.9344273527206, 32.7829070208623], [-79.9345032473163, 32.7830208108354], [-79.9345463902027, 32.7830852692046], [-79.9345871306346, 32.7831466124387], [-79.9346302715653, 32.7832112412081], [-79.9350788057193, 32.7829875979278], [-79.9352989775778, 32.7828780176258], [-79.9358064379713, 32.7826249877848], [-79.9355195493085, 32.782268498938], [-79.9355011150903, 32.7822458341381], [-79.9354642488268, 32.7822003286909], [-79.9354153730127, 32.7821390006373], [-79.9353111886348, 32.7820101902771], [-79.9351411622474, 32.7820771714745]]], "type": "Polygon"}, "id": "548", "properties": {"OBJECTID": 3974, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15547.99609375, "Shape__Length": 507.049664406445, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9428079121587, 32.7893860628535, -79.9424086102339, 32.7896807245209], "geometry": {"coordinates": [[[-79.9424865453723, 32.789633625118], [-79.9424867210859, 32.7896339269479], [-79.9425146291756, 32.7896807245209], [-79.9428078610821, 32.7895625975637], [-79.9428079121587, 32.7895623472947], [-79.9427812934934, 32.7895159198629], [-79.9427808265027, 32.7895161304644], [-79.9427731254061, 32.7895029900104], [-79.9427045959341, 32.7893860628535], [-79.9427045058328, 32.7893860972464], [-79.9424086102339, 32.7895001940697], [-79.9424865453723, 32.789633625118]]], "type": "Polygon"}, "id": "549", "properties": {"OBJECTID": 4096, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 955.4765625, "Shape__Length": 125.224405768461, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9340238082137, 32.7836135241393, -79.933063020259, 32.7848602119597], "geometry": {"coordinates": [[[-79.933063020259, 32.7836970810171], [-79.9333894966402, 32.7842411248395], [-79.9333213834764, 32.7842730502828], [-79.9334050329449, 32.7843945335911], [-79.9335665086853, 32.784643183147], [-79.9337168711462, 32.7848602119597], [-79.9340238082137, 32.7847179644154], [-79.9337736530928, 32.7843458515035], [-79.9338933845711, 32.7842901243687], [-79.9337548263463, 32.7840840080632], [-79.9336694050836, 32.7841237298262], [-79.9335757494433, 32.7839643509205], [-79.9334858394091, 32.7840040316229], [-79.933260239886, 32.7836135241393], [-79.933063020259, 32.7836970810171]]], "type": "Polygon"}, "id": "550", "properties": {"OBJECTID": 4174, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6160.86328125, "Shape__Length": 448.693146823964, "ZONE_BASE": "MU-2", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9368382395776, 32.7841112219936, -79.935898820951, 32.7850162102677], "geometry": {"coordinates": [[[-79.9365849764363, 32.7848832068968], [-79.9366263724098, 32.7849444712712], [-79.9366739729287, 32.7850162102677], [-79.9367262193456, 32.7849894667957], [-79.9367491496488, 32.7849777302873], [-79.9367492098138, 32.784977699246], [-79.9367743790027, 32.7849648161173], [-79.9367817779927, 32.7849609294774], [-79.9368382395776, 32.7849312717845], [-79.9363203167862, 32.7841112219936], [-79.9362585521224, 32.7841446084155], [-79.9360780574204, 32.7842421740704], [-79.9360444362319, 32.7841936352869], [-79.9359542886849, 32.7842393877897], [-79.9359164163995, 32.7841868141601], [-79.9358993889881, 32.7841957511509], [-79.9359407767369, 32.7842570111791], [-79.9360084805167, 32.7843572239807], [-79.9360660551111, 32.7844373594723], [-79.9359184171394, 32.7845152611293], [-79.9359294746521, 32.7845307480288], [-79.935898820951, 32.7845463591298], [-79.9359189944858, 32.7845751020388], [-79.9359720854574, 32.7846507444131], [-79.9360596668519, 32.7846050805009], [-79.9360892190312, 32.7846473513103], [-79.9360745442104, 32.784655004731], [-79.9360963104646, 32.7846840311099], [-79.936106042727, 32.784697009286], [-79.9361122808642, 32.7847054163342], [-79.9361413822484, 32.7847443842963], [-79.9361745390366, 32.7847884756717], [-79.936219210375, 32.7848478811253], [-79.936235222539, 32.7848683847013], [-79.9362355359789, 32.7848689465647], [-79.9362369371146, 32.7848714532248], [-79.9362896258809, 32.7849442178126], [-79.9363150808494, 32.7849309296331], [-79.9363596836882, 32.78490764694], [-79.936538690127, 32.7848141992252], [-79.9365849764363, 32.7848832068968]]], "type": "Polygon"}, "id": "551", "properties": {"OBJECTID": 4175, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5945.833984375, "Shape__Length": 413.210160358079, "ZONE_BASE": "MU-2", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9393210276697, 32.7902974023954, -79.938898164436, 32.7905716635564], "geometry": {"coordinates": [[[-79.939223727696, 32.7902974023954], [-79.938898164436, 32.7904430783088], [-79.9389855838297, 32.7905716635564], [-79.9393210276697, 32.7904434857092], [-79.939223727696, 32.7902974023954]]], "type": "Polygon"}, "id": "552", "properties": {"OBJECTID": 4286, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 855.501953125, "Shape__Length": 123.855823376555, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.939223727696, 32.7900739834465, -79.9386036577099, 32.7906286600914], "geometry": {"coordinates": [[[-79.9390692794407, 32.7900739834465], [-79.9386082844411, 32.7902845878001], [-79.9386036577099, 32.7902876093956], [-79.9386688416651, 32.7903852142005], [-79.9387542479599, 32.7905131057765], [-79.9388364209677, 32.7906286600914], [-79.9389855838297, 32.7905716635564], [-79.938898164436, 32.7904430783088], [-79.939223727696, 32.7902974023954], [-79.9391252659016, 32.7901555773185], [-79.9390692794407, 32.7900739834465]]], "type": "Polygon"}, "id": "553", "properties": {"OBJECTID": 4287, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2361.560546875, "Shape__Length": 224.254780967588, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9390692794407, 32.7900041117291, -79.938562468002, 32.7902876093956], "geometry": {"coordinates": [[[-79.938562468002, 32.7902180163191], [-79.9386036577099, 32.7902876093956], [-79.9390692794407, 32.7900739834465], [-79.9390199624335, 32.7900041117291], [-79.938562468002, 32.7902180163191]]], "type": "Polygon"}, "id": "554", "properties": {"OBJECTID": 4294, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 617.04296875, "Shape__Length": 138.376281318919, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9526142518425, 32.7879097940772, -79.951850238092, 32.7886137764045], "geometry": {"coordinates": [[[-79.9518722792375, 32.7882385198539], [-79.9518652916232, 32.7882515717636], [-79.9518628594803, 32.7882588639035], [-79.9518609512153, 32.7882645841247], [-79.9518589266779, 32.7882706514579], [-79.9518572841747, 32.7882755785379], [-79.9518554645073, 32.7882810334769], [-79.95185441125, 32.7882841907946], [-79.9518534931172, 32.7882869425425], [-79.9518524142622, 32.7882902754986], [-79.9518511495707, 32.7882939694001], [-79.951850238092, 32.7882967004629], [-79.9519602991168, 32.7885445412489], [-79.951990247622, 32.7886137764045], [-79.9522172582485, 32.7885382378217], [-79.9523056245666, 32.7885077306643], [-79.9522773427478, 32.7884432760565], [-79.9522321131702, 32.7883401932235], [-79.9522781591639, 32.7883225941474], [-79.9523228300863, 32.7883055207726], [-79.9523835071777, 32.7882849058557], [-79.9524336290141, 32.7882678764097], [-79.9525038522453, 32.7884339083683], [-79.9525315860945, 32.7884255269817], [-79.9525621916951, 32.7884162773585], [-79.9525940702822, 32.7884066436221], [-79.9526142518425, 32.7884005441352], [-79.9525658619182, 32.7882890716634], [-79.9525413888074, 32.7882312502524], [-79.9524121713739, 32.7879250731538], [-79.9524057235143, 32.7879097940772], [-79.9523113245682, 32.7879519491384], [-79.9522106850598, 32.7879996195107], [-79.9521100454415, 32.7880472898004], [-79.952019465865, 32.7880922369657], [-79.9520048536397, 32.7881003491573], [-79.9520017739875, 32.7881020822566], [-79.9519977494846, 32.7881043465594], [-79.9519953762622, 32.7881060207778], [-79.9519931290256, 32.7881076058917], [-79.9519880615075, 32.7881109299337], [-79.9519862128675, 32.788112485094], [-79.9519844351098, 32.7881137387469], [-79.9519827897867, 32.7881148997435], [-79.9519811250743, 32.7881160750033], [-79.9519791685767, 32.7881174542837], [-79.9519777967604, 32.7881184219249], [-79.9519744372059, 32.7881207920266], [-79.95196724109, 32.7881258681352], [-79.9519551456124, 32.7881344013923], [-79.9519480379548, 32.7881411800192], [-79.951941164683, 32.7881477333912], [-79.951935548536, 32.7881530899755], [-79.9519336736039, 32.7881548784849], [-79.9519322620102, 32.7881562245554], [-79.9519183415497, 32.7881694993524], [-79.9519109074094, 32.7881791935168], [-79.9519019710415, 32.7881908462219], [-79.9518952744606, 32.7881995781336], [-79.9518881635343, 32.7882088512033], [-79.9518842110236, 32.78821623403], [-79.9518811551756, 32.788221941715], [-79.9518754770733, 32.7882325464425], [-79.9518748086602, 32.78823379607], [-79.9518722792375, 32.7882385198539]]], "type": "Polygon"}, "id": "555", "properties": {"OBJECTID": 4330, "ORDNO": "2014-063", "ORDSTAT": null, "Shape__Area": 4141.400390625, "Shape__Length": 319.264365445695, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9366739729287, 32.7848141992252, -79.9359176416521, 32.7853436721821], "geometry": {"coordinates": [[[-79.9363596836882, 32.78490764694], [-79.9363150808494, 32.7849309296331], [-79.9362896258809, 32.7849442178126], [-79.9362554807126, 32.7849620406109], [-79.9362046900164, 32.7849885530451], [-79.9359176416521, 32.7851383839997], [-79.9359700677519, 32.7852169236026], [-79.9360116110388, 32.7852792184653], [-79.9360546953506, 32.7853436721821], [-79.9363156673194, 32.785205675334], [-79.9365296818379, 32.7850925094376], [-79.9366739729287, 32.7850162102677], [-79.9366263724098, 32.7849444712712], [-79.9365849764363, 32.7848832068968], [-79.936538690127, 32.7848141992252], [-79.9363596836882, 32.78490764694]]], "type": "Polygon"}, "id": "556", "properties": {"OBJECTID": 4467, "ORDNO": "2018-023", "ORDSTAT": null, "Shape__Area": 2516.099609375, "Shape__Length": 224.685380794728, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.952991436134, 32.787764728605, -79.9524057235143, 32.7882890716634], "geometry": {"coordinates": [[[-79.9526995223864, 32.7877682260139], [-79.9526506723045, 32.7877917650705], [-79.9524057235143, 32.7879097940772], [-79.9524121713739, 32.7879250731538], [-79.9525658619182, 32.7882890716634], [-79.952586489326, 32.7882810487782], [-79.9527358436069, 32.7882229270865], [-79.9527578215281, 32.7882158870084], [-79.952893630014, 32.7881721975712], [-79.952991436134, 32.788141053757], [-79.9528724889491, 32.7879838010897], [-79.9528716397394, 32.7879826791543], [-79.9528194259948, 32.7879146758464], [-79.9527870953588, 32.7878709640698], [-79.9527438772766, 32.7878137740651], [-79.9527426024535, 32.7878120866428], [-79.9527067806313, 32.787764728605], [-79.9526995223864, 32.7877682260139]]], "type": "Polygon"}, "id": "557", "properties": {"OBJECTID": 4470, "ORDNO": "2019-066", "ORDSTAT": null, "Shape__Area": 2480.681640625, "Shape__Length": 202.273482630443, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9533100496683, 32.787564142915, -79.9527067806313, 32.788141053757], "geometry": {"coordinates": [[[-79.9531112393679, 32.7875736969402], [-79.9530288902257, 32.7876126847016], [-79.9529373554342, 32.7876554563524], [-79.9528375957319, 32.7877027343481], [-79.9527450752254, 32.7877465805234], [-79.9527067806313, 32.787764728605], [-79.9527426024535, 32.7878120866428], [-79.9527438772766, 32.7878137740651], [-79.9527866640611, 32.7878703381125], [-79.9528201506901, 32.787914607197], [-79.9528716397394, 32.7879826791543], [-79.9528724889491, 32.7879838010897], [-79.952991436134, 32.788141053757], [-79.9529916301286, 32.7881409913869], [-79.9530100410968, 32.7881350967309], [-79.9530533151058, 32.7881212424102], [-79.9530887846702, 32.7881098671709], [-79.9530885141938, 32.7881091848732], [-79.953060303192, 32.7880453758705], [-79.9531607568958, 32.7880131642612], [-79.9532612105657, 32.787981038244], [-79.9533100496683, 32.7879654440103], [-79.9531772598154, 32.7876627299897], [-79.9531629076954, 32.7876299373382], [-79.9531341109746, 32.787564142915], [-79.9531112393679, 32.7875736969402]]], "type": "Polygon"}, "id": "558", "properties": {"OBJECTID": 4471, "ORDNO": "2015-151", "ORDSTAT": null, "Shape__Area": 2697.572265625, "Shape__Length": 220.627311680878, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9391578927402, 32.790686947798, -79.9389202062084, 32.7909253554465], "geometry": {"coordinates": [[[-79.9389202062084, 32.7907429134561], [-79.9390259314595, 32.7909253554465], [-79.9390344633413, 32.7909219357191], [-79.9390387507323, 32.7909202179246], [-79.9390479041869, 32.7909159053577], [-79.9391233557638, 32.7908803536022], [-79.9391301048209, 32.7908771781383], [-79.9391355159213, 32.7908746286711], [-79.9391416100261, 32.7908717541519], [-79.9391442065972, 32.7908705294269], [-79.9391578927402, 32.790864080925], [-79.9390550378513, 32.790686947798], [-79.9389202062084, 32.7907429134561]]], "type": "Polygon"}, "id": "559", "properties": {"OBJECTID": 4481, "ORDNO": "", "ORDSTAT": null, "Shape__Area": 444.44921875, "Shape__Length": 86.4988658835365, "ZONE_BASE": "LI", "__folium_color": "#8c564b"}, "type": "Feature"}, {"bbox": [-79.9552851555561, 32.7859810228596, -79.9544893862766, 32.7865762851892], "geometry": {"coordinates": [[[-79.9544893862766, 32.7861950365424], [-79.9545943979345, 32.7863252848545], [-79.9546298069757, 32.7863704166825], [-79.9547438497936, 32.7865157692928], [-79.9547944274642, 32.7865762851892], [-79.9548229176074, 32.7865629866407], [-79.9551706177299, 32.7864006007373], [-79.9552851555561, 32.7863469457415], [-79.9551154368375, 32.7859810228596], [-79.954994539825, 32.7860222529169], [-79.9550230921146, 32.7860836573735], [-79.9546579453835, 32.7862085307911], [-79.9546293922425, 32.7861471262393], [-79.9544893862766, 32.7861950365424]]], "type": "Polygon"}, "id": "560", "properties": {"OBJECTID": 4576, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3470.6171875, "Shape__Length": 268.043690716913, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9288176133352, 32.7853722749265, -79.9281428297916, 32.7857876353681], "geometry": {"coordinates": [[[-79.9288176133352, 32.7853722749265], [-79.9281428297916, 32.7853877835428], [-79.9282114022462, 32.7857876353681], [-79.9288046817762, 32.7857124128153], [-79.9288086992554, 32.785646899822], [-79.9288176133352, 32.7853722749265]]], "type": "Polygon"}, "id": "561", "properties": {"OBJECTID": 4654, "ORDNO": "2018-033", "ORDSTAT": null, "Shape__Area": 3480.279296875, "Shape__Length": 240.491378812127, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9288046817762, 32.7857124128153, -79.9282114022462, 32.7864978030788], "geometry": {"coordinates": [[[-79.9288046817762, 32.7857124128153], [-79.9282114022462, 32.7857876353681], [-79.9283333399646, 32.7864978030788], [-79.9285766011796, 32.7864089997019], [-79.9285982378247, 32.7863672601024], [-79.9286274711889, 32.7863108672509], [-79.9286689323681, 32.7862308848167], [-79.9287155133677, 32.7861410251971], [-79.9287284844398, 32.7861090694747], [-79.9287404372249, 32.7860768324801], [-79.9287513661098, 32.7860443367106], [-79.9287612612001, 32.7860116055275], [-79.928770115804, 32.7859786623201], [-79.9287779242975, 32.7859455304873], [-79.9287846799776, 32.7859122343201], [-79.9287903793443, 32.7858787981374], [-79.928795017852, 32.7858452444458], [-79.9287985909331, 32.7858115975548], [-79.9288046817762, 32.7857124128153]]], "type": "Polygon"}, "id": "562", "properties": {"OBJECTID": 4655, "ORDNO": "2018-034", "ORDSTAT": null, "Shape__Area": 4624.8828125, "Shape__Length": 287.901529250884, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9505286144268, 32.7875703870497, -79.9500919745083, 32.7881802222313], "geometry": {"coordinates": [[[-79.950240235231, 32.788009229778], [-79.9502959291871, 32.788104891767], [-79.9503397871557, 32.7881802222313], [-79.9504011481587, 32.7881517754155], [-79.9503520282132, 32.7880647670652], [-79.9503138269194, 32.7879779687101], [-79.9504489894224, 32.7879138444734], [-79.9504265269103, 32.7878654550299], [-79.9503687634449, 32.7877724014902], [-79.9505286144268, 32.7876946584402], [-79.950470641224, 32.7875703870497], [-79.950174180172, 32.7877145882534], [-79.9500919745083, 32.7877545736131], [-79.950240235231, 32.788009229778]]], "type": "Polygon"}, "id": "563", "properties": {"OBJECTID": 4675, "ORDNO": "2018-070", "ORDSTAT": null, "Shape__Area": 1593.658203125, "Shape__Length": 220.547198048166, "ZONE_BASE": "MU-1/WH", "__folium_color": "#e377c2"}, "type": "Feature"}, {"bbox": [-79.9296526804037, 32.7816437864404, -79.9292074659685, 32.7818119914957], "geometry": {"coordinates": [[[-79.9296526804037, 32.7817614291406], [-79.9296382478186, 32.7816437864404], [-79.9292074659685, 32.7816886310235], [-79.9292190222347, 32.7818119914957], [-79.9296526804037, 32.7817614291406]]], "type": "Polygon"}, "id": "564", "properties": {"OBJECTID": 4694, "ORDNO": "2018-129", "ORDSTAT": null, "Shape__Area": 776.8125, "Shape__Length": 129.100885231526, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9395994401645, 32.7905588768947, -79.9390387507323, 32.7911142702362], "geometry": {"coordinates": [[[-79.9390387507323, 32.7909202179246], [-79.9390408192725, 32.790923346294], [-79.9391074024795, 32.7910240580979], [-79.9390708638855, 32.7910411773641], [-79.9391239038713, 32.7911142702362], [-79.9392660932775, 32.7910396045395], [-79.9395994401645, 32.7908580145398], [-79.9395509835049, 32.7907863314918], [-79.9395021409462, 32.7907140778249], [-79.9394696698171, 32.790666044162], [-79.9393972232009, 32.7905588768947], [-79.9391585442121, 32.7906482087107], [-79.9390550378513, 32.790686947798], [-79.9391578927402, 32.790864080925], [-79.9391442065972, 32.7908705294269], [-79.9391416100261, 32.7908717541519], [-79.9391355159213, 32.7908746286711], [-79.9391301048209, 32.7908771781383], [-79.9391233557638, 32.7908803536022], [-79.9390479041869, 32.7909159053577], [-79.9390387507323, 32.7909202179246]]], "type": "Polygon"}, "id": "565", "properties": {"OBJECTID": 4696, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2544.94140625, "Shape__Length": 223.169726584607, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9412577716833, 32.790494882995, -79.9399287343528, 32.7910507882141], "geometry": {"coordinates": [[[-79.9399287343528, 32.7909621090557], [-79.9399918986174, 32.7910507882141], [-79.9403759449049, 32.7908699627127], [-79.940468992737, 32.7910065399004], [-79.9412577716833, 32.7906372655724], [-79.9411682687692, 32.790494882995], [-79.9411678618383, 32.7904950706625], [-79.9406058753459, 32.7907547882293], [-79.9405447585507, 32.7906626748964], [-79.9401706707187, 32.7908309362236], [-79.9401000386544, 32.7908598495719], [-79.940110339341, 32.7908768563423], [-79.9399287343528, 32.7909621090557]]], "type": "Polygon"}, "id": "566", "properties": {"OBJECTID": 4698, "ORDNO": "2018-139", "ORDSTAT": null, "Shape__Area": 3324.0546875, "Shape__Length": 372.424157880816, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9497142560094, 32.7812193011782, -79.9483959812339, 32.7822487698167], "geometry": {"coordinates": [[[-79.9484989285031, 32.7814740107296], [-79.9483959812339, 32.7815029531071], [-79.9483960289797, 32.7815030662468], [-79.9486806296206, 32.7820993286348], [-79.9486979810121, 32.7821356836808], [-79.9487273335832, 32.7821971821813], [-79.9487293562183, 32.7822011198354], [-79.9487308380055, 32.7822036928758], [-79.9487349980887, 32.7822099242249], [-79.9487397813382, 32.7822158263481], [-79.9487429350432, 32.7822191911364], [-79.9487486395474, 32.7822244789101], [-79.9487535790985, 32.7822283947334], [-79.9487601869969, 32.7822328668947], [-79.948764363846, 32.7822353124867], [-79.9487701560594, 32.7822382814956], [-79.9487792659602, 32.7822420798409], [-79.9487855781332, 32.7822441586973], [-79.9487904155677, 32.7822454727518], [-79.948796979107, 32.7822468909194], [-79.9488053214385, 32.7822481160473], [-79.9488137587086, 32.7822487269394], [-79.9488205331097, 32.7822487698167], [-79.948830659919, 32.7822480884671], [-79.9488373426858, 32.7822471412441], [-79.9488439297675, 32.7822458063117], [-79.9488487895859, 32.7822445521324], [-79.9491237502543, 32.7821673031165], [-79.949320638602, 32.7821119874747], [-79.9497142560094, 32.7820013998739], [-79.9497138747432, 32.7820004352455], [-79.9496517945009, 32.7818434809453], [-79.9496058501491, 32.7817273216421], [-79.9494049137815, 32.7812193011782], [-79.9484989285031, 32.7814740107296]]], "type": "Polygon"}, "id": "567", "properties": {"OBJECTID": 4707, "ORDNO": "2019-009", "ORDSTAT": null, "Shape__Area": 12539.53125, "Shape__Length": 444.607668048586, "ZONE_BASE": "MU-1/WH", "__folium_color": "#e377c2"}, "type": "Feature"}, {"bbox": [-79.9534297328314, 32.7875169630234, -79.9531341109746, 32.7879654440103], "geometry": {"coordinates": [[[-79.9531341109746, 32.787564142915], [-79.9531629076954, 32.7876299373382], [-79.9531790608529, 32.7876658540227], [-79.9533100611078, 32.7879644899674], [-79.9533100496683, 32.7879654440103], [-79.9533102104385, 32.7879653921775], [-79.9533118631183, 32.7879648625103], [-79.9533617263606, 32.7879488892289], [-79.9534297328314, 32.7879272606104], [-79.9534296694083, 32.7879271184799], [-79.9532470514852, 32.7875169630234], [-79.9531341109746, 32.787564142915]]], "type": "Polygon"}, "id": "568", "properties": {"OBJECTID": 4724, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 806.6953125, "Shape__Length": 142.941737136864, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9536943641806, 32.7873959014098, -79.9532470514852, 32.7879272606104], "geometry": {"coordinates": [[[-79.9534795524568, 32.7874075682623], [-79.9533833610791, 32.7874528273502], [-79.9532470514852, 32.7875169630234], [-79.9534296694083, 32.7879271184799], [-79.9534297328314, 32.7879272606104], [-79.9534566218868, 32.7879187031472], [-79.953557299116, 32.7878865237896], [-79.9536943641806, 32.7878468591868], [-79.9536660163082, 32.7877809893686], [-79.9535043497268, 32.7873959014098], [-79.9534795524568, 32.7874075682623]]], "type": "Polygon"}, "id": "569", "properties": {"OBJECTID": 4725, "ORDNO": "2019-067", "ORDSTAT": null, "Shape__Area": 1927.404296875, "Shape__Length": 185.511144357817, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9354207045445, 32.780506000781, -79.9349414899115, 32.7807766579405], "geometry": {"coordinates": [[[-79.9349414899115, 32.7806021905926], [-79.9349577384014, 32.7807351083569], [-79.9349840766738, 32.7807766579405], [-79.935199059937, 32.7806918548353], [-79.9354197648341, 32.7806046977562], [-79.9354207045445, 32.7806043271628], [-79.9354144647602, 32.780506000781], [-79.9351201631362, 32.7805658328397], [-79.9349423828876, 32.7806019756136], [-79.9349414899115, 32.7806021905926]]], "type": "Polygon"}, "id": "570", "properties": {"OBJECTID": 4729, "ORDNO": "2019-075", "ORDSTAT": null, "Shape__Area": 983.732421875, "Shape__Length": 144.827432143097, "ZONE_BASE": "UC", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9307521299662, 32.7893131483157, -79.9303674326735, 32.7896097259402], "geometry": {"coordinates": [[[-79.9304387581874, 32.7895940559966], [-79.9304634752393, 32.7895837530475], [-79.9304781000735, 32.7896079987075], [-79.9305268334039, 32.7895876842689], [-79.9305401293042, 32.7896097259402], [-79.9307521299662, 32.7895213528381], [-79.9306252874551, 32.7893131483157], [-79.9304238047291, 32.7894018809872], [-79.9303674326735, 32.7894766175657], [-79.9304157797616, 32.7895562232834], [-79.9304387581874, 32.7895940559966]]], "type": "Polygon"}, "id": "571", "properties": {"OBJECTID": 4742, "ORDNO": "2020-002", "ORDSTAT": null, "Shape__Area": 1013.04296875, "Shape__Length": 127.815433868597, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9278336052032, 32.7887119714269, -79.9268904651449, 32.7897384330269], "geometry": {"coordinates": [[[-79.9268904651449, 32.7887886676041], [-79.9270120605985, 32.7897384330269], [-79.9277714689888, 32.7894043090512], [-79.9278336052032, 32.7893769705928], [-79.9277668049692, 32.7888213641973], [-79.9277536358316, 32.7887119714269], [-79.9268938575212, 32.7887882888266], [-79.9268904651449, 32.7887886676041]]], "type": "Polygon"}, "id": "572", "properties": {"OBJECTID": 4745, "ORDNO": "2020-011", "ORDSTAT": null, "Shape__Area": 10351.23046875, "Shape__Length": 414.843856228708, "ZONE_BASE": "PUD", "__folium_color": "#7f7f7f"}, "type": "Feature"}, {"bbox": [-79.9411678618383, 32.7900677564819, -79.9396278944257, 32.7909621090557], "geometry": {"coordinates": [[[-79.9397285261549, 32.7906810188727], [-79.9397420842082, 32.7907000532725], [-79.9398007454745, 32.7907824158293], [-79.9399287343528, 32.7909621090557], [-79.940110339341, 32.7908768563423], [-79.9401000386544, 32.7908598495719], [-79.9401706707187, 32.7908309362236], [-79.9405447585507, 32.7906626748964], [-79.9406058753459, 32.7907547882293], [-79.9411678618383, 32.7904950706625], [-79.9410942561525, 32.7903847154173], [-79.9409305768505, 32.7901410773683], [-79.9408787121054, 32.7900677564819], [-79.9408110436398, 32.7900935971781], [-79.9402313738811, 32.7903120344009], [-79.9403904423836, 32.7905270831563], [-79.940373180996, 32.7905344739116], [-79.9402163349937, 32.7903177038415], [-79.9396278944257, 32.7905397381465], [-79.9397285261549, 32.7906810188727]]], "type": "Polygon"}, "id": "573", "properties": {"OBJECTID": 4821, "ORDNO": "", "ORDSTAT": null, "Shape__Area": 9613.486328125, "Shape__Length": 517.381890593111, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9270178257797, 32.7799365274252, -79.9262999477451, 32.7801301108793], "geometry": {"coordinates": [[[-79.9262999477451, 32.7800090233204], [-79.926331681132, 32.7801301108793], [-79.9265583974334, 32.7801051355364], [-79.9270178257797, 32.780054519222], [-79.9270068132447, 32.7799365274252], [-79.9265280309896, 32.7799892816642], [-79.9265272162993, 32.7799839969714], [-79.9262999477451, 32.7800090233204]]], "type": "Polygon"}, "id": "574", "properties": {"OBJECTID": 4829, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1240.505859375, "Shape__Length": 189.096519482796, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9351251055956, 32.7835575967245, -79.9343500677768, 32.7843492843869], "geometry": {"coordinates": [[[-79.9346881814853, 32.7835575967245], [-79.9343939119485, 32.7836987522594], [-79.9344402071525, 32.783767544391], [-79.9343500677768, 32.7838097948583], [-79.9343837066752, 32.7838615168471], [-79.9344209526419, 32.7839187840671], [-79.9344826815209, 32.7840012967622], [-79.9345661322877, 32.783960808752], [-79.934617249163, 32.7840356318971], [-79.9346622075156, 32.7841145299963], [-79.9347554052471, 32.7842531654547], [-79.934819875948, 32.7843490075343], [-79.9348199782639, 32.7843492843869], [-79.9348202445339, 32.7843491613501], [-79.9351251055956, 32.7842075378194], [-79.9350603858793, 32.7841112608553], [-79.9350234495253, 32.7840563151477], [-79.9349672119934, 32.7839726565043], [-79.9349151718769, 32.7838886042016], [-79.9348675744308, 32.7838169565256], [-79.9348136958718, 32.7837337088439], [-79.9347773349124, 32.78367748025], [-79.9347421004441, 32.7836257913741], [-79.9346881814853, 32.7835575967245]]], "type": "Polygon"}, "id": "575", "properties": {"OBJECTID": 4833, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4138.232421875, "Shape__Length": 296.159532569818, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9346461159004, 32.7831291154843, -79.9338962946536, 32.7837197365193], "geometry": {"coordinates": [[[-79.9338962946536, 32.7833467899291], [-79.9340569639614, 32.7836100279968], [-79.9341341116165, 32.7835748566987], [-79.934287187167, 32.7835050687841], [-79.9343267659825, 32.783569916442], [-79.9341420714343, 32.7836554978462], [-79.9341828587051, 32.7837197365193], [-79.9346461159004, 32.7834950281133], [-79.9346125092426, 32.7834375139897], [-79.9345712712067, 32.7833755540837], [-79.934519763382, 32.7833038442598], [-79.934478804342, 32.7832424783563], [-79.9344415006156, 32.7831868150183], [-79.934403594042, 32.7831291154843], [-79.9339632051698, 32.7833158799865], [-79.9338962946536, 32.7833467899291]]], "type": "Polygon"}, "id": "576", "properties": {"OBJECTID": 4834, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3353.078125, "Shape__Length": 289.525485577469, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9342892611603, 32.7834782602075, -79.933260239886, 32.7847179644154], "geometry": {"coordinates": [[[-79.9335802590626, 32.7834782602075], [-79.9334987242058, 32.783512666934], [-79.9334521121769, 32.7835324454702], [-79.9333392586429, 32.7835805106125], [-79.933260239886, 32.7836135241393], [-79.9334858394091, 32.7840040316229], [-79.9335757494433, 32.7839643509205], [-79.9336694050836, 32.7841237298262], [-79.9337548263463, 32.7840840080632], [-79.9338933845711, 32.7842901243687], [-79.9337736530928, 32.7843458515035], [-79.9340238082137, 32.7847179644154], [-79.9341436321983, 32.784662646368], [-79.9342892611603, 32.7845951960404], [-79.9342891526827, 32.7845949867714], [-79.9339001938008, 32.7840164116358], [-79.9338946298027, 32.7840190019212], [-79.9338569312795, 32.7839563304018], [-79.933822713099, 32.7838866756252], [-79.9337828844604, 32.7838249062935], [-79.9337894466776, 32.7838224897488], [-79.9337196212781, 32.7837061964162], [-79.9337151088647, 32.7836968140697], [-79.9335802590626, 32.7834782602075]]], "type": "Polygon"}, "id": "577", "properties": {"OBJECTID": 4835, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5468.873046875, "Shape__Length": 449.276844405998, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9294663913714, 32.7799627949967, -79.9291730420434, 32.7803109966451], "geometry": {"coordinates": [[[-79.9294338454504, 32.7799627949967], [-79.9293076882905, 32.7799801226359], [-79.9293259011288, 32.7800704601967], [-79.9291730420434, 32.780094649645], [-79.9291893323445, 32.7801952359962], [-79.9292061390203, 32.7803109966451], [-79.9294663913714, 32.7802710530949], [-79.9294553297672, 32.7801662802235], [-79.9294338454504, 32.7799627949967]]], "type": "Polygon"}, "id": "578", "properties": {"OBJECTID": 4866, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1031.62109375, "Shape__Length": 142.98363920371, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9290189919443, 32.7801466662593, -79.9284159129389, 32.7803702501698], "geometry": {"coordinates": [[[-79.9284159129389, 32.7801922018609], [-79.9284357567187, 32.7803702501698], [-79.9290189919443, 32.7803253912535], [-79.9289977313839, 32.7801551757163], [-79.9288092477393, 32.7801783800573], [-79.9288009234056, 32.7801466662593], [-79.9286728590705, 32.7801620015275], [-79.9284159129389, 32.7801922018609]]], "type": "Polygon"}, "id": "579", "properties": {"OBJECTID": 4867, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1551.671875, "Shape__Length": 180.322373068056, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9305147199361, 32.790686950158, -79.9297002912151, 32.7912745929368], "geometry": {"coordinates": [[[-79.9298829013581, 32.7912745929368], [-79.9305147199361, 32.791006964581], [-79.9303577638731, 32.790686950158], [-79.9301685373097, 32.7907676406045], [-79.9300379836821, 32.7908230540517], [-79.9298974189538, 32.7908831009176], [-79.9297002912151, 32.79096730905], [-79.9298829013581, 32.7912745929368]]], "type": "Polygon"}, "id": "580", "properties": {"OBJECTID": 4870, "ORDNO": "2022-056", "ORDSTAT": null, "Shape__Area": 3667.13671875, "Shape__Length": 252.147779367385, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9300379836821, 32.7904981947131, -79.92949428502, 32.79096730905], "geometry": {"coordinates": [[[-79.9298248772614, 32.7904981947131], [-79.92949428502, 32.7906389480773], [-79.9296463987051, 32.790881407503], [-79.9297002912151, 32.79096730905], [-79.9298974189538, 32.7908831009176], [-79.9300379836821, 32.7908230540517], [-79.9298254303876, 32.7904987992726], [-79.9298248772614, 32.7904981947131]]], "type": "Polygon"}, "id": "581", "properties": {"OBJECTID": 4876, "ORDNO": "2022-080", "ORDSTAT": null, "Shape__Area": 2049.32421875, "Shape__Length": 181.703937872181, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9301685373097, 32.7904414834559, -79.9298248772614, 32.7908230540517], "geometry": {"coordinates": [[[-79.9299562215939, 32.7904414834559], [-79.9299559597014, 32.7904415956986], [-79.9298259119222, 32.7904977537466], [-79.9298248772614, 32.7904981947131], [-79.9298254303876, 32.7904987992726], [-79.9300379836821, 32.7908230540517], [-79.9301685373097, 32.7907676406045], [-79.9299564636812, 32.7904416803698], [-79.9299562215939, 32.7904414834559]]], "type": "Polygon"}, "id": "582", "properties": {"OBJECTID": 4877, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 804.01171875, "Shape__Length": 131.079578556527, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9476924140989, 32.781393863246, -79.9472083271681, 32.7816355948914], "geometry": {"coordinates": [[[-79.9476551896431, 32.781393863246], [-79.9472083271681, 32.7814968029071], [-79.9472504199615, 32.7816355948914], [-79.9476924140989, 32.781543795036], [-79.9476551896431, 32.781393863246]]], "type": "Polygon"}, "id": "583", "properties": {"OBJECTID": 4899, "ORDNO": "2022-102", "ORDSTAT": null, "Shape__Area": 1002.576171875, "Shape__Length": 141.504383923505, "ZONE_BASE": "PUD", "__folium_color": "#7f7f7f"}, "type": "Feature"}], "type": "FeatureCollection"});\n", + " geo_json_f307c13e235ec59df2be91ff083bc3a6_add({"bbox": [-79.9628276762655, 32.7681600079989, -79.9233020159341, 32.8019750127096], "features": [{"bbox": [-79.9326811146179, 32.7681600079989, -79.9321241289581, 32.7694739010872], "geometry": {"coordinates": [[[-79.9321241289581, 32.7683975884143], [-79.9322365032488, 32.7694405109554], [-79.9326811146179, 32.7694739010872], [-79.9325395448189, 32.7681600079989], [-79.9321241289581, 32.7683975884143]]], "type": "Polygon"}, "id": "0", "properties": {"OBJECTID": 429, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7658.900390625, "Shape__Length": 418.908237414743, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9354011973635, 32.7697763748106, -79.9340146581859, 32.7702902450113], "geometry": {"coordinates": [[[-79.9340668776165, 32.7701054548062], [-79.9342433530768, 32.77010802422], [-79.9342411225763, 32.770157483023], [-79.9342389025411, 32.770206084273], [-79.9343624253022, 32.7702153220383], [-79.9344826980597, 32.7702243573144], [-79.9344900104667, 32.7702249350566], [-79.9347484340469, 32.7702442810118], [-79.9350060444469, 32.7702636184384], [-79.935085682396, 32.7702696362101], [-79.9353611720623, 32.7702902450113], [-79.9353871294605, 32.7700292501473], [-79.9354011973635, 32.7698761275114], [-79.9350314330663, 32.7698492852306], [-79.9347665020568, 32.7698300572486], [-79.9345088867275, 32.7698113198856], [-79.934487757663, 32.7698097614412], [-79.9342569582992, 32.7697930617023], [-79.9340277867041, 32.7697763748106], [-79.9340277541828, 32.7697790385457], [-79.9340277216725, 32.7697817013791], [-79.9340268768851, 32.7697842732632], [-79.9340268444078, 32.7697869333913], [-79.934025997518, 32.7697895900295], [-79.9340259660866, 32.7697921644924], [-79.9340259335652, 32.7697948282275], [-79.9340250877537, 32.7697974839733], [-79.9340250552323, 32.7698001477083], [-79.9340242104886, 32.7698027159854], [-79.9340241779672, 32.7698053797205], [-79.9340241454567, 32.7698080425538], [-79.934023299634, 32.7698106992013], [-79.9340232682025, 32.7698132736643], [-79.9340232356811, 32.7698159373993], [-79.9340223899023, 32.7698185904399], [-79.9340223573808, 32.7698212541749], [-79.9340223259052, 32.7698238322449], [-79.9340214811496, 32.7698264889016], [-79.9340214486721, 32.7698291490297], [-79.9340214161506, 32.7698318127648], [-79.9340205703386, 32.7698344685105], [-79.934020538896, 32.7698370438752], [-79.9340205063855, 32.7698397067086], [-79.934020473864, 32.7698423704436], [-79.9340196280848, 32.7698450234841], [-79.9340195955632, 32.7698476872192], [-79.9340195640875, 32.7698502652892], [-79.934019531566, 32.7698529290242], [-79.9340186857867, 32.7698555820648], [-79.9340186532651, 32.7698582457998], [-79.9340186207545, 32.7698609086332], [-79.9340185882329, 32.7698635723682], [-79.9340185568013, 32.7698661468312], [-79.9340177109778, 32.7698688034787], [-79.9340176784562, 32.7698714672137], [-79.9340176459786, 32.7698741273419], [-79.9340176134569, 32.7698767910769], [-79.9340175809463, 32.7698794539103], [-79.9340167351227, 32.7698821105578], [-79.9340167036799, 32.7698846859225], [-79.9340166711692, 32.7698873487558], [-79.9340166386806, 32.7698900097857], [-79.93401660617, 32.769892672619], [-79.9340165736593, 32.7698953354524], [-79.9340165411376, 32.7698979991875], [-79.93401650866, 32.7699006593156], [-79.9340156628037, 32.7699032311903], [-79.934015630293, 32.7699058940237], [-79.9340155977713, 32.7699085577588], [-79.9340155652936, 32.7699112178869], [-79.9340155327719, 32.769913881622], [-79.9340155002612, 32.7699165444554], [-79.9340154677395, 32.7699192081905], [-79.9340154352618, 32.7699218683186], [-79.934015403786, 32.7699244463885], [-79.9340153713083, 32.7699271065167], [-79.9340153387866, 32.7699297702518], [-79.9340153062758, 32.7699324330852], [-79.9340152737541, 32.7699350968203], [-79.9340152412764, 32.7699377569484], [-79.9340152087547, 32.7699404206835], [-79.9340151762439, 32.7699430835169], [-79.9340151437222, 32.769945747252], [-79.9340151122794, 32.7699483226167], [-79.9340150797576, 32.7699509863518], [-79.9340150472359, 32.7699536500869], [-79.9340150147582, 32.769956310215], [-79.9340149822364, 32.7699589739502], [-79.9340149497257, 32.7699616367835], [-79.934014917204, 32.7699643005186], [-79.9340148847262, 32.7699669606468], [-79.9340148532504, 32.7699695387167], [-79.9340148207396, 32.7699722015501], [-79.9340147882179, 32.7699748652852], [-79.9340147557402, 32.7699775254134], [-79.9340147232184, 32.7699801891485], [-79.9340146907076, 32.7699828519819], [-79.9340146581859, 32.769985515717], [-79.9340154400784, 32.7699881829421], [-79.9340154086026, 32.7699907610121], [-79.9340153761139, 32.7699934220419], [-79.9340153436031, 32.7699960848753], [-79.9340153110814, 32.7699987486104], [-79.9340152785706, 32.7700014114439], [-79.9340152460819, 32.7700040724737], [-79.9340160268743, 32.7700067423948], [-79.9340159953985, 32.7700093204647], [-79.9340159628768, 32.7700119841998], [-79.9340159303991, 32.770014644328], [-79.9340158978773, 32.7700173080631], [-79.9340166640053, 32.7700211790996], [-79.9340166168191, 32.7700250439503], [-79.934016568565, 32.7700289962695], [-79.9340165213787, 32.7700328611201], [-79.9340172874739, 32.7700367348619], [-79.9340172402877, 32.7700405997125], [-79.934018006416, 32.770044470749], [-79.9340179592408, 32.770048334698], [-79.9340179120547, 32.7700521995486], [-79.93401867815, 32.7700560732903], [-79.9340202670068, 32.7700590920484], [-79.9340243083571, 32.7700612763382], [-79.9340275332778, 32.7700636221561], [-79.9340315704131, 32.7700659768556], [-79.9340347942547, 32.7700684985216], [-79.9340380149601, 32.770071102227], [-79.9340412356866, 32.7700738790848], [-79.9340444553459, 32.7700766559332], [-79.9340476729032, 32.7700795175356], [-79.9340500771669, 32.7700825461046], [-79.9340532936782, 32.7700855808499], [-79.93405569584, 32.7700886941729], [-79.9340580958888, 32.7700918931518], [-79.9340604970046, 32.7700951796177], [-79.9340628960514, 32.7700985481326], [-79.9340644807045, 32.7701019988321], [-79.9340668776165, 32.7701054548062]]], "type": "Polygon"}, "id": "1", "properties": {"OBJECTID": 431, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8026.826171875, "Shape__Length": 412.361911459625, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9338660666983, 32.7696977947857, -79.9329461260618, 32.7703840501805], "geometry": {"coordinates": [[[-79.9329724756655, 32.7701373189941], [-79.932973138897, 32.7701496059606], [-79.9332016595846, 32.7701531476144], [-79.9332022535685, 32.7701711047101], [-79.9333063859407, 32.7701696076394], [-79.9334072986669, 32.7701653336149], [-79.9334219475894, 32.7701646884745], [-79.933418558876, 32.7701092547321], [-79.9336089895198, 32.7701012942752], [-79.93362587083, 32.7703840501805], [-79.9337235609674, 32.7703772578345], [-79.9337093200168, 32.7701446867918], [-79.9337066384743, 32.7700978482939], [-79.9338310477645, 32.7701010799922], [-79.9338343649773, 32.7700959549222], [-79.9338368436605, 32.77009271369], [-79.9338393234109, 32.7700894724671], [-79.9338418021591, 32.7700863133023], [-79.9338442808953, 32.7700832425172], [-79.9338475697545, 32.7700802644673], [-79.9338500463549, 32.7700772811413], [-79.9338533352342, 32.7700744762436], [-79.9338566209436, 32.7700717560907], [-79.9338566534702, 32.7700690923555], [-79.9338558726821, 32.7700664224335], [-79.9338559052088, 32.7700637586984], [-79.9338559376914, 32.7700610985702], [-79.933855970218, 32.7700584348352], [-79.9338551883839, 32.7700558505782], [-79.9338552209106, 32.7700531868431], [-79.9338552533932, 32.770050526715], [-79.9338552859199, 32.7700478629799], [-79.9338545051321, 32.7700451930579], [-79.9338545376587, 32.7700425293228], [-79.9338545701413, 32.7700398691947], [-79.933854602668, 32.7700372054595], [-79.9338538229476, 32.7700345355468], [-79.9338538554743, 32.7700318718117], [-79.933853887957, 32.7700292116836], [-79.9338539204836, 32.7700265479485], [-79.9338539530104, 32.7700238842134], [-79.9338531721897, 32.7700212169966], [-79.9338532047164, 32.7700185532615], [-79.9338532372321, 32.7700158904282], [-79.9338532676337, 32.7700134007286], [-79.9338532980793, 32.7700109074221], [-79.9338533284918, 32.7700084168208], [-79.933852544523, 32.7700059200231], [-79.9338525749356, 32.7700034294218], [-79.9338526053702, 32.770000937017], [-79.9338526357828, 32.7699984464157], [-79.9338526661954, 32.7699959558144], [-79.933852696597, 32.7699934661148], [-79.9338527269985, 32.7699909764153], [-79.9338527574331, 32.7699884840105], [-79.9338519745428, 32.7699859863205], [-79.9338520049553, 32.7699834957191], [-79.933852035357, 32.7699810060196], [-79.9338520658026, 32.769978512713], [-79.9338520962042, 32.7699760230135], [-79.9338521266168, 32.7699735324122], [-79.9338521570183, 32.7699710427126], [-79.933852187464, 32.7699685494061], [-79.9338522178655, 32.7699660597066], [-79.9338522482671, 32.769963570007], [-79.9338522787127, 32.7699610767005], [-79.9338523091253, 32.7699585860991], [-79.9338523395269, 32.7699560963996], [-79.9338523699395, 32.7699536057984], [-79.9338524003741, 32.7699511133935], [-79.9338524307867, 32.7699486227923], [-79.9338524611992, 32.769946132191], [-79.9338524916008, 32.7699436424914], [-79.9338525220024, 32.7699411527918], [-79.933852552448, 32.7699386594853], [-79.9338525828495, 32.7699361697858], [-79.9338526132621, 32.7699336791845], [-79.9338526436637, 32.7699311894849], [-79.9338526741092, 32.7699286961784], [-79.9338527045108, 32.7699262064788], [-79.9338527359584, 32.7699236311142], [-79.933852766404, 32.7699211378076], [-79.9338527968055, 32.7699186481081], [-79.9338528272181, 32.7699161575068], [-79.9338528576637, 32.7699136642003], [-79.9338528880652, 32.7699111745008], [-79.9338529184668, 32.7699086848012], [-79.9338529488793, 32.7699061941999], [-79.9338529793139, 32.7699037017952], [-79.9338530097264, 32.7699012111939], [-79.933853040128, 32.7698987214943], [-79.9338538838426, 32.7698962379818], [-79.9338539142441, 32.7698937482822], [-79.9338539446897, 32.7698912549757], [-79.9338539751022, 32.7698887643744], [-79.9338540055037, 32.7698862746749], [-79.9338540359052, 32.7698837849753], [-79.9338540663507, 32.7698812916689], [-79.9338540967632, 32.7698788010676], [-79.933854941534, 32.7698763184661], [-79.9338549719794, 32.7698738251596], [-79.9338550023809, 32.7698713354601], [-79.9338550327824, 32.7698688457605], [-79.9338550631949, 32.7698663551592], [-79.9338550936404, 32.7698638618527], [-79.9338559373436, 32.7698613792419], [-79.933855967745, 32.7698588895424], [-79.9338559981575, 32.7698563989411], [-79.933856028592, 32.7698539065364], [-79.9338560590044, 32.7698514159351], [-79.9338569016512, 32.7698489324132], [-79.9338569614189, 32.7698440377775], [-79.9338569918203, 32.769841548078], [-79.9338570222658, 32.7698390547715], [-79.9338578659797, 32.7698365712589], [-79.9338578963811, 32.7698340815594], [-79.9338579268265, 32.7698315882529], [-79.9338579572279, 32.7698290985534], [-79.9338588009307, 32.7698266159425], [-79.9338588313431, 32.7698241253413], [-79.9338588617884, 32.7698216320348], [-79.9338588921898, 32.7698191423353], [-79.9338597358924, 32.7698166597244], [-79.9338597663048, 32.7698141691232], [-79.9338597967171, 32.7698116785219], [-79.9338606404527, 32.7698091932058], [-79.9338606708651, 32.7698067026046], [-79.9338607012663, 32.7698042129051], [-79.9338607316676, 32.7698017232056], [-79.933861574335, 32.7697993253581], [-79.9338616047803, 32.7697968320516], [-79.9338616351926, 32.7697943414503], [-79.933862478895, 32.7697918588395], [-79.9338625093402, 32.7697893655331], [-79.9338625397415, 32.7697868758335], [-79.9338633834437, 32.7697843932227], [-79.9338634138669, 32.7697819017197], [-79.9338642869353, 32.7697770141727], [-79.9338643173695, 32.7697745217679], [-79.9338651610826, 32.7697720382553], [-79.9338651914838, 32.7697695485558], [-79.9338652218959, 32.7697670579546], [-79.9338660666983, 32.7697645726478], [-79.9336856533854, 32.7697514908451], [-79.9335873205762, 32.7697443631497], [-79.933395530602, 32.7697304070587], [-79.9332801321919, 32.7697220120328], [-79.9331752982797, 32.7697143989403], [-79.9329461260618, 32.7696977947857], [-79.9329642936977, 32.7700081392041], [-79.9329724756655, 32.7701373189941]]], "type": "Polygon"}, "id": "2", "properties": {"OBJECTID": 432, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5687.0859375, "Shape__Length": 388.599079776523, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9319001626525, 32.7693941649093, -79.9287475548896, 32.7704636592337], "geometry": {"coordinates": [[[-79.9289489248691, 32.7695112771758], [-79.9287475548896, 32.7700067836736], [-79.9319001626525, 32.7704636592337], [-79.9317990888727, 32.769608836748], [-79.9290871002034, 32.7693952574836], [-79.929077365801, 32.7693941649093], [-79.9290752160327, 32.7693943354732], [-79.9290566837646, 32.7693943806422], [-79.9290450261581, 32.7693959604983], [-79.9290352747715, 32.7693982541612], [-79.9290305174036, 32.7693997185723], [-79.9290198138225, 32.7694039302161], [-79.9290139929166, 32.7694068174282], [-79.929007072925, 32.7694108926534], [-79.9290005941665, 32.7694154587322], [-79.9289934724317, 32.7694215351651], [-79.9289881326829, 32.7694270536334], [-79.9289808185595, 32.769436631107], [-79.928973971236, 32.7694496621852], [-79.9289489248691, 32.7695112771758]]], "type": "Polygon"}, "id": "3", "properties": {"OBJECTID": 434, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 32673.35546875, "Shape__Length": 866.826681732177, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9329874775406, 32.7696234278871, -79.9319622056595, 32.7705185595374], "geometry": {"coordinates": [[[-79.9329611997473, 32.7696960143898], [-79.9319622056595, 32.7696234278871], [-79.9320544791572, 32.7704797119234], [-79.9323702191405, 32.7705185595374], [-79.9323301633592, 32.7700080619968], [-79.9325684044422, 32.7700094540327], [-79.9325674131979, 32.7701331409946], [-79.9326192391891, 32.7701334408309], [-79.9327593599039, 32.7701342504086], [-79.9329874775406, 32.7701355686301], [-79.9329611997473, 32.7696960143898]]], "type": "Polygon"}, "id": "4", "properties": {"OBJECTID": 435, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8141.1640625, "Shape__Length": 476.627831125394, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9353611720623, 32.7700080619968, -79.9323301633592, 32.7706838513022], "geometry": {"coordinates": [[[-79.9323702191405, 32.7705185595374], [-79.9323707969429, 32.7705245572708], [-79.9326161679244, 32.7705400006877], [-79.9327689879557, 32.7705480329291], [-79.9329974068394, 32.7705599899865], [-79.9332266369469, 32.7705720420714], [-79.9334322959096, 32.7705827690271], [-79.9336387661178, 32.770593588383], [-79.9337363107291, 32.7705987314359], [-79.9338297908676, 32.7706036703416], [-79.9338517386625, 32.770604806761], [-79.9339736689197, 32.7706113670158], [-79.9340955970605, 32.7706179271304], [-79.9342199662354, 32.7706245940661], [-79.9342784919634, 32.7706277679994], [-79.9343435210199, 32.7706312564859], [-79.9344134278556, 32.7706349578763], [-79.9344719536417, 32.7706381281101], [-79.9344776447252, 32.7706384356087], [-79.9347304455206, 32.7706519762048], [-79.9350637189708, 32.7706699108121], [-79.9353230232915, 32.7706838513022], [-79.9353416292864, 32.7704921110346], [-79.9353611720623, 32.7702902450113], [-79.935085682396, 32.7702696362101], [-79.9350060444469, 32.7702636184384], [-79.9347484340469, 32.7702442810118], [-79.9344900104667, 32.7702249350566], [-79.9344826980597, 32.7702243573144], [-79.9343624253022, 32.7702153220383], [-79.9342389025411, 32.770206084273], [-79.9342411225763, 32.770157483023], [-79.9342433530768, 32.77010802422], [-79.9340668776165, 32.7701054548062], [-79.9340684622693, 32.7701089929837], [-79.934070045888, 32.7701125284466], [-79.9340716284829, 32.7701161477712], [-79.9340732099882, 32.7701198563678], [-79.934073977133, 32.7701235569662], [-79.9340747453672, 32.7701272557703], [-79.9340755125336, 32.7701310420431], [-79.9340762807674, 32.7701348283252], [-79.934077047934, 32.770138614598], [-79.9340778151006, 32.7701424008708], [-79.934077767895, 32.7701462675249], [-79.9340777217573, 32.7701500467105], [-79.9340776693335, 32.7701543407887], [-79.9340776274011, 32.7701577755101], [-79.9340775812633, 32.7701615546957], [-79.9340767218099, 32.7701653276958], [-79.9340758612996, 32.7701691872627], [-79.9340750018576, 32.7701728718831], [-79.934074142415, 32.7701766439815], [-79.9340732840182, 32.7701803304147], [-79.9340716133837, 32.7701840097699], [-79.9340699427387, 32.7701876025489], [-79.9340682720716, 32.7701911971313], [-79.9340666014373, 32.7701947890086], [-79.9340649318162, 32.7701982104479], [-79.9340624510247, 32.7702016248185], [-79.9340607824817, 32.7702050453653], [-79.9340591243861, 32.7702076101624], [-79.934057469461, 32.7702099152589], [-79.934054177445, 32.7702130646354], [-79.934051698745, 32.7702162201976], [-79.9340492221144, 32.7702192062329], [-79.9340459311553, 32.7702221815645], [-79.9340434576725, 32.7702249971804], [-79.9340401698609, 32.7702278020926], [-79.9340368830516, 32.7702304374685], [-79.9340335983878, 32.7702330719613], [-79.9340303147592, 32.7702355342126], [-79.934026218871, 32.7702379037111], [-79.9340229384017, 32.7702401071632], [-79.9340188435265, 32.7702423062237], [-79.9340155662049, 32.7702443392564], [-79.9340114744781, 32.7702462804194], [-79.9340073870106, 32.7702480475654], [-79.9340032995104, 32.7702497299384], [-79.9339992120218, 32.7702513239318], [-79.9339951287044, 32.7702527511219], [-79.9339902310257, 32.7702540828352], [-79.9339861498329, 32.7702553359896], [-79.9339828850735, 32.770256165182], [-79.9339796245295, 32.7702568239646], [-79.9339755453856, 32.7702577344394], [-79.9339706571955, 32.7702584638092], [-79.9339665812113, 32.7702591154848], [-79.9339616961369, 32.7702595896624], [-79.9339576243804, 32.7702598950702], [-79.9339527413875, 32.7702601113409], [-79.9339486727461, 32.7702602490342], [-79.9339437929131, 32.7702602065057], [-79.9339389151941, 32.7702599908431], [-79.9339348518266, 32.7702596966034], [-79.9339299772236, 32.7702592257485], [-79.933925916972, 32.7702586763166], [-79.9339210455291, 32.7702579466624], [-79.9339169895057, 32.7702570509626], [-79.9339121211789, 32.7702560661162], [-79.9339080672807, 32.7702549963806], [-79.9339040154085, 32.770253760725], [-79.9338999646265, 32.7702524357971], [-79.9338951026203, 32.7702509333522], [-79.9338910549876, 32.7702493505269], [-79.9338870104705, 32.7702475999874], [-79.9338829649199, 32.7702457592554], [-79.9338797347551, 32.7702438426611], [-79.9338756933993, 32.7702417458444], [-79.9338716531227, 32.7702395606572], [-79.9338684271536, 32.7702373005003], [-79.9338643899935, 32.7702348601209], [-79.9338611671739, 32.7702323420667], [-79.9338579454446, 32.7702297347402], [-79.9338547247065, 32.7702270462573], [-79.933851506148, 32.770224266708], [-79.9338482864571, 32.7702214050817], [-79.9338458821849, 32.7702184648884], [-79.9338426677892, 32.7702153444817], [-79.9338402645642, 32.7702122311452], [-79.9338378634857, 32.7702090294475], [-79.9338354634096, 32.7702057456917], [-79.9338330643898, 32.7702024628468], [-79.9338314787097, 32.7701990094296], [-79.9338290807482, 32.7701955525399], [-79.9338274971268, 32.7701920179755], [-79.9338259135165, 32.7701884825094], [-79.9338243320418, 32.770184859584], [-79.9338227483886, 32.7701812402469], [-79.9338219801975, 32.7701775387359], [-79.933820399737, 32.7701737453726], [-79.9338196315132, 32.7701700465668], [-79.9338188643575, 32.7701662602924], [-79.9338180972019, 32.770162474018], [-79.933818144419, 32.7701586073639], [-79.9338173772634, 32.7701548210895], [-79.9338174244586, 32.7701509562389], [-79.9338174706076, 32.7701471770534], [-79.9338183541871, 32.7701414292482], [-79.9338184013821, 32.7701375643976], [-79.9338192608354, 32.7701337923011], [-79.9338201202886, 32.7701300202046], [-79.9338209797417, 32.7701262481081], [-79.9338218381487, 32.7701225616767], [-79.9338226965336, 32.7701188770488], [-79.9338243682446, 32.7701151977063], [-79.9338260389313, 32.7701116022255], [-79.9338277095739, 32.7701080103516], [-79.9338293791703, 32.7701045041428], [-79.9338310477645, 32.7701010799922], [-79.9337066384743, 32.7700978482939], [-79.9337093200168, 32.7701446867918], [-79.9337235609674, 32.7703772578345], [-79.93362587083, 32.7703840501805], [-79.9336089895198, 32.7701012942752], [-79.933418558876, 32.7701092547321], [-79.9334219475894, 32.7701646884745], [-79.9334072986669, 32.7701653336149], [-79.9333063859407, 32.7701696076394], [-79.9332022535685, 32.7701711047101], [-79.9332016595846, 32.7701531476144], [-79.932988210404, 32.7701478354617], [-79.9329874775406, 32.7701355686301], [-79.9327593599039, 32.7701342504086], [-79.9326192391891, 32.7701334408309], [-79.9325674131979, 32.7701331409946], [-79.9325684044422, 32.7700094540327], [-79.9323301633592, 32.7700080619968], [-79.9323702191405, 32.7705185595374]]], "type": "Polygon"}, "id": "5", "properties": {"OBJECTID": 436, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 18612.0234375, "Shape__Length": 936.48607698243, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9377404956958, 32.7698897977619, -79.935457628852, 32.7710652195778], "geometry": {"coordinates": [[[-79.9355077618822, 32.7706759231089], [-79.9355110130085, 32.7706760370756], [-79.9355167051314, 32.7706762597624], [-79.9355199562576, 32.7706763737289], [-79.9355232084622, 32.7706764868028], [-79.9355264617012, 32.7706766025911], [-79.9355297128274, 32.7706767165573], [-79.9355354049835, 32.7706769365381], [-79.9355386561208, 32.7706770496023], [-79.9355419082814, 32.7706771662827], [-79.9355451615424, 32.770677280267], [-79.9355484126797, 32.7706773933309], [-79.9355516648513, 32.7706775091094], [-79.9355573548958, 32.770677814745], [-79.9355606071005, 32.7706779278178], [-79.9355638603395, 32.7706780436052], [-79.9355671114548, 32.7706781584722], [-79.9355703636605, 32.7706783590227], [-79.9355760536821, 32.770678578983], [-79.9355793069432, 32.7706786929664], [-79.9355825580706, 32.7706788944092], [-79.935585809208, 32.7706790074722], [-79.9355890613918, 32.7706792098258], [-79.9355947514244, 32.7706794288834], [-79.9355980036522, 32.7706796276298], [-79.935601255813, 32.7706797443086], [-79.9356045059172, 32.7706799421345], [-79.9356077591344, 32.7706800597241], [-79.9356110092385, 32.7706802575499], [-79.9356167003177, 32.7706805658972], [-79.9356199504108, 32.7706807646244], [-79.9356232026157, 32.7706808776956], [-79.9356264547996, 32.7706810800482], [-79.9356297048709, 32.7706812805787], [-79.9356353959832, 32.77068158622], [-79.9356386460434, 32.7706817876519], [-79.9356418982715, 32.7706819863971], [-79.9356451504434, 32.770682102173], [-79.9356484005367, 32.7706823008995], [-79.9356540905718, 32.7706826949102], [-79.9356573406432, 32.7706828954399], [-79.9356605928713, 32.7706830941847], [-79.935663844032, 32.77068329292], [-79.9356670951257, 32.7706834095878], [-79.935672785172, 32.7706838026959], [-79.9356760352654, 32.7706840014216], [-79.9356792874606, 32.7706842028711], [-79.9356825386324, 32.7706844007042], [-79.9356857876486, 32.7706846878], [-79.9356890398768, 32.770684886544], [-79.9356947277446, 32.7706852832395], [-79.9356979799729, 32.7706854819832], [-79.9357012311118, 32.7706856825211], [-79.9357044822727, 32.7706858812554], [-79.9357077323564, 32.7706861683599], [-79.9357134213357, 32.7706865614569], [-79.9357166724967, 32.7706867601908], [-79.9357199225805, 32.7706870472951], [-79.9357231737195, 32.7706872478323], [-79.9357264248805, 32.770687446566], [-79.9357321128158, 32.7706879253272], [-79.9357353639439, 32.7706881267659], [-79.9357386140718, 32.7706884102627], [-79.9357418651999, 32.7706886117012], [-79.9357451152838, 32.7706888988047], [-79.9357508032303, 32.7706893766634], [-79.9357540543475, 32.7706895790033], [-79.9357573044755, 32.7706898624996], [-79.9357605556037, 32.7706900639376], [-79.9357638056877, 32.7706903510406], [-79.9357694936344, 32.7706908288984], [-79.9357727437624, 32.7706911123943], [-79.9357759938466, 32.7706913994971], [-79.9357792449749, 32.7706916009346], [-79.935782495103, 32.7706918844302], [-79.9357881819728, 32.7706924506574], [-79.9357914331341, 32.7706926493894], [-79.9357946832293, 32.77069293559], [-79.9357979333136, 32.7706932226921], [-79.9358036201725, 32.7706937898205], [-79.9358068703008, 32.7706940733154], [-79.9358101203962, 32.7706943595155], [-79.9358133704806, 32.7706946466173], [-79.9358166205759, 32.7706949328172], [-79.935822307468, 32.7706954972395], [-79.9358255575635, 32.7706957834391], [-79.9358288076919, 32.7706960669335], [-79.9358320577764, 32.7706963540348], [-79.935835307872, 32.7706966402342], [-79.9358409947314, 32.7706972073608], [-79.9358442448599, 32.7706974908548], [-79.9358474949555, 32.7706977770539], [-79.935850743996, 32.7706981498198], [-79.9358539940916, 32.7706984360188], [-79.9358596809952, 32.7706989995375], [-79.9358629300469, 32.7706993714014], [-79.9358661801316, 32.7706996585017], [-79.9358694302273, 32.7706999447003], [-79.935875116054, 32.7707005965887], [-79.9358783661828, 32.7707008800818], [-79.9358816152456, 32.7707012510434], [-79.9358848653305, 32.7707015381433], [-79.9358881143823, 32.7707019100064], [-79.9358938002093, 32.770702561894], [-79.9358970503382, 32.7707028453866], [-79.9359002993571, 32.7707032199547], [-79.9359035494751, 32.7707035043488], [-79.9359067985271, 32.7707038762115], [-79.9359124843543, 32.7707045280982], [-79.9359157334174, 32.7707048990589], [-79.9359189835025, 32.7707051861579], [-79.9359222325546, 32.7707055580202], [-79.935927917349, 32.7707062946696], [-79.9359311674782, 32.7707065781612], [-79.9359344164864, 32.7707069536302], [-79.9359376655497, 32.7707073245903], [-79.9359409157022, 32.7707076937562], [-79.9359466004627, 32.770708345632], [-79.9359498505823, 32.7707087175029], [-79.9359530985673, 32.770709089355], [-79.9359563476197, 32.7707094612164], [-79.9359620324147, 32.7707101978642], [-79.9359652814672, 32.7707105697254], [-79.935968531587, 32.7707109415957], [-79.9359717795722, 32.7707113134474], [-79.9359774654348, 32.7707120501038], [-79.93598071342, 32.7707124219553], [-79.9359839614067, 32.7707128812846], [-79.9359872104924, 32.7707132504399], [-79.9359904595011, 32.7707136259073], [-79.9359961442967, 32.7707143625536], [-79.9359993933934, 32.7707147308068], [-79.9360026413692, 32.7707151910374], [-79.9360058904221, 32.7707155628974], [-79.9360115741849, 32.7707163843064], [-79.9360148232268, 32.770716757068], [-79.9360180722908, 32.770717128026], [-79.9360213213671, 32.7707175855601], [-79.9360270050959, 32.7707183221956], [-79.936030253116, 32.7707187788185], [-79.9360335021251, 32.7707191542848], [-79.9360367501453, 32.7707196109075], [-79.9360424339087, 32.7707204323149], [-79.9360456829509, 32.7707208050757], [-79.9360489320385, 32.7707212617073], [-79.9360521789476, 32.7707217219273], [-79.9360554290777, 32.7707220054157], [-79.9360586791983, 32.7707223772836], [-79.9360619271843, 32.7707227491329], [-79.9360651772816, 32.7707230353262], [-79.9360708620784, 32.770723771969], [-79.9360741111208, 32.770724144729], [-79.9360773612526, 32.7707245156947], [-79.9360806102716, 32.7707248027801], [-79.9360838593252, 32.7707251746381], [-79.936087109446, 32.7707255465053], [-79.9360903574323, 32.7707259183538], [-79.9360936075532, 32.7707262902208], [-79.9360968566068, 32.7707266620785], [-79.9361001045931, 32.7707270339268], [-79.9361033547141, 32.7707274057935], [-79.9361066027005, 32.7707277776416], [-79.9361122875325, 32.7707285990552], [-79.9361155355079, 32.7707289718048], [-79.9361187845727, 32.7707293427602], [-79.9361220346829, 32.7707297155281], [-79.9361252826805, 32.770730086474], [-79.9361285306905, 32.770730543996], [-79.9361317808118, 32.770730915862], [-79.9361350287984, 32.7707312877094], [-79.9361382778869, 32.7707317443387], [-79.9361415269409, 32.7707321161951], [-79.9361447748946, 32.7707324907475], [-79.9361480239722, 32.7707329482782], [-79.9361537066593, 32.770733770573], [-79.9361569567917, 32.7707341415366], [-79.9361602048021, 32.7707345990577], [-79.936163452789, 32.7707349709043], [-79.9361667018339, 32.7707354311398], [-79.9361699498553, 32.7707358877589], [-79.9361731978423, 32.7707362596053], [-79.9361764469312, 32.7707367162335], [-79.9361796949072, 32.7707370889814], [-79.9361829439962, 32.7707375456095], [-79.9361886266854, 32.7707384553806], [-79.9361918747071, 32.7707389119992], [-79.9361951237616, 32.7707392838542], [-79.9361983707051, 32.7707397413651], [-79.9362016197942, 32.7707401979927], [-79.9362048677721, 32.7707406582178], [-79.9362081147156, 32.7707411157284], [-79.9362113638048, 32.7707415723557], [-79.9362146117829, 32.7707420325807], [-79.9362178587375, 32.7707424891892], [-79.9362235425277, 32.7707433962628], [-79.9362267894824, 32.7707438528712], [-79.9362300385279, 32.7707443131049], [-79.93623328655, 32.7707447697224], [-79.9362365345612, 32.7707452272415], [-79.9362397815067, 32.7707457722292], [-79.936243029529, 32.7707462288464], [-79.9362462775403, 32.7707466863652], [-79.9362495255626, 32.7707471429823], [-79.9362527724973, 32.7707476888713], [-79.9362584551989, 32.7707485977375], [-79.9362617021667, 32.7707491409211], [-79.9362649501891, 32.7707495975377], [-79.936268197135, 32.7707501425246], [-79.9362714440902, 32.7707505991318], [-79.9362746931691, 32.7707510566592], [-79.9362779401151, 32.7707516016459], [-79.9362811870704, 32.7707520582527], [-79.9362844350838, 32.7707526032486], [-79.9362901156971, 32.7707535959656], [-79.9362933637106, 32.7707541409611], [-79.9362966106897, 32.7707546832421], [-79.9362998587126, 32.7707551398578], [-79.9363031056479, 32.7707556857455], [-79.9363079761059, 32.7707565000683], [-79.9363128475966, 32.7707572296274], [-79.9363185282122, 32.7707583098211], [-79.9363217751587, 32.7707588548066], [-79.9363250221382, 32.7707593970868], [-79.9363282690848, 32.7707599420721], [-79.9363315160644, 32.7707604843521], [-79.9363347630111, 32.7707610293373], [-79.9363380099908, 32.7707615716172], [-79.9363412569376, 32.7707621166021], [-79.9363469375538, 32.7707631967945], [-79.9363501845336, 32.770763739074], [-79.9363534314805, 32.7707642840587], [-79.9363566784605, 32.7707648263381], [-79.9363599254075, 32.7707653713225], [-79.9363631713109, 32.7707660019721], [-79.9363664182909, 32.7707665442512], [-79.9363720989078, 32.7707676244424], [-79.9363753448224, 32.7707682541899], [-79.9363785918026, 32.7707687964687], [-79.9363818387499, 32.7707693414526], [-79.9363850846537, 32.7707699721016], [-79.936388331634, 32.7707705143801], [-79.9363915775488, 32.7707711441272], [-79.9363972571227, 32.7707723099824], [-79.9364005041141, 32.7707728513588], [-79.9364037500182, 32.7707734820073], [-79.9364069969658, 32.7707740269906], [-79.9364102428699, 32.7707746576389], [-79.936413488818, 32.7707752846802], [-79.9364167357658, 32.7707758296631], [-79.9364224143077, 32.7707770802806], [-79.9364256612556, 32.7707776252634], [-79.9364289072039, 32.7707782523042], [-79.9364321531083, 32.770778882952], [-79.9364353990128, 32.7707795135997], [-79.9364386449283, 32.7707801433455], [-79.9364443234709, 32.7707813939619], [-79.936447570419, 32.7707819389441], [-79.9364508163237, 32.7707825695913], [-79.9364540622724, 32.7707831966315], [-79.9364573081882, 32.7707838263769], [-79.936460554093, 32.7707844570239], [-79.9364662315597, 32.7707857960097], [-79.9364694775086, 32.7707864230495], [-79.936472724481, 32.7707870537054], [-79.9364759693297, 32.770787683441], [-79.9364792152787, 32.7707883104805], [-79.9364824611839, 32.770788941127], [-79.9364881386512, 32.7707902801118], [-79.9364913845675, 32.7707909098562], [-79.9364954417185, 32.7707917171003], [-79.9365011212951, 32.7707928829507], [-79.9365043661682, 32.7707935983599], [-79.9365100446796, 32.7707948516785], [-79.9365132895528, 32.7707955670876], [-79.9365165355024, 32.7707961941261], [-79.9365197803647, 32.7707969104367], [-79.9365230262814, 32.7707975401803], [-79.9365287027175, 32.7707989639267], [-79.9365319486343, 32.77079959367], [-79.9365351935079, 32.7708003090785], [-79.9365384383815, 32.7708010244869], [-79.9365416842875, 32.7708016551317], [-79.9365473607242, 32.7708030788772], [-79.9365506055979, 32.7708037942852], [-79.9365538525715, 32.770804424939], [-79.936557096378, 32.7708051403376], [-79.9365603412959, 32.7708058521384], [-79.9365660177331, 32.770807275883], [-79.9365692626072, 32.7708079912906], [-79.9365725085377, 32.7708087076091], [-79.9365757523445, 32.7708094230072], [-79.9365789971858, 32.7708101411197], [-79.9365846736236, 32.7708115648634], [-79.936587918498, 32.7708122802704], [-79.9365911644398, 32.7708129956867], [-79.9365944082909, 32.7708137074774], [-79.9365976531654, 32.7708144228842], [-79.9366033285275, 32.7708159349974], [-79.9366065734022, 32.770816650404], [-79.9366098193443, 32.7708173658197], [-79.9366130621194, 32.7708181659803], [-79.9366187396146, 32.7708195906335], [-79.9366219823899, 32.7708203907937], [-79.9366252283323, 32.7708211062091], [-79.9366284721311, 32.7708219099854], [-79.9366317159389, 32.7708226253821], [-79.9366373924133, 32.7708241338961], [-79.936640635178, 32.7708249349576], [-79.9366438811206, 32.7708256503725], [-79.9366471238963, 32.7708264505322], [-79.9366528003274, 32.7708279626524], [-79.9366560441706, 32.7708287628211], [-79.9366592879789, 32.7708294782169], [-79.9366625328786, 32.7708302792965], [-79.9366682061432, 32.7708318761609], [-79.9366714520863, 32.770832591575], [-79.9366746948626, 32.7708333917339], [-79.9366779386952, 32.7708341928038], [-79.936683614095, 32.7708357896861], [-79.9366868568715, 32.7708365898446], [-79.9366901017717, 32.7708373909234], [-79.9366933445483, 32.7708381910818], [-79.9366990199485, 32.7708397879634], [-79.9367022627144, 32.7708405890233], [-79.9367055076258, 32.7708413891999], [-79.9367087514262, 32.7708421929742], [-79.9367144257926, 32.7708437871406], [-79.936717669637, 32.7708445873076], [-79.9367209113379, 32.7708454758357], [-79.9367265867721, 32.7708470700108], [-79.9367298295384, 32.7708478710699], [-79.9367330733852, 32.7708487587145], [-79.936736317219, 32.7708495597828], [-79.9367419905103, 32.7708512423182], [-79.9367452343552, 32.7708520424846], [-79.9367484760567, 32.7708529310119], [-79.9367517209581, 32.7708537320891], [-79.9367573931935, 32.7708554137129], [-79.9367606370629, 32.7708562995532], [-79.9367638808972, 32.7708571006208], [-79.9367695542004, 32.7708587822532], [-79.9367727969698, 32.7708596707891], [-79.9367760387047, 32.7708605566106], [-79.9367817130648, 32.7708622391535], [-79.936784954767, 32.7708631276799], [-79.9367881986369, 32.7708640135195], [-79.9367914424827, 32.7708648136846], [-79.9367971147439, 32.770866580981], [-79.9368003575138, 32.7708674695162], [-79.9368035992493, 32.7708683553369], [-79.9368092725783, 32.7708701226419], [-79.936812514281, 32.7708710111676], [-79.9368157581515, 32.7708718970065], [-79.9368214293463, 32.7708736642925], [-79.9368279159874, 32.7708754386656], [-79.9368335882499, 32.7708772059603], [-79.9368368310206, 32.7708780944945], [-79.9368400738243, 32.7708789803235], [-79.9368457450112, 32.770880835988], [-79.9368489878151, 32.7708817218168], [-79.9368522305861, 32.7708826103507], [-79.9368579018174, 32.7708844624076], [-79.9368611446215, 32.7708853482361], [-79.9368668158094, 32.7708872038996], [-79.9368700575815, 32.7708881744912], [-79.9368733003529, 32.7708890630245], [-79.9368789715742, 32.7708909159822], [-79.9368822133137, 32.7708918892787], [-79.9368854561184, 32.7708927751066], [-79.9368911262641, 32.7708947164342], [-79.9368943690689, 32.7708956022617], [-79.9368976108087, 32.7708965755578], [-79.9369032820421, 32.7708984276126], [-79.9369065237711, 32.7708994018103], [-79.9369121939616, 32.7709013395299], [-79.9369154357019, 32.7709023128255], [-79.9369186784743, 32.7709032013577], [-79.9369243486654, 32.7709051390767], [-79.936927590395, 32.7709061132738], [-79.9369332605535, 32.7709080536977], [-79.9369365023272, 32.7709090242875], [-79.936939744057, 32.7709099984843], [-79.9369454142161, 32.7709119389076], [-79.9369486559901, 32.7709129094971], [-79.9369543251065, 32.7709149355852], [-79.9369575668477, 32.7709159088797], [-79.9369632370405, 32.770917846597], [-79.9369664787709, 32.770918820793], [-79.9369697194694, 32.7709198797525], [-79.9369753896298, 32.7709218201743], [-79.9369786303285, 32.7709228791335], [-79.9369842994902, 32.7709249016133], [-79.9369875412212, 32.7709258758087], [-79.9369932103503, 32.7709279009933], [-79.9369964520815, 32.7709288751885], [-79.937002121244, 32.7709308976674], [-79.9370053619324, 32.7709319575276], [-79.9370110310624, 32.7709339827113], [-79.937014271762, 32.7709350416695], [-79.9370175124616, 32.7709361006277], [-79.9370231815812, 32.7709381267125], [-79.937026422292, 32.7709391847687], [-79.9370320914559, 32.7709412072462], [-79.9370353321121, 32.7709422698108], [-79.9370410002005, 32.7709443806583], [-79.9370442409338, 32.7709454369105], [-79.937049910057, 32.7709475504721], [-79.9370531497232, 32.7709486067148], [-79.9370588188468, 32.770950720276], [-79.9370620585132, 32.7709517765184], [-79.9370677276373, 32.7709538900792], [-79.9370733946599, 32.7709560009159], [-79.9370766364613, 32.7709570571766], [-79.9370823024195, 32.7709592554815], [-79.9370855441882, 32.7709603144471], [-79.9370912101688, 32.7709625109483], [-79.9370944519378, 32.7709635699136], [-79.9370976915722, 32.7709646288603], [-79.937103359688, 32.7709668253794], [-79.9371090256804, 32.7709690209779], [-79.9371122674169, 32.770970082648], [-79.9371179333987, 32.7709722791479], [-79.9371235994163, 32.7709745604202], [-79.9371268401298, 32.7709756184737], [-79.9371325071468, 32.7709778176874], [-79.9371357468176, 32.7709789614058], [-79.9371414128361, 32.7709812426773], [-79.9371470809541, 32.7709834391943], [-79.9371503205814, 32.7709845865194], [-79.9371559876435, 32.770986782125], [-79.937159227315, 32.7709879258429], [-79.9371648933018, 32.7709902098185], [-79.9371705582435, 32.770992491981], [-79.9371737989827, 32.7709936357077], [-79.9371794639029, 32.7709959196734], [-79.9371851309909, 32.7709982009522], [-79.9371883695519, 32.7709993482669], [-79.9371940355758, 32.7710017170139], [-79.9371997005299, 32.7710039982734], [-79.93720294127, 32.7710051419993], [-79.9372086051489, 32.7710075116288], [-79.9372142722384, 32.7710097929062], [-79.9372175097685, 32.7710110249836], [-79.9372231757939, 32.7710133937293], [-79.9372288418059, 32.7710156758985], [-79.9372345056972, 32.771018044625], [-79.9372377453625, 32.7710192767204], [-79.9372434092762, 32.7710216436431], [-79.937249075303, 32.7710240123876], [-79.93725473922, 32.7710264667877], [-79.9372579788942, 32.7710276105029], [-79.9372636428007, 32.7710300658043], [-79.9372693077612, 32.7710324345385], [-79.9372749716793, 32.7710348889377], [-79.9372806345303, 32.7710373433274], [-79.937283874197, 32.7710385754215], [-79.9372895381132, 32.7710409423421], [-79.9372952030998, 32.7710433967496], [-79.9373008670303, 32.7710458502458], [-79.9373065288072, 32.7710483930046], [-79.9373097685076, 32.7710496223929], [-79.9373154313606, 32.7710520767809], [-79.937321095306, 32.7710546168524], [-79.937326759227, 32.7710570712492], [-79.9373324221166, 32.7710596104091], [-79.9373356607175, 32.7710608424927], [-79.9373388962016, 32.77106233067], [-79.937342133771, 32.7710636475168], [-79.9373453776293, 32.7710644476672], [-79.9373486245827, 32.7710649935272], [-79.9373518747051, 32.7710651913067], [-79.9373551290255, 32.7710652195778], [-79.9373583853845, 32.7710649926474], [-79.9373616459689, 32.7710644185475], [-79.9373649096811, 32.7710635874519], [-79.9373681796708, 32.7710622405617], [-79.9373714506811, 32.7710608098097], [-79.9373747321723, 32.7710585178972], [-79.9373780178008, 32.771055886029], [-79.9373796726543, 32.7710535808874], [-79.9373821418745, 32.7710511962441], [-79.9375421914854, 32.7707994398611], [-79.9377362264089, 32.7704953212356], [-79.9377378843581, 32.7704927599955], [-79.9377387311057, 32.7704900185588], [-79.9377395778861, 32.7704872744167], [-79.9377404267322, 32.7704844482257], [-79.937740461214, 32.7704816140609], [-79.9377404956958, 32.770478779896], [-79.9377397158244, 32.7704759368555], [-79.9377389359233, 32.7704731839981], [-79.9377373406739, 32.7704705918013], [-79.9377357443603, 32.7704680870731], [-79.937734148072, 32.7704656680193], [-79.9377309240978, 32.7704631473525], [-79.9377277011693, 32.7704606284983], [-79.9377244719686, 32.7704587129166], [-79.9377188122302, 32.7704558293014], [-79.9377131525532, 32.7704531161332], [-79.9377107282724, 32.7704517215867], [-79.9377050675647, 32.7704490931815], [-79.9377018299875, 32.77044769067], [-79.9376969825439, 32.7704450729346], [-79.9376937439247, 32.7704437560879], [-79.9376913207228, 32.7704423606486], [-79.9376880842384, 32.7704410438203], [-79.9376832346719, 32.7704384251641], [-79.9376775749863, 32.770435712896], [-79.937671912135, 32.7704330853725], [-79.9376686756183, 32.770431771249], [-79.9376638260859, 32.7704291498868], [-79.9376581642698, 32.7704265250771], [-79.9376525035544, 32.7704238975713], [-79.9376492649476, 32.7704225798218], [-79.9376444164287, 32.7704199629768], [-79.9376387546139, 32.7704173381662], [-79.9376330939106, 32.7704147097579], [-79.9376298552825, 32.7704133938113], [-79.937625007854, 32.7704107751713], [-79.9376193439306, 32.7704082360158], [-79.9376136821611, 32.7704056075972], [-79.9376080193057, 32.7704030684504], [-79.937602357526, 32.770400440933], [-79.9375991189128, 32.7703992115618], [-79.9375942704407, 32.7703965911079], [-79.9375886086647, 32.7703940510678], [-79.9375829447434, 32.7703915119106], [-79.9375772818899, 32.7703889727624], [-79.9375716190805, 32.770386430007], [-79.9375659562385, 32.7703838899566], [-79.9375627186909, 32.7703825731158], [-79.937557868114, 32.7703801257942], [-79.9375522052619, 32.7703775866449], [-79.937546542421, 32.7703750465936], [-79.9375408796135, 32.7703725038368], [-79.9375352157309, 32.7703700494501], [-79.93752955288, 32.7703675102997], [-79.9375238889981, 32.7703650559126], [-79.9375182261589, 32.7703625158599], [-79.9375125622776, 32.7703600614722], [-79.9375068983856, 32.770357607986], [-79.937501234505, 32.7703551535977], [-79.9374955706246, 32.7703526992092], [-79.9374899067555, 32.7703502439187], [-79.9374842428758, 32.7703477895297], [-79.9374785789964, 32.7703453351404], [-79.9374729151063, 32.7703428816526], [-79.9374672512276, 32.7703404272628], [-79.9374615863176, 32.7703380576362], [-79.9374559224395, 32.7703356032458], [-79.9374502575301, 32.7703332336187], [-79.9374445936526, 32.7703307792279], [-79.9374389286999, 32.7703284132072], [-79.937433264823, 32.7703259588157], [-79.9374275999039, 32.7703235900893], [-79.9374219349961, 32.7703212204608], [-79.9374162700447, 32.7703188544391], [-79.9374106051375, 32.7703164848101], [-79.9374073665631, 32.7703152527286], [-79.9374017016235, 32.7703128858044], [-79.9373960356635, 32.7703106027417], [-79.9373903707574, 32.7703082331118], [-79.9373847058077, 32.7703058670885], [-79.9373790409022, 32.7703034974581], [-79.9373733749544, 32.7703012134926], [-79.9373701353165, 32.7703000688788], [-79.9373644704008, 32.7702977001494], [-79.9373588044208, 32.7702954188884], [-79.9373531384741, 32.770293134922], [-79.9373474735703, 32.77029076529], [-79.9373418075912, 32.7702884840283], [-79.9373385679433, 32.7702873403154], [-79.9373329019976, 32.770285056348], [-79.9373272360193, 32.7702827750855], [-79.9373215700742, 32.7702804911176], [-79.9373159030291, 32.7702782098453], [-79.9373126644931, 32.7702770625341], [-79.9373069964059, 32.7702748669266], [-79.9373013314962, 32.7702725856723], [-79.9372956655524, 32.7702703017031], [-79.9372924248741, 32.7702692427525], [-79.9372867588978, 32.7702669614882], [-79.9372835192624, 32.7702658168721], [-79.9372786624436, 32.7702638835305], [-79.9372754259474, 32.7702624810169], [-79.9372721842023, 32.7702614220565], [-79.9372665193274, 32.7702591380953], [-79.9372608512424, 32.7702569424857], [-79.9372576116323, 32.7702558835433], [-79.9372519435588, 32.7702536870316], [-79.9372462776092, 32.7702514914398], [-79.9372406106365, 32.7702492922316], [-79.9372373709914, 32.770248148516], [-79.9372317029434, 32.7702460376778], [-79.9372260348711, 32.7702438411648], [-79.9372227962938, 32.7702426974582], [-79.9372171271792, 32.77024058661], [-79.9372114612752, 32.7702383874097], [-79.9372082194988, 32.7702373311527], [-79.9372025525525, 32.7702352176171], [-79.9371968844708, 32.7702330220046], [-79.9371936448623, 32.7702319630606], [-79.9371879757492, 32.770229852211], [-79.9371823077146, 32.7702277404688], [-79.9371790670282, 32.7702266824169], [-79.9371734000259, 32.7702244859107], [-79.9371677330374, 32.7702223759805], [-79.937164491306, 32.7702213161154], [-79.9371588232861, 32.7702192909483], [-79.937155581544, 32.7702182319847], [-79.9371499145782, 32.7702161202502], [-79.9371442454562, 32.7702140103004], [-79.9371410058491, 32.770212951355], [-79.9371353356737, 32.7702109279716], [-79.9371296686979, 32.7702088171379], [-79.9371264269566, 32.7702077581736], [-79.9371207589384, 32.7702057330047], [-79.9371175171972, 32.7702046740401], [-79.9371118491905, 32.770202647969], [-79.9371086074495, 32.7702015890042], [-79.9371029394322, 32.7701995638345], [-79.9370972692914, 32.7701975377441], [-79.9370940286097, 32.7701965671679], [-79.9370883584584, 32.7701945419789], [-79.9370851188637, 32.7701934821303], [-79.9370794487127, 32.7701914569409], [-79.9370762080754, 32.7701904827572], [-79.9370729663024, 32.7701894264967], [-79.9370689175721, 32.7701879294417], [-79.9370648688199, 32.7701864341901], [-79.9370616271046, 32.7701854608985], [-79.937055958033, 32.7701834348155], [-79.937052716285, 32.7701824642289], [-79.9370470472139, 32.7701804381455], [-79.9370438054989, 32.7701794648535], [-79.9370381353523, 32.7701775271401], [-79.9370348936486, 32.7701765529461], [-79.9370292245673, 32.7701745277636], [-79.9370259828637, 32.7701735535693], [-79.9370203127179, 32.7701716158551], [-79.9370170710036, 32.7701706425623], [-79.9370114008581, 32.7701687048477], [-79.937008159155, 32.7701677306529], [-79.9370024890429, 32.7701657902327], [-79.9369992472961, 32.7701648196447], [-79.9369935771843, 32.770162879224], [-79.9369903354816, 32.7701619050288], [-79.9369846642944, 32.7701600529781], [-79.9369814225589, 32.7701590814878], [-79.936975752448, 32.7701571410663], [-79.9369725107347, 32.7701561677724], [-79.9369668395591, 32.7701543148191], [-79.9369635978571, 32.7701533406232], [-79.936957926671, 32.7701514885713], [-79.9369546849581, 32.7701505152769], [-79.9369490137833, 32.7701486623227], [-79.9369457720707, 32.7701476890281], [-79.9369401008963, 32.7701458360736], [-79.9369368591948, 32.770144861877], [-79.9369311880098, 32.7701430098238], [-79.9369279452325, 32.7701421239973], [-79.9369222740918, 32.7701402683368], [-79.9369190323797, 32.7701392950414], [-79.9369133611954, 32.7701374429874], [-79.9369101184186, 32.7701365571604], [-79.9369068756857, 32.7701356677264], [-79.9369012045019, 32.7701338156719], [-79.9368979617583, 32.7701329271394], [-79.9368922905749, 32.7701310750844], [-79.9368890477985, 32.7701301892569], [-79.9368833766593, 32.7701283335946], [-79.9368801338831, 32.7701274477668], [-79.9368744616683, 32.7701256804745], [-79.9368712188923, 32.7701247946464], [-79.9368679761493, 32.7701239061131], [-79.9368623049671, 32.7701220540568], [-79.9368590622242, 32.7701211655233], [-79.9368533900103, 32.7701193982299], [-79.9368501472457, 32.7701185114997], [-79.9368469045031, 32.7701176229658], [-79.9368412322786, 32.7701158565736], [-79.9368379895033, 32.7701149707448], [-79.9368323172902, 32.7701132034505], [-79.936829074559, 32.7701123140144], [-79.9368234013031, 32.7701106323848], [-79.9368201585281, 32.7701097465555], [-79.9368169157862, 32.7701088580208], [-79.9368112424978, 32.7701071790959], [-79.936807999756, 32.7701062905611], [-79.936802327555, 32.7701045223636], [-79.9367990837374, 32.7701037221989], [-79.9367958409959, 32.7701028336637], [-79.9367901677192, 32.770101153836], [-79.936786924967, 32.7701002662024], [-79.9367836821928, 32.7700993803721], [-79.9367780089496, 32.7700976978386], [-79.9367747651324, 32.7700968976733], [-79.9367690918895, 32.7700952151394], [-79.9367658491486, 32.7700943266034], [-79.9367626053426, 32.770093525536], [-79.9367569320892, 32.7700918439034], [-79.9367536893156, 32.7700909580723], [-79.9367504455099, 32.7700901570045], [-79.9367447722569, 32.7700884753713], [-79.9367415284404, 32.7700876752051], [-79.9367358551987, 32.7700859926697], [-79.9367326113824, 32.7700851925032], [-79.936729367577, 32.7700843914349], [-79.9367236943359, 32.770082708899], [-79.9367204505527, 32.770081906027], [-79.9367172067476, 32.7700811049583], [-79.9367115324285, 32.7700794233143], [-79.9367082896909, 32.7700786222547], [-79.9367050448077, 32.7700778220782], [-79.9366993715915, 32.7700762252156], [-79.9366961267195, 32.7700754241371], [-79.9366904524273, 32.7700739156445], [-79.9366872085878, 32.7700730298023], [-79.9366839648163, 32.7700722260276], [-79.9366807220682, 32.770071425869], [-79.9366750466853, 32.7700698316919], [-79.9366718039703, 32.7700690288279], [-79.9366685590988, 32.7700682277487], [-79.9366628858509, 32.7700666335896], [-79.9366596410015, 32.7700658307067], [-79.9366563961543, 32.7700651153016], [-79.9366507218395, 32.7700635211327], [-79.9366474780358, 32.7700627200622], [-79.936644234256, 32.7700620046661], [-79.9366385589073, 32.7700604077821], [-79.9366353161601, 32.7700596076223], [-79.9366320702569, 32.7700588913056], [-79.9366263970322, 32.7700572953413], [-79.9366231511293, 32.7700565790243], [-79.936619907315, 32.7700557788549], [-79.9366142319691, 32.7700542694477], [-79.9366109871227, 32.7700535540414], [-79.936607744409, 32.7700527511757], [-79.9366020679962, 32.7700512417587], [-79.9365988242173, 32.7700505263613], [-79.9365955793362, 32.7700497261819], [-79.9365899050584, 32.7700482167829], [-79.936586659145, 32.7700475013667], [-79.9365834142991, 32.7700467859597], [-79.9365801705185, 32.7700459830839], [-79.9365744941306, 32.77004455934], [-79.9365712503282, 32.7700437582675], [-79.9365680054715, 32.7700430437619], [-79.936562329084, 32.7700416200174], [-79.9365590852818, 32.7700408189446], [-79.9365558404363, 32.7700401035369], [-79.9365525955909, 32.770039388129], [-79.9365469192038, 32.7700379643839], [-79.9365436743586, 32.7700372489758], [-79.9365404305568, 32.7700364479025], [-79.9365347541701, 32.7700350241568], [-79.936531509325, 32.7700343087484], [-79.936528264469, 32.7700335942417], [-79.936525019624, 32.7700328788331], [-79.9365193432488, 32.770031454185], [-79.936516098404, 32.7700307387762], [-79.9365128535593, 32.7700300233673], [-79.9365096097819, 32.7700293079676], [-79.9365039312854, 32.7700279698763], [-79.9364974415963, 32.7700265390578], [-79.9364941967519, 32.7700258236484], [-79.9364885203666, 32.7700243999006], [-79.9364852744898, 32.7700237692544], [-79.9364820307129, 32.7700230538539], [-79.9364787848014, 32.7700223384349], [-79.9364731084075, 32.770021003066], [-79.9364698624962, 32.7700202876467], [-79.9364666176522, 32.7700195722366], [-79.9364633717757, 32.7700189415898], [-79.9364576953914, 32.7700175178405], [-79.9364544495042, 32.7700168880952], [-79.9364512046604, 32.7700161726847], [-79.9364479587842, 32.7700155420375], [-79.9364422813239, 32.770014206658], [-79.9364390364804, 32.7700134912471], [-79.9364357906044, 32.7700128605996], [-79.936432545761, 32.7700121451886], [-79.9364268672905, 32.7700108927682], [-79.9364236224473, 32.770010177357], [-79.9364203765385, 32.7700095494142], [-79.9364171316953, 32.7700088340028], [-79.9364114532364, 32.77000758068], [-79.9364082073498, 32.7700069509335], [-79.9364049625068, 32.7700062355217], [-79.9364017165984, 32.7700056075786], [-79.9363960381397, 32.770004354255], [-79.936392793297, 32.7700036388429], [-79.9363895474107, 32.7700030090959], [-79.9363863015024, 32.7700023811524], [-79.9363830556272, 32.7700017505034], [-79.9363773771692, 32.770000497179], [-79.9363741312502, 32.7699998701369], [-79.9363708864077, 32.7699991547242], [-79.9363676405327, 32.7699985240749], [-79.9363619620752, 32.7699972707498], [-79.9363587162003, 32.7699966401002], [-79.9363554702705, 32.7699960139593], [-79.9363522233631, 32.769995468073], [-79.9363489774775, 32.7699948383249], [-79.9363432989874, 32.7699935877042], [-79.9363400531128, 32.7699929570541], [-79.9363368071943, 32.769992330011], [-79.9363335613198, 32.7699916993607], [-79.9363303154454, 32.7699910687104], [-79.9363246359122, 32.7699899037539], [-79.9363213900269, 32.7699892740051], [-79.9363181441527, 32.7699886433545], [-79.9363148971909, 32.7699881019759], [-79.9363116513167, 32.7699874713251], [-79.936305971795, 32.7699863054661], [-79.93630272591, 32.7699856757168], [-79.9362994789686, 32.7699850450564], [-79.9362962330854, 32.7699845027848], [-79.9362905524858, 32.7699833378175], [-79.9362873076793, 32.7699827071753], [-79.9362840607619, 32.7699821621889], [-79.9362808138098, 32.7699815324298], [-79.9362775679268, 32.7699809901577], [-79.9362718873387, 32.7699798242878], [-79.9362686425324, 32.7699791936451], [-79.9362653955713, 32.7699786522652], [-79.9362621496978, 32.7699780216131], [-79.9362589027807, 32.7699774766261], [-79.9362532221821, 32.769976311657], [-79.9362499763324, 32.769975766679], [-79.9362467293934, 32.7699752234951], [-79.9362434824326, 32.7699746821147], [-79.9362402365594, 32.7699740514619], [-79.9362369896426, 32.7699735064744], [-79.9362313090791, 32.769972426277], [-79.9362280621294, 32.7699718839943], [-79.9362248162565, 32.7699712533413], [-79.9362215692959, 32.7699707119601], [-79.936218321312, 32.7699701669628], [-79.9362126418163, 32.7699690867738], [-79.9362093937995, 32.7699685444814], [-79.9362061479504, 32.7699679995022], [-79.936202901001, 32.7699674572189], [-79.9361996530174, 32.769966912221], [-79.9361939735331, 32.7699658311295], [-79.9361907255055, 32.7699652897383], [-79.9361874796567, 32.7699647447587], [-79.9361842327076, 32.7699642024749], [-79.9361809847241, 32.7699636574764], [-79.9361777388754, 32.7699631124966], [-79.9361720561802, 32.7699621197558], [-79.9361688103316, 32.7699615747756], [-79.9361655633827, 32.7699610324914], [-79.9361623153995, 32.7699604874925], [-79.9361590684742, 32.7699600308824], [-79.9361558204581, 32.7699594885886], [-79.9361501399311, 32.7699584931602], [-79.936146891937, 32.7699579490626], [-79.9361436449995, 32.769957405876], [-79.9361403981183, 32.7699569456586], [-79.9361371500915, 32.7699564042659], [-79.9361339042104, 32.7699558619901], [-79.9361282215491, 32.7699548665421], [-79.9361249735898, 32.7699544072167], [-79.9361217277198, 32.7699538640388], [-79.9361184786604, 32.7699534074091], [-79.9361152328124, 32.7699528624275], [-79.9361119848204, 32.769952405807], [-79.9361063032269, 32.7699514103672], [-79.936103055235, 32.7699509537464], [-79.9360998072525, 32.7699504087459], [-79.9360965603279, 32.7699499521342], [-79.9360933123236, 32.7699494089369], [-79.9360900643757, 32.7699489487089], [-79.936084381695, 32.7699480425402], [-79.9360811347911, 32.7699474966467], [-79.9360778878667, 32.7699470400345], [-79.9360746388187, 32.769946582502], [-79.9360713908271, 32.7699461258803], [-79.9360681449797, 32.7699455808975], [-79.936062461243, 32.7699446738168], [-79.9360592143628, 32.7699442135972], [-79.936055965304, 32.7699437569658], [-79.9360527173236, 32.769943299442], [-79.9360494703996, 32.769942842829], [-79.9360462213739, 32.7699423834923], [-79.9360429733935, 32.7699419259681], [-79.9360372907247, 32.7699410188955], [-79.9360340427335, 32.769940562273], [-79.9360307958536, 32.7699401020525], [-79.9360275467951, 32.7699396454205], [-79.936024298815, 32.7699391878958], [-79.9360210508239, 32.7699387312729], [-79.9360178028769, 32.7699382710428], [-79.9360121191646, 32.7699374496343], [-79.9360088711847, 32.7699369921092], [-79.9360056231937, 32.7699365354859], [-79.9360023752468, 32.7699360752554], [-79.9359991272559, 32.7699356186319], [-79.9359958793105, 32.7699352458792], [-79.935991006801, 32.7699345162983], [-79.9359869476079, 32.7699339678457], [-79.9359836985938, 32.7699335076055], [-79.9359804506142, 32.7699330500797], [-79.9359772026469, 32.76993267913], [-79.9359739536, 32.7699322215948], [-79.9359707045765, 32.7699318497339], [-79.935965021942, 32.7699309399528], [-79.9359617729185, 32.7699305680916], [-79.9359585249281, 32.769930111467], [-79.9359552759157, 32.769929738704], [-79.9359520279253, 32.7699292820792], [-79.935948778902, 32.7699289102177], [-79.9359455298787, 32.7699285383562], [-79.9359422819324, 32.7699280781242], [-79.9359365982215, 32.769927256712], [-79.9359333491983, 32.7699268848501], [-79.9359301001751, 32.7699265129882], [-79.935926851152, 32.7699261411262], [-79.9359236031729, 32.7699256835989], [-79.9359203541388, 32.7699253126384], [-79.9359171051267, 32.7699249398743], [-79.9359114214163, 32.7699241184611], [-79.9359081723933, 32.7699237465986], [-79.9359049233704, 32.7699233747359], [-79.9359016743475, 32.7699230028732], [-79.9358984253246, 32.7699226310104], [-79.9358951763017, 32.7699222591475], [-79.9358919283119, 32.7699218025211], [-79.9358886793221, 32.7699214279528], [-79.9358829945901, 32.7699206903999], [-79.9358797455234, 32.7699203221435], [-79.9358764965447, 32.7699199466732], [-79.935873247478, 32.7699195784167], [-79.9358699984994, 32.7699192029462], [-79.9358667494328, 32.7699188346895], [-79.9358634993771, 32.7699185475892], [-79.9358602503546, 32.7699181757254], [-79.935854565612, 32.7699174390729], [-79.9358513165895, 32.7699170672088], [-79.935848067567, 32.7699166953447], [-79.9358448175006, 32.7699164091456], [-79.9358415684782, 32.7699160372813], [-79.9358383194558, 32.7699156654169], [-79.9358350704334, 32.7699152935524], [-79.935831820378, 32.7699150064513], [-79.9358261356358, 32.7699142697975], [-79.9358228855695, 32.7699139835978], [-79.9358196365143, 32.7699136144381], [-79.9358163875251, 32.7699132398679], [-79.9358131374368, 32.7699129554715], [-79.9358098884147, 32.7699125836063], [-79.9358066383485, 32.7699122974062], [-79.9358033893264, 32.7699119255409], [-79.9357977035515, 32.7699112736492], [-79.9357944534964, 32.7699109865471], [-79.9357912044304, 32.7699106182884], [-79.9357879543753, 32.7699103311861], [-79.9357847053534, 32.7699099593202], [-79.9357814552873, 32.7699096731195], [-79.9357782062764, 32.7699093003517], [-79.9357749562104, 32.7699090141508], [-79.9357717061115, 32.7699087306551], [-79.935766020337, 32.7699080787618], [-79.9357627702821, 32.7699077916589], [-79.9357595202162, 32.7699075054576], [-79.9357562711945, 32.7699071335909], [-79.9357530211396, 32.7699068464877], [-79.9357497710408, 32.7699065629913], [-79.935746520975, 32.7699062767897], [-79.9357432709202, 32.7699059896862], [-79.9357400208313, 32.7699056178098], [-79.9357343350474, 32.7699050542949], [-79.9357310839144, 32.7699047680835], [-79.935727834927, 32.7699044809889], [-79.9357245848724, 32.7699041938849], [-79.9357188969772, 32.769903716025], [-79.9357148346535, 32.769903337081], [-79.9357115845549, 32.7699030535836], [-79.9357083345003, 32.7699027664792], [-79.9357026476826, 32.7699022002482], [-79.9356993976281, 32.7699019131435], [-79.9356961475296, 32.7699016296458], [-79.9356928964309, 32.7699014282061], [-79.9356896463325, 32.7699011447081], [-79.9356863952107, 32.7699008575938], [-79.9356831462126, 32.7699005713997], [-79.9356798961582, 32.7699002842945], [-79.9356766439593, 32.7699000855503], [-79.9356709582092, 32.7698995193272], [-79.9356677060104, 32.7698993205827], [-79.9356644570124, 32.7698990343881], [-79.9356612069582, 32.7698987472825], [-79.9356579547593, 32.7698985485378], [-79.9356547057724, 32.7698982614412], [-79.9356514557072, 32.769897975237], [-79.9356482035084, 32.7698977764921], [-79.9356449545216, 32.7698974893953], [-79.93563926556, 32.7698970115225], [-79.9356360155289, 32.7698968100905], [-79.9356327643965, 32.7698965238766], [-79.9356295132651, 32.7698963251404], [-79.9356262642784, 32.769896038043], [-79.9356230120797, 32.7698958392974], [-79.9356197620487, 32.7698956378651], [-79.9356165119507, 32.7698953543652], [-79.9356132597961, 32.7698951520123], [-79.9356100107985, 32.7698948658163], [-79.9356043208039, 32.7698944727053], [-79.93560107074, 32.7698942739776], [-79.9355978206861, 32.7698939868703], [-79.9355945684766, 32.7698937890257], [-79.9355913184458, 32.7698935875926], [-79.9355880662913, 32.7698933852391], [-79.9355848161935, 32.7698931017383], [-79.9355815661627, 32.769892900305], [-79.9355783139642, 32.7698927015581], [-79.9355750628661, 32.7698925001153], [-79.9355693739392, 32.769892107012], [-79.9355661228081, 32.7698919082741], [-79.9355628727774, 32.7698917068402], [-79.9355596205791, 32.769891508093], [-79.935556369481, 32.7698913066497], [-79.9355531194174, 32.7698911079207], [-79.9355498672521, 32.769890906468], [-79.9355466171884, 32.7698907077389], [-79.9355433660904, 32.7698905062953], [-79.9355401138922, 32.7698903075474], [-79.9355344260328, 32.7698899144517], [-79.9355311728342, 32.7698897977619], [-79.9355172590834, 32.7700303826501], [-79.9354911983648, 32.7702997961633], [-79.9354576990195, 32.7706456800081], [-79.9354576644305, 32.7706485168776], [-79.935457628852, 32.7706514349036], [-79.9354584086499, 32.7706541904807], [-79.9354591884367, 32.7706569469596], [-79.9354607825884, 32.7706596239496], [-79.9354623799185, 32.7706621278151], [-79.9354639761366, 32.7706645478003], [-79.9354663857089, 32.7706670587345], [-79.9354696117023, 32.7706693215545], [-79.935472842996, 32.7706712372145], [-79.9354760762891, 32.770672813802], [-79.9354793159269, 32.7706739575643], [-79.9354825607871, 32.7706746730007], [-79.9354858077144, 32.7706752189101], [-79.9354890599527, 32.7706754167576], [-79.9354947510074, 32.7706755519582], [-79.9354980042792, 32.7706756650421], [-79.9355012553724, 32.7706757817143], [-79.9355045086104, 32.7706758100253], [-79.9355077618822, 32.7706759231089]]], "type": "Polygon"}, "id": "6", "properties": {"OBJECTID": 439, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 23537.814453125, "Shape__Length": 672.789448662188, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9354085779045, 32.7711226137183, -79.934573944016, 32.7718935255387], "geometry": {"coordinates": [[[-79.9353510223088, 32.7711226137183], [-79.9351987294295, 32.771137954025], [-79.9352199781714, 32.7712631206005], [-79.9352004355515, 32.7712648416337], [-79.9350017477996, 32.7712826122954], [-79.934772931723, 32.7713031242823], [-79.9347855761911, 32.7714667874681], [-79.934716400265, 32.7714697914871], [-79.9347163666968, 32.7714725426915], [-79.934573944016, 32.7714787739822], [-79.9345770168985, 32.7718935255387], [-79.9347260631596, 32.7718778159235], [-79.9349655126252, 32.7718525835016], [-79.9350494019651, 32.7718436931012], [-79.9352627904378, 32.7718211551527], [-79.9354085779045, 32.7718057608435], [-79.9353801087212, 32.7714722221522], [-79.9353736759682, 32.771399407976], [-79.9353510223088, 32.7711226137183]]], "type": "Polygon"}, "id": "7", "properties": {"OBJECTID": 443, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6548.34375, "Shape__Length": 368.399238456506, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9303218883934, 32.770286917505, -79.9295142373501, 32.7718604821717], "geometry": {"coordinates": [[[-79.9295149647867, 32.7706442677767], [-79.9298413778924, 32.7706407776897], [-79.9298430442875, 32.7706690729042], [-79.9298645867027, 32.770671405933], [-79.92987577448, 32.7707706163495], [-79.9298912622357, 32.7709079524728], [-79.9298965163779, 32.7709545358168], [-79.9299035772076, 32.7710425309859], [-79.9299105694903, 32.7711296751255], [-79.9299139883285, 32.7711722824578], [-79.9299247966958, 32.7713069884786], [-79.9296620598275, 32.7713155632107], [-79.9297014182735, 32.7716801379453], [-79.9299012985731, 32.7716738441187], [-79.9299139470021, 32.7718604821717], [-79.9299516387477, 32.7718592950064], [-79.9301365169037, 32.7718534692772], [-79.9303218883934, 32.7718476277426], [-79.9302986093881, 32.7716613323634], [-79.9301761587896, 32.7706813604322], [-79.9301381721333, 32.7703773687274], [-79.9298231973923, 32.7703320288246], [-79.9295142373501, 32.770286917505], [-79.9295149647867, 32.7706442677767]]], "type": "Polygon"}, "id": "8", "properties": {"OBJECTID": 444, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10318.4609375, "Shape__Length": 610.631923827624, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9353510223088, 32.7707396318675, -79.9337980349286, 32.7719682769666], "geometry": {"coordinates": [[[-79.9353510223088, 32.7711226137183], [-79.9353452876938, 32.7710592559408], [-79.9353254098669, 32.7708216552149], [-79.9350002647105, 32.7708041347921], [-79.9348417539647, 32.7707957130931], [-79.9346952700799, 32.7708016494224], [-79.9346929998946, 32.7707877161515], [-79.9344759654822, 32.7707760345875], [-79.934238607806, 32.7707633152187], [-79.9341239939921, 32.7707571616802], [-79.9337980349286, 32.7707396318675], [-79.9338063271384, 32.7709931078901], [-79.9338105582107, 32.7711128894425], [-79.9338166418904, 32.7712807900915], [-79.933820082755, 32.7713986745146], [-79.9338207922209, 32.7714071858992], [-79.9338270175161, 32.7715634929012], [-79.9338288648841, 32.7716120412254], [-79.93383579818, 32.7717103718542], [-79.9338415317416, 32.771773817185], [-79.9338423020734, 32.771777257183], [-79.9338480702535, 32.7718377808719], [-79.9338692521537, 32.7719682769666], [-79.9344116811311, 32.7719110680901], [-79.9344621793747, 32.7719056667984], [-79.9345770168985, 32.7718935255387], [-79.934573944016, 32.7714787739822], [-79.9347163666968, 32.7714725426915], [-79.934716400265, 32.7714697914871], [-79.9347855761911, 32.7714667874681], [-79.934772931723, 32.7713031242823], [-79.9350017477996, 32.7712826122954], [-79.9352004355515, 32.7712648416337], [-79.9352199781714, 32.7712631206005], [-79.9351987294295, 32.771137954025], [-79.9353510223088, 32.7711226137183]]], "type": "Polygon"}, "id": "9", "properties": {"OBJECTID": 445, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 18686.96875, "Shape__Length": 638.709922969002, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9303357671313, 32.7706407776897, -79.9295149647867, 32.7719966153526], "geometry": {"coordinates": [[[-79.9295149647867, 32.7706442677767], [-79.9295163705188, 32.7713203170948], [-79.9295171256933, 32.7716859410832], [-79.9295175193337, 32.7718729724581], [-79.9295177742886, 32.7719966153526], [-79.9301441450925, 32.7719663609443], [-79.9303357671313, 32.7719570965791], [-79.9303218883934, 32.7718476277426], [-79.9301365169037, 32.7718534692772], [-79.9299516387477, 32.7718592950064], [-79.9299139470021, 32.7718604821717], [-79.9299012985731, 32.7716738441187], [-79.9297014182735, 32.7716801379453], [-79.9296620598275, 32.7713155632107], [-79.9299247966958, 32.7713069884786], [-79.9299139883285, 32.7711722824578], [-79.9299105694903, 32.7711296751255], [-79.9299035772076, 32.7710425309859], [-79.9298965163779, 32.7709545358168], [-79.9298912622357, 32.7709079524728], [-79.92987577448, 32.7707706163495], [-79.9298645867027, 32.770671405933], [-79.9298430442875, 32.7706690729042], [-79.9298413778924, 32.7706407776897], [-79.9295149647867, 32.7706442677767]]], "type": "Polygon"}, "id": "10", "properties": {"OBJECTID": 446, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7115.9921875, "Shape__Length": 581.943929875154, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9294364296867, 32.7709718447945, -79.9283420735107, 32.7720492366134], "geometry": {"coordinates": [[[-79.9294339081497, 32.7709877833254], [-79.9291037136108, 32.7709933828931], [-79.9291025269311, 32.7709788223006], [-79.9290456649718, 32.7709718447945], [-79.9290412765574, 32.7713205594438], [-79.9290136282488, 32.7713225692568], [-79.9290137004027, 32.7713665505724], [-79.9290139039123, 32.7714914573894], [-79.928856238279, 32.7714774304349], [-79.9288565747442, 32.7716436000736], [-79.9288567563965, 32.7717375548282], [-79.9288569088166, 32.7718073545803], [-79.9287746730411, 32.7718061817235], [-79.9286543773835, 32.7718024443383], [-79.9286570971053, 32.7718718787887], [-79.9285867115104, 32.7718722453136], [-79.9285869264745, 32.7719024839197], [-79.928514527424, 32.7719028661357], [-79.9283420735107, 32.7719064958779], [-79.9283526869886, 32.7720492366134], [-79.9294364296867, 32.7719916973041], [-79.9294339081497, 32.7709877833254]]], "type": "Polygon"}, "id": "11", "properties": {"OBJECTID": 447, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8707.732421875, "Shape__Length": 521.622170564637, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9294342066039, 32.7701647112186, -79.9278982469008, 32.7720733611356], "geometry": {"coordinates": [[[-79.9294339081497, 32.7709877833254], [-79.9294342066039, 32.7709491657634], [-79.9294328658323, 32.7702736166517], [-79.9286921596609, 32.7701647112186], [-79.9286320986589, 32.7703304492513], [-79.9284971071656, 32.7706189821857], [-79.9283888377104, 32.7708742648627], [-79.9282889391636, 32.7711570690454], [-79.9278982469008, 32.7720733611356], [-79.9283526869886, 32.7720492366134], [-79.9283420735107, 32.7719064958779], [-79.928514527424, 32.7719028661357], [-79.9285869264745, 32.7719024839197], [-79.9285867115104, 32.7718722453136], [-79.9286570971053, 32.7718718787887], [-79.9286543773835, 32.7718024443383], [-79.9287746730411, 32.7718061817235], [-79.9288569088166, 32.7718073545803], [-79.9288567563965, 32.7717375548282], [-79.9288565747442, 32.7716436000736], [-79.928856238279, 32.7714774304349], [-79.9290139039123, 32.7714914573894], [-79.9290137004027, 32.7713665505724], [-79.9290136282488, 32.7713225692568], [-79.9290412765574, 32.7713205594438], [-79.9290456649718, 32.7709718447945], [-79.9291025269311, 32.7709788223006], [-79.9291037136108, 32.7709933828931], [-79.9294339081497, 32.7709877833254]]], "type": "Polygon"}, "id": "12", "properties": {"OBJECTID": 448, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21762.1015625, "Shape__Length": 764.569488632677, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9286290781283, 32.7721381421594, -79.9281869854488, 32.7724912764187], "geometry": {"coordinates": [[[-79.9281869854488, 32.7721572216156], [-79.9282182487303, 32.7724775423757], [-79.9283107703077, 32.7724880134519], [-79.9283329165832, 32.7724912764187], [-79.9284151450648, 32.7724753534159], [-79.9284110669369, 32.7724386824453], [-79.9286290781283, 32.7724340267157], [-79.9286094456372, 32.7721381421594], [-79.9284209876522, 32.7721466541616], [-79.9281869854488, 32.7721572216156]]], "type": "Polygon"}, "id": "13", "properties": {"OBJECTID": 451, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1922.353515625, "Shape__Length": 180.321698937225, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9415863219589, 32.7715132005851, -79.9396556919406, 32.7728246262917], "geometry": {"coordinates": [[[-79.9398298189259, 32.7718423565063], [-79.9396556919406, 32.7721149515651], [-79.939827177806, 32.7721938360368], [-79.9399986629576, 32.7722727166526], [-79.9401701494481, 32.7723515122653], [-79.9403416352083, 32.7724303933034], [-79.9405131233853, 32.7725091884459], [-79.940856097494, 32.7726668636584], [-79.9410275855606, 32.7727457437469], [-79.9411990728371, 32.7728246262917], [-79.9413765362143, 32.7725449244117], [-79.9415863219589, 32.7722155980889], [-79.9414140117353, 32.7721374845403], [-79.9412425162539, 32.7720593741917], [-79.9410702066418, 32.7719813485398], [-79.9408987106745, 32.7719032404065], [-79.9407264027498, 32.7718251259013], [-79.9405549074139, 32.7717471038635], [-79.9403259711066, 32.7716434147104], [-79.94003960678, 32.7715132005851], [-79.9398298189259, 32.7718423565063]]], "type": "Polygon"}, "id": "14", "properties": {"OBJECTID": 452, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 17793.966796875, "Shape__Length": 573.345364840855, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9288975921789, 32.7725508048104, -79.9286729939385, 32.7727329039897], "geometry": {"coordinates": [[[-79.9286729939385, 32.7725513766399], [-79.9286738346409, 32.7726764252358], [-79.9288580143005, 32.7727329039897], [-79.9288769067871, 32.7726860657786], [-79.9288975921789, 32.7726814635729], [-79.9288933433722, 32.7725583628633], [-79.9286962971343, 32.7725667522993], [-79.9286957434502, 32.7725508048104], [-79.9286729939385, 32.7725513766399]]], "type": "Polygon"}, "id": "15", "properties": {"OBJECTID": 453, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 464.521484375, "Shape__Length": 90.2230787350476, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9286368336484, 32.7721572216156, -79.927703208614, 32.7727298225228], "geometry": {"coordinates": [[[-79.9281869854488, 32.7721572216156], [-79.9281149426881, 32.7721604754561], [-79.9278590654751, 32.7721720301986], [-79.9277705691568, 32.7723904662807], [-79.927703208614, 32.7725567324489], [-79.9280337877017, 32.7726689764582], [-79.9281917847593, 32.7727298225228], [-79.9282849418458, 32.7725608817999], [-79.9283141757114, 32.772560093596], [-79.9285333126534, 32.77255375876], [-79.9286368336484, 32.7725509147452], [-79.9286313009941, 32.7724674862276], [-79.9284151450648, 32.7724753534159], [-79.9283329165832, 32.7724912764187], [-79.9283107703077, 32.7724880134519], [-79.9282182487303, 32.7724775423757], [-79.9281869854488, 32.7721572216156]]], "type": "Polygon"}, "id": "16", "properties": {"OBJECTID": 454, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3657.314453125, "Shape__Length": 313.22944097041, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9294448344609, 32.772100563615, -79.9281917847593, 32.7730784034649], "geometry": {"coordinates": [[[-79.9281917847593, 32.7727298225228], [-79.928356461418, 32.7727860436697], [-79.9287770190632, 32.7729336691875], [-79.9287920729068, 32.7729389531993], [-79.9289993140288, 32.7730116953669], [-79.9291836881684, 32.7730764135905], [-79.9291890719208, 32.7730778558577], [-79.929192977716, 32.7730783869592], [-79.9291991902389, 32.7730784034649], [-79.9292042003282, 32.7730776735471], [-79.9292090155811, 32.7730762926024], [-79.9292144639503, 32.7730737718691], [-79.9292200291406, 32.7730697334678], [-79.9292674983355, 32.7730265145954], [-79.9293056113647, 32.772952194295], [-79.929389572492, 32.7727884660237], [-79.9294448344609, 32.772680701518], [-79.9294411131645, 32.772100563615], [-79.9286581802378, 32.7721359302283], [-79.9286889449274, 32.7725056372847], [-79.9288913503799, 32.7725006757682], [-79.9288933433722, 32.7725583628633], [-79.9288975921789, 32.7726814635729], [-79.9288769067871, 32.7726860657786], [-79.9288580143005, 32.7727329039897], [-79.9286738346409, 32.7726764252358], [-79.9286729939385, 32.7725513766399], [-79.9286368336484, 32.7725509147452], [-79.9285333126534, 32.77255375876], [-79.9283141757114, 32.772560093596], [-79.9282849418458, 32.7725608817999], [-79.9281917847593, 32.7727298225228]]], "type": "Polygon"}, "id": "17", "properties": {"OBJECTID": 458, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10659.37109375, "Shape__Length": 556.449450801478, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9303616316844, 32.7720569628306, -79.9293617043628, 32.7733335861361], "geometry": {"coordinates": [[[-79.9303616316844, 32.7721582055581], [-79.9303486320347, 32.7720569628306], [-79.9295169005386, 32.7720971316368], [-79.9295190792802, 32.7722484434325], [-79.92952758908, 32.7728387391256], [-79.9294627333512, 32.7729881458128], [-79.9294407917485, 32.7729892452154], [-79.9294232093593, 32.7730671568826], [-79.9293914911298, 32.7730693530181], [-79.9293617043628, 32.7731449871459], [-79.9300583764521, 32.7733335861361], [-79.9300524370135, 32.7731818446391], [-79.9300492120519, 32.7730994509411], [-79.9300127634497, 32.7731000231418], [-79.9300090854473, 32.773006780013], [-79.9300072777534, 32.7729609140095], [-79.9299586798987, 32.7729633441187], [-79.9299463757349, 32.7728152255301], [-79.92998208173, 32.7728132210534], [-79.9299699773905, 32.7726486222825], [-79.9299899036721, 32.7726475096665], [-79.9299587411611, 32.7725487206275], [-79.9299365694592, 32.7725499651043], [-79.929921944498, 32.7724519438892], [-79.9299182522304, 32.7724271995093], [-79.9299076747504, 32.7723562976063], [-79.929771055799, 32.7723629086729], [-79.9297671978126, 32.7723102357164], [-79.9297608970771, 32.7723105404224], [-79.9297593197186, 32.772289001626], [-79.9298769673106, 32.7722779643409], [-79.9298775258834, 32.772286214704], [-79.9299977226852, 32.772280394173], [-79.9299906593392, 32.7721761262682], [-79.9303616316844, 32.7721582055581]]], "type": "Polygon"}, "id": "18", "properties": {"OBJECTID": 459, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8647.796875, "Shape__Length": 591.089276625435, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9305273539771, 32.7721582055581, -79.9297593197186, 32.7734488104224], "geometry": {"coordinates": [[[-79.9300583764521, 32.7733335861361], [-79.9302513608485, 32.7733810023959], [-79.9305273539771, 32.7734488104224], [-79.9303616316844, 32.7721582055581], [-79.9299906593392, 32.7721761262682], [-79.9299977226852, 32.772280394173], [-79.9298775258834, 32.772286214704], [-79.9298769673106, 32.7722779643409], [-79.9297593197186, 32.772289001626], [-79.9297608970771, 32.7723105404224], [-79.9297671978126, 32.7723102357164], [-79.929771055799, 32.7723629086729], [-79.9299076747504, 32.7723562976063], [-79.9299182522304, 32.7724271995093], [-79.929921944498, 32.7724519438892], [-79.9299365694592, 32.7725499651043], [-79.9299587411611, 32.7725487206275], [-79.9299899036721, 32.7726475096665], [-79.9299699773905, 32.7726486222825], [-79.92998208173, 32.7728132210534], [-79.9299463757349, 32.7728152255301], [-79.9299586798987, 32.7729633441187], [-79.9300072777534, 32.7729609140095], [-79.9300090854473, 32.773006780013], [-79.9300127634497, 32.7731000231418], [-79.9300492120519, 32.7730994509411], [-79.9300524370135, 32.7731818446391], [-79.9300583764521, 32.7733335861361]]], "type": "Polygon"}, "id": "19", "properties": {"OBJECTID": 460, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8393.7421875, "Shape__Length": 483.358856369235, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9288768243236, 32.772753712703, -79.9280559958445, 32.7735033916584], "geometry": {"coordinates": [[[-79.9282084714026, 32.7731702662805], [-79.9282056779772, 32.7731407743418], [-79.9283278045061, 32.7731299518315], [-79.9283290955126, 32.7731520066979], [-79.9284643643532, 32.7731421811826], [-79.9284577822955, 32.773286908646], [-79.9284624588045, 32.7733362349011], [-79.9284782918858, 32.7735033916584], [-79.9285722523754, 32.7734961261149], [-79.9288768243236, 32.7734725770697], [-79.9288341987429, 32.7730216975088], [-79.9280559958445, 32.772753712703], [-79.9280748310269, 32.7731379585176], [-79.9281429223192, 32.7731333515863], [-79.9281468096763, 32.7731744254607], [-79.9282084714026, 32.7731702662805]]], "type": "Polygon"}, "id": "20", "properties": {"OBJECTID": 461, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4917.2109375, "Shape__Length": 352.459145874291, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9282585208273, 32.7726244032178, -79.9274245923654, 32.7735848123659], "geometry": {"coordinates": [[[-79.9280559958445, 32.772753712703], [-79.9276728330433, 32.7726244032178], [-79.9274642423464, 32.7731368315703], [-79.9274536955662, 32.7731650792684], [-79.9274471267779, 32.7732045770677], [-79.9274444936143, 32.7732654648327], [-79.9274245923654, 32.7735848123659], [-79.9279025124606, 32.7735464199593], [-79.9282585208273, 32.7735192740016], [-79.9282456730588, 32.7733765353034], [-79.9282084714026, 32.7731702662805], [-79.9281468096763, 32.7731744254607], [-79.9281429223192, 32.7731333515863], [-79.9280748310269, 32.7731379585176], [-79.9280559958445, 32.772753712703]]], "type": "Polygon"}, "id": "21", "properties": {"OBJECTID": 462, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8206.2421875, "Shape__Length": 387.941892346874, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9285900599154, 32.7735381756008, -79.9280948978353, 32.7738294683831], "geometry": {"coordinates": [[[-79.9280948978353, 32.7735523220025], [-79.9281503344836, 32.7736931802155], [-79.9282039731867, 32.7738294683831], [-79.9282653522962, 32.7738112371628], [-79.9282637753022, 32.7738003057293], [-79.9283156855625, 32.7737965273042], [-79.9283046500762, 32.773720069532], [-79.9284311376931, 32.7737108443911], [-79.9285024904423, 32.7737056399521], [-79.9285900599154, 32.7736992599275], [-79.9285668547421, 32.7735381756008], [-79.9284790434505, 32.773543049228], [-79.928407508499, 32.7735470192473], [-79.9282709237031, 32.7735545984287], [-79.9282701451377, 32.7735491499341], [-79.9282374760896, 32.7735413036236], [-79.9280948978353, 32.7735523220025]]], "type": "Polygon"}, "id": "22", "properties": {"OBJECTID": 464, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1294.126953125, "Shape__Length": 170.186428325983, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9282866571107, 32.7735523220025, -79.9273982299858, 32.7740273282266], "geometry": {"coordinates": [[[-79.9280948978353, 32.7735523220025], [-79.9274234424455, 32.7736042088761], [-79.9274148446134, 32.773750038711], [-79.9273982299858, 32.7740273282266], [-79.9282089159951, 32.7739646580109], [-79.9282866571107, 32.773958647514], [-79.9282755893092, 32.7738822138042], [-79.9282653522962, 32.7738112371628], [-79.9282039731867, 32.7738294683831], [-79.9281503344836, 32.7736931802155], [-79.9280948978353, 32.7735523220025]]], "type": "Polygon"}, "id": "23", "properties": {"OBJECTID": 468, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4845.3671875, "Shape__Length": 296.02260589195, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9306289302816, 32.7733749020641, -79.9298011159321, 32.7743516283178], "geometry": {"coordinates": [[[-79.9298573564226, 32.7733749020641], [-79.9299110692854, 32.7738372584848], [-79.9298011159321, 32.7738487518287], [-79.9298555295235, 32.774110066526], [-79.9298620220796, 32.7741510801649], [-79.9298480055453, 32.7741663509682], [-79.9298655798532, 32.7742776378514], [-79.9298772640287, 32.7743516283178], [-79.9300074341397, 32.7743371787613], [-79.9301882626108, 32.7743171135814], [-79.9306289302816, 32.7742679667007], [-79.9306178947524, 32.7741727789394], [-79.9306044307782, 32.7740766266287], [-79.9305985269059, 32.7740274394372], [-79.9305709088637, 32.7738249885474], [-79.9305531920186, 32.7736776027831], [-79.9305524302646, 32.773673384554], [-79.9305344893954, 32.7735442923563], [-79.9303373928367, 32.7734981590714], [-79.9302887263667, 32.7734868240069], [-79.9302173559686, 32.7734696223386], [-79.9301492389206, 32.7734523634076], [-79.9299935491631, 32.7734126033306], [-79.9298573564226, 32.7733749020641]]], "type": "Polygon"}, "id": "24", "properties": {"OBJECTID": 470, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8950.740234375, "Shape__Length": 401.188980005903, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9299110692854, 32.7731561641669, -79.9290086037337, 32.7746049607948], "geometry": {"coordinates": [[[-79.9298573564226, 32.7733749020641], [-79.9290935936441, 32.7731561641669], [-79.9290086037337, 32.7733130085536], [-79.929062632942, 32.7737896730618], [-79.9291070677896, 32.7743416442893], [-79.9291193399385, 32.7744870527028], [-79.9291270037232, 32.7746049607948], [-79.9292828587462, 32.7745868210827], [-79.9294734733028, 32.7745646953394], [-79.9295476014535, 32.7745560668573], [-79.9296380217633, 32.7745455192922], [-79.9297602120219, 32.7745312968756], [-79.9298237757583, 32.7745239213364], [-79.9298090973024, 32.7744312925943], [-79.9298876575187, 32.774422143544], [-79.9298808343156, 32.7743789274372], [-79.9298772640287, 32.7743516283178], [-79.9298655798532, 32.7742776378514], [-79.9298480055453, 32.7741663509682], [-79.9298620220796, 32.7741510801649], [-79.9298555295235, 32.774110066526], [-79.9298011159321, 32.7738487518287], [-79.9299110692854, 32.7738372584848], [-79.9298573564226, 32.7733749020641]]], "type": "Polygon"}, "id": "25", "properties": {"OBJECTID": 471, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15158.720703125, "Shape__Length": 534.861026737078, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9289703823179, 32.7735207198972, -79.9273592680718, 32.7746513208809], "geometry": {"coordinates": [[[-79.9273982299858, 32.7740273282266], [-79.9273969261241, 32.7740490879999], [-79.9273922858913, 32.7741267557559], [-79.9273873045354, 32.7742099451644], [-79.9283069934803, 32.7741388680648], [-79.9283097539823, 32.7741552199761], [-79.9273863189184, 32.7742265672673], [-79.9273592680718, 32.7746513208809], [-79.9277517785258, 32.7746079495455], [-79.9278379958394, 32.7745952733077], [-79.9279309932976, 32.7745816003812], [-79.9281234387633, 32.7745533179181], [-79.9283158554622, 32.7745250204723], [-79.9284862995994, 32.7744999545291], [-79.9285568699559, 32.7744895765849], [-79.9287378091149, 32.77447115946], [-79.9289703823179, 32.7744474855409], [-79.9288813746899, 32.7735207198972], [-79.9285668547421, 32.7735381756008], [-79.9285900599154, 32.7736992599275], [-79.9285024904423, 32.7737056399521], [-79.9284311376931, 32.7737108443911], [-79.9283046500762, 32.773720069532], [-79.9283156855625, 32.7737965273042], [-79.9282637753022, 32.7738003057293], [-79.9282653522962, 32.7738112371628], [-79.9282755893092, 32.7738822138042], [-79.9282866571107, 32.773958647514], [-79.9282089159951, 32.7739646580109], [-79.9273982299858, 32.7740273282266]]], "type": "Polygon"}, "id": "26", "properties": {"OBJECTID": 472, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16046.1953125, "Shape__Length": 818.163337741542, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9306862767532, 32.7742953141067, -79.9291270037232, 32.7748759231592], "geometry": {"coordinates": [[[-79.9299211649514, 32.7744112701381], [-79.9299211226986, 32.7744118433356], [-79.9299151093179, 32.77437510408], [-79.9298808343156, 32.7743789274372], [-79.9298876575187, 32.774422143544], [-79.9298090973024, 32.7744312925943], [-79.9298237757583, 32.7745239213364], [-79.9297602120219, 32.7745312968756], [-79.9296380217633, 32.7745455192922], [-79.9295476014535, 32.7745560668573], [-79.9294734733028, 32.7745646953394], [-79.9292828587462, 32.7745868210827], [-79.9291270037232, 32.7746049607948], [-79.9291536470428, 32.7748759231592], [-79.929280303436, 32.7748615076392], [-79.9292908959366, 32.7748600528043], [-79.929430217523, 32.7748417726949], [-79.9294456911228, 32.7748402775952], [-79.9295197973973, 32.7748334526066], [-79.929580895371, 32.7748260835704], [-79.9296713201573, 32.7748151933198], [-79.9297104219393, 32.7748105509983], [-79.9298024733833, 32.7747997623613], [-79.9298961515151, 32.7747888995053], [-79.9299360666096, 32.7747842651285], [-79.9299735374142, 32.7747799556626], [-79.9300533675494, 32.7747706895506], [-79.9301087572742, 32.7747644724703], [-79.9302276859219, 32.7747509109618], [-79.93034416821, 32.7747377536129], [-79.9303523132241, 32.7747368824164], [-79.9304606472594, 32.7747248576573], [-79.9305380298738, 32.7747161722565], [-79.9305795715943, 32.7747115518912], [-79.9306862767532, 32.774699685845], [-79.9306674116734, 32.7745796048294], [-79.9306481709558, 32.7744238718906], [-79.9306326624674, 32.7742953141067], [-79.9301854773448, 32.774345179582], [-79.9300776913065, 32.774357034832], [-79.9300744662812, 32.7743573935119], [-79.9300457475086, 32.7743883142522], [-79.930003781589, 32.7743929776199], [-79.9300002126731, 32.7743656505595], [-79.9299659238464, 32.7743694702122], [-79.9299611868024, 32.7743698652639], [-79.9299571905724, 32.7743705238187], [-79.9299517408716, 32.7743719290043], [-79.9299487304839, 32.7743729785604], [-79.9299443934732, 32.7743748768625], [-79.9299416415668, 32.7743763498365], [-79.929938381809, 32.7743784099718], [-79.9299359342197, 32.7743802246977], [-79.9299330922591, 32.7743826870988], [-79.9299305136667, 32.7743853484036], [-79.9299282157856, 32.7743881871199], [-79.9299258550526, 32.7743917990609], [-79.9299245325544, 32.7743943144342], [-79.92992341949, 32.774396900179], [-79.9299223316627, 32.7744002139254], [-79.9299213831891, 32.774404961005], [-79.929921123221, 32.7744086652732], [-79.9299211649514, 32.7744112701381]]], "type": "Polygon"}, "id": "27", "properties": {"OBJECTID": 473, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7746.580078125, "Shape__Length": 464.534924471935, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9290087494526, 32.7744813954557, -79.9273219772148, 32.7750858264478], "geometry": {"coordinates": [[[-79.9274885532068, 32.7750103469275], [-79.927328574874, 32.7750282687426], [-79.9273219772148, 32.7750858264478], [-79.928209377007, 32.7749848433639], [-79.9282867282312, 32.7749761446785], [-79.9284189789147, 32.7749612713257], [-79.9285027835175, 32.7749518462419], [-79.9286027884384, 32.7749405996952], [-79.928705915322, 32.7749283460028], [-79.9287833099818, 32.7749199269537], [-79.9290087494526, 32.7748925768266], [-79.9290021689907, 32.7748216863687], [-79.928982319002, 32.7746078660084], [-79.9289820232801, 32.7746043002683], [-79.9289742286954, 32.7745103843461], [-79.928972340439, 32.7744813954557], [-79.9285476829828, 32.7745169849577], [-79.9285503133212, 32.7745333357237], [-79.9275810910433, 32.7746712149832], [-79.9275803958084, 32.7746668936061], [-79.9273569399302, 32.7746845060447], [-79.9273469130575, 32.7748271624303], [-79.9273435340873, 32.7748752376027], [-79.9276885620126, 32.7748354353014], [-79.9276879688314, 32.7748439244889], [-79.9275023415033, 32.7748679706101], [-79.9275017524063, 32.7748762127298], [-79.9273427782934, 32.7748864462003], [-79.927337573372, 32.7749495948716], [-79.9273301787974, 32.7750142367206], [-79.927486410506, 32.7749967221508], [-79.9274885532068, 32.7750103469275]]], "type": "Polygon"}, "id": "28", "properties": {"OBJECTID": 474, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9733.52734375, "Shape__Length": 595.682616449465, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9465917627565, 32.775084517096, -79.945608806429, 32.7754933609124], "geometry": {"coordinates": [[[-79.9456878271314, 32.7751557173601], [-79.945608806429, 32.7751653451409], [-79.9456112029025, 32.7751689749358], [-79.945613622213, 32.7751707137819], [-79.9456160436583, 32.7751723642667], [-79.9456184619017, 32.7751741031035], [-79.9456208811798, 32.7751758446548], [-79.9456233015582, 32.7751775835099], [-79.9456257209019, 32.7751793196506], [-79.9456281380784, 32.7751811468577], [-79.9456305573896, 32.7751828857036], [-79.9456329767446, 32.7751847093221], [-79.945635396056, 32.7751864481678], [-79.9456378132656, 32.7751882726696], [-79.9456402315536, 32.7751900962787], [-79.9456442558012, 32.7751937401028], [-79.9456466730221, 32.7751955637026], [-79.9456490912669, 32.7751973909186], [-79.9456515106227, 32.7751992145368], [-79.9456539278659, 32.7752011247127], [-79.9456579489562, 32.7752048532815], [-79.9456603672779, 32.7752067625648], [-79.9456627855233, 32.7752085897804], [-79.9456652017104, 32.7752104990452], [-79.9456692239019, 32.7752143132973], [-79.9456716401004, 32.7752163100399], [-79.9456756601576, 32.7752201242734], [-79.9456780774239, 32.7752221210251], [-79.9456820964472, 32.7752260209236], [-79.9456845126354, 32.7752280185678], [-79.9456885327813, 32.7752320023463], [-79.9456909479025, 32.7752339999811], [-79.945694968038, 32.7752379846612], [-79.9456989860504, 32.7752420568008], [-79.9457030029847, 32.7752461298327], [-79.945705419207, 32.7752482131509], [-79.9457070210307, 32.7752502876464], [-79.9457094351292, 32.7752523700444], [-79.9457110369423, 32.7752544454417], [-79.9457134531649, 32.7752565287597], [-79.945715054989, 32.7752586032552], [-79.9457174701553, 32.7752606856622], [-79.9457190709013, 32.7752627610502], [-79.9457214861008, 32.7752649291316], [-79.9457230879144, 32.7752670045287], [-79.9457246887044, 32.7752691646894], [-79.9457271027712, 32.7752712497922], [-79.9457287035505, 32.7752734108545], [-79.9457311187505, 32.7752755789358], [-79.9457327195518, 32.7752777381946], [-79.9457343203314, 32.7752798992568], [-79.9457367333643, 32.7752820700248], [-79.945738334155, 32.7752842301852], [-79.9457399360022, 32.7752863912566], [-79.9457415357259, 32.7752886397876], [-79.9457439498593, 32.7752908078593], [-79.9457455485158, 32.775293056381], [-79.9457471493069, 32.7752952165414], [-79.945748750131, 32.7752974623762], [-79.9457503498551, 32.775299710907], [-79.9457527639999, 32.7753018780769], [-79.9457543626895, 32.7753041238933], [-79.9457559624139, 32.775306372424], [-79.9457575632385, 32.7753086182587], [-79.9457591629631, 32.7753108667894], [-79.9457607616533, 32.7753132009854], [-79.9457623614107, 32.7753154468108], [-79.9457639600681, 32.7753176953323], [-79.9457663732232, 32.7753200329399], [-79.9457679729482, 32.7753222814705], [-79.9457695716388, 32.7753246156664], [-79.9457711713967, 32.7753268614918], [-79.945772769031, 32.7753291947766], [-79.9457743687893, 32.7753315289817], [-79.9457759675239, 32.7753338595705], [-79.945777566215, 32.7753361937663], [-79.9457799502546, 32.7753408542466], [-79.9457815478785, 32.7753431884331], [-79.9457831476808, 32.775345519031], [-79.9457847463724, 32.7753478532267], [-79.9457863450748, 32.7753501865206], [-79.945787942743, 32.7753526054798], [-79.9457895414783, 32.7753549360685], [-79.9457919244846, 32.7753596822139], [-79.9457935221531, 32.775362101173], [-79.9457951198217, 32.7753645201321], [-79.9457975028394, 32.7753692653756], [-79.9457990994409, 32.7753716843255], [-79.9458006981663, 32.7753741041954], [-79.9458022958353, 32.7753765231544], [-79.9458030801502, 32.7753789351042], [-79.9458046778302, 32.7753813531614], [-79.9458062744651, 32.7753838577856], [-79.9458070587803, 32.7753862697354], [-79.9458086553822, 32.7753886886851], [-79.9458094397305, 32.7753911863093], [-79.9458110374109, 32.7753936043664], [-79.9458126340135, 32.7753961116959], [-79.9458134183289, 32.7753985236455], [-79.9458150149643, 32.7754010282696], [-79.9458157992907, 32.7754034393176], [-79.9458173948589, 32.7754059439325], [-79.9458181791749, 32.7754084442618], [-79.9458197758215, 32.7754109479841], [-79.9458205601372, 32.7754133599338], [-79.9458221567731, 32.7754158645578], [-79.9458229400655, 32.775418361271], [-79.9458237233579, 32.7754208579841], [-79.9458253199614, 32.7754233653134], [-79.9458261021756, 32.7754258629191], [-79.9458537586295, 32.7754933609124], [-79.9459346696785, 32.7754618446183], [-79.9465917627565, 32.7752060262259], [-79.9465707958988, 32.7751909004842], [-79.9465611175451, 32.7751840308403], [-79.9465506559036, 32.7751746626837], [-79.946531277421, 32.7751627286756], [-79.946512725799, 32.7751496826095], [-79.9465022620668, 32.7751404884847], [-79.9464860966147, 32.7751319297467], [-79.9464699580972, 32.7751211392001], [-79.946453834078, 32.7751091475337], [-79.9464401148939, 32.7751000958126], [-79.9464239784773, 32.7750891321259], [-79.946416713246, 32.775084517096], [-79.9456878271314, 32.7751557173601]]], "type": "Polygon"}, "id": "29", "properties": {"OBJECTID": 478, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3012.181640625, "Shape__Length": 258.62275806163, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9307761401784, 32.7747796478671, -79.9291694440855, 32.7755046346689], "geometry": {"coordinates": [[[-79.9299881202939, 32.7752767987007], [-79.9299855869255, 32.7752590446577], [-79.9300757836836, 32.7752482395876], [-79.9301692055873, 32.7752370667513], [-79.9307761401784, 32.7751643347293], [-79.9307572883946, 32.7750475951387], [-79.9307140195226, 32.7747796478671], [-79.9306241232544, 32.7747896723346], [-79.9305080053897, 32.7748026203034], [-79.9303747786559, 32.7748174864728], [-79.9302457846148, 32.7748320828885], [-79.9291694440855, 32.7749573736138], [-79.9291838272854, 32.7751094506418], [-79.9291952449025, 32.775227417749], [-79.929208790553, 32.775367367682], [-79.9292216165593, 32.7755046346689], [-79.9296851944279, 32.7754505917832], [-79.9296657178694, 32.7753141360312], [-79.9299881202939, 32.7752767987007]]], "type": "Polygon"}, "id": "30", "properties": {"OBJECTID": 480, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10227.130859375, "Shape__Length": 495.414888087226, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9270878521007, 32.7752741549998, -79.9258886673828, 32.7756611541329], "geometry": {"coordinates": [[[-79.9260976045183, 32.7753386932115], [-79.9258886673828, 32.7756333985817], [-79.9262529158047, 32.7756421588494], [-79.9263276983712, 32.7756439596625], [-79.9264105160189, 32.7756413389051], [-79.9265514910788, 32.7756404982266], [-79.9266973482188, 32.7756398887044], [-79.9267734853574, 32.7756445635557], [-79.9268352091826, 32.775648353472], [-79.9268969330131, 32.7756521433572], [-79.9270437074192, 32.7756611541329], [-79.9270502695009, 32.7756038170747], [-79.9270684571329, 32.7754449045422], [-79.9269041587836, 32.775440939152], [-79.9268716374229, 32.7754401362092], [-79.9268713689513, 32.7754479085779], [-79.9268155069931, 32.7754469811259], [-79.9268004315123, 32.7754467316298], [-79.9268021753241, 32.7754280140015], [-79.9268666496983, 32.7754271357839], [-79.9269354129615, 32.7754261995597], [-79.9270693660779, 32.7754371332817], [-79.9270878521007, 32.7752753032239], [-79.9269527001046, 32.7752747310136], [-79.9268165148096, 32.7752741549998], [-79.9267309341247, 32.7752743141256], [-79.926552427826, 32.775278318479], [-79.9263991254239, 32.7752830956968], [-79.9263995397291, 32.7753183313412], [-79.9263213629491, 32.7753203353834], [-79.9263221840322, 32.7753355989416], [-79.9262505892027, 32.7753365839167], [-79.9260976045183, 32.7753386932115]]], "type": "Polygon"}, "id": "31", "properties": {"OBJECTID": 482, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5413.005859375, "Shape__Length": 404.654673966544, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9308675445224, 32.7751984406384, -79.9292216165593, 32.7758952320165], "geometry": {"coordinates": [[[-79.930380222113, 32.7758788308266], [-79.9303823323387, 32.7758952320165], [-79.9308675445224, 32.7758386709993], [-79.9307816439332, 32.7751984406384], [-79.930500278322, 32.775236981154], [-79.9303465718873, 32.7752580352028], [-79.9301825338048, 32.7752805038677], [-79.9301807823586, 32.7752667995943], [-79.9299898721708, 32.7752890717684], [-79.9299881202939, 32.7752767987007], [-79.9296657178694, 32.7753141360312], [-79.9296851944279, 32.7754505917832], [-79.9295775597529, 32.7754631315219], [-79.9292216165593, 32.7755046346689], [-79.9292226242576, 32.7755155169176], [-79.9295795174752, 32.7754740220803], [-79.9295887453877, 32.7755467808286], [-79.9297338426355, 32.7755298549553], [-79.9298628422744, 32.7755148063963], [-79.9299982624931, 32.7754990094251], [-79.9300304875286, 32.7754952501673], [-79.9300445554565, 32.7756059364077], [-79.9301445254169, 32.7755942761506], [-79.930153868762, 32.7756681081447], [-79.9302764189249, 32.7756538198058], [-79.9303505491541, 32.7756451773194], [-79.930380222113, 32.7758788308266]]], "type": "Polygon"}, "id": "32", "properties": {"OBJECTID": 486, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7496.09765625, "Shape__Length": 530.933270885776, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9270203930611, 32.7757371392084, -79.9257827675482, 32.7759209697197], "geometry": {"coordinates": [[[-79.9257827675482, 32.7758916526313], [-79.927002932533, 32.7759209697197], [-79.9270203930611, 32.7757843162268], [-79.9259369132227, 32.7757582872323], [-79.9259371168255, 32.7757390474555], [-79.9258575210278, 32.7757371392084], [-79.9257827675482, 32.7758916526313]]], "type": "Polygon"}, "id": "33", "properties": {"OBJECTID": 488, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2440.265625, "Shape__Length": 308.238542660995, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.930380222113, 32.7754740220803, -79.9292226242576, 32.7759921176448], "geometry": {"coordinates": [[[-79.9296183510615, 32.7759510142879], [-79.9297698683563, 32.7759333572383], [-79.9298635477195, 32.7759224935042], [-79.9298985768425, 32.7759183340454], [-79.9300338026894, 32.7759025073715], [-79.9301665831325, 32.7758870902396], [-79.9303039846795, 32.7758710721681], [-79.9303060938122, 32.7758874742516], [-79.930380222113, 32.7758788308266], [-79.9303505491541, 32.7756451773194], [-79.9302764189249, 32.7756538198058], [-79.930153868762, 32.7756681081447], [-79.9301445254169, 32.7755942761506], [-79.9300445554565, 32.7756059364077], [-79.9300304875286, 32.7754952501673], [-79.9299982624931, 32.7754990094251], [-79.9298628422744, 32.7755148063963], [-79.9297338426355, 32.7755298549553], [-79.9295887453877, 32.7755467808286], [-79.9295795174752, 32.7754740220803], [-79.9292226242576, 32.7755155169176], [-79.9292402130253, 32.7757062683539], [-79.9292581757774, 32.7759011751142], [-79.929266563297, 32.7759920417025], [-79.9292665847834, 32.7759921176448], [-79.9296183510615, 32.7759510142879]]], "type": "Polygon"}, "id": "34", "properties": {"OBJECTID": 489, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6337.912109375, "Shape__Length": 378.854101507249, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9290969219731, 32.7749758853073, -79.9282549467721, 32.7761027205851], "geometry": {"coordinates": [[[-79.9290079879681, 32.7749758853073], [-79.9282549467721, 32.7750629140889], [-79.9282904334695, 32.7753362637561], [-79.9283124262109, 32.7755056732099], [-79.9283237168824, 32.7755904075696], [-79.9283329386909, 32.7756513171541], [-79.9283461722904, 32.7757385720287], [-79.9283743172308, 32.7758686783739], [-79.9284013573259, 32.7761027205851], [-79.9290896048334, 32.7760146555557], [-79.9290969219731, 32.7759221119445], [-79.9290858032192, 32.7758014536529], [-79.9290079879681, 32.7749758853073]]], "type": "Polygon"}, "id": "35", "properties": {"OBJECTID": 490, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11319.283203125, "Shape__Length": 438.735204407092, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.92835101543, 32.7750654887695, -79.9271919512287, 32.776240801414], "geometry": {"coordinates": [[[-79.9280787455038, 32.7750805883341], [-79.9280082583035, 32.7750726739083], [-79.9279065134909, 32.7750841509236], [-79.9278300364401, 32.7751106673784], [-79.9277527684737, 32.7751193529788], [-79.9276592384561, 32.7751300116828], [-79.9273206271143, 32.7751692118394], [-79.9272607412983, 32.7756923049857], [-79.927247303362, 32.7757678114603], [-79.9272430019916, 32.7758345636765], [-79.9272368208872, 32.7758829714058], [-79.9272262823443, 32.7759655087644], [-79.9271919512287, 32.776240801414], [-79.92835101543, 32.776095240758], [-79.9283199181633, 32.7758900460739], [-79.928202856248, 32.7750654887695], [-79.9280787455038, 32.7750805883341]]], "type": "Polygon"}, "id": "36", "properties": {"OBJECTID": 493, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15828.171875, "Shape__Length": 510.155973610491, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9398393373847, 32.7757533410506, -79.9391475595598, 32.7763653571296], "geometry": {"coordinates": [[[-79.9391475595598, 32.7757902414793], [-79.9391676648779, 32.7759376763764], [-79.9391985787857, 32.7761643635194], [-79.9393993884185, 32.7761477217123], [-79.9394139077913, 32.7762542180645], [-79.939429059349, 32.7763653571296], [-79.9398393373847, 32.7763241238415], [-79.9395289607012, 32.7757533410506], [-79.9391475595598, 32.7757902414793]]], "type": "Polygon"}, "id": "37", "properties": {"OBJECTID": 494, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3747.19921875, "Shape__Length": 273.15228899149, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9298740356733, 32.7759794807991, -79.929272493374, 32.7763030143102], "geometry": {"coordinates": [[[-79.9292861382114, 32.7761529065667], [-79.9295121196193, 32.7761256576234], [-79.929577500206, 32.7761177741332], [-79.9296900689169, 32.7761107877701], [-79.9296979445263, 32.776246235684], [-79.92970340483, 32.7763030143102], [-79.9297930592628, 32.7762931732637], [-79.9297829376808, 32.776217097875], [-79.9298740356733, 32.7762082713382], [-79.9298479993037, 32.7759852920604], [-79.9297513249456, 32.7759794807991], [-79.9296834810746, 32.7759881138978], [-79.9295380469274, 32.7760119935285], [-79.929272493374, 32.7760407827952], [-79.9292861382114, 32.7761529065667]]], "type": "Polygon"}, "id": "38", "properties": {"OBJECTID": 495, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1375.23828125, "Shape__Length": 210.551463760243, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.939429059349, 32.7757902414793, -79.9384218319028, 32.7764602088752], "geometry": {"coordinates": [[[-79.9391475595598, 32.7757902414793], [-79.9384218319028, 32.7758604519678], [-79.9384850156935, 32.7764602088752], [-79.939429059349, 32.7763653571296], [-79.9394139077913, 32.7762542180645], [-79.9393993884185, 32.7761477217123], [-79.9391985787857, 32.7761643635194], [-79.9391630116474, 32.7759356510862], [-79.9391475595598, 32.7757902414793]]], "type": "Polygon"}, "id": "39", "properties": {"OBJECTID": 496, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7191.7890625, "Shape__Length": 368.209704002689, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.926992387527, 32.7759909353639, -79.9264372843074, 32.7763637583537], "geometry": {"coordinates": [[[-79.9264805886232, 32.7759909353639], [-79.9264372843074, 32.7763637583537], [-79.9269546441466, 32.7763261863746], [-79.926992387527, 32.7760032328458], [-79.9264805886232, 32.7759909353639]]], "type": "Polygon"}, "id": "40", "properties": {"OBJECTID": 498, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2630.88671875, "Shape__Length": 207.363583643924, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9264805886232, 32.77597902592, -79.9258658303625, 32.7764052577463], "geometry": {"coordinates": [[[-79.9259850860085, 32.77597902592], [-79.9258658303625, 32.7764052577463], [-79.9262065130591, 32.7763805352689], [-79.9264372843074, 32.7763637583537], [-79.9264805886232, 32.7759909353639], [-79.9262524022411, 32.7759854524861], [-79.9259850860085, 32.77597902592]]], "type": "Polygon"}, "id": "41", "properties": {"OBJECTID": 499, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3123.705078125, "Shape__Length": 226.601336652408, "ZONE_BASE": "GO", "__folium_color": "#ff9896"}, "type": "Feature"}, {"bbox": [-79.9309184868998, 32.7758678898659, -79.9301866801893, 32.776455464783], "geometry": {"coordinates": [[[-79.9301866801893, 32.7759458023187], [-79.9302230462345, 32.776257507827], [-79.9303328986417, 32.7762464803428], [-79.9303572791279, 32.776455464783], [-79.9309184868998, 32.7763949767644], [-79.9308548878979, 32.7758678898659], [-79.9301866801893, 32.7759458023187]]], "type": "Polygon"}, "id": "42", "properties": {"OBJECTID": 500, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4899.97265625, "Shape__Length": 289.809586744637, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9259850860085, 32.7759733553447, -79.9256238229835, 32.7764228358375], "geometry": {"coordinates": [[[-79.9259850860085, 32.77597902592], [-79.9257492895419, 32.7759733553447], [-79.9256238229835, 32.7764228358375], [-79.9258658303625, 32.7764052577463], [-79.9259850860085, 32.77597902592]]], "type": "Polygon"}, "id": "43", "properties": {"OBJECTID": 501, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1530.98046875, "Shape__Length": 172.400383442505, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9303572791279, 32.7759458023187, -79.9292861382114, 32.7765501031594], "geometry": {"coordinates": [[[-79.9292861382114, 32.7761529065667], [-79.9293364599009, 32.7765501031594], [-79.9294572716188, 32.7765371017609], [-79.9295932695395, 32.77652464797], [-79.9297282681697, 32.7765122853891], [-79.9297275278691, 32.7765060571502], [-79.9298203137054, 32.776498031818], [-79.9299081592562, 32.776500527299], [-79.9303572791279, 32.776455464783], [-79.9303328986417, 32.7762464803428], [-79.9302230462345, 32.776257507827], [-79.9301866801893, 32.7759458023187], [-79.9300511941893, 32.7759615998315], [-79.9298479993037, 32.7759852920604], [-79.9298740356733, 32.7762082713382], [-79.9297829376808, 32.776217097875], [-79.9297930592628, 32.7762931732637], [-79.92970340483, 32.7763030143102], [-79.9296979445263, 32.776246235684], [-79.9296900689169, 32.7761107877701], [-79.929577500206, 32.7761177741332], [-79.9295121196193, 32.7761256576234], [-79.9292861382114, 32.7761529065667]]], "type": "Polygon"}, "id": "44", "properties": {"OBJECTID": 503, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5981.2890625, "Shape__Length": 418.684424195346, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9373280567949, 32.7759726227785, -79.9359045381774, 32.7767330526843], "geometry": {"coordinates": [[[-79.9372622526057, 32.7759726227785], [-79.9359045381774, 32.7761041694374], [-79.9359789335736, 32.7767330526843], [-79.9373280567949, 32.7766078082507], [-79.9372622526057, 32.7759726227785]]], "type": "Polygon"}, "id": "45", "properties": {"OBJECTID": 505, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12740.119140625, "Shape__Length": 471.326943804304, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.933581937575, 32.7763308934237, -79.9332608476347, 32.7767475173504], "geometry": {"coordinates": [[[-79.9332757248523, 32.7766246280159], [-79.9332608476347, 32.7766263948443], [-79.9333371924211, 32.7766190621834], [-79.9333534869139, 32.7767475173504], [-79.933581937575, 32.7767268315412], [-79.9335390996462, 32.7763308934237], [-79.9332647061031, 32.776357175726], [-79.9332903800265, 32.7765596920188], [-79.9332677416105, 32.7765617482975], [-79.9332757248523, 32.7766246280159]]], "type": "Polygon"}, "id": "46", "properties": {"OBJECTID": 507, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1540.67578125, "Shape__Length": 174.161604797103, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9269493016646, 32.7763955465812, -79.9261235637406, 32.7767229857004], "geometry": {"coordinates": [[[-79.9261235637406, 32.7764555090135], [-79.9261508272569, 32.7767229857004], [-79.9268251388129, 32.7766627399549], [-79.9269267455319, 32.7766688267585], [-79.9269493016646, 32.7763955465812], [-79.9261235637406, 32.7764555090135]]], "type": "Polygon"}, "id": "47", "properties": {"OBJECTID": 509, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3117.923828125, "Shape__Length": 250.90152107382, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9337777926222, 32.776313859506, -79.9335390996462, 32.7768486084461], "geometry": {"coordinates": [[[-79.933581937575, 32.7767268315412], [-79.9335951125162, 32.7768486084461], [-79.9337777926222, 32.7768320856439], [-79.9337604029015, 32.7766839943568], [-79.9337475369296, 32.7766851465883], [-79.9337345649113, 32.7765749717757], [-79.9337474660262, 32.776573737785], [-79.9337169319877, 32.776313859506], [-79.9335390996462, 32.7763308934237], [-79.933581937575, 32.7767268315412]]], "type": "Polygon"}, "id": "48", "properties": {"OBJECTID": 512, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1369.439453125, "Shape__Length": 181.027075784683, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9260699131995, 32.77646139433, -79.9255323462736, 32.7767781114149], "geometry": {"coordinates": [[[-79.9260425039228, 32.77646139433], [-79.9256082211368, 32.7764929301693], [-79.9255443150817, 32.7767039702073], [-79.9255392123296, 32.7767226186397], [-79.9255335020712, 32.7767582748674], [-79.9255323462736, 32.7767781114149], [-79.9257828007676, 32.7767562067134], [-79.925905767942, 32.7767452604801], [-79.9260699131995, 32.7767301926044], [-79.926064544784, 32.7766825357656], [-79.9260589904681, 32.7766003523194], [-79.9260571117313, 32.7765725737164], [-79.9260425039228, 32.77646139433]]], "type": "Polygon"}, "id": "49", "properties": {"OBJECTID": 513, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1994.36328125, "Shape__Length": 183.190609077281, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9315007748172, 32.776529521206, -79.9311318881415, 32.776842157584], "geometry": {"coordinates": [[[-79.9311318881415, 32.7765609999172], [-79.9311709739491, 32.776842157584], [-79.9315007748172, 32.7768106787571], [-79.9314616890291, 32.776529521206], [-79.9311318881415, 32.7765609999172]]], "type": "Polygon"}, "id": "50", "properties": {"OBJECTID": 514, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1384.783203125, "Shape__Length": 148.855052955751, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9347084049507, 32.7762267958069, -79.9337169319877, 32.7769587109469], "geometry": {"coordinates": [[[-79.9337604029015, 32.7766839943568], [-79.933920882437, 32.7766664229015], [-79.9339571736066, 32.7769587109469], [-79.9342718542876, 32.7769304819854], [-79.9344594550842, 32.7769129612173], [-79.9347084049507, 32.776889701259], [-79.9346257686998, 32.7762267958069], [-79.9337169319877, 32.776313859506], [-79.9337474660262, 32.776573737785], [-79.9337345649113, 32.7765749717757], [-79.9337475369296, 32.7766851465883], [-79.9337604029015, 32.7766839943568]]], "type": "Polygon"}, "id": "51", "properties": {"OBJECTID": 515, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8308.166015625, "Shape__Length": 383.24264612185, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.932715157155, 32.7764130351858, -79.9315845334707, 32.7770076900078], "geometry": {"coordinates": [[[-79.93162740353, 32.776838063308], [-79.9321150621973, 32.7767956720655], [-79.9321368724842, 32.7770076900078], [-79.9324064135282, 32.7769842726754], [-79.9323831974945, 32.7767671237027], [-79.9323978339228, 32.7767668059319], [-79.932715157155, 32.7767401894649], [-79.9326811411519, 32.7764130351858], [-79.9322068017501, 32.7764583460235], [-79.9315845334707, 32.7765177845071], [-79.9316013478107, 32.7766434136082], [-79.93162740353, 32.776838063308]]], "type": "Polygon"}, "id": "52", "properties": {"OBJECTID": 518, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6124.630859375, "Shape__Length": 387.923401476409, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9402263459827, 32.7764291006895, -79.9396023999535, 32.7770876793292], "geometry": {"coordinates": [[[-79.939612161825, 32.7764576671853], [-79.9396385916808, 32.7766605952997], [-79.9396105669584, 32.7766773952458], [-79.9396023999535, 32.776677433574], [-79.9396226176403, 32.7768853076178], [-79.9396422873574, 32.7770876793292], [-79.939804531456, 32.7770735848111], [-79.9402263459827, 32.77703694041], [-79.9398964355985, 32.7764291006895], [-79.939612161825, 32.7764576671853]]], "type": "Polygon"}, "id": "53", "properties": {"OBJECTID": 519, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4101.408203125, "Shape__Length": 271.961104777639, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9396422873574, 32.7764576671853, -79.9384965696417, 32.7771852893904], "geometry": {"coordinates": [[[-79.939612161825, 32.7764576671853], [-79.9384965696417, 32.7765697665964], [-79.9385614181407, 32.7771852893904], [-79.9396422873574, 32.7770876793292], [-79.9396226176403, 32.7768853076178], [-79.9396023999535, 32.776677433574], [-79.9396105669584, 32.7766773952458], [-79.9396385916808, 32.7766605952997], [-79.9396355555197, 32.7766373142788], [-79.939612161825, 32.7764576671853]]], "type": "Polygon"}, "id": "54", "properties": {"OBJECTID": 520, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10118.072265625, "Shape__Length": 414.164951959892, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9298648835415, 32.7769377542945, -79.929356575316, 32.777167843924], "geometry": {"coordinates": [[[-79.929356575316, 32.7770169411545], [-79.9293676525001, 32.777167843924], [-79.9297361761002, 32.777154438813], [-79.9298648835415, 32.7771520151708], [-79.9298422927698, 32.7769377542945], [-79.9297210325946, 32.7769422767057], [-79.9296616230612, 32.776944420034], [-79.9295843110622, 32.7769472643306], [-79.9295835986897, 32.7769472914651], [-79.9295835822494, 32.7769486323505], [-79.929588183815, 32.7770083182045], [-79.9295881975818, 32.7770085013975], [-79.9295795510264, 32.7770088162334], [-79.9294008301892, 32.7770153290972], [-79.929356575316, 32.7770169411545]]], "type": "Polygon"}, "id": "55", "properties": {"OBJECTID": 522, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1340.2578125, "Shape__Length": 166.644762544737, "ZONE_BASE": "GO", "__folium_color": "#ff9896"}, "type": "Feature"}, {"bbox": [-79.9269668084975, 32.7767352346715, -79.9261379033392, 32.7771423959203], "geometry": {"coordinates": [[[-79.9261476198876, 32.7771423959203], [-79.9263450483518, 32.7771249702389], [-79.9264583720333, 32.7771149696062], [-79.9264591497989, 32.7771231678052], [-79.926855207446, 32.7770727662837], [-79.9268562289319, 32.7770558423784], [-79.9266937544463, 32.7770488093551], [-79.9266878379013, 32.7769698161615], [-79.9267716486891, 32.7769696135668], [-79.9269373751514, 32.7769767850376], [-79.9269414469399, 32.7769207446147], [-79.9269576754964, 32.7769214370867], [-79.9269668084975, 32.7767952097078], [-79.9269505799534, 32.7767945181388], [-79.9269543440332, 32.7767424061191], [-79.9267886180145, 32.7767352346715], [-79.9266934699126, 32.7767437221707], [-79.9266227853225, 32.7767500262702], [-79.9264194573625, 32.776768162668], [-79.9261546655444, 32.7767917663282], [-79.9261444205517, 32.7769422559014], [-79.9261379033392, 32.777038241489], [-79.9261476198876, 32.7771423959203]]], "type": "Polygon"}, "id": "56", "properties": {"OBJECTID": 523, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3811.40234375, "Shape__Length": 309.764991872789, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9475997208823, 32.7761254239588, -79.9462831215345, 32.7773432380018], "geometry": {"coordinates": [[[-79.9466983032454, 32.7762864476389], [-79.9462831215345, 32.7764479699036], [-79.9463531717597, 32.7765751032698], [-79.9464224066993, 32.7767023170521], [-79.9464924562639, 32.776829450333], [-79.94656488499, 32.7769616723678], [-79.9465847808184, 32.7769981803867], [-79.9466349339148, 32.7770888930395], [-79.9467041707616, 32.7772161048753], [-79.9467742211487, 32.7773432380018], [-79.947186969171, 32.7771813494822], [-79.9475997208823, 32.7770191151173], [-79.9475933609649, 32.7770068612979], [-79.9475304839761, 32.7768919019969], [-79.9474612483043, 32.7767646031738], [-79.9473911994358, 32.7766373000197], [-79.9473203684794, 32.7765073242749], [-79.9472511334189, 32.7763800253381], [-79.947181085198, 32.7762527193639], [-79.947111850499, 32.7761254239588], [-79.9466983032454, 32.7762864476389]]], "type": "Polygon"}, "id": "57", "properties": {"OBJECTID": 524, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 13239.0859375, "Shape__Length": 463.804879402173, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9384320610654, 32.7758729635259, -79.937423927781, 32.7772685824385], "geometry": {"coordinates": [[[-79.937423927781, 32.7759569843543], [-79.9375678886418, 32.7772685824385], [-79.9381267611947, 32.7772148823815], [-79.938057743853, 32.7765578486681], [-79.9380892272884, 32.7765481837527], [-79.9381034989939, 32.7767143236653], [-79.9381571561173, 32.7772232870764], [-79.9384320610654, 32.7771974428294], [-79.9382925044395, 32.7758729635259], [-79.937423927781, 32.7759569843543]]], "type": "Polygon"}, "id": "58", "properties": {"OBJECTID": 525, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16673.931640625, "Shape__Length": 721.94274647171, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9373992211078, 32.7766762867524, -79.9359870495898, 32.7774204633744], "geometry": {"coordinates": [[[-79.9373351613622, 32.7766762867524], [-79.9359870495898, 32.7768014038947], [-79.9360602965991, 32.7774204633744], [-79.9373992211078, 32.7772945521804], [-79.9373351613622, 32.7766762867524]]], "type": "Polygon"}, "id": "59", "properties": {"OBJECTID": 528, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12377.55078125, "Shape__Length": 465.496461269484, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9292040969655, 32.7767596865997, -79.9278163545664, 32.7773851557469], "geometry": {"coordinates": [[[-79.9292040969655, 32.7771602294059], [-79.9291742404306, 32.7767596865997], [-79.9286141097016, 32.7768106635223], [-79.9283460669227, 32.7768363384133], [-79.9281339900337, 32.7768591446709], [-79.9280611361316, 32.7768637198119], [-79.9278163545664, 32.7768872940844], [-79.9278952219845, 32.7772929374266], [-79.9279131524322, 32.7773851557469], [-79.9281689480374, 32.7773586232526], [-79.9281549549267, 32.7773039233639], [-79.9282052712393, 32.7772963252539], [-79.9281830680746, 32.7771990778843], [-79.9282527678341, 32.777194144061], [-79.9282424740803, 32.7771049759735], [-79.9283923776576, 32.7770924325028], [-79.928403718798, 32.7771562925225], [-79.9284677431803, 32.7771485167792], [-79.9284712460918, 32.7771767559752], [-79.9284717767124, 32.7771784037674], [-79.9284728908174, 32.7771798276042], [-79.9284744769874, 32.7771808858233], [-79.9284763742595, 32.7771814724019], [-79.9284787168349, 32.7771815253871], [-79.9284798892566, 32.7771819378752], [-79.9284805813199, 32.7771831307526], [-79.9284890406698, 32.7772496493849], [-79.9285005523839, 32.7772491703363], [-79.9286464142929, 32.7772309023728], [-79.9286654168117, 32.7772290351528], [-79.9287563069352, 32.7772116672346], [-79.9288738021919, 32.777201068709], [-79.9288724064546, 32.7771901442786], [-79.9289662222115, 32.7771816830977], [-79.9292040969655, 32.7771602294059]]], "type": "Polygon"}, "id": "60", "properties": {"OBJECTID": 529, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7981.779296875, "Shape__Length": 475.150880530725, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9268898469542, 32.77713214129, -79.9261042024104, 32.7774125045284], "geometry": {"coordinates": [[[-79.9268898469542, 32.77713214129], [-79.9261042024104, 32.7772014989663], [-79.9261144164601, 32.7773111165814], [-79.926123863861, 32.7774125045284], [-79.9268835909541, 32.7773630961268], [-79.9268831110861, 32.7772445916115], [-79.9268898469542, 32.77713214129]]], "type": "Polygon"}, "id": "61", "properties": {"OBJECTID": 530, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2516.1953125, "Shape__Length": 231.383525584111, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9359462153252, 32.7761150876682, -79.9347389053404, 32.7775179706281], "geometry": {"coordinates": [[[-79.9348165955297, 32.7768393776581], [-79.9348891765861, 32.7774215191079], [-79.934891542847, 32.7774328442116], [-79.9348938939203, 32.7774402516119], [-79.9348994572466, 32.7774528175194], [-79.9349067890751, 32.7774647161352], [-79.9349144006046, 32.7774742516727], [-79.9349186392842, 32.7774787544637], [-79.9349312414654, 32.7774897826999], [-79.934941818852, 32.7774970227345], [-79.9349532333126, 32.7775032897612], [-79.9349674427381, 32.777509280809], [-79.934982409278, 32.7775137651676], [-79.9349979106222, 32.777516676871], [-79.9350137167352, 32.7775179706281], [-79.9350318508803, 32.7775174476123], [-79.9350499018366, 32.7775156053869], [-79.9353550996245, 32.7774841833466], [-79.9359462153252, 32.777423319265], [-79.9357914011671, 32.7761150876682], [-79.9347389053404, 32.7762159327583], [-79.9348165955297, 32.7768393776581]]], "type": "Polygon"}, "id": "62", "properties": {"OBJECTID": 531, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20454.544921875, "Shape__Length": 577.548143282881, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9310241949911, 32.7766345139195, -79.9293354463404, 32.777483285887], "geometry": {"coordinates": [[[-79.9298648835415, 32.7771520151708], [-79.9298990555421, 32.777483285887], [-79.9310241949911, 32.777376230633], [-79.9309912221473, 32.7771101499941], [-79.930931156554, 32.7766345139195], [-79.9307128550087, 32.7766586347152], [-79.930711260904, 32.7766559567598], [-79.9307096668177, 32.7766533644789], [-79.9307080685053, 32.7766510300859], [-79.9307056536293, 32.7766488626095], [-79.9307024317133, 32.776646258805], [-79.9306992035203, 32.7766442546661], [-79.9306959658259, 32.7766428519682], [-79.9306927250021, 32.7766417919402], [-79.9306894831473, 32.7766409032518], [-79.9306862349056, 32.7766403617141], [-79.930682984646, 32.7766401592487], [-79.9306797290376, 32.7766402191705], [-79.9303677557821, 32.7766746004564], [-79.9303636837096, 32.7766749932228], [-79.9303604302497, 32.7766749647751], [-79.9303571799496, 32.77667467843], [-79.9303539338589, 32.7766740485224], [-79.9303506909058, 32.7766731625209], [-79.9303474511125, 32.776672018622], [-79.9303442176721, 32.7766703562234], [-79.9303248168703, 32.7766603078776], [-79.9303215886524, 32.7766583064339], [-79.9303183541522, 32.7766567306015], [-79.9303151143711, 32.7766555858001], [-79.9303118704026, 32.7766547827575], [-79.9303086232523, 32.7766542394156], [-79.9303053719035, 32.7766540387343], [-79.9303013029694, 32.7766541754048], [-79.9302793137076, 32.7766562151637], [-79.9301232875635, 32.7766714841414], [-79.9298042411302, 32.7767038153893], [-79.9296431931453, 32.7767161268949], [-79.9296539167248, 32.7768456674664], [-79.9296365569435, 32.7768301437898], [-79.9296270038205, 32.7767176346987], [-79.9295463702722, 32.7767243656757], [-79.9293354463404, 32.7767439113389], [-79.9293478425011, 32.7769017246912], [-79.9293565114623, 32.7770161415695], [-79.929356575316, 32.7770169411545], [-79.9294008301892, 32.7770153290972], [-79.9295795510264, 32.7770088162334], [-79.9295881975818, 32.7770085013975], [-79.929588183815, 32.7770083182045], [-79.9295835822494, 32.7769486323505], [-79.9295835986897, 32.7769472914651], [-79.9295843110622, 32.7769472643306], [-79.9296616230612, 32.776944420034], [-79.9297210325946, 32.7769422767057], [-79.9298422927698, 32.7769377542945], [-79.9298648835415, 32.7771520151708]]], "type": "Polygon"}, "id": "63", "properties": {"OBJECTID": 532, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14537.275390625, "Shape__Length": 609.971255177418, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9299012168031, 32.7771520151708, -79.9293676525001, 32.777534101449], "geometry": {"coordinates": [[[-79.9293676525001, 32.777167843924], [-79.9293835580021, 32.7773958877658], [-79.9293868064383, 32.7773957186934], [-79.9293932653833, 32.777534101449], [-79.929769079341, 32.7774965114764], [-79.9299012168031, 32.7774838485994], [-79.9298648835415, 32.7771520151708], [-79.9297361761002, 32.777154438813], [-79.9293676525001, 32.777167843924]]], "type": "Polygon"}, "id": "64", "properties": {"OBJECTID": 534, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2602.044921875, "Shape__Length": 205.392382088057, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9272598823331, 32.7729079882797, -79.9233020159341, 32.7774739602835], "geometry": {"coordinates": [[[-79.925458832467, 32.7772672761555], [-79.9254198487369, 32.776846083937], [-79.925418140091, 32.7768166447325], [-79.9254183575723, 32.7768038324587], [-79.925421158553, 32.7767547593209], [-79.9254278551971, 32.7767130360953], [-79.9254412444627, 32.7766640875308], [-79.9254934186085, 32.7764941674078], [-79.9255041236267, 32.7764593053823], [-79.9255047307413, 32.7764416356367], [-79.9255035526975, 32.7764316203239], [-79.9254999977198, 32.7764190544838], [-79.9254951109092, 32.7764063669213], [-79.9254921374862, 32.7763940812491], [-79.9254906661452, 32.7763788399275], [-79.9254904328892, 32.776363444445], [-79.9255114752866, 32.7762849035256], [-79.925593401715, 32.7759944158525], [-79.9256426545541, 32.77586933635], [-79.9257206531367, 32.7757171079019], [-79.9257673672383, 32.7756279351917], [-79.9257243984326, 32.7756190364086], [-79.9259723951649, 32.7752626270707], [-79.9259953003381, 32.7751997375615], [-79.926053984117, 32.7752371540793], [-79.9262874973764, 32.7752061056509], [-79.927088207234, 32.7751008183146], [-79.9271144186593, 32.7748715788877], [-79.9266297517879, 32.7748627367809], [-79.9266322046591, 32.7747665504977], [-79.9267167807676, 32.7747680925114], [-79.9271549615622, 32.7747760837912], [-79.9272598823331, 32.7730719003075], [-79.9269339633857, 32.7730584009538], [-79.9233020159341, 32.7729079882797], [-79.9233892633688, 32.7735743505401], [-79.9234005625231, 32.7743500151249], [-79.9234062896605, 32.7747432072825], [-79.9233779896606, 32.7756148043492], [-79.9234149309256, 32.7774739602835], [-79.924792198307, 32.7773355766773], [-79.925458832467, 32.7772672761555]]], "type": "Polygon"}, "id": "65", "properties": {"OBJECTID": 535, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 192894.5, "Shape__Length": 2073.40899500593, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9347770237606, 32.776889701259, -79.9339571736066, 32.7776147137558], "geometry": {"coordinates": [[[-79.9347680424046, 32.7773680911981], [-79.9347474254364, 32.7772027144423], [-79.9347412918134, 32.7771535128297], [-79.9347084049507, 32.776889701259], [-79.9344594550842, 32.7769129612173], [-79.9342718542876, 32.7769304819854], [-79.9339571736066, 32.7769587109469], [-79.9339980005385, 32.777303140229], [-79.9340192568802, 32.7773011547391], [-79.9340521674634, 32.7776147137558], [-79.9345766151115, 32.7775644644065], [-79.9346694709966, 32.7775546873415], [-79.9346826028595, 32.7775521385814], [-79.9346932591669, 32.7775491480069], [-79.9347055854764, 32.7775445513766], [-79.934713460384, 32.7775408998837], [-79.9347246686168, 32.777534583636], [-79.9347350439626, 32.7775273222262], [-79.9347398844481, 32.7775233611316], [-79.934751539663, 32.7775118208364], [-79.9347578251275, 32.7775039601636], [-79.934763286356, 32.7774956702545], [-79.9347694679071, 32.7774834645372], [-79.9347722025417, 32.7774762339891], [-79.9347751818709, 32.7774651348958], [-79.9347764073397, 32.7774576152448], [-79.9347769206902, 32.7774519390564], [-79.9347770237606, 32.7774431416519], [-79.934775555866, 32.7774283586167], [-79.9347706016378, 32.7773886221122], [-79.9347680424046, 32.7773680911981]]], "type": "Polygon"}, "id": "66", "properties": {"OBJECTID": 537, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7224.025390625, "Shape__Length": 337.573727238086, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.929232830086, 32.7770924325028, -79.9279131524322, 32.7776691746314], "geometry": {"coordinates": [[[-79.9279131524322, 32.7773851557469], [-79.9279735811822, 32.7776691746314], [-79.928180647168, 32.7776527845773], [-79.9282902569393, 32.777642382656], [-79.9284593002062, 32.7776274022687], [-79.9286972280082, 32.7776053024964], [-79.9289846757255, 32.7775736885742], [-79.929232830086, 32.77755420965], [-79.9292040969655, 32.7771602294059], [-79.9289662222115, 32.7771816830977], [-79.9288724064546, 32.7771901442786], [-79.9288738021919, 32.777201068709], [-79.9287563069352, 32.7772116672346], [-79.9286654168117, 32.7772290351528], [-79.9286464142929, 32.7772309023728], [-79.9285005523839, 32.7772491703363], [-79.9284890406698, 32.7772496493849], [-79.9284828994366, 32.7772013546074], [-79.9284805813199, 32.7771831307526], [-79.9284798892566, 32.7771819378752], [-79.9284787168349, 32.7771815253871], [-79.9284774052043, 32.7771814958616], [-79.9284763742595, 32.7771814724019], [-79.9284755107066, 32.7771812051093], [-79.9284744769874, 32.7771808858233], [-79.9284737135465, 32.7771803768138], [-79.9284728908174, 32.7771798276042], [-79.9284717767124, 32.7771784037674], [-79.9284712460918, 32.7771767559752], [-79.9284677431803, 32.7771485167792], [-79.928403718798, 32.7771562925225], [-79.9283923776576, 32.7770924325028], [-79.9282424740803, 32.7771049759735], [-79.9282527678341, 32.777194144061], [-79.9281830680746, 32.7771990778843], [-79.9282052712393, 32.7772963252539], [-79.9281549549267, 32.7773039233639], [-79.9281689480374, 32.7773586232526], [-79.9279131524322, 32.7773851557469]]], "type": "Polygon"}, "id": "67", "properties": {"OBJECTID": 538, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7459.7734375, "Shape__Length": 434.592554599943, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9268903583582, 32.777418257321, -79.9261835587941, 32.7778455780411], "geometry": {"coordinates": [[[-79.9268828157782, 32.777418257321], [-79.9261835587941, 32.7774637432741], [-79.9261991988557, 32.7778455780411], [-79.9268903583582, 32.7777893278721], [-79.9268851078943, 32.7776605564898], [-79.9268828157782, 32.777418257321]]], "type": "Polygon"}, "id": "68", "properties": {"OBJECTID": 539, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3858.81640625, "Shape__Length": 255.098781052734, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9328208651416, 32.7767401894649, -79.9311961918066, 32.7779791464568], "geometry": {"coordinates": [[[-79.93162740353, 32.776838063308], [-79.9311961918066, 32.7768792395287], [-79.9313225128855, 32.7779791464568], [-79.9328208651416, 32.7777568467845], [-79.932715157155, 32.7767401894649], [-79.9323978339228, 32.7767668059319], [-79.9323831974945, 32.7767671237027], [-79.9324064135282, 32.7769842726754], [-79.9321368724842, 32.7770076900078], [-79.9321150621973, 32.7767956720655], [-79.93162740353, 32.776838063308]]], "type": "Polygon"}, "id": "69", "properties": {"OBJECTID": 541, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 23003.32421875, "Shape__Length": 678.019604946536, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9278667018163, 32.777724687443, -79.9275090233085, 32.7780080758398], "geometry": {"coordinates": [[[-79.9278324331951, 32.777724687443], [-79.9275441188319, 32.7777508205336], [-79.9275090233085, 32.7777536241872], [-79.9275334735439, 32.777884373843], [-79.9275473871148, 32.7779573434007], [-79.9276773306984, 32.77794633749], [-79.9276798550617, 32.7780080758398], [-79.9278667018163, 32.7779939332071], [-79.9278571628148, 32.7778565442268], [-79.9278324331951, 32.777724687443]]], "type": "Polygon"}, "id": "70", "properties": {"OBJECTID": 543, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1157.609375, "Shape__Length": 143.010408492944, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9278324331951, 32.7768917994014, -79.9270984317566, 32.7780497794509], "geometry": {"coordinates": [[[-79.9278324331951, 32.777724687443], [-79.9278180069643, 32.7776580668601], [-79.9278049622876, 32.7775976061982], [-79.9277941373319, 32.7775361648547], [-79.9276750602929, 32.7768917994014], [-79.927378021802, 32.7769187853929], [-79.9271057645854, 32.7769435196857], [-79.9270984317566, 32.7772359116511], [-79.9271035169539, 32.7776507429403], [-79.9271108156826, 32.7777869516765], [-79.9271191243372, 32.7779931751707], [-79.927128854308, 32.7780497794509], [-79.9276798550617, 32.7780080758398], [-79.9276773306984, 32.77794633749], [-79.9275473871148, 32.7779573434007], [-79.9275334735439, 32.777884373843], [-79.9275090233085, 32.7777536241872], [-79.9275441188319, 32.7777508205336], [-79.9278324331951, 32.777724687443]]], "type": "Polygon"}, "id": "71", "properties": {"OBJECTID": 544, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9850.310546875, "Shape__Length": 469.814340796742, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.934511156482, 32.7776733031762, -79.933710757502, 32.7781469679338], "geometry": {"coordinates": [[[-79.9344660204792, 32.7776733031762], [-79.933710757502, 32.7777436299554], [-79.9337427699224, 32.7780269860062], [-79.9337605534612, 32.7780251984546], [-79.933774325693, 32.7781469679338], [-79.934511156482, 32.7780729035123], [-79.9344660204792, 32.7776733031762]]], "type": "Polygon"}, "id": "72", "properties": {"OBJECTID": 545, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4493.775390625, "Shape__Length": 276.217160107579, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9311194285571, 32.7774855872337, -79.9303388129384, 32.7781196648219], "geometry": {"coordinates": [[[-79.9303388129384, 32.777568303391], [-79.9303771433975, 32.7778245929574], [-79.9304191095368, 32.7778199574044], [-79.9304219674018, 32.7778390345662], [-79.9304060464139, 32.7778409308068], [-79.9304382139497, 32.7780422636352], [-79.9303763031798, 32.7780596823813], [-79.9303963660978, 32.7781196648219], [-79.9311194285571, 32.7780282456068], [-79.9310797859273, 32.7777266203811], [-79.9310378238573, 32.7774855872337], [-79.9307027028938, 32.7775290055313], [-79.9306312552988, 32.7775426687667], [-79.9303388129384, 32.777568303391]]], "type": "Polygon"}, "id": "73", "properties": {"OBJECTID": 546, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5642.982421875, "Shape__Length": 318.122075359854, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9269015948692, 32.7778581282203, -79.9262019968733, 32.7781015287314], "geometry": {"coordinates": [[[-79.9268931572514, 32.7778581282203], [-79.9262019968733, 32.7779144054577], [-79.9262096522609, 32.7781015287314], [-79.9269015948692, 32.7780469573569], [-79.9268931572514, 32.7778581282203]]], "type": "Polygon"}, "id": "74", "properties": {"OBJECTID": 547, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1922.55078125, "Shape__Length": 204.473212841603, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.933774325693, 32.7777436299554, -79.9329732805036, 32.7782225453125], "geometry": {"coordinates": [[[-79.933710757502, 32.7777436299554], [-79.9329732805036, 32.7778122999427], [-79.9330222487708, 32.7782225453125], [-79.933774325693, 32.7781469679338], [-79.9337605534612, 32.7780251984546], [-79.9337427699224, 32.7780269860062], [-79.933710757502, 32.7777436299554]]], "type": "Polygon"}, "id": "75", "properties": {"OBJECTID": 548, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4503.7734375, "Shape__Length": 277.378389170776, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9304382139497, 32.777568303391, -79.9294020203899, 32.7782634768344], "geometry": {"coordinates": [[[-79.9303388129384, 32.777568303391], [-79.9299798703827, 32.7776023108929], [-79.9294020203899, 32.7776660606859], [-79.9294450640659, 32.7782634768344], [-79.9303963660978, 32.7781196648219], [-79.9303763031798, 32.7780596823813], [-79.9304382139497, 32.7780422636352], [-79.9304060464139, 32.7778409308068], [-79.9304219674018, 32.7778390345662], [-79.9304191095368, 32.7778199574044], [-79.9303771433975, 32.7778245929574], [-79.9303388129384, 32.777568303391]]], "type": "Polygon"}, "id": "76", "properties": {"OBJECTID": 549, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8271.873046875, "Shape__Length": 377.588912522131, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9292835981962, 32.7776820490194, -79.9279914490982, 32.7784659968393], "geometry": {"coordinates": [[[-79.9292407269096, 32.7776820490194], [-79.9279914490982, 32.7777877115653], [-79.9280198017628, 32.7779002160089], [-79.9280414113855, 32.7780161550709], [-79.9280596323876, 32.7781382050363], [-79.9281222885733, 32.7784659968393], [-79.9292835981962, 32.7782881222495], [-79.9292407269096, 32.7776820490194]]], "type": "Polygon"}, "id": "77", "properties": {"OBJECTID": 552, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11566.1171875, "Shape__Length": 442.569091523748, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.926916510984, 32.778127881113, -79.9262257966713, 32.7784859896713], "geometry": {"coordinates": [[[-79.9265073425433, 32.7781601967956], [-79.9262257966713, 32.7781831170365], [-79.9262363894075, 32.7784859896713], [-79.9265114538856, 32.7784636095371], [-79.926916510984, 32.7784306317355], [-79.9269041913856, 32.778127881113], [-79.9265073425433, 32.7781601967956]]], "type": "Polygon"}, "id": "78", "properties": {"OBJECTID": 553, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3040.9609375, "Shape__Length": 232.162843957355, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9279621885496, 32.7780211092577, -79.9276191973391, 32.7785362741681], "geometry": {"coordinates": [[[-79.9276191973391, 32.778040244683], [-79.9276325999687, 32.7781910598165], [-79.9276382040511, 32.7782541111835], [-79.9276469555883, 32.7783525953088], [-79.9276635394644, 32.7785362741681], [-79.9279621885496, 32.778490542461], [-79.9279315262651, 32.778327214648], [-79.9279132393065, 32.7782332364225], [-79.9279010678379, 32.7781706803401], [-79.9278888953857, 32.7781081188371], [-79.9278719651852, 32.7780211092577], [-79.9276548489513, 32.7780375450733], [-79.9276191973391, 32.778040244683]]], "type": "Polygon"}, "id": "79", "properties": {"OBJECTID": 554, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1996.9296875, "Shape__Length": 190.864645352248, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9276635394644, 32.778040244683, -79.9271299799821, 32.7786088848239], "geometry": {"coordinates": [[[-79.9276191973391, 32.778040244683], [-79.9274997112589, 32.7780499443704], [-79.9273362069876, 32.7780616667817], [-79.9271299799821, 32.7780772772762], [-79.9271319494717, 32.7781268026249], [-79.9271358884796, 32.7782258515196], [-79.9271380716738, 32.7782807473714], [-79.9271425594293, 32.7783936072836], [-79.9271502139745, 32.7785860918964], [-79.9271534569654, 32.7785922771699], [-79.9271606693791, 32.7785985261133], [-79.9271718825486, 32.7786048083382], [-79.9271811461371, 32.7786082435042], [-79.927188460557, 32.7786088848239], [-79.9274144426932, 32.7785744177923], [-79.9276635394644, 32.7785362741681], [-79.9276469555883, 32.7783525953088], [-79.9276382040511, 32.7782541111835], [-79.9276325999687, 32.7781910598165], [-79.9276191973391, 32.778040244683]]], "type": "Polygon"}, "id": "80", "properties": {"OBJECTID": 556, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3833.703125, "Shape__Length": 247.19188031751, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9498928521152, 32.7753652339441, -79.9459407244408, 32.7788409275955], "geometry": {"coordinates": [[[-79.9478089049398, 32.7770087154195], [-79.9478471112724, 32.7770782814186], [-79.9468475221237, 32.7774706569972], [-79.946849119826, 32.7774729902685], [-79.946850718619, 32.7774754101254], [-79.9468531027742, 32.7774800705859], [-79.9468547015443, 32.7774824038664], [-79.9468563003362, 32.7774847353433], [-79.9468578980391, 32.7774870686146], [-79.9468594978659, 32.777489402806], [-79.946861096669, 32.7774917333812], [-79.9468626944061, 32.7774941523269], [-79.9468642931767, 32.7774964856073], [-79.9468658929699, 32.777498734124], [-79.946867490695, 32.7775010655917], [-79.9468690905332, 32.7775033988812], [-79.9468706892824, 32.777505733965], [-79.9468722880534, 32.7775080672453], [-79.9468738868245, 32.7775104005256], [-79.9468754856175, 32.7775127320023], [-79.9468770854112, 32.7775149805189], [-79.9468786841826, 32.7775173137991], [-79.9468802829757, 32.7775196452758], [-79.9468818827698, 32.7775218937924], [-79.9468834815414, 32.7775242270725], [-79.9468850792674, 32.77752655854], [-79.9468866801291, 32.7775288070657], [-79.9468882789336, 32.7775311376405], [-79.946889878728, 32.777533386157], [-79.9468914774892, 32.7775357203388], [-79.9468930773164, 32.77753796615], [-79.946894677111, 32.7775402146663], [-79.9468962759159, 32.7775425452411], [-79.9468986890852, 32.7775448007595], [-79.9469002889128, 32.7775470465706], [-79.9469018876745, 32.7775493807522], [-79.9469034874696, 32.7775516292685], [-79.9469050872974, 32.7775538750796], [-79.9469066870927, 32.7775561235958], [-79.9469082869206, 32.7775583694069], [-79.9469098867161, 32.7775606179231], [-79.9469122999188, 32.777562870736], [-79.946913898692, 32.7775652040157], [-79.9469154984877, 32.7775674525318], [-79.9469170993385, 32.7775696135791], [-79.9469186991671, 32.77757185939], [-79.946920298963, 32.7775741079061], [-79.9469227121664, 32.7775763607187], [-79.9469243119625, 32.7775786092348], [-79.9469259117914, 32.7775808550456], [-79.9469275115877, 32.7775831035616], [-79.94692911245, 32.777585263707], [-79.9469315256539, 32.7775875165195], [-79.9469331254505, 32.7775897650354], [-79.9469347263022, 32.7775919260825], [-79.9469363260989, 32.7775941745984], [-79.9469379269616, 32.7775963347437], [-79.9469403401335, 32.7775985902612], [-79.9469419409855, 32.7776007513082], [-79.9469435408152, 32.7776029971188], [-79.9469451416348, 32.777605160871], [-79.9469475548397, 32.7776074136831], [-79.9469491557029, 32.7776095738283], [-79.9469507565663, 32.7776117339734], [-79.9469531697388, 32.7776139894908], [-79.9469547705915, 32.7776161505376], [-79.9469563714225, 32.7776183133878], [-79.9469579722752, 32.7776204744346], [-79.9469603865033, 32.777622642483], [-79.9469619873672, 32.777624802628], [-79.9469635882311, 32.777626962773], [-79.9469660024268, 32.7776291335265], [-79.9469676032909, 32.7776312936714], [-79.9469692041443, 32.777633454718], [-79.9469716183403, 32.7776356254714], [-79.9469732192047, 32.7776377856162], [-79.9469748200691, 32.7776399457611], [-79.9469772342981, 32.7776421138091], [-79.9469788361851, 32.7776441891903], [-79.9469812503817, 32.7776463599435], [-79.9469828512465, 32.7776485200882], [-79.9469844521005, 32.7776506811346], [-79.9469868673742, 32.7776527626154], [-79.9469884682284, 32.7776549236618], [-79.9469908834914, 32.7776570060443], [-79.9469924843131, 32.7776591697958], [-79.9469940862008, 32.7776612451768], [-79.9469965004418, 32.7776634123227], [-79.9469981023296, 32.7776654877037], [-79.9470005175931, 32.7776675700859], [-79.9470021184479, 32.7776697311321], [-79.9470045337225, 32.7776718126126], [-79.9470061355999, 32.7776738888951], [-79.9470077374882, 32.777675964276], [-79.9470101517298, 32.7776781314216], [-79.9470117536183, 32.7776802068024], [-79.9470141688826, 32.7776822891843], [-79.9470157707712, 32.7776843645651], [-79.9470181860357, 32.777686446947], [-79.9470197879245, 32.7776885223277], [-79.9470222031891, 32.7776906047095], [-79.9470238050781, 32.7776926800901], [-79.9470262213762, 32.7776946768065], [-79.9470278232545, 32.7776967530888], [-79.9470302385196, 32.7776988354705], [-79.9470318404089, 32.777700910851], [-79.9470342567074, 32.7777029075673], [-79.9470366719728, 32.7777049899488], [-79.9470382738624, 32.7777070653293], [-79.9470406901938, 32.7777090593402], [-79.9470422920727, 32.7777111356223], [-79.9470447083718, 32.7777131323383], [-79.9470463102617, 32.7777152077187], [-79.9470503294734, 32.7777191950513], [-79.9470527447396, 32.7777212774325], [-79.9470567650519, 32.7777252620689], [-79.9470607821639, 32.7777293350574], [-79.9470631984638, 32.7777313317731], [-79.9470672177096, 32.7777353164], [-79.9470696340098, 32.7777373131156], [-79.9470736532127, 32.7777413013492], [-79.9470760695459, 32.7777432953595], [-79.947080089826, 32.7777471943206], [-79.947082506116, 32.7777491919376], [-79.9470865263858, 32.7777530918003], [-79.947088942687, 32.7777550885155], [-79.9470929639921, 32.7777589910924], [-79.947095379248, 32.7777609859948], [-79.9470993994971, 32.7777648876605], [-79.9471018179213, 32.7777667969159], [-79.947104234178, 32.777768708858], [-79.9471082544605, 32.7777726078182], [-79.9471106728851, 32.7777745170734], [-79.9471130891422, 32.7777764290152], [-79.9471171104478, 32.7777802432117], [-79.9471195288727, 32.7777821524666], [-79.9471219451303, 32.7777840644084], [-79.9471259664366, 32.7777878786044], [-79.9471283848619, 32.7777897878592], [-79.9471308011199, 32.7777916998008], [-79.9471332184781, 32.7777936090463], [-79.9471372418749, 32.7777973384877], [-79.9471396581333, 32.7777992504291], [-79.947142076525, 32.7778010740091], [-79.9471444938728, 32.7778029841561], [-79.947148516214, 32.7778067126861], [-79.947150934606, 32.777808536266], [-79.9471533519216, 32.777810449118], [-79.9471557713812, 32.777812272707], [-79.9471581887061, 32.7778140962775], [-79.947160606022, 32.7778160091294], [-79.9471646304868, 32.7778196501993], [-79.9471670478121, 32.7778214737696], [-79.9471694661723, 32.7778233000543], [-79.9471718845544, 32.7778251245354], [-79.9471743040149, 32.777826948124], [-79.9471767212971, 32.7778287753011], [-79.9471791396903, 32.7778305988804], [-79.9471831641457, 32.7778342408514], [-79.9471855825048, 32.777835978756], [-79.9471880008876, 32.7778378032369], [-79.9471904203052, 32.7778396304321], [-79.9471928397321, 32.7778413683457], [-79.9471952570477, 32.7778431928173], [-79.9471976754309, 32.7778450172979], [-79.9472000959255, 32.7778467552206], [-79.9472025142745, 32.7778484940267], [-79.9472049326253, 32.7778503212125], [-79.9472073520745, 32.7778520573224], [-79.9472097725586, 32.7778537961466], [-79.9472121898423, 32.7778556233231], [-79.9472146092701, 32.7778573612363], [-79.9472170297545, 32.7778591000604], [-79.9472194491607, 32.7778608397771], [-79.9472218675105, 32.7778625785827], [-79.9472242869386, 32.7778643164958], [-79.9472267074234, 32.7778660553198], [-79.94722912683, 32.7778677950362], [-79.947231545191, 32.77786953294], [-79.9472339646087, 32.7778712717545], [-79.947236385083, 32.7778730114801], [-79.9472388055338, 32.7778746646292], [-79.947241223917, 32.7778764007293], [-79.9472436444025, 32.7778781395529], [-79.9472460648536, 32.777879792702], [-79.9472484831935, 32.7778815324089], [-79.9472509036449, 32.7778831855578], [-79.9472533241307, 32.7778849243812], [-79.9472557445822, 32.7778865775301], [-79.9472581629226, 32.7778883172368], [-79.9472605833742, 32.7778899703856], [-79.9472630049152, 32.77789162174], [-79.9472654253671, 32.7778932748886], [-79.9472678447516, 32.7778949280281], [-79.9472702652273, 32.7778966677529], [-79.9472726856794, 32.7778983209014], [-79.9472759184637, 32.7778999792367], [-79.9472783389161, 32.7779016323851], [-79.947280760436, 32.7779032855427], [-79.9472831819433, 32.7779048512222], [-79.9472856013176, 32.777906505263], [-79.9472880228268, 32.7779081593222], [-79.9472904432797, 32.7779098124704], [-79.9472928647873, 32.7779113781496], [-79.947295284162, 32.7779130321903], [-79.947298519093, 32.7779146896416], [-79.9473009405683, 32.777916258026], [-79.9473033599542, 32.7779179111647], [-79.9473057825296, 32.777919476853], [-79.9473082029722, 32.7779211309025], [-79.9473106244478, 32.7779226992867], [-79.9473130448887, 32.7779242649564], [-79.94731628081, 32.7779258403489], [-79.9473187012855, 32.7779274916931], [-79.9473211216941, 32.7779290600679], [-79.9473235432028, 32.7779306257466], [-79.9473259657464, 32.7779321941397], [-79.9473283872553, 32.7779337598182], [-79.9473316210423, 32.777935335192], [-79.9473340436187, 32.7779369008796], [-79.9473364651061, 32.7779384683616], [-79.9473388876374, 32.7779399492764], [-79.9473413080793, 32.7779415149456], [-79.9473445440017, 32.7779430903373], [-79.9473469665332, 32.777944571252], [-79.9473493869536, 32.7779461387245], [-79.9473518095308, 32.7779477044118], [-79.9473550454407, 32.7779491923253], [-79.9473574658505, 32.7779507606994], [-79.9473598894499, 32.777952241623], [-79.9473623119929, 32.7779537216356], [-79.9473655468486, 32.7779552970176], [-79.9478155323784, 32.7782136052801], [-79.9489443936923, 32.7788409275955], [-79.9489477051463, 32.7788361456647], [-79.9489552448087, 32.778817914038], [-79.9489627690161, 32.7788011432487], [-79.948964510581, 32.7787916222205], [-79.9489679099227, 32.7787795397976], [-79.9489729898269, 32.7787630032265], [-79.9489748771389, 32.7787412870496], [-79.9489792284424, 32.7787177892761], [-79.9489868467098, 32.7786931156221], [-79.9489976533569, 32.7786738821668], [-79.9490091576198, 32.7786642718598], [-79.9490166341875, 32.7786513677219], [-79.9490306509618, 32.7786357673741], [-79.9490439422198, 32.7786128604471], [-79.9490677878085, 32.7785916774097], [-79.949098140502, 32.7785705466598], [-79.9491260188811, 32.7785522318167], [-79.9491579052083, 32.778538850157], [-79.9491922389596, 32.7785248843813], [-79.9492274222469, 32.7785079209829], [-79.9492552178786, 32.7784964773736], [-79.9492814187954, 32.7784823560441], [-79.9493035476219, 32.7784686290075], [-79.9493225055717, 32.7784480054657], [-79.9493324584481, 32.7784321122564], [-79.9493433115355, 32.7784090995855], [-79.9493566305518, 32.7783837876739], [-79.9493707392174, 32.7783606316126], [-79.9493823426262, 32.7783427757551], [-79.9493964171097, 32.7783222816107], [-79.9494202760148, 32.7783000669232], [-79.9494522759232, 32.778277234946], [-79.9494810140108, 32.7782550630494], [-79.9494900924749, 32.7782442306247], [-79.9494999088743, 32.7782396749862], [-79.9495122139603, 32.7782311059135], [-79.9495286231647, 32.778219478792], [-79.9495434521282, 32.778203971036], [-79.9495558398812, 32.7781885306959], [-79.9495699122744, 32.7781682935371], [-79.949580694989, 32.7781510330396], [-79.9495947683902, 32.7781307111145], [-79.9496047531866, 32.7781121577489], [-79.9496180039418, 32.7780925980218], [-79.9496312577614, 32.7780727831007], [-79.9496436310403, 32.7780585429686], [-79.9496552632436, 32.7780382857508], [-79.9496701375991, 32.7780190005885], [-79.9496859141873, 32.7779923362511], [-79.9497049969922, 32.7779613182877], [-79.9497240043781, 32.77793656832], [-79.9497372478009, 32.7779176136483], [-79.9497611002777, 32.7778958281147], [-79.9497833343009, 32.7778734262574], [-79.9498014321388, 32.7778566605199], [-79.9498171269957, 32.777836696089], [-79.9498377156543, 32.7778158249383], [-79.9498575125283, 32.777793062155], [-79.9498724477399, 32.7777686217088], [-79.9498832913287, 32.7777463799799], [-79.9498925866176, 32.777717512715], [-79.9498928521152, 32.7776954399099], [-79.9498906082591, 32.7776790126871], [-79.9498834707258, 32.7776637483059], [-79.9498723862043, 32.7776384820753], [-79.9498612861459, 32.7776145080379], [-79.9498540763186, 32.7776052546576], [-79.9498420379428, 32.7775917500668], [-79.9498260276856, 32.7775701363593], [-79.9498156553026, 32.7775533841356], [-79.9498085249909, 32.7775374326148], [-79.9497997917472, 32.7775195761876], [-79.9497878350186, 32.7774992859943], [-79.9497774718955, 32.7774815878233], [-79.949759843208, 32.7774593604934], [-79.9497430506403, 32.7774352500961], [-79.9497310752735, 32.7774164225112], [-79.9497174380824, 32.7774004971876], [-79.9497078418781, 32.7773867583319], [-79.9496942036327, 32.7773709213763], [-79.9496788828417, 32.7773597090053], [-79.9496644178133, 32.7773449805159], [-79.9496515454045, 32.7773331028678], [-79.9496329742383, 32.7773216046585], [-79.9496192853621, 32.777309977921], [-79.949603217389, 32.7772932588415], [-79.9495903398428, 32.7772818095137], [-79.9495774633306, 32.7772702745192], [-79.9495588900935, 32.7772589503347], [-79.9495427901015, 32.777244894087], [-79.9495242933677, 32.7772272126269], [-79.9495033338279, 32.7772113966512], [-79.9494872534497, 32.777195711853], [-79.9494670896847, 32.7771813663807], [-79.9494541924854, 32.7771714644162], [-79.9494444837367, 32.7771670838025], [-79.94942989889, 32.7771624069957], [-79.9494177789232, 32.7771555157099], [-79.9493976214008, 32.7771407419087], [-79.9493790420834, 32.7771299271804], [-79.9493637213169, 32.7771186308991], [-79.9493508707336, 32.7771050345115], [-79.9493307287015, 32.777088798058], [-79.9493121834688, 32.7770751527564], [-79.9493009368678, 32.7770633738072], [-79.9492767176987, 32.7770480474478], [-79.9492573973804, 32.7770312156151], [-79.9492428787372, 32.7770210408747], [-79.9492380346667, 32.7770179068791], [-79.9492210924449, 32.7770062494464], [-79.9492041047085, 32.7769983739107], [-79.9491936404712, 32.7769891800142], [-79.9491759272753, 32.7769739942922], [-79.9491581654819, 32.7769628465612], [-79.9491469385619, 32.7769494354479], [-79.9491283499709, 32.7769393970803], [-79.9491049856013, 32.7769206411416], [-79.9490856539578, 32.7769047552076], [-79.9490711570182, 32.7768926921933], [-79.9490607000478, 32.7768828968247], [-79.9490462083365, 32.7768704000706], [-79.9490284465916, 32.7768592514191], [-79.9490139496565, 32.7768471893], [-79.9489873153098, 32.7768297805413], [-79.9489672220681, 32.7768095908078], [-79.9489527933652, 32.7767917737652], [-79.9489415603252, 32.7767789641032], [-79.9489278747418, 32.7767670784895], [-79.9489093440868, 32.7767521445312], [-79.9488940649047, 32.7767375821064], [-79.9488820091263, 32.7767253677945], [-79.9488650845861, 32.7767122503952], [-79.9488529947494, 32.7767029541215], [-79.9488408945936, 32.7766946037814], [-79.9488207020907, 32.7766825747651], [-79.9488061566407, 32.7766746353876], [-79.9487932358347, 32.7766667063618], [-79.9487803543503, 32.7766556005126], [-79.9487667029237, 32.7766408816129], [-79.9487514403325, 32.7766249449182], [-79.9487321109037, 32.7766088857947], [-79.9487184284451, 32.7765966565855], [-79.9487055190883, 32.7765879556792], [-79.9486901923255, 32.7765771724046], [-79.9486764716581, 32.7765682056965], [-79.9486546504273, 32.7765564214812], [-79.948635257885, 32.7765456059625], [-79.9486239483618, 32.7765390651612], [-79.948612612973, 32.7765346723044], [-79.9485948006373, 32.7765277347177], [-79.9485851168176, 32.7765212935596], [-79.9485673490017, 32.7765106597354], [-79.9485471483067, 32.77649940618], [-79.9485220777679, 32.7764872522175], [-79.9484978030498, 32.7764765624535], [-79.948474367562, 32.7764637326326], [-79.9484541151803, 32.7764567722474], [-79.9484347144413, 32.776446641118], [-79.9484079903226, 32.7764367049558], [-79.9483885781639, 32.7764274340701], [-79.9483683423511, 32.7764190994185], [-79.9483497022615, 32.7764134415966], [-79.9483269766765, 32.7764091221416], [-79.9483059243923, 32.7764010392867], [-79.9482775580408, 32.7763923785995], [-79.9482572819256, 32.7763874795692], [-79.9482394872684, 32.7763790793081], [-79.9482233441185, 32.7763685477817], [-79.9482119591609, 32.7763683615153], [-79.9482022453492, 32.7763644136388], [-79.9481836331532, 32.7763562651667], [-79.9481585151538, 32.7763480580469], [-79.9481374152925, 32.7763439265889], [-79.9481220327802, 32.7763378683715], [-79.9481082946189, 32.7763303615174], [-79.9480913122751, 32.7763220575011], [-79.9480759453394, 32.7763147070841], [-79.9480622278511, 32.7763054851149], [-79.9480485155702, 32.7762958312105], [-79.948034846732, 32.7762825721472], [-79.9480122402647, 32.7762684597439], [-79.9479872567937, 32.7762490917502], [-79.9479759660035, 32.776241003503], [-79.9479630908795, 32.7762293835764], [-79.9479485859136, 32.7762179200781], [-79.9479291646208, 32.7762095923583], [-79.9479154202697, 32.7762026021797], [-79.947899243094, 32.7761949886512], [-79.9478855090361, 32.7761870561416], [-79.9478733676409, 32.7761821413365], [-79.9478571614439, 32.7761768479708], [-79.9478385731765, 32.7761668085063], [-79.9478199280021, 32.7761615798321], [-79.9478029125913, 32.7761559359004], [-79.9477826593261, 32.7761491476459], [-79.9477583340357, 32.7761425804826], [-79.9477299740175, 32.7761334056767], [-79.9477113257352, 32.7761283474057], [-79.9476983585387, 32.7761243706012], [-79.9476797299114, 32.7761176819792], [-79.9476554439974, 32.7761079379739], [-79.9476343928915, 32.7760997684368], [-79.9476173982463, 32.7760924923387], [-79.9476043937869, 32.7760916075913], [-79.9475913520438, 32.7760938158115], [-79.9475782606455, 32.7761001431793], [-79.9475635393708, 32.7761067180554], [-79.9475495879845, 32.7761169059862], [-79.9475340492346, 32.7761238147188], [-79.9475250567025, 32.7761275169362], [-79.9475152994439, 32.7761271777695], [-79.9475072093365, 32.7761234990261], [-79.9474991792697, 32.7761148399714], [-79.947491982253, 32.7761045548625], [-79.9474831895529, 32.776091681289], [-79.9474784408736, 32.7760807327529], [-79.9474688700399, 32.7760649305421], [-79.9474625609466, 32.7760484682958], [-79.9474537610054, 32.7760361961809], [-79.9474409129207, 32.7760223416873], [-79.9474296429099, 32.7760125364767], [-79.9474200337698, 32.7759999128962], [-79.9474127891099, 32.7759935810117], [-79.9474014269559, 32.7759914189481], [-79.9473884929318, 32.7759846936068], [-79.9473731446606, 32.7759757163534], [-79.9473594377174, 32.7759657188184], [-79.9473506295468, 32.7759541311169], [-79.9473418275759, 32.775942029423], [-79.9473354521927, 32.7759310677852], [-79.9473355754441, 32.7759208456589], [-79.9473332617275, 32.7759103446378], [-79.947330975954, 32.7758975261444], [-79.9473318970171, 32.7758886005057], [-79.9473336065842, 32.775881743244], [-79.947331272113, 32.7758729636447], [-79.9473289728785, 32.775861173126], [-79.9473282951994, 32.7758499133117], [-79.9473251836332, 32.7758382077896], [-79.947318027052, 32.7758245727063], [-79.9473091878157, 32.7758155630771], [-79.9472978526087, 32.7758111682953], [-79.9472888973824, 32.7758117784283], [-79.9472872240313, 32.7758156319929], [-79.9472871525845, 32.7758215573273], [-79.9472910381232, 32.7758366243321], [-79.9472916826547, 32.7758505442708], [-79.9472882283206, 32.7758672661054], [-79.9472783571959, 32.7758763726477], [-79.9472677327957, 32.7758804891737], [-79.9472530716103, 32.775882081898], [-79.9472400961839, 32.7758787037913], [-79.9472279838227, 32.7758712992086], [-79.9472102245575, 32.7758599807673], [-79.9471941199821, 32.7758463570479], [-79.9471796339313, 32.7758335156184], [-79.9471635220673, 32.7758204085829], [-79.9471441755153, 32.7758058966052], [-79.9471321014929, 32.7757952259011], [-79.9471199922735, 32.7757875625084], [-79.9471095656908, 32.7757752763681], [-79.947094315982, 32.7757582203995], [-79.9470871832381, 32.7757426122954], [-79.9470848312103, 32.7757352908054], [-79.947087370725, 32.7757270662961], [-79.9470849948593, 32.7757217214204], [-79.9470826904872, 32.7757104485051], [-79.9470795790008, 32.7756986509903], [-79.9470788878589, 32.7756885102343], [-79.9470757794515, 32.7756764575269], [-79.9470799788267, 32.7756654985157], [-79.9470792535044, 32.7756581919288], [-79.9470818313756, 32.7756468753622], [-79.9470827669456, 32.7756366602281], [-79.9470812655685, 32.775626253672], [-79.94708382993, 32.7756159686868], [-79.9470815939546, 32.7755990247282], [-79.9470785425033, 32.7755822496082], [-79.9470721848083, 32.7755698262365], [-79.947062547819, 32.7755595201006], [-79.9470497060981, 32.7755451488697], [-79.9470416999366, 32.7755345158763], [-79.9470361587271, 32.7755218407044], [-79.9470266398249, 32.7755017443737], [-79.9470179353372, 32.7754815675747], [-79.9470132416724, 32.7754660652339], [-79.9470019655168, 32.7754567793867], [-79.9469890368015, 32.7754496229719], [-79.9469696374896, 32.7754394059458], [-79.9469494383143, 32.7754280637575], [-79.9469178459478, 32.7754171402373], [-79.9468951300378, 32.7754121343018], [-79.9468433581979, 32.7753882382157], [-79.9468175049275, 32.7753735844935], [-79.9468054040832, 32.7753652339441], [-79.9459407244408, 32.7757014716424], [-79.9460830415177, 32.7760414013728], [-79.9462174147223, 32.7763655426447], [-79.9472406550782, 32.7759673606585], [-79.9478089049398, 32.7770087154195]]], "type": "Polygon"}, "id": "81", "properties": {"OBJECTID": 558, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 74274.990234375, "Shape__Length": 1608.41068823044, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9269164620296, 32.7785207262486, -79.9262385835014, 32.7787400952259], "geometry": {"coordinates": [[[-79.9269120119886, 32.7785207262486], [-79.9262385835014, 32.7785740650842], [-79.9262496178315, 32.7787400952259], [-79.9269164620296, 32.7786316811664], [-79.9269120119886, 32.7785207262486]]], "type": "Polygon"}, "id": "82", "properties": {"OBJECTID": 560, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1377.1328125, "Shape__Length": 187.621507049555, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9277971349315, 32.7786255243086, -79.9271558602958, 32.7792873226202], "geometry": {"coordinates": [[[-79.9277190936281, 32.7786255243086], [-79.9275513675322, 32.7786512137174], [-79.9271558602958, 32.7787117887825], [-79.9271616266285, 32.7788533482103], [-79.9271677343766, 32.7790032652411], [-79.9271798502327, 32.7792873226202], [-79.9274849458115, 32.7792425549277], [-79.9276272360882, 32.7792216757774], [-79.9276593098332, 32.7792169697779], [-79.927787520307, 32.7791981566794], [-79.9277971349315, 32.7791967466058], [-79.9277696480965, 32.7790502414579], [-79.9277665014875, 32.7790387244909], [-79.9277535502214, 32.7789913313329], [-79.9277395110274, 32.7789156984732], [-79.9277293996638, 32.7787719852884], [-79.9277190936281, 32.7786255243086]]], "type": "Polygon"}, "id": "83", "properties": {"OBJECTID": 567, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4977.41015625, "Shape__Length": 285.996807736854, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9330087047073, 32.7778393031857, -79.9313278753036, 32.7793329132962], "geometry": {"coordinates": [[[-79.9314846124414, 32.7793329132962], [-79.9319954849068, 32.7792843509804], [-79.9325713142058, 32.7792295895709], [-79.9325768000183, 32.7792705672348], [-79.9326802338431, 32.7792607333507], [-79.9330087047073, 32.7792295030093], [-79.932997073313, 32.7791322315116], [-79.9329838814016, 32.7791333808235], [-79.9328294234008, 32.7778393031857], [-79.9323951559398, 32.7779037324838], [-79.932192630998, 32.7779363139625], [-79.9319663711865, 32.7779659399981], [-79.9313278753036, 32.7780620692645], [-79.9314103658695, 32.7787252943557], [-79.9314434347473, 32.7789992081915], [-79.9314846124414, 32.7793329132962]]], "type": "Polygon"}, "id": "84", "properties": {"OBJECTID": 568, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 29749.2421875, "Shape__Length": 701.113455270869, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.928113057941, 32.7785855601582, -79.9277190936281, 32.7793208979484], "geometry": {"coordinates": [[[-79.927787520307, 32.7791981566794], [-79.9277954791801, 32.7792388153586], [-79.927811554089, 32.7793208979484], [-79.928113057941, 32.7792761504199], [-79.9279800251568, 32.7785855601582], [-79.9277190936281, 32.7786255243086], [-79.9277293996638, 32.7787719852884], [-79.9277395110274, 32.7789156984732], [-79.9277535502214, 32.7789913313329], [-79.9277665014875, 32.7790387244909], [-79.9277696480965, 32.7790502414579], [-79.9277971349315, 32.7791967466058], [-79.927787520307, 32.7791981566794]]], "type": "Polygon"}, "id": "85", "properties": {"OBJECTID": 569, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3019.47265625, "Shape__Length": 250.053541634917, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9269473067197, 32.7788194776171, -79.925693731825, 32.7793832628521], "geometry": {"coordinates": [[[-79.9263082570621, 32.7792858328299], [-79.9263297260958, 32.779282232643], [-79.9265197443877, 32.7792503735481], [-79.9269473067197, 32.7791786842848], [-79.9269323938496, 32.7788194776171], [-79.9256978448481, 32.7790223071122], [-79.9256945477513, 32.7790551401582], [-79.925693731825, 32.7790948119713], [-79.9256965588921, 32.7791294979612], [-79.9257271591722, 32.7793832628521], [-79.9260538624239, 32.7793284914046], [-79.9263082570621, 32.7792858328299]]], "type": "Polygon"}, "id": "86", "properties": {"OBJECTID": 572, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6610.166015625, "Shape__Length": 374.109116446565, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.927811554089, 32.7791981566794, -79.9271798502327, 32.7794136043937], "geometry": {"coordinates": [[[-79.9271798502327, 32.7792873226202], [-79.9271864780117, 32.7794136043937], [-79.9276357607526, 32.7793463715858], [-79.9276683575112, 32.7793416764809], [-79.927811554089, 32.7793208979484], [-79.9277954791801, 32.7792388153586], [-79.927787520307, 32.7791981566794], [-79.9276593098332, 32.7792169697779], [-79.9276272360882, 32.7792216757774], [-79.9274849458115, 32.7792425549277], [-79.9271798502327, 32.7792873226202]]], "type": "Polygon"}, "id": "87", "properties": {"OBJECTID": 573, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1148.982421875, "Shape__Length": 172.532148366374, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9312712364329, 32.7781073181181, -79.9301890435462, 32.77955930455], "geometry": {"coordinates": [[[-79.9302946301803, 32.7782330495358], [-79.9303141227993, 32.7783950760002], [-79.9303301899309, 32.7783929357492], [-79.9303334659651, 32.7784203152607], [-79.9303173977612, 32.7784224555029], [-79.9303342008028, 32.7785621317078], [-79.9303148743757, 32.7785647115129], [-79.9303155321623, 32.778570185995], [-79.9303450223116, 32.778815609638], [-79.9303919443403, 32.7792059645666], [-79.9303915806376, 32.7792060245151], [-79.9303758976191, 32.7792085180463], [-79.930373275107, 32.7791866968495], [-79.9301890435462, 32.7792049623382], [-79.9302190435479, 32.7794545921403], [-79.9302094252302, 32.7794561304325], [-79.9302291822135, 32.77955930455], [-79.9312712364329, 32.7793927872523], [-79.9311143237257, 32.7781073181181], [-79.9302946301803, 32.7782330495358]]], "type": "Polygon"}, "id": "88", "properties": {"OBJECTID": 574, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 17191.830078125, "Shape__Length": 590.372799579135, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.926117909348, 32.7772673790568, -79.9234149309256, 32.7795506339012], "geometry": {"coordinates": [[[-79.9234149309256, 32.7774739602835], [-79.9235437846097, 32.7795506339012], [-79.9255435268691, 32.7792041309543], [-79.925534013621, 32.7791356287108], [-79.9255302194133, 32.779072405543], [-79.9255318223828, 32.7790495463563], [-79.9255455157378, 32.7790473020117], [-79.9255410214515, 32.7789920395149], [-79.9255420129842, 32.7789723674573], [-79.9255524071783, 32.7789452620823], [-79.9255611318653, 32.7789285537396], [-79.9255963682856, 32.7788838110945], [-79.9256201490856, 32.7788630739073], [-79.9256329751757, 32.7788549618066], [-79.9256514546213, 32.7788443651941], [-79.9256708717327, 32.7788345199264], [-79.926117909348, 32.7787635060276], [-79.9261046768824, 32.7785718119704], [-79.9260913928288, 32.7785724664259], [-79.9260830381508, 32.778458176473], [-79.9261003477551, 32.7784572732786], [-79.92609834303, 32.7784298389682], [-79.9260821048721, 32.778430685734], [-79.9260700230753, 32.7782653958098], [-79.9260862612136, 32.7782645481438], [-79.9260842554187, 32.7782371147262], [-79.9260669469252, 32.7782380179276], [-79.9260453167085, 32.777942328002], [-79.9256077801039, 32.7779643272887], [-79.925601872753, 32.7778849219683], [-79.9260388921378, 32.7778544291853], [-79.9260347177002, 32.7777970971053], [-79.9260520271741, 32.7777961939179], [-79.9260500214118, 32.7777687595993], [-79.9260337844328, 32.7777696072698], [-79.9260211856726, 32.7775972388127], [-79.9260374226086, 32.7775963920456], [-79.926035417934, 32.7775689568351], [-79.9260181095726, 32.7775698600294], [-79.9260113769305, 32.7774777640716], [-79.9255734669704, 32.7775007095694], [-79.9255649514016, 32.777500177547], [-79.9255553180175, 32.7774988736547], [-79.9255458623415, 32.7774968354246], [-79.925536666343, 32.7774940816133], [-79.9255193468767, 32.7774865200086], [-79.925503930883, 32.7774764382563], [-79.9254890250954, 32.7774619392825], [-79.9254793670716, 32.7774476324992], [-79.9254737685129, 32.7774347429848], [-79.9254715400663, 32.7774267178141], [-79.92546976728, 32.7774130691904], [-79.925470124399, 32.777388477461], [-79.9254588429434, 32.7772673790568], [-79.924792198307, 32.7773355766773], [-79.9234149309256, 32.7774739602835]]], "type": "Polygon"}, "id": "89", "properties": {"OBJECTID": 575, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 70836.01953125, "Shape__Length": 1208.12027300314, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9303919443403, 32.7782330495358, -79.9294507427275, 32.7796611572682], "geometry": {"coordinates": [[[-79.9302946301803, 32.7782330495358], [-79.9294507427275, 32.7783603385746], [-79.9294689360158, 32.7786704243969], [-79.9294813606144, 32.7786815283025], [-79.9295570304324, 32.778749095831], [-79.9295724726304, 32.7787793856286], [-79.9296084955802, 32.7791905635957], [-79.9295592648064, 32.7792674012031], [-79.9295419147806, 32.7792944893317], [-79.9295740254215, 32.7796611572682], [-79.9300301467951, 32.7795906585565], [-79.9302291822135, 32.77955930455], [-79.9302094252302, 32.7794561304325], [-79.9302190435479, 32.7794545921403], [-79.9301890435462, 32.7792049623382], [-79.930373275107, 32.7791866968495], [-79.9303758976191, 32.7792085180463], [-79.9303919443403, 32.7792059645666], [-79.9303450223116, 32.778815609638], [-79.9303155321623, 32.778570185995], [-79.9303148743757, 32.7785647115129], [-79.9303342008028, 32.7785621317078], [-79.9303173977612, 32.7784224555029], [-79.9303334659651, 32.7784203152607], [-79.9303301899309, 32.7783929357492], [-79.9303141227993, 32.7783950760002], [-79.9302946301803, 32.7782330495358]]], "type": "Polygon"}, "id": "90", "properties": {"OBJECTID": 577, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14785.130859375, "Shape__Length": 556.730031375095, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9294416849032, 32.778385400068, -79.9286943255211, 32.7797997159623], "geometry": {"coordinates": [[[-79.9290801158274, 32.7784170315064], [-79.9286943255211, 32.7784761201794], [-79.9287195653617, 32.7787180710368], [-79.928727311971, 32.7787923283839], [-79.9288256819823, 32.7797997159623], [-79.9294133023123, 32.7796887502659], [-79.9293731222082, 32.7792294120774], [-79.9294104872127, 32.7792275331879], [-79.9294197730671, 32.779226640469], [-79.9294258498079, 32.7792247069043], [-79.9294312663081, 32.7792216817512], [-79.929435753828, 32.7792177159703], [-79.929439084694, 32.7792130068748], [-79.9294402637057, 32.7792104469609], [-79.9294410948147, 32.7792077902116], [-79.9294416849032, 32.7792023275461], [-79.9294221680968, 32.778839987685], [-79.9294213406552, 32.7788350329738], [-79.9294192232712, 32.7788298451222], [-79.929413867114, 32.7788229893899], [-79.9294090528279, 32.7788193038423], [-79.9294034643683, 32.7788165052385], [-79.9293973277603, 32.7788147046786], [-79.9293781389001, 32.7788144168013], [-79.9293501753177, 32.7788161750469], [-79.9293439937217, 32.7788100344576], [-79.9293401537222, 32.7788055971868], [-79.929333448622, 32.7787961819594], [-79.9293281163574, 32.7787861600875], [-79.9293242352715, 32.7787756720416], [-79.9293218590235, 32.778764868898], [-79.9293209601689, 32.7787535511109], [-79.9293188416634, 32.7787017112925], [-79.9292866347451, 32.778385400068], [-79.9290801158274, 32.7784170315064]]], "type": "Polygon"}, "id": "91", "properties": {"OBJECTID": 582, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12123.51171875, "Shape__Length": 496.400760347098, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.938062868081, 32.7803844180266, -79.9375043228684, 32.7809047683534], "geometry": {"coordinates": [[[-79.9375043228684, 32.7804518212889], [-79.9377556875931, 32.7809047683534], [-79.938062868081, 32.7807831172526], [-79.9378840017944, 32.7804608133287], [-79.9377470132894, 32.780515061523], [-79.9376745127112, 32.7803844180266], [-79.9375043228684, 32.7804518212889]]], "type": "Polygon"}, "id": "92", "properties": {"OBJECTID": 600, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2179.7265625, "Shape__Length": 207.955901978802, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9378840017944, 32.7798816778694, -79.9368939367786, 32.7809342589904], "geometry": {"coordinates": [[[-79.9378840017944, 32.7804608133287], [-79.9375626082627, 32.7798816778694], [-79.9368939367786, 32.7801454156273], [-79.9373362388042, 32.7809342589904], [-79.9374660493835, 32.7808828573212], [-79.9374038963055, 32.7807708560805], [-79.9375305925051, 32.7807206817476], [-79.9376313775979, 32.7806807679112], [-79.9375692212603, 32.7805687658274], [-79.9375043228684, 32.7804518212889], [-79.9376745127112, 32.7803844180266], [-79.9377470132894, 32.780515061523], [-79.9378840017944, 32.7804608133287]]], "type": "Polygon"}, "id": "93", "properties": {"OBJECTID": 602, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7443.162109375, "Shape__Length": 432.972707947409, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9377556875931, 32.7806807679112, -79.9373362388042, 32.7810460465989], "geometry": {"coordinates": [[[-79.9373362388042, 32.7809342589904], [-79.937398918692, 32.7810460465989], [-79.9377556875931, 32.7809047683534], [-79.9376313775979, 32.7806807679112], [-79.9374038963055, 32.7807708560805], [-79.9374660493835, 32.7808828573212], [-79.9373362388042, 32.7809342589904]]], "type": "Polygon"}, "id": "94", "properties": {"OBJECTID": 604, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1176.94921875, "Shape__Length": 153.320839675774, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9372456608032, 32.7806485056697, -79.9366443524844, 32.7812328253248], "geometry": {"coordinates": [[[-79.9369960064772, 32.7806485056697], [-79.9366443524844, 32.7807871233569], [-79.9368916971273, 32.7812328253248], [-79.9372456608032, 32.781093753509], [-79.9369960064772, 32.7806485056697]]], "type": "Polygon"}, "id": "95", "properties": {"OBJECTID": 607, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2825.08984375, "Shape__Length": 217.024651739095, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9440954991369, 32.7800159202126, -79.9423032507615, 32.7814690291738], "geometry": {"coordinates": [[[-79.9424807740874, 32.780836169882], [-79.9424879314242, 32.7808498025597], [-79.9424966822169, 32.7808661148344], [-79.9425731222321, 32.7810027532972], [-79.9427060837972, 32.7812415025457], [-79.9427673983742, 32.7813509542239], [-79.942832674023, 32.7814690291738], [-79.9430484574945, 32.7813848207589], [-79.9431489914377, 32.781345661368], [-79.9434644966126, 32.7812221152922], [-79.9435617588847, 32.7811842990012], [-79.9436484021198, 32.7811502580077], [-79.9437342235571, 32.781116809578], [-79.9438895211582, 32.7810561320742], [-79.9440954991369, 32.7809753579462], [-79.943857485087, 32.7805438065101], [-79.9436506842014, 32.7806255128326], [-79.9434961932832, 32.780686713743], [-79.9434111814231, 32.7807205125923], [-79.943323722027, 32.7807548899628], [-79.9432966651246, 32.7807051780065], [-79.9433612410748, 32.7806795365826], [-79.9434380762345, 32.7806491915193], [-79.9435173671958, 32.7806176627655], [-79.9438296156027, 32.7804940001819], [-79.943761161559, 32.7803695422103], [-79.9436918953695, 32.7802449897101], [-79.9436345902571, 32.7801403844202], [-79.9435653222932, 32.7800159202126], [-79.9432530752546, 32.7801395794101], [-79.9430969518948, 32.7802013681323], [-79.9430618020731, 32.7802154108377], [-79.9429375580354, 32.7802644180216], [-79.94279369352, 32.7803214982928], [-79.9426514639068, 32.7803779080348], [-79.9424928891041, 32.7804405324519], [-79.9423032507615, 32.7805155164893], [-79.9424186801534, 32.780724048205], [-79.9424807740874, 32.780836169882]]], "type": "Polygon"}, "id": "96", "properties": {"OBJECTID": 611, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21208.83203125, "Shape__Length": 720.922722819613, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9369960064772, 32.7802035355496, -79.9348106290729, 32.7816566859218], "geometry": {"coordinates": [[[-79.9351547466146, 32.7815872702519], [-79.9352074391865, 32.7816566859218], [-79.9355260591554, 32.7814841265749], [-79.9354915895561, 32.7814249052354], [-79.9356654911385, 32.7813413445758], [-79.9355855562892, 32.7811972996919], [-79.9362847670293, 32.780922619271], [-79.9365347491124, 32.7813730678231], [-79.9368916971273, 32.7812328253248], [-79.9366443524844, 32.7807871233569], [-79.9369960064772, 32.7806485056697], [-79.9367465093089, 32.7802035355496], [-79.9349962849848, 32.7808964089051], [-79.9349413700562, 32.7809181989461], [-79.934914487819, 32.7809313842162], [-79.9348898967282, 32.7809474455405], [-79.9348742766702, 32.7809602517835], [-79.9348563654117, 32.7809784103089], [-79.9348458976934, 32.7809914598118], [-79.9348381310192, 32.7810028400866], [-79.9348312710591, 32.7810146295723], [-79.9348253472841, 32.7810267753172], [-79.9348203848841, 32.7810392252346], [-79.9348125201314, 32.7810700175611], [-79.9348106290729, 32.7810883354079], [-79.9348114147893, 32.7811145856573], [-79.9348169953801, 32.7811430790357], [-79.9348230711727, 32.781160735763], [-79.9348323432449, 32.7811802339106], [-79.93483935615, 32.7811919593089], [-79.9350698943814, 32.7814809168143], [-79.9351547466146, 32.7815872702519]]], "type": "Polygon"}, "id": "97", "properties": {"OBJECTID": 616, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20586.9296875, "Shape__Length": 801.758875785209, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9365347491124, 32.780922619271, -79.9352074391865, 32.7818407496567], "geometry": {"coordinates": [[[-79.9352074391865, 32.7816566859218], [-79.9353553126251, 32.7818407496567], [-79.9365347491124, 32.7813730678231], [-79.9362847670293, 32.780922619271], [-79.9355855562892, 32.7811972996919], [-79.9356654911385, 32.7813413445758], [-79.9354915895561, 32.7814249052354], [-79.9355260591554, 32.7814841265749], [-79.9352074391865, 32.7816566859218]]], "type": "Polygon"}, "id": "98", "properties": {"OBJECTID": 620, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7907.232421875, "Shape__Length": 420.566216147033, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9374447612207, 32.7812161567197, -79.936289012235, 32.7821612848637], "geometry": {"coordinates": [[[-79.9374447612207, 32.7814399803627], [-79.9373778953116, 32.7813193977934], [-79.9373197669231, 32.7812161567197], [-79.9371268583805, 32.7812920495092], [-79.9369633744828, 32.7813564269318], [-79.936289012235, 32.7816213214511], [-79.9364365916656, 32.7818608071957], [-79.9364997610698, 32.7819508635025], [-79.936615889926, 32.7821010834191], [-79.9366639667762, 32.7821612848637], [-79.9370996951197, 32.7819863140741], [-79.9370351889609, 32.781872280197], [-79.9372101358127, 32.7818019022369], [-79.9371512398999, 32.7816948748198], [-79.9370875536158, 32.7815804170184], [-79.9374447612207, 32.7814399803627]]], "type": "Polygon"}, "id": "99", "properties": {"OBJECTID": 625, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7655.71875, "Shape__Length": 410.588519451302, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9423331505263, 32.7819039449067, -79.9419659460355, 32.7823418967187], "geometry": {"coordinates": [[[-79.9419659460355, 32.7819680870007], [-79.9421712995897, 32.7823418967187], [-79.9422097176011, 32.7823267669458], [-79.9423331505263, 32.7822778391232], [-79.9421277963894, 32.7819039449067], [-79.9419659460355, 32.7819680870007]]], "type": "Polygon"}, "id": "100", "properties": {"OBJECTID": 632, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1085.96875, "Shape__Length": 148.880731943107, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.936256848882, 32.7816671357187, -79.9354459997339, 32.782408718415], "geometry": {"coordinates": [[[-79.936256848882, 32.7817850098693], [-79.9361838607771, 32.7816671357187], [-79.9354459997339, 32.7819570982067], [-79.9356354983108, 32.7821924811092], [-79.935809211007, 32.782408718415], [-79.9360363719204, 32.7822700728372], [-79.9360428985039, 32.7822811644552], [-79.9361733009096, 32.7822158548561], [-79.9360577020323, 32.7820236000682], [-79.9359822441108, 32.7818948227696], [-79.936256848882, 32.7817850098693]]], "type": "Polygon"}, "id": "101", "properties": {"OBJECTID": 635, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4150.578125, "Shape__Length": 311.613866609687, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9446605890259, 32.781095072264, -79.9428995631925, 32.7825094824348], "geometry": {"coordinates": [[[-79.9438084717446, 32.7812330730223], [-79.9435722543997, 32.7813254383636], [-79.9433948869132, 32.7813946879873], [-79.9432077114737, 32.7814678026682], [-79.9430499588951, 32.7815295763845], [-79.9428995631925, 32.7815884076547], [-79.9430070516021, 32.7817811503179], [-79.9430747234536, 32.7819030254307], [-79.9431400186615, 32.7820196412171], [-79.9432037142709, 32.7821340075025], [-79.9432212195281, 32.7821663722521], [-79.9432737676543, 32.7822608000399], [-79.9433541856965, 32.7824050333573], [-79.9434131219304, 32.7825094824348], [-79.9438112351995, 32.7823494517683], [-79.94395838004, 32.7822905047284], [-79.9440728258048, 32.782244507003], [-79.9441406761083, 32.7822173467707], [-79.9442142483205, 32.782187829787], [-79.9442878194143, 32.7821584011297], [-79.9443671145264, 32.7821265282478], [-79.9445142575156, 32.7820675832368], [-79.9446605890259, 32.7820085426711], [-79.9444592251267, 32.7816402692366], [-79.944386810232, 32.7815068447696], [-79.9443318865616, 32.7814069850661], [-79.9442769619809, 32.7813072110044], [-79.9442228519591, 32.7812073591752], [-79.944161571025, 32.781095072264], [-79.9438084717446, 32.7812330730223]]], "type": "Polygon"}, "id": "102", "properties": {"OBJECTID": 637, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20677.59765625, "Shape__Length": 576.612570883978, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9290832171288, 32.7818473808621, -79.9277258476474, 32.7823980890226], "geometry": {"coordinates": [[[-79.9290271326585, 32.7818473808621], [-79.9283018330589, 32.7819201626687], [-79.9281279714272, 32.7819408390846], [-79.9277258476474, 32.781977954622], [-79.9277706684793, 32.7821200457474], [-79.9278215923714, 32.7822711311479], [-79.9278645143558, 32.7823980890226], [-79.9280266579102, 32.782380028428], [-79.9288138747292, 32.7822923428239], [-79.9290832171288, 32.7822623348819], [-79.9290271326585, 32.7818473808621]]], "type": "Polygon"}, "id": "103", "properties": {"OBJECTID": 639, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7938.494140625, "Shape__Length": 395.773300066108, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9431967143321, 32.7816549583053, -79.9421277963894, 32.7826057208174], "geometry": {"coordinates": [[[-79.9426935903975, 32.7823402269342], [-79.9426903096594, 32.782342433327], [-79.9426870247929, 32.7823449805775], [-79.9426845585327, 32.7823471065313], [-79.9426829046318, 32.7823493269839], [-79.9426804352587, 32.7823517099336], [-79.9426787772293, 32.782354271244], [-79.9426771191561, 32.7823568361613], [-79.9426762735188, 32.7823594892653], [-79.9426754268112, 32.7823622307399], [-79.9426745790331, 32.782365060585], [-79.9426737312987, 32.7823678868231], [-79.9426728825267, 32.7823707987265], [-79.9426728481785, 32.7823736347], [-79.9426736262337, 32.7823765615653], [-79.9426735918855, 32.7823793975388], [-79.9426743709783, 32.7823822387388], [-79.942675150082, 32.7823850790371], [-79.9426759302124, 32.7823878345718], [-79.9427381452984, 32.7824900775726], [-79.9427389275285, 32.7824926599727], [-79.9427397076292, 32.7824954182122], [-79.9427404877517, 32.7824981746483], [-79.9427412668586, 32.7825010149462], [-79.9427404014442, 32.7825053011025], [-79.9427419887404, 32.7825085803636], [-79.942790436174, 32.7826057208174], [-79.9428484948559, 32.7825809693498], [-79.9428566602852, 32.782578461563], [-79.9428599275177, 32.7825774589983], [-79.9428762739155, 32.7825710718661], [-79.9429800931709, 32.7825295357915], [-79.9431967143321, 32.7824434458799], [-79.9431139165649, 32.782294210163], [-79.9430517999415, 32.7821837218323], [-79.943005624287, 32.7821006002949], [-79.9429570552616, 32.7820135053192], [-79.9428949577821, 32.7819015570038], [-79.9427580212032, 32.7816549583053], [-79.9425307835142, 32.7817445620894], [-79.9424768329135, 32.781766001301], [-79.9424392338085, 32.7817807089601], [-79.9421277963894, 32.7819039449067], [-79.9423331505263, 32.7822778391232], [-79.942419119444, 32.7824338043278], [-79.9424689804678, 32.7824142209324], [-79.9424984060647, 32.7824026224782], [-79.9425752441411, 32.7823722752552], [-79.9426896845466, 32.7823268784898], [-79.9426968690385, 32.7823381936755], [-79.9426935903975, 32.7823402269342]]], "type": "Polygon"}, "id": "104", "properties": {"OBJECTID": 644, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7869.482421875, "Shape__Length": 394.36405346404, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9421197248487, 32.7820257510021, -79.9415057416746, 32.7826934947027], "geometry": {"coordinates": [[[-79.941819630485, 32.7820257510021], [-79.9417223571165, 32.7820641655502], [-79.9416144561787, 32.782106953966], [-79.9415057416746, 32.7821497388559], [-79.9416123997174, 32.7823436768361], [-79.9417031511123, 32.7825076714813], [-79.9417572736182, 32.7826063233207], [-79.9418050273488, 32.7826934947027], [-79.9421197248487, 32.7825700298046], [-79.9420711584785, 32.7824827667491], [-79.9420257970113, 32.7823995643954], [-79.9420210132984, 32.7823915345733], [-79.941819630485, 32.7820257510021]]], "type": "Polygon"}, "id": "105", "properties": {"OBJECTID": 647, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3064.2734375, "Shape__Length": 236.031000798798, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9423957704832, 32.7825142700855, -79.9418432449566, 32.7827944807478], "geometry": {"coordinates": [[[-79.9418432449566, 32.7827620310378], [-79.941860748808, 32.7827944807478], [-79.9420749075507, 32.7827104331011], [-79.9421754465931, 32.7826710157052], [-79.9422208052409, 32.7827544741001], [-79.9422861985319, 32.7827286680386], [-79.9422877827233, 32.7827322024982], [-79.9423957704832, 32.7826822834246], [-79.9423917262901, 32.7826804447935], [-79.9423884777917, 32.7826799883389], [-79.9423852324318, 32.782679184705], [-79.9423819943633, 32.7826779554681], [-79.9423787614467, 32.7826761247517], [-79.9423755348306, 32.7826738621109], [-79.9423731237417, 32.782671520846], [-79.942371528099, 32.7826689314113], [-79.9423252684779, 32.7825925960923], [-79.9422774071135, 32.7825142700855], [-79.9422152457992, 32.7825419086567], [-79.9421260938005, 32.7825815084193], [-79.942157129217, 32.7826385599089], [-79.9418432449566, 32.7827620310378]]], "type": "Polygon"}, "id": "106", "properties": {"OBJECTID": 649, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 688.1875, "Shape__Length": 170.073371400091, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9381152171444, 32.7814399803627, -79.9366639667762, 32.7830275536891], "geometry": {"coordinates": [[[-79.9366639667762, 32.7821612848637], [-79.9368258135357, 32.7823649857681], [-79.9373522219527, 32.7830275536891], [-79.9381152171444, 32.7826328539556], [-79.9378953557575, 32.7822492057713], [-79.9375665631574, 32.781658880091], [-79.9375084489023, 32.7815543532129], [-79.9374447612207, 32.7814399803627], [-79.9370875536158, 32.7815804170184], [-79.9371512398999, 32.7816948748198], [-79.9372101358127, 32.7818019022369], [-79.9370351889609, 32.781872280197], [-79.9370996951197, 32.7819863140741], [-79.9366639667762, 32.7821612848637]]], "type": "Polygon"}, "id": "107", "properties": {"OBJECTID": 653, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16868.365234375, "Shape__Length": 580.661608741403, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9436186930602, 32.7827817083865, -79.9428579912177, 32.7834378159785], "geometry": {"coordinates": [[[-79.9433846073141, 32.7827817083865], [-79.9430878695961, 32.7829001804112], [-79.943051085615, 32.782914723055], [-79.9431187584176, 32.7830365972567], [-79.9428579912177, 32.7831403440888], [-79.9429288885032, 32.7832646523574], [-79.9429567656408, 32.7833138574447], [-79.9430268549952, 32.7834378159785], [-79.9431658210744, 32.783382580596], [-79.9436186930602, 32.7832020639836], [-79.9435494227314, 32.7830776844988], [-79.9434530949599, 32.7829035903378], [-79.9433846073141, 32.7827817083865]]], "type": "Polygon"}, "id": "108", "properties": {"OBJECTID": 662, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3921.11328125, "Shape__Length": 269.021468931571, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9372416975153, 32.7817850098693, -79.935809211007, 32.7834094124836], "geometry": {"coordinates": [[[-79.935809211007, 32.782408718415], [-79.9366145962375, 32.7834094124836], [-79.9372416975153, 32.7830850938688], [-79.9365077677341, 32.7821617325907], [-79.9363900425211, 32.782009093496], [-79.9363374048058, 32.7819151038085], [-79.936256848882, 32.7817850098693], [-79.9359822441108, 32.7818948227696], [-79.9360577020323, 32.7820236000682], [-79.9361733009096, 32.7822158548561], [-79.9360428985039, 32.7822811644552], [-79.9360363719204, 32.7822700728372], [-79.935809211007, 32.782408718415]]], "type": "Polygon"}, "id": "109", "properties": {"OBJECTID": 664, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14801.490234375, "Shape__Length": 577.416383317587, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9453379156493, 32.7827310232242, -79.9442663529783, 32.783485947117], "geometry": {"coordinates": [[[-79.9450561692572, 32.7827310232242], [-79.9442663529783, 32.7829917040723], [-79.9444824652819, 32.783485947117], [-79.9453379156493, 32.7832471337975], [-79.9450561692572, 32.7827310232242]]], "type": "Polygon"}, "id": "110", "properties": {"OBJECTID": 665, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7041.796875, "Shape__Length": 339.710616714896, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9437007082228, 32.7832020639836, -79.9431658210744, 32.7834887891657], "geometry": {"coordinates": [[[-79.9431658210744, 32.783382580596], [-79.9432064398079, 32.7834544857534], [-79.9433069864875, 32.7834144650617], [-79.9433492031016, 32.7834887891657], [-79.9437007082228, 32.7833488874081], [-79.9436186930602, 32.7832020639836], [-79.9431658210744, 32.783382580596]]], "type": "Polygon"}, "id": "111", "properties": {"OBJECTID": 666, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1061.220703125, "Shape__Length": 154.392840080914, "ZONE_BASE": "DR-12", "__folium_color": "#ff7f0e"}, "type": "Feature"}, {"bbox": [-79.9450561692572, 32.7821208327529, -79.9434752205068, 32.7835280988556], "geometry": {"coordinates": [[[-79.9450561692572, 32.7827310232242], [-79.9447226847035, 32.7821208327529], [-79.9434752205068, 32.7826214304946], [-79.9438637263959, 32.7833228943764], [-79.9438645096922, 32.783325392006], [-79.9438661063856, 32.7833278109832], [-79.9438677041575, 32.7833302290678], [-79.9438693019076, 32.7833326489559], [-79.9438709007051, 32.7833349822768], [-79.9438724995338, 32.7833374012724], [-79.9438740972858, 32.7833397327806], [-79.9438756950472, 32.7833421517669], [-79.9438772938451, 32.7833444850878], [-79.9438788926321, 32.7833468193104], [-79.9438804914628, 32.783349149926], [-79.9438829047458, 32.7833514911799], [-79.9438845024765, 32.7833538244914], [-79.9438861012639, 32.7833561587139], [-79.9438877011314, 32.7833584036641], [-79.943889299908, 32.7833607387884], [-79.9438917142279, 32.7833629943766], [-79.9438933130282, 32.7833652393175], [-79.9438949128851, 32.7833674851693], [-79.9438973261378, 32.7833697407483], [-79.9438989270624, 32.7833719866094], [-79.9439005279123, 32.7833741504027], [-79.9439029401305, 32.7833764032671], [-79.9439045410243, 32.7833785634535], [-79.943906955303, 32.7833807342686], [-79.9439085572535, 32.7833828953659], [-79.9439109705085, 32.7833850625648], [-79.9439125714026, 32.7833872227512], [-79.9439149867508, 32.7833893051956], [-79.9439165886689, 32.7833914689979], [-79.9439190040173, 32.7833935514423], [-79.9439206048697, 32.7833956268557], [-79.9439230202184, 32.7833977092999], [-79.9439254366345, 32.7833997917534], [-79.9439270385547, 32.7834018671759], [-79.9439294539052, 32.7834038612402], [-79.9439334722, 32.7834079343431], [-79.9439358896531, 32.783409931131], [-79.9439383049605, 32.7834119288021], [-79.943940721379, 32.7834139228755], [-79.9439447428041, 32.7834178255583], [-79.9439471591808, 32.7834197348587], [-79.9439495765924, 32.7834216468735], [-79.9439519951044, 32.7834235561922], [-79.9439544125162, 32.7834254682069], [-79.9439568299297, 32.7834272918418], [-79.9439592473309, 32.7834292047581], [-79.9439616668795, 32.7834310284113], [-79.9439640853608, 32.7834328520553], [-79.9439665027638, 32.7834346765917], [-79.9439689222706, 32.7834364154719], [-79.9439713418197, 32.783438239125], [-79.9439737612831, 32.7834399816121], [-79.9439761797337, 32.7834417195812], [-79.9439786003412, 32.7834434557653], [-79.9439810198049, 32.7834451982522], [-79.9439842516739, 32.7834469441443], [-79.9439866722505, 32.7834485946536], [-79.9439890928256, 32.7834503335427], [-79.9439915133697, 32.7834519867571], [-79.9439939339043, 32.7834535524934], [-79.9439971689344, 32.78345521364], [-79.9439995894677, 32.783456867756], [-79.9440020099699, 32.7834584361974], [-79.9440044315726, 32.7834600019428], [-79.9440076676501, 32.783461576522], [-79.9440100892528, 32.7834631422672], [-79.9440125108135, 32.7834646232396], [-79.9440157468805, 32.7834661987203], [-79.9440181695088, 32.7834676797018], [-79.9440205910807, 32.7834691597722], [-79.9440238292423, 32.7834705621186], [-79.9440262518381, 32.7834720458051], [-79.9440294879086, 32.7834734445259], [-79.9440319115721, 32.7834749282215], [-79.9440343352372, 32.7834763235373], [-79.9440375733571, 32.7834776411104], [-79.9440399959549, 32.7834790364169], [-79.9440456598877, 32.7834816600423], [-79.9440513226989, 32.783484288167], [-79.944054560863, 32.7834856021327], [-79.9440602257797, 32.783488056221], [-79.9440658896293, 32.7834905102999], [-79.9440691309229, 32.7834916538455], [-79.9440747957982, 32.7834940231603], [-79.9440780381172, 32.783495081942], [-79.9440837050545, 32.7834972808274], [-79.9440869463485, 32.7834984243726], [-79.9440926153804, 32.7835004501234], [-79.9440958576998, 32.7835015089047], [-79.9441015278432, 32.7835035310573], [-79.9441047711568, 32.7835044194002], [-79.9441080134344, 32.7835053934083], [-79.9441112546881, 32.7835063638001], [-79.9441169289863, 32.7835081307687], [-79.9441201712327, 32.7835090191019], [-79.9441234166721, 32.7835098199847], [-79.9441266599862, 32.7835107083269], [-79.9441323353116, 32.7835123021514], [-79.9441355796947, 32.7835131021228], [-79.9441388240355, 32.7835138173214], [-79.9441420705115, 32.7835145325382], [-79.9441453159199, 32.7835152477458], [-79.9441485613284, 32.7835159629533], [-79.9441542397519, 32.7835173006824], [-79.9441574861858, 32.783517931126], [-79.9441607326197, 32.7835185615696], [-79.9441639790973, 32.7835191884061], [-79.9441672265674, 32.7835197331841], [-79.9441704730342, 32.7835203609221], [-79.9441737205044, 32.7835209057], [-79.9441769690434, 32.7835213621072], [-79.9441802165137, 32.7835219068848], [-79.9441834650418, 32.7835223641936], [-79.9441891486466, 32.7835232735943], [-79.9441923971858, 32.7835237300011], [-79.9441956467502, 32.7835241016441], [-79.9441988952895, 32.7835245580507], [-79.9442021458791, 32.78352484493], [-79.9442053954436, 32.7835252165728], [-79.9442086450081, 32.7835255882155], [-79.9442118955978, 32.7835258750945], [-79.9442151462311, 32.7835261583665], [-79.9442183968208, 32.7835264452453], [-79.9442216484466, 32.7835266464588], [-79.9442248990799, 32.7835269297305], [-79.9442281507058, 32.7835271309437], [-79.9442314023643, 32.7835273294516], [-79.9442346550153, 32.783527445901], [-79.9442379066738, 32.7835276444088], [-79.9442411593684, 32.7835277572511], [-79.9442444120522, 32.783527870995], [-79.9442476657719, 32.7835278990735], [-79.9442509184338, 32.7835280146208], [-79.9442541721535, 32.7835280426991], [-79.9442574258733, 32.7835280707774], [-79.944260679593, 32.7835280988556], [-79.9442639343705, 32.7835280394647], [-79.9442671880903, 32.7835280675428], [-79.944270442846, 32.7835280099553], [-79.9442736975908, 32.7835279532696], [-79.9442769533717, 32.7835278109183], [-79.9442802081601, 32.7835277506253], [-79.9442834639408, 32.7835276082739], [-79.9442867197544, 32.7835274632172], [-79.9442899755351, 32.7835273208656], [-79.9442932323737, 32.7835270910451], [-79.9442964892231, 32.7835268603227], [-79.9442997460289, 32.7835266332073], [-79.9443030028783, 32.7835264024848], [-79.9443062597277, 32.7835261717621], [-79.9443119620465, 32.7835255337703], [-79.94431521991, 32.7835252191855], [-79.9443184788202, 32.7835248180336], [-79.944321737762, 32.7835245025562], [-79.9443249956375, 32.7835240986897], [-79.9443282545368, 32.7835236984393], [-79.944331513436, 32.7835232981888], [-79.9443347734148, 32.7835228086658], [-79.944338033339, 32.7835223236515], [-79.9443412933068, 32.7835218350302], [-79.9443445532528, 32.7835213482122], [-79.9443478131769, 32.7835208631977], [-79.9443510741805, 32.7835202889107], [-79.9443567827468, 32.7835191342193], [-79.9443600437503, 32.7835185599321], [-79.9443633057787, 32.7835179008812], [-79.9443665677635, 32.7835172454372], [-79.9443698297918, 32.783516586386], [-79.9443730918201, 32.7835159273349], [-79.9443788035152, 32.783514513843], [-79.9443820665684, 32.7835137700279], [-79.9443853306998, 32.7835130253202], [-79.9444824652819, 32.783485947117], [-79.9442663529783, 32.7829917040723], [-79.9450561692572, 32.7827310232242]]], "type": "Polygon"}, "id": "112", "properties": {"OBJECTID": 667, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16274.857421875, "Shape__Length": 589.567995095704, "ZONE_BASE": "C", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9433846073141, 32.7819680870007, -79.9418050273488, 32.7837761476588], "geometry": {"coordinates": [[[-79.941860748808, 32.7827944807478], [-79.9419132781241, 32.7828903708475], [-79.9419626434378, 32.7829789296005], [-79.9419825460134, 32.783014836029], [-79.9420192026312, 32.7830779468983], [-79.9420510859819, 32.7831321667735], [-79.9421459228006, 32.7832948229246], [-79.9422136685186, 32.7834106000632], [-79.9422838088831, 32.7835301801632], [-79.9423005350209, 32.7835597011412], [-79.9423364026146, 32.7836208282716], [-79.9423818316422, 32.783698530806], [-79.9424272617885, 32.7837761476588], [-79.9424526051281, 32.7837659748933], [-79.9425466211485, 32.7837278724826], [-79.9426447239903, 32.7836881748043], [-79.9426651627324, 32.7836798498518], [-79.9426205521137, 32.7836017234213], [-79.9426238193573, 32.7836006351883], [-79.942698216027, 32.7835703542525], [-79.9426225412547, 32.7834374993495], [-79.9427321024607, 32.7833920603565], [-79.9428133455216, 32.7835354444324], [-79.942891008272, 32.783504072427], [-79.9429253428795, 32.7834903699166], [-79.9429515016284, 32.783479940759], [-79.9430324304293, 32.7834476580743], [-79.9430268549952, 32.7834378159785], [-79.9429567656408, 32.7833138574447], [-79.9429288885032, 32.7832646523574], [-79.9428579912177, 32.7831403440888], [-79.9431187584176, 32.7830365972567], [-79.943051085615, 32.782914723055], [-79.9430878695961, 32.7829001804112], [-79.9433846073141, 32.7827817083865], [-79.9433352531866, 32.7826922042926], [-79.9432811090876, 32.7825951853005], [-79.9431967143321, 32.7824434458799], [-79.9429800931709, 32.7825295357915], [-79.9428762739155, 32.7825710718661], [-79.9428599275177, 32.7825774589983], [-79.9428566602852, 32.782578461563], [-79.9428484948559, 32.7825809693498], [-79.942790436174, 32.7826057208174], [-79.9427419887404, 32.7825085803636], [-79.9427404014442, 32.7825053011025], [-79.9427412668586, 32.7825010149462], [-79.9427404877517, 32.7824981746483], [-79.9427397076292, 32.7824954182122], [-79.9427389275285, 32.7824926599727], [-79.9427381452984, 32.7824900775726], [-79.9426759302124, 32.7823878345718], [-79.942675150082, 32.7823850790371], [-79.9426743709783, 32.7823822387388], [-79.9426735918855, 32.7823793975388], [-79.9426736262337, 32.7823765615653], [-79.9426728481785, 32.7823736347], [-79.9426728825267, 32.7823707987265], [-79.9426737312987, 32.7823678868231], [-79.9426745790331, 32.782365060585], [-79.9426754268112, 32.7823622307399], [-79.9426762735188, 32.7823594892653], [-79.9426771191561, 32.7823568361613], [-79.9426787772293, 32.782354271244], [-79.9426804352587, 32.7823517099336], [-79.9426829046318, 32.7823493269839], [-79.9426845585327, 32.7823471065313], [-79.9426870247929, 32.7823449805775], [-79.9426903096594, 32.782342433327], [-79.9426935903975, 32.7823402269342], [-79.9426896845466, 32.7823268784898], [-79.9425752441411, 32.7823722752552], [-79.9424984060647, 32.7824026224782], [-79.9424689804678, 32.7824142209324], [-79.942419119444, 32.7824338043278], [-79.9423331505263, 32.7822778391232], [-79.9422097176011, 32.7823267669458], [-79.9421712995897, 32.7823418967187], [-79.9419659460355, 32.7819680870007], [-79.941819630485, 32.7820257510021], [-79.9420210132984, 32.7823915345733], [-79.9420257970113, 32.7823995643954], [-79.9420711584785, 32.7824827667491], [-79.9421197248487, 32.7825700298046], [-79.9418050273488, 32.7826934947027], [-79.9418432449566, 32.7827620310378], [-79.942157129217, 32.7826385599089], [-79.9421260938005, 32.7825815084193], [-79.9422152457992, 32.7825419086567], [-79.9422774071135, 32.7825142700855], [-79.9423252684779, 32.7825925960923], [-79.942371528099, 32.7826689314113], [-79.9423731237417, 32.782671520846], [-79.9423755348306, 32.7826738621109], [-79.9423787614467, 32.7826761247517], [-79.9423819943633, 32.7826779554681], [-79.9423852324318, 32.782679184705], [-79.9423884777917, 32.7826799883389], [-79.9423917262901, 32.7826804447935], [-79.9423957704832, 32.7826822834246], [-79.9422877827233, 32.7827322024982], [-79.9422861985319, 32.7827286680386], [-79.9422208052409, 32.7827544741001], [-79.9421754465931, 32.7826710157052], [-79.9420749075507, 32.7827104331011], [-79.941860748808, 32.7827944807478]]], "type": "Polygon"}, "id": "113", "properties": {"OBJECTID": 673, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 18348.080078125, "Shape__Length": 994.244744076962, "ZONE_BASE": "DR-12", "__folium_color": "#ff7f0e"}, "type": "Feature"}, {"bbox": [-79.9438559734631, 32.7833488874081, -79.9424272617885, 32.7839240447767], "geometry": {"coordinates": [[[-79.9424272617885, 32.7837761476588], [-79.9424519725091, 32.7838181955861], [-79.9424615360202, 32.7838345978601], [-79.9425141446696, 32.7839240447767], [-79.9426422094919, 32.783895776206], [-79.9427490667762, 32.7838721301091], [-79.9428559260857, 32.7838484000665], [-79.9429016041686, 32.7838384011152], [-79.9429758324491, 32.7838220356695], [-79.943098189485, 32.7837948292712], [-79.9432148336443, 32.7837691245591], [-79.9433657385872, 32.7837357244878], [-79.9434750430537, 32.7837114973728], [-79.9438559734631, 32.7836274275448], [-79.9437007082228, 32.7833488874081], [-79.9433492031016, 32.7834887891657], [-79.9433069864875, 32.7834144650617], [-79.9432064398079, 32.7834544857534], [-79.9431658210744, 32.783382580596], [-79.9430268549952, 32.7834378159785], [-79.9430324304293, 32.7834476580743], [-79.9429515016284, 32.783479940759], [-79.9429253428795, 32.7834903699166], [-79.942891008272, 32.783504072427], [-79.9428133455216, 32.7835354444324], [-79.9427321024607, 32.7833920603565], [-79.9426225412547, 32.7834374993495], [-79.942698216027, 32.7835703542525], [-79.9426238193573, 32.7836006351883], [-79.9426205521137, 32.7836017234213], [-79.9426651627324, 32.7836798498518], [-79.9426447239903, 32.7836881748043], [-79.9425466211485, 32.7837278724826], [-79.9424526051281, 32.7837659748933], [-79.9424272617885, 32.7837761476588]]], "type": "Polygon"}, "id": "114", "properties": {"OBJECTID": 675, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6111.3671875, "Shape__Length": 444.30793963672, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9478513238521, 32.7828184417619, -79.9457229045394, 32.7841010164912], "geometry": {"coordinates": [[[-79.946644200177, 32.7830754138982], [-79.9457229045394, 32.783340737455], [-79.9458559759611, 32.7836226730403], [-79.9460728106738, 32.7841010164912], [-79.9478513238521, 32.7835263520068], [-79.9475364693485, 32.7828184417619], [-79.946644200177, 32.7830754138982]]], "type": "Polygon"}, "id": "115", "properties": {"OBJECTID": 680, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22102.26953125, "Shape__Length": 633.519197571581, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9364949391083, 32.7827113719171, -79.9346941874975, 32.7841301809704], "geometry": {"coordinates": [[[-79.9358944640355, 32.7827113719171], [-79.9346941874975, 32.7833072399487], [-79.9347381864442, 32.7833733091679], [-79.9347877155646, 32.7834477847344], [-79.9348196710504, 32.7834957376013], [-79.9348588091135, 32.7835551783493], [-79.9349011485359, 32.7836187683444], [-79.9349394963603, 32.7836763101354], [-79.9349986130077, 32.7837650450353], [-79.9350010166471, 32.7837681583536], [-79.9350409557917, 32.7838285511401], [-79.9352422834587, 32.7841301809704], [-79.9364949391083, 32.7834668176053], [-79.9358944640355, 32.7827113719171]]], "type": "Polygon"}, "id": "116", "properties": {"OBJECTID": 684, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 19599.580078125, "Shape__Length": 565.165127485233, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9407040718697, 32.7827597916078, -79.9386645339796, 32.7841741962227], "geometry": {"coordinates": [[[-79.9407040718697, 32.7840770485082], [-79.9399728892421, 32.7827597916078], [-79.9386645339796, 32.7832768757551], [-79.9391779678426, 32.7841741962227], [-79.9394970780367, 32.7840348525313], [-79.9393618090348, 32.7837855155826], [-79.9398813682682, 32.7836075667635], [-79.9401766931846, 32.7841421919834], [-79.9403183803466, 32.7840879257959], [-79.9403649805227, 32.7840710403434], [-79.9404547554141, 32.7840593896914], [-79.9404572969286, 32.7840644421387], [-79.9405021739607, 32.7840482586698], [-79.9405493950169, 32.7841328358757], [-79.9407040718697, 32.7840770485082]]], "type": "Polygon"}, "id": "117", "properties": {"OBJECTID": 685, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21647.248046875, "Shape__Length": 772.437824258129, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9423534507899, 32.7836642163514, -79.9408363005926, 32.7842648688645], "geometry": {"coordinates": [[[-79.9408363005926, 32.7840212009781], [-79.9409716429247, 32.7842648688645], [-79.9416478645805, 32.7841154985731], [-79.9418314008041, 32.7840748234857], [-79.9419945416336, 32.7840387821343], [-79.9421046613216, 32.7840144785138], [-79.9421960199098, 32.7839943089225], [-79.9423534507899, 32.783959506447], [-79.9422793260432, 32.7838330226609], [-79.9422665702403, 32.7838115244601], [-79.9422378819658, 32.7837621417509], [-79.9421169819452, 32.7838033590733], [-79.9421129040008, 32.7837933774735], [-79.9421266052643, 32.7837880380435], [-79.9422426731257, 32.7837427792953], [-79.9421967218884, 32.7836642163514], [-79.942183538587, 32.7836693672748], [-79.941984201346, 32.7837472476092], [-79.9418803843292, 32.7837885276608], [-79.9417749716118, 32.7838272145749], [-79.9417308421658, 32.7838436701135], [-79.9417289175623, 32.7838399469235], [-79.9417220984982, 32.7838267572197], [-79.9417109759618, 32.7838047563366], [-79.9416966938099, 32.7838083411354], [-79.9415412467057, 32.7838473570683], [-79.9408517296246, 32.7840198880104], [-79.940850492729, 32.7840176497695], [-79.9408363005926, 32.7840212009781]]], "type": "Polygon"}, "id": "118", "properties": {"OBJECTID": 686, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5803.310546875, "Shape__Length": 431.654753471353, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9598511630723, 32.7836976676228, -79.9583597390043, 32.784482050312], "geometry": {"coordinates": [[[-79.9584284625769, 32.7839715773986], [-79.9587153694172, 32.784403002055], [-79.958768119009, 32.784482050312], [-79.9594151652429, 32.7841843311566], [-79.9594756974842, 32.7841565852504], [-79.9598511630723, 32.7839836815524], [-79.9587204858217, 32.7839740632447], [-79.9587237826565, 32.7836976676228], [-79.9586043462948, 32.7837532563872], [-79.9583597390043, 32.783867653892], [-79.9584284625769, 32.7839715773986]]], "type": "Polygon"}, "id": "119", "properties": {"OBJECTID": 691, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6283.52734375, "Shape__Length": 439.462893206402, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9408283217418, 32.7836075667635, -79.9393618090348, 32.7845399380376], "geometry": {"coordinates": [[[-79.9394970780367, 32.7840348525313], [-79.939772508108, 32.7845399380376], [-79.9408283217418, 32.7843008901636], [-79.9407040718697, 32.7840770485082], [-79.9405493950169, 32.7841328358757], [-79.9405021739607, 32.7840482586698], [-79.9404572969286, 32.7840644421387], [-79.9404547554141, 32.7840593896914], [-79.9403641420506, 32.7840716887153], [-79.9403147205736, 32.7840895967607], [-79.9401766931846, 32.7841421919834], [-79.9398813682682, 32.7836075667635], [-79.9393618090348, 32.7837855155826], [-79.9394970780367, 32.7840348525313]]], "type": "Polygon"}, "id": "120", "properties": {"OBJECTID": 697, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9328.9765625, "Shape__Length": 475.137326639212, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9510847764198, 32.7820603375834, -79.9477126320864, 32.7847205624319], "geometry": {"coordinates": [[[-79.9485186447901, 32.784574924573], [-79.9485187317173, 32.7845749758229], [-79.9485241729568, 32.7845873299228], [-79.9485313026322, 32.7846008808389], [-79.9485424140822, 32.7846182798335], [-79.9485585061369, 32.7846379699054], [-79.9485767870489, 32.7846543609376], [-79.948596907737, 32.7846691345559], [-79.9486161777338, 32.7846807895312], [-79.9486365908846, 32.7846909599877], [-79.9486552657501, 32.784698576839], [-79.9486717898194, 32.7847041172185], [-79.9487006093892, 32.7847107435474], [-79.9487647394398, 32.7847179862203], [-79.948825576571, 32.7847205624319], [-79.9488264181911, 32.7847205344916], [-79.948830487447, 32.7847203106286], [-79.9488345588269, 32.7847200876854], [-79.9488386280502, 32.7847198665273], [-79.9488427004943, 32.7847195552133], [-79.9488467707741, 32.7847193349658], [-79.9488508431821, 32.784718937977], [-79.9488549144935, 32.7847186320638], [-79.9488589869014, 32.7847182350747], [-79.9488630582343, 32.7847179273578], [-79.9488663171213, 32.7847174413118], [-79.9488703905641, 32.7847170470367], [-79.9488744639926, 32.7847165652833], [-79.9488785374209, 32.7847160835299], [-79.9488826108058, 32.7847156053832], [-79.9488866852656, 32.7847150379641], [-79.9488907586612, 32.7847145589155], [-79.9488948341415, 32.7847139067324], [-79.9488989086011, 32.7847133393128], [-79.9489029819823, 32.7847127727857], [-79.9489062450886, 32.7847121136228], [-79.9489197961175, 32.7847106274853], [-79.9491424882633, 32.7846492804317], [-79.9496578814721, 32.7844916376815], [-79.9499827925195, 32.7843817298976], [-79.9502732023612, 32.7842834907696], [-79.9510847764198, 32.7840089323827], [-79.9507907629505, 32.7833447734], [-79.9502221898441, 32.7820603375834], [-79.9477126320864, 32.7827680601753], [-79.9481395324676, 32.7837279030428], [-79.9485186447901, 32.784574924573]]], "type": "Polygon"}, "id": "121", "properties": {"OBJECTID": 701, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 82981.29296875, "Shape__Length": 1136.74574813334, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9413243873902, 32.7849503234835, -79.9408848370092, 32.785274607528], "geometry": {"coordinates": [[[-79.941014806479, 32.7852644713103], [-79.941020281082, 32.785274607528], [-79.9413243873902, 32.785204148419], [-79.9411873700752, 32.7849503234835], [-79.9408848370092, 32.7850228177773], [-79.9409215861472, 32.7850911550226], [-79.9409624249861, 32.7851670958595], [-79.941014806479, 32.7852644713103]]], "type": "Polygon"}, "id": "122", "properties": {"OBJECTID": 713, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1273.87109375, "Shape__Length": 143.633364202555, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9570432990428, 32.7853172298505, -79.95658842109, 32.7855867541823], "geometry": {"coordinates": [[[-79.956971364172, 32.7853204092648], [-79.95658842109, 32.7854331116074], [-79.9567768542279, 32.7855867541823], [-79.95692306738, 32.7854758415941], [-79.9570015845103, 32.7854135972662], [-79.957033866817, 32.7853869274861], [-79.9570405995884, 32.785376088025], [-79.9570432990428, 32.7853663955824], [-79.95704299259, 32.7853541568894], [-79.9570404658101, 32.7853460008084], [-79.9570336349481, 32.7853352044411], [-79.9570228355623, 32.785325940727], [-79.9570084528134, 32.7853194818285], [-79.9569869670697, 32.7853172298505], [-79.956971364172, 32.7853204092648]]], "type": "Polygon"}, "id": "123", "properties": {"OBJECTID": 719, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 848.376953125, "Shape__Length": 128.385235631181, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9411873700752, 32.7844835973429, -79.9395315486293, 32.7855146353246], "geometry": {"coordinates": [[[-79.9411873700752, 32.7849503234835], [-79.9409293573728, 32.7844835973429], [-79.9403362623294, 32.7846257051992], [-79.9402344741599, 32.7846500938406], [-79.9402271754454, 32.7846374689541], [-79.9395315486293, 32.7847899089588], [-79.9396952184393, 32.7850725612718], [-79.9397755654781, 32.7852220180246], [-79.939935075966, 32.7855146353246], [-79.941014806479, 32.7852644713103], [-79.9409624249861, 32.7851670958595], [-79.9409215861472, 32.7850911550226], [-79.9408848370092, 32.7850228177773], [-79.9411873700752, 32.7849503234835]]], "type": "Polygon"}, "id": "124", "properties": {"OBJECTID": 721, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15226.33984375, "Shape__Length": 531.240886410295, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9383111891647, 32.7852251164563, -79.9378280690317, 32.7855231846067], "geometry": {"coordinates": [[[-79.9382193368708, 32.7852251164563], [-79.9381139154436, 32.7852617827696], [-79.9378280690317, 32.7853612015902], [-79.9379349429568, 32.7855231846067], [-79.9382057654611, 32.7854289974553], [-79.9383111891647, 32.7853923328842], [-79.9382193368708, 32.7852251164563]]], "type": "Polygon"}, "id": "125", "properties": {"OBJECTID": 723, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1126.5546875, "Shape__Length": 141.377361820761, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9555465543135, 32.7816766196201, -79.9504291246021, 32.7856033382861], "geometry": {"coordinates": [[[-79.9504291246021, 32.7821114632682], [-79.9512300858715, 32.7839212888558], [-79.9513371342989, 32.784115982685], [-79.9515078663993, 32.7844995612667], [-79.9515413700121, 32.7844889199687], [-79.9516836464432, 32.7848085660088], [-79.9518432229157, 32.7850967995136], [-79.9520537725036, 32.7855698097638], [-79.9521354920543, 32.7856033382861], [-79.9525152490798, 32.7854802685869], [-79.9525193285384, 32.7854892506115], [-79.95330876374, 32.7852363537182], [-79.9533186713198, 32.7852581672716], [-79.9555465543135, 32.7845361180794], [-79.9547656207877, 32.7828150580409], [-79.9546536186064, 32.7826244192875], [-79.9545468758314, 32.7824799613846], [-79.9544965771863, 32.7824204280684], [-79.9543618276028, 32.7822809784241], [-79.9542969680416, 32.7822247700844], [-79.9542425858452, 32.7822023401717], [-79.9541575036298, 32.7821756752134], [-79.9540692820471, 32.782157713106], [-79.954009334548, 32.7821507037602], [-79.9538884138547, 32.7821487824256], [-79.9537726891428, 32.7821536285777], [-79.9536873696609, 32.7821475771814], [-79.9536035633288, 32.782132766531], [-79.9535491551846, 32.7821181315373], [-79.9534963415494, 32.7820997964076], [-79.953445474326, 32.7820778840981], [-79.9533735582967, 32.7820386334034], [-79.9532981940048, 32.7819927959299], [-79.9531133292905, 32.7818248573539], [-79.9530653871869, 32.7817851668157], [-79.9529871371855, 32.7817453278011], [-79.9529392240634, 32.7817232565874], [-79.9528747514824, 32.7816997801494], [-79.9527718843214, 32.7816788058759], [-79.9526897932669, 32.7816766196201], [-79.9526317551625, 32.7816798328967], [-79.9524807901036, 32.781702564298], [-79.9517646101565, 32.7818293755367], [-79.9507613857118, 32.7819765970065], [-79.950458439385, 32.782060055005], [-79.9504291246021, 32.7821114632682]]], "type": "Polygon"}, "id": "126", "properties": {"OBJECTID": 725, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 186297.09765625, "Shape__Length": 1716.82817426739, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.937579773308, 32.7835828205078, -79.9353069217927, 32.785587940659], "geometry": {"coordinates": [[[-79.9360546953506, 32.7853436721821], [-79.936054755122, 32.7853437610818], [-79.9361370610386, 32.7854659405546], [-79.9361738138996, 32.7855208933458], [-79.9362185547685, 32.785587940659], [-79.9366868227588, 32.7853477970203], [-79.9368002796883, 32.7855173198887], [-79.9368305111884, 32.7855065847219], [-79.9372823554018, 32.7853456711519], [-79.937579773308, 32.7852395876171], [-79.9366822947205, 32.7837826591337], [-79.9365594473796, 32.7835828205078], [-79.9361787794586, 32.7837782818099], [-79.9361083731768, 32.7838146935194], [-79.9354788420129, 32.7841373556727], [-79.9353069217927, 32.7842258826591], [-79.9353788248373, 32.7843336230064], [-79.9354123806083, 32.7843839109681], [-79.9354443367461, 32.7844317789038], [-79.9354842849469, 32.7844915664917], [-79.935555403237, 32.7845969830906], [-79.9356065354614, 32.784673536573], [-79.9356544716123, 32.7847453375119], [-79.935687895624, 32.7847954249455], [-79.9356880266768, 32.7847956217839], [-79.9357198877211, 32.784843345428], [-79.9357199841729, 32.7848434905608], [-79.9357487455856, 32.7848866023007], [-79.9357791045598, 32.7849321358317], [-79.9358102791093, 32.7849775916767], [-79.9358643762573, 32.7850586376326], [-79.9358646058762, 32.7850589814255], [-79.9359157397099, 32.7851355347917], [-79.9359176416521, 32.7851383839997], [-79.9362046900164, 32.7849885530451], [-79.9362554807126, 32.7849620406109], [-79.9362896258809, 32.7849442178126], [-79.9362369371146, 32.7848714532248], [-79.9362355359789, 32.7848689465647], [-79.9362351570034, 32.7848684184013], [-79.936235222539, 32.7848683847013], [-79.936219210375, 32.7848478811253], [-79.9361745390366, 32.7847884756717], [-79.9361413822484, 32.7847443842963], [-79.9361273147951, 32.7847256769405], [-79.9361122808642, 32.7847054163342], [-79.936106042727, 32.784697009286], [-79.9360963104646, 32.7846840311099], [-79.9360745442104, 32.784655004731], [-79.9360892190312, 32.7846473513103], [-79.9360596668519, 32.7846050805009], [-79.9359720854574, 32.7846507444131], [-79.9359189944858, 32.7845751020388], [-79.935898820951, 32.7845463591298], [-79.9359294746521, 32.7845307480288], [-79.9359184171394, 32.7845152611293], [-79.9360660551111, 32.7844373594723], [-79.9360084805167, 32.7843572239807], [-79.9359407767369, 32.7842570111791], [-79.9358993889881, 32.7841957511509], [-79.9359164163995, 32.7841868141601], [-79.9359542886849, 32.7842393877897], [-79.9360444362319, 32.7841936352869], [-79.9360780574204, 32.7842421740704], [-79.9362585521224, 32.7841446084155], [-79.9363203167862, 32.7841112219936], [-79.9368382395776, 32.7849312717845], [-79.9367817779927, 32.7849609294774], [-79.9367743790027, 32.7849648161173], [-79.9367492098138, 32.784977699246], [-79.9367491496488, 32.7849777302873], [-79.9367262193456, 32.7849894667957], [-79.9366739729287, 32.7850162102677], [-79.9365296818379, 32.7850925094376], [-79.9363156673194, 32.785205675334], [-79.9360546953506, 32.7853436721821]]], "type": "Polygon"}, "id": "127", "properties": {"OBJECTID": 727, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 27672.060546875, "Shape__Length": 1247.30768696119, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9518337446556, 32.7841715323759, -79.9502935398395, 32.7860032617649], "geometry": {"coordinates": [[[-79.9510921621694, 32.7841715323759], [-79.9502935398395, 32.7844318095845], [-79.9510195126991, 32.7860032617649], [-79.9518103825054, 32.7857469687974], [-79.9518337446556, 32.7856690574808], [-79.9511820011001, 32.7842048173186], [-79.9510921621694, 32.7841715323759]]], "type": "Polygon"}, "id": "128", "properties": {"OBJECTID": 734, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22674.591796875, "Shape__Length": 641.50389803409, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9554291781513, 32.7849768229167, -79.9538620132814, 32.7860466329627], "geometry": {"coordinates": [[[-79.954749970181, 32.7849768229167], [-79.9543660492668, 32.7851012500312], [-79.9543729020622, 32.7851166929861], [-79.9538867507643, 32.7852742520909], [-79.9538620132814, 32.7853205400308], [-79.9538767733058, 32.7853540295916], [-79.9538706973369, 32.7853559986474], [-79.9540080333575, 32.7856676022201], [-79.9540233388238, 32.7856954085593], [-79.9541636956856, 32.7860207835411], [-79.9542833550198, 32.7860466329627], [-79.9545799582883, 32.7859454036579], [-79.9547017861275, 32.7858579196812], [-79.9553019859042, 32.7854259165612], [-79.9554291781513, 32.7853316535074], [-79.9553686728546, 32.7852033380114], [-79.9552205030752, 32.7852526322767], [-79.9549180234285, 32.7853539571965], [-79.954749970181, 32.7849768229167]]], "type": "Polygon"}, "id": "129", "properties": {"OBJECTID": 735, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12975.306640625, "Shape__Length": 511.69012095505, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9407176099531, 32.7855149913149, -79.940386031528, 32.7860482730808], "geometry": {"coordinates": [[[-79.940386031528, 32.7855384210467], [-79.9404533440105, 32.7856574745137], [-79.9404715220821, 32.7856896209415], [-79.9404857196529, 32.7857147617082], [-79.9405122388243, 32.7857564361079], [-79.9405606165026, 32.7858363969182], [-79.940452257295, 32.7858648763937], [-79.9404832573532, 32.7859285420811], [-79.94052420343, 32.7859866754582], [-79.9405521164195, 32.7859790495661], [-79.9405842438253, 32.7860482730808], [-79.9407176099531, 32.7860118276539], [-79.9404871364444, 32.7855149913149], [-79.940386031528, 32.7855384210467]]], "type": "Polygon"}, "id": "130", "properties": {"OBJECTID": 738, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 936.134765625, "Shape__Length": 185.687984741317, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.956523151035, 32.7855428332191, -79.9552486030147, 32.7862920952287], "geometry": {"coordinates": [[[-79.9552486030147, 32.7859270327953], [-79.9554183324805, 32.7862920952287], [-79.9562257432459, 32.78592025483], [-79.9562336775148, 32.7859370731836], [-79.9565114444088, 32.7857716816813], [-79.9565139135118, 32.7857692975498], [-79.9565163846951, 32.7857667393821], [-79.9565188579046, 32.7857640116869], [-79.956520520745, 32.7857610191554], [-79.9565213701443, 32.7857580187841], [-79.9565222215701, 32.7857548488854], [-79.9565230740198, 32.7857515933212], [-79.9565231119938, 32.7857484164844], [-79.956523151035, 32.7857451503751], [-79.9565223755574, 32.7857419666004], [-79.9565207856153, 32.7857388606513], [-79.9565200081115, 32.785735846404], [-79.9565176016244, 32.7857329923169], [-79.9565160065625, 32.7857303146952], [-79.9565127814936, 32.785727882899], [-79.9563378254651, 32.7855956489834], [-79.9562684930972, 32.7855428332191], [-79.9560854822966, 32.785607927225], [-79.9560909936062, 32.7856232657463], [-79.9555599253191, 32.7858131252887], [-79.9552486030147, 32.7859270327953]]], "type": "Polygon"}, "id": "131", "properties": {"OBJECTID": 741, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6162.056640625, "Shape__Length": 364.063149309644, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.950874166803, 32.7844526113379, -79.9493539847412, 32.7862887130458], "geometry": {"coordinates": [[[-79.9501400997027, 32.7844526113379], [-79.9493539847412, 32.784716672889], [-79.9500683564518, 32.7862887130458], [-79.950874166803, 32.7860287819192], [-79.9507020365335, 32.7856447944954], [-79.9506431157259, 32.7855278614194], [-79.950482487482, 32.7852054485871], [-79.9501400997027, 32.7844526113379]]], "type": "Polygon"}, "id": "132", "properties": {"OBJECTID": 745, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21231.861328125, "Shape__Length": 637.30399309687, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9417836377727, 32.7852984341527, -79.9405502165564, 32.7862433396067], "geometry": {"coordinates": [[[-79.9407905922455, 32.7860185315889], [-79.9408999056591, 32.7862433396067], [-79.9410063518602, 32.786216277992], [-79.9411417255844, 32.786190364878], [-79.941316729905, 32.7861464945183], [-79.9414289703861, 32.7861088292986], [-79.9417836377727, 32.7860205280906], [-79.9416576914641, 32.7857726803086], [-79.9414167018507, 32.7852984341527], [-79.9409519512, 32.7854215436665], [-79.9409446836754, 32.7854089741051], [-79.9405502165564, 32.7855003642068], [-79.9407905922455, 32.7860185315889]]], "type": "Polygon"}, "id": "133", "properties": {"OBJECTID": 748, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10568.357421875, "Shape__Length": 414.213810470878, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9408999056591, 32.7855384210467, -79.9399979643502, 32.7863692253072], "geometry": {"coordinates": [[[-79.940386031528, 32.7855384210467], [-79.9399979643502, 32.7856283479221], [-79.940403549687, 32.7863692253072], [-79.9408999056591, 32.7862433396067], [-79.9407905922455, 32.7860185315889], [-79.9407316660292, 32.78604212837], [-79.9407176099531, 32.7860118276539], [-79.9405842438253, 32.7860482730808], [-79.9405521164195, 32.7859790495661], [-79.94052420343, 32.7859866754582], [-79.9404832573532, 32.7859285420811], [-79.940452257295, 32.7858648763937], [-79.9405606165026, 32.7858363969182], [-79.9405122388243, 32.7857564361079], [-79.9404857196529, 32.7857147617082], [-79.9404715220821, 32.7856896209415], [-79.9404533440105, 32.7856574745137], [-79.940386031528, 32.7855384210467]]], "type": "Polygon"}, "id": "134", "properties": {"OBJECTID": 749, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4946.783203125, "Shape__Length": 357.648088545107, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9590415281747, 32.784619550258, -79.9569895728906, 32.7865542107527], "geometry": {"coordinates": [[[-79.9574139145653, 32.7854094037993], [-79.9571653116827, 32.7855302951177], [-79.9571228891205, 32.7855602639798], [-79.9569911264224, 32.7856530396709], [-79.9569895728906, 32.7856987115233], [-79.9571737873577, 32.7858452597636], [-79.9580647688939, 32.7865542107527], [-79.9581488755666, 32.7864715452634], [-79.9581916879246, 32.786428960903], [-79.9582256045065, 32.786381917868], [-79.9582716532116, 32.7863408193038], [-79.9583136581329, 32.7862977130803], [-79.9583604904895, 32.7862591120208], [-79.9584145905866, 32.7862250423067], [-79.9584614361792, 32.7861853248521], [-79.9585195205246, 32.7861583314307], [-79.9585816064756, 32.7861367848506], [-79.9586437088327, 32.786113860377], [-79.9586952198174, 32.7860922228264], [-79.9587033973821, 32.7860886859949], [-79.9587386781791, 32.7860636456483], [-79.9587697257011, 32.786052486361], [-79.9587999608713, 32.7860413165452], [-79.958826990278, 32.786025999864], [-79.958833565495, 32.7860202994161], [-79.9588393324356, 32.7860143368704], [-79.9588459076644, 32.7860087248017], [-79.9588786179144, 32.7859944836421], [-79.9589161361497, 32.7859864717701], [-79.9589504559016, 32.7859737918342], [-79.9589734702577, 32.785954147326], [-79.9589932727997, 32.7859308627392], [-79.9590130752883, 32.7859075817561], [-79.9590415281747, 32.7858458534502], [-79.958878538605, 32.78543851245], [-79.9587168261322, 32.7851894340624], [-79.9588123060462, 32.7850852245463], [-79.9589585175397, 32.7850174018598], [-79.9589515048641, 32.7849990944867], [-79.9589443159252, 32.784987868614], [-79.9589330383813, 32.7849785802592], [-79.9589282897907, 32.7849673742498], [-79.9589259949261, 32.7849551556191], [-79.9589245022499, 32.7849439773158], [-79.9589197659864, 32.7849317379097], [-79.9589101019381, 32.784923497686], [-79.9589053678235, 32.7849112573958], [-79.9588957038111, 32.7849030144657], [-79.9588827480592, 32.7848978377136], [-79.9588680825415, 32.7848997754042], [-79.9588534272022, 32.7849006805803], [-79.9588395751137, 32.7849025368101], [-79.9588257096884, 32.7849055111986], [-79.9588142620971, 32.7849104820796], [-79.9588019989147, 32.7849154469204], [-79.9587873211096, 32.7849184143907], [-79.9587766725622, 32.784924420159], [-79.9587643981495, 32.7849304156962], [-79.9587497202949, 32.7849332974875], [-79.9587366683059, 32.784936278789], [-79.9587243815946, 32.7849433050134], [-79.958709751892, 32.7849421497008], [-79.9586984487225, 32.7849349226975], [-79.9586871455441, 32.784927696595], [-79.9586774938559, 32.7849184220548], [-79.958668642254, 32.7849102744012], [-79.958666347395, 32.7848980584709], [-79.9586697343803, 32.7848869189927], [-79.9586763761611, 32.7848757215437], [-79.958684619184, 32.7848666876946], [-79.9586976947422, 32.7848617297801], [-79.95870998039, 32.7848547919292], [-79.9587229842345, 32.7848558459261], [-79.9587375903566, 32.7848589769538], [-79.9587497315507, 32.7848641494943], [-79.9587635232099, 32.7848673592613], [-79.9587773517506, 32.7848674769533], [-79.9587911444331, 32.7848706010517], [-79.9588050098997, 32.7848677123417], [-79.9588180485156, 32.784865761715], [-79.9588310994803, 32.7848628651685], [-79.9588425860777, 32.7848548022306], [-79.9588532335876, 32.7848487928406], [-79.9588614765896, 32.7848397589796], [-79.9588705340763, 32.7848306445715], [-79.958877149121, 32.7848215968556], [-79.9588813516086, 32.7848103786376], [-79.9588839352909, 32.7847982899017], [-79.9588816302339, 32.7847870163051], [-79.9588817634164, 32.7847758491318], [-79.9588794562389, 32.7847646638967], [-79.9588722448651, 32.7847554110408], [-79.958862627989, 32.7847432175764], [-79.9588569881249, 32.7847385323526], [-79.9588521505676, 32.7847349668189], [-79.9588424988401, 32.7847256958988], [-79.9588352864625, 32.7847165278045], [-79.9588280986158, 32.7847052135547], [-79.9588208862092, 32.7846960481647], [-79.9588185924343, 32.7846838295413], [-79.9588187256033, 32.7846726641718], [-79.9588188710759, 32.7846604672093], [-79.9588124843951, 32.7846501896708], [-79.958798740944, 32.7846430302885], [-79.9587915531645, 32.7846318008094], [-79.9587851900218, 32.784619550258], [-79.9587852295393, 32.7846216076765], [-79.9580394047449, 32.7849777436172], [-79.9581303539227, 32.7850815427495], [-79.9574139145653, 32.7854094037993]]], "type": "Polygon"}, "id": "135", "properties": {"OBJECTID": 751, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 29517.7734375, "Shape__Length": 817.243077645753, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9592374117607, 32.7860945064214, -79.9581316361448, 32.786679992681], "geometry": {"coordinates": [[[-79.9592374117607, 32.7861972528552], [-79.9592018644172, 32.7861764229162], [-79.9591338833864, 32.7861465503096], [-79.959079855021, 32.7861064063516], [-79.9590742407051, 32.7860996597636], [-79.9590710401425, 32.7860951657504], [-79.9590474520111, 32.7860947919029], [-79.959023862826, 32.7860945064214], [-79.959001077902, 32.7860949988466], [-79.9589513874683, 32.7861003297292], [-79.958901650984, 32.7861097004148], [-79.9588535075513, 32.7861218334261], [-79.9588249259543, 32.7861307798784], [-79.9587955196487, 32.7861407519051], [-79.95876692577, 32.7861508165132], [-79.9587570813329, 32.7861576894747], [-79.9586941214814, 32.7861842988148], [-79.958685126321, 32.786188174991], [-79.9586197558119, 32.7862122693032], [-79.95856175345, 32.7862324798771], [-79.9585200356073, 32.7862515367226], [-79.9584781198903, 32.7862870873103], [-79.9584240167024, 32.7863214149511], [-79.9583853998818, 32.786353299682], [-79.9583450393508, 32.7863950455363], [-79.9583031050608, 32.7864321407489], [-79.9582700275814, 32.7864770436841], [-79.958223914246, 32.7865235517993], [-79.9581316361448, 32.7866208647797], [-79.9582057774788, 32.786679992681], [-79.9586909176645, 32.7864528809134], [-79.9592374117607, 32.7861972528552]]], "type": "Polygon"}, "id": "136", "properties": {"OBJECTID": 755, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3347.533203125, "Shape__Length": 297.194963741574, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9397265727441, 32.7848336112158, -79.9379349429568, 32.7865232460962], "geometry": {"coordinates": [[[-79.9379349429568, 32.7855231846067], [-79.9385884686963, 32.7865232460962], [-79.9392266427231, 32.7863465939912], [-79.9391717190681, 32.786205498175], [-79.9391296304072, 32.7860973720044], [-79.9391166965309, 32.7861062881256], [-79.9390717211134, 32.7859894639519], [-79.9390539044245, 32.7859162878353], [-79.9389594169978, 32.7857315354756], [-79.9397265727441, 32.7854760011801], [-79.9395463166948, 32.7851279465314], [-79.9393757322285, 32.7848336112158], [-79.9393579920112, 32.7848362107215], [-79.9393547267513, 32.7848371284385], [-79.9393490117876, 32.7848387968886], [-79.9393457465385, 32.7848397137036], [-79.9393400305337, 32.7848414678186], [-79.9393343155695, 32.784843136268], [-79.93933105032, 32.7848440530827], [-79.9393253332471, 32.7848458071878], [-79.9393196193498, 32.7848474756457], [-79.9393163530325, 32.7848483924508], [-79.939310638094, 32.7848501465736], [-79.9393049220988, 32.7848518997853], [-79.9393016578786, 32.7848527318355], [-79.939295941883, 32.7848544850467], [-79.9392902258761, 32.7848562391594], [-79.9392869606148, 32.7848571568746], [-79.9392812446186, 32.7848589100851], [-79.9392755285783, 32.7848606669024], [-79.9392722633605, 32.7848615810103], [-79.9392665473199, 32.784863337827], [-79.9392608292144, 32.7848651766927], [-79.9392575660937, 32.7848660060458], [-79.939251847955, 32.7848678476163], [-79.9392461330249, 32.7848696008344], [-79.939242866706, 32.7848705176375], [-79.9392371517647, 32.7848722717569], [-79.9392314346926, 32.7848741133356], [-79.93922816943, 32.7848750310493], [-79.9392224534314, 32.7848767842571], [-79.9392167353241, 32.7848786231206], [-79.9392110203488, 32.7848803799441], [-79.939207754062, 32.784881294041], [-79.9392020380453, 32.7848831365294], [-79.9391963199482, 32.7848849744902], [-79.9391930557632, 32.7848858913105], [-79.9391873376109, 32.7848877337796], [-79.9391816226782, 32.7848894869948], [-79.9391759056368, 32.7848913258657], [-79.9391726403729, 32.7848922435779], [-79.939166923342, 32.7848940815467], [-79.9391612051886, 32.7848959240146], [-79.9391579410029, 32.7848968408339], [-79.9391522218191, 32.784898768065], [-79.9391465058548, 32.7849006060421], [-79.9391407877006, 32.7849024485091], [-79.9391375235472, 32.7849033626226], [-79.9391318053926, 32.7849052050892], [-79.939126087319, 32.7849071287214], [-79.9391203713099, 32.7849089703042], [-79.9391171049882, 32.7849098871039], [-79.9391113879376, 32.7849118143516], [-79.9391056698257, 32.78491365321], [-79.939099951718, 32.7849155795462], [-79.9390966864854, 32.7849164945512], [-79.9390909694075, 32.7849183361234], [-79.9390852523667, 32.7849202624681], [-79.9390795331797, 32.7849221896958], [-79.9390738172015, 32.7849240285713], [-79.9390705498377, 32.784925031035], [-79.9390648338591, 32.7849268699101], [-79.9390591146712, 32.7849287971369], [-79.9390533965615, 32.7849307234709], [-79.9390501312949, 32.7849316411797], [-79.9390444132178, 32.7849335648081], [-79.939038696175, 32.7849354911507], [-79.939032976986, 32.7849374183763], [-79.9390272588751, 32.7849393447091], [-79.9390239925668, 32.7849403480826], [-79.9390182744885, 32.7849422717097], [-79.9390125563661, 32.7849441989436], [-79.9390068382544, 32.7849461252755], [-79.9390011191012, 32.7849481372724], [-79.9389954009781, 32.7849500645054], [-79.9389921367886, 32.7849509813203], [-79.9389864165673, 32.7849529933073], [-79.9389806984874, 32.7849549169327], [-79.938974979333, 32.7849569289284], [-79.9389692612087, 32.7849588561602], [-79.9389635420539, 32.7849608681554], [-79.9389602767852, 32.7849617858619], [-79.938954557641, 32.7849637969549], [-79.9389488395486, 32.7849657214805], [-79.93894312036, 32.78496773618], [-79.9389374012369, 32.7849697454687], [-79.9389316820806, 32.7849717574623], [-79.9389259639543, 32.7849736846922], [-79.9389226976655, 32.7849746862595], [-79.9389169785086, 32.7849766982525], [-79.9389112593403, 32.7849787111469], [-79.9389055401939, 32.7849807222377], [-79.9388998210361, 32.7849827342298], [-79.9388941018672, 32.7849847471235], [-79.9388883827089, 32.7849867591151], [-79.9388826635614, 32.7849887702048], [-79.9388769444026, 32.7849907821959], [-79.9388736781015, 32.7849917846637], [-79.9388679589424, 32.7849937966544], [-79.9388622387416, 32.7849958943101], [-79.938856519549, 32.7849979090055], [-79.938850800389, 32.7849999209954], [-79.9388450801983, 32.7850020177486], [-79.9388393610379, 32.785004029738], [-79.9388336408357, 32.7850061273924], [-79.9388279216747, 32.7850081393812], [-79.938822201483, 32.7850102361333], [-79.9388164823214, 32.7850122481217], [-79.9388107621182, 32.785014345775], [-79.9388050418818, 32.7850164461333], [-79.9387993216519, 32.7850184581116], [-79.9387936025263, 32.7850205548716], [-79.938787882333, 32.7850226516222], [-79.9387821621284, 32.7850247492742], [-79.9387764429321, 32.7850267639658], [-79.938770722727, 32.7850288616173], [-79.9387650025325, 32.7850309583667], [-79.9387617351982, 32.7850320455952], [-79.9387560149924, 32.785034143246], [-79.9387502947534, 32.7850362436017], [-79.9387470274187, 32.7850373308297], [-79.9387421206667, 32.7850394346343], [-79.93873640046, 32.7850415322842], [-79.93873068022, 32.785043632639], [-79.9387249600237, 32.7850457293866], [-79.9387192387527, 32.7850479145045], [-79.9386329697949, 32.7850812500833], [-79.9383398038493, 32.7851832164991], [-79.9382193368708, 32.7852251164563], [-79.9383111891647, 32.7853923328842], [-79.9382057654611, 32.7854289974553], [-79.9379349429568, 32.7855231846067]]], "type": "Polygon"}, "id": "137", "properties": {"OBJECTID": 756, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22870.98828125, "Shape__Length": 709.305309171853, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9290135897572, 32.7853615235021, -79.9285766011796, 32.7864089997019], "geometry": {"coordinates": [[[-79.9288176133352, 32.7853722749265], [-79.9288086992554, 32.785646899822], [-79.9288046817762, 32.7857124128153], [-79.9287985909331, 32.7858115975548], [-79.928795017852, 32.7858452444458], [-79.9287903793443, 32.7858787981374], [-79.9287846799776, 32.7859122343201], [-79.9287779242975, 32.7859455304873], [-79.928770115804, 32.7859786623201], [-79.9287612612001, 32.7860116055275], [-79.9287513661098, 32.7860443367106], [-79.9287404372249, 32.7860768324801], [-79.9287284844398, 32.7861090694747], [-79.9287155133677, 32.7861410251971], [-79.9286689323681, 32.7862308848167], [-79.9286274711889, 32.7863108672509], [-79.9285982378247, 32.7863672601024], [-79.9285766011796, 32.7864089997019], [-79.9289092521753, 32.7862887892197], [-79.9289841082084, 32.7862375745237], [-79.9290115061937, 32.7859459467603], [-79.9290135897572, 32.7857761176575], [-79.9290029580094, 32.785594960208], [-79.9289861669115, 32.7853615235021], [-79.9288176133352, 32.7853722749265]]], "type": "Polygon"}, "id": "138", "properties": {"OBJECTID": 757, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3312.140625, "Shape__Length": 327.716782987761, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9540405514108, 32.7853149387144, -79.9521536749431, 32.786658544393], "geometry": {"coordinates": [[[-79.9521536749431, 32.7858820796336], [-79.9522515514594, 32.7860940336768], [-79.9523096501516, 32.7862369777436], [-79.9523488113983, 32.7863533999067], [-79.9523840975415, 32.7864808264256], [-79.9524415832458, 32.7866088768005], [-79.9525909418344, 32.786658544393], [-79.9533793511014, 32.7863819289199], [-79.9539797189264, 32.786165649625], [-79.9540405514108, 32.7860694462068], [-79.9536908996038, 32.7853406684489], [-79.953624947946, 32.7853149387144], [-79.9529875746305, 32.7855241889707], [-79.9522141673079, 32.7857765618575], [-79.9521536749431, 32.7858820796336]]], "type": "Polygon"}, "id": "139", "properties": {"OBJECTID": 758, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22707.517578125, "Shape__Length": 597.875065966948, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9402458638207, 32.7854760011801, -79.9385884686963, 32.7867825800322], "geometry": {"coordinates": [[[-79.9385884686963, 32.7865232460962], [-79.9387629481167, 32.7867825800322], [-79.9402458638207, 32.7864085133564], [-79.9401417683259, 32.7862171232591], [-79.9400039614683, 32.7859649900747], [-79.9399453036879, 32.7858684363804], [-79.9398754263777, 32.7857534132499], [-79.9397265727441, 32.7854760011801], [-79.9389594169978, 32.7857315354756], [-79.9390539044245, 32.7859162878353], [-79.9390717211134, 32.7859894639519], [-79.9391166965309, 32.7861062881256], [-79.9391296304072, 32.7860973720044], [-79.9391717190681, 32.786205498175], [-79.9392266427231, 32.7863465939912], [-79.9385884686963, 32.7865232460962]]], "type": "Polygon"}, "id": "140", "properties": {"OBJECTID": 761, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15644.46875, "Shape__Length": 604.177186489442, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9290370699347, 32.7863339453877, -79.9286866303445, 32.7866984317379], "geometry": {"coordinates": [[[-79.9286866303445, 32.7864456993985], [-79.9287058773914, 32.7866080686237], [-79.928712349864, 32.7866626692673], [-79.928716589403, 32.7866984317379], [-79.9289615204409, 32.7866680280038], [-79.9290370699347, 32.7866586501204], [-79.9290227936812, 32.7865687320065], [-79.9290036898409, 32.7864477259138], [-79.9289837682046, 32.7863339453877], [-79.9286866303445, 32.7864456993985]]], "type": "Polygon"}, "id": "141", "properties": {"OBJECTID": 762, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1363.625, "Shape__Length": 149.333788952854, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9314952833501, 32.7855298673898, -79.9295480755235, 32.7867196380462], "geometry": {"coordinates": [[[-79.9295915170536, 32.7861430246225], [-79.929623644047, 32.7863140638969], [-79.9296315354858, 32.7863560782466], [-79.9296410518176, 32.7864159478394], [-79.9296442452312, 32.7864155915954], [-79.9296533377636, 32.7864728457619], [-79.9295480755235, 32.7864853107696], [-79.9296163166412, 32.7865993236656], [-79.9296319268998, 32.7867196380462], [-79.9300203975768, 32.7865460903933], [-79.9307594609451, 32.7862192078388], [-79.9310315110761, 32.7860964761325], [-79.9314952833501, 32.7858679384905], [-79.9314368089067, 32.7857793310199], [-79.9312721847406, 32.7855298673898], [-79.9310416570587, 32.7856150113433], [-79.9309216880648, 32.7856593209154], [-79.9307717226231, 32.7857147097093], [-79.9305931291372, 32.7857806701196], [-79.9306191839077, 32.7859037973902], [-79.9306475996015, 32.7860379684357], [-79.9306728023292, 32.786157017361], [-79.9305446759649, 32.7861763763201], [-79.9304729410355, 32.7858375101586], [-79.9303223027691, 32.7858909508727], [-79.9301716267672, 32.7859444064044], [-79.9298781320355, 32.7860485286265], [-79.9299115796452, 32.7862240569872], [-79.9299348477372, 32.7863461698265], [-79.9298063531338, 32.7863636552893], [-79.929792227649, 32.7862895072007], [-79.9297534601433, 32.7860860312559], [-79.9295915170536, 32.7861430246225]]], "type": "Polygon"}, "id": "142", "properties": {"OBJECTID": 763, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12163.755859375, "Shape__Length": 752.957744047873, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9296533377636, 32.7861430246225, -79.9291340909483, 32.7867698324582], "geometry": {"coordinates": [[[-79.9295915170536, 32.7861430246225], [-79.9294854656492, 32.7861803480984], [-79.9291340909483, 32.7863040063006], [-79.9291513680514, 32.7864129271048], [-79.9291699780404, 32.7865300816158], [-79.9291890084737, 32.7866499552342], [-79.929208038915, 32.7867698324582], [-79.9295878331748, 32.7867248598889], [-79.9296319268998, 32.7867196380462], [-79.9296163166412, 32.7865993236656], [-79.9295480755235, 32.7864853107696], [-79.9296533377636, 32.7864728457619], [-79.9296442452312, 32.7864155915954], [-79.9296410518176, 32.7864159478394], [-79.9296315354858, 32.7863560782466], [-79.929623644047, 32.7863140638969], [-79.9295915170536, 32.7861430246225]]], "type": "Polygon"}, "id": "143", "properties": {"OBJECTID": 765, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3497.08203125, "Shape__Length": 254.409017516039, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9522878814836, 32.7858752823399, -79.9513607060335, 32.7869429984005], "geometry": {"coordinates": [[[-79.9513607060335, 32.7860398927572], [-79.9517587557038, 32.7869226627208], [-79.951814673946, 32.7869429984005], [-79.9522414253387, 32.7867847051287], [-79.9522878814836, 32.7867100027171], [-79.9521825488552, 32.7864428133211], [-79.9519404474171, 32.7859094618059], [-79.9518939192174, 32.7859247298766], [-79.9518686591146, 32.7858752823399], [-79.9513607060335, 32.7860398927572]]], "type": "Polygon"}, "id": "144", "properties": {"OBJECTID": 766, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8426.583984375, "Shape__Length": 381.025083421128, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.954752354008, 32.7863252848545, -79.9532646863788, 32.7871373134544], "geometry": {"coordinates": [[[-79.9542451559866, 32.7863758591789], [-79.9541643246525, 32.7863889049715], [-79.9540843041834, 32.7864154490814], [-79.9540141023885, 32.7864263409812], [-79.953904081958, 32.7864457808581], [-79.9538542812878, 32.786455543953], [-79.953796299712, 32.7864676765319], [-79.953702773352, 32.7864894153626], [-79.9532646863788, 32.786634734909], [-79.9533874275891, 32.7869198871068], [-79.9534793214362, 32.7871309935583], [-79.9535679736188, 32.7871373134544], [-79.9540449187533, 32.7869222046973], [-79.9542301190504, 32.7868398451544], [-79.9543337534525, 32.7867938283591], [-79.9544049922046, 32.786757887674], [-79.9544006349944, 32.7867474721287], [-79.9543909396786, 32.7867243014133], [-79.9545011290051, 32.7866877484332], [-79.954752354008, 32.7865266089458], [-79.9547438497936, 32.7865157692928], [-79.9546298069757, 32.7863704166825], [-79.9545943979345, 32.7863252848545], [-79.9544568566219, 32.7863544941081], [-79.954250501264, 32.7863886360605], [-79.9542451559866, 32.7863758591789]]], "type": "Polygon"}, "id": "145", "properties": {"OBJECTID": 768, "ORDNO": "2017-005", "ORDSTAT": null, "Shape__Area": 9297.708984375, "Shape__Length": 426.477399843772, "ZONE_BASE": "PUD", "__folium_color": "#7f7f7f"}, "type": "Feature"}, {"bbox": [-79.9386191546926, 32.7854193014364, -79.9364122524126, 32.7871663848604], "geometry": {"coordinates": [[[-79.9376345335434, 32.7854236786509], [-79.9364122524126, 32.785858747807], [-79.9369231313122, 32.7866242778092], [-79.937123339626, 32.786924287724], [-79.9372893699208, 32.7871663848604], [-79.9386191546926, 32.7868192656661], [-79.9377192009499, 32.7854501594326], [-79.9377154331594, 32.7854446426558], [-79.9377070871466, 32.7854357231821], [-79.9376994954356, 32.7854300920368], [-79.9376929312738, 32.7854264385201], [-79.9376848555774, 32.7854231172812], [-79.937676314314, 32.7854207677853], [-79.9376674724327, 32.7854194338506], [-79.93765513119, 32.7854193014364], [-79.9376462527589, 32.7854204445249], [-79.937640829119, 32.7854216798391], [-79.9376345335434, 32.7854236786509]]], "type": "Polygon"}, "id": "146", "properties": {"OBJECTID": 769, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 31516.294921875, "Shape__Length": 719.768943805984, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9291071916413, 32.7868219029534, -79.9287360843651, 32.7871145925747], "geometry": {"coordinates": [[[-79.9290647497892, 32.7868219029534], [-79.9287360843651, 32.7868627060074], [-79.9287659580003, 32.7871145925747], [-79.9291071916413, 32.7870722247321], [-79.9290647497892, 32.7868219029534]]], "type": "Polygon"}, "id": "147", "properties": {"OBJECTID": 770, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1261.9296875, "Shape__Length": 142.381699025142, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9516814543046, 32.7860536448419, -79.9501253835581, 32.787369205843], "geometry": {"coordinates": [[[-79.950612135087, 32.7862744390126], [-79.9505721177748, 32.7862872372945], [-79.9501253835581, 32.7864308120839], [-79.9505387718074, 32.787369205843], [-79.9505591910692, 32.7873625090156], [-79.9516422653635, 32.7870040570774], [-79.9516814543046, 32.7869247627028], [-79.9515602925698, 32.7866491032659], [-79.9512997892066, 32.7860536448419], [-79.950612135087, 32.7862744390126]]], "type": "Polygon"}, "id": "148", "properties": {"OBJECTID": 775, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 18395.994140625, "Shape__Length": 538.760593281849, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9533935108613, 32.7867087601967, -79.9525783366334, 32.7874987036263], "geometry": {"coordinates": [[[-79.9525783366334, 32.7869030229565], [-79.9528551195771, 32.7874987036263], [-79.9530842214477, 32.7873897666089], [-79.953175865279, 32.7873458856274], [-79.9533935108613, 32.7872423475971], [-79.9531452690569, 32.7867087601967], [-79.9525783366334, 32.7869030229565]]], "type": "Polygon"}, "id": "149", "properties": {"OBJECTID": 778, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5471.724609375, "Shape__Length": 297.57828998397, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9527126120607, 32.7869507487795, -79.9518536404627, 32.7878413277123], "geometry": {"coordinates": [[[-79.9522976494323, 32.786964231395], [-79.952180029351, 32.7870033394929], [-79.9520615957226, 32.7870424387068], [-79.9520493432298, 32.7870465444229], [-79.9520444366747, 32.7870486496632], [-79.9520387166668, 32.7870507470337], [-79.9520338090437, 32.7870528522644], [-79.9520289035661, 32.7870549566114], [-79.952025636278, 32.7870560478012], [-79.9520207287042, 32.7870582378042], [-79.9520158190016, 32.7870605161687], [-79.9520109124623, 32.7870627088856], [-79.9520060028027, 32.7870649836427], [-79.9520027355638, 32.7870661596047], [-79.9519978248427, 32.7870685227321], [-79.9519929172741, 32.7870708011138], [-79.9519880055348, 32.7870732490045], [-79.951983096948, 32.7870756121495], [-79.9519781852082, 32.7870780600398], [-79.9519732755925, 32.7870805088499], [-79.9519683638196, 32.7870829594451], [-79.9519634531856, 32.7870854930185], [-79.9519585403838, 32.7870880292787], [-79.9519536297492, 32.7870905628518], [-79.9519487180035, 32.7870931000225], [-79.9519413473247, 32.7870970716894], [-79.9519388915014, 32.7870984250474], [-79.9519339776804, 32.7871010460703], [-79.9519315207894, 32.787102399419], [-79.9519274215276, 32.7871051139957], [-79.9519249635687, 32.7871064673351], [-79.9519225056596, 32.7871079054473], [-79.9519200498357, 32.7871092588049], [-79.9519175929442, 32.7871106121533], [-79.951915134985, 32.7871119654926], [-79.9519126770756, 32.7871134036046], [-79.9519085767625, 32.7871162056495], [-79.9519061177745, 32.787117644654], [-79.9519036598648, 32.7871190827658], [-79.9519012040403, 32.7871204361231], [-79.9518987450629, 32.7871218742257], [-79.9518946426637, 32.7871247610248], [-79.9518921858103, 32.7871262000473], [-79.9518897257715, 32.7871277265204], [-79.9518872678613, 32.7871291646319], [-79.9518831655003, 32.7871321371052], [-79.9518807065222, 32.7871335752075], [-79.9518782475831, 32.7871350989842], [-79.9518741452216, 32.7871380714572], [-79.9518716851822, 32.78713959793], [-79.9518692272713, 32.7871410360411], [-79.9518651238914, 32.7871440932775], [-79.9518626638842, 32.7871456170449], [-79.9518585583752, 32.7871487626426], [-79.9518561005028, 32.7871502864281], [-79.9518536404627, 32.7871518129005], [-79.9519448573455, 32.7873468981608], [-79.9520027410466, 32.7874722944576], [-79.9520320752846, 32.7875361962984], [-79.9521740383749, 32.7878413277123], [-79.9522706207053, 32.7877927613763], [-79.9523811195589, 32.7877370994546], [-79.9524916172148, 32.7876814365224], [-79.9526021146866, 32.7876257770979], [-79.9527126120607, 32.7875701139668], [-79.9526079147331, 32.7873457043738], [-79.9525643056794, 32.7872510144901], [-79.9525198822713, 32.7871563996858], [-79.9524326419789, 32.7869689080921], [-79.9523384885542, 32.7869507487795], [-79.9522976494323, 32.786964231395]]], "type": "Polygon"}, "id": "150", "properties": {"OBJECTID": 783, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6624.23046875, "Shape__Length": 324.702167719196, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9514539313079, 32.7872521803646, -79.950598240114, 32.7880490799768], "geometry": {"coordinates": [[[-79.9514284023154, 32.7872521803646], [-79.950598240114, 32.7875269237348], [-79.9506690272517, 32.7876806109811], [-79.9507162385497, 32.7877830557657], [-79.9508459185547, 32.7880490799768], [-79.9513007064837, 32.7878996635862], [-79.9511767635914, 32.7876306489694], [-79.9513365950883, 32.7875777304059], [-79.9513385238973, 32.7875697684087], [-79.9513393693651, 32.7875671116363], [-79.9513394013215, 32.7875644514985], [-79.9513402467892, 32.7875617947262], [-79.9513410912278, 32.7875592236193], [-79.9513419366955, 32.7875565668471], [-79.9513427821198, 32.7875539136817], [-79.9513436286549, 32.7875512569185], [-79.9513444730499, 32.7875486894186], [-79.9513453185174, 32.7875460326462], [-79.9513461629064, 32.7875433767665], [-79.9513470073555, 32.7875408047579], [-79.9513478527795, 32.7875381515925], [-79.9513486972176, 32.7875355804856], [-79.9513495426524, 32.7875329264184], [-79.9513503881087, 32.7875302705478], [-79.9513512325467, 32.7875276994409], [-79.9513520780137, 32.7875250426685], [-79.9513529234867, 32.787522474276], [-79.9513537689428, 32.7875198184053], [-79.9513546133481, 32.7875172500036], [-79.9513554588149, 32.7875145932312], [-79.9513563021851, 32.7875120221151], [-79.9513571465794, 32.7875094546151], [-79.9513579920461, 32.7875067978427], [-79.9513588364512, 32.787504229441], [-79.9513596808887, 32.787501658334], [-79.9513605263227, 32.7874990042667], [-79.9513621852952, 32.7874964401412], [-79.9513630297, 32.7874938717395], [-79.9513638751555, 32.7874912158688], [-79.9513647195927, 32.7874886447618], [-79.9513655629299, 32.7874860763509], [-79.951366407367, 32.7874835052438], [-79.9513680652389, 32.7874809438144], [-79.951368910705, 32.7874782870418], [-79.9513697551094, 32.78747571864], [-79.9513705995464, 32.787473147533], [-79.9513714450183, 32.7874705791403], [-79.9513731029223, 32.7874680150055], [-79.951373947359, 32.7874654438985], [-79.9513747906957, 32.7874628754875], [-79.9513756351323, 32.7874603043804], [-79.9513772930035, 32.7874577429507], [-79.95137813744, 32.7874551718437], [-79.9513789808149, 32.7874526891073], [-79.9513798252189, 32.7874501207054], [-79.9513814841898, 32.7874475565797], [-79.9513823285935, 32.7874449881777], [-79.9513831730406, 32.7874424161689], [-79.9513848298329, 32.7874398556318], [-79.9513856732183, 32.7874373719936], [-79.9513865176544, 32.7874348008864], [-79.9513881755248, 32.7874322394567], [-79.9513890189317, 32.787429754015], [-79.9513898644026, 32.7874271856222], [-79.9513915212545, 32.7874247089561], [-79.9513923656903, 32.7874221378489], [-79.9513940224928, 32.7874195764099], [-79.9513948658994, 32.7874170909682], [-79.9513957103133, 32.7874145216644], [-79.951397367154, 32.7874120459], [-79.9513982105605, 32.7874095604583], [-79.9513998695084, 32.7874069981357], [-79.9514007128822, 32.7874045153992], [-79.9514023707841, 32.787401951264], [-79.9514032131011, 32.7873994676165], [-79.9514048699413, 32.787396991852], [-79.9514057133474, 32.7873945064102], [-79.9514073712273, 32.7873919440785], [-79.9514082156683, 32.787389461351], [-79.9514098725407, 32.7873869828812], [-79.9514107159249, 32.7873844992428], [-79.9514123716971, 32.7873820234691], [-79.9514132150811, 32.7873795398307], [-79.951414871964, 32.7873770604591], [-79.9514157153371, 32.7873745777224], [-79.951417373244, 32.7873721019669], [-79.9514190301266, 32.7873696225952], [-79.9514198735103, 32.7873671389568], [-79.9514215303495, 32.787364663192], [-79.9514223726548, 32.7873621804462], [-79.951424029537, 32.7873597010745], [-79.9514256863759, 32.7873572253096], [-79.9514265297978, 32.7873548273457], [-79.9514281866474, 32.7873523506792], [-79.9514298434968, 32.7873498740126], [-79.951430685851, 32.7873474760396], [-79.951432341622, 32.7873450002655], [-79.9514339985036, 32.7873425208937], [-79.9514348408577, 32.7873401229206], [-79.9514364987634, 32.7873376471648], [-79.9514381545833, 32.7873352561635], [-79.9514389979662, 32.787332772525], [-79.9514406527184, 32.7873303815145], [-79.9514423085381, 32.7873279905133], [-79.9514439653758, 32.7873255147482], [-79.951444808797, 32.7873231167842], [-79.9514464646489, 32.7873207230776], [-79.9514481214972, 32.7873182464108], [-79.9514497773057, 32.7873158563111], [-79.9514506185915, 32.7873134583288], [-79.9514522744214, 32.7873110664257], [-79.9514539313079, 32.7873086754333], [-79.9514284023154, 32.7872521803646]]], "type": "Polygon"}, "id": "151", "properties": {"OBJECTID": 787, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5309.62890625, "Shape__Length": 331.664390130059, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9521236273308, 32.7872227943438, -79.9514998396946, 32.7881453925444], "geometry": {"coordinates": [[[-79.951524833918, 32.7879606889345], [-79.9515276003821, 32.787974364613], [-79.9515302258634, 32.7879864446399], [-79.9515344181312, 32.7880042584298], [-79.9515369394056, 32.788014258835], [-79.951542499473, 32.7880348178066], [-79.95154800001, 32.7880534887282], [-79.9515545141021, 32.7880739088757], [-79.9515620896527, 32.7880958234405], [-79.9515692335195, 32.7881150116672], [-79.9515753758386, 32.7881305623289], [-79.9515815321511, 32.7881453925444], [-79.9516049364356, 32.7881340054277], [-79.9517888433409, 32.7880448025392], [-79.9518948159131, 32.7879809632144], [-79.9520153064997, 32.787934363172], [-79.9521236273308, 32.7878816651892], [-79.9520104929469, 32.7876397792044], [-79.951998596099, 32.7876141653038], [-79.9519517101771, 32.7875118915564], [-79.951855362613, 32.7873046606286], [-79.9518169920406, 32.7872227943438], [-79.9517316918341, 32.7872511873523], [-79.9517270027497, 32.7872558078558], [-79.9516923991955, 32.7872922557042], [-79.9516827047724, 32.7873032931581], [-79.9516876153114, 32.7873601571157], [-79.9516229112216, 32.7873817742838], [-79.951602760664, 32.7874135752505], [-79.9515885500713, 32.7874383008196], [-79.9515679154012, 32.7874786722744], [-79.9515541680178, 32.7875095424001], [-79.9515416729868, 32.7875415676845], [-79.9515361436817, 32.7875573844703], [-79.951530178823, 32.7875759526276], [-79.9515205002314, 32.7876107346048], [-79.9515160499478, 32.7876296043281], [-79.9515116183745, 32.7876512717022], [-79.9515066710177, 32.7876812143984], [-79.9515015833875, 32.787728701984], [-79.9514998396946, 32.7877808969443], [-79.9515008038638, 32.7878138681596], [-79.9515039482831, 32.7878522537353], [-79.951509262101, 32.7878904685172], [-79.9515121987764, 32.7879067726986], [-79.9515219583231, 32.7879499658287], [-79.951524833918, 32.7879606889345]]], "type": "Polygon"}, "id": "152", "properties": {"OBJECTID": 793, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5049.466796875, "Shape__Length": 302.361808291147, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.929261480047, 32.7871810737504, -79.9284797729637, 32.7880805686068], "geometry": {"coordinates": [[[-79.9284797729637, 32.7872612637295], [-79.9286145614417, 32.7880805686068], [-79.929261480047, 32.7880002499634], [-79.9291256420246, 32.7871810737504], [-79.9284797729637, 32.7872612637295]]], "type": "Polygon"}, "id": "153", "properties": {"OBJECTID": 799, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7965.892578125, "Shape__Length": 364.515277785247, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.944405682685, 32.7875802423337, -79.9429311881335, 32.7883417408944], "geometry": {"coordinates": [[[-79.9439422102208, 32.7876118448028], [-79.9438176001989, 32.7876436807091], [-79.9437242417251, 32.7876678158852], [-79.9435997657977, 32.7876999386106], [-79.9434751898464, 32.787731937697], [-79.9433506234334, 32.7877639349362], [-79.9432260869186, 32.7877959241912], [-79.9431014903444, 32.7878279281327], [-79.9429311881335, 32.7878716730576], [-79.943021498669, 32.7879760272813], [-79.9431325301384, 32.7881038746785], [-79.9432050044305, 32.7881880629645], [-79.943338002695, 32.7883417408944], [-79.9434084837016, 32.7883236374117], [-79.9435175759761, 32.7882956269697], [-79.9436429313468, 32.7882634262371], [-79.9438021374169, 32.788222531723], [-79.9439235692382, 32.7881911869449], [-79.9440481087555, 32.7881589742486], [-79.9441573217458, 32.7881314530768], [-79.944405682685, 32.788070221503], [-79.9443506552343, 32.7879898125605], [-79.9442900098661, 32.7879011935087], [-79.9442380261067, 32.7878252324763], [-79.9441877283711, 32.787751734454], [-79.9440703715477, 32.7875802423337], [-79.9439422102208, 32.7876118448028]]], "type": "Polygon"}, "id": "154", "properties": {"OBJECTID": 801, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9339.541015625, "Shape__Length": 408.557644863167, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9514031145144, 32.7879905341854, -79.9508756185198, 32.7884158365416], "geometry": {"coordinates": [[[-79.9512937565633, 32.7879905341854], [-79.9508756185198, 32.788128869253], [-79.9510094989402, 32.7884158365416], [-79.9514031145144, 32.7882249258075], [-79.9512937565633, 32.7879905341854]]], "type": "Polygon"}, "id": "155", "properties": {"OBJECTID": 802, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1854.7265625, "Shape__Length": 174.764728336779, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9422617312658, 32.7880611358428, -79.9414666677473, 32.7884247549486], "geometry": {"coordinates": [[[-79.9422617312658, 32.7882582224728], [-79.942151948847, 32.7880611358428], [-79.9420741557324, 32.788081236068], [-79.9420076906825, 32.7880984112521], [-79.9418197735254, 32.788146965114], [-79.9414666677473, 32.7882381983714], [-79.9415236384849, 32.788309233733], [-79.9415719048978, 32.788369417735], [-79.9416162787141, 32.7884247549486], [-79.9418771149852, 32.7883588386384], [-79.9421017358534, 32.7883020733989], [-79.9421895543448, 32.7882745863243], [-79.9422617312658, 32.7882582224728]]], "type": "Polygon"}, "id": "156", "properties": {"OBJECTID": 805, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2217.982421875, "Shape__Length": 213.600010634751, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9542893675718, 32.7871509095318, -79.9535043497268, 32.7877809893686], "geometry": {"coordinates": [[[-79.9535043497268, 32.7873959014098], [-79.9536660163082, 32.7877809893686], [-79.9536782241349, 32.7877771383271], [-79.9537289673365, 32.7877611327428], [-79.9537875936871, 32.7877331343188], [-79.9539183990555, 32.7876912163665], [-79.9538573519791, 32.7875520310562], [-79.9539520858872, 32.7875218278835], [-79.9541585820566, 32.7874554921285], [-79.9542890856956, 32.7874136677031], [-79.9542893675718, 32.7874135772235], [-79.9542294404102, 32.7872769475564], [-79.9541859857517, 32.7871778712608], [-79.9540352824759, 32.7871509095318], [-79.9538313555667, 32.7872475452232], [-79.953825621753, 32.7872344944494], [-79.9535043497268, 32.7873959014098]]], "type": "Polygon"}, "id": "157", "properties": {"OBJECTID": 807, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3724.345703125, "Shape__Length": 275.740767617545, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9412053218022, 32.7873959378128, -79.9394341279009, 32.7884639228487], "geometry": {"coordinates": [[[-79.9408016048441, 32.7873959378128], [-79.940518073526, 32.7874709017928], [-79.9401610036257, 32.7875633811491], [-79.9394341279009, 32.7877491038419], [-79.9396399852759, 32.7880199670307], [-79.9397380732741, 32.788161583719], [-79.9399409804529, 32.7884639228487], [-79.9405768079717, 32.7883020008708], [-79.9412053218022, 32.7881391059744], [-79.94093565593, 32.7876373382112], [-79.9408016048441, 32.7873959378128]]], "type": "Polygon"}, "id": "158", "properties": {"OBJECTID": 808, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16340.9609375, "Shape__Length": 524.835324241248, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9419034950864, 32.7883588386384, -79.9416162787141, 32.7885363756466], "geometry": {"coordinates": [[[-79.9416162787141, 32.7884247549486], [-79.9416866511225, 32.7885125152694], [-79.9417057901683, 32.7885363756466], [-79.9419034950864, 32.7884882979947], [-79.9418893758679, 32.7884197166588], [-79.9418771149852, 32.7883588386384], [-79.9416162787141, 32.7884247549486]]], "type": "Polygon"}, "id": "159", "properties": {"OBJECTID": 810, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 455.923828125, "Shape__Length": 88.4482475451762, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.942406319965, 32.7882503237076, -79.9418771149852, 32.7885699941533], "geometry": {"coordinates": [[[-79.942406319965, 32.7884648347563], [-79.9423784616169, 32.7884164359311], [-79.9423353064529, 32.7883414603445], [-79.9422828503228, 32.7882503237076], [-79.9422617312658, 32.7882582224728], [-79.9421895543448, 32.7882745863243], [-79.9421017358534, 32.7883020733989], [-79.9418771149852, 32.7883588386384], [-79.9418893758679, 32.7884197166588], [-79.9419034950864, 32.7884882979947], [-79.9421660915173, 32.7884244398496], [-79.9421872522107, 32.7884748712707], [-79.942199113628, 32.788503093953], [-79.9422272014713, 32.7885699941533], [-79.9423594484859, 32.788521223564], [-79.9423684630519, 32.7885167959214], [-79.9423767794133, 32.7885114829531], [-79.9423832591188, 32.7885062803645], [-79.9423908417736, 32.7884985179808], [-79.9423941393677, 32.7884943231913], [-79.9423990582444, 32.7884865567191], [-79.94240236439, 32.7884795410623], [-79.9424047938208, 32.7884722743313], [-79.942406319965, 32.7884648347563]]], "type": "Polygon"}, "id": "160", "properties": {"OBJECTID": 814, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1309.650390625, "Shape__Length": 172.811503643196, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9508915334871, 32.7876946584402, -79.9502655567015, 32.7886650984101], "geometry": {"coordinates": [[[-79.9504265269103, 32.7878654550299], [-79.9504489894224, 32.7879138444734], [-79.9503138269194, 32.7879779687101], [-79.9503520282132, 32.7880647670652], [-79.9504011481587, 32.7881517754155], [-79.9503397871557, 32.7881802222313], [-79.9502655567015, 32.7882043037416], [-79.9504801480902, 32.7886594122486], [-79.9504827873286, 32.7886650984101], [-79.950509619604, 32.7886520716098], [-79.9506261093418, 32.788597021776], [-79.9507147411841, 32.7885551359847], [-79.9508023820388, 32.7885142363553], [-79.9508915334871, 32.7884726317569], [-79.9508014389893, 32.7882721136332], [-79.9506910776682, 32.7880265517484], [-79.9506479771053, 32.7879306498481], [-79.9505849696854, 32.7877974883362], [-79.9505549963958, 32.7877512115225], [-79.9505286144268, 32.7876946584402], [-79.9503687634449, 32.7877724014902], [-79.9504265269103, 32.7878654550299]]], "type": "Polygon"}, "id": "161", "properties": {"OBJECTID": 816, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4701.21484375, "Shape__Length": 328.779724700765, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.954521846975, 32.7874136677031, -79.951990247622, 32.7887423844772], "geometry": {"coordinates": [[[-79.9522773427478, 32.7884432760565], [-79.9523056245666, 32.7885077306643], [-79.9522172582485, 32.7885382378217], [-79.951990247622, 32.7886137764045], [-79.9520170655342, 32.7886759170602], [-79.9520457512076, 32.7887423844772], [-79.9522701593002, 32.7886699465538], [-79.9523458768926, 32.788645505006], [-79.9524520222643, 32.788611243235], [-79.9525638306563, 32.7885757185876], [-79.9525928856343, 32.7885664150985], [-79.9526189749836, 32.7885580610976], [-79.9526435766856, 32.7885501840522], [-79.9526555977995, 32.7885463351201], [-79.9526748620256, 32.7885401664454], [-79.952707491283, 32.7885290141029], [-79.9528484387841, 32.7884806214435], [-79.953006878621, 32.7884299235233], [-79.9531040655054, 32.7883987995683], [-79.9532020668018, 32.7883675986342], [-79.9533017073701, 32.7883353781444], [-79.9534021603022, 32.7883032510995], [-79.9535026141658, 32.7882710401104], [-79.9536030680066, 32.7882389138117], [-79.953703520706, 32.7882067874214], [-79.9538072406068, 32.7881735724167], [-79.9538317405764, 32.7881657916628], [-79.9538954426921, 32.7881453768226], [-79.9539591458046, 32.7881248762839], [-79.9540898171554, 32.7880829578982], [-79.9541543336389, 32.7880624651139], [-79.9542939890678, 32.7880177013667], [-79.9543209416819, 32.7880089133876], [-79.954521846975, 32.7879445736822], [-79.9544925488692, 32.7878774919917], [-79.9544648458562, 32.787813087042], [-79.9544363293707, 32.7877486787415], [-79.9544078139859, 32.7876841820641], [-79.9543682166869, 32.7875939912027], [-79.9543286194806, 32.7875037994277], [-79.9542890856956, 32.7874136677031], [-79.9541585820566, 32.7874554921285], [-79.9539520858872, 32.7875218278835], [-79.9538573519791, 32.7875520310562], [-79.9539183990555, 32.7876912163665], [-79.9537875936871, 32.7877331343188], [-79.9537289673365, 32.7877611327428], [-79.9536782241349, 32.7877771383271], [-79.9536660163082, 32.7877809893686], [-79.9536943641806, 32.7878468591868], [-79.953557299116, 32.7878865237896], [-79.9534566218868, 32.7879187031472], [-79.9534297328314, 32.7879272606104], [-79.9533617263606, 32.7879488892289], [-79.9533118631183, 32.7879648625103], [-79.9533102104385, 32.7879653921775], [-79.9533100496683, 32.7879654440103], [-79.9532612105657, 32.787981038244], [-79.9531607568958, 32.7880131642612], [-79.953060303192, 32.7880453758705], [-79.9530885141938, 32.7881091848732], [-79.9530888187669, 32.7881098728736], [-79.9530533151058, 32.7881212424102], [-79.9530100410968, 32.7881350967309], [-79.9529916301286, 32.7881409913869], [-79.952991436134, 32.788141053757], [-79.952893630014, 32.7881721975712], [-79.9527578215281, 32.7882158870084], [-79.9527360050884, 32.788222905021], [-79.952586489326, 32.7882810487782], [-79.9525658619182, 32.7882890716634], [-79.9526142518425, 32.7884005441352], [-79.9525940702822, 32.7884066436221], [-79.9525621916951, 32.7884162773585], [-79.9525315860945, 32.7884255269817], [-79.9525038522453, 32.7884339083683], [-79.9524336290141, 32.7882678764097], [-79.9523835071777, 32.7882849058557], [-79.9523228300863, 32.7883055207726], [-79.9522781591639, 32.7883225941474], [-79.9522321131702, 32.7883401932235], [-79.9522773427478, 32.7884432760565]]], "type": "Polygon"}, "id": "162", "properties": {"OBJECTID": 817, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 13210.953125, "Shape__Length": 784.458239668106, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9433282559795, 32.7879139254917, -79.942380171499, 32.7886737861695], "geometry": {"coordinates": [[[-79.942899140471, 32.7885972518259], [-79.9429624050417, 32.7886737861695], [-79.9433282559795, 32.7885680651672], [-79.9431942652171, 32.7884085040977], [-79.9431191710053, 32.7883217337645], [-79.9430502365805, 32.7882420815768], [-79.9429651352738, 32.7881489785854], [-79.9428703687035, 32.7880342688214], [-79.9427662410502, 32.7879139254917], [-79.942639074116, 32.7879459428276], [-79.9425091149517, 32.7879798279483], [-79.942380171499, 32.7880128812018], [-79.942478078547, 32.7881479422571], [-79.9425200694418, 32.7882058648445], [-79.9425407977408, 32.7882005184589], [-79.9425702106838, 32.7882354275017], [-79.9425930590429, 32.7882625429564], [-79.9426446994874, 32.7883238252662], [-79.9426719464229, 32.7883561615673], [-79.9427233448705, 32.7884171585759], [-79.9427393810489, 32.7884362113459], [-79.9428086056101, 32.7885183435603], [-79.942899140471, 32.7885972518259]]], "type": "Polygon"}, "id": "163", "properties": {"OBJECTID": 819, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4612.982421875, "Shape__Length": 305.630109689242, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9422272014713, 32.7884244398496, -79.9417057901683, 32.7887104268913], "geometry": {"coordinates": [[[-79.9417057901683, 32.7885363756466], [-79.9417796830763, 32.7886285213286], [-79.9418453692526, 32.7887104268913], [-79.9422272014713, 32.7885699941533], [-79.942199113628, 32.788503093953], [-79.9421872522107, 32.7884748712707], [-79.9421660915173, 32.7884244398496], [-79.9419034950864, 32.7884882979947], [-79.9417057901683, 32.7885363756466]]], "type": "Polygon"}, "id": "164", "properties": {"OBJECTID": 820, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1178.49609375, "Shape__Length": 147.971222263459, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9434068884348, 32.7885770420125, -79.943154188917, 32.7887168693414], "geometry": {"coordinates": [[[-79.9433357715223, 32.7885770420125], [-79.943154188917, 32.7886297117985], [-79.9431862025943, 32.7887168693414], [-79.9434068884348, 32.7886591045529], [-79.9433357715223, 32.7885770420125]]], "type": "Polygon"}, "id": "165", "properties": {"OBJECTID": 821, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 292.828125, "Shape__Length": 72.6362650480517, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9414219741678, 32.7882850727782, -79.9408235943073, 32.7887233470728], "geometry": {"coordinates": [[[-79.9408235943073, 32.7884106560869], [-79.9410369917795, 32.7887233470728], [-79.9414219741678, 32.7886234825077], [-79.9413557252739, 32.7885409153091], [-79.9412710358697, 32.7884353657508], [-79.9413933827546, 32.7883918791586], [-79.9413076869389, 32.7882850727782], [-79.941177537094, 32.7883188367041], [-79.9408235943073, 32.7884106560869]]], "type": "Polygon"}, "id": "166", "properties": {"OBJECTID": 822, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2263.267578125, "Shape__Length": 210.875644742005, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.942899140471, 32.7880128812018, -79.9420442732281, 32.7888286717983], "geometry": {"coordinates": [[[-79.9420442732281, 32.7887074736952], [-79.9421041900191, 32.7888286717983], [-79.9422072720208, 32.7887986643844], [-79.9423027702476, 32.7887708639476], [-79.9423983069877, 32.7887430520461], [-79.9424826866928, 32.78871848764], [-79.9425790097555, 32.7886904470161], [-79.9427053589573, 32.7886536645805], [-79.942899140471, 32.7885972518259], [-79.9428086056101, 32.7885183435603], [-79.9427393810489, 32.7884362113459], [-79.9427233448705, 32.7884171585759], [-79.9426719464229, 32.7883561615673], [-79.9426446994874, 32.7883238252662], [-79.9425930579754, 32.7882625429471], [-79.9425702106838, 32.7882354275017], [-79.9425407977408, 32.7882005184589], [-79.9425200694418, 32.7882058648445], [-79.942478078547, 32.7881479422571], [-79.942380171499, 32.7880128812018], [-79.9422337038623, 32.7880503875845], [-79.9423368405496, 32.7882151102411], [-79.9423999840939, 32.7883159347678], [-79.9424590162733, 32.7884102323132], [-79.9424696791838, 32.7884272293843], [-79.9425040773699, 32.7884110880526], [-79.9425472966719, 32.7884804312695], [-79.942567155767, 32.7885122943073], [-79.9425011531588, 32.7885369301338], [-79.9424064853703, 32.7885722646184], [-79.9423295901478, 32.7886009690669], [-79.9422355099179, 32.7886360875503], [-79.9421439081976, 32.7886702813669], [-79.9420442732281, 32.7887074736952]]], "type": "Polygon"}, "id": "167", "properties": {"OBJECTID": 827, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3285.453125, "Shape__Length": 366.097818477176, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9514832302219, 32.7883729486605, -79.9510945885691, 32.7889320207134], "geometry": {"coordinates": [[[-79.9514319740664, 32.7883729486605], [-79.9510945885691, 32.7885330325882], [-79.9512807214921, 32.7889320207134], [-79.9514783635772, 32.7888660391976], [-79.9514814321285, 32.7887772356901], [-79.9514832302219, 32.7886950037862], [-79.95148247683, 32.7886649283613], [-79.9514808768331, 32.7886340484593], [-79.9514778819279, 32.7885983245733], [-79.9514694725395, 32.7885332978696], [-79.9514572816885, 32.7884686995952], [-79.9514497771026, 32.788436610232], [-79.9514319740664, 32.7883729486605]]], "type": "Polygon"}, "id": "168", "properties": {"OBJECTID": 829, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2066.333984375, "Shape__Length": 189.3358940283, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9628276762655, 32.7861972528552, -79.9582057774788, 32.789426660214], "geometry": {"coordinates": [[[-79.9582057774788, 32.786679992681], [-79.9586836728942, 32.7870602178117], [-79.9617144672975, 32.789426660214], [-79.9628276762655, 32.7889951785806], [-79.9627472231288, 32.7889191600592], [-79.9626595916681, 32.7888310573766], [-79.9625799522663, 32.7887550492508], [-79.9625019573565, 32.7886775913417], [-79.9624468481151, 32.7885911395834], [-79.962439918834, 32.7885580953544], [-79.9624362546704, 32.7885241363989], [-79.9624227655404, 32.7884954149403], [-79.962399393153, 32.7884768355539], [-79.9623702794859, 32.7884621575023], [-79.9623386804731, 32.7884512379494], [-79.9622874845011, 32.7884463369488], [-79.9622321037516, 32.7884512764107], [-79.962177590549, 32.7884516743579], [-79.9621126726715, 32.7884375501699], [-79.9620494706186, 32.788416057192], [-79.9619862860107, 32.7883930997515], [-79.9618947523106, 32.7883595955867], [-79.9618040699397, 32.7883229214171], [-79.9617166916253, 32.7882820645581], [-79.96166410894, 32.7882569639815], [-79.961613984066, 32.7882304250754], [-79.9615679858747, 32.7881989376416], [-79.9615454220687, 32.7881807085519], [-79.9615236892221, 32.7881611968892], [-79.96151012374, 32.7881388335089], [-79.9615085908089, 32.7881309168272], [-79.961507875418, 32.78812266529], [-79.9615063455717, 32.7881145790898], [-79.961473597044, 32.7880634449092], [-79.9614195940103, 32.7880209826944], [-79.9613639497708, 32.7879797095689], [-79.9612840843906, 32.7879228518146], [-79.9612009345482, 32.7878685444628], [-79.9611325448551, 32.787804482799], [-79.9611277365737, 32.7877983455753], [-79.9611237417963, 32.7877922125537], [-79.96111893357, 32.787786070821], [-79.9610544957827, 32.7877316643329], [-79.9609752756454, 32.7876890725496], [-79.9608977090169, 32.7876440895677], [-79.9608517522588, 32.787609168933], [-79.9608066223177, 32.78757313703], [-79.9607614934444, 32.7875370185432], [-79.9606809053518, 32.787472597788], [-79.9606011349685, 32.787407837622], [-79.9605205409929, 32.7873439307552], [-79.960398772314, 32.7872533873222], [-79.9602753565231, 32.7871646352401], [-79.960152769797, 32.7870746013584], [-79.9600334565856, 32.7869828762834], [-79.959915785907, 32.7868899656157], [-79.9597997659663, 32.7867950911472], [-79.9596982022961, 32.7867159718754], [-79.9595974686381, 32.7866354860841], [-79.9595163953681, 32.7865436573101], [-79.959507614203, 32.7865295798587], [-79.9594996485311, 32.7865153388957], [-79.9594908673608, 32.7865012623449], [-79.9594596113397, 32.7864615674465], [-79.9594250790203, 32.7864238214936], [-79.9593913663157, 32.786385568457], [-79.9593505854334, 32.7863260378494], [-79.9593106283298, 32.7862656529843], [-79.9592624568649, 32.78621189705], [-79.9592374117607, 32.7861972528552], [-79.9586909176645, 32.7864528809134], [-79.9582057774788, 32.786679992681]]], "type": "Polygon"}, "id": "169", "properties": {"OBJECTID": 852, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 63068.1484375, "Shape__Length": 1362.84430515373, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9402132588437, 32.7886544884219, -79.9389465070554, 32.7893077250292], "geometry": {"coordinates": [[[-79.9389465070554, 32.7888931345288], [-79.9389993557939, 32.7890376250274], [-79.9390162963122, 32.7890334286938], [-79.9390632802027, 32.7891592336744], [-79.9391971034094, 32.7891197095316], [-79.9392910263606, 32.7890919690201], [-79.939384434195, 32.7890698884016], [-79.9394747064674, 32.7892035997025], [-79.9395767477854, 32.7891710440982], [-79.9396315396776, 32.7893077250292], [-79.9402132588437, 32.7891349016698], [-79.9398773394223, 32.7886544884219], [-79.9392168353646, 32.788823250621], [-79.9391208695634, 32.7888480586259], [-79.9390249197538, 32.7888728639892], [-79.9389465070554, 32.7888931345288]]], "type": "Polygon"}, "id": "170", "properties": {"OBJECTID": 854, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6765.466796875, "Shape__Length": 379.528855306601, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.954829349592, 32.7880476887788, -79.9520902610849, 32.789439404235], "geometry": {"coordinates": [[[-79.9545674715534, 32.7880476887788], [-79.953222831561, 32.7884784647435], [-79.9526300117123, 32.7886683786898], [-79.9520902610849, 32.7888389815382], [-79.9523633438253, 32.789439404235], [-79.9529811153953, 32.7892403476128], [-79.9530782175701, 32.7892008728574], [-79.9531793378479, 32.7891703452353], [-79.9532819768901, 32.7891393218891], [-79.9534857213877, 32.7890777361878], [-79.954829349592, 32.7886447363959], [-79.9545674715534, 32.7880476887788]]], "type": "Polygon"}, "id": "171", "properties": {"OBJECTID": 856, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 24877.263671875, "Shape__Length": 758.425555320476, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9512806338608, 32.7885930033, -79.9505953246817, 32.7895560107667], "geometry": {"coordinates": [[[-79.9512796906831, 32.7893069144549], [-79.9512048554303, 32.7891459664537], [-79.9511604576293, 32.7890505063329], [-79.9509473895263, 32.7885930033], [-79.9507818065673, 32.7886704362276], [-79.9508172369301, 32.7887393823054], [-79.9508341225281, 32.7887310850317], [-79.9509188927016, 32.788919643345], [-79.9508206055051, 32.7889639391611], [-79.9507665626121, 32.7889883284699], [-79.9507127472691, 32.7890126150939], [-79.9505953246817, 32.789065467361], [-79.950690536658, 32.7892697351789], [-79.9507350104825, 32.7893651438215], [-79.9508239706378, 32.7895560107667], [-79.9512505662463, 32.789359202088], [-79.9512581838891, 32.7893549548116], [-79.9512627843903, 32.7893515871147], [-79.9512669464342, 32.7893478341832], [-79.9512706225712, 32.7893437352912], [-79.9512747017991, 32.7893378109335], [-79.9512770999971, 32.7893330842324], [-79.9512791452753, 32.7893273399422], [-79.9512800916522, 32.7893231283698], [-79.95128060198, 32.7893188643607], [-79.9512806338608, 32.7893137223727], [-79.951280302307, 32.789310304283], [-79.9512796906831, 32.7893069144549]]], "type": "Polygon"}, "id": "172", "properties": {"OBJECTID": 861, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4816.01953125, "Shape__Length": 334.385588277632, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9523469013142, 32.7888960659688, -79.9517584355784, 32.7898159137202], "geometry": {"coordinates": [[[-79.9517807573038, 32.7890767692563], [-79.9517584355784, 32.7892012359024], [-79.9518040701524, 32.7893041916246], [-79.9518517807002, 32.7894064995607], [-79.9518995134864, 32.7895088320183], [-79.9519408922203, 32.7896033731886], [-79.9519865920548, 32.7897169358795], [-79.9519732761862, 32.7897205626279], [-79.9520097180294, 32.7898159137202], [-79.9523469013142, 32.7897194751697], [-79.9521666237471, 32.7893068489881], [-79.9520745435891, 32.7891011959977], [-79.9519912396635, 32.7889171899972], [-79.9519912193516, 32.7889171032471], [-79.9519906850598, 32.7889165187908], [-79.9519877276851, 32.7889132225045], [-79.9519830411439, 32.7889089987497], [-79.9519796157587, 32.7889059112872], [-79.951976182991, 32.7889043280214], [-79.9519703027188, 32.7889013557072], [-79.9519640369848, 32.7888990086695], [-79.9519593780076, 32.7888977359525], [-79.9519555671237, 32.7888969665092], [-79.9519517022797, 32.7888964229641], [-79.9519478026589, 32.7888961081869], [-79.9519419267123, 32.7888960659688], [-79.9519389949355, 32.7888962401599], [-79.9519328224182, 32.7888978674023], [-79.9519267078327, 32.7888996493542], [-79.9519176611844, 32.7889026074321], [-79.9519087791715, 32.7889059033041], [-79.9518983549866, 32.7889103042391], [-79.9518915809247, 32.788913480187], [-79.9518854362939, 32.7889166083185], [-79.9518779052507, 32.7889207625842], [-79.9518700219248, 32.7889255351955], [-79.9518638758024, 32.7889295876936], [-79.9518563513504, 32.788934971215], [-79.9518517271933, 32.7889385344292], [-79.9518445599457, 32.7889444900676], [-79.9518390455128, 32.7889494624364], [-79.9518329813891, 32.7889553995679], [-79.9518276442106, 32.7889610813949], [-79.9518229067106, 32.7889665257657], [-79.9518183326094, 32.7889722330683], [-79.9518130355424, 32.7889794645901], [-79.9518077598186, 32.7889874971237], [-79.9518008192184, 32.7889998288682], [-79.951797182264, 32.7890074254259], [-79.9517929616056, 32.7890177522468], [-79.9517894763896, 32.7890282720483], [-79.9517874937035, 32.789039298928], [-79.9517845453826, 32.7890556987815], [-79.9517807573038, 32.7890767692563]]], "type": "Polygon"}, "id": "173", "properties": {"OBJECTID": 872, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4119.916015625, "Shape__Length": 295.914462418329, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9609667648107, 32.7858951902837, -79.9544461343434, 32.7902854803526], "geometry": {"coordinates": [[[-79.9583114743915, 32.7893550060642], [-79.958669396481, 32.7896319011456], [-79.9595134154363, 32.7902854803526], [-79.9606936715301, 32.7898278739548], [-79.9606993956455, 32.7898254290081], [-79.9607051207375, 32.7898229020026], [-79.9607108458722, 32.7898203713898], [-79.9607141151414, 32.7898191131454], [-79.9607165719728, 32.78981775962], [-79.9607198423261, 32.7898164102994], [-79.9607222991574, 32.7898150567738], [-79.9607255694783, 32.7898137101583], [-79.9607280273293, 32.789812270967], [-79.9607304841496, 32.7898109183431], [-79.9607337554902, 32.7898094860618], [-79.9607362133301, 32.7898080477722], [-79.9607386711808, 32.7898066085807], [-79.9607419425425, 32.7898051744957], [-79.9607444014022, 32.7898036505404], [-79.9607468592525, 32.7898022113487], [-79.9607501316339, 32.789800691598], [-79.9607525904932, 32.7897991676424], [-79.9607550493847, 32.7897976409817], [-79.9607575082439, 32.789796117026], [-79.960760781634, 32.7897945125112], [-79.9607632415451, 32.7897929001847], [-79.9607657004361, 32.7897913735236], [-79.9607681603042, 32.789789764804], [-79.9607706212241, 32.7897880677135], [-79.9607730811348, 32.7897864553868], [-79.9607763545243, 32.7897848508715], [-79.9607788154546, 32.7897831528792], [-79.9607812763635, 32.7897814566902], [-79.9607837372829, 32.7897797595995], [-79.960786198213, 32.789778061607], [-79.9607886591216, 32.7897763654178], [-79.9607911210606, 32.7897745826614], [-79.9607935829995, 32.7897727999049], [-79.9607960439078, 32.7897711037157], [-79.9607985058465, 32.7897693209591], [-79.9608009678173, 32.7897675354973], [-79.9608034307542, 32.7897656688785], [-79.9608058926926, 32.7897638861218], [-79.9608083556722, 32.7897620158959], [-79.9608108175998, 32.7897602340409], [-79.960814930037, 32.7897564893847], [-79.9608173930162, 32.7897546191587], [-79.9608198570152, 32.7897526632671], [-79.9608223199619, 32.7897507957463], [-79.9608264344271, 32.7897468806604], [-79.9608288984149, 32.7897449256703], [-79.9608313624134, 32.7897429697785], [-79.96083547691, 32.7897390519871], [-79.9608379418849, 32.7897370140366], [-79.9608404058722, 32.7897350590463], [-79.9608420584684, 32.7897330105884], [-79.9608445224077, 32.7897309699235], [-79.9608461739146, 32.78972892326], [-79.9608486389213, 32.789726882604], [-79.9608511060474, 32.7897247535863], [-79.9608527564972, 32.7897227060119], [-79.9608552225233, 32.7897205796902], [-79.9608568740298, 32.7897185330266], [-79.9608593400557, 32.7897164067049], [-79.9608609936601, 32.789714273483], [-79.9608626451508, 32.7897121384394], [-79.9608651121854, 32.7897099273537], [-79.960866764722, 32.7897077941227], [-79.9608692318042, 32.7897056687115], [-79.9608708843142, 32.7897034480023], [-79.9608725378596, 32.7897012300074], [-79.9608741914371, 32.7896990093072], [-79.960876658471, 32.7896967982213], [-79.9608783131159, 32.7896945775301], [-79.9608799655933, 32.789692359526], [-79.9608816191705, 32.7896901388257], [-79.9608840872452, 32.7896878402706], [-79.9608857407899, 32.7896856222755], [-79.9608873964541, 32.7896833159187], [-79.9608890510399, 32.7896810104545], [-79.9608907045366, 32.7896787067847], [-79.9608923591222, 32.7896764013205], [-79.9608940137185, 32.7896740949545], [-79.9608956683146, 32.7896717885885], [-79.9608973239675, 32.7896694831333], [-79.960898978505, 32.7896670919943], [-79.9609006330687, 32.7896647883334], [-79.9609022886628, 32.7896623981052], [-79.9609039442675, 32.7896600069753], [-79.9609056009505, 32.7896576149527], [-79.960907256555, 32.7896552238227], [-79.9609089110919, 32.7896528326837], [-79.9609105666963, 32.7896504415536], [-79.9609114088016, 32.7896480444165], [-79.9609130644165, 32.7896456523846], [-79.9609147221294, 32.7896431737946], [-79.9609163777012, 32.7896407853697], [-79.9609172208582, 32.7896382998618], [-79.9609188764142, 32.789635823057], [-79.9609205330377, 32.7896333462613], [-79.9609213751533, 32.7896309482224], [-79.9609230318088, 32.7896284687214], [-79.9609246904979, 32.7896259080726], [-79.960925533633, 32.7896234243681], [-79.9609271892207, 32.7896209448581], [-79.960928032345, 32.7896184620552], [-79.9609296899769, 32.7896159004956], [-79.9609305331439, 32.7896134140858], [-79.9609321907649, 32.7896108534279], [-79.9609330349672, 32.7896083697324], [-79.960934692631, 32.7896058054675], [-79.9609355367745, 32.789603236999], [-79.9609363798827, 32.7896006658163], [-79.9609380364943, 32.7895981899222], [-79.9609388806378, 32.7895956214537], [-79.960939725833, 32.7895929646145], [-79.9609405700086, 32.7895903934409], [-79.9609422287071, 32.7895878318901], [-79.9609430728825, 32.7895852607164], [-79.9609439170149, 32.7895826931498], [-79.9609447622099, 32.7895800363105], [-79.9609456052853, 32.789577467833], [-79.9609464504803, 32.7895748109938], [-79.960948108143, 32.7895722467287], [-79.960948953327, 32.7895695907911], [-79.9609497974699, 32.7895670223226], [-79.9609506426645, 32.7895643654834], [-79.9609514888838, 32.7895617122601], [-79.9609523340783, 32.7895590554209], [-79.9609523657746, 32.7895563925747], [-79.9609532109692, 32.7895537357355], [-79.9609540561206, 32.7895510825032], [-79.960954901315, 32.7895484256639], [-79.9609557454418, 32.7895457688155], [-79.9609565906253, 32.789543112878], [-79.9609566223322, 32.7895404491301], [-79.9609574674836, 32.7895377958978], [-79.9609583126777, 32.7895351390584], [-79.9609591578611, 32.7895324831209], [-79.9609591905769, 32.7895297346092], [-79.9609600357279, 32.7895270813769], [-79.9609608819895, 32.7895244245466], [-79.9609609147052, 32.7895216760349], [-79.9609617598883, 32.7895190200974], [-79.9609617926148, 32.789516270684], [-79.9609626377979, 32.7895136147464], [-79.9609626705136, 32.7895108662347], [-79.9609635156644, 32.7895082130024], [-79.96096354838, 32.7895054644908], [-79.9609635800867, 32.7895028007429], [-79.9609644262893, 32.7895000591398], [-79.960964457996, 32.789497395392], [-79.9609653031202, 32.7894946546814], [-79.9609653358358, 32.7894919061698], [-79.9609653675424, 32.789489242422], [-79.960965400258, 32.7894864939104], [-79.9609662464604, 32.7894837523072], [-79.9609662781562, 32.7894810894611], [-79.9609663108396, 32.7894783436547], [-79.9609663435981, 32.7894755915361], [-79.9609663762707, 32.7894728466314], [-79.9609664079773, 32.7894701828836], [-79.9609664406929, 32.789467434372], [-79.9609664734084, 32.7894646858604], [-79.960966506124, 32.7894619373488], [-79.9609665378198, 32.7894592745027], [-79.9609665705461, 32.7894565250893], [-79.9609666032617, 32.7894537765777], [-79.9609666349575, 32.7894511137316], [-79.9609666676731, 32.78944836522], [-79.9609667003886, 32.7894456167084], [-79.9609667331041, 32.7894428681968], [-79.9609667648107, 32.789440204449], [-79.960965983997, 32.7894374526359], [-79.9609660167555, 32.7894347005173], [-79.9609660484192, 32.7894320403764], [-79.9609660811347, 32.7894292918648], [-79.9609653014315, 32.7894265364538], [-79.9609653331274, 32.7894238736077], [-79.9609645523676, 32.7894211172859], [-79.9609645840635, 32.7894184544398], [-79.9609646167791, 32.7894157059282], [-79.9609638349997, 32.789413035272], [-79.9609638676723, 32.7894102903673], [-79.9609630858929, 32.789407619711], [-79.9609631186085, 32.7894048711994], [-79.9609623368293, 32.7894022005431], [-79.9609623695449, 32.7893994520315], [-79.9609615866873, 32.7893967822679], [-79.9609608049082, 32.7893941116116], [-79.9609608375809, 32.789391366707], [-79.9609600558018, 32.7893886960507], [-79.960959274012, 32.7893860262961], [-79.9609584922329, 32.7893833556398], [-79.9609585239397, 32.789380691892], [-79.9609577431375, 32.7893779391771], [-79.9609569624155, 32.7893752694316], [-79.9609561806366, 32.7893725987753], [-79.9609553988471, 32.7893699290207], [-79.9609546160164, 32.7893673467352], [-79.9609546477233, 32.7893646829874], [-79.9609538659339, 32.7893620132328], [-79.9609530830877, 32.7893593425674], [-79.9609523012661, 32.789356675518], [-79.9609515184679, 32.7893540905272], [-79.9609507366572, 32.7893514225762], [-79.9609491403735, 32.7893488306768], [-79.9609483585843, 32.7893461609221], [-79.9609475768324, 32.7893435777439], [-79.9609467950434, 32.7893409079892], [-79.9609460122455, 32.7893383229984], [-79.9609452294154, 32.7893357407129], [-79.9609436330843, 32.7893330631388], [-79.9609428502436, 32.7893304817549], [-79.9609420674459, 32.7893278967641], [-79.9609412846267, 32.7893253135767], [-79.960939688333, 32.789322722579], [-79.9609389055511, 32.789320225968], [-79.9609381227644, 32.7893176400753], [-79.9609365264495, 32.7893150508811], [-79.9609357425845, 32.7893124658811], [-79.9609341452501, 32.7893099623523], [-79.9609333624206, 32.7893073800666], [-79.9609317651293, 32.7893048729309], [-79.9609309812802, 32.7893023763108], [-79.9609293860334, 32.7892997871254], [-79.9609286022274, 32.7892972868983], [-79.9609270038259, 32.7892947833604], [-79.9609262199878, 32.7892922858385], [-79.9609246226647, 32.7892897814078], [-79.960923024322, 32.7892873626427], [-79.9609222404734, 32.7892848660226], [-79.9609206442504, 32.7892823588957], [-79.9609190459079, 32.7892799401305], [-79.960917447507, 32.7892774365925], [-79.9609166626496, 32.7892750247361], [-79.9609150643075, 32.7892726059709], [-79.9609134669851, 32.7892701015401], [-79.9609118697107, 32.7892676827839], [-79.960910271358, 32.7892652649203], [-79.9609086709397, 32.7892629309098], [-79.9609070725979, 32.7892605121445], [-79.9609054742563, 32.7892580933792], [-79.9609038749057, 32.7892557593776], [-79.9609022776318, 32.7892533406213], [-79.9609006772032, 32.7892510075124], [-79.9608990778207, 32.789248676216], [-79.9608974794687, 32.7892462583523], [-79.9608958801186, 32.7892439243507], [-79.9608942818254, 32.7892415912599], [-79.9608926814235, 32.7892393456289], [-79.9608910810061, 32.7892370116181], [-79.9608894816455, 32.7892346785182], [-79.9608878812439, 32.7892324328872], [-79.9608854673901, 32.789230177642], [-79.960883869076, 32.7892278463545], [-79.9608822676392, 32.7892255980092], [-79.960880667238, 32.7892233523781], [-79.9608782533846, 32.7892210971327], [-79.9608766519637, 32.7892189371672], [-79.9608750526625, 32.7892166888399], [-79.9608726367007, 32.7892145210544], [-79.9608710363321, 32.789212272718], [-79.960868621438, 32.7892101049414], [-79.9608670210851, 32.7892079449848], [-79.9608654185972, 32.78920578501], [-79.9608630037036, 32.7892036172334], [-79.9608614023156, 32.7892014545624], [-79.960858986413, 32.7891993715495], [-79.9608573860606, 32.7891972115928], [-79.96085496908, 32.7891951294725], [-79.9608525531671, 32.7891930473612], [-79.9608509507383, 32.7891909721591], [-79.9608485358932, 32.7891888900568], [-79.960846932397, 32.7891868148457], [-79.9608445164845, 32.7891847327342], [-79.9608420995631, 32.7891827353865], [-79.9608404971347, 32.7891806601843], [-79.9608380801705, 32.7891786664436], [-79.9608356632494, 32.7891766690957], [-79.9608316428806, 32.7891726822111], [-79.960829224897, 32.7891707741357], [-79.9608268079764, 32.7891687767877], [-79.9608243900359, 32.7891668651053], [-79.960820367607, 32.7891630513548], [-79.9608179496347, 32.7891611423775], [-79.9595741803548, 32.7881908132601], [-79.9590752290528, 32.7878015646138], [-79.9586947737684, 32.7875045502147], [-79.958278123069, 32.787173038817], [-79.9577760515619, 32.78677353506], [-79.9569967608173, 32.7861535721082], [-79.9569749986659, 32.7861365502439], [-79.9567903607062, 32.7859973633681], [-79.9566549076826, 32.7858951902837], [-79.9562605476409, 32.7860821802332], [-79.9558490036206, 32.7862772695449], [-79.9558985266959, 32.7863538854375], [-79.9553184798889, 32.7866250997909], [-79.9549765052099, 32.7867848755197], [-79.9548734260447, 32.7868327003658], [-79.9545134486418, 32.7870010814459], [-79.9545109887371, 32.7870026900393], [-79.9545085298152, 32.7870042165742], [-79.954504422367, 32.7870075326898], [-79.9545019614037, 32.7870092296538], [-79.9544978519247, 32.7870127152967], [-79.9544937413761, 32.787016290212], [-79.95448962884, 32.7870200310475], [-79.9544871668699, 32.7870219011548], [-79.9544838646447, 32.7870258229688], [-79.9544814005807, 32.7870277787322], [-79.9544797489648, 32.787029826211], [-79.9544780984272, 32.787031872797], [-79.9544764457329, 32.7870339211683], [-79.9544747941167, 32.787035968647], [-79.9544731414529, 32.7870381035945], [-79.9544714888106, 32.7870402367386], [-79.9544689970525, 32.7870445938495], [-79.9544673422948, 32.7870468144533], [-79.9544648484102, 32.7870512599257], [-79.9544631936938, 32.7870535662041], [-79.9544615400358, 32.7870557841118], [-79.9544598575514, 32.7870604087685], [-79.9544582028239, 32.7870627159486], [-79.9544573605665, 32.7870651130407], [-79.9544556770773, 32.7870698215593], [-79.9544548348089, 32.787072219553], [-79.9544531790766, 32.7870746105951], [-79.9544523069555, 32.7870795010033], [-79.9544514636608, 32.7870819846626], [-79.9544506213921, 32.7870843826564], [-79.9544497791649, 32.7870868663247], [-79.9544497493448, 32.7870893560339], [-79.9544489049932, 32.7870918387823], [-79.9544480616659, 32.7870943251468], [-79.9544480318457, 32.7870968148561], [-79.9544471885508, 32.7870992985153], [-79.9544471587306, 32.7871017882245], [-79.9544471288672, 32.7871042815407], [-79.954447099047, 32.7871067712501], [-79.9544462546935, 32.78710934328], [-79.9544462248732, 32.7871118329892], [-79.954446195053, 32.7871143226985], [-79.9544461641636, 32.7871169016802], [-79.9544461343434, 32.7871193913895], [-79.9544469179874, 32.7871218880506], [-79.9544468881564, 32.7871243786616], [-79.9544468572778, 32.7871269567416], [-79.9544468274576, 32.7871294464509], [-79.9544476110909, 32.7871319440137], [-79.9544475812275, 32.78713443733], [-79.9544483648717, 32.7871369339911], [-79.9544483350515, 32.7871394237003], [-79.9544491197525, 32.7871419212723], [-79.9544499033446, 32.7871443331605], [-79.9547223177418, 32.787766258836], [-79.9548815124758, 32.7881278808529], [-79.9550509793811, 32.7885150176154], [-79.9553265730126, 32.7891439267673], [-79.955646527837, 32.7898733716945], [-79.956893462775, 32.7893516878418], [-79.957810876628, 32.7889672857516], [-79.9583114743915, 32.7893550060642]]], "type": "Polygon"}, "id": "174", "properties": {"OBJECTID": 874, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 213338.94921875, "Shape__Length": 2107.8463165385, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9422107680935, 32.7883918791586, -79.9400331246711, 32.789909667754], "geometry": {"coordinates": [[[-79.9408235943073, 32.7884106560869], [-79.940683180351, 32.7884470812305], [-79.9404815216255, 32.7884983837129], [-79.9403598405053, 32.7885292801299], [-79.9400331246711, 32.7886126609996], [-79.9401189041469, 32.7887487047181], [-79.9401689488064, 32.7888220606649], [-79.9402590392324, 32.7889541185393], [-79.9403489893517, 32.7890859713167], [-79.9404718073711, 32.7892660006465], [-79.9405833768554, 32.7894227164969], [-79.9407084886665, 32.7895984790245], [-79.9407656074184, 32.7896787201627], [-79.9408796101387, 32.7898388675488], [-79.9409300105745, 32.789909667754], [-79.9412638662535, 32.7897810821976], [-79.9417986033364, 32.7895751225268], [-79.9418585368414, 32.7895528046028], [-79.9419977799011, 32.7895009519937], [-79.9422107680935, 32.7894212776079], [-79.9421553225198, 32.7893500934255], [-79.9420873568679, 32.7892628375709], [-79.9420195371394, 32.7891722741057], [-79.9419494892998, 32.7890849713097], [-79.9418978751293, 32.7890206434301], [-79.9417010576769, 32.7887753454522], [-79.9415521211369, 32.7885897209981], [-79.9414573092403, 32.7884715538968], [-79.9413933827546, 32.7883918791586], [-79.9412710358697, 32.7884353657508], [-79.9413557252739, 32.7885409153091], [-79.9414219741678, 32.7886234825077], [-79.9410369917795, 32.7887233470728], [-79.9408235943073, 32.7884106560869]]], "type": "Polygon"}, "id": "175", "properties": {"OBJECTID": 884, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 26222.841796875, "Shape__Length": 748.528805615407, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.942392196079, 32.7895409975187, -79.9418254815233, 32.7899466889582], "geometry": {"coordinates": [[[-79.9418254815233, 32.7897158312095], [-79.9419894658224, 32.7899466889582], [-79.9420606526657, 32.7899132034174], [-79.9421179279075, 32.7898863838631], [-79.9421883022345, 32.7898528028439], [-79.9421819077746, 32.7898433847018], [-79.9422588222264, 32.7898071961658], [-79.942392196079, 32.789744443283], [-79.9423380528277, 32.7896470793356], [-79.9422791339057, 32.7895409975187], [-79.9421148363039, 32.789604431628], [-79.9420339170298, 32.789635428746], [-79.9419595336834, 32.7896641646151], [-79.9418998649251, 32.789687098127], [-79.9418254815233, 32.7897158312095]]], "type": "Polygon"}, "id": "176", "properties": {"OBJECTID": 885, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1754.416015625, "Shape__Length": 174.543845564484, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9339737088563, 32.7896681410766, -79.9334889301643, 32.7900106122472], "geometry": {"coordinates": [[[-79.9338263653967, 32.7896681974753], [-79.9338222916755, 32.7896687644025], [-79.9338190272348, 32.7896695079271], [-79.9338157607218, 32.789670595935], [-79.9338124899912, 32.7896719418311], [-79.9338092118819, 32.7896738044151], [-79.9338059265126, 32.7896764362021], [-79.9338034587606, 32.7896786494473], [-79.9334965044579, 32.789964340796], [-79.9334932064104, 32.7899679211961], [-79.9334915469312, 32.7899705671476], [-79.9334906998282, 32.789973311266], [-79.9334898517116, 32.7899761383445], [-79.9334890025703, 32.7899790492849], [-79.9334889668741, 32.7899819709234], [-79.9334889301643, 32.7899849755219], [-79.9334897079573, 32.7899879042515], [-79.9334904868191, 32.7899907455123], [-79.9334912667276, 32.7899935011078], [-79.933492861172, 32.7899961781291], [-79.9334952712213, 32.7899986891073], [-79.9334968698416, 32.790001024369], [-79.9335000902296, 32.7900038003359], [-79.9335033190019, 32.7900058900785], [-79.9335065551228, 32.7900073783602], [-79.9335097943837, 32.7900086096458], [-79.9335130367846, 32.7900095839354], [-79.9335162834271, 32.7900102110548], [-79.9335195342231, 32.7900104982181], [-79.9335227871343, 32.7900106122472], [-79.9335260431745, 32.7900104701819], [-79.933529303445, 32.7900099818483], [-79.9335325647622, 32.7900094078493], [-79.9339513943126, 32.7898895351935], [-79.9339546618996, 32.7898884471913], [-79.9339579368209, 32.78988675863], [-79.9339612149136, 32.7898848103673], [-79.9339644972019, 32.7898825185415], [-79.9339661514343, 32.7898803009102], [-79.9339686223043, 32.7898778324692], [-79.9339702807653, 32.7898752685696], [-79.933971126773, 32.7898726128185], [-79.9339727883613, 32.7898697928246], [-79.9339728240413, 32.789866871186], [-79.9339736731763, 32.7898639593406], [-79.9339737088563, 32.789861037702], [-79.9339729310151, 32.7898581116807], [-79.9339721521278, 32.7898552713248], [-79.9339713732516, 32.7898524300671], [-79.933969778806, 32.7898497521504], [-79.9339018680582, 32.789747968984], [-79.9338675175313, 32.7896961297207], [-79.933857128918, 32.7896807503652], [-79.933854715729, 32.789678408912], [-79.9338523025496, 32.7896762415133], [-79.933849080092, 32.7896736350829], [-79.9338458470952, 32.7896718041397], [-79.9338426099669, 32.7896704863052], [-79.9338393686103, 32.7896694272609], [-79.9338361219899, 32.7896687117701], [-79.9338328743548, 32.7896682541957], [-79.9338296214448, 32.7896681410766], [-79.9338263653967, 32.7896681974753]]], "type": "Polygon"}, "id": "177", "properties": {"OBJECTID": 889, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1122.13671875, "Shape__Length": 148.903328134485, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.940787842981, 32.7895278396453, -79.9399684578393, 32.7901633369756], "geometry": {"coordinates": [[[-79.9404920156486, 32.7895278396453], [-79.9399684578393, 32.789784328354], [-79.940226475163, 32.7901633369756], [-79.9404771008329, 32.7900698165264], [-79.9405776998587, 32.7900307904453], [-79.940787842981, 32.7899514825653], [-79.9406639590954, 32.7897740740779], [-79.9406077383675, 32.7896935629015], [-79.9405498732768, 32.7896106962948], [-79.9404920156486, 32.7895278396453]]], "type": "Polygon"}, "id": "178", "properties": {"OBJECTID": 894, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4167.7890625, "Shape__Length": 258.831982900393, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9419640300665, 32.7897273404073, -79.9410146268179, 32.7902319400948], "geometry": {"coordinates": [[[-79.9411186228578, 32.7901739229145], [-79.9412167117181, 32.790136029836], [-79.9413180690572, 32.7900969610113], [-79.9414104362409, 32.7900613386928], [-79.9415150608606, 32.7900211851107], [-79.941618871927, 32.789981021697], [-79.9417980720284, 32.7902319400948], [-79.941888891262, 32.7901896908666], [-79.941894619032, 32.7901869907051], [-79.9419518903729, 32.7901605120859], [-79.9418639013825, 32.7900364016848], [-79.941887606078, 32.7900271563578], [-79.9418764160836, 32.7900107399666], [-79.9418806563409, 32.7899964311398], [-79.9419640300665, 32.7899644218404], [-79.9417952398115, 32.7897273404073], [-79.9416759010123, 32.7897732081348], [-79.9416162310334, 32.7897962298793], [-79.9415148752485, 32.7898352105792], [-79.9414110633126, 32.7898754559624], [-79.941306438776, 32.7899156130619], [-79.9412140727715, 32.7899512353106], [-79.9411127155596, 32.7899902156687], [-79.9410146268179, 32.7900281086632], [-79.9411186228578, 32.7901739229145]]], "type": "Polygon"}, "id": "179", "properties": {"OBJECTID": 899, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3099.712890625, "Shape__Length": 310.975635566737, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9404920156486, 32.7888931345288, -79.9385575372293, 32.7904266673469], "geometry": {"coordinates": [[[-79.9389465070554, 32.7888931345288], [-79.9385575372293, 32.7889936881378], [-79.9386468001183, 32.789124866163], [-79.9387359699509, 32.7892559044327], [-79.9388898408514, 32.7894820116773], [-79.9389257219961, 32.7895347384611], [-79.9390170536924, 32.7896689354654], [-79.9390462186041, 32.7897117910964], [-79.9391030285435, 32.7897952724462], [-79.9392082897006, 32.7899499472285], [-79.9392715227801, 32.790042859674], [-79.9393769292848, 32.7901977475017], [-79.9394320552514, 32.7902787511858], [-79.9394734866566, 32.7903355399903], [-79.9395337812791, 32.7904266673469], [-79.9399846186448, 32.7902545953337], [-79.9401070486063, 32.7902083997933], [-79.940226475163, 32.7901633369756], [-79.9399684578393, 32.789784328354], [-79.9404920156486, 32.7895278396453], [-79.9403814156403, 32.789369452888], [-79.940297042349, 32.7892486237761], [-79.9402132588437, 32.7891349016698], [-79.9396315396776, 32.7893077250292], [-79.9395767477854, 32.7891710440982], [-79.9394747064674, 32.7892035997025], [-79.939384434195, 32.7890698884016], [-79.9392910263606, 32.7890919690201], [-79.9391971034094, 32.7891197095316], [-79.9390632802027, 32.7891592336744], [-79.9390162963122, 32.7890334286938], [-79.9389993557939, 32.7890376250274], [-79.9389465070554, 32.7888931345288]]], "type": "Polygon"}, "id": "180", "properties": {"OBJECTID": 906, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20641.90625, "Shape__Length": 731.877978018848, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9429558573965, 32.7897158312095, -79.9417952398115, 32.7908766693842], "geometry": {"coordinates": [[[-79.941888891262, 32.7901896908666], [-79.942063284458, 32.7904344672838], [-79.942053465261, 32.7904391079969], [-79.9420942643764, 32.7904963251169], [-79.9420999931874, 32.7904935401821], [-79.9421511325288, 32.7905702623078], [-79.9422373267482, 32.790699735532], [-79.9422454233137, 32.7907116096557], [-79.9423526157983, 32.7906609964182], [-79.9424453080816, 32.7907999245961], [-79.9425410460449, 32.7907546240986], [-79.9426223192388, 32.7908766693842], [-79.9427005120489, 32.7908450972824], [-79.942808476746, 32.7908015056975], [-79.9429558573965, 32.7907401015118], [-79.9424853346675, 32.7899136120232], [-79.9424391689806, 32.7898292863701], [-79.9423953730391, 32.7897508259798], [-79.942392196079, 32.789744443283], [-79.9422588222264, 32.7898071961658], [-79.9421819077746, 32.7898433847018], [-79.9421883022345, 32.7898528028439], [-79.9421179279075, 32.7898863838631], [-79.9420606526657, 32.7899132034174], [-79.9419894658224, 32.7899466889582], [-79.9418254815233, 32.7897158312095], [-79.9417952398115, 32.7897273404073], [-79.9419640300665, 32.7899644218404], [-79.9418806563409, 32.7899964311398], [-79.9418764160836, 32.7900107399666], [-79.941887606078, 32.7900271563578], [-79.9418639013825, 32.7900364016848], [-79.9419518903729, 32.7901605120859], [-79.941894619032, 32.7901869907051], [-79.941888891262, 32.7901896908666]]], "type": "Polygon"}, "id": "181", "properties": {"OBJECTID": 916, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9503.09375, "Shape__Length": 508.805133772072, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9430382669443, 32.789981021697, -79.9411186228578, 32.7913798222964], "geometry": {"coordinates": [[[-79.9411186228578, 32.7901739229145], [-79.9413178082254, 32.7904539621122], [-79.9414897911211, 32.7906961401587], [-79.9414945929326, 32.7907027109915], [-79.9415353907442, 32.7907600157684], [-79.9415889858742, 32.7908354697544], [-79.9416801917426, 32.7909627041875], [-79.9417817755752, 32.7911064345067], [-79.9418777766303, 32.7912408374724], [-79.9419265777312, 32.7913091217399], [-79.941976976797, 32.7913798222964], [-79.942167631515, 32.7912899877129], [-79.9422551904049, 32.7912483972102], [-79.9423435605884, 32.7912068127571], [-79.9423779285211, 32.7911906170747], [-79.9424319328121, 32.7911652291606], [-79.9425194894001, 32.7911237196167], [-79.9425988577825, 32.7910865248723], [-79.9426266822318, 32.791073106137], [-79.9427232338894, 32.7910278134278], [-79.9427985158709, 32.7909921298915], [-79.9428852492506, 32.7909514742295], [-79.9430382669443, 32.7908790080322], [-79.9429558573965, 32.7907401015118], [-79.942808476746, 32.7908015056975], [-79.9427005120489, 32.7908450972824], [-79.9426223192388, 32.7908766693842], [-79.9425411618839, 32.7907547567678], [-79.9424453080816, 32.7907999245961], [-79.9423525683408, 32.7906611240685], [-79.9422454233137, 32.7907116096557], [-79.942237433032, 32.7906995993718], [-79.9421511325288, 32.7905702623078], [-79.9420999931874, 32.7904935401821], [-79.9420942643764, 32.7904963251169], [-79.942053465261, 32.7904391079969], [-79.942063284458, 32.7904344672838], [-79.941888891262, 32.7901896908666], [-79.9417980720284, 32.7902319400948], [-79.941618871927, 32.789981021697], [-79.9415150608606, 32.7900211851107], [-79.9414104362409, 32.7900613386928], [-79.9413180690572, 32.7900969610113], [-79.9412167117181, 32.790136029836], [-79.9411186228578, 32.7901739229145]]], "type": "Polygon"}, "id": "182", "properties": {"OBJECTID": 928, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14897.6015625, "Shape__Length": 642.202576284027, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9397898326094, 32.7908580145398, -79.9390277149416, 32.7915807322222], "geometry": {"coordinates": [[[-79.9390277149416, 32.7914069648205], [-79.9391468876055, 32.7915807322222], [-79.9397898326094, 32.7911396646956], [-79.9395994401645, 32.7908580145398], [-79.9392660932775, 32.7910396045395], [-79.9393929927468, 32.7911898304233], [-79.9390277149416, 32.7914069648205]]], "type": "Polygon"}, "id": "183", "properties": {"OBJECTID": 938, "ORDNO": "2018-137", "ORDSTAT": null, "Shape__Area": 3144.046875, "Shape__Length": 280.255615233333, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9371517105158, 32.7905736190317, -79.9355792210179, 32.7918004517114], "geometry": {"coordinates": [[[-79.9355792210179, 32.7910868096547], [-79.9358068786225, 32.7914372225497], [-79.9357103545753, 32.7914823657844], [-79.9355843785671, 32.7915412825918], [-79.9357538141059, 32.7918004517114], [-79.9368457372002, 32.7913867977423], [-79.9371517105158, 32.7912643037739], [-79.9366998928494, 32.7905736190317], [-79.9355792210179, 32.7910868096547]]], "type": "Polygon"}, "id": "184", "properties": {"OBJECTID": 943, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15318.130859375, "Shape__Length": 537.865866264185, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9358068786225, 32.7910868096547, -79.9351300563418, 32.7918922574484], "geometry": {"coordinates": [[[-79.9355792210179, 32.7910868096547], [-79.9353560696361, 32.791188996805], [-79.9351300563418, 32.7912924924615], [-79.935350713243, 32.7916354294939], [-79.9355159647169, 32.7918922574484], [-79.9357538141059, 32.7918004517114], [-79.9355843785671, 32.7915412825918], [-79.9357103545753, 32.7914823657844], [-79.9358068786225, 32.7914372225497], [-79.9355792210179, 32.7910868096547]]], "type": "Polygon"}, "id": "185", "properties": {"OBJECTID": 946, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4131.37109375, "Shape__Length": 296.74450782033, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9418183956243, 32.7906372655724, -79.9399918986174, 32.7918674385455], "geometry": {"coordinates": [[[-79.9405709389139, 32.7918637013607], [-79.9408551278239, 32.7917380019027], [-79.9409384463939, 32.7918674385455], [-79.9410542379468, 32.7918128011072], [-79.9412260325719, 32.7917201434185], [-79.9413564258985, 32.7916587086616], [-79.941483493377, 32.7915988394399], [-79.9415877220027, 32.7915641961713], [-79.9418183956243, 32.7914564317026], [-79.9412577716833, 32.7906372655724], [-79.940468992737, 32.7910065399004], [-79.9403759449049, 32.7908699627127], [-79.9399918986174, 32.7910507882141], [-79.9400875648307, 32.791185102229], [-79.9401295222923, 32.7912440101716], [-79.9401832388553, 32.7913194126287], [-79.9402386350689, 32.791397184304], [-79.9402789225089, 32.7914537455823], [-79.9403623639583, 32.7915785085706], [-79.9404000835839, 32.7916313879199], [-79.9404583405725, 32.791713029698], [-79.9405205665487, 32.7917929824086], [-79.9405709389139, 32.7918637013607]]], "type": "Polygon"}, "id": "186", "properties": {"OBJECTID": 950, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 18761.81640625, "Shape__Length": 588.428780558585, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9349173425887, 32.7913867526472, -79.9339290469811, 32.7920389184483], "geometry": {"coordinates": [[[-79.9339290469811, 32.7917183989514], [-79.9341343715535, 32.7920389184483], [-79.9342507018974, 32.7919895849804], [-79.9342636196973, 32.7919836723314], [-79.9342878484282, 32.7920213420495], [-79.9344213643043, 32.7919582932761], [-79.934566239769, 32.791889872739], [-79.9345988754642, 32.7919405993399], [-79.9347295440941, 32.7918788944284], [-79.9347834977433, 32.7918534147314], [-79.9348037062955, 32.7918848212626], [-79.9349173425887, 32.7918311700693], [-79.9346313819237, 32.7913867526472], [-79.9345177512502, 32.7914404135381], [-79.9339290469811, 32.7917183989514]]], "type": "Polygon"}, "id": "187", "properties": {"OBJECTID": 953, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5156.033203125, "Shape__Length": 312.593263675366, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9270751126622, 32.7907511258232, -79.9252003485189, 32.7922275324052], "geometry": {"coordinates": [[[-79.9252003485189, 32.7915456966664], [-79.9254623630771, 32.7922275324052], [-79.9270751126622, 32.7915067324813], [-79.9270314861572, 32.7913545608109], [-79.9270169341212, 32.791278236985], [-79.9270024447324, 32.7911731063277], [-79.9269541990498, 32.7907511258232], [-79.9262801415504, 32.7910565147042], [-79.9252003485189, 32.7915456966664]]], "type": "Polygon"}, "id": "188", "properties": {"OBJECTID": 961, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 19836.1484375, "Shape__Length": 621.110392584109, "ZONE_BASE": "HI", "__folium_color": "#9467bd"}, "type": "Feature"}, {"bbox": [-79.9353082698224, 32.7912780872293, -79.9338381778252, 32.7923870967945], "geometry": {"coordinates": [[[-79.9339290469811, 32.7917183989514], [-79.9338381778252, 32.7917598257284], [-79.9340454434039, 32.7920770110675], [-79.9342341762319, 32.7923870967945], [-79.9344656841748, 32.79229772556], [-79.9347564287127, 32.7921854850252], [-79.9348929090893, 32.7921327974938], [-79.9350679454837, 32.7920652242095], [-79.9353082698224, 32.7919724461449], [-79.934861487582, 32.7912780872293], [-79.9346313819237, 32.7913867526472], [-79.9349173425887, 32.7918311700693], [-79.9348037062955, 32.7918848212626], [-79.9347834977433, 32.7918534147314], [-79.9347295440941, 32.7918788944284], [-79.9345988754642, 32.7919405993399], [-79.934566239769, 32.791889872739], [-79.9344213643043, 32.7919582932761], [-79.9342878484282, 32.7920213420495], [-79.9342636196973, 32.7919836723314], [-79.9342132556293, 32.7920054647983], [-79.9341343715535, 32.7920389184483], [-79.9339290469811, 32.7917183989514]]], "type": "Polygon"}, "id": "189", "properties": {"OBJECTID": 963, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7801.017578125, "Shape__Length": 593.96384333355, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9472063993483, 32.7892997691587, -79.9434062081712, 32.7916524298569], "geometry": {"coordinates": [[[-79.9439803908515, 32.7914991161705], [-79.9440783867004, 32.7916524298569], [-79.9442091010615, 32.7915932295975], [-79.9443249642362, 32.7915594825271], [-79.9444154636388, 32.7915186174832], [-79.9445058040809, 32.7914778231488], [-79.9445775986337, 32.7914454037406], [-79.9446668696525, 32.791405092466], [-79.944466253438, 32.7910808249597], [-79.9444294352717, 32.7910237629324], [-79.9444540572655, 32.7910130036247], [-79.9445286855546, 32.7911281877504], [-79.9446841789506, 32.7913704074698], [-79.9448490452883, 32.791310387336], [-79.9449606139383, 32.7912685690843], [-79.9450510181306, 32.7912251956534], [-79.9451065057259, 32.7911985730183], [-79.9452478657306, 32.7911301871704], [-79.9454060744113, 32.7910467243103], [-79.9456017585671, 32.7909434895186], [-79.9456754133596, 32.7909083213813], [-79.9457292376957, 32.7908826211421], [-79.9457948047124, 32.7908527482611], [-79.9459315731482, 32.7907890855668], [-79.9460797690557, 32.7907201038338], [-79.9462222513983, 32.7906537845326], [-79.9463892862195, 32.7905909970602], [-79.9465122953281, 32.7905324837583], [-79.9466208685358, 32.7904801228212], [-79.9467601439966, 32.7904136986364], [-79.9469735170992, 32.7903119342433], [-79.9472063993483, 32.7901992961906], [-79.9471561010259, 32.7900909155152], [-79.9471035352786, 32.7899776490044], [-79.9470035438638, 32.7897621914005], [-79.9469415545591, 32.7896286200648], [-79.9468938823621, 32.7895258992565], [-79.946840949605, 32.7894118701297], [-79.9467900137632, 32.7892997691587], [-79.9465874422569, 32.7893928802065], [-79.9464531437517, 32.78945460879], [-79.9463197039536, 32.7895159433068], [-79.9462133335599, 32.7895648346371], [-79.9461394319753, 32.789598801515], [-79.9460714202839, 32.7896300630773], [-79.9459412534887, 32.7896898913596], [-79.9458371952834, 32.7897377200852], [-79.9457551494616, 32.7897753727063], [-79.9456794033713, 32.7898102450922], [-79.9455432745301, 32.7898878030647], [-79.9454121658904, 32.7899488185085], [-79.9452555679214, 32.790021966516], [-79.9451235264677, 32.7900844219606], [-79.9450324571461, 32.7901268328471], [-79.9449811672632, 32.7901507184935], [-79.9448529337677, 32.7902111494], [-79.9446761836505, 32.7902953092469], [-79.9445749928062, 32.7903430570337], [-79.944489756804, 32.790383259646], [-79.9444006666796, 32.7904252903358], [-79.9446383682796, 32.790784107901], [-79.9447277479776, 32.7907425205295], [-79.9448129831643, 32.7907023168389], [-79.9449114273759, 32.790656491326], [-79.9449683287472, 32.7907156941896], [-79.94482887243, 32.7907784650654], [-79.944633068846, 32.7908442858546], [-79.9443716013737, 32.7904390306389], [-79.9442533204713, 32.7904948347063], [-79.9441253853604, 32.7905557580344], [-79.9439805780046, 32.7906235104002], [-79.9438385243285, 32.7906905297278], [-79.943729209264, 32.7907409482739], [-79.9434062081712, 32.7908882040041], [-79.9435107768754, 32.7910386340259], [-79.943560295433, 32.7911150448543], [-79.9436268230741, 32.7912177007375], [-79.9436861984486, 32.7913093194974], [-79.9437200852141, 32.7913811330209], [-79.9438521434068, 32.7913178937025], [-79.9438794900959, 32.7913567481592], [-79.943911613685, 32.7914175782854], [-79.9439242966475, 32.7914117753258], [-79.9439803908515, 32.7914991161705]]], "type": "Polygon"}, "id": "190", "properties": {"OBJECTID": 970, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 51945.833984375, "Shape__Length": 1408.95812222593, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9266740120709, 32.7879180065499, -79.9260795914715, 32.7883420871822], "geometry": {"coordinates": [[[-79.9266740120709, 32.7882771283084], [-79.9266300669704, 32.7879180065499], [-79.9260795914715, 32.7879841765711], [-79.9261336856595, 32.7883420871822], [-79.9266740120709, 32.7882771283084]]], "type": "Polygon"}, "id": "191", "properties": {"OBJECTID": 993, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2929.662109375, "Shape__Length": 218.241376014332, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9266300669704, 32.7872151129476, -79.9259903932632, 32.7879841765711], "geometry": {"coordinates": [[[-79.9266300669704, 32.7879180065499], [-79.9265427846435, 32.7872200497553], [-79.9264906563995, 32.7872151129476], [-79.9259903932632, 32.7873940432567], [-79.9260795914715, 32.7879841765711], [-79.9266300669704, 32.7879180065499]]], "type": "Polygon"}, "id": "192", "properties": {"OBJECTID": 994, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5478.166015625, "Shape__Length": 299.961852110022, "ZONE_BASE": "MU-2", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9265328643586, 32.7792041309543, -79.9235437846097, 32.7877445384529], "geometry": {"coordinates": [[[-79.9238230977317, 32.7876893905129], [-79.9248398835403, 32.7877445384529], [-79.9250909986452, 32.7876549956912], [-79.925834475152, 32.7873898832438], [-79.9265328643586, 32.787140841878], [-79.9263119696649, 32.7853337675574], [-79.9262883465039, 32.7852172594005], [-79.9262424492524, 32.7850389738449], [-79.9262024027977, 32.7849078145887], [-79.9261842945169, 32.7848297270589], [-79.9261125220792, 32.7846504613103], [-79.9258611200597, 32.7826354691177], [-79.9258446676097, 32.7824776214546], [-79.9258435775838, 32.7822642671845], [-79.9258586046228, 32.7820972726352], [-79.9258645188754, 32.7819741661999], [-79.9258631084035, 32.7818855060211], [-79.9258522201402, 32.7817528368904], [-79.9256964086147, 32.780462006266], [-79.9255435268691, 32.7792041309543], [-79.9235437846097, 32.7795506339012], [-79.9235632077809, 32.78049280974], [-79.9236066480088, 32.7837597598991], [-79.9236875344629, 32.7866409065027], [-79.9238230977317, 32.7876893905129]]], "type": "Polygon"}, "id": "193", "properties": {"OBJECTID": 995, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 290758.21875, "Shape__Length": 2682.43943530066, "ZONE_BASE": "LI", "__folium_color": "#8c564b"}, "type": "Feature"}, {"bbox": [-79.9269541990498, 32.7873898832438, -79.9236333964795, 32.791591777104], "geometry": {"coordinates": [[[-79.9238230977317, 32.7876893905129], [-79.9236333964795, 32.7881522687766], [-79.9240731380863, 32.7892270916261], [-79.9251588383889, 32.7891169453577], [-79.9253468117618, 32.7899529238688], [-79.9246318489614, 32.7902723006861], [-79.9243427985333, 32.7904014189932], [-79.9247987039784, 32.7911194540887], [-79.9250986341905, 32.791591777104], [-79.9252003485189, 32.7915456966664], [-79.9262801415504, 32.7910565147042], [-79.9269541990498, 32.7907511258232], [-79.9269289369747, 32.7904243319686], [-79.9268957083041, 32.7900706773758], [-79.926864503686, 32.7898139889047], [-79.9267633313582, 32.7889932451886], [-79.926732283246, 32.7887134701553], [-79.9266975454045, 32.7884356981976], [-79.9259807091045, 32.7885219170813], [-79.9259576266739, 32.7883691498106], [-79.9259047069137, 32.7879474336494], [-79.925834475152, 32.7873898832438], [-79.9250909986452, 32.7876549956912], [-79.9248398835403, 32.7877445384529], [-79.9238230977317, 32.7876893905129]]], "type": "Polygon"}, "id": "194", "properties": {"OBJECTID": 996, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 115473.810546875, "Shape__Length": 1762.67147682684, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9348199782639, 32.7833467899291, -79.9335802590626, 32.7845951960404], "geometry": {"coordinates": [[[-79.9335802590626, 32.7834782602075], [-79.9337151088647, 32.7836968140697], [-79.9337196212781, 32.7837061964162], [-79.9337894466776, 32.7838224897488], [-79.9337828844604, 32.7838249062935], [-79.933822713099, 32.7838866756252], [-79.9338569312795, 32.7839563304018], [-79.9338946298027, 32.7840190019212], [-79.9339001938008, 32.7840164116358], [-79.9342891526827, 32.7845949867714], [-79.9342892611603, 32.7845951960404], [-79.9343228083142, 32.784579680887], [-79.9344316247394, 32.7845290887933], [-79.93455434812, 32.7844721741018], [-79.9348199782639, 32.7843492843869], [-79.934819875948, 32.7843490075343], [-79.9347554052471, 32.7842531654547], [-79.9346622075156, 32.7841145299963], [-79.934617249163, 32.7840356318971], [-79.9345661322877, 32.783960808752], [-79.9344826815209, 32.7840012967622], [-79.9344209526419, 32.7839187840671], [-79.9343837066752, 32.7838615168471], [-79.9343500677768, 32.7838097948583], [-79.9344402071525, 32.783767544391], [-79.9343939119485, 32.7836987522594], [-79.9346881814853, 32.7835575967245], [-79.9346461159004, 32.7834950281133], [-79.9341828587051, 32.7837197365193], [-79.9341420714343, 32.7836554978462], [-79.9343267659825, 32.783569916442], [-79.934287187167, 32.7835050687841], [-79.9341341116165, 32.7835748566987], [-79.9340569639614, 32.7836100279968], [-79.9338962946536, 32.7833467899291], [-79.9338127394311, 32.7833795938292], [-79.9335804973015, 32.7834781594749], [-79.9335802590626, 32.7834782602075]]], "type": "Polygon"}, "id": "195", "properties": {"OBJECTID": 1032, "ORDNO": "2021-122", "ORDSTAT": null, "Shape__Area": 10010.32421875, "Shape__Length": 614.632863333078, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9373328006763, 32.7913847545784, -79.9367307152972, 32.7918782170486], "geometry": {"coordinates": [[[-79.9368796489016, 32.7918782170486], [-79.937214496187, 32.7916316872405], [-79.9373328006763, 32.7915401566713], [-79.9372782439767, 32.7914571269321], [-79.9372306909382, 32.7913847545784], [-79.9367307152972, 32.7915804685713], [-79.936806094488, 32.7917264806673], [-79.9368796489016, 32.7918782170486]]], "type": "Polygon"}, "id": "196", "properties": {"OBJECTID": 1058, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2091.318359375, "Shape__Length": 195.12736709153, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.937910338588, 32.7915401566713, -79.9368796489016, 32.7926436845471], "geometry": {"coordinates": [[[-79.9374398832958, 32.7925254723933], [-79.9374692540642, 32.7925081885476], [-79.9375869536202, 32.7926373218553], [-79.9375781529305, 32.7926436845471], [-79.937910338588, 32.7924231034774], [-79.9374327861339, 32.7916974809814], [-79.9373328006763, 32.7915401566713], [-79.937214496187, 32.7916316872405], [-79.9368796489016, 32.7918782170486], [-79.9370260820591, 32.7921552582051], [-79.9370410023084, 32.792183486339], [-79.9372788915574, 32.7920093205062], [-79.9373258147103, 32.792054969574], [-79.9372364707546, 32.7921205768123], [-79.9373117218231, 32.792201007758], [-79.9372409298496, 32.792249812595], [-79.9373075770446, 32.7923166791436], [-79.9373380185881, 32.7922978246134], [-79.9374194315283, 32.7923972132994], [-79.9373656392668, 32.7924365739151], [-79.9374398832958, 32.7925254723933]]], "type": "Polygon"}, "id": "197", "properties": {"OBJECTID": 1059, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7105.7265625, "Shape__Length": 453.184236501026, "ZONE_BASE": "MU-2", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9369342257676, 32.7916252021867, -79.9343086071167, 32.7931357462159], "geometry": {"coordinates": [[[-79.9366117769071, 32.7916252021867], [-79.9360885450896, 32.7918223004925], [-79.9354707626311, 32.7920588319517], [-79.9353236787878, 32.7921176009247], [-79.9343086071167, 32.7925094894271], [-79.93468078454, 32.7931357462159], [-79.9348494833404, 32.7930647307393], [-79.9350395091887, 32.7929875355036], [-79.9358116968523, 32.7926808534166], [-79.9360319204463, 32.7925939224494], [-79.9369342257676, 32.7922392498765], [-79.9366117769071, 32.7916252021867]]], "type": "Polygon"}, "id": "198", "properties": {"OBJECTID": 1135, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 25340.6953125, "Shape__Length": 740.987579974473, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9344949419866, 32.7913740247512, -79.9317362124516, 32.793658376277], "geometry": {"coordinates": [[[-79.9344784374465, 32.7930951322127], [-79.9344542565874, 32.7930504484641], [-79.9338848659127, 32.792113747937], [-79.9338332472206, 32.792034479442], [-79.9320523613846, 32.7913740247512], [-79.9317362124516, 32.7916629945294], [-79.9320785615594, 32.7919769111519], [-79.9325253872908, 32.7923715409875], [-79.9325830553235, 32.7924326826966], [-79.9326381866383, 32.7925256875842], [-79.9327204670328, 32.7926881055511], [-79.9332139438706, 32.793658376277], [-79.9344585235896, 32.7931869524274], [-79.9344653908503, 32.7931836564986], [-79.9344708634702, 32.7931802889027], [-79.9344750886032, 32.7931771277854], [-79.9344804242731, 32.7931722087396], [-79.9344850155547, 32.7931667799862], [-79.9344883064309, 32.793161781808], [-79.9344905677997, 32.7931574140665], [-79.9344917057763, 32.7931547202706], [-79.9344926766994, 32.7931519790263], [-79.9344934772562, 32.7931491993231], [-79.934494275811, 32.7931454465208], [-79.9344947662667, 32.793141654962], [-79.9344949419866, 32.7931378435275], [-79.934494620929, 32.7931321312046], [-79.9344935976593, 32.7931264776988], [-79.9344918842516, 32.7931209435382], [-79.9344899433098, 32.7931164679559], [-79.9344784374465, 32.7930951322127]]], "type": "Polygon"}, "id": "199", "properties": {"OBJECTID": 1158, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 41384.81640625, "Shape__Length": 908.215987846617, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9346829577578, 32.7907036468846, -79.9251391601673, 32.8019750127096], "geometry": {"coordinates": [[[-79.9307171754025, 32.7924161143403], [-79.9305602680267, 32.7924738277071], [-79.9305500949203, 32.7924625785567], [-79.9304579018092, 32.7924964879926], [-79.9304158534357, 32.7924700519251], [-79.930117986291, 32.7920047972516], [-79.9296537419685, 32.7912139717392], [-79.9293473295873, 32.7907036468846], [-79.9286196589315, 32.7910185284751], [-79.9251391601673, 32.7925741698773], [-79.9260483405632, 32.79464809336], [-79.9270262212448, 32.7968398262423], [-79.9274174368611, 32.7974476506022], [-79.9303309524829, 32.8019750127096], [-79.9315676735278, 32.8015168022973], [-79.9329130850556, 32.8010190673794], [-79.9331762984246, 32.8009202583834], [-79.9333487765018, 32.8008554471955], [-79.9341123361293, 32.8005620523162], [-79.9346829577578, 32.8003427355627], [-79.9341284797956, 32.7992401032472], [-79.9332522920546, 32.7974986588942], [-79.9315317939482, 32.7940788237655], [-79.9308590820113, 32.7927382297656], [-79.9307171754025, 32.7924161143403]]], "type": "Polygon"}, "id": "200", "properties": {"OBJECTID": 1485, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 794194.755859375, "Shape__Length": 3875.54103146001, "ZONE_BASE": "HI", "__folium_color": "#9467bd"}, "type": "Feature"}, {"bbox": [-79.9558089744651, 32.7846849088674, -79.9547419635725, 32.7853539571965], "geometry": {"coordinates": [[[-79.9547419635725, 32.7849588549109], [-79.954749970181, 32.7849768229167], [-79.9549180234285, 32.7853539571965], [-79.9552205030752, 32.7852526322767], [-79.9553686728546, 32.7852033380114], [-79.9554291781513, 32.7853316535074], [-79.9556454218231, 32.7852555000082], [-79.9558089744651, 32.7851517845937], [-79.9555960376375, 32.7846904646125], [-79.955558060616, 32.7846849088674], [-79.9547419635725, 32.7849588549109]]], "type": "Polygon"}, "id": "201", "properties": {"OBJECTID": 1957, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6486.345703125, "Shape__Length": 344.667452334043, "ZONE_BASE": "MU-2", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9284782918858, 32.7731299518315, -79.9282056779772, 32.7735192740016], "geometry": {"coordinates": [[[-79.9282084714026, 32.7731702662805], [-79.9282456730588, 32.7733765353034], [-79.9282585208273, 32.7735192740016], [-79.9284782918858, 32.7735033916584], [-79.9284624588045, 32.7733362349011], [-79.9284577822955, 32.773286908646], [-79.9284643643532, 32.7731421811826], [-79.9283290955126, 32.7731520066979], [-79.9283278045061, 32.7731299518315], [-79.9282056779772, 32.7731407743418], [-79.9282084714026, 32.7731702662805]]], "type": "Polygon"}, "id": "202", "properties": {"OBJECTID": 1962, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1259.130859375, "Shape__Length": 154.679694320183, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9368002796883, 32.7853477970203, -79.9362185547685, 32.7856981879427], "geometry": {"coordinates": [[[-79.9362185547685, 32.785587940659], [-79.9362920565777, 32.7856981879427], [-79.9368002796883, 32.7855173198887], [-79.9366868227588, 32.7853477970203], [-79.9362185547685, 32.785587940659]]], "type": "Polygon"}, "id": "203", "properties": {"OBJECTID": 1964, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1296.77734375, "Shape__Length": 164.986733365353, "ZONE_BASE": "UC", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9421041900191, 32.7887076584049, -79.9419051141219, 32.7888722210775], "geometry": {"coordinates": [[[-79.9419545951774, 32.7888722210775], [-79.9421041900191, 32.7888286717983], [-79.9420439410799, 32.7887076584049], [-79.9419051141219, 32.7887849211575], [-79.9419545951774, 32.7888722210775]]], "type": "Polygon"}, "id": "204", "properties": {"OBJECTID": 1971, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 270.265625, "Shape__Length": 66.3332862258049, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9435956295202, 32.7886591045529, -79.9430300127752, 32.7889636730706], "geometry": {"coordinates": [[[-79.9431862025943, 32.7887168693414], [-79.9430300127752, 32.7887643589946], [-79.9431102261097, 32.788845627318], [-79.9432043424176, 32.788823744711], [-79.9432452879565, 32.7888999986423], [-79.9433491486871, 32.788877076402], [-79.9433986151877, 32.7889636730706], [-79.9435956295202, 32.7888880536864], [-79.9435502316131, 32.7888326984378], [-79.9434894948868, 32.7887591442509], [-79.9434068884348, 32.7886591045529], [-79.9431862025943, 32.7887168693414]]], "type": "Polygon"}, "id": "205", "properties": {"OBJECTID": 1972, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1255.2265625, "Shape__Length": 165.820433615113, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9433986151877, 32.788877076402, -79.9432452879565, 32.7890015853732], "geometry": {"coordinates": [[[-79.9432452879565, 32.7888999986423], [-79.9432998375966, 32.7890015853732], [-79.9433986151877, 32.7889636730706], [-79.9433491486871, 32.788877076402], [-79.9432452879565, 32.7888999986423]]], "type": "Polygon"}, "id": "206", "properties": {"OBJECTID": 1973, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 163.84375, "Shape__Length": 51.5207053198062, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9433357715223, 32.7885680651672, -79.9419545951774, 32.7893680489543], "geometry": {"coordinates": [[[-79.9419545951774, 32.7888722210775], [-79.9421322086465, 32.7891038304775], [-79.9421806141654, 32.7891669671472], [-79.9423348439759, 32.7893680489543], [-79.9429203981664, 32.7891524890011], [-79.9429981291743, 32.7891173883665], [-79.9432998375966, 32.7890015853732], [-79.9432452879565, 32.7888999986423], [-79.9432043424176, 32.788823744711], [-79.9431102261097, 32.788845627318], [-79.9430300127752, 32.7887643589946], [-79.9431862025943, 32.7887168693414], [-79.943154188917, 32.7886297117985], [-79.9433357715223, 32.7885770420125], [-79.9433282559795, 32.7885680651672], [-79.9429624050417, 32.7886737861695], [-79.942899140471, 32.7885972518259], [-79.9427053589573, 32.7886536645805], [-79.9425790097555, 32.7886904470161], [-79.9424826866928, 32.78871848764], [-79.9423983069877, 32.7887430520461], [-79.9423027702476, 32.7887708639476], [-79.9422072720208, 32.7887986643844], [-79.9421041900191, 32.7888286717983], [-79.9419545951774, 32.7888722210775]]], "type": "Polygon"}, "id": "207", "properties": {"OBJECTID": 1974, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8542.1796875, "Shape__Length": 466.795728212329, "ZONE_BASE": "PUD", "__folium_color": "#7f7f7f"}, "type": "Feature"}, {"bbox": [-79.9504801480902, 32.7877545736131, -79.9481261576948, 32.7895755114281], "geometry": {"coordinates": [[[-79.950240235231, 32.788009229778], [-79.9500919745083, 32.7877545736131], [-79.9498940093625, 32.7878455778108], [-79.9497630834254, 32.7879057634186], [-79.9495857789736, 32.7879872695949], [-79.9492759421568, 32.7881295537519], [-79.9491818313421, 32.7881754749509], [-79.9490869048192, 32.7882213890719], [-79.9489895222836, 32.7882686573203], [-79.9488553119769, 32.788333988484], [-79.9487014580063, 32.7884091195925], [-79.9485926170341, 32.7884619589047], [-79.9484976909574, 32.7885078725792], [-79.9483839358325, 32.7885635012355], [-79.9482808230016, 32.7886136407171], [-79.9482194468749, 32.7886434345927], [-79.9481261576948, 32.7886885044101], [-79.9482710742277, 32.7890176303413], [-79.9483249195169, 32.7891403287988], [-79.9483827350667, 32.7892709623341], [-79.9485165595797, 32.7895755114281], [-79.9488331920873, 32.7894277349064], [-79.9489796467079, 32.7893591577106], [-79.9490892792471, 32.789308130314], [-79.9492046401975, 32.789254403227], [-79.9493200009911, 32.7892005885535], [-79.9494320901088, 32.7891482084558], [-79.9495531759846, 32.789091778705], [-79.9496742638065, 32.7890353515583], [-79.9497691722886, 32.7889909843662], [-79.9498558941652, 32.7889506673168], [-79.9499679847864, 32.7888982858461], [-79.9500800731225, 32.7888458167766], [-79.9501635253002, 32.7888068485551], [-79.9502559752863, 32.7887638315854], [-79.9503598799881, 32.7887155036151], [-79.9504801480902, 32.7886594122486], [-79.9502655567015, 32.7882043037416], [-79.9503397871557, 32.7881802222313], [-79.9502959291871, 32.788104891767], [-79.950240235231, 32.788009229778]]], "type": "Polygon"}, "id": "208", "properties": {"OBJECTID": 1984, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 31580.34765625, "Shape__Length": 763.040941184679, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9260247450783, 32.776804227153, -79.9255249006872, 32.7769654884537], "geometry": {"coordinates": [[[-79.9260247450783, 32.7769442886729], [-79.9260146644344, 32.776804227153], [-79.9258495796986, 32.7768189404018], [-79.9258511013438, 32.7768353915226], [-79.9256860175445, 32.7768501081671], [-79.9256051053771, 32.7768573219964], [-79.9255249006872, 32.7768644716431], [-79.9255331584286, 32.7769654884537], [-79.9256145417587, 32.7769585123845], [-79.9256948404108, 32.7769516277413], [-79.9256904163149, 32.7769107889379], [-79.9258543647651, 32.7768975160765], [-79.9258596158932, 32.7769392531487], [-79.9258535779501, 32.7769396014486], [-79.9258559992347, 32.7769592863353], [-79.9260247450783, 32.7769442886729]]], "type": "Polygon"}, "id": "209", "properties": {"OBJECTID": 2215, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 735.884765625, "Shape__Length": 158.761170725111, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9260364356241, 32.7768975160765, -79.9255331584286, 32.7774386259104], "geometry": {"coordinates": [[[-79.9260364356241, 32.7771843183892], [-79.9260253683233, 32.777086969967], [-79.926025374081, 32.7770649805569], [-79.9260247450783, 32.7769442886729], [-79.9258559992347, 32.7769592863353], [-79.9258535779501, 32.7769396014486], [-79.9258596158932, 32.7769392531487], [-79.9258543647651, 32.7768975160765], [-79.9256904163149, 32.7769107889379], [-79.9256948404108, 32.7769516277413], [-79.9256145417587, 32.7769585123845], [-79.9255331584286, 32.7769654884537], [-79.925573012968, 32.7774386259104], [-79.9260069675512, 32.7774226980471], [-79.925995554813, 32.777187251184], [-79.9260364356241, 32.7771843183892]]], "type": "Polygon"}, "id": "210", "properties": {"OBJECTID": 2216, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3360.16015625, "Shape__Length": 248.355300743309, "ZONE_BASE": "PUD", "__folium_color": "#7f7f7f"}, "type": "Feature"}, {"bbox": [-79.9509188927016, 32.7886704362276, -79.9498335935367, 32.7896601105883], "geometry": {"coordinates": [[[-79.9509188927016, 32.788919643345], [-79.9508341225281, 32.7887310850317], [-79.9508172369301, 32.7887393823054], [-79.9507818065673, 32.7886704362276], [-79.9507003082539, 32.7887085477462], [-79.9498335935367, 32.78912320792], [-79.950106718633, 32.7896382053507], [-79.9501145928159, 32.7896520493483], [-79.9501219735666, 32.7896491294135], [-79.9501256551143, 32.789655771454], [-79.9502459129515, 32.789599677506], [-79.9502601085919, 32.7896450632932], [-79.950437542699, 32.7895742232137], [-79.9503463277406, 32.7894089857176], [-79.9504739071404, 32.7893572489013], [-79.9505003507567, 32.7893465509109], [-79.9506196403652, 32.7892982040763], [-79.9508302967563, 32.7896601105883], [-79.9508829375342, 32.7896372856305], [-79.9508239706378, 32.7895560107667], [-79.9507350104825, 32.7893651438215], [-79.950690536658, 32.7892697351789], [-79.9505953246817, 32.789065467361], [-79.9507127472691, 32.7890126150939], [-79.9507665626121, 32.7889883284699], [-79.9508206055051, 32.7889639391611], [-79.9509188927016, 32.788919643345]]], "type": "Polygon"}, "id": "211", "properties": {"OBJECTID": 2234, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7590.806640625, "Shape__Length": 523.259853327515, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9265908706729, 32.7792858328299, -79.9257271591722, 32.7801860444288], "geometry": {"coordinates": [[[-79.9265895860463, 32.7795163966951], [-79.926589982712, 32.7794522706237], [-79.9265908706729, 32.7793085077351], [-79.926324088376, 32.7793532352082], [-79.9263082570621, 32.7792858328299], [-79.9260538624239, 32.7793284914046], [-79.9259190820526, 32.7793510877317], [-79.9257271591722, 32.7793832628521], [-79.9258239645869, 32.7801860444288], [-79.9263163986906, 32.7801318670011], [-79.926331681132, 32.7801301108793], [-79.9262999477451, 32.7800090233204], [-79.9265272162993, 32.7799839969714], [-79.9265175133397, 32.7799211296162], [-79.9264692314185, 32.779608360464], [-79.9264578695392, 32.7795347295658], [-79.9265895860463, 32.7795163966951]]], "type": "Polygon"}, "id": "212", "properties": {"OBJECTID": 2281, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8634.8515625, "Shape__Length": 413.48252950155, "ZONE_BASE": "MU-2", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9270003999751, 32.7792482543466, -79.9264578695392, 32.7799211296162], "geometry": {"coordinates": [[[-79.9270003999751, 32.7798679433687], [-79.9269696748488, 32.7795386417513], [-79.926956848936, 32.7794011724316], [-79.9269502585099, 32.7792482543466], [-79.9265756763321, 32.7793102303911], [-79.9265908706729, 32.7793085077351], [-79.926589982712, 32.7794522706237], [-79.9265895860463, 32.7795163966951], [-79.9264578695392, 32.7795347295658], [-79.9264692314185, 32.779608360464], [-79.9265175133397, 32.7799211296162], [-79.9270003999751, 32.7798679433687]]], "type": "Polygon"}, "id": "213", "properties": {"OBJECTID": 2282, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4067.2109375, "Shape__Length": 274.648420679173, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9372703143323, 32.7708267123341, -79.9354583865188, 32.7717142862412], "geometry": {"coordinates": [[[-79.9355580652384, 32.7714201685111], [-79.935561318527, 32.771420282495], [-79.9355645707594, 32.7714203955679], [-79.9355678219134, 32.7714205095331], [-79.935573514085, 32.7714207322173], [-79.9355767652501, 32.7714208452805], [-79.9355800185058, 32.7714209619691], [-79.9355832696599, 32.7714210759339], [-79.9355865218923, 32.7714211890062], [-79.935589775181, 32.7714213029894], [-79.9355930252797, 32.7714215035208], [-79.9355962775011, 32.7714216174945], [-79.9355995308009, 32.7714217305757], [-79.9356027819221, 32.7714218472452], [-79.9356060341775, 32.7714220459914], [-79.935609286399, 32.7714221599648], [-79.9356125375311, 32.7714222757322], [-79.9356182287027, 32.7714225804726], [-79.9356214787795, 32.7714227828067], [-79.9356247320793, 32.7714228958873], [-79.9356279832346, 32.7714230973288], [-79.9356312343997, 32.7714232103905], [-79.9356344866553, 32.7714234091359], [-79.9356377388768, 32.7714235231086], [-79.9356409889648, 32.7714237245405], [-79.9356442411874, 32.7714239259909], [-79.9356474923526, 32.7714240390522], [-79.9356507446083, 32.7714242377972], [-79.9356539946962, 32.7714244392288], [-79.9356572469179, 32.7714245532008], [-79.9356629370124, 32.7714249463095], [-79.9356661871334, 32.7714251450355], [-79.9356694393561, 32.7714253464852], [-79.9356726905115, 32.7714255479256], [-79.9356759406326, 32.7714257466513], [-79.9356791928884, 32.7714259453956], [-79.9356824440438, 32.7714261468357], [-79.9356856951993, 32.7714263482757], [-79.9356889463987, 32.7714265461086], [-79.9356921975542, 32.7714267475485], [-79.9356954487317, 32.7714269471847], [-79.9356986998872, 32.7714271486244], [-79.9357043878815, 32.7714276264852], [-79.9357076390701, 32.7714278252194], [-79.9357108902147, 32.7714280275605], [-79.9357141414032, 32.7714282262945], [-79.9357173904583, 32.7714285124878], [-79.9357206437816, 32.7714287112402], [-79.9357238928256, 32.7714289983351], [-79.9357271439813, 32.771429199774], [-79.9357303941136, 32.7714293975966], [-79.9357336452924, 32.7714296847098], [-79.9357368964372, 32.7714298870501], [-79.9357425833986, 32.7714304496726], [-79.9357458345544, 32.771430651111], [-79.9357490846989, 32.7714309355093], [-79.9357523358657, 32.7714311360458], [-79.9357555860103, 32.7714314204439], [-79.9357588361219, 32.7714317075471], [-79.9357620862445, 32.7714319937485], [-79.9357653374334, 32.7714321924812], [-79.9357685875451, 32.7714324795841], [-79.9357718376678, 32.7714327657853], [-79.9357750877905, 32.7714330519864], [-79.9357807758088, 32.7714336155181], [-79.9357840259206, 32.7714339026207], [-79.9357872749651, 32.7714341897139], [-79.9357905251209, 32.7714344732093], [-79.9357937752437, 32.7714347594099], [-79.9357970253556, 32.771435046512], [-79.9358002754784, 32.7714353327124], [-79.9358035255904, 32.7714356198145], [-79.9358067757353, 32.7714359042112], [-79.9358100258583, 32.7714361904114], [-79.9358132749371, 32.7714365622766], [-79.9358189618885, 32.7714371257972], [-79.9358222120005, 32.7714374128988], [-79.9358254610905, 32.7714377838619], [-79.9358287112026, 32.7714380709633], [-79.9358319602816, 32.7714384428281], [-79.9358352104047, 32.7714387290275], [-79.9358384605168, 32.7714390161286], [-79.9358417096289, 32.7714393852879], [-79.9358449597521, 32.7714396714871], [-79.9358482088202, 32.7714400442531], [-79.935853894706, 32.7714406952408], [-79.9358571437852, 32.7714410671049], [-79.9358603928644, 32.7714414389688], [-79.9358636429767, 32.7714417260693], [-79.935866892067, 32.7714420970314], [-79.9358701411353, 32.7714424697968], [-79.9358733912807, 32.7714427541917], [-79.935876640338, 32.7714431278588], [-79.9358798894504, 32.771443497017], [-79.9358855742595, 32.7714442363736], [-79.935888823372, 32.7714446055316], [-79.9358920724185, 32.7714449801], [-79.9358953215309, 32.7714453492578], [-79.9358985705775, 32.7714457238259], [-79.9359018196901, 32.7714460929836], [-79.9359050687367, 32.7714464675516], [-79.9359083178493, 32.7714468367091], [-79.935911566896, 32.7714472112769], [-79.9359172517716, 32.7714479452216], [-79.9359204997853, 32.7714484045527], [-79.935923748854, 32.7714487773167], [-79.9359269979448, 32.7714491482771], [-79.9359302459806, 32.7714496058044], [-79.9359334950605, 32.7714499776664], [-79.9359367441403, 32.7714503495284], [-79.9359399921872, 32.7714508061537], [-79.9359432412671, 32.7714511780154], [-79.9359489250333, 32.7714520030343], [-79.9359521730803, 32.7714524596592], [-79.9359554221493, 32.7714528324225], [-79.9359586712638, 32.7714532890565], [-79.9359619192765, 32.7714536609085], [-79.9359651673237, 32.7714541175331], [-79.9359684163942, 32.7714545777739], [-79.93597166444, 32.7714549469204], [-79.9359773482301, 32.7714558576124], [-79.935980596254, 32.7714562285622], [-79.9359838443013, 32.7714566851863], [-79.9359870923047, 32.7714571454173], [-79.9359903403411, 32.771457602943], [-79.9359935883885, 32.7714580595668], [-79.935996836425, 32.7714585170923], [-79.9360000844725, 32.771458973716], [-79.9360057672067, 32.7714598834957], [-79.9360090152434, 32.7714603410209], [-79.9360122643583, 32.7714607976536], [-79.9360155113056, 32.7714612569728], [-79.9360187593423, 32.7714617144977], [-79.9360220084574, 32.7714621711301], [-79.9360252553939, 32.7714626313509], [-79.936030938185, 32.7714636240985], [-79.9360341851326, 32.7714640834172], [-79.9360374321365, 32.7714646257051], [-79.9360406812408, 32.7714650832388], [-79.9360439282214, 32.771465539852], [-79.9360471751925, 32.7714660848448], [-79.9360504242969, 32.7714665423782], [-79.936056104932, 32.7714675369097], [-79.9360593540474, 32.7714679935411], [-79.936062598884, 32.7714685385149], [-79.936065848012, 32.7714690817224], [-79.9360690960603, 32.7714695383442], [-79.9360723419753, 32.7714700824254], [-79.936075591069, 32.7714705408598], [-79.9360812706607, 32.7714716210553], [-79.9360845186996, 32.7714721660565], [-79.936087766748, 32.7714726226778], [-79.9360910126414, 32.771473168562], [-79.9360942607244, 32.7714737099559], [-79.9360975066617, 32.7714742522329], [-79.9361031883556, 32.7714753351511], [-79.9361064342931, 32.7714758774279], [-79.9361096812979, 32.7714764197138], [-79.9361129293372, 32.7714769647142], [-79.9361161752419, 32.7714775096959], [-79.9361194222468, 32.7714780519817], [-79.9361251029069, 32.7714791321844], [-79.936128349912, 32.7714796744699], [-79.9361315979515, 32.7714802194697], [-79.9361348438564, 32.771480764451], [-79.9361380908961, 32.7714813915089], [-79.9361413378574, 32.7714819374009], [-79.9361470174851, 32.7714831023661], [-79.9361502644905, 32.771483644651], [-79.9361535104066, 32.77148418873], [-79.9361567573916, 32.7714848202961], [-79.9361600044081, 32.771485361679], [-79.9361632492695, 32.7714859923246], [-79.9361689299542, 32.7714871581998], [-79.9361721758705, 32.7714877022783], [-79.9361754228998, 32.7714883302369], [-79.9361786698725, 32.7714888752263], [-79.9361819147343, 32.7714895058715], [-79.9361875954304, 32.771490670844], [-79.9361908413706, 32.7714913005965], [-79.9361940872998, 32.7714919312506], [-79.936197333273, 32.7714925582977], [-79.936200580246, 32.7714931032864], [-79.9362062588206, 32.7714943548158], [-79.936209504761, 32.7714949845677], [-79.9362127507015, 32.7714956143196], [-79.936215996664, 32.7714962422679], [-79.9362192415262, 32.7714968729121], [-79.9362249211466, 32.7714981262533], [-79.9362281671203, 32.7714987532996], [-79.93623141305, 32.7714993839527], [-79.9362346579235, 32.7715000136947], [-79.9362379038879, 32.7715007291204], [-79.9362435824745, 32.7715019797462], [-79.9362468284155, 32.7715026094972], [-79.9362500743455, 32.7715032401498], [-79.9362533181755, 32.7715039555565], [-79.936256565173, 32.7715045862183], [-79.936262241616, 32.7715059252044], [-79.9362654886686, 32.7715065513572], [-79.9362687335552, 32.7715072676745], [-79.9362719784292, 32.7715078974155], [-79.9362776570075, 32.7715092364195], [-79.9362809008379, 32.7715099518254], [-79.9362841468234, 32.7715105779685], [-79.936287393845, 32.7715112943039], [-79.9362906376646, 32.7715120106113], [-79.936296315187, 32.7715133487034], [-79.9362995600851, 32.7715140641181], [-79.9363028049832, 32.7715147795328], [-79.9363060509142, 32.7715154101839], [-79.9363117274043, 32.7715168330388], [-79.9363149723027, 32.7715175484531], [-79.9363182172011, 32.7715182638674], [-79.9363214620996, 32.7715189792815], [-79.9363271385793, 32.7715204030373], [-79.9363303834779, 32.7715211184513], [-79.9363336283766, 32.7715218338651], [-79.9363368732753, 32.7715225492789], [-79.9363401181631, 32.7715232655943], [-79.936345793598, 32.7715246875365], [-79.936349039588, 32.7715254886337], [-79.9363522834197, 32.7715262040378], [-79.9363579598893, 32.7715276286939], [-79.9363612037559, 32.7715284288705], [-79.936364448655, 32.7715291442835], [-79.9363676935213, 32.7715298624016], [-79.9363733689589, 32.7715313718205], [-79.9363766128257, 32.7715321719966], [-79.9363798577252, 32.7715328874093], [-79.9363831015811, 32.771533688487], [-79.9363887769972, 32.7715351997087], [-79.9363920218969, 32.7715359151209], [-79.936395265753, 32.7715367161983], [-79.9364009412025, 32.7715382247142], [-79.9364041850588, 32.7715390257913], [-79.9364074288932, 32.7715398286719], [-79.9364106748606, 32.771540544093], [-79.9364163481996, 32.771542138264], [-79.9364195920563, 32.7715429393407], [-79.9364228358909, 32.7715437422209], [-79.9364285102978, 32.7715453364006], [-79.9364317541546, 32.771546137477], [-79.9364349979896, 32.7715469403569], [-79.9364406713295, 32.7715485345268], [-79.9364439173212, 32.7715493356214], [-79.9364471600891, 32.7715501384917], [-79.9364504039463, 32.7715509395676], [-79.9364560783541, 32.771552533746], [-79.9364593211459, 32.7715534222904], [-79.9364625650144, 32.7715542224643], [-79.9364682394226, 32.7715558166422], [-79.9364714822147, 32.7715567051862], [-79.9364747260834, 32.7715575053598], [-79.9364803994046, 32.7715591888092], [-79.9364836432734, 32.7715599889825], [-79.9364868860769, 32.7715608766245], [-79.9364925594096, 32.7715625591716], [-79.9364958032676, 32.7715633602464], [-79.9364990460932, 32.7715642460845], [-79.9365047194374, 32.7715659277293], [-79.9365079622632, 32.7715668135672], [-79.9365112050452, 32.7715677030119], [-79.9365168783897, 32.7715693846562], [-79.9365201212158, 32.7715702704937], [-79.9365257935173, 32.7715720378028], [-79.936529037387, 32.7715728379749], [-79.9365322801804, 32.7715737265173], [-79.9365379524714, 32.7715754947276], [-79.9365411952759, 32.771576382368], [-79.9365444391699, 32.7715772682142], [-79.9365501104049, 32.7715790355129], [-79.93655335431, 32.771579920457], [-79.9365590244581, 32.7715817770275], [-79.9365622683524, 32.7715826628731], [-79.9365655090118, 32.7715835513961], [-79.9365711824173, 32.7715854034851], [-79.9365744241772, 32.7715862893119], [-79.9365776669606, 32.7715871787549], [-79.9365833382319, 32.7715890308247], [-79.9365865810264, 32.7715899193657], [-79.9365922522981, 32.7715917714352], [-79.9365954940494, 32.7715927456411], [-79.9366011653215, 32.7715945977101], [-79.9366060284925, 32.7715960143825], [-79.9366133211406, 32.7715983125247], [-79.9366165639927, 32.7715992840341], [-79.9366222341983, 32.7716011360929], [-79.9366254770287, 32.7716021094056], [-79.9366311461474, 32.7716040507361], [-79.9366343889669, 32.7716050249503], [-79.9366376307282, 32.7716059107754], [-79.936643302037, 32.7716078476152], [-79.9366465437895, 32.7716088218198], [-79.9366522139874, 32.7716107622568], [-79.9366554557841, 32.7716117328542], [-79.9366611259714, 32.7716136741926], [-79.936664366703, 32.7716147322584], [-79.9366700368907, 32.7716166735964], [-79.9366732786878, 32.7716176441933], [-79.9366789478546, 32.7716196693926], [-79.9366821896079, 32.7716206435962], [-79.936687858808, 32.7716226660899], [-79.9366911005616, 32.7716236402932], [-79.9366967697292, 32.7716256654917], [-79.936700011483, 32.7716266396949], [-79.9367056806839, 32.7716286621877], [-79.9367089213616, 32.771629724761], [-79.936714590563, 32.7716317472534], [-79.9367178312849, 32.7716328062195], [-79.9367234993863, 32.7716348314075], [-79.9367267422431, 32.7716358903919], [-79.936732410334, 32.7716379164812], [-79.936736460191, 32.7716393260789], [-79.9367413191827, 32.7716410863084], [-79.9367469883416, 32.7716431124063], [-79.9367502291083, 32.7716441677646], [-79.9367558972024, 32.7716462813307], [-79.9367591379583, 32.7716473375905], [-79.9367648060528, 32.7716494511562], [-79.936768046809, 32.7716505074158], [-79.9367737138607, 32.7716527066463], [-79.9367793819889, 32.7716548175061], [-79.9367826227235, 32.7716558755688], [-79.9367882898089, 32.7716580720934], [-79.9367939568594, 32.7716601838449], [-79.9367971976185, 32.7716613275817], [-79.9368028636482, 32.7716635231946], [-79.9368061053958, 32.7716645857746], [-79.936811771426, 32.7716667813871], [-79.9368174395912, 32.7716689770178], [-79.9368206782052, 32.7716701216372], [-79.936826346327, 32.7716723208745], [-79.9368320134255, 32.7716745164953], [-79.9368352531072, 32.7716756611235], [-79.9368409202063, 32.7716778567439], [-79.9368465862295, 32.7716801407345], [-79.9368498259227, 32.7716812844606], [-79.9368554919793, 32.7716835657455], [-79.9368611580032, 32.7716858497353], [-79.9368668240604, 32.7716881310197], [-79.9368700637102, 32.7716892783522], [-79.9368757297679, 32.7716915596362], [-79.9368813947255, 32.7716938436159], [-79.9368870618511, 32.7716961249086], [-79.9368903004694, 32.7716973570041], [-79.9368959665281, 32.7716996382871], [-79.936901631522, 32.7717020070385], [-79.9369072965053, 32.7717043766915], [-79.9369105361892, 32.7717055213177], [-79.9369162011839, 32.7717078900684], [-79.936921866168, 32.7717102597207], [-79.9369275343035, 32.7717123705737], [-79.936930777139, 32.7717132564003], [-79.9369340230928, 32.7717138861331], [-79.9369372732189, 32.771714173205], [-79.9369405254639, 32.7717142862412], [-79.9369445962521, 32.77171388964], [-79.9369478589542, 32.7717133191765], [-79.9369511216381, 32.771712487181], [-79.9369543926797, 32.7717110564401], [-79.9369576637321, 32.7717096247973], [-79.9369609462906, 32.7717072481322], [-79.9369642330319, 32.7717045279045], [-79.9369658879086, 32.7717022227683], [-79.9369675438392, 32.7716998310653], [-79.9371167968665, 32.7714666231875], [-79.9372668916924, 32.7712309288828], [-79.9372685496667, 32.7712282801709], [-79.9372693964362, 32.7712255387371], [-79.9372702453157, 32.7712227116474], [-79.9372702798459, 32.7712198747772], [-79.9372703143323, 32.771217041514], [-79.9372695354794, 32.7712141155103], [-79.9372687556195, 32.7712113599446], [-79.9372679747168, 32.7712086900439], [-79.9372663805463, 32.7712060969483], [-79.9372647842218, 32.7712035931154], [-79.9372623714438, 32.7712013401139], [-79.9372591495416, 32.771198648104], [-79.9372559224312, 32.7711965593759], [-79.9372526900937, 32.7711948123973], [-79.9372470271976, 32.7711922732336], [-79.9372413622028, 32.7711898188239], [-79.9372357003747, 32.771187279669], [-79.9372324607141, 32.7711860466718], [-79.9372267988865, 32.7711835075164], [-79.9372211349602, 32.7711810531149], [-79.9372154699777, 32.7711785978023], [-79.9372098071084, 32.7711761443113], [-79.9372065674376, 32.7711749122152], [-79.9372009045797, 32.771172457822], [-79.9371952395874, 32.7711700034102], [-79.9371895767192, 32.7711675499183], [-79.937186337027, 32.7711663196251], [-79.9371806741703, 32.771163865231], [-79.937175010282, 32.7711614956002], [-79.9371717695449, 32.7711602634938], [-79.9371661056132, 32.7711578974696], [-79.9371604395909, 32.7711555278194], [-79.9371572020234, 32.7711542984458], [-79.9371515359907, 32.771151929697], [-79.937145872093, 32.7711495609666], [-79.9371426324021, 32.7711483306722], [-79.9371369674731, 32.7711460467048], [-79.9371313014414, 32.7711436779551], [-79.9371280638748, 32.7711424485806], [-79.9371223968117, 32.771140164594], [-79.9371167318592, 32.7711377949512], [-79.9371134921827, 32.7711366512322], [-79.9371078261548, 32.7711343699594], [-79.9371045865225, 32.7711332226332], [-79.937098921527, 32.7711308565965], [-79.9370948706449, 32.7711295326761], [-79.937090015868, 32.7711274279965], [-79.9370843509087, 32.7711251467318], [-79.9370811091228, 32.771124088668], [-79.9370754420623, 32.7711218046792], [-79.9370722034652, 32.7711206600667], [-79.9370665374724, 32.7711183760867], [-79.937060870415, 32.7711161795751], [-79.9370576307401, 32.7711150358547], [-79.9370519636831, 32.7711128393428], [-79.9370487240524, 32.7711116920151], [-79.9370430569739, 32.7711094973062], [-79.9370398173104, 32.7711083526836], [-79.9370341502873, 32.7711061534656], [-79.9370309095481, 32.7711050972131], [-79.9370252425145, 32.7711028988964], [-79.9370220028405, 32.7711017551751], [-79.9370163347533, 32.7710996434249], [-79.9370130950905, 32.7710984988016], [-79.9370074269818, 32.7710963888544], [-79.9370041862873, 32.7710953289943], [-79.9369985192549, 32.7710931306764], [-79.9369952785387, 32.7710920726195], [-79.9369896104528, 32.7710899608681], [-79.9369863697148, 32.7710889046145], [-79.9369807016513, 32.7710867910591], [-79.9369774609135, 32.7710857348053], [-79.9369717928504, 32.7710836212495], [-79.9369685521129, 32.7710825649954], [-79.9369653114413, 32.7710815033308], [-79.9369596433129, 32.7710793951849], [-79.9369564026305, 32.7710783344218], [-79.9369507324031, 32.7710763110297], [-79.9369474927774, 32.7710752511773], [-79.9369418246828, 32.7710731403254], [-79.9369385829359, 32.7710721670305], [-79.9369353422321, 32.7710711080702], [-79.936929673106, 32.7710690819813], [-79.9369264323914, 32.7710680239225], [-79.9369207632657, 32.7710659978331], [-79.9369175214864, 32.7710650272428], [-79.9369142807831, 32.771063968282], [-79.9369086106259, 32.7710620269555], [-79.9369053699118, 32.7710609688962], [-79.936899699722, 32.7710590302745], [-79.9368964590192, 32.7710579713132], [-79.9368932172734, 32.7710569980171], [-79.9368875481382, 32.7710549728279], [-79.9368843063596, 32.7710540022367], [-79.9368786362037, 32.7710520609088], [-79.9368753944582, 32.7710510876121], [-79.936872152691, 32.7710501161189], [-79.9368664825355, 32.7710481747904], [-79.9368632407795, 32.7710472023952], [-79.9368599990124, 32.7710462309017], [-79.9368543288466, 32.7710442904744], [-79.9368510871017, 32.7710433171771], [-79.9368454169033, 32.7710413794546], [-79.9368421751696, 32.7710404052553], [-79.9368389323929, 32.7710395167211], [-79.9368332621949, 32.7710375789981], [-79.9368300204615, 32.7710366047985], [-79.9368267776522, 32.7710357189692], [-79.9368211074767, 32.7710337794421], [-79.9368178646675, 32.7710328936127], [-79.9368146229345, 32.7710319194127], [-79.9368089516944, 32.7710300673537], [-79.9368057089184, 32.7710291788186], [-79.9368024671527, 32.7710282073236], [-79.9367992254442, 32.7710273187976], [-79.9367935531484, 32.7710254658269], [-79.9367903103618, 32.7710245781932], [-79.9367870696725, 32.7710235183273], [-79.9367813963472, 32.7710218375973], [-79.936778154593, 32.7710208651999], [-79.9367749107394, 32.7710199775565], [-79.9367692395361, 32.7710182102683], [-79.9367659956606, 32.7710173244282], [-79.9367627549961, 32.7710163502361], [-79.9367570816586, 32.7710145829289], [-79.936753839918, 32.771013697107], [-79.9367505971432, 32.7710128085704], [-79.9367473532682, 32.7710119227298], [-79.9367416820989, 32.7710101527352], [-79.936738438224, 32.7710092668943], [-79.9367351954517, 32.7710084658353], [-79.9367295221043, 32.7710066994286], [-79.9367262803973, 32.7710058109007], [-79.9367230375901, 32.7710049250687], [-79.9367197926833, 32.7710041239907], [-79.9367141215151, 32.7710023539948], [-79.9367108766085, 32.7710015529167], [-79.936707634869, 32.7710006670935], [-79.9367043920841, 32.7709997794575], [-79.9366987187509, 32.7709980996255], [-79.936695474934, 32.7709972967527], [-79.9366922310601, 32.7709964109106], [-79.9366889882886, 32.7709956098505], [-79.9366833139106, 32.770993928205], [-79.9366800722156, 32.7709930387741], [-79.936676828366, 32.7709922386061], [-79.9366735834602, 32.7709914375269], [-79.9366679101501, 32.77098975589], [-79.9366646663118, 32.7709889548199], [-79.9366614235628, 32.7709881519554], [-79.9366581796896, 32.7709872661124], [-79.9366525063822, 32.7709856719527], [-79.9366492614988, 32.7709848690695], [-79.9366460176608, 32.7709840679988], [-79.9366427748792, 32.7709832678391], [-79.9366370994706, 32.770981670955], [-79.9366338567002, 32.7709808698933], [-79.9366273679465, 32.7709792686436], [-79.9366241251982, 32.7709784657783], [-79.9366184497573, 32.7709768715984], [-79.9366152069872, 32.7709760705362], [-79.9366119610392, 32.7709753551206], [-79.9366087172239, 32.7709745522456], [-79.936605474454, 32.7709737511832], [-79.9365997979704, 32.7709722426676], [-79.9365965552006, 32.770971441605], [-79.9365933103183, 32.7709706387202], [-79.9365900665053, 32.7709699233226], [-79.9365868216011, 32.7709691222411], [-79.9365811461854, 32.770967613734], [-79.9365779023726, 32.770966898336], [-79.9365746564013, 32.770966097245], [-79.936571413656, 32.7709653818561], [-79.936568168774, 32.7709645789707], [-79.9365624934049, 32.7709631543337], [-79.9365592484902, 32.7709623541532], [-79.9365560036104, 32.7709616387454], [-79.9365527597981, 32.7709609233468], [-79.9365495138511, 32.7709602079295], [-79.936543839515, 32.7709586985282], [-79.9365405935682, 32.7709579831107], [-79.9365373486778, 32.7709572686041], [-79.9365341048658, 32.770956553205], [-79.9365308589192, 32.7709558377872], [-79.9365251835512, 32.7709544131485], [-79.9365219376047, 32.7709536977305], [-79.9365186927255, 32.7709529823217], [-79.9365154478465, 32.7709522669128], [-79.9365122029675, 32.7709515515038], [-79.9365089580886, 32.7709508360947], [-79.936503281632, 32.7709494132492], [-79.9365000367642, 32.7709486969381], [-79.9364967908419, 32.7709480671939], [-79.9364935459632, 32.7709473517844], [-79.9364903010845, 32.7709466363749], [-79.936487056206, 32.7709459209652], [-79.9364813797959, 32.7709445819896], [-79.9364781338501, 32.7709438665705], [-79.9364748878843, 32.7709432404326], [-79.936471643017, 32.7709425241209], [-79.9364683971062, 32.7709418934741], [-79.936465152228, 32.7709411780639], [-79.9364619073736, 32.770940548328], [-79.9364562288296, 32.7709392093327], [-79.9364529828751, 32.7709385822925], [-79.9364497379971, 32.7709378668819], [-79.9364464920866, 32.7709372362346], [-79.9364432461652, 32.770936606489], [-79.9364400012874, 32.7709358910781], [-79.9364367553771, 32.7709352604305], [-79.9364310768246, 32.7709340098137], [-79.936427831947, 32.7709332944025], [-79.9364245860259, 32.7709326646564], [-79.9364213401158, 32.7709320340084], [-79.9364180952291, 32.7709314069766], [-79.9364148482518, 32.7709307763192], [-79.9364116023309, 32.7709301465727], [-79.9364059238121, 32.7709288932495], [-79.9364026778583, 32.770928266208], [-79.9363994319376, 32.7709276364612], [-79.9363961860389, 32.7709270049109], [-79.9363929401182, 32.7709263751639], [-79.9363896941756, 32.7709257472203], [-79.9363864461442, 32.7709252031291], [-79.9363807686714, 32.7709239516174], [-79.9363775227509, 32.7709233218701], [-79.936374275765, 32.7709227795913], [-79.9363710298447, 32.7709221498437], [-79.9363677839353, 32.7709215191943], [-79.9363645369825, 32.77092097421], [-79.9363612910293, 32.7709203471674], [-79.9363580440875, 32.7709198012812], [-79.9363547992348, 32.7709191715425], [-79.9363491185736, 32.7709180065778], [-79.936345871599, 32.7709174633965], [-79.936342625679, 32.7709168336482], [-79.9363393786936, 32.7709162913685], [-79.9363361327737, 32.77091566162], [-79.9363328858323, 32.7709151157331], [-79.9363296388469, 32.7709145734531], [-79.9363263929272, 32.7709139437044], [-79.9363207123014, 32.7709128635111], [-79.9363174653491, 32.7709123185255], [-79.936314218364, 32.7709117762451], [-79.9363109724555, 32.7709111455942], [-79.9363044785073, 32.7709100592295], [-79.9363012315333, 32.770909516047], [-79.9362979845813, 32.770908971061], [-79.9362947386527, 32.7709084296911], [-79.9362914895772, 32.7709078837845], [-79.9362858100195, 32.7709068035989], [-79.9362825630348, 32.7709062613176], [-79.936279313972, 32.770905801987], [-79.9362760680547, 32.7709052597148], [-79.93627282107, 32.7709047174333], [-79.936269573051, 32.7709041724372], [-79.9362663271338, 32.7709036301648], [-79.9362630791496, 32.7709031699413], [-79.936259832165, 32.7709026276594], [-79.9362565852026, 32.770902083574], [-79.9362509035457, 32.7709010881409], [-79.9362476565613, 32.7709005458587], [-79.9362444085443, 32.7709000883399], [-79.9362411615931, 32.7708995433523], [-79.9362379135651, 32.770899086735], [-79.9362346666139, 32.7708985417473], [-79.9362314196534, 32.7708980851391], [-79.9362281695019, 32.7708976276013], [-79.9360267665137, 32.7708713956542], [-79.936023518499, 32.7708709381295], [-79.9360202715845, 32.7708704779089], [-79.9360170214585, 32.7708701060399], [-79.9360113397969, 32.7708691989753], [-79.936008089671, 32.770868827106], [-79.9360048405781, 32.7708683704733], [-79.9360015936872, 32.7708679959266], [-79.9359959088582, 32.7708671736061], [-79.9359926608671, 32.7708668017551], [-79.9359894117744, 32.7708663451219], [-79.935986162716, 32.7708659732614], [-79.9359829136687, 32.7708656004991], [-79.935978853365, 32.7708650520369], [-79.9359739808381, 32.770864407228], [-79.9359707328459, 32.7708639478984], [-79.9359674837547, 32.7708635787426], [-79.9359642347405, 32.7708632032745], [-79.9359585499355, 32.7708624666268], [-79.9359553008664, 32.7708620956672], [-79.9359520528524, 32.7708616381406], [-79.9359488037943, 32.7708612662791], [-79.9359455547363, 32.7708608944175], [-79.9359398699317, 32.7708601577689], [-79.9359366208737, 32.7708597859071], [-79.9359333718158, 32.7708594140452], [-79.935930122758, 32.7708590421832], [-79.9359244379536, 32.7708583055339], [-79.9359211888958, 32.7708579336716], [-79.9359179388049, 32.7708576465727], [-79.9359146908036, 32.7708572756213], [-79.9359114406455, 32.7708569064548], [-79.9359057558414, 32.7708561698046], [-79.9359025057507, 32.7708558827053], [-79.9358992566932, 32.7708555108424], [-79.9358960076246, 32.7708551398813], [-79.935892758578, 32.7708547671166], [-79.9358870727301, 32.7708541161307], [-79.9358838226396, 32.7708538290309], [-79.9358805735821, 32.7708534571676], [-79.9358773245247, 32.7708530853042], [-79.9358740743902, 32.7708528018111], [-79.9358708253658, 32.7708524272423], [-79.9358651394963, 32.7708517780588], [-79.9358618893949, 32.7708514918602], [-79.9358586403376, 32.7708511199963], [-79.9358553902473, 32.7708508328957], [-79.935852140113, 32.770850549402], [-79.9358464542767, 32.7708498975126], [-79.9358432052195, 32.7708495256482], [-79.9358399551293, 32.7708492385473], [-79.9358367050171, 32.7708489532497], [-79.935833454894, 32.7708486688537], [-79.9358277690578, 32.7708480169634], [-79.9358245189678, 32.770847729862], [-79.9358212688776, 32.7708474427605], [-79.9358180187326, 32.7708471601677], [-79.9358147686425, 32.770846873066], [-79.9358090827957, 32.7708462220765], [-79.9358058327167, 32.770845934073], [-79.9358025825718, 32.7708456514797], [-79.9357993324818, 32.7708453643776], [-79.9357960823919, 32.7708450772755], [-79.9357928322909, 32.770844791075], [-79.9357871453783, 32.7708442275532], [-79.9357838952775, 32.7708439413524], [-79.9357806441105, 32.7708437426202], [-79.9357773940207, 32.7708434555176], [-79.9357741439199, 32.7708431693167], [-79.9357684570514, 32.770842602187], [-79.9357652058735, 32.7708424043561], [-79.9357619557838, 32.7708421172531], [-79.9357587056942, 32.77084183015], [-79.9357554555605, 32.7708415466537], [-79.9357522044266, 32.7708413452156], [-79.9357465164472, 32.7708407816825], [-79.9357432663807, 32.7708405802535], [-79.9357400162471, 32.7708402967567], [-79.9357367651134, 32.7708400953183], [-79.9357335150238, 32.7708398082144], [-79.9357302638571, 32.7708396094809], [-79.9357245748666, 32.7708391289069], [-79.9357213258115, 32.7708388445172], [-79.9357180746779, 32.7708386430781], [-79.9357148245885, 32.7708383559739], [-79.9357115734108, 32.7708381581416], [-79.9357058854659, 32.7708376793794], [-79.9357026343323, 32.7708374779399], [-79.9356993831657, 32.7708372792056], [-79.9356961330654, 32.7708369930026], [-79.935692881899, 32.7708367942681], [-79.9356896307764, 32.7708365919265], [-79.9356839407091, 32.7708361997209], [-79.9356806916872, 32.770835912625], [-79.9356774405208, 32.7708357138901], [-79.93567418832, 32.7708355124406], [-79.9356709382209, 32.7708353137148], [-79.9356676870875, 32.7708351122744], [-79.9356619980987, 32.7708347191754], [-79.9356587469323, 32.7708345204399], [-79.9356554947316, 32.77083431899], [-79.9356522446216, 32.7708341211654], [-79.9356489934883, 32.7708339197245], [-79.9356457412656, 32.7708337200778], [-79.9356400533444, 32.7708333269869], [-79.9356368001104, 32.7708332102999], [-79.9356335500006, 32.7708330124749], [-79.935630297767, 32.7708328137294], [-79.9356270477011, 32.7708326122972], [-79.9356237965789, 32.770832409954], [-79.9356181054458, 32.7708321052139], [-79.93561485538, 32.7708319037814], [-79.9356116021022, 32.7708317907006], [-79.9356083520033, 32.7708315919731], [-79.9356051008812, 32.7708313896294], [-79.9356018476034, 32.7708312765483], [-79.9355961586382, 32.7708309691207], [-79.9355929064047, 32.7708307703742], [-79.9355896553166, 32.7708306528027], [-79.9355864041396, 32.7708304549671], [-79.9355831508949, 32.7708303391804], [-79.9355799007962, 32.7708301404522], [-79.93557420863, 32.7708299204735], [-79.9355709585644, 32.7708297190399], [-79.935567706365, 32.7708296050655], [-79.9355644530974, 32.7708294036038], [-79.9355612030217, 32.7708292905496], [-79.9355579497551, 32.7708291765656], [-79.9355522607901, 32.7708288691358], [-79.9355490075234, 32.7708287551517], [-79.9355457553572, 32.7708286384715], [-79.9355425042142, 32.7708285254075], [-79.9355392509366, 32.7708284123247], [-79.9355359987374, 32.7708282983495], [-79.9355303087052, 32.7708279909094], [-79.935527056506, 32.770827876934], [-79.9355238054071, 32.7708277602625], [-79.9355205521295, 32.7708276471793], [-79.9355172999303, 32.7708275332036], [-79.9355140487875, 32.7708274201387], [-79.9355083556102, 32.770827283117], [-79.9355051044784, 32.7708271691502], [-79.9355018512009, 32.7708270560665], [-79.9354985990017, 32.7708269420903], [-79.9354953468355, 32.7708268254088], [-79.9354920946254, 32.7708267123341], [-79.935487212672, 32.7708269286753], [-79.9354839521053, 32.7708274134438], [-79.9354806894065, 32.7708281606275], [-79.9354774204738, 32.7708294190968], [-79.9354741494082, 32.7708308525033], [-79.9354708742094, 32.7708327124414], [-79.935467588465, 32.7708352621908], [-79.9354651213205, 32.7708374727598], [-79.9354634664096, 32.7708397787772], [-79.9354618083541, 32.7708423426917], [-79.9354601513989, 32.7708449039103], [-79.9354593035089, 32.7708476453222], [-79.9354592689639, 32.7708504785848], [-79.9354584210968, 32.770853305671], [-79.9354583865188, 32.7708561416389], [-79.9355038693974, 32.7713953870477], [-79.9355046481699, 32.7713982273882], [-79.9355054279758, 32.7714009829653], [-79.9355070242544, 32.7714035742991], [-79.9355086194656, 32.7714061656235], [-79.935510216754, 32.7714084990414], [-79.9355126263482, 32.7714110099749], [-79.9355158534376, 32.7714132728033], [-79.9355190815368, 32.7714152777157], [-79.9355223159696, 32.7714168507044], [-79.9355255577364, 32.7714179097114], [-79.9355287994794, 32.7714187955659], [-79.935532047479, 32.771419255809], [-79.9355352987008, 32.7714195393205], [-79.9355385508992, 32.7714195676213], [-79.9355418030984, 32.7714196834], [-79.935545056387, 32.7714197973843], [-79.935548307552, 32.7714199104483], [-79.9355515597403, 32.7714200271284], [-79.9355548140734, 32.7714200554474], [-79.9355580652384, 32.7714201685111]]], "type": "Polygon"}, "id": "214", "properties": {"OBJECTID": 2341, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14730.4375, "Shape__Length": 528.743032258128, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9363854710023, 32.771530045692, -79.9355181376957, 32.7717897968549], "geometry": {"coordinates": [[[-79.9355494050239, 32.771530045692], [-79.9355461486098, 32.7715302752794], [-79.9355428901409, 32.7715307609699], [-79.9355396253156, 32.7715315929093], [-79.9355363584463, 32.7715326800499], [-79.9355330863667, 32.7715342820925], [-79.9355298079307, 32.7715362303841], [-79.9355265274515, 32.7715385213549], [-79.9355248736063, 32.7715407390029], [-79.9355224042987, 32.7715430379343], [-79.9355207462315, 32.7715456018499], [-79.9355199015149, 32.7715481701378], [-79.9355190546874, 32.7715509115596], [-79.9355182068264, 32.7715537377448], [-79.935518172239, 32.7715565746146], [-79.9355181376957, 32.7715594078774], [-79.9355351619158, 32.7717642552831], [-79.9355359406706, 32.771767097427], [-79.9355367194474, 32.7717699377675], [-79.9355375002911, 32.771772608581], [-79.9355390965664, 32.7717752008162], [-79.9355406939182, 32.7717776172031], [-79.935543104534, 32.7717799576981], [-79.9355455120176, 32.7717826426666], [-79.9355487412434, 32.7717847314586], [-79.9355519725012, 32.771786478473], [-79.935555211137, 32.7717877078985], [-79.9355584539514, 32.7717886821412], [-79.9355616988418, 32.7717893109994], [-79.9355649468883, 32.7717897685364], [-79.9355682012351, 32.7717897968549], [-79.9355722698783, 32.7717895770401], [-79.9356708208703, 32.7717790074214], [-79.9358548907993, 32.7717593905033], [-79.9360161562494, 32.7717420685273], [-79.9363525322584, 32.7717060824547], [-79.9363557928623, 32.7717055092834], [-79.936359056586, 32.7717046800181], [-79.9363623234954, 32.7717035892485], [-79.9363655955899, 32.7717020728581], [-79.9363688687498, 32.771700468999], [-79.9363721481821, 32.771698350247], [-79.9363746122081, 32.7716963957533], [-79.9363770825156, 32.771693837987], [-79.9363795580556, 32.771691025949], [-79.9363812212853, 32.771688036401], [-79.9363828803734, 32.7716853868086], [-79.9363837271751, 32.7716826453808], [-79.9363845813038, 32.7716793024933], [-79.936385429149, 32.7716764754003], [-79.9363854710023, 32.7716730397757], [-79.9363846921988, 32.7716701994407], [-79.9363847340961, 32.7716667602091], [-79.9363839542161, 32.7716640082445], [-79.9363823600287, 32.7716613303645], [-79.9363807658304, 32.7716586533861], [-79.936379174752, 32.771655720314], [-79.9363767683228, 32.7716529469916], [-79.9363743597297, 32.7716503513117], [-79.9363711295022, 32.7716484311759], [-79.9363679013401, 32.7716463415132], [-79.9363646700254, 32.7716445106495], [-79.9363614313836, 32.7716432812453], [-79.9363581906656, 32.7716422222698], [-79.9363541366291, 32.771641156222], [-79.9363484611738, 32.771639647704], [-79.9363452162817, 32.7716389313888], [-79.9363395408595, 32.7716374201651], [-79.9363362959566, 32.7716367047514], [-79.9363330520972, 32.7716359036724], [-79.9363273756099, 32.7716344799169], [-79.9363241307071, 32.7716337645028], [-79.9363184542201, 32.7716323407469], [-79.9363152093065, 32.7716316262343], [-79.9363119644038, 32.77163091082], [-79.9363062889609, 32.7716294013983], [-79.9363030430258, 32.7716287707471], [-79.9362973665394, 32.7716273469902], [-79.9362941216371, 32.7716266315754], [-79.9362908767349, 32.7716259161604], [-79.936285200249, 32.771624492403], [-79.9362819543032, 32.771623862653], [-79.9362787094011, 32.7716231472377], [-79.9362730329156, 32.7716217234796], [-79.9362697869809, 32.7716210928276], [-79.9362665420791, 32.7716203774121], [-79.9362608634499, 32.7716190420145], [-79.9362576185718, 32.7716184122732], [-79.9362543736702, 32.7716176968573], [-79.9362486961526, 32.7716163578615], [-79.9362454502184, 32.7716157272089], [-79.9362397726572, 32.7716143918197], [-79.9362365267121, 32.7716137620685], [-79.9362332807544, 32.771613045741], [-79.9362276032611, 32.7716117924187], [-79.9362243562159, 32.7716111653632], [-79.9362211113148, 32.7716104499464], [-79.9362154327545, 32.7716091966143], [-79.9362121878881, 32.77160856597], [-79.9362089419105, 32.7716079389233], [-79.9362032633505, 32.7716066855906], [-79.936200017384, 32.771606057642], [-79.9361967703722, 32.7716054278805], [-79.9361935255061, 32.7716047972357], [-79.9361878469135, 32.7716035466075], [-79.9361846009692, 32.7716029168549], [-79.9361813539922, 32.7716023718658], [-79.936175675389, 32.7716011221387], [-79.9361724294669, 32.7716004905824], [-79.9361691814226, 32.7715999455836], [-79.9361635038871, 32.7715986958653], [-79.936160255821, 32.7715981526698], [-79.9361570109445, 32.7715975229257], [-79.9361513302418, 32.7715963579517], [-79.9361480843435, 32.7715958120692], [-79.9361448373324, 32.7715951823063], [-79.9361415903229, 32.7715946400213], [-79.9361359107319, 32.7715934714489], [-79.9361326647554, 32.7715928444002], [-79.9361294188574, 32.7715922985172], [-79.9361237371116, 32.771591219207], [-79.9361204922465, 32.7715905885604], [-79.936117244159, 32.7715900471671], [-79.9361115645702, 32.7715889660715], [-79.9361083164828, 32.7715884246781], [-79.9361050695177, 32.7715878787852], [-79.9361018236091, 32.7715873338031], [-79.9360961418419, 32.7715862562952], [-79.9360928959334, 32.771585711313], [-79.9360896478463, 32.771585169919], [-79.9360864019488, 32.7715846240349], [-79.936080720215, 32.771583543821], [-79.9360774732063, 32.7715830015342], [-79.9360742272981, 32.7715824565515], [-79.9360685445206, 32.7715814620023], [-79.9360652985795, 32.7715809197245], [-79.9360620505476, 32.7715803738211], [-79.9360588035626, 32.7715799172083], [-79.9360531207856, 32.7715789226584], [-79.9360498748446, 32.7715783803802], [-79.936046626802, 32.7715778353781], [-79.9360433787608, 32.771577377854], [-79.9360376970624, 32.7715763824108], [-79.9360344490104, 32.7715759257882], [-79.9360312031136, 32.7715753799025], [-79.9360279539833, 32.7715749241721], [-79.9360222733636, 32.7715739278358], [-79.9360190242334, 32.7715734721051], [-79.9360157761925, 32.7715730145802], [-79.936012530241, 32.7715724732028], [-79.936006846443, 32.7715715625124], [-79.9360035994586, 32.7715711058981], [-79.9360003503835, 32.7715706456583], [-79.9359971023319, 32.7715701890346], [-79.9359938553586, 32.7715697315184], [-79.93598817155, 32.7715688217289], [-79.9359849245658, 32.7715683651141], [-79.935981675458, 32.771567907579], [-79.9359759937513, 32.7715670005127], [-79.9359727446656, 32.7715665411739], [-79.9359694955812, 32.7715661693129], [-79.9359662486082, 32.7715657117959], [-79.9359605648001, 32.7715648020051], [-79.9359573167503, 32.7715644328583], [-79.9359540676647, 32.771563973519], [-79.9359508196245, 32.7715635159923], [-79.9359475705404, 32.7715631441308], [-79.935941886723, 32.7715623227188], [-79.935938638716, 32.7715618624866], [-79.9359353895989, 32.7715614933299], [-79.9359321415809, 32.7715610339993], [-79.9359264577748, 32.7715602116848], [-79.935923208691, 32.7715598398226], [-79.9359199596071, 32.7715594679603], [-79.9359167115563, 32.7715590113345], [-79.9359134624834, 32.7715586385703], [-79.9359077776336, 32.7715579019201], [-79.9359045306503, 32.7715574453033], [-79.9359012805321, 32.771557070726], [-79.9358980314155, 32.7715567015683], [-79.9358923465989, 32.7715559622122], [-79.9358890974823, 32.7715555930543], [-79.9358858484317, 32.7715552184859], [-79.9358825993151, 32.7715548493278], [-79.9358793502646, 32.7715544747593], [-79.9358736654153, 32.7715537381075], [-79.9358704162989, 32.7715533689491], [-79.9358671672485, 32.7715529943802], [-79.935863917088, 32.7715527108868], [-79.9358606680046, 32.7715523390229], [-79.9358549831556, 32.7715516023703], [-79.9358517330392, 32.7715513152696], [-79.935848483956, 32.7715509434054], [-79.9358452348727, 32.7715505715412], [-79.9358395479125, 32.7715499205437], [-79.9358362988635, 32.7715496334519], [-79.9358330497474, 32.7715492642926], [-79.9358297996202, 32.771548978093], [-79.9358265505372, 32.7715486062282], [-79.9358233004209, 32.7715483191268], [-79.9358176145284, 32.7715476681377], [-79.9358143643793, 32.7715473837412], [-79.9358111153293, 32.7715470091708], [-79.9358078651692, 32.7715467256759], [-79.9358021792879, 32.7715460737843], [-79.9357989291609, 32.771545787584], [-79.9357956790449, 32.7715455004818], [-79.9357924288849, 32.7715452169865], [-79.9357891787689, 32.7715449298842], [-79.9357834918107, 32.7715443663621], [-79.9357802416728, 32.7715440810629], [-79.9357769915679, 32.7715437930585], [-79.9357737414411, 32.7715435068575], [-79.9357704912923, 32.7715432224599], [-79.9357672411655, 32.7715429362587], [-79.9357615542515, 32.7715423691286], [-79.9357583041247, 32.7715420829272], [-79.9357550529318, 32.7715418841944], [-79.9357518028051, 32.7715415979928], [-79.9357485526894, 32.7715413108894], [-79.9357428646985, 32.7715408321289], [-79.9357396145718, 32.7715405459269], [-79.935736363379, 32.7715403471936], [-79.9357331132524, 32.7715400609915], [-79.9357298620596, 32.771539862258], [-79.9357241741018, 32.7715393807913], [-79.9357209239424, 32.7715390972941], [-79.9357176738609, 32.7715388949626], [-79.9357144215998, 32.7715386087415], [-79.9357111704071, 32.7715384100074], [-79.9357079202817, 32.7715382112826], [-79.9357022312459, 32.7715377307074], [-79.9356989811206, 32.7715375319823], [-79.9356957309942, 32.7715372457793], [-79.9356924787783, 32.7715370434285], [-79.935689228653, 32.7715368447032], [-79.9356835385401, 32.7715364524975], [-79.9356802884588, 32.771536250165], [-79.9356770372663, 32.7715360514301], [-79.9356737850065, 32.7715358526858], [-79.9356705349143, 32.7715356512547], [-79.9356672837548, 32.7715354498144], [-79.9356615946764, 32.7715350603222], [-79.9356583435169, 32.7715348588815], [-79.9356550923355, 32.7715346592442], [-79.9356518401428, 32.7715345425669], [-79.9356485878721, 32.7715343447237], [-79.9356428999052, 32.7715339516329], [-79.9356396466121, 32.7715338376512], [-79.9356363965201, 32.7715336362192], [-79.9356331453607, 32.7715334347779], [-79.9356298920568, 32.7715333216976], [-79.9356266419318, 32.7715331229706], [-79.9356209518644, 32.771532814633], [-79.9356176996388, 32.7715327006599], [-79.9356144484685, 32.7715325001199], [-79.9356111951756, 32.7715323861373], [-79.9356079450507, 32.7715321874099], [-79.9356046928471, 32.771532071633], [-79.9355990027799, 32.7715317632943], [-79.9355957505433, 32.7715316502224], [-79.9355924972615, 32.7715315353377], [-79.9355892450139, 32.7715314231673], [-79.9355859938548, 32.7715312217247], [-79.9355827416293, 32.7715311077507], [-79.9355770505178, 32.7715308850763], [-79.9355737982923, 32.771530771102], [-79.9355705471232, 32.7715306580387], [-79.9355672938194, 32.7715305449568], [-79.9355640415939, 32.7715304309822], [-79.9355583504825, 32.7715302083069], [-79.9355550982461, 32.7715300952339], [-79.9355494050239, 32.771530045692]]], "type": "Polygon"}, "id": "215", "properties": {"OBJECTID": 2342, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2215.38671875, "Shape__Length": 229.718940268879, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9379136066156, 32.7739099039219, -79.9374125128809, 32.7742094913486], "geometry": {"coordinates": [[[-79.93770617283, 32.7742040635453], [-79.9377140265073, 32.7742094913486], [-79.9377290866394, 32.7741943161963], [-79.937752834841, 32.7741703866263], [-79.9378092862242, 32.7741135030169], [-79.9379136066156, 32.7740083855537], [-79.9378986012436, 32.7739099039219], [-79.9378833759565, 32.7739116349171], [-79.9377636227223, 32.7739264006353], [-79.937699266433, 32.7739342612996], [-79.937634910165, 32.7739421192248], [-79.9375705528182, 32.773949977107], [-79.9374125128809, 32.7739693078123], [-79.9374125547092, 32.7739697302341], [-79.9374275528924, 32.7739678909081], [-79.9374311711603, 32.7740047721928], [-79.9376174297418, 32.774139791999], [-79.93770617283, 32.7742040635453]]], "type": "Polygon"}, "id": "216", "properties": {"OBJECTID": 2343, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1201.888671875, "Shape__Length": 150.691320645164, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.955081179798, 32.7770671912145, -79.9491811528202, 32.7806279686908], "geometry": {"coordinates": [[[-79.9542845834576, 32.7806279686908], [-79.9543183558595, 32.7805929514873], [-79.9536702660034, 32.780164010106], [-79.9536834388879, 32.7801508081016], [-79.9543307184162, 32.7805795720401], [-79.9547005921958, 32.7801938623815], [-79.9542423221363, 32.7798776156316], [-79.9542678286204, 32.7798535220393], [-79.9547244852334, 32.7801687259154], [-79.9548950048466, 32.7799909091069], [-79.9541857458741, 32.7795074181434], [-79.9542096326738, 32.7794827100975], [-79.9549188915347, 32.7799662045282], [-79.955081179798, 32.7797964778424], [-79.9530089540149, 32.7783961171251], [-79.953034493346, 32.778369277091], [-79.9533023924193, 32.778550498727], [-79.9535026352171, 32.7783360883903], [-79.9525931223709, 32.7777306153677], [-79.9523953507776, 32.7779422965828], [-79.9526527484985, 32.7781171583762], [-79.9526147775976, 32.778163133413], [-79.952200786287, 32.7778867700572], [-79.9522246886376, 32.7778607765209], [-79.9510571416381, 32.7770671912145], [-79.9506632281326, 32.7774900465097], [-79.9502182172285, 32.7779676110435], [-79.9506538222205, 32.778272599572], [-79.9507482022905, 32.7783387785196], [-79.9508800949802, 32.7781941391118], [-79.9509502852804, 32.7782425003446], [-79.9508958775435, 32.7783023366744], [-79.9508708670983, 32.7782852010826], [-79.9507933780019, 32.7783702630115], [-79.9514290446161, 32.7788153499132], [-79.9514142334405, 32.778829396177], [-79.9508261187134, 32.7784211384832], [-79.9506498898581, 32.7785997601096], [-79.9506416558736, 32.7786080215212], [-79.9506497236471, 32.7786135883032], [-79.9514444435942, 32.779158737823], [-79.9516710518809, 32.7789170676115], [-79.9516944637769, 32.7789319554978], [-79.9514686730327, 32.7791732891614], [-79.9514759327258, 32.7791785044618], [-79.9514676904797, 32.7791874557613], [-79.9513038671044, 32.7790781615439], [-79.9513007043421, 32.7790705752616], [-79.9508472306643, 32.7787628574775], [-79.9506495440286, 32.7786285319501], [-79.9506269519767, 32.7786131350459], [-79.9506500116956, 32.7785896236424], [-79.9508204746282, 32.7784170516663], [-79.950653461924, 32.7783025752353], [-79.950593760013, 32.7782614327988], [-79.9504274630073, 32.7784258804084], [-79.9504078571219, 32.7784326689406], [-79.950095065467, 32.7787381928402], [-79.9496884266937, 32.7784596528852], [-79.9495105552633, 32.7786393725539], [-79.9491811528202, 32.7789728427399], [-79.9494259980099, 32.7791089500476], [-79.9496231711677, 32.7792181886493], [-79.949860185468, 32.7793290594644], [-79.950028256277, 32.7794232737425], [-79.9504143543833, 32.7796515565872], [-79.9506357470485, 32.7797763785016], [-79.9506866502585, 32.7798051642735], [-79.9510066156102, 32.779986062874], [-79.951191624758, 32.7800924467329], [-79.9513089268234, 32.7801467958004], [-79.9514604031432, 32.7802004943492], [-79.9516158765493, 32.7802601538145], [-79.9517342885119, 32.7802898576516], [-79.952155647496, 32.780359866763], [-79.9527077319439, 32.7804504091788], [-79.952761307241, 32.7804599745305], [-79.9525385591986, 32.7803121228793], [-79.9524550806381, 32.780218378537], [-79.9524514681443, 32.7801804660803], [-79.952472498793, 32.7801226636686], [-79.9525434091732, 32.7799756109074], [-79.9526654407214, 32.7798393010314], [-79.9526877074163, 32.7798140653621], [-79.952712448285, 32.7797860164069], [-79.9529408252067, 32.779939240345], [-79.9536469627834, 32.779189707048], [-79.9536760101269, 32.7792095406107], [-79.9529698777762, 32.77995864575], [-79.9532458939917, 32.7801417379338], [-79.9539487378946, 32.7793954402434], [-79.9539786070004, 32.7794145935632], [-79.9532757570035, 32.7801614081243], [-79.9538568449873, 32.7805470010976], [-79.953879909469, 32.780523061655], [-79.9539178306306, 32.7805490674353], [-79.9538997083325, 32.7805679835468], [-79.9541447736921, 32.7806186976134], [-79.9541933242388, 32.7805723832564], [-79.9542845834576, 32.7806279686908]]], "type": "Polygon"}, "id": "217", "properties": {"OBJECTID": 2411, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 144295.259765625, "Shape__Length": 3889.63109483716, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.958214296463, 32.7810955576488, -79.9546820065898, 32.7839558231214], "geometry": {"coordinates": [[[-79.9569846562403, 32.7839555819493], [-79.956988723415, 32.7839556166239], [-79.9569927905897, 32.7839556512983], [-79.9569976711993, 32.7839556929075], [-79.957001738374, 32.7839557275817], [-79.9570058055486, 32.7839557622557], [-79.9570098727234, 32.7839557969296], [-79.9570147543457, 32.7839557537744], [-79.9570188215204, 32.7839557884479], [-79.9570228886951, 32.7839558231214], [-79.9570277703175, 32.7839557799656], [-79.957031838548, 32.7839557262681], [-79.9570359057227, 32.7839557609412], [-79.9570399739101, 32.7839557108503], [-79.9570448555432, 32.7839556667922], [-79.9570489237306, 32.783955616701], [-79.9570529919179, 32.7839555666097], [-79.9570578735834, 32.7839555198458], [-79.9570619427942, 32.7839553840888], [-79.9570660110246, 32.7839553303901], [-79.957070079212, 32.7839552802983], [-79.9570749618685, 32.7839551505734], [-79.9570790300558, 32.7839551004813], [-79.9570830992882, 32.7839549629201], [-79.9570879819769, 32.7839548304894], [-79.9570920511877, 32.7839546947314], [-79.9570961203984, 32.7839545589733], [-79.9571001906982, 32.7839544214205], [-79.9571050723194, 32.7839542889801], [-79.9571091415301, 32.7839541532216], [-79.9571132107408, 32.7839540174628], [-79.9571180944313, 32.783953801169], [-79.9571221636743, 32.7839536627048], [-79.9571262339406, 32.7839534385749], [-79.9571303020837, 32.7839533028065], [-79.9571351879199, 32.7839530856285], [-79.9571392571079, 32.7839528623908], [-79.9571433273311, 32.7839526418673], [-79.9571473975974, 32.7839524177368], [-79.9571522812877, 32.7839522014416], [-79.9571563515108, 32.7839519809177], [-79.9571604217877, 32.783951755885], [-79.9571653064906, 32.7839514548256], [-79.957169376746, 32.783951231596], [-79.957173447012, 32.7839510074646], [-79.9571775182906, 32.7839506985693], [-79.9571824030042, 32.7839503966074], [-79.9571864732702, 32.7839501724755], [-79.9571905455732, 32.7839498671959], [-79.9571946158273, 32.783949554684], [-79.9571995015651, 32.7839492563375], [-79.9572035718191, 32.7839489438253], [-79.9572076430653, 32.7839486376342], [-79.9572117153885, 32.7839482412688], [-79.9572166001018, 32.7839479393056], [-79.9572206724034, 32.7839475447434], [-79.9572247436709, 32.7839472367483], [-79.9572288159725, 32.7839468421858], [-79.9572337006856, 32.7839465402219], [-79.9572377730194, 32.7839461429539], [-79.9572418452994, 32.7839457501945], [-79.957245918679, 32.7839453547388], [-79.9572508033477, 32.7839449670996], [-79.9572548767058, 32.7839445734472], [-79.9572589490286, 32.7839441770802], [-79.9572630223424, 32.7839436977528], [-79.9572679070433, 32.7839433074078], [-79.9572719814244, 32.7839428280892], [-79.9572760526473, 32.7839424344178], [-79.9572801270714, 32.783941951492], [-79.9572850117183, 32.7839415656551], [-79.9572890850425, 32.7839410854251], [-79.9572931583883, 32.7839406033915], [-79.9572972316909, 32.7839401249648], [-79.9573021184713, 32.7839396498637], [-79.9573061918277, 32.783939166928], [-79.9573102672209, 32.7839386028444], [-79.9573143394989, 32.783938120801], [-79.9573184138795, 32.783937641481], [-79.9573233006047, 32.7839370816062], [-79.9573273750283, 32.7839365986789], [-79.9573314482863, 32.7839360345764], [-79.9573355237222, 32.783935466885], [-79.957340410447, 32.7839349070096], [-79.9573444858937, 32.7839343384163], [-79.9573485591406, 32.7839337752149], [-79.9573526334981, 32.7839332084157], [-79.9573567089337, 32.7839326407236], [-79.9573615967366, 32.7839320799548], [-79.9573656721171, 32.7839314274895], [-79.957369746442, 32.7839308633949], [-79.9573738207992, 32.7839302965949], [-79.9573778951119, 32.7839296441202], [-79.9573827850052, 32.7839289976941], [-79.9573868593178, 32.783928345219], [-79.9573909347422, 32.7839277784276], [-79.9573950090547, 32.7839271259524], [-79.9573990855022, 32.7839264734951], [-79.9574039732493, 32.7839258279517], [-79.9574080507198, 32.7839250898287], [-79.9574121260888, 32.7839244382638], [-79.9574162004117, 32.783923784886], [-79.957420277882, 32.7839230467626], [-79.9574251666855, 32.7839224021292], [-79.9574292430773, 32.7839216648982], [-79.9574333195229, 32.7839209231584], [-79.9574373948915, 32.7839202715925], [-79.9574414702157, 32.7839195343519], [-79.9574455476855, 32.7839187962277], [-79.9574504364872, 32.7839180623117], [-79.9574545139568, 32.7839173241872], [-79.9574585903037, 32.7839165012806], [-79.9574626677948, 32.7839157613523], [-79.957466744186, 32.7839150241201], [-79.9574708216002, 32.7839142012222], [-79.9574748980343, 32.7839134603826], [-79.957479788883, 32.7839126444161], [-79.9574838662969, 32.7839118215177], [-79.957487943743, 32.783910995914], [-79.9574920201339, 32.7839102586809], [-79.9574960975906, 32.7839094321752], [-79.9575001750043, 32.7839086092763], [-79.9575042534624, 32.7839076989083], [-79.9575091443104, 32.7839068829406], [-79.9575132206886, 32.783906057327], [-79.9575172991694, 32.7839052344366], [-79.957521377638, 32.7839043231664], [-79.9575254550834, 32.7839034975614], [-79.957529533541, 32.7839025871926], [-79.9575336119662, 32.7839016795288], [-79.9575376904237, 32.7839007691598], [-79.9575417689026, 32.783899856987], [-79.9575466607943, 32.7838989535489], [-79.9575507392192, 32.7838980458846], [-79.9575548176763, 32.783897135515], [-79.9575588961548, 32.7838962233417], [-79.9575629746117, 32.7838953129718], [-79.9575670540592, 32.7838943196414], [-79.9575711325267, 32.7838934083695], [-79.9575752109388, 32.7838924123246], [-79.9575792904629, 32.7838915019633], [-79.9575833699423, 32.7838905059271], [-79.9575874494216, 32.7838895098909], [-79.9575923423244, 32.7838885216872], [-79.9575964218144, 32.7838875247489], [-79.9576005012934, 32.7838865287123], [-79.9576045807723, 32.7838855326755], [-79.9576086602619, 32.7838845357369], [-79.9576127397299, 32.7838835406015], [-79.9576168202315, 32.7838824588988], [-79.9576208996993, 32.7838814637633], [-79.957624980233, 32.7838803793551], [-79.9576290597113, 32.7838793833175], [-79.9576331402018, 32.783878302516], [-79.9576372196353, 32.7838772208035], [-79.957641301193, 32.7838761400109], [-79.9576453817262, 32.7838750556021], [-79.9576494622162, 32.7838739748001], [-79.9576535427061, 32.7838728939979], [-79.9576576232066, 32.7838718122939], [-79.9576617047515, 32.7838706431207], [-79.9576657852518, 32.7838695614165], [-79.9576698657521, 32.783868479712], [-79.9576739472859, 32.7838673114402], [-79.957678028798, 32.7838661449717], [-79.9576821092979, 32.7838650632669], [-79.9576861908421, 32.783863894093], [-79.9576902723862, 32.7838627249189], [-79.9576943538979, 32.7838615584499], [-79.9576984354418, 32.7838603892756], [-79.9577025180208, 32.7838592228154], [-79.9577065995321, 32.7838580563461], [-79.9577106800082, 32.7838568871621], [-79.9577147625636, 32.7838556332235], [-79.9577188440746, 32.7838544667537], [-79.9577229266407, 32.7838532119131], [-79.9577270081515, 32.783852045443], [-79.9577310907065, 32.7838507915039], [-79.9577351732721, 32.7838495366628], [-79.957739255827, 32.7838482827234], [-79.9577433384048, 32.7838471162619], [-79.9577474199026, 32.7838458614113], [-79.9577515045473, 32.7838445218151], [-79.9577555860342, 32.783843267866], [-79.9577596685991, 32.7838420130241], [-79.9577637511317, 32.7838407608874], [-79.9577678346976, 32.7838394221832], [-79.9577711048958, 32.7838381604203], [-79.9577751874047, 32.7838368208051], [-79.9577792710367, 32.7838355659717], [-79.9577833535454, 32.7838342263562], [-79.9577874381782, 32.7838328876606], [-79.9577915206867, 32.7838315480448], [-79.9577956042625, 32.783830208438], [-79.9577996878491, 32.7838288679294], [-79.9578037714247, 32.7838275283222], [-79.9578078560568, 32.7838261896259], [-79.9578111251309, 32.78382484308], [-79.9578152107856, 32.7838234187179], [-79.9578192932932, 32.7838220791013], [-79.9578233789692, 32.7838206529354], [-79.9578274614765, 32.7838193133185], [-79.9578315460955, 32.7838178862415], [-79.9578356317602, 32.7838164609771], [-79.9578389018454, 32.7838150296667], [-79.9578429874992, 32.7838136053036], [-79.9578470710286, 32.7838121800206], [-79.9578511567144, 32.7838107529521], [-79.9578552402435, 32.7838093276688], [-79.9578593258967, 32.7838079033052], [-79.9578625970595, 32.7838064711015], [-79.9578666816324, 32.7838049583489], [-79.9578707672853, 32.783803533985], [-79.9578748518579, 32.783802021232], [-79.9578789375212, 32.783800595966], [-79.9578822096953, 32.7837990789981], [-79.957886295335, 32.7837975662539], [-79.9578903809531, 32.783796055313], [-79.9578944655143, 32.7837945434611], [-79.9578985521888, 32.7837930334308], [-79.957901823327, 32.7837915137481], [-79.9579059100013, 32.7837900037175], [-79.9579099956402, 32.7837884909725], [-79.9579140823015, 32.7837868925618], [-79.9579173544744, 32.783785375593], [-79.9579214400573, 32.7837837780747], [-79.9579255267308, 32.7837822680435], [-79.9579296123133, 32.783780670525], [-79.9579328866081, 32.7837790651941], [-79.9579369722138, 32.7837775551534], [-79.9579410588741, 32.7837759567418], [-79.9579451455236, 32.7837743592319], [-79.9579484176828, 32.7837727538825], [-79.9579525053564, 32.7837711599883], [-79.9579565909487, 32.7837695615672], [-79.9579598662544, 32.7837678714719], [-79.9579639529138, 32.7837662730596], [-79.9579680395732, 32.7837646746471], [-79.9579721272334, 32.7837629923725], [-79.9579754004035, 32.7837613022587], [-79.95797948813, 32.7837597038549], [-79.9579835758005, 32.7837580206782], [-79.9579868500054, 32.7837563332783], [-79.9579909376756, 32.7837546501014], [-79.958214296463, 32.7836483160548], [-79.9582027335441, 32.7835947036928], [-79.9581939087981, 32.7835843205879], [-79.9581875233264, 32.7835740439287], [-79.9581754140915, 32.7835662111947], [-79.9581698430877, 32.7835558548944], [-79.9581545098775, 32.7835455020356], [-79.9581424314178, 32.7835350912185], [-79.9581336066743, 32.7835247090111], [-79.9581182130014, 32.7835194230352], [-79.9581094180307, 32.7835065466081], [-79.9580972780858, 32.7835012883393], [-79.9580851995959, 32.7834908811235], [-79.9580730586214, 32.7834857094196], [-79.9580642646724, 32.7834727482256], [-79.9580489017408, 32.7834648877681], [-79.9580368530322, 32.7834519863296], [-79.9580223035693, 32.7834441300915], [-79.9580069396007, 32.7834362678162], [-79.95799811385, 32.7834259721663], [-79.9579860672765, 32.7834129823613], [-79.9579707340683, 32.7834025438051], [-79.9579586567178, 32.783392132979], [-79.9579530836177, 32.7833818659324], [-79.9579442589229, 32.7833714828098], [-79.9579346505525, 32.7833586003435], [-79.9579258258731, 32.7833482163178], [-79.9579137485247, 32.7833378063892], [-79.9579049535701, 32.7833249326529], [-79.957896159673, 32.7833119705453], [-79.9578808869579, 32.7832964668942], [-79.9578721545764, 32.7832783522323], [-79.9578601069764, 32.7832654516876], [-79.9578512823045, 32.7832550685584], [-79.9578424576347, 32.7832446854285], [-79.9578328185267, 32.7832343801325], [-79.9578239938612, 32.7832239970014], [-79.9578118528944, 32.7832187395971], [-79.9578030579561, 32.7832058667554], [-79.9577942333077, 32.7831954827204], [-79.9577789022849, 32.7831850450603], [-79.9577701073655, 32.7831721713145], [-79.9577612827137, 32.7831617881789], [-79.9577459495766, 32.7831513495948], [-79.957737123907, 32.783141052123], [-79.9577340250687, 32.7831281421294], [-79.9577252301941, 32.7831152656753], [-79.9577099267504, 32.7831022517031], [-79.9577043568882, 32.783091896293], [-79.9576922467407, 32.783084149177], [-79.9576801068796, 32.7830788908671], [-79.9576712822802, 32.7830685050199], [-79.9576616431689, 32.7830582033175], [-79.9576495340851, 32.7830503678267], [-79.9576349846917, 32.7830425142481], [-79.9576228448291, 32.7830372568343], [-79.9575809179442, 32.7830058025723], [-79.9575687770778, 32.7830006299169], [-79.9575574701192, 32.7829937490786], [-79.9575486167819, 32.7829857717748], [-79.9575381284106, 32.7829784659316], [-79.9575284575589, 32.782970824357], [-79.9575196103967, 32.7829623303531], [-79.9575091209754, 32.7829551128781], [-79.9574986264624, 32.7829483219261], [-79.9574873092645, 32.7829422995395], [-79.9574743837071, 32.7829347149979], [-79.9574622592133, 32.7829280833047], [-79.9574403798554, 32.7829210248825], [-79.9574298873872, 32.7829140634954], [-79.9574185825077, 32.7829070104117], [-79.9574080889755, 32.7829000490137], [-79.9573919046598, 32.7828929507368], [-79.9573757182238, 32.7828859408194], [-79.95736441234, 32.7828789724944], [-79.9573539198386, 32.7828719254262], [-79.9573401747515, 32.7828649363107], [-79.9573296822872, 32.7828579758168], [-79.9573184040785, 32.7828486016315], [-79.9573079116287, 32.782841640234], [-79.9572974191806, 32.7828346788357], [-79.9572861153897, 32.7828276257488], [-79.957275622945, 32.7828206643486], [-79.9572651294345, 32.7828137029384], [-79.9572538235689, 32.7828067346031], [-79.9572433321526, 32.7827996875347], [-79.957227119087, 32.7827949094084], [-79.9572076224995, 32.7827925111874], [-79.9571971321776, 32.7827854623206], [-79.9571809180831, 32.7827807707554], [-79.9571696132303, 32.7827737185505], [-79.9571591218689, 32.7827667571493], [-79.9571486283742, 32.7827597957292], [-79.9571373225356, 32.7827528264815], [-79.9571268311244, 32.7827457803048], [-79.9571212746676, 32.7827342210343], [-79.9570671857471, 32.7826993991833], [-79.95705830887, 32.7826933984621], [-79.9570470574191, 32.7826818781159], [-79.9570341257977, 32.7826748075208], [-79.9570228476453, 32.7826655225901], [-79.9570123552411, 32.7826585611674], [-79.9570010771254, 32.7826492735294], [-79.9569905868159, 32.7826422264485], [-79.9569800933496, 32.7826352650139], [-79.9569688141836, 32.7826259764622], [-79.9569583238687, 32.7826189302803], [-79.9569470180528, 32.7826119619169], [-79.9569365256611, 32.7826050004877], [-79.9569203670268, 32.7825956712308], [-79.9569066496969, 32.7825862762109], [-79.9568905177366, 32.7825747151395], [-79.9568800263775, 32.7825676680401], [-79.9568687195071, 32.7825606996603], [-79.9568582292512, 32.7825536498629], [-79.9568477368735, 32.7825466884262], [-79.9568315505347, 32.7825396793388], [-79.9568153364401, 32.7825349038541], [-79.956804031714, 32.7825279354867], [-79.956790230205, 32.7825254973814], [-79.956774044953, 32.7825184873938], [-79.9567578596489, 32.7825113926312], [-79.9567367917496, 32.7825043400999], [-79.9567254859662, 32.7824973717161], [-79.9567150213231, 32.7824880909886], [-79.9567037176241, 32.7824810378483], [-79.9566932252675, 32.7824740763983], [-79.9566827328689, 32.7824670292729], [-79.9566689868318, 32.7824600400731], [-79.9566584945128, 32.7824530759151], [-79.9566415235394, 32.7824436540188], [-79.9566310578662, 32.7824344607531], [-79.9566205942753, 32.7824250934504], [-79.9566092885008, 32.7824181259577], [-79.9565931022157, 32.7824111159371], [-79.9565826930275, 32.7823971975413], [-79.9565714427123, 32.7823855905846], [-79.9565610057986, 32.7823739923682], [-79.9565424891281, 32.7823577700757], [-79.9565312665345, 32.7823438447377], [-79.9565209117956, 32.7823253725418], [-79.9565153554135, 32.7823138159495], [-79.9565048908147, 32.7823045352042], [-79.9564936682339, 32.7822906098629], [-79.9564889263766, 32.7822790575115], [-79.9564777027234, 32.7822651330614], [-79.9564672925471, 32.7822513003214], [-79.956456883398, 32.7822373819152], [-79.9564513270623, 32.7822258226149], [-79.9564408347564, 32.7822188611435], [-79.9564296132536, 32.7822049367073], [-79.9564158672346, 32.7821978618047], [-79.9564054293831, 32.7821863456337], [-79.956394938099, 32.7821792993947], [-79.9563828415398, 32.7821704357938], [-79.956378889449, 32.7821607813202], [-79.9563675837387, 32.7821538129036], [-79.9563571201989, 32.7821444464803], [-79.9563458689436, 32.7821329233652], [-79.9563354053764, 32.7821235596454], [-79.9563249664661, 32.7821120443602], [-79.9563194111909, 32.7821004877684], [-79.9563089199672, 32.7820934379151], [-79.9563008945693, 32.7820841806669], [-79.9562953382639, 32.7820726213597], [-79.9562848470565, 32.7820656598842], [-79.9562678185952, 32.7820608773786], [-79.9562573284696, 32.782053915008], [-79.9562468361999, 32.7820469535201], [-79.9562355304932, 32.7820398976134], [-79.9562250381946, 32.7820329388288], [-79.9562145736604, 32.782023658059], [-79.9561975750876, 32.7820165553809], [-79.956187110569, 32.7820072737069], [-79.9561790862918, 32.7819980137548], [-79.9561686772081, 32.7819840962261], [-79.9561524910388, 32.7819770861476], [-79.9561412408565, 32.7819654773484], [-79.9561308051177, 32.7819538791049], [-79.9561195261193, 32.7819445913772], [-79.9561090338738, 32.7819376298776], [-79.9560985426435, 32.7819305836133], [-79.9560872914176, 32.7819190631799], [-79.9560768002344, 32.7819120133069], [-79.9560663079962, 32.7819050518036], [-79.956052564178, 32.7818979777803], [-79.9560412574603, 32.7818910093247], [-79.9560308206762, 32.7818794110636], [-79.9560203561918, 32.7818701293756], [-79.9560090505478, 32.7818631609261], [-79.9559986138144, 32.7818515590553], [-79.9559881759624, 32.7818399616833], [-79.9559768713923, 32.78183299324], [-79.9559663802284, 32.7818259433575], [-79.9559550745945, 32.781818974903], [-79.9559445823663, 32.7818120142912], [-79.9559260392055, 32.7817980264217], [-79.9559147345921, 32.7817909731998], [-79.9558986306596, 32.7817770918178], [-79.9558881394764, 32.7817700446339], [-79.9558768327884, 32.7817630761631], [-79.9558557672649, 32.7817560244007], [-79.9558444626627, 32.7817489711724], [-79.9558340259648, 32.7817373692877], [-79.9558227192854, 32.781730400812], [-79.9558097601628, 32.7817257386487], [-79.955798455579, 32.7817186845145], [-79.9557879623188, 32.7817117229783], [-79.9557774711739, 32.7817046739816], [-79.9557661666489, 32.7816977046171], [-79.9557556744504, 32.7816907439891], [-79.9557444243146, 32.7816791387608], [-79.9557233566872, 32.7816720869574], [-79.9557120521172, 32.7816650328151], [-79.9557015610052, 32.7816580712899], [-79.9556877596537, 32.7816556339621], [-79.9556716290949, 32.7816439834587], [-79.9556553896415, 32.7816415253145], [-79.9556449241149, 32.7816322471925], [-79.9556311659729, 32.7816262876655], [-79.9557584871561, 32.7815236086466], [-79.9552340223574, 32.7810955576488], [-79.9550105905884, 32.781276185839], [-79.9546820065898, 32.7815423315996], [-79.9549658228181, 32.7821617746735], [-79.9548787511632, 32.782231983526], [-79.9551498820912, 32.7828240896562], [-79.9551815957092, 32.7828932506789], [-79.9552183457807, 32.7828813681325], [-79.9552929229912, 32.7831074913811], [-79.955293705609, 32.7831100727993], [-79.9552944871586, 32.7831127434901], [-79.9552960821459, 32.7831154202252], [-79.95529686471, 32.7831180061522], [-79.9552976463029, 32.7831206732359], [-79.9552984278527, 32.7831233439266], [-79.9552992094033, 32.7831259253358], [-79.9552999909532, 32.7831285960264], [-79.9553007725139, 32.7831312658154], [-79.9553015561458, 32.7831338517515], [-79.9553031511661, 32.7831365257813], [-79.9553039337413, 32.7831391108065], [-79.9553047153238, 32.7831417787919], [-79.9553054978992, 32.7831443638171], [-79.9553062804853, 32.7831469479406], [-79.9553078754953, 32.7831496228721], [-79.9553086570141, 32.7831522069864], [-79.9553094396644, 32.7831548749809], [-79.9553102222291, 32.7831574609078], [-79.9553118182754, 32.7831600492721], [-79.9553126008403, 32.783162635199], [-79.9553133824017, 32.7831653049879], [-79.9553149784373, 32.7831678942539], [-79.9553157610132, 32.783170479279], [-79.9553165436215, 32.7831730615989], [-79.9553181385576, 32.7831756535609], [-79.9553189222334, 32.78317823589], [-79.9553197048095, 32.7831808209151], [-79.9553213008457, 32.783183410181], [-79.9553220834218, 32.7831859952061], [-79.9553228660305, 32.7831885775259], [-79.9553244620452, 32.7831911685953], [-79.9553252446324, 32.7831937527186], [-79.9553268395799, 32.7831963437789], [-79.9553276232562, 32.7831989261078], [-79.9553292202748, 32.7832014333151], [-79.9553300028946, 32.7832040147332], [-79.9553307854605, 32.78320660066], [-79.9553323814974, 32.7832091899257], [-79.9553331651316, 32.7832116865801], [-79.9553347611364, 32.7832142785511], [-79.9553355436924, 32.783216776098], [-79.9553371407648, 32.7832193680781], [-79.9553379233742, 32.7832219503979], [-79.9553395204367, 32.7832244539981], [-79.9553403019463, 32.783227039014], [-79.9553418989982, 32.7832295435159], [-79.955343498196, 32.7832320471343], [-79.9553442786383, 32.783234632141], [-79.955345876758, 32.783237136652], [-79.9553466603929, 32.7832396333063], [-79.9553482563985, 32.7832422252771], [-79.9553498534509, 32.7832447297789], [-79.955350637086, 32.7832472264332], [-79.9553522341062, 32.7832497336402], [-79.9553530166739, 32.7832522302853], [-79.9553546147941, 32.7832547347962], [-79.9553562118469, 32.783257239298], [-79.95535699545, 32.7832597386574], [-79.9553585925137, 32.7832622422574], [-79.9553601895668, 32.7832647467591], [-79.9553617866307, 32.783267250359], [-79.9553625702556, 32.783269747915], [-79.9553641672766, 32.7832722551219], [-79.9553657653659, 32.7832746730562], [-79.9553665489909, 32.7832771706122], [-79.9553681460552, 32.7832796742121], [-79.955369744134, 32.7832820930482], [-79.9553713411554, 32.7832846002549], [-79.9553729382201, 32.7832871038547], [-79.9553737228704, 32.7832895157452], [-79.9553753199245, 32.7832920202467], [-79.9553769180037, 32.7832944390827], [-79.9553785150686, 32.7832969426824], [-79.955380113148, 32.7832993615184], [-79.9553808977987, 32.7833017734088], [-79.9553824958675, 32.7833041931465], [-79.9553840929004, 32.7833066994514], [-79.9553856910125, 32.783309115582], [-79.9553872890923, 32.783311534418], [-79.9553888871398, 32.7833139559591], [-79.9553904852197, 32.783316374795], [-79.9553920832998, 32.7833187936308], [-79.9553936814123, 32.7833212097614], [-79.9553952794925, 32.7833236285972], [-79.9553960641116, 32.7833260431927], [-79.9553976621919, 32.7833284620285], [-79.9553992602724, 32.7833308808642], [-79.9554008573179, 32.7833332969856], [-79.9554024564236, 32.7833356301559], [-79.9554040566393, 32.7833380490098], [-79.9554056547201, 32.7833404678455], [-79.9554072527478, 32.7833428019083], [-79.9554088508288, 32.7833452207439], [-79.9554104499242, 32.7833475548158], [-79.9554120480162, 32.7833499727497], [-79.955413647144, 32.7833523041163], [-79.9554160586546, 32.7833547298973], [-79.9554176577611, 32.7833570630673], [-79.955419256857, 32.7833593971391], [-79.9554208559528, 32.7833617312109], [-79.9554224540345, 32.7833641500463], [-79.9554240531414, 32.7833664832163], [-79.9554256522699, 32.7833688145828], [-79.955427251377, 32.7833711477528], [-79.9554288504733, 32.7833734818244], [-79.9554304496129, 32.7833758122891], [-79.9554328621496, 32.7833781524042], [-79.9554344612462, 32.7833804864758], [-79.9554360614003, 32.7833827321768], [-79.9554376605079, 32.7833850653466], [-79.9554392596047, 32.7833873994181], [-79.9554416731886, 32.7833896520641], [-79.9554432722964, 32.7833919852339], [-79.9554448713936, 32.7833943193053], [-79.9554464715482, 32.7833965650061], [-79.9554480706563, 32.7833988981758], [-79.9554504841975, 32.7834011544286], [-79.9554520843632, 32.7834033992276], [-79.9554536834608, 32.7834057332989], [-79.9554552835835, 32.7834079817048], [-79.9554576971683, 32.7834102343505], [-79.9554592973236, 32.7834124800511], [-79.9554608974358, 32.7834147293587], [-79.9554633099642, 32.7834169810934], [-79.9554649122223, 32.7834192295174], [-79.9554665123779, 32.7834214752179], [-79.9554689248636, 32.7834237305595], [-79.9554705250194, 32.78342597626], [-79.9554721251321, 32.7834282255674], [-79.9554745387287, 32.7834304773111], [-79.9554761398666, 32.783432640953], [-79.9554777400119, 32.7834348875551], [-79.9554801535765, 32.7834371420038], [-79.9554817547578, 32.7834393020387], [-79.9554841683119, 32.7834415573892], [-79.9554857694826, 32.7834437183256], [-79.9554873706641, 32.7834458783605], [-79.9554897842508, 32.7834481310056], [-79.9554913853894, 32.7834502946473], [-79.9554938000014, 32.7834524616268], [-79.9554954011725, 32.7834546225633], [-79.9554978157415, 32.7834567931498], [-79.9554994169236, 32.7834589531844], [-79.955501831536, 32.7834611201638], [-79.9555034327074, 32.7834632811001], [-79.9555058473201, 32.7834654480794], [-79.9555074484594, 32.783467611721], [-79.9555098630722, 32.7834697787002], [-79.955511464244, 32.7834719396364], [-79.9555138798712, 32.7834740218519], [-79.955515481054, 32.7834761818864], [-79.9555178966814, 32.7834782641017], [-79.9555194978213, 32.7834804277431], [-79.9555219134489, 32.7834825099583], [-79.9555243280625, 32.7834846769374], [-79.9555259291924, 32.7834867521988], [-79.9555283458879, 32.7834888344232], [-79.9555299480747, 32.7834909105954], [-79.9555323626995, 32.7834930766724], [-79.955534778317, 32.7834951597892], [-79.9555363805149, 32.7834972350597], [-79.9555387961434, 32.7834993172747], [-79.9555412127969, 32.7835013138242], [-79.955542814995, 32.7835033890945], [-79.955545230613, 32.7835054722111], [-79.9555492494653, 32.7835095440308], [-79.955551666162, 32.7835116262546], [-79.9555556839797, 32.7835156953597], [-79.9555580995768, 32.7835177802795], [-79.9555621194767, 32.7835217646298], [-79.9555645361206, 32.7835237620806], [-79.9555669517506, 32.783525844295], [-79.9555709716512, 32.783529828645], [-79.9555733883063, 32.7835318251939], [-79.9555758049508, 32.7835338226444], [-79.9555782226629, 32.783535820104], [-79.9555822425219, 32.7835397187791], [-79.9555846592099, 32.7835417126225], [-79.9555870779365, 32.7835436253182], [-79.9555894935249, 32.7835456218576], [-79.9555919102133, 32.7835476157009], [-79.9555959332226, 32.78355142963], [-79.9555983488006, 32.783553427071], [-79.9556007664711, 32.7835553388556], [-79.9556031841741, 32.7835572479349], [-79.9556056029122, 32.7835591597286], [-79.9556080195479, 32.7835610687987], [-79.9556104372189, 32.7835629805831], [-79.9556144602297, 32.7835667945116], [-79.9556168768765, 32.7835687026798], [-79.9556192945371, 32.7835706153658], [-79.9556217132549, 32.783572439681], [-79.9556241320371, 32.7835743478674], [-79.9556265496553, 32.7835761748786], [-79.9556289673594, 32.7835780839575], [-79.955631387102, 32.7835799118886], [-79.9556338047745, 32.783581734391], [-79.9556362224789, 32.7835836434697], [-79.9556386411651, 32.7835854704898], [-79.9556410609621, 32.7835872939121], [-79.9556434786242, 32.7835891173161], [-79.955645897343, 32.7835909416308], [-79.9556483160728, 32.7835927650438], [-79.955650735827, 32.7835945920728], [-79.9556531534895, 32.7835964154767], [-79.9556555732336, 32.7835981541258], [-79.9556579930204, 32.7835999784494], [-79.9556604117507, 32.7836018018622], [-79.9556628303845, 32.783603544109], [-79.955665249115, 32.7836053675217], [-79.9556676699271, 32.7836071061797], [-79.9556700896717, 32.7836088448285], [-79.9556733207558, 32.7836106760773], [-79.955675741579, 32.7836124138335], [-79.955678161324, 32.7836141524822], [-79.9556805799908, 32.7836158920234], [-79.955682999736, 32.783617630672], [-79.9556854205595, 32.7836193684279], [-79.9556878413617, 32.7836211079873], [-79.9556902589722, 32.7836228466175], [-79.955693494231, 32.7836245074549], [-79.9556975459749, 32.7836258307611], [-79.9557007534255, 32.7836296377252], [-79.9557031752962, 32.7836312880118], [-79.9557055950422, 32.7836330266599], [-79.9557088281776, 32.7836346865769], [-79.9557112499945, 32.783636341372], [-79.9557136707656, 32.7836379943546], [-79.9557160905017, 32.7836396446228], [-79.9557185112622, 32.783641298507], [-79.955721746533, 32.7836429584418], [-79.9557241673369, 32.7836446087189], [-79.9557265870303, 32.7836462625938], [-79.9557290077911, 32.7836479164778], [-79.9557314306444, 32.7836494847054], [-79.9557346638131, 32.7836511419164], [-79.9557370855991, 32.7836527101348], [-79.9557395074602, 32.7836543613224], [-79.9557419292463, 32.7836559295407], [-79.9557451634295, 32.7836575019878], [-79.9557475862833, 32.783659070215], [-79.955750008102, 32.7836606357279], [-79.9557524288318, 32.7836622030351], [-79.9557556640828, 32.783663775491], [-79.955758086937, 32.7836653437181], [-79.9557605087561, 32.7836669092308], [-79.9557629294647, 32.7836684783412], [-79.9557661657836, 32.783670050806], [-79.9557685885846, 32.78367153426], [-79.9557710093365, 32.7836730997633], [-79.9557734311345, 32.7836746670793], [-79.9557758550356, 32.783676147837], [-79.9557790891877, 32.7836777229884], [-79.9557815120214, 32.783679203737], [-79.9557839349089, 32.7836807692583], [-79.9557863577644, 32.7836822482033], [-79.95578959292, 32.7836837394924], [-79.9557920158185, 32.7836853041118], [-79.9557944386634, 32.7836867839584], [-79.9557968614761, 32.7836882665101], [-79.9558000966645, 32.7836897550938], [-79.9558025195526, 32.7836913206147], [-79.9558049423655, 32.7836928031663], [-79.955808177565, 32.7836942908479], [-79.955810601478, 32.7836957707033], [-79.9558130243128, 32.7836972514512], [-79.95581544814, 32.7836986492389], [-79.9558186844182, 32.7837001360277], [-79.9558211072532, 32.7837016167754], [-79.9558235300991, 32.7837030966214], [-79.955826765267, 32.7837045870078], [-79.9558291901944, 32.7837059820991], [-79.9558316130298, 32.7837074628467], [-79.9558348492657, 32.7837088639604], [-79.9558372731688, 32.783710344717], [-79.955839697029, 32.7837117397989], [-79.9558429333081, 32.7837132265871], [-79.9558453571686, 32.7837146216689], [-79.9558477799721, 32.7837161051214], [-79.9558510173085, 32.7837175035386], [-79.9558534400909, 32.7837188995129], [-79.9558558650192, 32.7837202946037], [-79.9558591023127, 32.7837216966276], [-79.9558615251274, 32.7837231791781], [-79.9558639489885, 32.7837245742595], [-79.9558671862715, 32.7837259771851], [-79.9558696101435, 32.7837273713647], [-79.9558720340047, 32.783728766446], [-79.9558752723127, 32.7837300837059], [-79.9558776961741, 32.7837314787871], [-79.9558809334684, 32.7837328808105], [-79.9558857822486, 32.7837355826019], [-79.9558890195432, 32.7837369846251], [-79.9558938682807, 32.7837396900232], [-79.9558995304622, 32.7837424014615], [-79.9559027677573, 32.7837438034844], [-79.9559076175526, 32.7837464205112], [-79.9559108558617, 32.7837477377701], [-79.9559414634141, 32.7837053070742], [-79.9559455090075, 32.7837071452669], [-79.9559487401548, 32.7837090612812], [-79.9559527857161, 32.7837109021788], [-79.9559560178882, 32.7837127325276], [-79.9559600634931, 32.7837145698179], [-79.9559641090335, 32.7837163232371], [-79.955967343341, 32.7837181536037], [-79.9559713878357, 32.7837199944916], [-79.9559746200085, 32.7837218248398], [-79.9559786666279, 32.7837235773659], [-79.9559827122229, 32.7837254155573], [-79.9559859454207, 32.7837271602397], [-79.9559899920405, 32.7837289127654], [-79.955994037636, 32.7837307509565], [-79.9559972697236, 32.7837324992365], [-79.9560013174438, 32.7837342490656], [-79.9560053640642, 32.7837360015908], [-79.9560085972197, 32.7837377498797], [-79.9560126438405, 32.7837395024046], [-79.9560166904938, 32.7837412522241], [-79.9560199247065, 32.783742912142], [-79.956023971317, 32.7837446655683], [-79.9560280179384, 32.7837464180927], [-79.9560312521515, 32.7837480780103], [-79.9560352997977, 32.7837497448691], [-79.9560393464087, 32.7837514982948], [-79.9560425806223, 32.7837531582121], [-79.9560466282905, 32.783754823267], [-79.9560506759372, 32.7837564901252], [-79.9560547235841, 32.7837581569832], [-79.9560579578198, 32.7837598150966], [-79.956062005467, 32.7837614819545], [-79.9560660531036, 32.7837631497139], [-79.9560692873073, 32.7837648105323], [-79.9560733360009, 32.7837663899208], [-79.9560773836487, 32.7837680567781], [-79.9560814323642, 32.7837697236444], [-79.9560846665577, 32.7837712960825], [-79.9560887152195, 32.7837728781757], [-79.9560927628572, 32.7837745459343], [-79.9560968115517, 32.7837761253221], [-79.9561008602141, 32.7837777074149], [-79.9561040954757, 32.7837792798616], [-79.9561081452165, 32.7837808610616], [-79.9561121928333, 32.7837824413415], [-79.9561162425422, 32.7837839359649], [-79.9561202912052, 32.7837855180571], [-79.9561235264674, 32.7837870905032], [-79.9561275761551, 32.7837885869297], [-79.956131624851, 32.7837901663164], [-79.9561356756279, 32.7837916609482], [-79.9561397232242, 32.7837932430307], [-79.9561429595114, 32.7837947298109], [-79.9561470092214, 32.7837962244333], [-79.9561510589099, 32.783797720859], [-79.9561551096876, 32.7837992154901], [-79.9561591583412, 32.7838007092013], [-79.9561632091299, 32.7838022029305], [-79.9561664443396, 32.7838036906027], [-79.956170496153, 32.7838050986663], [-79.956174544764, 32.7838065959838], [-79.9561785954886, 32.7838080058414], [-79.9561826451997, 32.7838095004626], [-79.9561866970136, 32.7838109085256], [-79.9561907477494, 32.7838123174811], [-79.9561947964042, 32.783813811191], [-79.9561980347741, 32.7838152132152], [-79.956202084432, 32.7838166230629], [-79.9562061351682, 32.7838180320178], [-79.9562101859046, 32.7838194409727], [-79.9562142366518, 32.7838208490256], [-79.956218288402, 32.7838221732165], [-79.9562223391387, 32.7838235821709], [-79.9562263919566, 32.7838249063706], [-79.9562304416261, 32.7838263153156], [-79.9562344944874, 32.783827635908], [-79.9562385441572, 32.7838290448529], [-79.9562417824743, 32.783830362103], [-79.9562458353036, 32.7838316854003], [-79.9562498870654, 32.7838330086884], [-79.9562539388275, 32.7838343319763], [-79.9562579895329, 32.7838356543532], [-79.9562620423626, 32.7838369776499], [-79.9562660930467, 32.7838383018301], [-79.9562701469225, 32.7838395376576], [-79.9562741976176, 32.7838408609358], [-79.9562782514613, 32.7838420994683], [-79.9562823032457, 32.7838434209518], [-79.9562863549654, 32.7838446585641], [-79.9562904077852, 32.7838459827616], [-79.9562944595267, 32.7838472185702], [-79.9562985134034, 32.7838484543968], [-79.9563025651127, 32.7838496929102], [-79.9563066189895, 32.7838509287366], [-79.9563106706991, 32.7838521672498], [-79.9563147255896, 32.7838533183121], [-79.9563187783669, 32.7838545568342], [-79.9563228311767, 32.7838557926509], [-79.9563268850107, 32.783856942802], [-79.9563309367209, 32.7838581813145], [-79.9563349916119, 32.7838593323762], [-79.9563390443465, 32.783860485223], [-79.956343097146, 32.7838617219407], [-79.9563471520482, 32.7838628721003], [-79.9563512058829, 32.7838640222506], [-79.9563552596745, 32.7838651760077], [-79.9563593135095, 32.7838663261577], [-79.9563633673338, 32.7838674772093], [-79.956367422193, 32.7838685416936], [-79.9563714760175, 32.783869692745], [-79.9563755297663, 32.7838707608269], [-79.9563795846692, 32.7838719109853], [-79.9563836395074, 32.7838729772726], [-79.9563876933538, 32.78387412652], [-79.9563917481921, 32.7838751928069], [-79.9563958030413, 32.783876258192], [-79.9564006713248, 32.7838773305158], [-79.9564047250959, 32.7838783967932], [-79.9564087810236, 32.7838794612852], [-79.9564128358733, 32.7838805266698], [-79.9564168917362, 32.7838815072904], [-79.9564209465968, 32.7838825717729], [-79.9564250014467, 32.7838836371571], [-79.95642905731, 32.7838846177773], [-79.9564331132057, 32.7838855956923], [-79.9564371680666, 32.7838866601743], [-79.9564412239194, 32.7838876416959], [-79.9564452797938, 32.7838886214139], [-79.9564501491349, 32.783889605365], [-79.9564542050095, 32.7838905850827], [-79.9564582608627, 32.7838915666037], [-79.9564623167375, 32.7838925463211], [-79.9564663715772, 32.7838935233241], [-79.9564704295329, 32.7838944182866], [-79.956474485408, 32.7838953980037], [-79.9564785423287, 32.7838962902516], [-79.9564834116275, 32.7838972778083], [-79.9564874685161, 32.7838981727612], [-79.9564915254371, 32.7838990650087], [-79.9564955823582, 32.7838999572561], [-79.956499639247, 32.7839008522086], [-79.9565036961251, 32.7839017480627], [-79.9565077530572, 32.7839026394079], [-79.9565118099463, 32.7839035343599], [-79.9565166803022, 32.7839044335447], [-79.956520738237, 32.7839052410275], [-79.9565247951263, 32.7839061359791], [-79.956528853072, 32.78390694256], [-79.9565329110613, 32.7839078348152], [-79.9565369679074, 32.7839086440918], [-79.956541839277, 32.7839094585119], [-79.9565458972122, 32.7839102659939], [-79.956549954102, 32.7839111609447], [-79.9565540130721, 32.7839118818592], [-79.9565580710076, 32.7839126893408], [-79.956562128954, 32.7839134959205], [-79.956567000281, 32.7839143139465], [-79.9565710592837, 32.7839150321552], [-79.9565751171979, 32.7839158414397], [-79.9565791761577, 32.7839165632551], [-79.9565832340828, 32.7839173716376], [-79.9565872930535, 32.783918092551], [-79.956592165448, 32.7839188213036], [-79.9565962254756, 32.7839195431275], [-79.9566002833682, 32.7839202649331], [-79.9566043423284, 32.7839209867477], [-79.9566084012886, 32.7839217085621], [-79.9566132736836, 32.7839224373139], [-79.9566173326332, 32.7839231600298], [-79.956621393685, 32.7839237961874], [-79.956625451578, 32.7839245179922], [-79.9566295126623, 32.7839251514443], [-79.95663438399, 32.7839258801861], [-79.9566384439639, 32.7839265172358], [-79.9566425039377, 32.7839271542854], [-79.9566465639224, 32.7839277904331], [-79.9566506239503, 32.7839284229738], [-79.9566554973482, 32.7839290678618], [-79.9566595573331, 32.7839297040091], [-79.9566636173072, 32.783930341058], [-79.9566676794052, 32.7839308897452], [-79.9566717383119, 32.7839315267847], [-79.9566766138231, 32.783932084212], [-79.9566806727623, 32.783932718546], [-79.9566847348281, 32.7839332699378], [-79.9566887947912, 32.7839338186061], [-79.956693669268, 32.7839344626], [-79.956697729199, 32.7839350139732], [-79.9567017902405, 32.7839355617484], [-79.9567058512391, 32.7839361131304], [-79.9567107267285, 32.7839365830784], [-79.9567147877595, 32.7839371317549], [-79.9567188487474, 32.7839376840382], [-79.9567229108023, 32.783938147049], [-79.9567277852682, 32.7839387026617], [-79.9567318483475, 32.7839391692883], [-79.956735909335, 32.7839396322895], [-79.9567399714015, 32.7839401836795], [-79.956744032389, 32.7839406466805], [-79.9567489089356, 32.7839411175377], [-79.9567529709693, 32.783941582351], [-79.9567570330353, 32.7839420444589], [-79.9567610949929, 32.7839424263025], [-79.9567659715505, 32.7839428962573], [-79.9567700325276, 32.7839433601592], [-79.9567740966742, 32.7839437375119], [-79.9567789710862, 32.7839442083498], [-79.956783035222, 32.783944586604], [-79.9567870982905, 32.7839449648488], [-79.9567911592786, 32.7839454278482], [-79.9567960368063, 32.7839458166452], [-79.9568000988505, 32.7839461912735], [-79.9568041629435, 32.7839465731339], [-79.9568082260007, 32.7839468629983], [-79.9568131035717, 32.7839472481876], [-79.9568171655729, 32.7839476264225], [-79.9568212307328, 32.7839479190098], [-79.9568252927233, 32.7839482981461], [-79.9568301713181, 32.7839485976692], [-79.9568342333303, 32.7839489750017], [-79.9568382984688, 32.7839492693921], [-79.9568423625936, 32.7839495592645], [-79.9568472401211, 32.7839498587777], [-79.9568513052705, 32.7839501522659], [-79.956855368328, 32.7839504421287], [-79.9568602458555, 32.7839507416415], [-79.9568643099374, 32.7839510351202], [-79.9568683750754, 32.783951240228], [-79.9568724391573, 32.7839515337063], [-79.9568773176979, 32.7839517484547], [-79.9568813817907, 32.783952041031], [-79.9568854469287, 32.7839522461383], [-79.9568903255016, 32.7839524581809], [-79.9568943905966, 32.7839526668948], [-79.9568984546456, 32.783952873796], [-79.9569025208512, 32.7839530789117], [-79.9569073983567, 32.7839532909446], [-79.9569114655868, 32.7839534996761], [-79.9569155306918, 32.783953618206], [-79.9569195957976, 32.7839538260173], [-79.95692447436, 32.7839540389603], [-79.9569285405217, 32.7839541584007], [-79.9569326066404, 32.7839542814479], [-79.9569374852136, 32.7839544934886], [-79.9569415513323, 32.7839546165355], [-79.9569456174941, 32.7839547359752], [-79.956949683656, 32.7839548554148], [-79.956954563242, 32.7839549826912], [-79.9569586294038, 32.7839551021305], [-79.9569626965785, 32.783955136806], [-79.9569675761322, 32.783955266787], [-79.9569716412266, 32.7839553862168], [-79.9569757094688, 32.783955420901], [-79.9569797766434, 32.7839554555759], [-79.9569846562403, 32.7839555819493]]], "type": "Polygon"}, "id": "218", "properties": {"OBJECTID": 2419, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 68449.78515625, "Shape__Length": 1206.88613244249, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9288160940495, 32.783421300494, -79.9286049331058, 32.7836629630692], "geometry": {"coordinates": [[[-79.9287071316399, 32.783421300494], [-79.9286477977311, 32.7834577192158], [-79.9286049331058, 32.7834860988798], [-79.928652634104, 32.7835624485092], [-79.9287187986455, 32.7836629630692], [-79.9288160940495, 32.7836236355008], [-79.9287060585271, 32.7834517632373], [-79.9287207096526, 32.783445816764], [-79.9287071316399, 32.783421300494]]], "type": "Polygon"}, "id": "219", "properties": {"OBJECTID": 2429, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 344.240234375, "Shape__Length": 84.1361736022051, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9287659580003, 32.7864456993985, -79.9283597020026, 32.7871523379681], "geometry": {"coordinates": [[[-79.9287659580003, 32.7871145925747], [-79.9287360843651, 32.7868627060074], [-79.9287316353817, 32.7868252173917], [-79.928716589403, 32.7866984317379], [-79.928712349864, 32.7866626692673], [-79.9287058773914, 32.7866080686237], [-79.9286866303445, 32.7864456993985], [-79.9283597020026, 32.7865660026997], [-79.9283938608065, 32.7867636390455], [-79.9284619424794, 32.7871523379681], [-79.9287659580003, 32.7871145925747]]], "type": "Polygon"}, "id": "220", "properties": {"OBJECTID": 2430, "ORDNO": "2018-034", "ORDSTAT": null, "Shape__Area": 3025.505859375, "Shape__Length": 241.41613335487, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9290647497892, 32.7866586501204, -79.928716589403, 32.7868627060074], "geometry": {"coordinates": [[[-79.928716589403, 32.7866984317379], [-79.9287316353817, 32.7868252173917], [-79.9287360843651, 32.7868627060074], [-79.9290647497892, 32.7868219029534], [-79.9290370699347, 32.7866586501204], [-79.9289615204409, 32.7866680280038], [-79.928716589403, 32.7866984317379]]], "type": "Polygon"}, "id": "221", "properties": {"OBJECTID": 2431, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 797.50390625, "Shape__Length": 116.741890451449, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9281919260753, 32.7840000490971, -79.9262426769481, 32.7870850411199], "geometry": {"coordinates": [[[-79.9281919260753, 32.7865519163054], [-79.9281392581166, 32.7862977619856], [-79.9279893776981, 32.7854503476689], [-79.9279761386634, 32.7852829401163], [-79.9280054371995, 32.7852820145334], [-79.9278586078385, 32.7840000490971], [-79.9276074964529, 32.784031371263], [-79.9273199608385, 32.7840608052605], [-79.9266993472806, 32.7841184997255], [-79.9262426769481, 32.7841548325292], [-79.9262699479434, 32.7844351200402], [-79.926297715379, 32.784594159999], [-79.9263340524861, 32.7847606837472], [-79.9263610597067, 32.7848772116675], [-79.926398117989, 32.7849968345081], [-79.9264481198657, 32.7851910635138], [-79.9264772257119, 32.7853467089478], [-79.9265320110272, 32.7857812516911], [-79.9265590992639, 32.7859960335741], [-79.9266894594994, 32.7870850411199], [-79.9273608861954, 32.7868449942456], [-79.9275159478116, 32.786789398142], [-79.9281919260753, 32.7865519163054]]], "type": "Polygon"}, "id": "222", "properties": {"OBJECTID": 2432, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 63056.564453125, "Shape__Length": 1097.82195750317, "ZONE_BASE": "LI", "__folium_color": "#8c564b"}, "type": "Feature"}, {"bbox": [-79.9289631353831, 32.7839204899241, -79.927843780306, 32.7852820145334], "geometry": {"coordinates": [[[-79.9289631353831, 32.7852521942777], [-79.9289469998202, 32.7849308838804], [-79.9287582601897, 32.7845357954222], [-79.9283954969813, 32.7839204899241], [-79.9280482895124, 32.7839762208393], [-79.927843780306, 32.7840018310469], [-79.9278586078385, 32.7840000490971], [-79.9280054371995, 32.7852820145334], [-79.9289631353831, 32.7852521942777]]], "type": "Polygon"}, "id": "223", "properties": {"OBJECTID": 2433, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16052.2421875, "Shape__Length": 531.138943653146, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9276425589871, 32.7831553753807, -79.926108062882, 32.7840477607577], "geometry": {"coordinates": [[[-79.9275308550174, 32.7831553753807], [-79.926108062882, 32.7833035150821], [-79.9262009210903, 32.7840477607577], [-79.9266860487438, 32.7840091174657], [-79.9273050335969, 32.7839515828493], [-79.9276273745995, 32.7839177590215], [-79.9276425589871, 32.7839159540728], [-79.9276425116574, 32.7839156353097], [-79.9275994072963, 32.7836221138036], [-79.9275308550174, 32.7831553753807]]], "type": "Polygon"}, "id": "224", "properties": {"OBJECTID": 2434, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16175.43359375, "Shape__Length": 521.592246003231, "ZONE_BASE": "LI", "__folium_color": "#8c564b"}, "type": "Feature"}, {"bbox": [-79.9283492660204, 32.7831147609868, -79.9275308550174, 32.7839156353097], "geometry": {"coordinates": [[[-79.9283492660204, 32.7838163178945], [-79.9282351755129, 32.7836124296655], [-79.9280342163002, 32.7833756189184], [-79.927920901462, 32.7831147609868], [-79.9275308550174, 32.7831553753807], [-79.9275994072963, 32.7836221138036], [-79.9276425116574, 32.7839156353097], [-79.9280288516389, 32.7838676191469], [-79.9281935952464, 32.7838433088159], [-79.9283492660204, 32.7838163178945]]], "type": "Polygon"}, "id": "225", "properties": {"OBJECTID": 2435, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6089.33984375, "Shape__Length": 330.093809089391, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9350262732163, 32.7922022405248, -79.9307171754025, 32.8003427355627], "geometry": {"coordinates": [[[-79.9350262732163, 32.8002109237446], [-79.9349939416528, 32.8001597643031], [-79.9349869427643, 32.8000533903184], [-79.9347151279232, 32.7995149965861], [-79.9347625385019, 32.7994967818883], [-79.9345915689613, 32.7991569890342], [-79.9334495804411, 32.7968872711629], [-79.9334128377731, 32.7969011367817], [-79.9333333311924, 32.7967384837071], [-79.9333630520069, 32.7967272524919], [-79.9329580979974, 32.7958984507161], [-79.9327034297088, 32.7953210424927], [-79.9321771879071, 32.7942749088004], [-79.9318485120748, 32.7943989446001], [-79.9314271463183, 32.7935665873228], [-79.9317596840539, 32.7934440086018], [-79.9314420312346, 32.7928112883187], [-79.9311334740543, 32.7922022405248], [-79.9307171754025, 32.7924161143403], [-79.9308590820113, 32.7927382297656], [-79.9315317939482, 32.7940788237655], [-79.9332522920546, 32.7974986588942], [-79.9341284797956, 32.7992401032472], [-79.9346829577578, 32.8003427355627], [-79.9350262732163, 32.8002109237446]]], "type": "Polygon"}, "id": "226", "properties": {"OBJECTID": 2436, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 55611.91796875, "Shape__Length": 2476.330726445, "ZONE_BASE": "LI", "__folium_color": "#8c564b"}, "type": "Feature"}, {"bbox": [-79.9329022846496, 32.7917338689193, -79.9312821259157, 32.7940215988902], "geometry": {"coordinates": [[[-79.9329022846496, 32.7937768591128], [-79.9328650197146, 32.7937039371518], [-79.9328340626393, 32.7936433577214], [-79.9328031159855, 32.7935828027239], [-79.9327721464604, 32.7935222006234], [-79.932741189503, 32.7934616220725], [-79.9327102440457, 32.793401067062], [-79.9326792861176, 32.7933404875851], [-79.9326434408688, 32.7932697234103], [-79.9326582853838, 32.7932640531945], [-79.9325750937376, 32.7930997189435], [-79.9327677741764, 32.7930260846742], [-79.9325133291587, 32.7925246262629], [-79.932488151693, 32.7924864455855], [-79.9324396061141, 32.7924350051226], [-79.9321128034456, 32.7921477581481], [-79.9316586389096, 32.7917338689193], [-79.9312821259157, 32.7920780015827], [-79.9314468960743, 32.7923987991176], [-79.9322619054492, 32.7940215988902], [-79.9329022846496, 32.7937768591128]]], "type": "Polygon"}, "id": "227", "properties": {"OBJECTID": 2442, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 25169.9609375, "Shape__Length": 755.731332880395, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9332903800265, 32.776357175726, -79.9327943106819, 32.7766515538966], "geometry": {"coordinates": [[[-79.932810781805, 32.7765320613129], [-79.9329611153504, 32.7765176510151], [-79.9329780963606, 32.7766515538966], [-79.9332757248523, 32.7766246280159], [-79.9332677416105, 32.7765617482975], [-79.9332903800265, 32.7765596920188], [-79.9332647061031, 32.776357175726], [-79.932955658237, 32.7763868066714], [-79.9327943106819, 32.7764022301318], [-79.932810781805, 32.7765320613129]]], "type": "Polygon"}, "id": "228", "properties": {"OBJECTID": 2462, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1532.95703125, "Shape__Length": 175.857595134358, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9340521674634, 32.7766190621834, -79.93282744901, 32.7777166464302], "geometry": {"coordinates": [[[-79.93282744901, 32.7766633218087], [-79.932961141699, 32.7777166464302], [-79.9340521674634, 32.7776147137558], [-79.9340192568802, 32.7773011547391], [-79.9339980005385, 32.777303140229], [-79.9339571736066, 32.7769587109469], [-79.933920882437, 32.7766664229015], [-79.9337604105928, 32.7766840638652], [-79.9337777926222, 32.7768320856439], [-79.9335951125162, 32.7768486084461], [-79.933581937575, 32.7767268315412], [-79.9333534869139, 32.7767475173504], [-79.9333371924211, 32.7766190621834], [-79.9332757248523, 32.7766246280159], [-79.9329780963606, 32.7766515538966], [-79.93282744901, 32.7766633218087]]], "type": "Polygon"}, "id": "229", "properties": {"OBJECTID": 2463, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15612.341796875, "Shape__Length": 565.327878204524, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9329780963606, 32.7765176510151, -79.932810781805, 32.7766635105049], "geometry": {"coordinates": [[[-79.9329780963606, 32.7766515538966], [-79.9329611153504, 32.7765176510151], [-79.932810781805, 32.7765320613129], [-79.9328274733915, 32.7766635105049], [-79.9329780963606, 32.7766515538966]]], "type": "Polygon"}, "id": "230", "properties": {"OBJECTID": 2464, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 297.52734375, "Shape__Length": 69.0170525660696, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9389466545289, 32.7909343369721, -79.937436884003, 32.7923001442967], "geometry": {"coordinates": [[[-79.938418977028, 32.7909343369721], [-79.9378854429989, 32.7911246591595], [-79.937436884003, 32.7913020749701], [-79.9380964080593, 32.7923001442967], [-79.9389466545289, 32.7917178597275], [-79.938418977028, 32.7909343369721]]], "type": "Polygon"}, "id": "231", "properties": {"OBJECTID": 2477, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16255.443359375, "Shape__Length": 512.202351128383, "ZONE_BASE": "MU-2", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9393929927468, 32.7907429134561, -79.938418977028, 32.7917178597275], "geometry": {"coordinates": [[[-79.938418977028, 32.7909343369721], [-79.9389466545289, 32.7917178597275], [-79.939023336958, 32.791665344342], [-79.9391468876055, 32.7915807322222], [-79.9390277149416, 32.7914069648205], [-79.9393929927468, 32.7911898304233], [-79.9392660932775, 32.7910396045395], [-79.9391239038713, 32.7911142702362], [-79.9390708638855, 32.7910411773641], [-79.9391074024795, 32.7910240580979], [-79.9390408192725, 32.790923346294], [-79.9390387507323, 32.7909202179246], [-79.9390344633413, 32.7909219357191], [-79.9390259314595, 32.7909253554465], [-79.9389202062084, 32.7907429134561], [-79.9385254681666, 32.790893667328], [-79.938418977028, 32.7909343369721]]], "type": "Polygon"}, "id": "232", "properties": {"OBJECTID": 2478, "ORDNO": "2015-177", "ORDSTAT": null, "Shape__Area": 6266.8046875, "Shape__Length": 388.867232300202, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.929122901313, 32.7760539104448, -79.9281059775697, 32.7764031378946], "geometry": {"coordinates": [[[-79.9282039757786, 32.7763977655847], [-79.9282104911117, 32.77639713547], [-79.9282618004108, 32.7763920874144], [-79.9282732022366, 32.7763909851591], [-79.9283489419009, 32.7763837468043], [-79.9284303824911, 32.7763759550133], [-79.9284336348877, 32.7763760691776], [-79.9285344611905, 32.7763794450106], [-79.928534500212, 32.7763762654807], [-79.9285573038574, 32.7763741474943], [-79.9286248961925, 32.7763678648], [-79.9286476998335, 32.7763657467967], [-79.9287120703258, 32.7763569458702], [-79.9288049505996, 32.7763449603729], [-79.9289257700812, 32.7763326152036], [-79.9289137574379, 32.7762352353543], [-79.9289811679876, 32.7762292277362], [-79.929122901313, 32.7762165965222], [-79.9291087431773, 32.7760539104448], [-79.9289653515541, 32.7760722555792], [-79.9288912104592, 32.7760817421556], [-79.9288040248941, 32.77608517768], [-79.9287100465721, 32.7760963680593], [-79.9286365936772, 32.7761143170192], [-79.9285463536601, 32.7761258619685], [-79.9284306314886, 32.7761406674287], [-79.928340391417, 32.776152212226], [-79.9282679790859, 32.776161476388], [-79.928204992772, 32.776169534371], [-79.9281059775697, 32.7761819553523], [-79.9281211656778, 32.7761802586104], [-79.9281444916985, 32.7764031378946], [-79.9281584314277, 32.7764020894512], [-79.928203635819, 32.7763977184161], [-79.9282039107229, 32.7763971517665], [-79.9282039757786, 32.7763977655847]]], "type": "Polygon"}, "id": "233", "properties": {"OBJECTID": 2600, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3301.947265625, "Shape__Length": 290.451585855034, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9291549154217, 32.7761802586104, -79.9271459485547, 32.7767593421157], "geometry": {"coordinates": [[[-79.9291549154217, 32.7765685312429], [-79.9291453631215, 32.7764659296826], [-79.9291408366548, 32.7764133770861], [-79.929130616448, 32.7763202353433], [-79.929122901313, 32.7762165965222], [-79.9289665958504, 32.7762311851972], [-79.9289137574379, 32.7762352353543], [-79.9289257700812, 32.7763326152036], [-79.9288049505996, 32.7763449603729], [-79.9287120703258, 32.7763569458702], [-79.9286476998335, 32.7763657467967], [-79.9286248961925, 32.7763678648], [-79.9285573038574, 32.7763741474943], [-79.928534500212, 32.7763762654807], [-79.9285344611905, 32.7763794450106], [-79.9284336348877, 32.7763760691776], [-79.9284303824911, 32.7763759550133], [-79.9283489419009, 32.7763837468043], [-79.9282732022366, 32.7763909851591], [-79.9282618004108, 32.7763920874144], [-79.9282104911117, 32.77639713547], [-79.9282039757786, 32.7763977655847], [-79.9282039107229, 32.7763971517665], [-79.928203635819, 32.7763977184161], [-79.9281584314277, 32.7764020894512], [-79.9281444916985, 32.7764031378946], [-79.9281211656778, 32.7761802586104], [-79.9271850758488, 32.7762972284892], [-79.9271459485547, 32.7767593421157], [-79.9278998049587, 32.7766867592248], [-79.9279006469003, 32.7766949579756], [-79.9284730183457, 32.7766398285675], [-79.9284721742161, 32.776631629802], [-79.9291549154217, 32.7765685312429]]], "type": "Polygon"}, "id": "234", "properties": {"OBJECTID": 2601, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10901.939453125, "Shape__Length": 594.777282812962, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9498886710174, 32.7892076328559, -79.9492759693038, 32.7896898601105], "geometry": {"coordinates": [[[-79.9497628426629, 32.7896898601105], [-79.9498886710174, 32.7896398773635], [-79.9496526460253, 32.7892076328559], [-79.9492759693038, 32.7893833793838], [-79.9494016320452, 32.7896531069897], [-79.9494907070444, 32.7896115315935], [-79.9495769023894, 32.7895712904752], [-79.9496009638252, 32.7896229097539], [-79.9497024549254, 32.7895755500151], [-79.9497628426629, 32.7896898601105]]], "type": "Polygon"}, "id": "235", "properties": {"OBJECTID": 2843, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2331.21484375, "Shape__Length": 223.929384580975, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.950490301632, 32.78912320792, -79.9494016320452, 32.7906904747377], "geometry": {"coordinates": [[[-79.9495769023894, 32.7895712904752], [-79.9494907070444, 32.7896115315935], [-79.9494016320452, 32.7896531069897], [-79.9494243312343, 32.789702758527], [-79.9494409875629, 32.7897383779287], [-79.9494648040587, 32.7897874582708], [-79.9495060955732, 32.7898717393646], [-79.9495497656549, 32.789961192147], [-79.9495918667339, 32.7900458201543], [-79.9496347389715, 32.7901339800402], [-79.9496673057076, 32.7901997138939], [-79.9496823083433, 32.7902291252645], [-79.9499151975287, 32.7905872354422], [-79.9499823369686, 32.7906904747377], [-79.9502241912426, 32.7905937315541], [-79.9502490891156, 32.7905639564633], [-79.9504558781279, 32.7903166617752], [-79.9504083644123, 32.7902436303255], [-79.950490301632, 32.7902062631532], [-79.9503637927039, 32.7899828548757], [-79.9502897655463, 32.7900166283775], [-79.9502436553806, 32.7899334497364], [-79.9502070904184, 32.789867490546], [-79.9501696267916, 32.7897999111529], [-79.9500925020972, 32.7896607852426], [-79.9501145928159, 32.7896520493483], [-79.9498335935367, 32.78912320792], [-79.9496526460253, 32.7892076328559], [-79.9498886710174, 32.7896398773635], [-79.9497628426629, 32.7896898601105], [-79.9497024549254, 32.7895755500151], [-79.9496009638252, 32.7896229097539], [-79.9495769023894, 32.7895712904752]]], "type": "Polygon"}, "id": "236", "properties": {"OBJECTID": 2844, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11354.0234375, "Shape__Length": 582.311084031069, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9357795506077, 32.7804406059293, -79.934926700222, 32.7806043271628], "geometry": {"coordinates": [[[-79.9354207045445, 32.7806043271628], [-79.9357696201628, 32.7804667803839], [-79.9357728894509, 32.7804654344274], [-79.9357753590043, 32.7804631354887], [-79.9357778274791, 32.7804608374424], [-79.9357786712301, 32.7804583548154], [-79.9357795160693, 32.7804557829162], [-79.9357795506077, 32.7804529496505], [-79.9357787686016, 32.7804503672064], [-79.9357771711176, 32.7804479481152], [-79.9357755725892, 32.7804456146892], [-79.9357731543825, 32.7804437016025], [-79.9357699227559, 32.7804419581992], [-79.9357666806742, 32.7804409848722], [-79.93576261786, 32.7804406059293], [-79.934926700222, 32.780478686259], [-79.9349414656233, 32.7806019937811], [-79.9349414899115, 32.7806021905926], [-79.9349423828876, 32.7806019756136], [-79.9351201631362, 32.7805658328397], [-79.9354144647602, 32.780506000781], [-79.9354207045445, 32.7806043271628]]], "type": "Polygon"}, "id": "237", "properties": {"OBJECTID": 2988, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1079.595703125, "Shape__Length": 224.738479117006, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9362710745163, 32.7796941193151, -79.9348446011311, 32.7801914712087], "geometry": {"coordinates": [[[-79.9362710745163, 32.780112072376], [-79.936224898235, 32.7797624036528], [-79.9362159685302, 32.7796941193151], [-79.9358731267847, 32.7797242087858], [-79.935468394535, 32.779759602647], [-79.9348446011311, 32.7798142144194], [-79.9348668725066, 32.7799890451124], [-79.934892061232, 32.7801914712087], [-79.9356644808438, 32.7801569619053], [-79.9358598240279, 32.7801481837431], [-79.9360218807296, 32.7801339572769], [-79.9361350770024, 32.7801240322189], [-79.9362710745163, 32.780112072376]]], "type": "Polygon"}, "id": "238", "properties": {"OBJECTID": 2989, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8259.703125, "Shape__Length": 413.304841806259, "ZONE_BASE": "DR-4", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9362889488344, 32.780112072376, -79.9361350770024, 32.7802987036956], "geometry": {"coordinates": [[[-79.9361350770024, 32.7801240322189], [-79.9361589799493, 32.7802987036956], [-79.9362889488344, 32.7802474327184], [-79.9362710745163, 32.780112072376], [-79.9361350770024, 32.7801240322189]]], "type": "Polygon"}, "id": "239", "properties": {"OBJECTID": 2990, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 313.57421875, "Shape__Length": 72.5155392788902, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9360302105825, 32.7801339572769, -79.934892061232, 32.7803691262805], "geometry": {"coordinates": [[[-79.934892061232, 32.7801914712087], [-79.9349134848546, 32.7803691262805], [-79.9352724329832, 32.780352754076], [-79.9358674228742, 32.7803256317977], [-79.9360302105825, 32.7803181997891], [-79.9360218807296, 32.7801339572769], [-79.9358598240279, 32.7801481837431], [-79.9356644808438, 32.7801569619053], [-79.934892061232, 32.7801914712087]]], "type": "Polygon"}, "id": "240", "properties": {"OBJECTID": 2991, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2957.673828125, "Shape__Length": 298.572499475965, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9361246173624, 32.7789084124985, -79.9357609581077, 32.779031706225], "geometry": {"coordinates": [[[-79.9361119317359, 32.7789084124985], [-79.9358521610124, 32.7789307226906], [-79.9357609581077, 32.7789384309057], [-79.9357793444172, 32.779031706225], [-79.9361246173624, 32.7790021531335], [-79.9361119317359, 32.7789084124985]]], "type": "Polygon"}, "id": "241", "properties": {"OBJECTID": 2992, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 486.369140625, "Shape__Length": 102.916049458184, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9361722426745, 32.7788145005141, -79.9353858826208, 32.7794144798696], "geometry": {"coordinates": [[[-79.9353858826208, 32.7788769286645], [-79.9354126638219, 32.7790155447098], [-79.9354402427507, 32.7791554591204], [-79.9354597871322, 32.7791537380474], [-79.9354760331838, 32.7792890870436], [-79.9354711476116, 32.7792894738038], [-79.9354776323431, 32.7793580796202], [-79.9356128143191, 32.7793461990973], [-79.9356217435606, 32.7794144798696], [-79.9356868912594, 32.7794087771168], [-79.9357772833927, 32.7794008878449], [-79.9361722426745, 32.7793662692451], [-79.9361633141188, 32.7792979849158], [-79.9361543844657, 32.779229704184], [-79.9361364917409, 32.7790958885166], [-79.9361246173624, 32.7790021531335], [-79.9357793444172, 32.779031706225], [-79.9357609581077, 32.7789384309057], [-79.9358521610124, 32.7789307226906], [-79.9361119317359, 32.7789084124985], [-79.9361059846071, 32.7788623184945], [-79.9360992460897, 32.7788145005141], [-79.9358345849212, 32.7788377096511], [-79.9357433789243, 32.7788456793574], [-79.9353858826208, 32.7788769286645]]], "type": "Polygon"}, "id": "242", "properties": {"OBJECTID": 2993, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5080.505859375, "Shape__Length": 384.347189683871, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9362087737657, 32.7788769286645, -79.9347352201521, 32.7797594996768], "geometry": {"coordinates": [[[-79.9353858826208, 32.7788769286645], [-79.9347352201521, 32.7789339700081], [-79.9347530425438, 32.7790733712515], [-79.9347700527039, 32.7792127627159], [-79.9347870953978, 32.7793494047674], [-79.9348041370887, 32.7794861333855], [-79.9348211788111, 32.7796228638068], [-79.93483740826, 32.7797594996768], [-79.9352584264121, 32.7797227048028], [-79.9353879089488, 32.7797113773434], [-79.935517391429, 32.7796999640725], [-79.935635471723, 32.7796896527058], [-79.9357226085236, 32.7796819912699], [-79.9358138143299, 32.7796741090471], [-79.9358781488166, 32.7796683991167], [-79.935943295655, 32.7796627809907], [-79.936036946854, 32.7796544887946], [-79.9362087737657, 32.7796394903191], [-79.9361901344765, 32.7795001696748], [-79.9361812047817, 32.7794318889434], [-79.9361722426745, 32.7793662692451], [-79.9357772833927, 32.7794008878449], [-79.9356868912594, 32.7794087771168], [-79.9356217435606, 32.7794144798696], [-79.9356128143191, 32.7793461990973], [-79.9354776323431, 32.7793580796202], [-79.9354711476116, 32.7792894738038], [-79.9354760331838, 32.7792890870436], [-79.9354597871322, 32.7791537380474], [-79.9354402427507, 32.7791554591204], [-79.9354126638219, 32.7790155447098], [-79.9353858826208, 32.7788769286645]]], "type": "Polygon"}, "id": "243", "properties": {"OBJECTID": 2994, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11251.55859375, "Shape__Length": 525.672617789523, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9375602258637, 32.7787552818369, -79.9362539759885, 32.7800589477089], "geometry": {"coordinates": [[[-79.9362539759885, 32.7788615907373], [-79.9363835717333, 32.7798424061946], [-79.9367673390836, 32.7800589477089], [-79.9375602258637, 32.7797461149922], [-79.9374144695672, 32.7787552818369], [-79.9362539759885, 32.7788615907373]]], "type": "Polygon"}, "id": "244", "properties": {"OBJECTID": 2995, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 19335.1171875, "Shape__Length": 541.750111369603, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9366470850147, 32.7799638704043, -79.9364012196459, 32.7801924598697], "geometry": {"coordinates": [[[-79.9364144181529, 32.7799640938451], [-79.9364111540879, 32.7799649258179], [-79.9364078816846, 32.7799664422108], [-79.9364045987767, 32.7799687331887], [-79.9364029447959, 32.7799710383286], [-79.9364012887369, 32.7799734264192], [-79.9364012541749, 32.7799762632919], [-79.9364012196459, 32.7799790974594], [-79.936429532624, 32.7801924598697], [-79.9366371578891, 32.7801103417963], [-79.9366404292854, 32.7801089958352], [-79.9366428924863, 32.7801070404233], [-79.9366445475417, 32.7801047343877], [-79.9366462025532, 32.780102431959], [-79.9366470504607, 32.7800996057633], [-79.9366470850147, 32.7800967688905], [-79.9366463029863, 32.7800941864521], [-79.9366447054846, 32.7800917673722], [-79.9366431079831, 32.7800893482924], [-79.9366406939671, 32.7800872657144], [-79.9364249745271, 32.7799656447913], [-79.9364217355758, 32.7799644153877], [-79.9364184882863, 32.7799638704043], [-79.9364144181529, 32.7799640938451]]], "type": "Polygon"}, "id": "245", "properties": {"OBJECTID": 2996, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 433.986328125, "Shape__Length": 90.5706651338279, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9360929020859, 32.7784613388151, -79.9359124870429, 32.778771709487], "geometry": {"coordinates": [[[-79.9360533646242, 32.7784613388151], [-79.9359124870429, 32.7784729204611], [-79.9359341633477, 32.7786350596298], [-79.9359520211247, 32.778771709487], [-79.9360929020859, 32.7787593639662], [-79.9360750263104, 32.7786241731441], [-79.9360533646242, 32.7784613388151]]], "type": "Polygon"}, "id": "246", "properties": {"OBJECTID": 2997, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 626.23046875, "Shape__Length": 111.033148928168, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9359520211247, 32.77847293609, -79.9349733667599, 32.7788427374173], "geometry": {"coordinates": [[[-79.9351409353086, 32.7788427374173], [-79.935302989727, 32.7788285975799], [-79.9354161822211, 32.7788186758751], [-79.935516348026, 32.7788098410573], [-79.9356165117317, 32.7788010891083], [-79.935714232074, 32.7787925773527], [-79.9358371987714, 32.7787817933664], [-79.9359520211247, 32.778771709487], [-79.9359341633477, 32.7786350596298], [-79.9359155414501, 32.7784943656098], [-79.9359146684469, 32.7784944328685], [-79.9359123139103, 32.77847293609], [-79.9358099109371, 32.7784812476407], [-79.9358043238444, 32.7784823506811], [-79.935340678962, 32.7785194554854], [-79.9349733667599, 32.778550699313], [-79.9349757174692, 32.7785671530167], [-79.9349742802664, 32.7785672640559], [-79.9349885222631, 32.7786667729756], [-79.9351163733219, 32.7786556047672], [-79.9351409353086, 32.7788427374173]]], "type": "Polygon"}, "id": "247", "properties": {"OBJECTID": 2998, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3861.447265625, "Shape__Length": 290.574928469788, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9358099109371, 32.7775944499093, -79.9345948979772, 32.7788787557083], "geometry": {"coordinates": [[[-79.9358099109371, 32.7784812476407], [-79.935807733128, 32.7784814243939], [-79.9357584443785, 32.7781552338834], [-79.9350339485671, 32.7782325236265], [-79.9350257896754, 32.7781328196691], [-79.9350620260569, 32.7781301220912], [-79.9350564829088, 32.7780854411197], [-79.9351649577109, 32.7780737118924], [-79.9351573398348, 32.7780169021247], [-79.9352800667099, 32.7780042534296], [-79.9352212377874, 32.7775944499093], [-79.935103951654, 32.7776065714327], [-79.9350021415968, 32.7776170239067], [-79.9349084757194, 32.7776266895594], [-79.9348213252211, 32.7776357228701], [-79.9347064822356, 32.7776475207856], [-79.9345948979772, 32.7776590033752], [-79.9346257056467, 32.7779342402764], [-79.934631494672, 32.7779930461468], [-79.9346410676072, 32.7780751649401], [-79.93465277993, 32.7781819522221], [-79.9346637459577, 32.778283237222], [-79.934697438662, 32.7785886493952], [-79.9347092024751, 32.7786913157385], [-79.9347296914213, 32.7788787557083], [-79.9351409353086, 32.7788427374173], [-79.9351163733219, 32.7786556047672], [-79.9349885222631, 32.7786667729756], [-79.9349742802664, 32.7785672640559], [-79.9349757174692, 32.7785671530167], [-79.9349733667599, 32.778550699313], [-79.935340678962, 32.7785194554854], [-79.9358043238444, 32.7784823506811], [-79.9358099109371, 32.7784812476407]]], "type": "Polygon"}, "id": "248", "properties": {"OBJECTID": 2999, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11939.720703125, "Shape__Length": 663.376043192551, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9359469980134, 32.7775220961735, -79.9352449223006, 32.7777284858987], "geometry": {"coordinates": [[[-79.9354913717746, 32.7777284858987], [-79.9354970748237, 32.7777277626529], [-79.9355939984226, 32.7777177821971], [-79.9356917364296, 32.7777077221741], [-79.9356990662257, 32.7777070130719], [-79.9356953218758, 32.7776806090389], [-79.9357661817719, 32.7776732379576], [-79.9358460003083, 32.7776650862192], [-79.9359469980134, 32.7776546259773], [-79.9359290891894, 32.7775220961735], [-79.9358264649131, 32.7775327154017], [-79.9357474588129, 32.7775408732923], [-79.9356692681283, 32.7775489570613], [-79.9355715303074, 32.7775590161644], [-79.9354746069042, 32.7775689947987], [-79.9353972306206, 32.7775769971014], [-79.9353198543008, 32.7775850011585], [-79.9352449223006, 32.7775926810391], [-79.9352644578723, 32.777724966285], [-79.9353385755975, 32.7777173622736], [-79.9354159530783, 32.7777093600172], [-79.9354868140888, 32.777701989107], [-79.9354913717746, 32.7777284858987]]], "type": "Polygon"}, "id": "249", "properties": {"OBJECTID": 3000, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1434.9453125, "Shape__Length": 195.567330394616, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9359849450773, 32.777681115677, -79.9357886599619, 32.7779602999123], "geometry": {"coordinates": [[[-79.9357886599619, 32.7776977433676], [-79.9357976373172, 32.7777620744967], [-79.9358057719941, 32.7778288034884], [-79.9358147221267, 32.7778953700289], [-79.9358236922229, 32.7779602999123], [-79.9359849450773, 32.7779450393509], [-79.9359767882723, 32.7778801138488], [-79.9359678380177, 32.7778135473204], [-79.9359588898099, 32.7777468139699], [-79.9359507424616, 32.777681115677], [-79.9357886599619, 32.7776977433676]]], "type": "Polygon"}, "id": "250", "properties": {"OBJECTID": 3001, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 635.490234375, "Shape__Length": 106.372862756908, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9354691305463, 32.7777289574212, -79.9352674620829, 32.7780345956245], "geometry": {"coordinates": [[[-79.9352674620829, 32.7777454352275], [-79.9352801938025, 32.7778354833345], [-79.935289969492, 32.7779009379249], [-79.9352997462636, 32.7779663925242], [-79.9353094895309, 32.7780345956245], [-79.9354691305463, 32.7780181168612], [-79.9354593871452, 32.7779499146754], [-79.9354496102558, 32.7778844600889], [-79.9354406467461, 32.7778190134821], [-79.9354271025666, 32.7777289574212], [-79.9352674620829, 32.7777454352275]]], "type": "Polygon"}, "id": "251", "properties": {"OBJECTID": 3002, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 691.501953125, "Shape__Length": 112.949361416124, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9357584443785, 32.7780290714006, -79.9351207854844, 32.7782212249865], "geometry": {"coordinates": [[[-79.9357376793146, 32.7780290714006], [-79.9351207854844, 32.7780926708492], [-79.9351380136298, 32.7782212249865], [-79.9357584443785, 32.7781552338834], [-79.9357564050606, 32.7781415984342], [-79.9357376793146, 32.7780290714006]]], "type": "Polygon"}, "id": "252", "properties": {"OBJECTID": 3003, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1179.6328125, "Shape__Length": 172.795016454843, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9360497791148, 32.7780086833419, -79.9358188359302, 32.778448655123], "geometry": {"coordinates": [[[-79.9358188359302, 32.7780251131264], [-79.9358277756508, 32.7780925363196], [-79.9358367446998, 32.7781575545739], [-79.9358448783994, 32.7782243692312], [-79.9358538485188, 32.7782893018199], [-79.9358628081878, 32.7783550928643], [-79.9358746832403, 32.778448655123], [-79.9360497791148, 32.7784322261595], [-79.9360370905071, 32.778338655942], [-79.9360281296644, 32.7782729505758], [-79.9360199748738, 32.7782078546455], [-79.9360110266297, 32.7781411176891], [-79.936002870831, 32.7780761065222], [-79.9359939309769, 32.7780086833419], [-79.9358188359302, 32.7780251131264]]], "type": "Polygon"}, "id": "253", "properties": {"OBJECTID": 3004, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1104.03515625, "Shape__Length": 152.06857441239, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9374534987823, 32.7774373008967, -79.936747626409, 32.7778215829918], "geometry": {"coordinates": [[[-79.9367900515024, 32.777818225059], [-79.9367908240705, 32.7778215829918], [-79.937233615474, 32.7777996597347], [-79.937232849135, 32.777795788715], [-79.9374534987823, 32.7777793242265], [-79.9374228860969, 32.777487427514], [-79.9374221187207, 32.7774836412592], [-79.9374213513445, 32.7774798550043], [-79.9374197685211, 32.7774762321132], [-79.9374189990378, 32.7774726189923], [-79.9374166017771, 32.7774690765048], [-79.9374150158152, 32.7774657115111], [-79.9374126154269, 32.7774624260193], [-79.9374102129425, 32.7774593127597], [-79.9374069949782, 32.7774563655689], [-79.9374037760154, 32.7774535004363], [-79.9374005528025, 32.7774508967988], [-79.9373973286076, 32.7774485492737], [-79.9373932889081, 32.7774462821428], [-79.9373900584438, 32.7774443620328], [-79.9373868206041, 32.7774430478915], [-79.9373827715073, 32.7774414651712], [-79.9373787213954, 32.7774401412685], [-79.9373754783426, 32.7774392554532], [-79.9373722311164, 32.7774386248207], [-79.9373689849823, 32.777438079872], [-79.9373649222651, 32.7774376162097], [-79.9373616719274, 32.7774374166269], [-79.9373584195016, 32.7774373008967], [-79.937355163879, 32.7774373600943], [-79.9373510938904, 32.7774376692408], [-79.936747626409, 32.7774945287046], [-79.9367900515024, 32.777818225059]]], "type": "Polygon"}, "id": "254", "properties": {"OBJECTID": 3005, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3356.794921875, "Shape__Length": 236.059592041044, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9367900515024, 32.7774945287046, -79.9363787058372, 32.7778529015236], "geometry": {"coordinates": [[[-79.9363787058372, 32.7775292059325], [-79.9364211306581, 32.7778529015236], [-79.9366768520595, 32.7778288378645], [-79.9367900515024, 32.777818225059], [-79.936747626409, 32.7774945287046], [-79.9366344273697, 32.7775051423723], [-79.9363787058372, 32.7775292059325]]], "type": "Polygon"}, "id": "255", "properties": {"OBJECTID": 3006, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1781.75390625, "Shape__Length": 168.881777597061, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9364211306581, 32.7775292059325, -79.936081450893, 32.7778809827559], "geometry": {"coordinates": [[[-79.9363787058372, 32.7775292059325], [-79.9362752787154, 32.7775389582061], [-79.9361718494357, 32.7775487103736], [-79.936081450893, 32.777557286159], [-79.9361238746144, 32.7778809827559], [-79.9362142734881, 32.7778724069388], [-79.9363177020791, 32.7778626547258], [-79.9364211306581, 32.7778529015236], [-79.9363787058372, 32.7775292059325]]], "type": "Polygon"}, "id": "256", "properties": {"OBJECTID": 3007, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1435.732421875, "Shape__Length": 152.831087626623, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.937535130838, 32.7777793242265, -79.93652969484, 32.7787044134604], "geometry": {"coordinates": [[[-79.9366460017669, 32.7778905059205], [-79.9366527070248, 32.7779410732694], [-79.9366860973703, 32.777937924807], [-79.9367002732128, 32.7780431045689], [-79.9367121731589, 32.7781346053575], [-79.9367144302171, 32.7781496585626], [-79.9367285883235, 32.7782562125653], [-79.9367427486082, 32.7783626782063], [-79.936756092345, 32.7784692242277], [-79.9366363787001, 32.7784802096596], [-79.93652969484, 32.7784900195243], [-79.9365438527871, 32.7785965726506], [-79.9365579950832, 32.7787044134604], [-79.9366646792261, 32.7786946892453], [-79.9367843931616, 32.7786837037854], [-79.9374603279438, 32.7786218018669], [-79.9374652082458, 32.7786218442553], [-79.9374692772385, 32.77862170915], [-79.937474163829, 32.7786212348413], [-79.9374790535364, 32.7786205044382], [-79.9374839474141, 32.7786194313741], [-79.9374880310576, 32.7786180924459], [-79.9374921126269, 32.7786169239463], [-79.9374953828756, 32.7786155788551], [-79.9374994738169, 32.7786136402697], [-79.9375027482576, 32.7786119507138], [-79.9375068455198, 32.7786094927262], [-79.937510944812, 32.7786068679167], [-79.9375142339031, 32.7786039745382], [-79.9375175261106, 32.7786008250655], [-79.937520820425, 32.7785975024588], [-79.9375241157596, 32.7785940959903], [-79.9375266008713, 32.7785904227563], [-79.9375282736309, 32.7785866576946], [-79.9375307608052, 32.7785828149335], [-79.9375324367141, 32.7785787910725], [-79.9375332992286, 32.7785747610488], [-79.9375341638281, 32.7785705596947], [-79.9375350284166, 32.7785663592423], [-79.9375350796328, 32.778562150824], [-79.937535130838, 32.7785579433073], [-79.9375343687041, 32.7785537251195], [-79.9374833861345, 32.7780639963533], [-79.9374534987823, 32.7777793242265], [-79.937232849135, 32.777795788715], [-79.937233615474, 32.7777996597347], [-79.9367908240705, 32.7778215829918], [-79.9367974750258, 32.7778766157458], [-79.9367331398, 32.7778825001943], [-79.9366460017669, 32.7778905059205]]], "type": "Polygon"}, "id": "257", "properties": {"OBJECTID": 3008, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10274.427734375, "Shape__Length": 451.91629861768, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.936756092345, 32.777865486481, -79.9361261231679, 32.778733914983], "geometry": {"coordinates": [[[-79.9366460017669, 32.7778905059205], [-79.9365873675287, 32.7778958347161], [-79.9365295466272, 32.7779011732599], [-79.9364709123088, 32.7779065074101], [-79.9364657177886, 32.777865486481], [-79.9361261231679, 32.7778966374223], [-79.9361380235927, 32.7779881355694], [-79.9361521966827, 32.7780934001496], [-79.9361663561941, 32.7781998694624], [-79.9361796991916, 32.7783064164465], [-79.9361938566818, 32.7784129696112], [-79.9362080152959, 32.7785195209812], [-79.9362221728206, 32.7786259893722], [-79.9362363136913, 32.778733914983], [-79.9365579950832, 32.7787044134604], [-79.9365438527871, 32.7785965726506], [-79.93652969484, 32.7784900195243], [-79.9366363787001, 32.7784802096596], [-79.936756092345, 32.7784692242277], [-79.9367427486082, 32.7783626782063], [-79.9367285883235, 32.7782562125653], [-79.9367144302171, 32.7781496585626], [-79.9367121731589, 32.7781346053575], [-79.9367002732128, 32.7780431045689], [-79.9366860973703, 32.777937924807], [-79.9366527070248, 32.7779410732694], [-79.9366460017669, 32.7778905059205]]], "type": "Polygon"}, "id": "258", "properties": {"OBJECTID": 3009, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5970.533203125, "Shape__Length": 345.816323218856, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9384375242658, 32.7773381255241, -79.9375777159217, 32.7777372940606], "geometry": {"coordinates": [[[-79.9383375461136, 32.7773443332033], [-79.9382699506255, 32.7773507880772], [-79.9382243454079, 32.7773550294892], [-79.9381111435193, 32.7773657328751], [-79.9379987571612, 32.7773763512491], [-79.9379401212118, 32.777381856532], [-79.9378757833229, 32.7773879967733], [-79.9378106330511, 32.7773940478601], [-79.9376941734352, 32.7774050625662], [-79.9375777159217, 32.777415989702], [-79.9376025631484, 32.777646933595], [-79.9376120396124, 32.7777372940606], [-79.9377903945196, 32.7777202921071], [-79.9379777080349, 32.7777024180364], [-79.9380811394009, 32.777692491208], [-79.9381756089407, 32.777683605682], [-79.9382106289974, 32.7776802148296], [-79.9382464623933, 32.7776768337319], [-79.9383401195991, 32.7776678526489], [-79.9383946846636, 32.7776626554443], [-79.9383979433713, 32.7776622553521], [-79.9384012052259, 32.7776615964606], [-79.9384044681222, 32.7776608519037], [-79.9384077341434, 32.777659850351], [-79.9384110022588, 32.7776586765659], [-79.9384142777097, 32.777656899517], [-79.9384175499917, 32.7776553830708], [-79.9384208306616, 32.7776531767937], [-79.9384241196536, 32.7776502860963], [-79.9384274065731, 32.7776475658275], [-79.9384290604931, 32.7776453454336], [-79.9384307175271, 32.7776428689456], [-79.93843237455, 32.7776403933594], [-79.9384340326474, 32.7776378294026], [-79.9384348783678, 32.7776351763293], [-79.9384365385483, 32.7776324410421], [-79.9384365720016, 32.7776296898348], [-79.9384374198381, 32.7776268627258], [-79.9384374542892, 32.7776240294602], [-79.9384374897818, 32.7776211105293], [-79.9384375242658, 32.7776182745586], [-79.9384279613732, 32.7775350406147], [-79.9384242934595, 32.7775021955312], [-79.9384043251278, 32.7773381255241], [-79.9383375461136, 32.7773443332033]]], "type": "Polygon"}, "id": "259", "properties": {"OBJECTID": 3010, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3951.29296875, "Shape__Length": 268.66652994037, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9393949213948, 32.7772496274, -79.9384849502227, 32.7778025278861], "geometry": {"coordinates": [[[-79.9388081829035, 32.7776413335392], [-79.9388233062451, 32.7778025278861], [-79.9389698976747, 32.7777886810581], [-79.9389592190199, 32.7776633452521], [-79.9393949213948, 32.7776221968294], [-79.9393777267828, 32.7774974944777], [-79.9393597178181, 32.7773728698368], [-79.9393425055689, 32.7772496274], [-79.9392358204269, 32.7772596939138], [-79.9391291341162, 32.7772697666375], [-79.9390224489141, 32.777279833867], [-79.938927165452, 32.7772888013619], [-79.9387708018314, 32.7773035093816], [-79.9386380562767, 32.7773161016968], [-79.9384849502227, 32.777330494016], [-79.9384975149578, 32.7774344556152], [-79.9385093342637, 32.7775329122601], [-79.9385181653057, 32.7776093526391], [-79.9385189442207, 32.7776121938641], [-79.9385197231028, 32.7776150377943], [-79.9385205030595, 32.7776177933541], [-79.9385220974651, 32.7776204676011], [-79.938522879494, 32.777623052732], [-79.9385244759609, 32.7776255574519], [-79.9385268858135, 32.7776280683277], [-79.9385284853943, 32.7776303169536], [-79.9385316992257, 32.7776336076777], [-79.9385349245073, 32.7776360444636], [-79.9385381508557, 32.777638217923], [-79.9385413844881, 32.7776398801053], [-79.9385446181793, 32.7776416252568], [-79.9385478570375, 32.7776427698311], [-79.9385510980048, 32.7776438287494], [-79.9385543421187, 32.7776446288684], [-79.9385575882937, 32.7776452594602], [-79.9385608376522, 32.7776457160254], [-79.9385640880114, 32.7776459146746], [-79.9385673415101, 32.7776459429042], [-79.9385705971067, 32.7776458863794], [-79.9385974729278, 32.7776432851019], [-79.9386007316079, 32.7776427993298], [-79.9386039934602, 32.7776421404328], [-79.9386072574434, 32.7776413940763], [-79.9386105213307, 32.7776404799776], [-79.9386146059856, 32.7776390526415], [-79.9386186937428, 32.7776373701129], [-79.9386219701973, 32.7776355100985], [-79.9386260642398, 32.7776333983509], [-79.9386293459082, 32.7776310216302], [-79.9386326297181, 32.7776285565482], [-79.9386359176868, 32.7776258371849], [-79.9386392056032, 32.7776229464724], [-79.9386416833173, 32.7776198755782], [-79.93864416314, 32.777616719028], [-79.9386458306146, 32.7776133831794], [-79.9386474990936, 32.7776098768926], [-79.9386491603303, 32.7776070541338], [-79.9386508278155, 32.7776037173833], [-79.9386524952937, 32.7776004690126], [-79.9386541481328, 32.7775983369861], [-79.9386566362778, 32.7775943201576], [-79.9386599377898, 32.7775903987655], [-79.9386632268304, 32.777587591031], [-79.9386665230979, 32.7775840131922], [-79.938669824646, 32.7775801765727], [-79.9386755485381, 32.7775776478868], [-79.9386796498884, 32.7775749346773], [-79.9386837397201, 32.777572993338], [-79.938688649226, 32.7775707164127], [-79.9386927348739, 32.7775692070157], [-79.9386976370307, 32.7775674467776], [-79.9387017185347, 32.7775662782378], [-79.9387057968705, 32.7775653703006], [-79.9387098731565, 32.7775646309885], [-79.9387131308025, 32.7775642299769], [-79.9387172049878, 32.7775637512767], [-79.938721273936, 32.77756352775], [-79.9387253429363, 32.7775634755722], [-79.9387294087426, 32.7775635983226], [-79.9387326601665, 32.7775637969765], [-79.9387367228488, 32.7775641767223], [-79.9387407813396, 32.7775648134545], [-79.9387448398827, 32.7775656215357], [-79.9387488941974, 32.7775666018303], [-79.938752947501, 32.7775678409427], [-79.93875699874, 32.7775691621039], [-79.9387610478634, 32.7775706573007], [-79.9387659009452, 32.7775729341478], [-79.9387707498512, 32.7775755545574], [-79.9387739783229, 32.7775776414528], [-79.9387763996095, 32.7775791243313], [-79.9387804289202, 32.7775823373506], [-79.938782849192, 32.7775839915688], [-79.9387860713836, 32.7775865951607], [-79.9387892799837, 32.7775903169095], [-79.9387924865015, 32.7775942099888], [-79.938795690926, 32.7775982753002], [-79.9387972790481, 32.7776014671421], [-79.9387988796658, 32.7776036310008], [-79.9388004657274, 32.7776069923697], [-79.9388020381866, 32.7776114727973], [-79.938805264523, 32.7776137355311], [-79.9388051497078, 32.7776231812529], [-79.9388058847668, 32.7776296312378], [-79.9388074707963, 32.7776329953118], [-79.9388074259225, 32.7776366870335], [-79.9388081829035, 32.7776413335392]]], "type": "Polygon"}, "id": "260", "properties": {"OBJECTID": 3011, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4703.576171875, "Shape__Length": 331.907390022977, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9395764560761, 32.7785079445472, -79.9383481557549, 32.7793239398994], "geometry": {"coordinates": [[[-79.9395175706617, 32.7785079445472], [-79.9389161437528, 32.7785972191441], [-79.9386618814586, 32.7786349584463], [-79.9384662954489, 32.7786640130896], [-79.9383481557549, 32.778813140674], [-79.9384062660069, 32.7789178411487], [-79.9386299146056, 32.7793239398994], [-79.9387827692608, 32.7792635056165], [-79.9389691334625, 32.7791902175436], [-79.9391955547966, 32.7791006990211], [-79.9393402310137, 32.7790437968629], [-79.9395764560761, 32.7789507525992], [-79.9395481295397, 32.7787378192632], [-79.9395347176364, 32.7786365135435], [-79.9395175706617, 32.7785079445472]]], "type": "Polygon"}, "id": "261", "properties": {"OBJECTID": 3012, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9303.611328125, "Shape__Length": 392.484575782935, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9395175706617, 32.7776221968294, -79.9375480425831, 32.7796972073784], "geometry": {"coordinates": [[[-79.9388081829035, 32.7776413335392], [-79.9388048980677, 32.7776438833895], [-79.9388040283321, 32.7776485130784], [-79.9388023441543, 32.7776531357024], [-79.9388006641826, 32.7776575879159], [-79.9387990102718, 32.7776598083149], [-79.9387973438654, 32.7776630566969], [-79.9387956784562, 32.7776662230206], [-79.9387940266496, 32.7776682702855], [-79.9387907251517, 32.7776721907794], [-79.9387874257031, 32.777675942648], [-79.9387841272695, 32.7776795231768], [-79.9387816673309, 32.7776812198321], [-79.9387783835671, 32.7776836813111], [-79.9387751007963, 32.7776859732538], [-79.9387718222757, 32.7776880911791], [-79.9387677230207, 32.7776907196376], [-79.9387628135362, 32.7776930822406], [-79.9387587268095, 32.7776946800104], [-79.9387538236164, 32.7776965250146], [-79.938749742107, 32.7776976935561], [-79.9387456627351, 32.7776986862583], [-79.9387415854019, 32.7776995112368], [-79.938738325616, 32.7776999122307], [-79.9387090075884, 32.7777027502766], [-79.9386055794539, 32.7777125045112], [-79.9384988925501, 32.7777225739806], [-79.9383922056583, 32.7777327281296], [-79.9382855197616, 32.7777427983239], [-79.9381755761702, 32.7777531828463], [-79.9380688891341, 32.777763254646], [-79.9379613887669, 32.7777734013587], [-79.9378392288044, 32.7777849664393], [-79.9377292840424, 32.7777954380294], [-79.9376193403185, 32.777805822052], [-79.937630209414, 32.7779153513857], [-79.9377060927275, 32.7786316442213], [-79.9377060540719, 32.7786348210498], [-79.9377068287892, 32.778638005843], [-79.9377067901006, 32.7786411853767], [-79.937706751445, 32.7786443622052], [-79.9377067127784, 32.7786475399354], [-79.9377066740789, 32.7786507203707], [-79.9377066354233, 32.7786538971992], [-79.9377057833836, 32.7786570669645], [-79.9377057457594, 32.7786601590294], [-79.9377048947761, 32.7786633297058], [-79.9377040437677, 32.7786664147076], [-79.9377031927592, 32.7786694997094], [-79.9377015283665, 32.778672577648], [-79.9377006783893, 32.7786755778863], [-79.9376990150388, 32.7786785701597], [-79.9376981661368, 32.7786814820275], [-79.93769650275, 32.778684389528], [-79.9376948425734, 32.7786872086766], [-79.9376931813182, 32.7786900287177], [-79.9376907077209, 32.7786927560302], [-79.9376890485503, 32.7786954047407], [-79.9376865759842, 32.7786980472897], [-79.9376841044932, 32.7787006014681], [-79.9376824473851, 32.7787030806514], [-79.9376799769363, 32.7787055491646], [-79.9376775075157, 32.7787078454361], [-79.9376742268233, 32.7787101364662], [-79.9376717594794, 32.7787123497869], [-79.9376676538997, 32.7787154912986], [-79.937664376309, 32.7787174396582], [-79.9376619121028, 32.7787193950811], [-79.9376586366297, 32.7787211694049], [-79.9376553611564, 32.7787229437285], [-79.9376520866784, 32.7787245485157], [-79.9376488154106, 32.778726064951], [-79.9376455441176, 32.7787274957116], [-79.9376422727776, 32.778728842601], [-79.9376381912411, 32.7787300958785], [-79.9376349240847, 32.7787311866829], [-79.9376316559046, 32.7787322738711], [-79.9376275785705, 32.7787331817819], [-79.9376243135067, 32.7787340128759], [-79.9376202392779, 32.7787346655941], [-79.9376169773773, 32.7787353244649], [-79.9376129030984, 32.7787358058338], [-79.937590094903, 32.7787384422241], [-79.9375860154113, 32.7787393519184], [-79.9375827483338, 32.7787405238873], [-79.9375794769922, 32.7787418707751], [-79.9375753923377, 32.7787433801444], [-79.937572116829, 32.7787451571711], [-79.9375688319126, 32.7787476195104], [-79.9375655533228, 32.7787497374037], [-79.937563083901, 32.7787521211509], [-79.937560612369, 32.7787545905541], [-79.9375581408399, 32.7787571474352], [-79.9375564806573, 32.7787599665819], [-79.9375540060113, 32.778762779557], [-79.9375523415866, 32.7787657718191], [-79.9375514916034, 32.7787687720564], [-79.9375498261719, 32.7787719347566], [-79.9375489740815, 32.7787751081278], [-79.9375489354201, 32.7787782849562], [-79.937548082331, 32.7787815403858], [-79.9375480425831, 32.7787848064864], [-79.9375488162753, 32.7787880751425], [-79.9375487765385, 32.7787913403415], [-79.9376833661137, 32.7796972073784], [-79.9386299146056, 32.7793239398994], [-79.9384062660069, 32.7789178411487], [-79.9383481557549, 32.778813140674], [-79.9384662954489, 32.7786640130896], [-79.9386618814586, 32.7786349584463], [-79.9389161437528, 32.7785972191441], [-79.9395175706617, 32.7785079445472], [-79.9394848211156, 32.7782573492227], [-79.9394129304283, 32.7777468241738], [-79.9393949213948, 32.7776221968294], [-79.9389592190199, 32.7776633452521], [-79.9389698976747, 32.7777886810581], [-79.9388233062451, 32.7778025278861], [-79.9388081829035, 32.7776413335392]]], "type": "Polygon"}, "id": "262", "properties": {"OBJECTID": 3013, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 35123.833984375, "Shape__Length": 953.51305943746, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9423704772175, 32.7756004096885, -79.939828608462, 32.7783286066448], "geometry": {"coordinates": [[[-79.9400505646315, 32.7756915895193], [-79.9400473091305, 32.7756918201377], [-79.9400432371091, 32.7756921284534], [-79.9400399795225, 32.7756924429241], [-79.9400367229814, 32.7756927592075], [-79.9400334632874, 32.775693159334], [-79.9400302056843, 32.7756935630859], [-79.9400269460175, 32.7756940488867], [-79.9400236852614, 32.7756945364817], [-79.940020426651, 32.7756950231934], [-79.9400171659222, 32.7756955964627], [-79.9400139030858, 32.775696255388], [-79.9400106423842, 32.7756969143316], [-79.9400073795477, 32.7756975732566], [-79.9400041167385, 32.7756983178561], [-79.9400008549747, 32.7756990642682], [-79.9399975879996, 32.7757000640505], [-79.9399943241283, 32.7757008961185], [-79.939991061357, 32.7757017254904], [-79.939987795378, 32.7757026432141], [-79.9399845294372, 32.7757036457105], [-79.9399812614324, 32.7757049061136], [-79.939977994424, 32.7757059086006], [-79.9399747285212, 32.7757069958696], [-79.9399714573413, 32.7757083419191], [-79.939968189287, 32.7757095184508], [-79.9399649223547, 32.775710690483], [-79.9399616490614, 32.775712210568], [-79.9399583800214, 32.7757134682561], [-79.9399551078444, 32.7757150722211], [-79.9399518366639, 32.7757164182702], [-79.9399485613061, 32.7757181962616], [-79.9399452797455, 32.7757205730172], [-79.939942818812, 32.7757221822082], [-79.9399395351546, 32.7757246437179], [-79.9399370752607, 32.7757263431013], [-79.9399337905246, 32.7757288055033], [-79.9399305058375, 32.7757313517762], [-79.9399272221628, 32.775733902567], [-79.9399239353677, 32.7757365344958], [-79.939920649596, 32.7757391700407], [-79.939917363835, 32.7757418046838], [-79.939913253264, 32.7757453754978], [-79.9399091426869, 32.7757490346915], [-79.9399050299857, 32.7757526929647], [-79.9399025669864, 32.7757545600616], [-79.9398992801785, 32.7757573687492], [-79.9398959787642, 32.7757612044994], [-79.9398935157317, 32.7757630743014], [-79.9398902154116, 32.7757669957352], [-79.939886099599, 32.7757709101018], [-79.9398827981671, 32.7757748351332], [-79.9398795082318, 32.775777813338], [-79.9398778564864, 32.775779860617], [-79.9398762047408, 32.7757819078962], [-79.9398745529952, 32.7757839551752], [-79.9398712620192, 32.775787019045], [-79.9398696102733, 32.775789066324], [-79.9398679585274, 32.775791113603], [-79.9398654798682, 32.7757942701866], [-79.9398630022871, 32.7757974258777], [-79.9398613494844, 32.7757994722456], [-79.9398596966979, 32.7758016051897], [-79.9398580438784, 32.775803740839], [-79.9398555642001, 32.7758069812842], [-79.9398538988919, 32.7758102332962], [-79.9398514181349, 32.7758134746338], [-79.9398497642858, 32.7758156950466], [-79.9398472845959, 32.7758189363933], [-79.9398456182307, 32.7758221874942], [-79.9398439664836, 32.7758242347728], [-79.9398422876353, 32.7758285138567], [-79.9398397943668, 32.7758328733602], [-79.939838114445, 32.7758372408145], [-79.9398364334938, 32.7758416930322], [-79.9398347525424, 32.7758461452498], [-79.9398330705505, 32.7758506831327], [-79.9398322008654, 32.7758553146316], [-79.9398313322314, 32.7758598595634], [-79.939830462568, 32.7758644892588], [-79.9398295918423, 32.7758692064229], [-79.939829535537, 32.7758738431672], [-79.9398286648002, 32.775878561233], [-79.939828608462, 32.7758832006826], [-79.9398293644857, 32.7758879292395], [-79.9398293081475, 32.775892568689], [-79.9398300652006, 32.7758972124824], [-79.93983082221, 32.7759018598827], [-79.9398315792304, 32.7759065063812], [-79.9398331506827, 32.7759110715583], [-79.9398339087654, 32.7759156305881], [-79.9398354812472, 32.7759201110016], [-79.9398370537292, 32.7759245914151], [-79.9403096864577, 32.7767941282995], [-79.9403900424504, 32.7769426575637], [-79.9411386940906, 32.7783286066448], [-79.9423704772175, 32.7778427609363], [-79.9418825766448, 32.7769555765384], [-79.9411368043882, 32.7756004096885], [-79.9400505646315, 32.7756915895193]]], "type": "Polygon"}, "id": "263", "properties": {"OBJECTID": 3014, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 52831.677734375, "Shape__Length": 993.836195276987, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9409645197359, 32.7771688080346, -79.9398198037927, 32.7785957768053], "geometry": {"coordinates": [[[-79.9398198037927, 32.7772111369059], [-79.9398539876873, 32.7774775491874], [-79.9399175162906, 32.7774710581962], [-79.9399891274284, 32.7776028478568], [-79.940067586799, 32.7775726894544], [-79.9401073639461, 32.777646479496], [-79.9401296400361, 32.7776877312177], [-79.9400536342965, 32.7777167917438], [-79.9400695576986, 32.777745363652], [-79.9401077363411, 32.7778168194241], [-79.9401196731782, 32.7778386552534], [-79.9401753624632, 32.7779418765242], [-79.9402064002429, 32.7779984929395], [-79.9402565149522, 32.7780918719562], [-79.9402716323832, 32.7781197496583], [-79.9402187012154, 32.778124359431], [-79.9402863256988, 32.7782495841975], [-79.9402894978836, 32.7782563132093], [-79.9403404272728, 32.7783496117714], [-79.9404765425968, 32.7785957768053], [-79.9405950606679, 32.7785492134186], [-79.9409645197359, 32.7784032904301], [-79.9408881407976, 32.7782620115495], [-79.940833254404, 32.7781595758434], [-79.9407791523832, 32.7780595484896], [-79.9407035728492, 32.777919477659], [-79.940622418685, 32.777769482517], [-79.9405547931234, 32.7776444256757], [-79.9405006906684, 32.7775444865748], [-79.9404386370383, 32.7774293575236], [-79.9403694289951, 32.7773006831428], [-79.9402978175035, 32.7771688080346], [-79.9400299027173, 32.7771925120515], [-79.9399134519937, 32.7772028417444], [-79.9398198037927, 32.7772111369059]]], "type": "Polygon"}, "id": "264", "properties": {"OBJECTID": 3015, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10628.546875, "Shape__Length": 523.663173047422, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9404765425968, 32.7772111369059, -79.9395062846489, 32.7788892951551], "geometry": {"coordinates": [[[-79.9398198037927, 32.7772111369059], [-79.9397579146189, 32.7772166121585], [-79.9396935821488, 32.7772223277346], [-79.9396259920578, 32.7772283550314], [-79.9395062846489, 32.7772389997074], [-79.939524215539, 32.7773699788746], [-79.9395325001202, 32.7774245981547], [-79.9395436751754, 32.7775092203734], [-79.93956843724, 32.7776806347895], [-79.9395819189478, 32.7777761846908], [-79.9395953996227, 32.7778718220605], [-79.9396186258985, 32.7780357496555], [-79.9396380837258, 32.7781750768055], [-79.9396470389297, 32.7782414690322], [-79.939656762657, 32.7783115627364], [-79.9396746261944, 32.7784482120454], [-79.9396924908282, 32.7785847756885], [-79.9397081104461, 32.7787052554917], [-79.9397327198413, 32.7788892951551], [-79.9399697615862, 32.7787958288477], [-79.9401348746565, 32.7787306860232], [-79.9402264210453, 32.7786946292594], [-79.9403441249382, 32.7786481465375], [-79.9404765425968, 32.7785957768053], [-79.9403404272728, 32.7783496117714], [-79.9402894978836, 32.7782563132093], [-79.9402863256988, 32.7782495841975], [-79.9402187012154, 32.778124359431], [-79.9402716323832, 32.7781197496583], [-79.9402565149522, 32.7780918719562], [-79.9402064002429, 32.7779984929395], [-79.9401753624632, 32.7779418765242], [-79.9401196731782, 32.7778386552534], [-79.9401077363411, 32.7778168194241], [-79.9400695576986, 32.777745363652], [-79.9400536342965, 32.7777167917438], [-79.9401296400361, 32.7776877312177], [-79.9401073639461, 32.777646479496], [-79.940067586799, 32.7775726894544], [-79.9399891274284, 32.7776028478568], [-79.9399175162906, 32.7774710581962], [-79.9398539876873, 32.7774775491874], [-79.9398198037927, 32.7772111369059]]], "type": "Polygon"}, "id": "265", "properties": {"OBJECTID": 3016, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12672.822265625, "Shape__Length": 577.162512623212, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.942939886637, 32.7779593093874, -79.941189215088, 32.7793510279542], "geometry": {"coordinates": [[[-79.9422812293819, 32.7780248695893], [-79.9420425560813, 32.7781190990901], [-79.9418210496393, 32.7782063485263], [-79.9415856445031, 32.7782993157925], [-79.941189215088, 32.7784557444544], [-79.9413547407531, 32.7787588604726], [-79.9414176130538, 32.7788736498369], [-79.9414789055909, 32.7789846495184], [-79.9415736097957, 32.7791576967803], [-79.9416794592799, 32.7793510279542], [-79.941994160518, 32.7792261873593], [-79.9423080422532, 32.7791018574339], [-79.9424592610039, 32.7790419157805], [-79.9424715200553, 32.7790372140764], [-79.9425254700276, 32.7790157757844], [-79.9426734161904, 32.7789573531285], [-79.942939886637, 32.7788517658786], [-79.942779085782, 32.7785610651495], [-79.9426835809617, 32.7783866375319], [-79.9426127368938, 32.7782582911953], [-79.9425840856353, 32.7782059869595], [-79.9425363200564, 32.7781200206578], [-79.9424479712139, 32.7779593093874], [-79.9422812293819, 32.7780248695893]]], "type": "Polygon"}, "id": "266", "properties": {"OBJECTID": 3017, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20198.1171875, "Shape__Length": 570.608363315785, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9415315117779, 32.7785102863735, -79.9404184770169, 32.7796565093448], "geometry": {"coordinates": [[[-79.9404184770169, 32.7787553071413], [-79.9405211210128, 32.7789444000035], [-79.9406325198058, 32.7791492929816], [-79.9406842301281, 32.7792454344345], [-79.9407447044391, 32.7793566826282], [-79.9409078297436, 32.7796565093448], [-79.9411113638283, 32.7795759806323], [-79.9415315117779, 32.7794093619326], [-79.9413651864373, 32.7791049559174], [-79.9413047084153, 32.7789939632259], [-79.9412521841679, 32.7788979033782], [-79.9411399656222, 32.7786933474833], [-79.941039688896, 32.7785102863735], [-79.9407290849678, 32.7786326673003], [-79.9405508937597, 32.7787031104713], [-79.9404184770169, 32.7787553071413]]], "type": "Polygon"}, "id": "267", "properties": {"OBJECTID": 3018, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10042.513671875, "Shape__Length": 415.332862776696, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9409078297436, 32.7787553071413, -79.9397915429545, 32.7799044052373], "geometry": {"coordinates": [[[-79.9404184770169, 32.7787553071413], [-79.940347365363, 32.7787832946807], [-79.9402787021613, 32.7788106161913], [-79.9401838885326, 32.7788477647691], [-79.9400866190636, 32.778886177111], [-79.9397915429545, 32.7790024206647], [-79.9398973684687, 32.7791972989499], [-79.939953067774, 32.7792997448408], [-79.9400087682665, 32.7794021916184], [-79.9400954956523, 32.7795621141739], [-79.9401623420419, 32.7796845014198], [-79.9402816946099, 32.7799044052373], [-79.9405571630121, 32.7797952946234], [-79.940732903745, 32.7797258618966], [-79.9409078297436, 32.7796565093448], [-79.9407447044391, 32.7793566826282], [-79.9406842301281, 32.7792454344345], [-79.9406325198058, 32.7791492929816], [-79.9405211210128, 32.7789444000035], [-79.9404184770169, 32.7787553071413]]], "type": "Polygon"}, "id": "268", "properties": {"OBJECTID": 3019, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10110.970703125, "Shape__Length": 416.589871923658, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9462725717397, 32.7880268565763, -79.9448923583099, 32.788634263856], "geometry": {"coordinates": [[[-79.9449443238789, 32.7886102916886], [-79.945147871989, 32.7885299266033], [-79.9452402110117, 32.7884962771052], [-79.9452549262481, 32.7884903896268], [-79.9453019385732, 32.7885721431401], [-79.9453992175748, 32.7885336409463], [-79.9454899576126, 32.7884977427303], [-79.9455240354728, 32.7885726831369], [-79.9455525798325, 32.788634263856], [-79.9456514121205, 32.7886018712539], [-79.9456579437694, 32.7885998659464], [-79.9458025153431, 32.7885526642432], [-79.9457510044605, 32.7884391762679], [-79.9458147107671, 32.7884185915984], [-79.9458963891927, 32.7883918930843], [-79.9460425934597, 32.7883441902215], [-79.9460005879039, 32.7882519142333], [-79.9462725717397, 32.7881634620904], [-79.9462099497548, 32.7880268565763], [-79.9459443081241, 32.7881291955614], [-79.9458012688357, 32.7881843143085], [-79.94572116773, 32.7882151495388], [-79.94565986261, 32.7882390140826], [-79.9455176437239, 32.788293624624], [-79.9454146551402, 32.7883333673179], [-79.9453010404163, 32.7883771406115], [-79.9451956008136, 32.7884177223447], [-79.9451040545737, 32.7884530966397], [-79.9448923583099, 32.7885345105591], [-79.9449443238789, 32.7886102916886]]], "type": "Polygon"}, "id": "269", "properties": {"OBJECTID": 3135, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3929.37890625, "Shape__Length": 411.18542888882, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9464413715746, 32.7881634620904, -79.9449443238789, 32.7895287566469], "geometry": {"coordinates": [[[-79.9456518316981, 32.7888186174071], [-79.9456431510088, 32.7887950606171], [-79.9456231696939, 32.7887718041488], [-79.9457160583658, 32.7887429504768], [-79.9459485498659, 32.7886702438465], [-79.945922550039, 32.7886087040829], [-79.9459332004128, 32.7886052227698], [-79.9458899079545, 32.7885243817446], [-79.9459258481956, 32.7885124940719], [-79.9459995425116, 32.7886754791088], [-79.9464413715746, 32.7885353156503], [-79.9463803604457, 32.7884000137181], [-79.9463660879799, 32.7883692257111], [-79.9463145764729, 32.7882557379751], [-79.9462725717397, 32.7881634620904], [-79.9460005879039, 32.7882519142333], [-79.9460425934597, 32.7883441902215], [-79.9458963891927, 32.7883918930843], [-79.9458147107671, 32.7884185915984], [-79.9457510044605, 32.7884391762679], [-79.9458025153431, 32.7885526642432], [-79.9456579437694, 32.7885998659464], [-79.9456514121205, 32.7886018712539], [-79.9455525798325, 32.788634263856], [-79.9455240354728, 32.7885726831369], [-79.9454899576126, 32.7884977427303], [-79.9453992175748, 32.7885336409463], [-79.9453019385732, 32.7885721431401], [-79.9452549262481, 32.7884903896268], [-79.9452402110117, 32.7884962771052], [-79.945147871989, 32.7885299266033], [-79.9449443238789, 32.7886102916886], [-79.945000291506, 32.788691521022], [-79.9450578436613, 32.7887762838549], [-79.9451122073707, 32.7888556099622], [-79.9451593775206, 32.7889243081242], [-79.9451609733604, 32.7889268975242], [-79.9452017270719, 32.788987981167], [-79.945248888048, 32.7890574502842], [-79.9452952355952, 32.7891269141746], [-79.9453511748781, 32.789210632167], [-79.9454047308482, 32.7892895201034], [-79.9454606692293, 32.789373241645], [-79.9455118129703, 32.7894497883208], [-79.9455645546897, 32.7895287566469], [-79.9457355514898, 32.7894492255912], [-79.945682812746, 32.7893700021467], [-79.9456612522399, 32.7893363997505], [-79.9457635248788, 32.7892886622108], [-79.9458183404919, 32.7892632798166], [-79.9457640028845, 32.7891817186029], [-79.9457080673738, 32.7890977456159], [-79.9456497476191, 32.7890091076058], [-79.9455904068828, 32.7889196193565], [-79.9456129049171, 32.788908828894], [-79.9456750442542, 32.7888816149266], [-79.9456518316981, 32.7888186174071]]], "type": "Polygon"}, "id": "270", "properties": {"OBJECTID": 3136, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9735.25390625, "Shape__Length": 689.088120612387, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9459741395515, 32.7892632798166, -79.9455645546897, 32.7896513562812], "geometry": {"coordinates": [[[-79.9455645546897, 32.7895287566469], [-79.9456468705752, 32.7896513562812], [-79.9458170509729, 32.7895722500528], [-79.9459193237915, 32.7895244249035], [-79.9459700472321, 32.7895011535517], [-79.9459741395515, 32.7894991272117], [-79.9458183404919, 32.7892632798166], [-79.9457635248788, 32.7892886622108], [-79.9456612522399, 32.7893363997505], [-79.945682812746, 32.7893700021467], [-79.9457355514898, 32.7894492255912], [-79.9455645546897, 32.7895287566469]]], "type": "Polygon"}, "id": "271", "properties": {"OBJECTID": 3137, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1119.48828125, "Shape__Length": 154.821997124961, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9467243704166, 32.7885641711149, -79.9457779147733, 32.7894823576971], "geometry": {"coordinates": [[[-79.9457779147733, 32.7891543045485], [-79.9460059762531, 32.7894823576971], [-79.9462594227502, 32.7893626758208], [-79.9465234617563, 32.7892377069918], [-79.9467243704166, 32.7891438151789], [-79.9466697110346, 32.7890263008532], [-79.9465101920677, 32.7886834241178], [-79.9464547129245, 32.7885641711149], [-79.9460121528977, 32.7887045573921], [-79.9460971650523, 32.7888778711889], [-79.9461322472132, 32.7889577621307], [-79.9461384703898, 32.7889719348651], [-79.9461047980873, 32.7889870643948], [-79.9460659375644, 32.7888976139114], [-79.9459572698379, 32.7889465312143], [-79.9459974987673, 32.7890364453415], [-79.9458539021456, 32.7891022307815], [-79.9458621842046, 32.7891125650228], [-79.9457779147733, 32.7891543045485]]], "type": "Polygon"}, "id": "272", "properties": {"OBJECTID": 3138, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6903.880859375, "Shape__Length": 389.213194068911, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9460659375644, 32.7886906961892, -79.9456129049171, 32.7891543045485], "geometry": {"coordinates": [[[-79.9460659375644, 32.7888976139114], [-79.9460626016291, 32.7888898762885], [-79.9459768747605, 32.7886906961892], [-79.9457450744833, 32.7887631869785], [-79.9456431510088, 32.7887950606171], [-79.9456518316981, 32.7888186174071], [-79.9456750442542, 32.7888816149266], [-79.9456129049171, 32.788908828894], [-79.9456612347692, 32.7889807266444], [-79.9457779147733, 32.7891543045485], [-79.9458621842046, 32.7891125650228], [-79.9458539021456, 32.7891022307815], [-79.9459974987673, 32.7890364453415], [-79.9459572698379, 32.7889465312143], [-79.9460653566059, 32.7889008978994], [-79.9460659375644, 32.7888976139114]]], "type": "Polygon"}, "id": "273", "properties": {"OBJECTID": 3139, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1813.890625, "Shape__Length": 183.276947443877, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9500887335216, 32.7864666085532, -79.9474928188346, 32.7880835310471], "geometry": {"coordinates": [[[-79.9485888662895, 32.7875827216446], [-79.9485857266589, 32.7875757793946], [-79.9486550249253, 32.78755068705], [-79.9487246773984, 32.7875217117044], [-79.9488305025442, 32.787716998824], [-79.9489904273115, 32.7880835310471], [-79.9491115450917, 32.7880245299914], [-79.9492244773402, 32.7879695780971], [-79.9493374084155, 32.7879147117644], [-79.9494527941834, 32.7878586678683], [-79.9498554221433, 32.7876626629724], [-79.9500722827161, 32.7875571508541], [-79.9497619816826, 32.7869766379548], [-79.9499931100637, 32.7869023428285], [-79.9499368265411, 32.7867793653892], [-79.9500887335216, 32.7867305036398], [-79.949967435558, 32.7864666085532], [-79.9493532766785, 32.78666388887], [-79.9487154305339, 32.7868687778931], [-79.9485814931796, 32.786911608497], [-79.9483813982917, 32.7869759445221], [-79.9482907438445, 32.7870050592825], [-79.948187021158, 32.7870384418392], [-79.9480832994136, 32.7870717395444], [-79.9479493593947, 32.7871147389845], [-79.9474928188346, 32.7872612239339], [-79.9475483167956, 32.787381532655], [-79.9480048568242, 32.7872350474874], [-79.9480603544527, 32.7873554407396], [-79.9481666049852, 32.787585018056], [-79.9482172636288, 32.7877019345472], [-79.9482842351014, 32.7876804351575], [-79.9483512044167, 32.7876589348112], [-79.9484549267566, 32.7876256368768], [-79.9485594645523, 32.7875922628945], [-79.9485888662895, 32.7875827216446]]], "type": "Polygon"}, "id": "274", "properties": {"OBJECTID": 3213, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 28419.48046875, "Shape__Length": 898.96508829262, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9488832588956, 32.7872350474874, -79.9475483167956, 32.7885353662864], "geometry": {"coordinates": [[[-79.9475483167956, 32.787381532655], [-79.9476046273549, 32.7875019331134], [-79.9477100664609, 32.7877311611617], [-79.9477963658602, 32.7879284420529], [-79.9478525735897, 32.7880574314907], [-79.9479285603538, 32.7882328920893], [-79.9480005887608, 32.7883992966496], [-79.9480607806458, 32.7885353662864], [-79.9481368873325, 32.7884983951755], [-79.948501056098, 32.7883213082706], [-79.9485837095043, 32.7882811303125], [-79.948683610009, 32.7882407614139], [-79.9488014660039, 32.7881896047478], [-79.9488832588956, 32.7881541024246], [-79.9487681843641, 32.7878926449152], [-79.9487349505873, 32.7878149611942], [-79.9486961477009, 32.787726839572], [-79.9486577253638, 32.7877422265832], [-79.9486244916992, 32.7876645464405], [-79.9485888662895, 32.7875827216446], [-79.9485594645523, 32.7875922628945], [-79.9484549267566, 32.7876256368768], [-79.9483512044167, 32.7876589348112], [-79.9482842351014, 32.7876804351575], [-79.9482172636288, 32.7877019345472], [-79.9481666049852, 32.787585018056], [-79.9480603544527, 32.7873554407396], [-79.9480048568242, 32.7872350474874], [-79.9475483167956, 32.787381532655]]], "type": "Polygon"}, "id": "275", "properties": {"OBJECTID": 3214, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12686.2890625, "Shape__Length": 520.05570402378, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9475579911314, 32.7873063056342, -79.9462515347902, 32.7879723298001], "geometry": {"coordinates": [[[-79.9462983102049, 32.7877613418182], [-79.946632350054, 32.7876539229603], [-79.9466933838689, 32.7877873338047], [-79.9468452954536, 32.7877384787916], [-79.9468912747306, 32.787838515605], [-79.9469520362206, 32.7879723298001], [-79.9470108579796, 32.7879522246347], [-79.9470094583818, 32.7879399133645], [-79.9472100533914, 32.7878745692881], [-79.9475579911314, 32.7877612288124], [-79.9473532842514, 32.7873063056342], [-79.9469816800575, 32.7874255995442], [-79.9468477388754, 32.7874685157123], [-79.946738299056, 32.7875036515084], [-79.9465863877874, 32.7875525090927], [-79.9462515347902, 32.7876599217194], [-79.9462983102049, 32.7877613418182]]], "type": "Polygon"}, "id": "276", "properties": {"OBJECTID": 3215, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5911.830078125, "Shape__Length": 394.294571825603, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9477248983575, 32.7876539229603, -79.9462983102049, 32.7887244534088], "geometry": {"coordinates": [[[-79.9462983102049, 32.7877613418182], [-79.9463585300808, 32.7878947485304], [-79.9464687186873, 32.7881346701572], [-79.9465551017593, 32.7883249075387], [-79.9465622292007, 32.7883410323927], [-79.9465955078607, 32.7884147652686], [-79.9466295711327, 32.7884910787278], [-79.9466644375161, 32.7885681746701], [-79.9466984905159, 32.7886452608945], [-79.9467434980595, 32.7887244534088], [-79.946994625101, 32.788640478075], [-79.9469568547639, 32.7885625509942], [-79.9469225873909, 32.7884853412512], [-79.9468883211351, 32.7884081324101], [-79.9470526344511, 32.7883553066806], [-79.9471743249682, 32.7883162375963], [-79.9472361020807, 32.7884556698035], [-79.947405981414, 32.7884010391255], [-79.94737889185, 32.7883536473102], [-79.9474140432212, 32.7883396890176], [-79.9473720724837, 32.7882444945728], [-79.9474537471605, 32.7882180529175], [-79.9477248983575, 32.7881310495657], [-79.9476694732056, 32.7880046415367], [-79.9476085185313, 32.7878645303362], [-79.9475579911314, 32.7877612288124], [-79.9472100533914, 32.7878745692881], [-79.9470094583818, 32.7879399133645], [-79.9470108579796, 32.7879522246347], [-79.9469520362206, 32.7879723298001], [-79.9468925370032, 32.7878403490784], [-79.9468462864713, 32.7877383709856], [-79.9466935634028, 32.787787408399], [-79.946632350054, 32.7876539229603], [-79.9462983102049, 32.7877613418182]]], "type": "Polygon"}, "id": "277", "properties": {"OBJECTID": 3216, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10952.84765625, "Shape__Length": 577.402745726614, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9479291586022, 32.7881310495657, -79.9467434980595, 32.7890637304224], "geometry": {"coordinates": [[[-79.9467434980595, 32.7887244534088], [-79.9468148035413, 32.788887263165], [-79.9468887460928, 32.7890637304224], [-79.9470464091871, 32.7890062020928], [-79.9471355852681, 32.7889650495351], [-79.9472910281054, 32.7888932861628], [-79.9473900195248, 32.7888476663143], [-79.9474063812833, 32.7888401631277], [-79.9476060032287, 32.7887479894384], [-79.9477049932535, 32.7887024577065], [-79.9479291586022, 32.7885988131222], [-79.9478808564135, 32.7884888735203], [-79.9478610671328, 32.7884432634894], [-79.947830984295, 32.7883741992929], [-79.9477644880146, 32.7882213273457], [-79.9477248983575, 32.7881310495657], [-79.9474537471605, 32.7882180529175], [-79.9473720724837, 32.7882444945728], [-79.9474140432212, 32.7883396890176], [-79.94737889185, 32.7883536473102], [-79.947405981414, 32.7884010391255], [-79.9472361020807, 32.7884556698035], [-79.9471743249682, 32.7883162375963], [-79.9470526344511, 32.7883553066806], [-79.9468884720938, 32.7884080092563], [-79.9469225231294, 32.7884852694531], [-79.9469565752588, 32.7885624439757], [-79.946994625101, 32.788640478075], [-79.9467434980595, 32.7887244534088]]], "type": "Polygon"}, "id": "278", "properties": {"OBJECTID": 3217, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8183.4140625, "Shape__Length": 448.822761188239, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9483878930942, 32.7887551652663, -79.9469666474044, 32.7901129574726], "geometry": {"coordinates": [[[-79.9474959651021, 32.7889870716568], [-79.9474845090547, 32.7889925563651], [-79.9473920647242, 32.7890349688783], [-79.9472906212056, 32.7890814279833], [-79.9469666474044, 32.7892307669499], [-79.9470713065691, 32.7894572418846], [-79.9471307805789, 32.7895852298895], [-79.9472330716337, 32.7898057547429], [-79.9473068181334, 32.7899646162433], [-79.9473758103065, 32.7901129574726], [-79.9478176270828, 32.7899068214458], [-79.9479370808624, 32.7898510664343], [-79.9483878930942, 32.789640964605], [-79.9482508801238, 32.7893308930759], [-79.9481907122675, 32.7891928478147], [-79.9479982890925, 32.7887551652663], [-79.9474959651021, 32.7889870716568]]], "type": "Polygon"}, "id": "279", "properties": {"OBJECTID": 3218, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16102.205078125, "Shape__Length": 510.257578500089, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9504026784502, 32.7867305036398, -79.9497619816826, 32.7875571508541], "geometry": {"coordinates": [[[-79.9499368265411, 32.7867793653892], [-79.9499931100637, 32.7869023428285], [-79.9497619816826, 32.7869766379548], [-79.9500722827161, 32.7875571508541], [-79.9501998634397, 32.7875018079304], [-79.9502001500026, 32.7875016832306], [-79.9504026784502, 32.7874141257314], [-79.950310020525, 32.7872116607428], [-79.9503099300021, 32.7872114642681], [-79.9500887335216, 32.7867305036398], [-79.9499368265411, 32.7867793653892]]], "type": "Polygon"}, "id": "280", "properties": {"OBJECTID": 3219, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3875.44140625, "Shape__Length": 285.775127624523, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9429565876521, 32.7893461059606, -79.9427045959341, 32.7896394150019], "geometry": {"coordinates": [[[-79.9428078610821, 32.7895625975637], [-79.9428081336093, 32.7895624871891], [-79.9428535755296, 32.7896394150019], [-79.9429565876521, 32.7895980423161], [-79.9428083134998, 32.7893461059606], [-79.9427045959341, 32.7893860628535], [-79.9427731254061, 32.7895029900104], [-79.9427808265027, 32.7895161304644], [-79.9427812934934, 32.7895159198629], [-79.9428079121587, 32.7895623472947], [-79.9428078610821, 32.7895625975637]]], "type": "Polygon"}, "id": "281", "properties": {"OBJECTID": 3220, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 474.404296875, "Shape__Length": 100.154894751591, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9440312585873, 32.7901694971681, -79.9437251261802, 32.7904799918989], "geometry": {"coordinates": [[[-79.9437251261802, 32.7902397982441], [-79.943883153631, 32.7904799918989], [-79.9440312585873, 32.7904099720386], [-79.9438738912419, 32.790169556113], [-79.9438738535184, 32.7901694971681], [-79.9438737334154, 32.7901695403213], [-79.9437252343471, 32.7902395944613], [-79.9437251261802, 32.7902397982441]]], "type": "Polygon"}, "id": "282", "properties": {"OBJECTID": 3221, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 689.09375, "Shape__Length": 110.608358675272, "ZONE_BASE": "MU-1", "__folium_color": "#c49c94"}, "type": "Feature"}, {"bbox": [-79.943883153631, 32.7899033233561, -79.9431042464257, 32.7906710578666], "geometry": {"coordinates": [[[-79.9433011391969, 32.7903706819488], [-79.9433593379086, 32.7904691987643], [-79.9434103619041, 32.7905554517588], [-79.9434781180642, 32.7906710578666], [-79.9436810448949, 32.7905754009698], [-79.9437816889116, 32.7905279071189], [-79.943883153631, 32.7904799918989], [-79.9437251261802, 32.7902397982441], [-79.9437249731185, 32.790239565151], [-79.9436398740738, 32.7902798071347], [-79.9435575448014, 32.7901583197739], [-79.9434887883198, 32.7900582554238], [-79.9434160508831, 32.7899510231378], [-79.9433832717011, 32.7899033233561], [-79.9431042464257, 32.7900351759047], [-79.9432437540655, 32.79027217574], [-79.9433011391969, 32.7903706819488]]], "type": "Polygon"}, "id": "283", "properties": {"OBJECTID": 3222, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3998.9140625, "Shape__Length": 285.97012470174, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9434781180642, 32.7903706819488, -79.9429969032807, 32.7908115076324], "geometry": {"coordinates": [[[-79.9429969032807, 32.7905014588881], [-79.9430152361147, 32.7905328000337], [-79.9430551038763, 32.7905997991084], [-79.9431061307349, 32.790685885418], [-79.9431196721277, 32.7907097955178], [-79.9431802729247, 32.7908115076324], [-79.9432784655409, 32.7907650274204], [-79.9433242865246, 32.7907435184791], [-79.9433905665577, 32.7907121352495], [-79.9434781180642, 32.7906710578666], [-79.9434103619041, 32.7905554517588], [-79.9433593379086, 32.7904691987643], [-79.9433011391969, 32.7903706819488], [-79.9429969032807, 32.7905014588881]]], "type": "Polygon"}, "id": "284", "properties": {"OBJECTID": 3223, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1715.236328125, "Shape__Length": 166.293375718946, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9438738535184, 32.789264699247, -79.9425146291756, 32.7905014588881], "geometry": {"coordinates": [[[-79.9428518128109, 32.7902552181161], [-79.9428956655457, 32.7903290433977], [-79.9429387049564, 32.7904029418999], [-79.9429969032807, 32.7905014588881], [-79.9433011391969, 32.7903706819488], [-79.9432437540655, 32.79027217574], [-79.9431042464257, 32.7900351759047], [-79.9433832717011, 32.7899033233561], [-79.9434160508831, 32.7899510231378], [-79.9434887883198, 32.7900582554238], [-79.9435575448014, 32.7901583197739], [-79.9436398740738, 32.7902798071347], [-79.9437249731185, 32.790239565151], [-79.9437251261802, 32.7902397982441], [-79.9437252343471, 32.7902395944613], [-79.9438737334154, 32.7901695403213], [-79.9438738535184, 32.7901694971681], [-79.9437932033043, 32.7900469666101], [-79.9437268985557, 32.7899459775363], [-79.9436557993118, 32.7898378162191], [-79.9436198575474, 32.7897825309143], [-79.9435815044926, 32.78972481778], [-79.9435439649647, 32.7896671125602], [-79.9434984351321, 32.7895973971291], [-79.9434353267789, 32.7895012467894], [-79.9433881981816, 32.7894291132174], [-79.9433282878878, 32.7893377151563], [-79.9432170093883, 32.7893899226444], [-79.9431171850168, 32.7894369090506], [-79.9430200136316, 32.789264699247], [-79.9429088515215, 32.7893073759624], [-79.9428083134998, 32.7893461059606], [-79.9429565876521, 32.7895980423161], [-79.9428535755296, 32.7896394150019], [-79.9428081336093, 32.7895624871891], [-79.9428078610821, 32.7895625975637], [-79.9425146291756, 32.7896807245209], [-79.9425592573782, 32.789757648118], [-79.9426102749759, 32.7898444181465], [-79.9428518128109, 32.7902552181161]]], "type": "Polygon"}, "id": "285", "properties": {"OBJECTID": 3224, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11325.44921875, "Shape__Length": 633.176759531175, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9391345598755, 32.7827571196565, -79.9367062338385, 32.7848142089175], "geometry": {"coordinates": [[[-79.9381418481828, 32.7848142089175], [-79.9382799737056, 32.7847616357569], [-79.9384589580558, 32.7846940397805], [-79.9388046742691, 32.7845629478345], [-79.9387428517844, 32.7844286657846], [-79.9388400872987, 32.784393604453], [-79.9388820124417, 32.784491635053], [-79.9391345598755, 32.7844144619346], [-79.9387567508073, 32.7837536977226], [-79.9386723179174, 32.7836057343643], [-79.9381863939312, 32.7827571196565], [-79.9375167233322, 32.7831037536115], [-79.9373497139315, 32.7831902644763], [-79.9367062338385, 32.7835234632607], [-79.9371561622635, 32.784254086283], [-79.9372455010305, 32.784399946963], [-79.9374952009404, 32.7848052434539], [-79.9376032859828, 32.7847478585935], [-79.9375680894103, 32.7846986734664], [-79.9379713976209, 32.7845145699775], [-79.9381418481828, 32.7848142089175]]], "type": "Polygon"}, "id": "286", "properties": {"OBJECTID": 3229, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 41423.228515625, "Shape__Length": 900.506722871981, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9397699960912, 32.7840348525313, -79.9391757243899, 32.7846171585519], "geometry": {"coordinates": [[[-79.9391757243899, 32.7841702754304], [-79.9394314365853, 32.7846171585519], [-79.9397699960912, 32.7845387880722], [-79.9394970780367, 32.7840348525313], [-79.9391757243899, 32.7841702754304]]], "type": "Polygon"}, "id": "287", "properties": {"OBJECTID": 3230, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2728.62890625, "Shape__Length": 218.086506644907, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9392749518237, 32.784393604453, -79.9374952009404, 32.7851871384156], "geometry": {"coordinates": [[[-79.9377305454362, 32.7851871384156], [-79.938395280821, 32.7849558428786], [-79.938576289744, 32.7848928961207], [-79.9387148732422, 32.7848432997944], [-79.9388333638075, 32.7848011811052], [-79.9390154742623, 32.7847398710714], [-79.9391086488846, 32.7847100725882], [-79.9392749518237, 32.7846594786828], [-79.9391345598755, 32.7844144619346], [-79.9388820124417, 32.784491635053], [-79.9388400872987, 32.784393604453], [-79.9387428517844, 32.7844286657846], [-79.9388046742691, 32.7845629478345], [-79.9384589580558, 32.7846940397805], [-79.9382799737056, 32.7847616357569], [-79.9381418481828, 32.7848142089175], [-79.9379713976209, 32.7845145699775], [-79.9375680894103, 32.7846986734664], [-79.9376032859828, 32.7847478585935], [-79.9374952009404, 32.7848052434539], [-79.9377305454362, 32.7851871384156]]], "type": "Polygon"}, "id": "288", "properties": {"OBJECTID": 3231, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8299.478515625, "Shape__Length": 550.949810974517, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9457214790537, 32.7853591267676, -79.9435306842704, 32.7873288492086], "geometry": {"coordinates": [[[-79.9442848662696, 32.7858517262902], [-79.9441592602316, 32.7858783007323], [-79.94401896932, 32.7859081869946], [-79.944069288984, 32.7860525893411], [-79.9440554166556, 32.7860560760483], [-79.9439525993937, 32.7860818188773], [-79.943765735485, 32.7861283953141], [-79.9440119247868, 32.7865577882869], [-79.9444491883396, 32.7873288492086], [-79.9457214790537, 32.7869373494537], [-79.9452369730489, 32.7858995208619], [-79.9451779000503, 32.7857714740737], [-79.9449998347143, 32.7853591267676], [-79.9445069702822, 32.785479808635], [-79.9443825501007, 32.7855104292421], [-79.9442577102441, 32.7855409622314], [-79.9441198166259, 32.7855745650099], [-79.9440251676913, 32.7855975412172], [-79.9439011431182, 32.7856279086316], [-79.9438187332226, 32.7856479863183], [-79.9437918041849, 32.7856547962675], [-79.9436824610269, 32.785682027369], [-79.9435306842704, 32.7857198871263], [-79.943595202752, 32.7858337471872], [-79.9436127317793, 32.7858642209431], [-79.9436510229123, 32.7859270009347], [-79.9437067776604, 32.7860255821331], [-79.9437577817574, 32.7861133814368], [-79.9439462798216, 32.7860662175943], [-79.9440303294668, 32.7860452106513], [-79.9440335978002, 32.7860439501387], [-79.9440360630957, 32.7860419098222], [-79.9440385294587, 32.7860398695149], [-79.9440401844204, 32.7860375642795], [-79.9440410269336, 32.7860350806831], [-79.9440410612061, 32.7860322474134], [-79.9440410955223, 32.7860294105367], [-79.9439947060274, 32.7858963808728], [-79.9441211297911, 32.7858695548295], [-79.9442157446971, 32.7858493261424], [-79.944279363236, 32.7858358732445], [-79.9442848662696, 32.7858517262902]]], "type": "Polygon"}, "id": "289", "properties": {"OBJECTID": 3298, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 36402.873046875, "Shape__Length": 952.448497991207, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9482804851419, 32.7814468210334, -79.9478623337966, 32.7818080006791], "geometry": {"coordinates": [[[-79.9481593089887, 32.7814468210334], [-79.9478623337966, 32.7815085031626], [-79.9479368083394, 32.7818080006791], [-79.9482804851419, 32.7817019843699], [-79.9481773000836, 32.7814857870527], [-79.9481737370964, 32.7814782062634], [-79.9481593089887, 32.7814468210334]]], "type": "Polygon"}, "id": "290", "properties": {"OBJECTID": 3353, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1429.3125, "Shape__Length": 151.696604627847, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9485761626693, 32.7817019843699, -79.947349269339, 32.7825877392873], "geometry": {"coordinates": [[[-79.947349269339, 32.7820033892216], [-79.9473851716695, 32.7821236754658], [-79.9473987340246, 32.7821538908774], [-79.9474345560654, 32.7822190427763], [-79.9474959485499, 32.7823144322107], [-79.9475162502977, 32.7823484860791], [-79.9475270138531, 32.7823665414139], [-79.9475663045076, 32.7824463193029], [-79.9475956727701, 32.782506990334], [-79.9476327397918, 32.7825877392873], [-79.9485761626693, 32.7823214941283], [-79.9482804851419, 32.7817019843699], [-79.9479368083394, 32.7818080006791], [-79.9474148653305, 32.7819682112228], [-79.947349269339, 32.7820033892216]]], "type": "Polygon"}, "id": "291", "properties": {"OBJECTID": 3354, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9684.07421875, "Shape__Length": 394.277064238555, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9468994340053, 32.7801834414954, -79.9461870843235, 32.7812647332031], "geometry": {"coordinates": [[[-79.9461870843235, 32.7802971488266], [-79.946273750329, 32.7804632520646], [-79.9463231041195, 32.7805529280857], [-79.946494186884, 32.7808692237172], [-79.9464909177015, 32.7808704851874], [-79.9463993684952, 32.7809068054471], [-79.9464840945853, 32.7810988348981], [-79.946556935032, 32.7812647332031], [-79.9467114279051, 32.7812031848515], [-79.9468994340053, 32.7811283512932], [-79.9468105559915, 32.7808758148006], [-79.946775852068, 32.7807854083616], [-79.9467418041545, 32.7807081490894], [-79.9467338805244, 32.7806907277762], [-79.9467085251753, 32.7806346760154], [-79.9466767061792, 32.7805749594565], [-79.9466369604757, 32.7804979063158], [-79.9466051302092, 32.7804392204378], [-79.9465589696662, 32.7803545555667], [-79.9464691097641, 32.7801834414954], [-79.9461870843235, 32.7802971488266]]], "type": "Polygon"}, "id": "292", "properties": {"OBJECTID": 3355, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5084.08984375, "Shape__Length": 356.502559903513, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.946556935032, 32.7802971488266, -79.9457170434411, 32.7813993438858], "geometry": {"coordinates": [[[-79.9461870843235, 32.7802971488266], [-79.9459729085143, 32.780383523837], [-79.9457170434411, 32.7804865459995], [-79.9459733527493, 32.7809532163852], [-79.9461293669619, 32.781237257574], [-79.9462185216964, 32.7813993438858], [-79.946556935032, 32.7812647332031], [-79.9464840945853, 32.7810988348981], [-79.9463993684952, 32.7809068054471], [-79.9464909177015, 32.7808704851874], [-79.946494186884, 32.7808692237172], [-79.9463231041195, 32.7805529280857], [-79.946273750329, 32.7804632520646], [-79.9461870843235, 32.7802971488266]]], "type": "Polygon"}, "id": "293", "properties": {"OBJECTID": 3356, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6971.20703125, "Shape__Length": 378.136065208748, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9471963125109, 32.7812548478671, -79.9466074054169, 32.7821271293065], "geometry": {"coordinates": [[[-79.9466074054169, 32.7813894261298], [-79.9466245786876, 32.7814287812466], [-79.946698242948, 32.7815963468391], [-79.9467316682975, 32.7816741761385], [-79.9467363764252, 32.7816849638328], [-79.9468003937234, 32.7818170141401], [-79.9467785213905, 32.7818224740287], [-79.9468309834263, 32.7819777886616], [-79.9468914872542, 32.7821271293065], [-79.9471963125109, 32.7820346003772], [-79.947166926194, 32.7819528892998], [-79.9471496753458, 32.781899312567], [-79.9471096745975, 32.7817759599154], [-79.9470986980466, 32.781741676006], [-79.9470587585899, 32.7816133421335], [-79.9470344679207, 32.781536425746], [-79.9470141003756, 32.7814714807017], [-79.9469456234114, 32.7812548478671], [-79.9466074054169, 32.7813894261298]]], "type": "Polygon"}, "id": "294", "properties": {"OBJECTID": 3357, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3944.515625, "Shape__Length": 290.056410949283, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9468914872542, 32.7813894261298, -79.9462848536289, 32.7821992321277], "geometry": {"coordinates": [[[-79.9466074054169, 32.7813894261298], [-79.9462848536289, 32.7815177696513], [-79.9464952162612, 32.7818931960024], [-79.9465756398727, 32.7820415368608], [-79.94665749889, 32.7821992321277], [-79.9468914872542, 32.7821271293065], [-79.9468309834263, 32.7819777886616], [-79.9467785213905, 32.7818224740287], [-79.9468003937234, 32.7818170141401], [-79.9467363764252, 32.7816849638328], [-79.9467316682975, 32.7816741761385], [-79.946698242948, 32.7815963468391], [-79.9466245786876, 32.7814287812466], [-79.9466074054169, 32.7813894261298]]], "type": "Polygon"}, "id": "295", "properties": {"OBJECTID": 3358, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3441.92578125, "Shape__Length": 272.152439256926, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9474895508624, 32.7820346003772, -79.94665749889, 32.7827965724581], "geometry": {"coordinates": [[[-79.94665749889, 32.7821992321277], [-79.9467367398884, 32.7823444991664], [-79.9469842864971, 32.7827965724581], [-79.9474895508624, 32.7826554933003], [-79.9474451642564, 32.7825584744625], [-79.9474165915511, 32.7824992991675], [-79.9473792575915, 32.7824245053682], [-79.9473521502377, 32.7823787439246], [-79.9472780958624, 32.782260723051], [-79.9472550644956, 32.7822188709399], [-79.9472039464395, 32.7820564976773], [-79.9471963125109, 32.7820346003772], [-79.9468914872542, 32.7821271293065], [-79.94665749889, 32.7821992321277]]], "type": "Polygon"}, "id": "296", "properties": {"OBJECTID": 3359, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5306.416015625, "Shape__Length": 298.906534143806, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9466365619772, 32.7822254990889, -79.9452474997899, 32.7829745353314], "geometry": {"coordinates": [[[-79.9466365619772, 32.7824874404597], [-79.9464932921601, 32.7822254990889], [-79.9462570479871, 32.7823200166593], [-79.9461393360654, 32.7823670208841], [-79.9460183547585, 32.7824151989756], [-79.9459039107962, 32.7824610271819], [-79.9457861984834, 32.7825080319693], [-79.9456684870676, 32.7825549518802], [-79.9455507745449, 32.7826019528346], [-79.9452474997899, 32.782723034133], [-79.945315960892, 32.7828472352101], [-79.9453851982595, 32.7829745353314], [-79.9456892591434, 32.7828557772702], [-79.9456964294852, 32.7828682113314], [-79.9457740927409, 32.7828368375165], [-79.9458133362046, 32.7828206838328], [-79.9458967212772, 32.7827869567582], [-79.9459310551304, 32.7827731650254], [-79.946020164163, 32.7827369945144], [-79.9460487739281, 32.7827256461051], [-79.946143606919, 32.7826871196244], [-79.9461632254661, 32.7826793010738], [-79.9462670494897, 32.7826371598374], [-79.9462833988066, 32.7826305991249], [-79.9463904909287, 32.7825872819845], [-79.9464003037881, 32.7825830737627], [-79.9466365619772, 32.7824874404597]]], "type": "Polygon"}, "id": "297", "properties": {"OBJECTID": 3360, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5844.439453125, "Shape__Length": 383.684978885659, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9468299841223, 32.7824874404597, -79.9453851982595, 32.7831772473366], "geometry": {"coordinates": [[[-79.9453851982595, 32.7829745353314], [-79.9456333119625, 32.7831772473366], [-79.9459165624802, 32.7830975716196], [-79.946047166959, 32.7830608973528], [-79.9461777733753, 32.7830241417991], [-79.9463075641659, 32.7829874638548], [-79.946438169306, 32.7829507071125], [-79.9465687743699, 32.7829140359056], [-79.9468299841223, 32.7828405199213], [-79.9466365619772, 32.7824874404597], [-79.9464003037881, 32.7825830737627], [-79.9463904909287, 32.7825872819845], [-79.9462833988066, 32.7826305991249], [-79.9462670494897, 32.7826371598374], [-79.9461632254661, 32.7826793010738], [-79.946143606919, 32.7826871196244], [-79.9460487739281, 32.7827256461051], [-79.946020164163, 32.7827369945144], [-79.9459310551304, 32.7827731650254], [-79.9458967212772, 32.7827869567582], [-79.9458133362046, 32.7828206838328], [-79.9457740927409, 32.7828368375165], [-79.9456964294852, 32.7828682113314], [-79.9456892591434, 32.7828557772702], [-79.9453851982595, 32.7829745353314]]], "type": "Polygon"}, "id": "298", "properties": {"OBJECTID": 3361, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6251.578125, "Shape__Length": 385.778934625754, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9460696776525, 32.7805445186214, -79.9443240642607, 32.7819476827095], "geometry": {"coordinates": [[[-79.9452591458435, 32.7806676698465], [-79.9450932227001, 32.7807326385597], [-79.9449845095526, 32.7807755969635], [-79.9447630003681, 32.7808627642826], [-79.9443240642607, 32.7810355872145], [-79.9443853453947, 32.7811478713385], [-79.9444991714159, 32.7813550164317], [-79.9445150782727, 32.7813850431725], [-79.9445620497207, 32.7814698042123], [-79.9446249281583, 32.7815845946672], [-79.9446901867958, 32.7817043864538], [-79.9447562362021, 32.781826073468], [-79.9448231012997, 32.7819476827095], [-79.9452097458419, 32.7817938217872], [-79.9453331783586, 32.7817446348371], [-79.9454574262733, 32.7816953673145], [-79.9456135537489, 32.7816333176723], [-79.9458252678202, 32.7815489863361], [-79.9460696776525, 32.7814517920792], [-79.9459693749769, 32.7812697656451], [-79.9458706694606, 32.7810902437573], [-79.945810981103, 32.7809805497582], [-79.9457942594882, 32.7809505973346], [-79.945697147285, 32.7807739226003], [-79.9456454149745, 32.7806791602174], [-79.9455713867997, 32.7805445186214], [-79.9452591458435, 32.7806676698465]]], "type": "Polygon"}, "id": "299", "properties": {"OBJECTID": 3362, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20342.029296875, "Shape__Length": 572.087740651429, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9464246565379, 32.7815764219077, -79.9448915539097, 32.7825989532815], "geometry": {"coordinates": [[[-79.9458937247191, 32.7816736154102], [-79.9457702915511, 32.7817228029163], [-79.9456460458979, 32.781771983297], [-79.9455226135296, 32.7818211696611], [-79.9453991799439, 32.7818704451734], [-79.9452765668789, 32.7819190395368], [-79.9448915539097, 32.7820724863765], [-79.9449496430648, 32.782179758249], [-79.9450069489884, 32.7822845369819], [-79.9450642550931, 32.7823893120822], [-79.9451215613458, 32.7824941746349], [-79.9451788666147, 32.7825989532815], [-79.9455647021291, 32.7824449958517], [-79.9457175647551, 32.7823839478161], [-79.9459325529374, 32.7822981826143], [-79.9460559878068, 32.7822488254051], [-79.94617942258, 32.7821994644646], [-79.9462415460842, 32.7821748320871], [-79.9463028572027, 32.7821501043015], [-79.9464246565379, 32.7821014189338], [-79.9462814004198, 32.7818384475379], [-79.9461381337458, 32.7815764219077], [-79.9458937247191, 32.7816736154102]]], "type": "Polygon"}, "id": "300", "properties": {"OBJECTID": 3363, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11764.6328125, "Shape__Length": 460.237524834475, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9477441194333, 32.7785824419683, -79.946027401769, 32.7800067955647], "geometry": {"coordinates": [[[-79.9467735196565, 32.7787532349322], [-79.9465664833381, 32.7788325632388], [-79.9463220123502, 32.778934682782], [-79.946027401769, 32.7790513439271], [-79.9461640151526, 32.7793008192317], [-79.9465506830107, 32.7800067955647], [-79.9468209563949, 32.7798950352058], [-79.9468975247495, 32.7798633735231], [-79.9471499670048, 32.7797678019861], [-79.9477441194333, 32.7795368445057], [-79.9477189777675, 32.7794912037703], [-79.947715237737, 32.7794844159611], [-79.9472183738857, 32.7785824419683], [-79.9467735196565, 32.7787532349322]]], "type": "Polygon"}, "id": "301", "properties": {"OBJECTID": 3364, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20405.443359375, "Shape__Length": 571.654100953016, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9464055974683, 32.7791082995213, -79.9455050879232, 32.7802177088612], "geometry": {"coordinates": [[[-79.9455050879232, 32.779257021565], [-79.945601394014, 32.7794329148171], [-79.9456706456866, 32.7795588404777], [-79.945722377328, 32.7796536055435], [-79.9457454595781, 32.7796957244234], [-79.9457836592903, 32.7797658889503], [-79.9458449414212, 32.7798781714259], [-79.9458552884281, 32.7798970737489], [-79.9459070370851, 32.7799904626844], [-79.9459762751507, 32.7801176767757], [-79.9460311978007, 32.7802177088612], [-79.9464055974683, 32.7800666544072], [-79.9462280975148, 32.7797429173648], [-79.946120642897, 32.7795469971359], [-79.9460132021846, 32.7793499649709], [-79.9459773908192, 32.7792841138272], [-79.9458802686444, 32.7791082995213], [-79.9455050879232, 32.779257021565]]], "type": "Polygon"}, "id": "302", "properties": {"OBJECTID": 3365, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6463.541015625, "Shape__Length": 372.153701828473, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9460311978007, 32.779257021565, -79.9451274542979, 32.7803691798813], "geometry": {"coordinates": [[[-79.9455050879232, 32.779257021565], [-79.9451274542979, 32.7794065807686], [-79.9452930131527, 32.7797083136393], [-79.9453447444618, 32.7798030797682], [-79.9454060270782, 32.7799152777005], [-79.9454681232496, 32.7800274826151], [-79.9455294061822, 32.7801396804884], [-79.9455915026609, 32.7802518862448], [-79.9456559783073, 32.7803691798813], [-79.9459077616408, 32.7802674095977], [-79.9460311978007, 32.7802177088612], [-79.9459762751507, 32.7801176767757], [-79.9459070370851, 32.7799904626844], [-79.9458552884281, 32.7798970737489], [-79.9458449414212, 32.7798781714259], [-79.9457836592903, 32.7797658889503], [-79.9457454595781, 32.7796957244234], [-79.945722377328, 32.7796536055435], [-79.9456706456866, 32.7795588404777], [-79.945601394014, 32.7794329148171], [-79.9455050879232, 32.779257021565]]], "type": "Polygon"}, "id": "303", "properties": {"OBJECTID": 3366, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6508.611328125, "Shape__Length": 373.21382718986, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9458137662578, 32.7780766066842, -79.9449322163161, 32.7791374879023], "geometry": {"coordinates": [[[-79.9449322163161, 32.7782265542225], [-79.9449775888137, 32.7783088924957], [-79.9450786692748, 32.7784934200102], [-79.9450866236137, 32.7785084328967], [-79.945131190254, 32.7785901653459], [-79.9451725791934, 32.778665599926], [-79.9451693059235, 32.7786671165439], [-79.9451756698052, 32.7786791126031], [-79.9452234590105, 32.7787633627695], [-79.9452672717005, 32.7788401899052], [-79.9452704671357, 32.7788451162187], [-79.9453166609052, 32.7789268617272], [-79.9454361374285, 32.7791374879023], [-79.9456249514708, 32.7790628364652], [-79.9458137662578, 32.7789881847463], [-79.9456498057724, 32.7786887822935], [-79.9455550950316, 32.7785156525307], [-79.9454603711491, 32.778343464998], [-79.9453147306544, 32.7780766066842], [-79.9451046761024, 32.7781588076874], [-79.9449322163161, 32.7782265542225]]], "type": "Polygon"}, "id": "304", "properties": {"OBJECTID": 3367, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6240.41015625, "Shape__Length": 359.711350750501, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9454361374285, 32.7782265542225, -79.9445586883757, 32.7792865460259], "geometry": {"coordinates": [[[-79.9449322163161, 32.7782265542225], [-79.9445586883757, 32.7783732268942], [-79.9446040616001, 32.7784554823471], [-79.9447130957512, 32.7786550212808], [-79.9447584630548, 32.7787377906708], [-79.9448070279023, 32.7788252284636], [-79.9448531838779, 32.7789100644106], [-79.9448985576914, 32.7789923170539], [-79.9449439305115, 32.7790746589533], [-79.9450601372049, 32.7792865460259], [-79.9451533214198, 32.7792494653053], [-79.945248136453, 32.7792121460617], [-79.9453421370136, 32.7791748143129], [-79.9454361374285, 32.7791374879023], [-79.9453166609052, 32.7789268617272], [-79.9452704671357, 32.7788451162187], [-79.9452672717005, 32.7788401899052], [-79.9452234590105, 32.7787633627695], [-79.9451756698052, 32.7786791126031], [-79.9451693059235, 32.7786671165439], [-79.9451725791934, 32.778665599926], [-79.945131190254, 32.7785901653459], [-79.9450866236137, 32.7785084328967], [-79.9450786692748, 32.7784934200102], [-79.9449775888137, 32.7783088924957], [-79.9449322163161, 32.7782265542225]]], "type": "Polygon"}, "id": "305", "properties": {"OBJECTID": 3368, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6103.416015625, "Shape__Length": 358.766116357079, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9514911864401, 32.7793010253335, -79.9492543663987, 32.7811131469476], "geometry": {"coordinates": [[[-79.9492543663987, 32.7793987683342], [-79.9492584085114, 32.7794007789704], [-79.9496375302642, 32.7796679193969], [-79.9498108003209, 32.779803237306], [-79.9499154693651, 32.7798933010122], [-79.9502322026437, 32.7802074911054], [-79.9502362242456, 32.780211389973], [-79.9502402436697, 32.7802152924292], [-79.9502426601328, 32.7802172872791], [-79.9502458683036, 32.7802211818719], [-79.9502482847345, 32.780223179427], [-79.9502539093647, 32.7802289804896], [-79.9502579287903, 32.7802328829452], [-79.9502619493271, 32.7802367818028], [-79.950265970921, 32.7802406815713], [-79.9502699914103, 32.7802444956558], [-79.9502740130157, 32.7802483945222], [-79.9502780324756, 32.7802522942719], [-79.9502820551009, 32.7802561083744], [-79.9502860745399, 32.7802600099273], [-79.9502900971659, 32.7802638240296], [-79.9502941177056, 32.7802677228862], [-79.9502981392649, 32.780271536979], [-79.9503021608245, 32.7802753510717], [-79.950306180287, 32.7802792508205], [-79.9503102029147, 32.7802830649221], [-79.9503142234079, 32.7802868790052], [-79.9503182460256, 32.7802906940083], [-79.9503222665195, 32.7802945080912], [-79.9503246850625, 32.7802964190868], [-79.9503287066244, 32.7803002331786], [-79.9503327271192, 32.7803040472612], [-79.9503367497493, 32.7803078613619], [-79.9503407702448, 32.7803116754442], [-79.9503447928756, 32.7803154895446], [-79.9503472103631, 32.7803173996289], [-79.9503512329569, 32.7803211280546], [-79.9503552545211, 32.7803249421456], [-79.9503592760482, 32.7803286705619], [-79.9503616946147, 32.7803305797533], [-79.9503657161798, 32.7803343938439], [-79.9503697387643, 32.7803381231708], [-79.9503737603301, 32.7803419372612], [-79.9503761777923, 32.7803437607686], [-79.9503802004261, 32.7803475748679], [-79.9503842230119, 32.7803513041943], [-79.9503882456089, 32.7803550326189], [-79.9503906630985, 32.7803569427023], [-79.9503946846394, 32.7803606702156], [-79.9503987155251, 32.7803637980896], [-79.9504019309236, 32.7803670037392], [-79.9504059597342, 32.7803702154656], [-79.9504091751116, 32.7803734229184], [-79.9504115957135, 32.7803750742019], [-79.9504148100613, 32.78037836732], [-79.9504180244419, 32.7803816577328], [-79.9504220521913, 32.7803849578293], [-79.9504252665398, 32.7803882509471], [-79.9504284799021, 32.7803916261233], [-79.9504325066225, 32.7803950118849], [-79.9504357199528, 32.780398389766], [-79.9504389322425, 32.7804018542143], [-79.9504421456058, 32.7804052293902], [-79.9504453578744, 32.7804086956417], [-79.9504485702083, 32.7804121564828], [-79.9504517814475, 32.7804157083996], [-79.9504549937602, 32.7804191710439], [-79.9504582050324, 32.7804227202553], [-79.950461416305, 32.7804262694666], [-79.9504646275886, 32.7804298177761], [-79.95046783781, 32.7804334544561], [-79.9504710480318, 32.780437091136], [-79.9504742582863, 32.7804407251107], [-79.9504766551069, 32.7804443548122], [-79.9504798653619, 32.7804479887867], [-79.9504830745657, 32.78045171023], [-79.9504854703896, 32.7804554228915], [-79.950488679583, 32.7804591452363], [-79.9504910753857, 32.7804628597013], [-79.9504942845796, 32.780466582046], [-79.9504966793529, 32.7804703821762], [-79.9504998875284, 32.7804741892844], [-79.9505022823021, 32.7804779894145], [-79.9505054904781, 32.7804817965226], [-79.9505078852523, 32.7804855966526], [-79.9505102790077, 32.7804894815462], [-79.9505126727524, 32.7804933673414], [-79.9505158799104, 32.7804972592129], [-79.950518273634, 32.7805011468116], [-79.9505206673686, 32.7805050335085], [-79.9505230600736, 32.7805090058707], [-79.9505254528005, 32.7805129764293], [-79.9505278465465, 32.7805168622244], [-79.9505302392522, 32.7805208345864], [-79.9505326309174, 32.7805248935156], [-79.9505350236452, 32.7805288640741], [-79.9505366019191, 32.7805329151236], [-79.9505389946364, 32.7805368865837], [-79.9505413863133, 32.7805409446111], [-79.9505437779796, 32.78054500354], [-79.9505453562543, 32.7805490545894], [-79.950546958312, 32.7805511272193], [-79.9505477365932, 32.7805540558375], [-79.9506390675061, 32.780738750262], [-79.9506621038898, 32.7807849053131], [-79.9507715728001, 32.7810173449905], [-79.9508054485091, 32.7811131469476], [-79.9514283152869, 32.780937334976], [-79.9514856159017, 32.7806955845169], [-79.9514856488691, 32.7806928396174], [-79.9514864942659, 32.780690182846], [-79.9514873406806, 32.780687441311], [-79.9514873726624, 32.7806847784699], [-79.951488219088, 32.7806820360331], [-79.9514882520878, 32.7806792884284], [-79.9514890985024, 32.7806765468933], [-79.9514891304949, 32.7806738831505], [-79.9514899769094, 32.7806711416154], [-79.95149000992, 32.7806683931089], [-79.9514900429306, 32.7806656446025], [-79.9514900759412, 32.780662896096], [-79.9514909223557, 32.7806601545609], [-79.9514909553662, 32.7806574060544], [-79.9514909883767, 32.780654657548], [-79.9514910213873, 32.7806519090415], [-79.9514910543979, 32.780649160535], [-79.9514910874084, 32.7806464120285], [-79.951491120419, 32.780643663522], [-79.9514911534295, 32.7806409150155], [-79.9514911864401, 32.780638166509], [-79.951490406047, 32.7806354110311], [-79.951490438007, 32.7806327499935], [-79.9514904710501, 32.7806299987818], [-79.9514905040174, 32.7806272538822], [-79.9514897236353, 32.7806244975025], [-79.9514897566784, 32.7806217462908], [-79.9514889762422, 32.7806189944198], [-79.9514890082348, 32.780616330677], [-79.951488227842, 32.780613575199], [-79.9514882608527, 32.7806108266926], [-79.951487479442, 32.7806081559783], [-79.9514875124418, 32.7806054083736], [-79.9514867310311, 32.7806027376592], [-79.9514859506386, 32.7805999821813], [-79.951485168128, 32.780597314163], [-79.9514843877741, 32.7805946443596], [-79.9514844207849, 32.7805918958531], [-79.9514836393744, 32.7805892251388], [-79.9514828579532, 32.7805865553262], [-79.9514820765429, 32.7805838846119], [-79.9514812950892, 32.7805812175045], [-79.9514796992471, 32.780578625484], [-79.9514789178044, 32.7805759574749], [-79.9514781363835, 32.7805732876623], [-79.9514773539445, 32.7805707026133], [-79.9514765704056, 32.7805681202604], [-79.9514749766602, 32.7805654425836], [-79.9514741942214, 32.7805628575346], [-79.9514734117502, 32.7805602751909], [-79.9514718158653, 32.7805576867773], [-79.9514710324086, 32.7805551864919], [-79.9514694365347, 32.7805525971765], [-79.9514686530781, 32.7805500968912], [-79.951467056137, 32.7805475075666], [-79.9514654603019, 32.7805450039258], [-79.9514646768455, 32.7805425036404], [-79.9514630799432, 32.7805399999903], [-79.9514614830517, 32.7805374954385], [-79.9514606985341, 32.7805350835237], [-79.9514591005753, 32.7805325789627], [-79.9514575037119, 32.780530160987], [-79.9514559057919, 32.7805277421006], [-79.951454307872, 32.780525323214], [-79.9514527099522, 32.7805229043275], [-79.9514511110144, 32.7805205702045], [-79.9514495120273, 32.7805181513088], [-79.9514479141571, 32.780515817195], [-79.9514463152088, 32.7805134839737], [-79.951444716228, 32.7805111534577], [-79.9514423038882, 32.7805088123629], [-79.9514407028545, 32.7805065638961], [-79.9514391049415, 32.7805042333892], [-79.9514375049755, 32.7805019849315], [-79.9514350905566, 32.7804998169708], [-79.9514334905908, 32.780497568513], [-79.9514310761228, 32.7804953157795], [-79.951429476174, 32.7804931547997], [-79.9514270617448, 32.7804909877406], [-79.9514254607504, 32.7804888249481], [-79.9514230442358, 32.7804867426435], [-79.9514214442874, 32.7804845816636], [-79.9514190288405, 32.780482499368], [-79.9514150092528, 32.7804784274049], [-79.9514125948845, 32.7804763442166], [-79.9514085753142, 32.7804723597312], [-79.9514061577716, 32.7804703630917], [-79.9514037402459, 32.78046845393], [-79.9514013238202, 32.7804665420723], [-79.9513989062947, 32.7804646329105], [-79.9513964877344, 32.7804627210343], [-79.9513940702584, 32.7804608966454], [-79.9513916527549, 32.78045898568], [-79.9513892331936, 32.7804572460454], [-79.9513868135722, 32.7804554225397], [-79.9513843950676, 32.7804536838158], [-79.9513819765247, 32.7804518594174], [-79.951379555924, 32.7804502063497], [-79.9513771352848, 32.7804484676075], [-79.9513739023499, 32.7804468075766], [-79.9513714817602, 32.7804451536071], [-79.9513690600707, 32.7804435023335], [-79.9513666395197, 32.7804419340384], [-79.9513634044672, 32.780440361467], [-79.9513609817814, 32.7804387931534], [-79.9513585601308, 32.7804372275542], [-79.9513553251494, 32.7804357379518], [-79.9513529024808, 32.7804342571162], [-79.9513140675812, 32.7804164863641], [-79.951263076075, 32.7803950040512], [-79.9512582245577, 32.7803925572702], [-79.9512525606578, 32.7803900187524], [-79.9512493215144, 32.780388787036], [-79.9512444699654, 32.7803863429597], [-79.9512388071661, 32.7803838017452], [-79.9512355669341, 32.7803825718228], [-79.9512307164366, 32.7803800402771], [-79.9512274772939, 32.7803788085601], [-79.9512226267968, 32.7803762770141], [-79.9512169629423, 32.7803737348876], [-79.9512137237675, 32.7803725058756], [-79.9512088732712, 32.780369974329], [-79.9512032094174, 32.7803674322019], [-79.9511999712614, 32.7803661184258], [-79.9511951208092, 32.7803635832718], [-79.9511918826534, 32.7803622694954], [-79.9511870322017, 32.780359734341], [-79.9511813683167, 32.7803571949181], [-79.9511781301939, 32.7803558784363], [-79.9511732797104, 32.7803533459866], [-79.9511700415878, 32.7803520295044], [-79.9511651911047, 32.7803494970544], [-79.9511619529824, 32.7803481805721], [-79.9511571024999, 32.7803456481217], [-79.9511514396242, 32.7803430248356], [-79.9511482015132, 32.7803417074512], [-79.9511433510205, 32.780339175902], [-79.9511401129098, 32.7803378585174], [-79.9511352634793, 32.7803352385973], [-79.9511320253254, 32.7803339248194], [-79.9511271759062, 32.7803313039973], [-79.9511239377526, 32.7803299902191], [-79.9511190873047, 32.7803274550621], [-79.9511158491947, 32.7803261376768], [-79.9511109997222, 32.7803235213628], [-79.951107762631, 32.7803221192136], [-79.9511029131698, 32.7803195019975], [-79.9510972503516, 32.7803168742], [-79.9510940122316, 32.780315557716], [-79.9510891627712, 32.7803129404993], [-79.951083499943, 32.780310313603], [-79.9510810762532, 32.7803089184273], [-79.9510778381337, 32.7803076019428], [-79.9510729886742, 32.7803049847255], [-79.9510673268764, 32.7803022721631], [-79.9510624774175, 32.7802996549454], [-79.9510592403279, 32.780298252795], [-79.951054390902, 32.7802956328717], [-79.9510511538127, 32.780294230721], [-79.9510463043439, 32.7802916144044], [-79.9510406425478, 32.7802889018407], [-79.9510382188592, 32.7802875066643], [-79.9510325560017, 32.7802848824708], [-79.9510301323134, 32.7802834872942], [-79.9510268942065, 32.7802821699066], [-79.9510220458009, 32.7802794652184], [-79.9510163840063, 32.7802767526536], [-79.9510139603185, 32.7802753574766], [-79.9510115366307, 32.7802739622996], [-79.9510082984811, 32.7802726485185], [-79.9510034500875, 32.7802699429278], [-79.9510002129999, 32.7802685407758], [-79.950995364596, 32.7802658360866], [-79.9509921275087, 32.7802644339344], [-79.950987279116, 32.780261728343], [-79.9509848554291, 32.7802603331655], [-79.9509816183422, 32.7802589310131], [-79.9509767699502, 32.7802562254213], [-79.9509735328202, 32.7802548268756], [-79.9509711091337, 32.7802534316978], [-79.9509686854472, 32.7802520365199], [-79.9509654462749, 32.7802507191215], [-79.9509630236561, 32.7802493239527], [-79.9509605999698, 32.7802479287747], [-79.9509581762837, 32.7802465335966], [-79.9509549391977, 32.7802451314434], [-79.9509525155118, 32.7802437362652], [-79.9509500918259, 32.780242341087], [-79.9509476670726, 32.7802409458995], [-79.9509444310545, 32.7802395437553], [-79.9509395826539, 32.7802368390638], [-79.9509363455794, 32.7802354360084], [-79.950933921894, 32.7802340408299], [-79.9509314981978, 32.780232646553], [-79.9509290734452, 32.7802312513652], [-79.9509258384571, 32.780229763555], [-79.950923414772, 32.7802283683762], [-79.9509209900196, 32.7802269731883], [-79.9509185674021, 32.7802255780186], [-79.9509153303175, 32.7802241758644], [-79.9509129066328, 32.7802227806854], [-79.9509104818806, 32.7802213854972], [-79.9509072458639, 32.7802199833519], [-79.9509048221794, 32.7802185881728], [-79.9509023984894, 32.7802171046139], [-79.9508999758725, 32.7802157094438], [-79.9508967387453, 32.7802143108961], [-79.9508943150611, 32.7802129157167], [-79.9508918914095, 32.7802115178322], [-79.9508894687549, 32.7802100369873], [-79.9508862316714, 32.7802086348323], [-79.9508838069202, 32.7802072396436], [-79.9508813843038, 32.7802058444732], [-79.9508789616387, 32.7802043645299], [-79.9508757234882, 32.7802029623655], [-79.9508733008829, 32.7802015662931], [-79.9508708782181, 32.7802000863497], [-79.9508684545347, 32.7801986911699], [-79.9508652163846, 32.7801972890052], [-79.9508627948308, 32.7801958054638], [-79.9508603711043, 32.7801944138907], [-79.9508579474158, 32.7801929303309], [-79.9508547114009, 32.7801915281843], [-79.950852287718, 32.7801901330041], [-79.9508498650647, 32.7801886521585], [-79.9508474403145, 32.780187256969], [-79.950845018718, 32.7801857770342], [-79.9508417816361, 32.7801843748781], [-79.9508393579048, 32.7801828949249], [-79.9508369352899, 32.7801814997536], [-79.9508345126696, 32.7801800162024], [-79.9508312755502, 32.7801785283715], [-79.950828851868, 32.7801771331909], [-79.950826430272, 32.7801756532557], [-79.9508240065901, 32.780174258075], [-79.9508207695036, 32.7801727675385], [-79.9508183479079, 32.7801712876032], [-79.9508159242262, 32.7801698924223], [-79.9508135004957, 32.7801684124686], [-79.9508110778437, 32.7801669316222], [-79.9508078418305, 32.7801655294743], [-79.9508054192112, 32.7801640459226], [-79.950802995481, 32.7801625659687], [-79.9508005728673, 32.7801611707966], [-79.9507973368165, 32.7801596829739], [-79.9507949130868, 32.7801582030199], [-79.9507924904244, 32.7801567230748], [-79.950790067811, 32.7801553279026], [-79.9507876451922, 32.7801538443506], [-79.9507844080637, 32.7801523574201], [-79.9507819864801, 32.7801508765823], [-79.950779563829, 32.7801493957353], [-79.9507771401323, 32.7801479130757], [-79.9507747174814, 32.7801464322286], [-79.9507714814696, 32.7801450300797], [-79.9507690577406, 32.7801435501251], [-79.9507666351225, 32.7801420665726], [-79.9507642135286, 32.7801405866362], [-79.9507617908782, 32.7801391057889], [-79.9507585537507, 32.7801376188578], [-79.9507561310895, 32.780136138912], [-79.9507537095393, 32.7801346553685], [-79.950751285811, 32.7801331754135], [-79.9507488631609, 32.780131694566], [-79.9507456281797, 32.780130206751], [-79.9507432055515, 32.7801287240998], [-79.9507407818343, 32.780127243243], [-79.9507383591738, 32.7801257632969], [-79.9507359376242, 32.780124279753], [-79.950733514926, 32.7801227141323], [-79.950730278867, 32.7801212272095], [-79.9507278562502, 32.7801197436563], [-79.9506470841869, 32.7800718073804], [-79.950383765878, 32.7799157009972], [-79.9493157399664, 32.7793010253335], [-79.9492543663987, 32.7793987683342]]], "type": "Polygon"}, "id": "306", "properties": {"OBJECTID": 3369, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14671.671875, "Shape__Length": 723.500696132193, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9505299929401, 32.7783947741613, -79.9473826364676, 32.7815029531071], "geometry": {"coordinates": [[[-79.9479143693545, 32.7794827720434], [-79.9479151537647, 32.7794851839806], [-79.947916752589, 32.7794875181495], [-79.9479183514243, 32.7794898514166], [-79.9479191358347, 32.7794922633538], [-79.9479207346918, 32.7794945948174], [-79.9479215191132, 32.7794970058529], [-79.9479231179378, 32.7794993400217], [-79.9479247157411, 32.7795017589541], [-79.9479255001518, 32.7795041708912], [-79.9479270989767, 32.77950650506], [-79.9479278833875, 32.7795089169972], [-79.9479294812019, 32.7795113350278], [-79.9479302656128, 32.779513746965], [-79.9479318644706, 32.7795160784284], [-79.947932648849, 32.7795184930708], [-79.9479342466529, 32.7795209120031], [-79.947935031064, 32.7795233239402], [-79.9479366289006, 32.7795257401672], [-79.9479374133118, 32.7795281521043], [-79.9479390110834, 32.7795305737418], [-79.9479397954947, 32.7795329856789], [-79.9479413932991, 32.7795354046111], [-79.9479421777431, 32.779537813843], [-79.9479437755477, 32.779540232775], [-79.9479445599592, 32.7795426447121], [-79.9479461577312, 32.7795450663495], [-79.9479469421428, 32.7795474782866], [-79.9479477255222, 32.779549975889], [-79.947949323338, 32.7795523939193], [-79.9479501088063, 32.7795548067673], [-79.9479517045224, 32.7795573104538], [-79.9479524889343, 32.7795597223908], [-79.9479532733462, 32.7795621343279], [-79.9479548701301, 32.7795646380235], [-79.9479556545312, 32.7795670508622], [-79.9479564389433, 32.7795694627993], [-79.9479580357274, 32.7795719664948], [-79.947958821207, 32.779574378441], [-79.9479596034868, 32.7795768787394], [-79.9479612012926, 32.7795792976714], [-79.9479619846835, 32.779581794372], [-79.9479627680744, 32.7795842910725], [-79.947963552476, 32.7795867039113], [-79.9479651492279, 32.779589210312], [-79.947965932619, 32.7795917070126], [-79.9479667170316, 32.7795941189495], [-79.9479675014794, 32.779596616561], [-79.9479690971859, 32.779599121149], [-79.9479698805772, 32.7796016178496], [-79.9479706649466, 32.7796040333935], [-79.9479714483379, 32.779606530094], [-79.9479730451231, 32.7796090337894], [-79.9479738285145, 32.7796115304899], [-79.9479746118626, 32.7796140307974], [-79.9479753952433, 32.7796165283997], [-79.9479761797024, 32.7796190251094], [-79.9479769630832, 32.7796215227117], [-79.9479777453749, 32.7796240221082], [-79.9479793421497, 32.7796265267053], [-79.9479801255307, 32.7796290243075], [-79.9479809089225, 32.779631521008], [-79.9479816923145, 32.7796340177085], [-79.9479824756629, 32.7796365180159], [-79.947983259055, 32.7796390147164], [-79.9479840424361, 32.7796415123186], [-79.9479848268957, 32.7796440090282], [-79.9479856092229, 32.7796465940993], [-79.9479863915369, 32.7796490916923], [-79.9479871749291, 32.7796515883928], [-79.9479879582779, 32.7796540887002], [-79.9479887406379, 32.779656671066], [-79.9479895240303, 32.7796591677664], [-79.9479903073793, 32.7796616680738], [-79.9479910897394, 32.7796642504396], [-79.9479918731319, 32.7796667471401], [-79.947992656481, 32.7796692474475], [-79.9479934399088, 32.7796718298224], [-79.9479942233014, 32.7796743265229], [-79.9479950045618, 32.7796769115846], [-79.9479957879436, 32.7796794091868], [-79.9479965702715, 32.7796819942578], [-79.9479973536643, 32.7796844909582], [-79.9479981360249, 32.7796870733239], [-79.9479989193744, 32.7796895736313], [-79.947999701735, 32.779692155997], [-79.9479996717335, 32.7796946457027], [-79.9480004540508, 32.7796972316754], [-79.9480012374439, 32.7796997283758], [-79.9480020208396, 32.7797023134559], [-79.9480028032004, 32.7797048958217], [-79.9480035865936, 32.779707392522], [-79.9480035555165, 32.7797099715001], [-79.9480043368209, 32.7797125529549], [-79.9480051201707, 32.7797150532623], [-79.9480059025318, 32.779717635628], [-79.9480066848603, 32.7797202206989], [-79.9480066538267, 32.77972279607], [-79.9480074371876, 32.7797252954756], [-79.9480082195489, 32.7797278778413], [-79.9480090018667, 32.7797304638138], [-79.9480089708441, 32.7797330382832], [-79.9480097531619, 32.7797356242558], [-79.9480105365556, 32.7797381209562], [-79.9480113199845, 32.7797407033311], [-79.9480112889184, 32.7797432814074], [-79.9480120712799, 32.7797458637731], [-79.9480128525415, 32.7797484488347], [-79.948012821508, 32.7797510242059], [-79.9480136038371, 32.7797536092768], [-79.9480143861988, 32.7797561916425], [-79.9480143551328, 32.7797587697188], [-79.9480151374945, 32.7797613520844], [-79.9480151064286, 32.7797639301607], [-79.9480158887904, 32.7797665125264], [-79.9480166711196, 32.7797690975973], [-79.9480166400863, 32.7797716729684], [-79.9480174224156, 32.7797742580393], [-79.9480173913823, 32.7797768334103], [-79.9480181737117, 32.7797794184812], [-79.9480181426784, 32.7797819938523], [-79.9480189250079, 32.7797845789232], [-79.9480188939746, 32.7797871542943], [-79.9480196773716, 32.7797897393743], [-79.9480204597338, 32.7797923217399], [-79.948020428668, 32.7797948998163], [-79.9480212099628, 32.7797974821727], [-79.9480211778647, 32.7798001459144], [-79.9480211468424, 32.7798027203838], [-79.9480219291613, 32.7798053063564], [-79.9480218981389, 32.7798078808258], [-79.9480226804579, 32.7798104667984], [-79.9480226494248, 32.7798130421695], [-79.9480234307332, 32.7798157120039], [-79.9480233996675, 32.7798182900803], [-79.9480233686343, 32.7798208654514], [-79.9480241509643, 32.7798234505223], [-79.9480241199311, 32.7798260258934], [-79.948024901229, 32.7798286966296], [-79.9480248701958, 32.7798312720007], [-79.9480248391302, 32.779833850077], [-79.9480256214928, 32.7798364324426], [-79.9481945693212, 32.780938090223], [-79.9481953496129, 32.7809408457221], [-79.9481953175197, 32.7809435094641], [-79.9481960988436, 32.7809461792978], [-79.9481968801567, 32.7809488500332], [-79.9481976615132, 32.7809515171617], [-79.9481976294201, 32.7809541809038], [-79.9481984107442, 32.7809568507375], [-79.9481991920574, 32.7809595214729], [-79.9481999712928, 32.780962276061], [-79.9481999391998, 32.780964939803], [-79.9482007205566, 32.7809676069315], [-79.9482015018699, 32.7809702776669], [-79.9482022842509, 32.7809729484115], [-79.9482030656078, 32.7809756155399], [-79.9482030335149, 32.780978279282], [-79.9482038148393, 32.7809809491156], [-79.9482045961529, 32.780983619851], [-79.9482053775101, 32.7809862869794], [-79.9482061588237, 32.7809889577148], [-79.9482061267417, 32.7809916205551], [-79.9482069080556, 32.7809942912905], [-79.9482076894128, 32.7809969584189], [-79.9482084707267, 32.7809996291543], [-79.948209250984, 32.7810022989787], [-79.9482092188913, 32.7810049627208], [-79.9482100002052, 32.7810076334561], [-79.9482107826302, 32.7810103005937], [-79.9482115639443, 32.7810129713291], [-79.9482123452693, 32.7810156411627], [-79.9482131265835, 32.781018311898], [-79.9482130945343, 32.7810209720332], [-79.9482138758485, 32.7810236427685], [-79.9482146571737, 32.7810263126021], [-79.948215438488, 32.7810289833374], [-79.9482162198459, 32.7810316504658], [-79.9482170011603, 32.7810343212011], [-79.9482177824829, 32.7810369026548], [-79.9482185637974, 32.7810395733902], [-79.9482185317158, 32.7810422362305], [-79.9482193140979, 32.7810449069751], [-79.948220095456, 32.7810475741034], [-79.9482208767707, 32.7810502448387], [-79.9482216580963, 32.7810529146722], [-79.9482224394111, 32.7810555854075], [-79.9482232217906, 32.7810581677722], [-79.9482240031055, 32.7810608385075], [-79.9482247844313, 32.781063508341], [-79.9482255657572, 32.7810661781746], [-79.9482263460373, 32.7810688461955], [-79.9482271283845, 32.7810714312653], [-79.9482270963357, 32.7810740914005], [-79.9482278787184, 32.7810767621449], [-79.9482286600336, 32.7810794328801], [-79.9482294423808, 32.7810820179501], [-79.9482302237396, 32.7810846850784], [-79.948231005055, 32.7810873558136], [-79.9482317863812, 32.7810900256471], [-79.9482325687614, 32.7810926080117], [-79.9482333500877, 32.7810952778452], [-79.9482341314032, 32.7810979485805], [-79.9482349127188, 32.7811006193157], [-79.9482356940317, 32.7811032016711], [-79.9482364753582, 32.7811058715046], [-79.948237257774, 32.7811085395438], [-79.9482380401327, 32.7811111237119], [-79.9482388214485, 32.7811137944471], [-79.9482396028078, 32.7811164615753], [-79.948240385145, 32.7811190475469], [-79.9482411664718, 32.7811217173803], [-79.9482419488525, 32.7811242997449], [-79.9482427301794, 32.7811269695784], [-79.9482435114955, 32.7811296403135], [-79.9482442928089, 32.781132222669], [-79.9482450741251, 32.7811348934041], [-79.9482458575843, 32.7811374748761], [-79.9482466389006, 32.7811401456113], [-79.948247421249, 32.7811427306811], [-79.9482482025654, 32.7811454014162], [-79.9482497973333, 32.7811480755374], [-79.9482505796819, 32.7811506606072], [-79.948251361042, 32.7811533277353], [-79.9482521433797, 32.7811559137069], [-79.9482529236398, 32.7811585835311], [-79.9482537060212, 32.7811611658956], [-79.9482544884054, 32.7811638366399], [-79.9482552707542, 32.7811664217096], [-79.9482560531357, 32.7811690040742], [-79.9482568344526, 32.7811716748093], [-79.9482576168451, 32.781174256272], [-79.9482583981729, 32.7811769261054], [-79.9482599939195, 32.7811795190698], [-79.94826077528, 32.7811821861979], [-79.9482615565618, 32.7811847712584], [-79.9482623389436, 32.7811873536229], [-79.9482631213284, 32.7811900243672], [-79.9482639037103, 32.7811926067316], [-79.9482646860597, 32.7811951918013], [-79.9482662807965, 32.7811978686275], [-79.9482670631677, 32.7812004518938], [-79.9482678455281, 32.7812030360617], [-79.9482686268891, 32.7812057031897], [-79.9482694092279, 32.7812082891612], [-79.9482701916102, 32.7812108715256], [-79.9482709718713, 32.7812135413497], [-79.9482725686973, 32.7812161334213], [-79.9482733510797, 32.7812187157858], [-79.9482741334296, 32.7812213008555], [-79.9482749147475, 32.7812239715905], [-79.9482756971301, 32.7812265539548], [-79.948277292889, 32.7812291460173], [-79.9482780752717, 32.7812317283817], [-79.9482788565899, 32.7812343991167], [-79.948279637916, 32.7812369805701], [-79.9482804213337, 32.7812395656489], [-79.9482820171147, 32.7812421559079], [-79.948282799476, 32.7812447400757], [-79.9482835818481, 32.7812473233418], [-79.9482843631774, 32.781249993175], [-79.9482851455605, 32.7812525755394], [-79.9482867413201, 32.7812551676017], [-79.9482875237033, 32.781257749966], [-79.9482883049866, 32.7812603350264], [-79.9482890884373, 32.7812629173999], [-79.9482906841972, 32.7812655094622], [-79.9482914665807, 32.7812680918265], [-79.9482922489316, 32.7812706768961], [-79.9482930312825, 32.7812732619656], [-79.9482946270753, 32.7812758513226], [-79.9482954094264, 32.7812784363921], [-79.94829619181, 32.7812810187564], [-79.9482977875705, 32.7812836108186], [-79.9482985699543, 32.7812861931829], [-79.9482993523382, 32.7812887755471], [-79.9483001346895, 32.7812913606167], [-79.9483017304828, 32.7812939499736], [-79.9483025128343, 32.7812965350431], [-79.9483032952183, 32.7812991174073], [-79.9483048909793, 32.7813017094694], [-79.9483056733309, 32.7813042945389], [-79.9483064557152, 32.7813068769031], [-79.9483080514764, 32.7813094689652], [-79.9483088348927, 32.781311965664], [-79.9483096172771, 32.7813145480283], [-79.9483112130278, 32.781317140992], [-79.9483119954231, 32.7813197224545], [-79.9483127777642, 32.7813223084256], [-79.9483143745905, 32.781324812117], [-79.9483151569752, 32.7813273944812], [-79.9483159393273, 32.7813299795506], [-79.9483175351218, 32.7813325689074], [-79.9483183174741, 32.7813351539768], [-79.9483191008801, 32.7813376515773], [-79.9483206966531, 32.7813402427374], [-79.9483214790273, 32.7813428260034], [-79.9483222624443, 32.7813453227021], [-79.9483238582067, 32.781347914764], [-79.9483246405592, 32.7813504998334], [-79.9483262363544, 32.78135308919], [-79.9483270197608, 32.7813555867904], [-79.9483278021135, 32.7813581718598], [-79.948329398941, 32.781360675551], [-79.9483301812938, 32.7813632606203], [-79.9483317770894, 32.7813658499769], [-79.9483325605069, 32.7813683466756], [-79.9483341562592, 32.7813709396391], [-79.9483349396768, 32.7813734363377], [-79.94833572203, 32.781376021407], [-79.9483373178259, 32.7813786107635], [-79.9483381012437, 32.7813811074622], [-79.9483396969964, 32.7813837004256], [-79.9483404804143, 32.7813861971243], [-79.948342076178, 32.7813887891859], [-79.9483428595852, 32.7813912867864], [-79.9483436430032, 32.781393783485], [-79.9483452387672, 32.7813963755466], [-79.9483460221745, 32.781398873147], [-79.9483476179712, 32.7814014625033], [-79.9483484013569, 32.7814039619072], [-79.9483499971538, 32.7814065512635], [-79.9483507805613, 32.7814090488639], [-79.9483523773578, 32.78141155526], [-79.9483531597443, 32.781414137624], [-79.9483547565626, 32.7814166422166], [-79.9483555399486, 32.7814191416204], [-79.948357135746, 32.7814217309767], [-79.9483579191647, 32.7814242276752], [-79.9483959812339, 32.7815029531071], [-79.9484989285031, 32.7814740107296], [-79.9494065609178, 32.7812177154697], [-79.9505299929401, 32.7809033859], [-79.9503974209562, 32.7806067969433], [-79.950396643677, 32.7806037853639], [-79.9503950540463, 32.780600679337], [-79.9503934633858, 32.7805976589754], [-79.9503918716687, 32.7805946377029], [-79.9503894686728, 32.7805916103717], [-79.9503878779909, 32.7805885918136], [-79.9503862863118, 32.7805856562156], [-79.9503846956518, 32.7805826358539], [-79.9503831028729, 32.7805797029519], [-79.9503815132914, 32.7805766816976], [-79.9503791082098, 32.7805737391207], [-79.9503775164987, 32.7805708062278], [-79.9503759247768, 32.7805678742366], [-79.950374332031, 32.7805649386292], [-79.9503719269657, 32.7805620835302], [-79.9503703352876, 32.780559147932], [-79.9503679291551, 32.7805562928237], [-79.9503663374772, 32.7805533572254], [-79.9503639313342, 32.7805505030188], [-79.9503623386049, 32.7805476548894], [-79.9503599324622, 32.7805448006826], [-79.9503583387031, 32.7805420382185], [-79.9503559315041, 32.7805391831009], [-79.9503543388452, 32.7805364179406], [-79.9503519327031, 32.7805335637338], [-79.9503495255419, 32.7805307942905], [-79.950347930716, 32.7805280318171], [-79.9503455246334, 32.7805252614812], [-79.9503431164103, 32.7805225804084], [-79.9503407092822, 32.7805198082598], [-79.9503382999919, 32.7805171271777], [-79.9503367062823, 32.7805144494861], [-79.9503342980922, 32.7805117657079], [-79.950331889913, 32.780509081028], [-79.9503294806232, 32.7805063999458], [-79.9503270735119, 32.7805037152749], [-79.9503246642706, 32.7805011189654], [-79.9503222550621, 32.7804985199506], [-79.9503198447537, 32.7804959236319], [-79.9503174366129, 32.7804933246262], [-79.9503150273722, 32.7804907283165], [-79.9503126160668, 32.7804882149578], [-79.9503102068372, 32.7804856177463], [-79.9503069842324, 32.7804831001317], [-79.9503045739948, 32.7804805867819], [-79.9503021626683, 32.7804780752265], [-79.9502997534659, 32.7804755645911], [-79.950297342177, 32.7804731387101], [-79.9502941164189, 32.7804707058404], [-79.9502917072603, 32.7804681915978], [-79.9502892949202, 32.7804658531856], [-79.9502860691517, 32.7804634212175], [-79.9502836578635, 32.7804609953362], [-79.9502804332219, 32.7804586472482], [-79.950278020904, 32.7804563070322], [-79.9502739992997, 32.7804524072641], [-79.9502715839185, 32.7804504106204], [-79.950269166429, 32.7804485005346], [-79.9502651448471, 32.7804445989627], [-79.9502627294338, 32.780442605024], [-79.9502587078634, 32.7804387025502], [-79.9502562913829, 32.7804367086023], [-79.9502522719154, 32.7804328088518], [-79.9502498544111, 32.7804308112876], [-79.9502458349659, 32.7804269097334], [-79.9502434184968, 32.7804249148835], [-79.9502393969172, 32.7804210133108], [-79.9502369815051, 32.7804190193716], [-79.9502329599044, 32.7804151196022], [-79.9502305434685, 32.7804131220468], [-79.9502265250442, 32.7804091357283], [-79.9502241075412, 32.7804071381636], [-79.9502200869982, 32.7804032393047], [-79.9502176716304, 32.7804012417582], [-79.9502136510506, 32.7803972572245], [-79.9502112346157, 32.7803952596687], [-79.9502072161714, 32.7803912751531], [-79.9502047986585, 32.7803892784898], [-79.9502007802473, 32.7803852912687], [-79.9501983637696, 32.7803832973197], [-79.9501943432349, 32.7803793091784], [-79.9501919267575, 32.7803773152292], [-79.95018790728, 32.7803733279986], [-79.9501838878029, 32.7803693407679], [-79.9501814723934, 32.7803673468276], [-79.9501774518603, 32.7803633586858], [-79.9501750353837, 32.7803613647363], [-79.9501726200181, 32.7803593671889], [-79.9501710179945, 32.7803572927507], [-79.9501669974622, 32.7803533046084], [-79.9501645809862, 32.7803513106587], [-79.9501621656211, 32.7803493131111], [-79.9501605625413, 32.7803472377619], [-79.9501565430666, 32.7803432505303], [-79.9501541277019, 32.7803412529825], [-79.9501501081472, 32.7803371836831], [-79.9501476917045, 32.7803351870278], [-79.9501460907603, 32.7803331116967], [-79.9501436732612, 32.7803311141304], [-79.9501412568297, 32.7803291165732], [-79.9501396547748, 32.7803270448398], [-79.950137239411, 32.7803250472917], [-79.9501356373997, 32.7803229719513], [-79.9501332198903, 32.7803209752866], [-79.9501308034593, 32.7803189777292], [-79.9501292014482, 32.7803169023887], [-79.9501267860415, 32.7803149084473], [-79.9501251829958, 32.7803128303924], [-79.9501227665217, 32.7803108364418], [-79.9501211645219, 32.7803087601995], [-79.9501187491481, 32.7803067635528], [-79.95011472964, 32.7803026906453], [-79.9501123142293, 32.7803006083239], [-79.9501107122191, 32.7802985329831], [-79.9501066916861, 32.7802946341205], [-79.9497947707016, 32.7799860682638], [-79.949697353051, 32.7799019069863], [-79.9495297219322, 32.7797711041192], [-79.9492030405639, 32.7795402337467], [-79.9491997911737, 32.7795399470096], [-79.9491965427566, 32.779539490736], [-79.9491924829939, 32.7795387686669], [-79.9491892377391, 32.7795381383663], [-79.9491859903386, 32.779537508949], [-79.9491819378303, 32.7795362728964], [-79.9491786956473, 32.779535387403], [-79.9491746462397, 32.7795338050726], [-79.949171407172, 32.7795326607794], [-79.9491673608364, 32.7795308232562], [-79.9491633187307, 32.7795288117152], [-79.9491608961461, 32.7795273290328], [-79.9491568549775, 32.7795250622807], [-79.9491544355229, 32.7795234082766], [-79.9491520149575, 32.7795217578703], [-79.9491487923816, 32.7795190661711], [-79.949145572914, 32.7795162049538], [-79.9491423555778, 32.779513255375], [-79.9491407525376, 32.7795111800125], [-79.949137537206, 32.7795079752318], [-79.9491351374096, 32.779504688175], [-79.9491335374778, 32.7795024432944], [-79.9491319375532, 32.7795001091322], [-79.9491303531435, 32.7794965747625], [-79.9491287553069, 32.7794941558458], [-79.9491279708739, 32.7794917430146], [-79.9491263751579, 32.7794892366383], [-79.9491256072565, 32.779485450456], [-79.9491248238332, 32.7794829537629], [-79.9491240403845, 32.7794803704935], [-79.949123258025, 32.7794777854298], [-79.9491224756222, 32.779475203973], [-79.9491225076865, 32.7794725402311], [-79.9491225386871, 32.7794699648598], [-79.949121757359, 32.7794672941308], [-79.9491217883813, 32.779464716956], [-79.9491218204457, 32.7794620532141], [-79.9491218524666, 32.7794593930792], [-79.949122696903, 32.7794568210881], [-79.949122728924, 32.7794541609532], [-79.9491235733495, 32.779451589864], [-79.9491244177423, 32.7794490214798], [-79.9491244487754, 32.7794464434033], [-79.9491252942357, 32.7794438750284], [-79.9491261376298, 32.7794413896044], [-79.9491277943944, 32.7794389129711], [-79.9491294645823, 32.7794352325048], [-79.9491303069233, 32.7794328345497], [-79.9491319626565, 32.7794304435816], [-79.9491336173258, 32.7794281409842], [-79.9491352720747, 32.7794259204543], [-79.9491369267873, 32.7794236142498], [-79.9491394051564, 32.779420373606], [-79.9491410567644, 32.7794183252994], [-79.9491443486194, 32.7794152611881], [-79.9491476362879, 32.7794123674874], [-79.9491509239599, 32.7794095621664], [-79.9491542095948, 32.7794070147523], [-79.9491566694238, 32.7794053142812], [-79.9491591281927, 32.7794037905604], [-79.9491632241365, 32.7794015062273], [-79.9491656797864, 32.7794001529261], [-79.9491681365035, 32.7793987996341], [-79.9491722262274, 32.7793970319982], [-79.9491754931849, 32.7793958588179], [-79.9491795798369, 32.7793943463743], [-79.9491836612496, 32.7793930918101], [-79.9491869251388, 32.7793922622018], [-79.9491901880441, 32.7793916030317], [-79.9491942642901, 32.7793907776956], [-79.9491975251114, 32.7793902916595], [-79.9492007828138, 32.7793899760431], [-79.9492040394487, 32.7793896604174], [-79.9492081105791, 32.779389437462], [-79.9492113641099, 32.7793893797339], [-79.949214617677, 32.7793894076803], [-79.9492178712804, 32.7793895213012], [-79.949221120676, 32.7793898071361], [-79.949225183536, 32.7793902713064], [-79.9492284319478, 32.7793907275793], [-79.9492316782285, 32.7793912722135], [-79.9492357349022, 32.7793922503757], [-79.949238978079, 32.7793930529075], [-79.9492422213247, 32.7793939384085], [-79.9492462728109, 32.7793953476024], [-79.9492503190582, 32.7793970146756], [-79.9492543663987, 32.7793987683342], [-79.9493157399664, 32.7793010253335], [-79.9476858812306, 32.7783947741613], [-79.9473826364676, 32.7785148309097], [-79.9479143693545, 32.7794827720434]]], "type": "Polygon"}, "id": "307", "properties": {"OBJECTID": 3370, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 65606.84765625, "Shape__Length": 1208.15197197672, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9514397686042, 32.78093410177, -79.9508054485091, 32.781637655558], "geometry": {"coordinates": [[[-79.9508054485091, 32.7811131469476], [-79.9510553492608, 32.781637655558], [-79.9510586101499, 32.7816370810923], [-79.9510643195228, 32.7816358413245], [-79.9510675814411, 32.7816351811932], [-79.9510732917997, 32.7816338593667], [-79.9510765547688, 32.7816331117663], [-79.9510822672183, 32.7816316159032], [-79.9510855301872, 32.7816308683026], [-79.9510912447057, 32.7816292002066], [-79.9510945086604, 32.7816283705473], [-79.9511002231895, 32.7816267015491], [-79.9511059397984, 32.7816248594164], [-79.9511092047821, 32.7816239440913], [-79.95111492242, 32.7816220162928], [-79.9511206410651, 32.7816200046321], [-79.9511263607501, 32.781617906404], [-79.9511320814857, 32.7816157207067], [-79.9511378021886, 32.7816135377144], [-79.9511410703025, 32.7816123617853], [-79.9511459796724, 32.7816099986846], [-79.9511517024546, 32.7816076425574], [-79.9511549715865, 32.7816063818642], [-79.9511598840708, 32.781603848343], [-79.9511631521458, 32.7816025867388], [-79.951165608894, 32.7816012334063], [-79.9511680656422, 32.7815998800738], [-79.9511713358027, 32.7815985337148], [-79.9511737925507, 32.7815971803822], [-79.9511762492986, 32.7815958270495], [-79.9511787081323, 32.7815943889623], [-79.9511811648418, 32.781592949955], [-79.9511844360527, 32.7815915161268], [-79.951186894897, 32.7815900771376], [-79.9511893516062, 32.7815886381301], [-79.9511918104336, 32.7815871116629], [-79.9511942692285, 32.7815855879008], [-79.9511967291124, 32.7815840623443], [-79.9512000002519, 32.7815825455464], [-79.9512024590466, 32.7815810217841], [-79.9512049199702, 32.7815794096604], [-79.9512073787479, 32.78157779842], [-79.9512098386039, 32.7815761862869], [-79.9512122984598, 32.7815745741539], [-79.9512147593398, 32.7815729656369], [-79.9512172191463, 32.7815712687308], [-79.9512196800203, 32.781569571834], [-79.9512237894231, 32.781566171076], [-79.9512262492293, 32.7815644741699], [-79.9512287101029, 32.7815627772728], [-79.951231172038, 32.7815609920051], [-79.9512336349971, 32.7815592103534], [-79.9512377443114, 32.7815556391476], [-79.9512402062028, 32.7815538574867], [-79.9512426702341, 32.7815519865625], [-79.9512467816275, 32.7815482422221], [-79.9512492445801, 32.7815463721903], [-79.9512533570406, 32.7815426278589], [-79.951257471548, 32.7815387130982], [-79.9512599365859, 32.7815367583118], [-79.9512640500253, 32.7815328435418], [-79.9512665139954, 32.781530888746], [-79.9512681666609, 32.7815288404193], [-79.9512706306308, 32.7815268856235], [-79.9512722811504, 32.7815248381801], [-79.9512739327373, 32.7815227907459], [-79.951276397736, 32.7815207502846], [-79.9512780514193, 32.7815186171941], [-79.9512797029952, 32.7815165706615], [-79.9512821679552, 32.7815144445255], [-79.9512838205708, 32.7815123114257], [-79.9512854721897, 32.7815102612861], [-79.9512871258618, 32.7815081290973], [-79.9512895929071, 32.7815059182066], [-79.9512912444874, 32.7815037823924], [-79.9512928970917, 32.7815016501943], [-79.9512945507251, 32.7814994323307], [-79.9512962054583, 32.7814972117712], [-79.9512978590915, 32.7814949939076], [-79.9512995116896, 32.7814927733296], [-79.9513011653226, 32.7814905554659], [-79.9513028189881, 32.7814883348971], [-79.9513044736884, 32.7814861170426], [-79.9513061283827, 32.7814838108082], [-79.9513077820154, 32.7814815929445], [-79.9513094356313, 32.7814792876027], [-79.9513110903144, 32.7814769822701], [-79.9513127450084, 32.7814746760357], [-79.951315242009, 32.7814700602103], [-79.9513168977209, 32.7814676692122], [-79.951318551347, 32.7814653629686], [-79.9513210483302, 32.7814606596651], [-79.9513227051093, 32.781458268676], [-79.9513243608208, 32.7814558776778], [-79.9513252031319, 32.7814534788053], [-79.9513268588324, 32.7814510887087], [-79.9513277000651, 32.7814486907288], [-79.9513293557764, 32.7814462997306], [-79.9513301991055, 32.7814438160943], [-79.951331855884, 32.7814414251052], [-79.9513326992021, 32.7814389423707], [-79.951334354913, 32.7814365513723], [-79.951335198231, 32.7814340686378], [-79.9513360415922, 32.7814315822964], [-79.9513376972645, 32.7814291056234], [-79.9513385405823, 32.7814266228889], [-79.9513393839434, 32.7814241365474], [-79.9513402272611, 32.7814216538128], [-79.951341885068, 32.7814191771581], [-79.9513427283965, 32.7814166935219], [-79.9513435727647, 32.7814141233184], [-79.9513444160931, 32.7814116396821], [-79.9513452594214, 32.7814091560458], [-79.9513461037895, 32.7814065858423], [-79.9513469470685, 32.7814040174332], [-79.9513477904291, 32.7814015310916], [-79.9513486347754, 32.7813989626916], [-79.9513494791542, 32.7813963915864], [-79.9513503245679, 32.7813938231956], [-79.951351168914, 32.7813912547956], [-79.9513520132926, 32.7813886836903], [-79.9513520442281, 32.7813861083179], [-79.9513528886066, 32.7813835372127], [-79.9513537329527, 32.7813809688127], [-79.951354577331, 32.7813783977074], [-79.951354608299, 32.7813758196298], [-79.951355453663, 32.7813731664661], [-79.9513562969739, 32.7813705953517], [-79.9514397686042, 32.78093410177], [-79.9508054485091, 32.7811131469476]]], "type": "Polygon"}, "id": "308", "properties": {"OBJECTID": 3371, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3828.62890625, "Shape__Length": 259.562606406859, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9508486372218, 32.7809033859, -79.9494065609178, 32.7820004352455], "geometry": {"coordinates": [[[-79.950843468522, 32.7815706829705], [-79.9505299929401, 32.7809033859], [-79.9498514237446, 32.7810923418809], [-79.9494065609178, 32.7812177154697], [-79.9496058501491, 32.7817273216421], [-79.9496517945009, 32.7818434809453], [-79.9497138747432, 32.7820004352455], [-79.9501568286352, 32.781875363366], [-79.9506269993694, 32.7817427324118], [-79.9507708732276, 32.7817021330585], [-79.9507714238373, 32.7817017995931], [-79.9507788827514, 32.7816986250785], [-79.9507930640716, 32.7816914661973], [-79.9508029107723, 32.7816850376006], [-79.9508119851858, 32.7816778448393], [-79.9508202043366, 32.781669952134], [-79.9508274936804, 32.7816614327961], [-79.950833787159, 32.7816523647186], [-79.9508390261428, 32.7816428294658], [-79.9508431636579, 32.7816329159168], [-79.9508461612704, 32.7816227130234], [-79.9508479911452, 32.7816123161414], [-79.9508486372218, 32.7816018180221], [-79.9508480940604, 32.7815913160169], [-79.95084636585, 32.781580905756], [-79.950843468522, 32.7815706829705]]], "type": "Polygon"}, "id": "309", "properties": {"OBJECTID": 3372, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14663.126953125, "Shape__Length": 480.977797001369, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9475322341532, 32.7780731746049, -79.9471372759324, 32.7783944153593], "geometry": {"coordinates": [[[-79.9473139914116, 32.7783944153593], [-79.9475322341532, 32.7783076446913], [-79.9475282076307, 32.7783042597368], [-79.9475257850861, 32.7783027788257], [-79.9475225491601, 32.7783012909166], [-79.9475201266374, 32.7782998082019], [-79.9475177040931, 32.7782983272906], [-79.9475144681565, 32.7782968402832], [-79.947512045645, 32.7782953566665], [-79.94750962309, 32.7782938766569], [-79.9475063871646, 32.7782923887474], [-79.9475039646099, 32.7782909087376], [-79.9475015420986, 32.7782894251208], [-79.9474983051061, 32.778287937202], [-79.947495883619, 32.7782864572011], [-79.9474934610646, 32.7782849771911], [-79.9474902251289, 32.778283490183], [-79.9474878036401, 32.7782819218023], [-79.9474853810968, 32.7782804408904], [-79.9474821451722, 32.7782789529803], [-79.9474797215835, 32.7782774702556], [-79.9474773001079, 32.7782759893527], [-79.9474740641728, 32.7782745023442], [-79.947471641617, 32.778272933954], [-79.9474692201417, 32.7782714530509], [-79.9474667975882, 32.7782699730404], [-79.947463561697, 32.7782684824246], [-79.9474611380762, 32.7782670024047], [-79.9474587176231, 32.7782654367379], [-79.9474554817323, 32.7782639461219], [-79.9474530581117, 32.7782624661019], [-79.9474506376589, 32.7782609004349], [-79.9474474017683, 32.7782594098187], [-79.9474449781481, 32.7782579297985], [-79.9474425576956, 32.7782563641313], [-79.9474393218053, 32.7782548735149], [-79.9474368992636, 32.778253392602], [-79.9474344766764, 32.7782518269163], [-79.947431241843, 32.7782503372106], [-79.9474288203236, 32.7782487715339], [-79.9474263967148, 32.7782472906117], [-79.9474239762955, 32.7782457222389], [-79.9474207403625, 32.7782442352289], [-79.9474183178085, 32.7782426668377], [-79.9474158952675, 32.7782411859244], [-79.947412661435, 32.7782396132581], [-79.9474102389159, 32.7782381305412], [-79.9474078163297, 32.778236564855], [-79.9474045814756, 32.778235076952], [-79.9474021599896, 32.7782335085697], [-79.9473997363708, 32.7782320285486], [-79.947397314885, 32.7782304601661], [-79.9473940810533, 32.7782288874994], [-79.9473916585131, 32.7782274065856], [-79.9473892359601, 32.7782258381938], [-79.9473860010958, 32.7782243511921], [-79.9473835796105, 32.7782227828093], [-79.9473811570251, 32.7782212171226], [-79.9473787355528, 32.7782197362177], [-79.947375500687, 32.778218160836], [-79.947373078102, 32.7782165951491], [-79.9473706566171, 32.7782150267661], [-79.9473682351342, 32.7782135467628], [-79.9473650002688, 32.7782119713808], [-79.9473625776841, 32.7782104056937], [-79.947360157267, 32.7782088373196], [-79.9473569223693, 32.7782072646427], [-79.9473544987629, 32.778205783719], [-79.9473520772678, 32.7782042162374], [-79.9473496568184, 32.7782026505684], [-79.9473464208863, 32.7782010751767], [-79.9473439993697, 32.7781995094984], [-79.9473415789532, 32.778197941124], [-79.9473391574368, 32.7781963754456], [-79.9473359215052, 32.7781948000537], [-79.9473334989669, 32.7781933191388], [-79.9473310785181, 32.7781917534694], [-79.9473278425868, 32.7781901780773], [-79.9473254210708, 32.7781886123986], [-79.947323000655, 32.7781870440239], [-79.9473205791392, 32.7781854783451], [-79.9473173432083, 32.7781839029527], [-79.9473149227927, 32.7781823345777], [-79.9473125012772, 32.7781807688989], [-79.9473100787269, 32.7781792005054], [-79.9473068448642, 32.7781775421618], [-79.947304424449, 32.7781759737867], [-79.9473020018664, 32.7781744080984], [-79.9472995803731, 32.7781728406157], [-79.9472963465453, 32.7781712679464], [-79.947293925063, 32.7781696995618], [-79.9472915024808, 32.7781681338733], [-79.9472890809987, 32.7781665654887], [-79.9472866615845, 32.7781649141531], [-79.9472834256549, 32.7781633387598], [-79.9472810041731, 32.778161770375], [-79.9472785837262, 32.7781602047047], [-79.9472761622446, 32.7781586363198], [-79.9472729273158, 32.7781569779661], [-79.9472705058343, 32.7781554095811], [-79.9472680853878, 32.7781538439105], [-79.9472656638612, 32.7781521907527], [-79.9472624289673, 32.7781506180732], [-79.9472600085537, 32.7781490496972], [-79.9472575870274, 32.7781473965392], [-79.9472551655139, 32.7781458308591], [-79.9472527440331, 32.7781442624738], [-79.9472495112728, 32.7781426014327], [-79.9472470886921, 32.7781410357433], [-79.9472446672115, 32.7781394673578], [-79.9472422467315, 32.7781378160121], [-79.9472390118712, 32.7781362406269], [-79.9472365914131, 32.7781345874776], [-79.9472341699002, 32.7781330217971], [-79.9472317505097, 32.778131368657], [-79.9472293279297, 32.7781298029672], [-79.9472260941029, 32.7781281419163], [-79.9472236736906, 32.7781265735396], [-79.9472212521438, 32.7781249221844], [-79.9472188306642, 32.7781233537983], [-79.9472164102068, 32.7781217006487], [-79.947213175315, 32.778120127968], [-79.9472107548686, 32.7781184739164], [-79.9472083343789, 32.7781168234719], [-79.9472059128998, 32.7781152550857], [-79.9472026790631, 32.7781135949358], [-79.9472002575515, 32.7781120292547], [-79.9471978371057, 32.778110375203], [-79.9471954166599, 32.7781087211512], [-79.9471929951486, 32.7781071554699], [-79.9471905746921, 32.7781055023198], [-79.9471873419236, 32.7781038421787], [-79.9471849203782, 32.7781021908227], [-79.9471824988998, 32.7781006224361], [-79.9471800784547, 32.778098968384], [-79.9471776579987, 32.7780973152336], [-79.9471744241415, 32.7780956568864], [-79.9471720026635, 32.7780940884996], [-79.9471695821752, 32.7780924380542], [-79.9471671617196, 32.7780907849036], [-79.947164741275, 32.7780891308512], [-79.947161507451, 32.7780874697985], [-79.9471590869957, 32.7780858166478], [-79.9471566654857, 32.7780842509658], [-79.9471542450414, 32.7780825969132], [-79.9471518245538, 32.7780809464676], [-79.9471494040988, 32.7780792933166], [-79.9471461702863, 32.7780776313618], [-79.9471437498316, 32.7780759782107], [-79.9471413293769, 32.7780743250596], [-79.9471372759324, 32.7780731746049], [-79.9473139914116, 32.7783944153593]]], "type": "Polygon"}, "id": "310", "properties": {"OBJECTID": 3373, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 618.197265625, "Shape__Length": 127.695823879346, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9465704076218, 32.7765288449931, -79.9448927203173, 32.7778968882709], "geometry": {"coordinates": [[[-79.9457647733106, 32.7766496135364], [-79.9456732365262, 32.7766852461101], [-79.9455931428323, 32.7767163373127], [-79.9455016058643, 32.7767519733652], [-79.9454362242415, 32.7767772644316], [-79.9453446871892, 32.77681289676], [-79.9452531500513, 32.7768485299217], [-79.9451943021933, 32.776871556776], [-79.9451027639083, 32.776907274589], [-79.94502267081, 32.7769382824587], [-79.9449311323418, 32.7769739153708], [-79.9449098851438, 32.7769820632608], [-79.9448927203173, 32.7769888728646], [-79.9450391368098, 32.777258574636], [-79.9450844922995, 32.7773422871127], [-79.9451306622737, 32.7774259218235], [-79.9451553216292, 32.7774720910206], [-79.9451998940476, 32.7775533067384], [-79.9452436521604, 32.7776346876693], [-79.9452906087789, 32.7777204790747], [-79.9453869075792, 32.7778968882709], [-79.9454253220534, 32.7778818422591], [-79.945528308683, 32.7778412402423], [-79.9456312941931, 32.7778007229027], [-79.9457350929514, 32.7777602151915], [-79.9458380793482, 32.7777196967856], [-79.9459410645276, 32.7776791827926], [-79.946044862997, 32.7776385864394], [-79.9461478490631, 32.7775980713802], [-79.9462516483965, 32.7775574757628], [-79.9463374684399, 32.7775238541986], [-79.9465704076218, 32.7774323166924], [-79.9465186618607, 32.7773387549294], [-79.9464685284494, 32.7772464975547], [-79.9464136040552, 32.7771467235956], [-79.9463698264553, 32.7770669761481], [-79.9463300297495, 32.7769943035908], [-79.946318877897, 32.7769747080839], [-79.9462973969134, 32.7769347503801], [-79.94625362056, 32.7768549172276], [-79.9462082465916, 32.7767726642043], [-79.9461867574144, 32.7767333936079], [-79.9461413845953, 32.7766510557974], [-79.9460976075144, 32.7765713064533], [-79.9460745300569, 32.7765288449931], [-79.9457647733106, 32.7766496135364]]], "type": "Polygon"}, "id": "311", "properties": {"OBJECTID": 3374, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 19160.953125, "Shape__Length": 554.325503465915, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9471363297248, 32.7778811983514, -79.946119106945, 32.7788133616309], "geometry": {"coordinates": [[[-79.9468163520883, 32.7778811983514], [-79.9466692301337, 32.7779391163169], [-79.9465212945727, 32.7779970298067], [-79.9463741711706, 32.7780549465072], [-79.9462262352612, 32.7781128560339], [-79.9462700132325, 32.7781926053453], [-79.9463504096774, 32.7783387257755], [-79.9464109103002, 32.7784484255835], [-79.9463602348627, 32.77846826146], [-79.9462425323259, 32.7785149231031], [-79.946119106945, 32.7785639405246], [-79.9462551995178, 32.7788133616309], [-79.9463794396172, 32.7787643519872], [-79.9464971423845, 32.7787176929163], [-79.9466091223356, 32.7786733878432], [-79.9467211032175, 32.7786289961007], [-79.9468330829521, 32.7785846899212], [-79.946891933587, 32.7785614034657], [-79.9471363297248, 32.7784645506723], [-79.9470885750723, 32.7783772082772], [-79.9470408194713, 32.7782899524315], [-79.9469930629092, 32.778202695657], [-79.9469453085339, 32.77811544249], [-79.9469381362821, 32.778103095968], [-79.9469094824833, 32.7780507927461], [-79.9468824264331, 32.7780009111687], [-79.9468545560009, 32.7779510198688], [-79.9468259033028, 32.7778986336681], [-79.9468163520883, 32.7778811983514]]], "type": "Polygon"}, "id": "312", "properties": {"OBJECTID": 3375, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7479.923828125, "Shape__Length": 387.16269022037, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9468163520883, 32.7775570309592, -79.9454618991157, 32.7789300554061], "geometry": {"coordinates": [[[-79.9468163520883, 32.7778811983514], [-79.946638861323, 32.7775570309592], [-79.9464909264327, 32.7776149408028], [-79.9463438036109, 32.7776728610714], [-79.9461958683287, 32.7777307705589], [-79.9460487472501, 32.777788602112], [-79.9458068147639, 32.7778835828041], [-79.9454618991157, 32.7780188224056], [-79.9455359249802, 32.7781535524108], [-79.9456831619426, 32.7784229998538], [-79.9458240358525, 32.7786805385803], [-79.9459609411518, 32.7789300554061], [-79.9462551995178, 32.7788133616309], [-79.946119106945, 32.7785639405246], [-79.9462425323259, 32.7785149231031], [-79.9463602348627, 32.77846826146], [-79.9464109103002, 32.7784484255835], [-79.9463504096774, 32.7783387257755], [-79.9462700132325, 32.7781926053453], [-79.9462262352612, 32.7781128560339], [-79.9463741711706, 32.7780549465072], [-79.9465212945727, 32.7779970298067], [-79.9466692301337, 32.7779391163169], [-79.9468163520883, 32.7778811983514]]], "type": "Polygon"}, "id": "313", "properties": {"OBJECTID": 3376, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11690.009765625, "Shape__Length": 554.566317208955, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9450301710746, 32.7760940616915, -79.9444988336921, 32.7764263410974], "geometry": {"coordinates": [[[-79.9449426224837, 32.7760940616915], [-79.9444988336921, 32.7762667583254], [-79.9445648984275, 32.7763868150252], [-79.9445863837048, 32.7764263410974], [-79.9450301710746, 32.7762539029514], [-79.9449426224837, 32.7760940616915]]], "type": "Polygon"}, "id": "314", "properties": {"OBJECTID": 3377, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1267.078125, "Shape__Length": 155.426587563188, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9460398682184, 32.7757759838965, -79.9445863837048, 32.7769033485967], "geometry": {"coordinates": [[[-79.9445863837048, 32.7764263410974], [-79.9446802872907, 32.7765986926737], [-79.9447590684588, 32.7767435989824], [-79.9448458039538, 32.7769033485967], [-79.9452895932033, 32.7767308238261], [-79.9454963688549, 32.7766503131804], [-79.9456590097879, 32.7765871175941], [-79.9460398682184, 32.7764388725114], [-79.9457607244449, 32.7757759838965], [-79.9453120379364, 32.775950274459], [-79.9449426224837, 32.7760940616915], [-79.9450301710746, 32.7762539029514], [-79.9445863837048, 32.7764263410974]]], "type": "Polygon"}, "id": "315", "properties": {"OBJECTID": 3378, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12695.2578125, "Shape__Length": 487.065446552364, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9446986864607, 32.7763262340063, -79.9440001986968, 32.7770977854496], "geometry": {"coordinates": [[[-79.9442079305434, 32.7763754883018], [-79.9440001986968, 32.7764677538448], [-79.9441259356473, 32.7766982783963], [-79.9441800427527, 32.7767981311211], [-79.9442771287944, 32.7769764391418], [-79.9443431771023, 32.7770977854496], [-79.944461679641, 32.7770521642498], [-79.9446496517622, 32.7769796534671], [-79.9446986864607, 32.7769608349488], [-79.9445626054193, 32.7767110649915], [-79.9444806313577, 32.7765612385546], [-79.9443533198795, 32.7763262340063], [-79.9442079305434, 32.7763754883018]]], "type": "Polygon"}, "id": "316", "properties": {"OBJECTID": 3379, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4029.015625, "Shape__Length": 271.270504537889, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9442908721829, 32.776491385172, -79.9435890342604, 32.7772549822783], "geometry": {"coordinates": [[[-79.9435890342604, 32.7766329135439], [-79.9436582995323, 32.7767572929194], [-79.9437132247004, 32.7768567236466], [-79.9437777192498, 32.7769721281919], [-79.9437968286155, 32.7770063094646], [-79.94393536051, 32.7772549822783], [-79.9440538645426, 32.777209361482], [-79.9441723684308, 32.7771636539949], [-79.9442908721829, 32.7771180356747], [-79.9442112448468, 32.7769758705422], [-79.9441244678645, 32.7768196408695], [-79.9440663490107, 32.7767152028362], [-79.9440106101748, 32.7766157643461], [-79.9439413445133, 32.776491385172], [-79.9435890342604, 32.7766329135439]]], "type": "Polygon"}, "id": "317", "properties": {"OBJECTID": 3380, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3971.158203125, "Shape__Length": 269.573783730731, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9456757269811, 32.7752083760711, -79.9439802191876, 32.7760672042502], "geometry": {"coordinates": [[[-79.9451724694573, 32.7752084327901], [-79.9451692160474, 32.7752084047362], [-79.9451659605459, 32.7752084614365], [-79.9451627071247, 32.775208522664], [-79.9451594526906, 32.7752085793734], [-79.945156197189, 32.7752086360734], [-79.9451529427873, 32.7752087784572], [-79.9451496872422, 32.775208838764], [-79.945146431773, 32.7752089811384], [-79.9451431773386, 32.7752091262271], [-79.9451399197778, 32.7752093533556], [-79.945136664276, 32.7752094984349], [-79.9451334088064, 32.7752097291886], [-79.9451301512129, 32.7752099590221], [-79.9451268947086, 32.7752101870612], [-79.9451211939739, 32.7752107394252], [-79.9451179364018, 32.7752110558346], [-79.9451146799189, 32.7752113704496], [-79.9451114212902, 32.7752116859479], [-79.9439802191876, 32.7753221006867], [-79.9443893185434, 32.7760672042502], [-79.9456757269811, 32.7755667645098], [-79.9456425441641, 32.7754854766994], [-79.9456417619436, 32.7754828916145], [-79.9456401653007, 32.7754803878898], [-79.9456393830911, 32.7754778019032], [-79.9456377875159, 32.7754752981877], [-79.9456370052628, 32.7754727158081], [-79.9456354086639, 32.7754702084763], [-79.9456346243091, 32.7754677117527], [-79.9456330276667, 32.775465208028], [-79.9456314321026, 32.7754626150309], [-79.9456306488152, 32.7754601183165], [-79.9456290511495, 32.7754576993553], [-79.9456274555749, 32.7754551956396], [-79.9456266723313, 32.7754526953182], [-79.945625074633, 32.7754501906824], [-79.9456234769567, 32.7754477726228], [-79.9456218803258, 32.7754452679961], [-79.9456210960154, 32.7754428560452], [-79.9456194994175, 32.775440437093], [-79.9456179017525, 32.7754380181317], [-79.9456163040437, 32.7754355143974], [-79.9456147063897, 32.7754330945342], [-79.9456131076903, 32.7754307612381], [-79.9456115100256, 32.7754283422766], [-79.9456107267828, 32.7754259303348], [-79.9456091291183, 32.7754235113733], [-79.9456075293518, 32.7754211780678], [-79.945605930631, 32.775418846575], [-79.9456043329994, 32.7754164249082], [-79.9456019209243, 32.7754140864048], [-79.945600323293, 32.7754117531177], [-79.9455987235379, 32.7754094189103], [-79.9455971248393, 32.775407085614], [-79.9455955250845, 32.7754048397863], [-79.945593926397, 32.7754025055882], [-79.9455923287334, 32.7754001750062], [-79.9455899145898, 32.7753979194534], [-79.945588314868, 32.7753956709204], [-79.9455867151136, 32.7753934250927], [-79.9455851153919, 32.7753911765597], [-79.9455827033509, 32.7753889237304], [-79.945581102562, 32.7753866751881], [-79.9455795028079, 32.7753844293603], [-79.9455770886761, 32.7753822612852], [-79.9455754889549, 32.7753800127521], [-79.9455738892339, 32.7753778525987], [-79.945571474035, 32.7753756845143], [-79.945569874314, 32.7753734359812], [-79.9455674591481, 32.7753713535712], [-79.9455658583601, 32.7753691934085], [-79.945563444229, 32.7753670253332], [-79.9455618434847, 32.7753648615634], [-79.9455594282757, 32.7753627827603], [-79.9455578264642, 32.775360707361], [-79.9455554113316, 32.7753586222456], [-79.9455538094877, 32.7753565495515], [-79.9455513943226, 32.7753544671412], [-79.9455489791903, 32.7753523820256], [-79.9455473784576, 32.7753503057337], [-79.9455449611582, 32.7753483116847], [-79.945540943159, 32.7753442386382], [-79.94553852696, 32.775342241893], [-79.945536110761, 32.7753402451477], [-79.9455320906716, 32.7753363452351], [-79.9455296744838, 32.775334347588], [-79.945527257218, 32.7753324392131], [-79.9455248400067, 32.7753305263294], [-79.945522422741, 32.7753286179543], [-79.9455200055299, 32.7753267050705], [-79.9455159844072, 32.7753228908227], [-79.9455135661181, 32.7753210672111], [-79.9455111478292, 32.7753192435993], [-79.9455087295512, 32.7753174190858], [-79.9455063112624, 32.775315595474], [-79.9455038930174, 32.7753137682552], [-79.9455014747289, 32.7753119446433], [-79.9454990564513, 32.7753101201296], [-79.9454966371392, 32.7753083812812], [-79.9454942178272, 32.7753066424327], [-79.9454909851618, 32.7753048965728], [-79.9454885658499, 32.7753031577243], [-79.9454861465382, 32.7753014188756], [-79.9454837261919, 32.7752997656922], [-79.9454813068803, 32.7752980268435], [-79.9454788865451, 32.7752963727582], [-79.9454764662099, 32.775294718673], [-79.945473232478, 32.7752930611831], [-79.9454708121321, 32.7752914079995], [-79.9454683907625, 32.7752898395793], [-79.945465970395, 32.775288188199], [-79.9454635490256, 32.7752866197788], [-79.9454603142703, 32.7752850470522], [-79.9454578929011, 32.7752834786318], [-79.9454554714993, 32.7752819129166], [-79.9454522357096, 32.7752804258551], [-79.9454498143407, 32.7752788574346], [-79.9454473919153, 32.7752773764828], [-79.9454441561259, 32.775275889421], [-79.9454417337334, 32.7752744057639], [-79.9454393112973, 32.7752729257137], [-79.9454360744954, 32.7752715225135], [-79.9454336510356, 32.7752701272268], [-79.9454304152468, 32.7752686401647], [-79.945425567293, 32.7752659352561], [-79.9454223304806, 32.7752645329573], [-79.9454199070322, 32.7752631367686], [-79.9454142446586, 32.7752605132182], [-79.9454085823398, 32.775257885159], [-79.945402918943, 32.7752553463718], [-79.9453996800727, 32.7752541145013], [-79.9453940156525, 32.7752516604772], [-79.9453883502087, 32.7752492912163], [-79.9453851102713, 32.7752481477159], [-79.9453794437605, 32.7752458668252], [-79.9453737762152, 32.7752436715995], [-79.9453705352979, 32.7752426092553], [-79.945364867753, 32.7752404140292], [-79.9453616257684, 32.7752394400553], [-79.9453583848078, 32.7752383813177], [-79.9453527141373, 32.7752364448904], [-79.9453494721529, 32.7752354709161], [-79.9453462301686, 32.7752344969418], [-79.9453405584747, 32.7752326452774], [-79.945337315423, 32.7752317596734], [-79.9453340724042, 32.775230871364], [-79.9453283996867, 32.7752291044627], [-79.9453251556115, 32.7752283036219], [-79.9453219125602, 32.7752274180174], [-79.9453186685068, 32.7752266153729], [-79.9453129926744, 32.7752251063684], [-79.9453097475646, 32.7752243911925], [-79.9453065034787, 32.775223591253], [-79.9453032583689, 32.7752228760768], [-79.9453000132592, 32.7752221609006], [-79.9452943353686, 32.7752208223241], [-79.9452910892241, 32.775220192813], [-79.9452878430579, 32.7752195651052], [-79.9452845958462, 32.7752189355847], [-79.9452813507801, 32.7752183051807], [-79.945278103601, 32.7752177613345], [-79.9452748553435, 32.7752172183808], [-79.9452716092427, 32.7752166736418], [-79.9452659271263, 32.7752155965594], [-79.9452626799906, 32.7752151374855], [-79.945259431755, 32.7752146811076], [-79.9452561824629, 32.7752142238186], [-79.9452529352947, 32.7752137674497], [-79.9452496871027, 32.7752133074646], [-79.9452464367758, 32.7752129358406], [-79.9452431885836, 32.7752125642351], [-79.9452399403482, 32.7752121078566], [-79.9452366900646, 32.7752118210051], [-79.9452334408052, 32.77521144939], [-79.9452301894543, 32.7752111625292], [-79.9452269412297, 32.7752107936284], [-79.9452236899004, 32.7752105933436], [-79.9452204385496, 32.7752103064826], [-79.9452147513242, 32.7752098290732], [-79.9452114989493, 32.7752096269754], [-79.9452082486657, 32.775209428503], [-79.9452049973475, 32.775209227316], [-79.9452017449291, 32.7752090288249], [-79.9451984936106, 32.7752089160174], [-79.9451952412246, 32.7752088032007], [-79.9451919878258, 32.7752086858659], [-79.9451887365073, 32.7752085730582], [-79.9451854820299, 32.7752085449956], [-79.945182229644, 32.7752084321785], [-79.9451789773014, 32.7752084041341], [-79.945175722824, 32.7752083760711], [-79.9451724694573, 32.7752084327901]]], "type": "Polygon"}, "id": "318", "properties": {"OBJECTID": 3381, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12817.802734375, "Shape__Length": 479.619663903576, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9442467523754, 32.7753327200729, -79.9422534053969, 32.7766603431177], "geometry": {"coordinates": [[[-79.9422534053969, 32.7754844262037], [-79.942892221836, 32.7766603431177], [-79.94334221437, 32.7764863720337], [-79.9442467523754, 32.7761303008487], [-79.9438120729899, 32.7753327200729], [-79.9422534053969, 32.7754844262037]]], "type": "Polygon"}, "id": "319", "properties": {"OBJECTID": 3382, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 23901.3125, "Shape__Length": 628.303778062984, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9438163718644, 32.7754844262037, -79.9413260346762, 32.7777929363819], "geometry": {"coordinates": [[[-79.9422534053969, 32.7754844262037], [-79.941445754202, 32.775572839613], [-79.9413260346762, 32.7755846907918], [-79.9420805433985, 32.7769574555567], [-79.9421919756313, 32.7771597681038], [-79.942208696355, 32.7771896326369], [-79.9422659967625, 32.77729432603], [-79.9423209165096, 32.7773941018528], [-79.9424307595671, 32.7775934784993], [-79.942539787612, 32.7777929363819], [-79.9431355828194, 32.7775632339225], [-79.9432499989369, 32.7775192983771], [-79.9433619685869, 32.7774758565419], [-79.9434404266912, 32.7774456066953], [-79.9435205176632, 32.7774148604626], [-79.9436038776726, 32.777382852785], [-79.9436774345362, 32.7773542829666], [-79.9438163718644, 32.7773006772367], [-79.9437622451171, 32.7772024564949], [-79.9437144612655, 32.7771178621999], [-79.9436897840515, 32.7770731517202], [-79.9436483888433, 32.7769984912553], [-79.943632454017, 32.7769708666514], [-79.9436077748334, 32.7769264140626], [-79.94334221437, 32.7764863720337], [-79.942892221836, 32.7766603431177], [-79.9422534053969, 32.7754844262037]]], "type": "Polygon"}, "id": "320", "properties": {"OBJECTID": 3383, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 37105.943359375, "Shape__Length": 928.860424410517, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9452387339875, 32.7770609618449, -79.9442932091984, 32.7780727533053], "geometry": {"coordinates": [[[-79.9442932091984, 32.7772379050853], [-79.9443553030603, 32.7773500257684], [-79.9444229546828, 32.7774734447576], [-79.944426931188, 32.7774809534712], [-79.9445740497046, 32.7774233817681], [-79.9446623655774, 32.7775870095153], [-79.9445945273731, 32.7776135685719], [-79.9446693306726, 32.7777510519021], [-79.9446876355192, 32.7777846245703], [-79.9447242389453, 32.7778521152467], [-79.9446907285206, 32.7778651381444], [-79.9447186121974, 32.7779137413409], [-79.9448273229795, 32.7778707831961], [-79.944887820286, 32.7779804846442], [-79.9449387668515, 32.7780727533053], [-79.9450556498994, 32.7780265998964], [-79.9452387339875, 32.7779548216117], [-79.9451026477166, 32.7777051405894], [-79.9450469423727, 32.7776027809228], [-79.9449721375704, 32.777465383491], [-79.9448838212401, 32.7773017559696], [-79.9447525113753, 32.7770609618449], [-79.9445955957327, 32.7771214559452], [-79.9444419489456, 32.7771807768094], [-79.9442932091984, 32.7772379050853]]], "type": "Polygon"}, "id": "321", "properties": {"OBJECTID": 3384, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5942.439453125, "Shape__Length": 397.714564985838, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9449387668515, 32.7772379050853, -79.9439973568588, 32.7782487560065], "geometry": {"coordinates": [[[-79.9442932091984, 32.7772379050853], [-79.9439973568588, 32.7773520047001], [-79.9440602441184, 32.7774658476743], [-79.9441278932773, 32.7775893551895], [-79.9442218169566, 32.7777601624682], [-79.9443149265909, 32.7779309599443], [-79.9443786020461, 32.7780468729534], [-79.9444390989108, 32.7781565746255], [-79.9444900461624, 32.7782487560065], [-79.9449387668515, 32.7780727533053], [-79.944887820286, 32.7779804846442], [-79.9448273229795, 32.7778707831961], [-79.9447186121974, 32.7779137413409], [-79.9446907285206, 32.7778651381444], [-79.9447242389453, 32.7778521152467], [-79.9446876355192, 32.7777846245703], [-79.9446693306726, 32.7777510519021], [-79.9445945273731, 32.7776135685719], [-79.9446623655774, 32.7775870095153], [-79.9445740497046, 32.7774233817681], [-79.944426931188, 32.7774809534712], [-79.9444229546828, 32.7774734447576], [-79.9443553030603, 32.7773500257684], [-79.9442932091984, 32.7772379050853]]], "type": "Polygon"}, "id": "322", "properties": {"OBJECTID": 3385, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6090.0546875, "Shape__Length": 396.613185783951, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9443413243739, 32.7774115557385, -79.9425924214887, 32.7787960326417], "geometry": {"coordinates": [[[-79.943489793408, 32.77755085956], [-79.9433328759991, 32.7776113529456], [-79.9432258123898, 32.7776526907723], [-79.943104039269, 32.7776994846792], [-79.9425924214887, 32.777896929141], [-79.9426720220663, 32.7780410683392], [-79.9427142001588, 32.7781183142564], [-79.9427571917061, 32.7781955671893], [-79.942840765087, 32.7783475577121], [-79.9429227421278, 32.778497045321], [-79.9430055328447, 32.7786465390036], [-79.9430516963289, 32.7787306912171], [-79.943053295053, 32.7787330218424], [-79.9430883249125, 32.7787960326417], [-79.9435362367777, 32.7786200289396], [-79.9436253259348, 32.778585234441], [-79.9437193223248, 32.7785482502097], [-79.9438697153561, 32.7784892484333], [-79.9439653466162, 32.7784515909317], [-79.9441410767956, 32.7783826664185], [-79.9443413243739, 32.7783042512962], [-79.9442338591091, 32.7781097063978], [-79.9442235251185, 32.7780897741543], [-79.9441757569228, 32.7780037201049], [-79.9441303988635, 32.7779202633794], [-79.9440866240083, 32.7778404285412], [-79.9440110040186, 32.7777032813951], [-79.9438510275867, 32.7774115557385], [-79.943489793408, 32.77755085956]]], "type": "Polygon"}, "id": "323", "properties": {"OBJECTID": 3386, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20132.375, "Shape__Length": 569.484781228317, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9449128146389, 32.7784313814775, -79.943158372328, 32.7798396986131], "geometry": {"coordinates": [[[-79.9442487207264, 32.7784951802992], [-79.9441555442066, 32.7785316588671], [-79.9440607325429, 32.7785687211669], [-79.9439700064349, 32.7786043594945], [-79.9439046177889, 32.7786300789757], [-79.943780380637, 32.7786787434442], [-79.9436953740045, 32.7787123693587], [-79.9436038310921, 32.7787482582897], [-79.9434918525993, 32.7787922179419], [-79.943158372328, 32.7789230830971], [-79.9432594548945, 32.7791071792917], [-79.9433271229192, 32.7792292282655], [-79.9433979688252, 32.7793575742021], [-79.9434974515866, 32.7795395100166], [-79.9435802443088, 32.779689000622], [-79.9436630237723, 32.7798396986131], [-79.9440995097397, 32.7796671148928], [-79.9442262070139, 32.7796169237681], [-79.9443627135996, 32.7795626975805], [-79.9444706069387, 32.7795201637487], [-79.9445793218935, 32.7794769479097], [-79.9446888501318, 32.7794338273709], [-79.9448065547379, 32.7793871672179], [-79.9449128146389, 32.7793451338587], [-79.9447958093109, 32.7791319537381], [-79.9447472432787, 32.7790446890814], [-79.9446907292553, 32.7789418082202], [-79.9446302481424, 32.7788308207909], [-79.9445769121388, 32.7787342377472], [-79.9445196080151, 32.7786295454202], [-79.9444105587782, 32.7784313814775], [-79.9442487207264, 32.7784951802992]]], "type": "Polygon"}, "id": "324", "properties": {"OBJECTID": 3387, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20532.212890625, "Shape__Length": 574.624736830146, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9435158912419, 32.7789766744633, -79.9417467993242, 32.7803975609493], "geometry": {"coordinates": [[[-79.9428461982458, 32.7790409033669], [-79.9427472946241, 32.7790799917949], [-79.9426541126946, 32.7791167244047], [-79.9425658339328, 32.7791516956578], [-79.9425233285972, 32.77916868134], [-79.9424775550973, 32.779186755227], [-79.9423688394666, 32.7792298808171], [-79.9422184389521, 32.7792893974595], [-79.9417467993242, 32.7794761015421], [-79.9418709651285, 32.7797018901985], [-79.9418980104817, 32.7797524627246], [-79.9420213907639, 32.7799760087861], [-79.9420763150949, 32.7800756107212], [-79.9421487585321, 32.7802062916383], [-79.9422044798721, 32.7803071891293], [-79.9422546344698, 32.7803975609493], [-79.9425096671253, 32.7802965129163], [-79.9426461737537, 32.7802424608724], [-79.9427696034466, 32.7801934478475], [-79.9428881235008, 32.780146796566], [-79.9429821260442, 32.7801094693319], [-79.9430998335408, 32.7800628108268], [-79.9432183573565, 32.7800158192699], [-79.9435158912419, 32.7798980411254], [-79.9434020704465, 32.7796908130915], [-79.9433455503299, 32.7795886196387], [-79.9432587837061, 32.779431446989], [-79.9431744107795, 32.7792781602189], [-79.9431043619883, 32.7791511097586], [-79.9430080435636, 32.7789766744633], [-79.9428461982458, 32.7790409033669]]], "type": "Polygon"}, "id": "325", "properties": {"OBJECTID": 3388, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20876.341796875, "Shape__Length": 579.31526398429, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9455049990403, 32.7794616498386, -79.9437275079574, 32.7809159241961], "geometry": {"coordinates": [[[-79.94452773612, 32.7796393696182], [-79.9443511789698, 32.7797093147687], [-79.9442302055922, 32.7797571466225], [-79.9440381196344, 32.7798329725445], [-79.9437275079574, 32.7799560482369], [-79.9438079225534, 32.7801004525508], [-79.9438763753946, 32.7802249979613], [-79.9439384708566, 32.7803371179907], [-79.9440045441406, 32.7804566592509], [-79.9440706186417, 32.7805761148116], [-79.9442035660277, 32.7808164080137], [-79.9442584922671, 32.7809159241961], [-79.944569913811, 32.7807934556304], [-79.9449884155561, 32.780628443161], [-79.9451862200505, 32.7805506070533], [-79.9455049990403, 32.7804249340303], [-79.9454572439128, 32.7803376766452], [-79.945415853902, 32.7802622448529], [-79.9453744639955, 32.7801868103421], [-79.9453259101978, 32.7800982600049], [-79.9452869087821, 32.7800272271669], [-79.9452375552748, 32.7799375516255], [-79.9451738897318, 32.779820610154], [-79.9450998640905, 32.7796859673926], [-79.9449764846291, 32.7794616498386], [-79.94452773612, 32.7796393696182]]], "type": "Polygon"}, "id": "326", "properties": {"OBJECTID": 3389, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21532.337890625, "Shape__Length": 587.532703429122, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9401346434159, 32.7790611641831, -79.938380801651, 32.7804596137078], "geometry": {"coordinates": [[[-79.9389053582336, 32.780374090973], [-79.9388465031463, 32.7803973762871], [-79.9388815400524, 32.7804596137078], [-79.9390082414435, 32.780409430688], [-79.9390728184562, 32.7803837897249], [-79.9391373954091, 32.7803581505313], [-79.9392109635276, 32.7803289837322], [-79.939363000959, 32.7802689681876], [-79.9394365679411, 32.7802398824098], [-79.9395101368896, 32.7802106306676], [-79.9395689916849, 32.780187344133], [-79.9397218503339, 32.7801266507736], [-79.9401346434159, 32.7799633233864], [-79.9398068182507, 32.7793597003288], [-79.9396444950628, 32.7790611641831], [-79.9390101985122, 32.7793113032261], [-79.9388336386424, 32.7793810672679], [-79.9387183877434, 32.7794263676901], [-79.938380801651, 32.7795595047162], [-79.9384795109484, 32.7797374004769], [-79.9385463907406, 32.7798568660697], [-79.9386291846374, 32.7800055908467], [-79.9387111737714, 32.7801536213878], [-79.9387979392109, 32.7803103680561], [-79.9388576065582, 32.7802870041372], [-79.9389053582336, 32.780374090973]]], "type": "Polygon"}, "id": "327", "properties": {"OBJECTID": 3390, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20254.046875, "Shape__Length": 587.006569294704, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9383522821363, 32.7796093388713, -79.9376067227285, 32.7804619977657], "geometry": {"coordinates": [[[-79.9383522821363, 32.779794928317], [-79.9382491017258, 32.7796093388713], [-79.9379876300262, 32.7797147501513], [-79.9379344981767, 32.7797356777102], [-79.9378633870267, 32.7797635790546], [-79.9377808276488, 32.7797961913425], [-79.9377039933474, 32.7798263624211], [-79.9376067227285, 32.7798646880318], [-79.9376552852537, 32.779951782406], [-79.9377372873448, 32.7800986088747], [-79.9377731064011, 32.780163346984], [-79.9378829445941, 32.7803624725722], [-79.9379386788897, 32.7804619977657], [-79.9380760020292, 32.7804079560783], [-79.9382231369811, 32.7803497905341], [-79.9382631889143, 32.7803340746626], [-79.9382074554197, 32.7802345478242], [-79.9381525364701, 32.7801349441598], [-79.9380968032507, 32.7800354154696], [-79.9381000714374, 32.780034243496], [-79.9381532023943, 32.78001331315], [-79.9380879194942, 32.77989635387], [-79.9383522821363, 32.779794928317]]], "type": "Polygon"}, "id": "328", "properties": {"OBJECTID": 3391, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4647.41015625, "Shape__Length": 333.464533101507, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9421054695285, 32.7795346578459, -79.9409739101946, 32.7807002480671], "geometry": {"coordinates": [[[-79.9409739101946, 32.7797825572686], [-79.9411394335328, 32.7800860992523], [-79.9412205917382, 32.7802359236509], [-79.9412380938128, 32.7802684591065], [-79.9413089187258, 32.7803983536531], [-79.9414728363232, 32.7807002480671], [-79.9416477522476, 32.7806319260498], [-79.9418104044042, 32.7805685633113], [-79.9421054695285, 32.7804533482533], [-79.9419383237394, 32.7801491884363], [-79.9418483627656, 32.7799872624207], [-79.9417663861542, 32.7798377749694], [-79.9417512595864, 32.779810587278], [-79.9417154418788, 32.7797455076747], [-79.9416000435562, 32.7795346578459], [-79.9414856041381, 32.7795801392344], [-79.9413965100186, 32.779615187371], [-79.9413016877028, 32.7796530203373], [-79.9411300364034, 32.7797206865042], [-79.9409739101946, 32.7797825572686]]], "type": "Polygon"}, "id": "329", "properties": {"OBJECTID": 3392, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10342.6875, "Shape__Length": 422.303848994942, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9387480495474, 32.779794928317, -79.9379386788897, 32.7807660861024], "geometry": {"coordinates": [[[-79.9379386788897, 32.7804619977657], [-79.9381074392584, 32.7807660861024], [-79.9382439524721, 32.7807117819719], [-79.9383919022686, 32.780653537617], [-79.9385112470327, 32.7806062114079], [-79.938623234537, 32.7805619127432], [-79.9386796370117, 32.7805395531838], [-79.9387480495474, 32.7805128950273], [-79.9383522821363, 32.779794928317], [-79.9380879194942, 32.77989635387], [-79.9381532023943, 32.78001331315], [-79.9381000714374, 32.780034243496], [-79.9380968032507, 32.7800354154696], [-79.9381525364701, 32.7801349441598], [-79.9382074554197, 32.7802345478242], [-79.9382631889143, 32.7803340746626], [-79.9382231369811, 32.7803497905341], [-79.9380760020292, 32.7804079560783], [-79.9379386788897, 32.7804619977657]]], "type": "Polygon"}, "id": "330", "properties": {"OBJECTID": 3393, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5752.357421875, "Shape__Length": 367.950193325896, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9414728363232, 32.7797825572686, -79.94034940845, 32.7809445417225], "geometry": {"coordinates": [[[-79.9409739101946, 32.7797825572686], [-79.94034940845, 32.7800298652315], [-79.940613589297, 32.7805157720379], [-79.9406804215509, 32.7806394439929], [-79.940748067387, 32.7807631238577], [-79.9408467390472, 32.7809445417225], [-79.9411802232714, 32.7808143672699], [-79.9413665793385, 32.7807417653543], [-79.9414728363232, 32.7807002480671], [-79.9413089187258, 32.7803983536531], [-79.9412380938128, 32.7802684591065], [-79.9412205917382, 32.7802359236509], [-79.9411394335328, 32.7800860992523], [-79.9409739101946, 32.7797825572686]]], "type": "Polygon"}, "id": "331", "properties": {"OBJECTID": 3394, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10252.078125, "Shape__Length": 420.441944810971, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9376814519133, 32.7811209551424, -79.9374737095054, 32.7813255314832], "geometry": {"coordinates": [[[-79.9375946885846, 32.7811209551424], [-79.9374737095054, 32.7811687839294], [-79.9375604726645, 32.7813255314832], [-79.9376814519133, 32.7812777026096], [-79.9375946885846, 32.7811209551424]]], "type": "Polygon"}, "id": "332", "properties": {"OBJECTID": 3395, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 340.669921875, "Shape__Length": 75.5472367868494, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9406987977043, 32.780088206465, -79.9389508027211, 32.7814880689973], "geometry": {"coordinates": [[[-79.93989001914, 32.7802119463428], [-79.9396930219879, 32.7802899540684], [-79.9395720441863, 32.7803377813098], [-79.9392949397882, 32.7804474779782], [-79.9389508027211, 32.7805839958095], [-79.9390335896194, 32.7807333217758], [-79.9391028537628, 32.7808576181298], [-79.9391721149541, 32.7809820857676], [-79.9392740048623, 32.7811661959566], [-79.9392891288008, 32.7811935561906], [-79.9393321240796, 32.7812703784194], [-79.9393950142851, 32.7813836250756], [-79.9394531316821, 32.7814880689973], [-79.9395953537024, 32.7814326070886], [-79.939734306232, 32.7813784072064], [-79.9399116734519, 32.7813093333095], [-79.9400596169353, 32.7812516866004], [-79.9401732312265, 32.781207318541], [-79.9403350721178, 32.7811439507133], [-79.9404478654548, 32.7811001741091], [-79.9406987977043, 32.7810021866856], [-79.9406112689975, 32.7808410527644], [-79.9405316921899, 32.7806949355582], [-79.9403669801081, 32.7803917433498], [-79.940202273352, 32.780088206465], [-79.93989001914, 32.7802119463428]]], "type": "Polygon"}, "id": "333", "properties": {"OBJECTID": 3396, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20343.5234375, "Shape__Length": 572.030574065483, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9427041829487, 32.7805778989586, -79.9415453710157, 32.7817773275612], "geometry": {"coordinates": [[[-79.9415453710157, 32.7808233709647], [-79.9417284944846, 32.781151715176], [-79.9418112887672, 32.7813009545174], [-79.94188055521, 32.7814253349625], [-79.94194265105, 32.781537283787], [-79.9420764105922, 32.7817773275612], [-79.9421941186833, 32.7817307582804], [-79.9423118266489, 32.7816841888866], [-79.9424941083249, 32.7816122308982], [-79.9427041829487, 32.7815292660639], [-79.9426269434301, 32.7813913293435], [-79.9425720187623, 32.7812918115217], [-79.9425099212114, 32.7811798639121], [-79.9424995643452, 32.7811618224655], [-79.9424406540996, 32.7810554811214], [-79.9423570455358, 32.780906237883], [-79.9421747347203, 32.7805778989586], [-79.9415453710157, 32.7808233709647]]], "type": "Polygon"}, "id": "334", "properties": {"OBJECTID": 3397, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10751.080078125, "Shape__Length": 432.981127231513, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9420764105922, 32.7808233709647, -79.9409249940256, 32.7820238790498], "geometry": {"coordinates": [[[-79.9415453710157, 32.7808233709647], [-79.9414154116973, 32.7808740424617], [-79.9412854511782, 32.780924800388], [-79.9409249940256, 32.7810654788731], [-79.9409830953312, 32.7811713819815], [-79.9410372193234, 32.7812697762276], [-79.9410977142556, 32.7813794768852], [-79.9411884574146, 32.7815439885922], [-79.9413189997693, 32.7817807398243], [-79.9413778977112, 32.7818880240354], [-79.9414527193765, 32.7820238790498], [-79.9416399089747, 32.7819499067986], [-79.9417886793198, 32.7818910630026], [-79.9418916744359, 32.7818502936008], [-79.9420764105922, 32.7817773275612], [-79.94194265105, 32.781537283787], [-79.94188055521, 32.7814253349625], [-79.9418112887672, 32.7813009545174], [-79.9417284944846, 32.781151715176], [-79.9415453710157, 32.7808233709647]]], "type": "Polygon"}, "id": "335", "properties": {"OBJECTID": 3398, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10675.017578125, "Shape__Length": 432.153614159546, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9393051874305, 32.7806423283087, -79.9375604726645, 32.782065953969], "geometry": {"coordinates": [[[-79.9375604726645, 32.7813255314832], [-79.9376122289983, 32.7814176335518], [-79.9376695287645, 32.7815221569133], [-79.9377276420796, 32.7816266873122], [-79.9377698353514, 32.7817025580166], [-79.9378470475846, 32.7818419568046], [-79.9379139291801, 32.7819614236813], [-79.9379720430802, 32.782065953969], [-79.9382139894028, 32.7819714170454], [-79.9383374157196, 32.7819231794801], [-79.9384028021851, 32.7818978921842], [-79.9384632893752, 32.7818742803383], [-79.9383940264141, 32.781749982716], [-79.9383446466303, 32.7816629672153], [-79.9382960814236, 32.7815759587639], [-79.9382546876256, 32.7815012964283], [-79.9382124940882, 32.7814255088621], [-79.9382345689745, 32.7814164232751], [-79.9382558304466, 32.7814073306247], [-79.9382980386423, 32.7814819152548], [-79.9383322642909, 32.7815440601249], [-79.9383895952966, 32.7816460041653], [-79.9384365651524, 32.7817305087691], [-79.9385074288908, 32.7818569666236], [-79.938634124134, 32.7818073863367], [-79.9387894234321, 32.7817470561694], [-79.9389512631938, 32.7816839480662], [-79.9390289162646, 32.781653441493], [-79.9393051874305, 32.7815457122692], [-79.9392359245615, 32.7814213303644], [-79.9391905537907, 32.781339160363], [-79.9391451820643, 32.7812570760107], [-79.939130841324, 32.7812322116146], [-79.9390966173267, 32.7811699822156], [-79.9390615789411, 32.781107830517], [-79.9390194005056, 32.781030670775], [-79.9389724336603, 32.780946078951], [-79.938802852352, 32.7806423283087], [-79.9386998551098, 32.7806831807608], [-79.9385821454928, 32.7807298350449], [-79.938482416264, 32.780769514426], [-79.9382756108481, 32.7808512143789], [-79.9381374632628, 32.7809060220144], [-79.9380344664656, 32.7809468739169], [-79.9378546321313, 32.7810179852711], [-79.9376715292863, 32.7810903549001], [-79.9375946885846, 32.7811209551424], [-79.9376814519133, 32.7812777026096], [-79.9375604726645, 32.7813255314832]]], "type": "Polygon"}, "id": "336", "properties": {"OBJECTID": 3399, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20829.3671875, "Shape__Length": 721.731746380131, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9413055827269, 32.7811230382662, -79.9395166738875, 32.7825775719894], "geometry": {"coordinates": [[[-79.9406029535841, 32.7811911081976], [-79.9405138636932, 32.7812256426074], [-79.9404255860728, 32.7812601839883], [-79.9403070694632, 32.7813063161928], [-79.9401468644844, 32.7813689225819], [-79.9399882965086, 32.7814306853028], [-79.9398297272301, 32.781492448711], [-79.9396973110656, 32.7815443010626], [-79.9395166738875, 32.7816146359343], [-79.9397196875219, 32.7819792362618], [-79.9397833629497, 32.7820948947175], [-79.9398733243676, 32.7822566491544], [-79.939961688439, 32.7824159880978], [-79.940051653655, 32.7825775719894], [-79.940319770405, 32.7824715725669], [-79.9405233084594, 32.7823912152279], [-79.940689247572, 32.7823255646824], [-79.9407481034068, 32.7823021955076], [-79.9408069582036, 32.7822789092647], [-79.9409516417723, 32.7822218347616], [-79.9410440121757, 32.7821851847565], [-79.9413055827269, 32.7820821332522], [-79.9412124537405, 32.7819130494204], [-79.9411654842342, 32.7818283754611], [-79.9411105619681, 32.7817286856387], [-79.9410421129327, 32.781604052995], [-79.9409839966641, 32.7814993537327], [-79.9409346488905, 32.781409675558], [-79.9408892764878, 32.7813274214138], [-79.940777053569, 32.7811230382662], [-79.9406029535841, 32.7811911081976]]], "type": "Polygon"}, "id": "337", "properties": {"OBJECTID": 3400, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21669.5625, "Shape__Length": 589.581722487781, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9399045140589, 32.7816722006799, -79.9380421254045, 32.7831536075581], "geometry": {"coordinates": [[[-79.9391831841697, 32.7817448022567], [-79.9390352403724, 32.781802445213], [-79.9388881108239, 32.7818600102826], [-79.9386306385492, 32.7819602577226], [-79.9385276469887, 32.7820005960531], [-79.9383233008393, 32.7820803415397], [-79.9382194966207, 32.782120586887], [-79.9380421254045, 32.7821897412966], [-79.9381106447753, 32.7823082789628], [-79.9381624220915, 32.7823987513642], [-79.9381990610909, 32.7824630635899], [-79.9382508396214, 32.7825534511918], [-79.938291457094, 32.7826251848497], [-79.9384420196021, 32.7828875420211], [-79.9384914032489, 32.782974129149], [-79.9385423857065, 32.7830632200956], [-79.9385941649485, 32.7831536075581], [-79.9387870815469, 32.7830772832115], [-79.938919507914, 32.7830249160506], [-79.9389930773223, 32.7829958341377], [-79.9391287717414, 32.7829422054713], [-79.939264464931, 32.7828886641235], [-79.939396890699, 32.7828362107723], [-79.9396740015486, 32.7827266842828], [-79.9399045140589, 32.7826358254028], [-79.9397826976305, 32.7824176142126], [-79.9397062795706, 32.7822794238943], [-79.9396362323721, 32.7821525454521], [-79.9395669696234, 32.7820280753561], [-79.939369544984, 32.7816722006799], [-79.9391831841697, 32.7817448022567]]], "type": "Polygon"}, "id": "338", "properties": {"OBJECTID": 3401, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22872.640625, "Shape__Length": 606.512818494318, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9421967218884, 32.7822066809913, -79.940120916507, 32.7840198880104], "geometry": {"coordinates": [[[-79.9407402834146, 32.7838182603166], [-79.940850492729, 32.7840176497695], [-79.9408517296246, 32.7840198880104], [-79.9415412467057, 32.7838473570683], [-79.9416966938099, 32.7838083411354], [-79.9417109759618, 32.7838047563366], [-79.9417220984982, 32.7838267572197], [-79.9417289175623, 32.7838399469235], [-79.9417308421658, 32.7838436701135], [-79.9417749716118, 32.7838272145749], [-79.9418803843292, 32.7837885276608], [-79.941984201346, 32.7837472476092], [-79.942183538587, 32.7836693672748], [-79.9421967218884, 32.7836642163514], [-79.9421489027515, 32.7835824546634], [-79.9420843451145, 32.7834721178688], [-79.9419743653435, 32.7832834760036], [-79.9419161740124, 32.7831848738411], [-79.9418540197936, 32.7830776473975], [-79.941850822294, 32.7830729825063], [-79.9417974982362, 32.7829755406609], [-79.9417592805709, 32.7829070043098], [-79.9416987837818, 32.782797301256], [-79.9416518289172, 32.7827113415937], [-79.941604059722, 32.7826253694572], [-79.9415579028731, 32.7825407026792], [-79.9415109337218, 32.7824559440832], [-79.9413740335411, 32.7822066809913], [-79.9412824829046, 32.782242824293], [-79.9411909331985, 32.7822788845663], [-79.941099381343, 32.782315027722], [-79.9409816718473, 32.7823615986577], [-79.9406833117593, 32.7824795313598], [-79.9405623325334, 32.782527359601], [-79.9403522502873, 32.7826105831728], [-79.940120916507, 32.7827020382022], [-79.9402379349849, 32.7829135934314], [-79.9403414260471, 32.7831002047635], [-79.9404138694081, 32.7832308858487], [-79.9404966634869, 32.7833802081807], [-79.9405890219056, 32.7835456803732], [-79.9406144930065, 32.7835920288999], [-79.9406686285339, 32.7836895621728], [-79.9407155995882, 32.7837741515763], [-79.9407402834146, 32.7838182603166]]], "type": "Polygon"}, "id": "339", "properties": {"OBJECTID": 3402, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 31602.998046875, "Shape__Length": 722.767777427577, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9481593089887, 32.7812596949306, -79.9472346624988, 32.7820033892216], "geometry": {"coordinates": [[[-79.9472504199615, 32.7816355948914], [-79.9472346624988, 32.7816388673246], [-79.9472663121735, 32.7817396905934], [-79.9473236191433, 32.7819174527708], [-79.947349269339, 32.7820033892216], [-79.9474148653305, 32.7819682112228], [-79.9479368083394, 32.7818080006791], [-79.9478623337966, 32.7815085031626], [-79.9481593089887, 32.7814468210334], [-79.9481184370597, 32.7812829679821], [-79.9481126312243, 32.7812596949306], [-79.9476459056044, 32.7813644918091], [-79.9476551896431, 32.781393863246], [-79.9476924140989, 32.781543795036], [-79.9472504199615, 32.7816355948914]]], "type": "Polygon"}, "id": "340", "properties": {"OBJECTID": 3403, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4467.62890625, "Shape__Length": 350.889502163972, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9481126312243, 32.7802289222942, -79.9468712325896, 32.7814968029071], "geometry": {"coordinates": [[[-79.9476551896431, 32.781393863246], [-79.9476459056044, 32.7813644918091], [-79.9481126312243, 32.7812596949306], [-79.9480001366851, 32.7809350692628], [-79.9478989812074, 32.7803193919911], [-79.9478421153767, 32.7803260220033], [-79.9474150152547, 32.7803758131849], [-79.947391205347, 32.7802289222942], [-79.9470839482516, 32.780439179584], [-79.9468712325896, 32.7805847407781], [-79.9469765528797, 32.7807752625317], [-79.9472083271681, 32.7814968029071], [-79.9476551896431, 32.781393863246]]], "type": "Polygon"}, "id": "341", "properties": {"OBJECTID": 3404, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14835.154296875, "Shape__Length": 511.868562616591, "ZONE_BASE": "PUD", "__folium_color": "#7f7f7f"}, "type": "Feature"}, {"bbox": [-79.9478989812074, 32.7796664159523, -79.9466274501219, 32.7805847407781], "geometry": {"coordinates": [[[-79.9478989812074, 32.7803193919911], [-79.947848713649, 32.7799251395577], [-79.9478445513073, 32.7798980279955], [-79.9478439280817, 32.7798928713593], [-79.9478426164404, 32.779882563839], [-79.9478412128901, 32.7798722645467], [-79.9478397195657, 32.7798619735005], [-79.9478381364347, 32.7798516934058], [-79.947836463508, 32.7798414233608], [-79.9478346997181, 32.7798311633562], [-79.9478328471783, 32.779820915214], [-79.9478309048211, 32.7798106789251], [-79.9478288726357, 32.7798004553909], [-79.9478267506221, 32.7797902446117], [-79.9478245398478, 32.7797800465966], [-79.9478222392236, 32.7797698631398], [-79.9478198498171, 32.7797596942505], [-79.9478173716065, 32.7797495417323], [-79.9478148046245, 32.7797394028799], [-79.9478121488167, 32.7797292822019], [-79.9478094042157, 32.7797191769932], [-79.9478065707891, 32.779709089959], [-79.9478036495934, 32.7796990220102], [-79.9478006406504, 32.7796889713433], [-79.9477975428708, 32.7796789397525], [-79.9477935548953, 32.7796664159523], [-79.9470802377364, 32.7799488664174], [-79.9468638270303, 32.7800346312287], [-79.9466274501219, 32.7801265185464], [-79.9467509845457, 32.7803508077841], [-79.9468712325896, 32.7805847407781], [-79.9470839482516, 32.780439179584], [-79.947391205347, 32.7802289222942], [-79.9474150152547, 32.7803758131849], [-79.9478421153767, 32.7803260220033], [-79.9478989812074, 32.7803193919911]]], "type": "Polygon"}, "id": "342", "properties": {"OBJECTID": 3405, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8827.294921875, "Shape__Length": 445.858105941979, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9295201803267, 32.7803630507903, -79.9284368260863, 32.7808813541732], "geometry": {"coordinates": [[[-79.9287972528707, 32.7804275361284], [-79.9284368260863, 32.7804649063061], [-79.9284613848168, 32.7807060630997], [-79.9284792353253, 32.7808813541732], [-79.9295201803267, 32.7807804901172], [-79.9294694406304, 32.7803630507903], [-79.9287972528707, 32.7804275361284]]], "type": "Polygon"}, "id": "343", "properties": {"OBJECTID": 3406, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6454.8828125, "Shape__Length": 343.284572105947, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9283280626585, 32.7800634247646, -79.9272415195036, 32.7809762202574], "geometry": {"coordinates": [[[-79.9272657522942, 32.7804286494108], [-79.9272686755642, 32.7804555605775], [-79.9272800670601, 32.7805215467971], [-79.9273256491153, 32.7807841976742], [-79.9273590833553, 32.7809762202574], [-79.9279988632756, 32.7809174343587], [-79.9280735642432, 32.7809105134991], [-79.9283104629712, 32.7808885370431], [-79.9283280626585, 32.7808703018828], [-79.9283002449742, 32.7806204471577], [-79.9282715682865, 32.7803443982988], [-79.9282488474915, 32.7801199352227], [-79.9281422499844, 32.7800634247646], [-79.9279434046852, 32.7800829639125], [-79.9277252818943, 32.7801049680338], [-79.9277692403553, 32.780367434948], [-79.9277374671512, 32.7803712796559], [-79.9277230475128, 32.7802868830165], [-79.9276927059535, 32.7801079453418], [-79.9272415195036, 32.7801498615999], [-79.927259376309, 32.7803517119869], [-79.9272657522942, 32.7804286494108]]], "type": "Polygon"}, "id": "344", "properties": {"OBJECTID": 3407, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12096.6015625, "Shape__Length": 504.842629457677, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.928906471334, 32.7809263602588, -79.9285013526444, 32.7810697394607], "geometry": {"coordinates": [[[-79.9285013526444, 32.7809661283746], [-79.9285130979037, 32.7810697394607], [-79.9286637750189, 32.7810549135083], [-79.928906471334, 32.7810325546874], [-79.9288939448848, 32.7809263602588], [-79.9285013526444, 32.7809661283746]]], "type": "Polygon"}, "id": "345", "properties": {"OBJECTID": 3408, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 612.8203125, "Shape__Length": 115.996115738421, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9283520634795, 32.7809962370095, -79.9274448661695, 32.7811712816691], "geometry": {"coordinates": [[[-79.9274448661695, 32.7810788482701], [-79.9274551205292, 32.7811712816691], [-79.9278281227871, 32.7811369284768], [-79.9283520634795, 32.7810861005102], [-79.9283420702173, 32.7809962370095], [-79.9274448661695, 32.7810788482701]]], "type": "Polygon"}, "id": "346", "properties": {"OBJECTID": 3409, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1224.783203125, "Shape__Length": 225.198247445783, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9282707982599, 32.7812377596194, -79.927492339617, 32.7818495837536], "geometry": {"coordinates": [[[-79.9279354533324, 32.7812623260564], [-79.927492339617, 32.7813038784521], [-79.9275890469267, 32.78159817826], [-79.9276755439884, 32.7818495837536], [-79.9282707982599, 32.7817839850125], [-79.9282186385716, 32.7814020370142], [-79.9281960082279, 32.7812377596194], [-79.9279354533324, 32.7812623260564]]], "type": "Polygon"}, "id": "347", "properties": {"OBJECTID": 3410, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5360.111328125, "Shape__Length": 293.53057383069, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9290197660491, 32.7811628679845, -79.9282416464633, 32.7818684988044], "geometry": {"coordinates": [[[-79.9287760102082, 32.7811768171925], [-79.9286131862406, 32.7811953642988], [-79.9283852508386, 32.7812166758488], [-79.9283855943322, 32.7812191327532], [-79.9282416464633, 32.7812335591866], [-79.9283366887678, 32.7818684988044], [-79.9286981337701, 32.7818291898158], [-79.9290197660491, 32.7817927525939], [-79.9289293178894, 32.7811628679845], [-79.9287760102082, 32.7811768171925]]], "type": "Polygon"}, "id": "348", "properties": {"OBJECTID": 3411, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6499.99609375, "Shape__Length": 322.890242849297, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9314426857443, 32.7806841316472, -79.9296920055307, 32.7809567118739], "geometry": {"coordinates": [[[-79.9303664406176, 32.7807849585616], [-79.9296920055307, 32.7808554273019], [-79.9297029661501, 32.7809567118739], [-79.9303798463995, 32.7808859235506], [-79.9314426857443, 32.7807853455077], [-79.9314300952858, 32.7806841316472], [-79.9303664406176, 32.7807849585616]]], "type": "Polygon"}, "id": "349", "properties": {"OBJECTID": 3412, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2623.2734375, "Shape__Length": 416.743894027366, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9295416792642, 32.7808625046, -79.9290079360468, 32.7810224654007], "geometry": {"coordinates": [[[-79.9290079360468, 32.7809153232469], [-79.9290204520739, 32.7810224654007], [-79.9295416792642, 32.780974283442], [-79.9295292194599, 32.7808625046], [-79.9290079360468, 32.7809153232469]]], "type": "Polygon"}, "id": "350", "properties": {"OBJECTID": 3413, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 850.2734375, "Shape__Length": 145.94075699422, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9315640815138, 32.7809161164486, -79.9297190621992, 32.7816304655051], "geometry": {"coordinates": [[[-79.9314976462473, 32.7809161164486], [-79.9297190621992, 32.7810936692987], [-79.9297800986382, 32.7816304655051], [-79.9315640815138, 32.7814534403941], [-79.9314976462473, 32.7809161164486]]], "type": "Polygon"}, "id": "351", "properties": {"OBJECTID": 3414, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14267.05859375, "Shape__Length": 542.279726528985, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9296382478186, 32.7811029095628, -79.9291429802615, 32.7816886310235], "geometry": {"coordinates": [[[-79.9294863498096, 32.7811115970957], [-79.9291429802615, 32.7811460199298], [-79.9291853094158, 32.7815021935503], [-79.9292074659685, 32.7816886310235], [-79.9296382478186, 32.7816437864404], [-79.9295730101188, 32.7811029095628], [-79.9294863498096, 32.7811115970957]]], "type": "Polygon"}, "id": "352", "properties": {"OBJECTID": 3415, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3478.826171875, "Shape__Length": 240.715943428085, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.931599181473, 32.7815780540903, -79.9297940708241, 32.7821720356877], "geometry": {"coordinates": [[[-79.93018258952, 32.781714507187], [-79.9301052122158, 32.7817222500521], [-79.9297940708241, 32.7817535449348], [-79.9298285981236, 32.7820559574772], [-79.9298418182129, 32.7821720356877], [-79.9301113673676, 32.7821492257513], [-79.9302310773903, 32.7821391069686], [-79.931599181473, 32.7820234139903], [-79.9315688567696, 32.7817758450638], [-79.9315436185545, 32.7815780540903], [-79.93018258952, 32.781714507187]]], "type": "Polygon"}, "id": "353", "properties": {"OBJECTID": 3416, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11289.080078125, "Shape__Length": 507.713782360825, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9297031762494, 32.7817614291406, -79.9292190222347, 32.782216824943], "geometry": {"coordinates": [[[-79.9292190222347, 32.7818119914957], [-79.9292740680495, 32.782216824943], [-79.9297031762494, 32.7821729466556], [-79.9296526804037, 32.7817614291406], [-79.9292190222347, 32.7818119914957]]], "type": "Polygon"}, "id": "354", "properties": {"OBJECTID": 3417, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2632.05859375, "Shape__Length": 205.585659270894, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9331516226626, 32.7792829557038, -79.9314967888586, 32.7806552989699], "geometry": {"coordinates": [[[-79.9326770359604, 32.7793115996262], [-79.9326446072357, 32.779313839126], [-79.932277012383, 32.7793543910972], [-79.9314967888586, 32.7794296540245], [-79.9315775006642, 32.780079933927], [-79.931594537449, 32.7802166648065], [-79.9316477522756, 32.7806552989699], [-79.9331516226626, 32.7805230948518], [-79.9331068316338, 32.780148171991], [-79.9330988825213, 32.7800887727196], [-79.9330814515769, 32.7799455805912], [-79.9330647444543, 32.7797978495246], [-79.9330505181494, 32.7796819342993], [-79.9330719172918, 32.7796800187532], [-79.9330648097017, 32.7796199026474], [-79.9330318121261, 32.7794073282292], [-79.9330197699547, 32.7792829557038], [-79.9326770359604, 32.7793115996262]]], "type": "Polygon"}, "id": "355", "properties": {"OBJECTID": 3418, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 27760.40234375, "Shape__Length": 669.371207013753, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9314415622424, 32.7794952262131, -79.9295826938737, 32.780746016049], "geometry": {"coordinates": [[[-79.9313088553391, 32.7794952262131], [-79.9311676218124, 32.7795212133438], [-79.9295826938737, 32.7797715700051], [-79.929588661572, 32.7798570684465], [-79.9296101441378, 32.7800858870922], [-79.9296798837688, 32.780746016049], [-79.930257714217, 32.7806855941522], [-79.9310707260346, 32.7806076810133], [-79.9314415622424, 32.7805728253516], [-79.9313088553391, 32.7794952262131]]], "type": "Polygon"}, "id": "356", "properties": {"OBJECTID": 3419, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 26691.1328125, "Shape__Length": 665.982568847008, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9334507107432, 32.78063358498, -79.9316618454998, 32.7823607593888], "geometry": {"coordinates": [[[-79.9325356617001, 32.7806889117382], [-79.932286464261, 32.7807108765004], [-79.9316618454998, 32.78076572375], [-79.9317293519907, 32.7812986352439], [-79.9317367440339, 32.7813593464349], [-79.9317448969624, 32.7814243579094], [-79.9317560628763, 32.7815090656302], [-79.9317649209774, 32.7815829320731], [-79.9317775466225, 32.7816813126439], [-79.9317864720659, 32.7817496784768], [-79.9317938715466, 32.7818097882072], [-79.9318013046794, 32.7818671485343], [-79.9318079569905, 32.7819218389227], [-79.9318154237615, 32.7819764516499], [-79.9318220760898, 32.7820311420382], [-79.9318369340545, 32.7821465480135], [-79.9318458101406, 32.7822189554413], [-79.9318635991968, 32.7823607593888], [-79.932313322753, 32.7821731288898], [-79.9324343406985, 32.7821224719354], [-79.9324923978267, 32.7820980662413], [-79.9325831606064, 32.7820602046166], [-79.9326714662735, 32.782023607506], [-79.9330328800003, 32.7818725714693], [-79.9334507107432, 32.78169814293], [-79.9333284657155, 32.7815164304537], [-79.9333325590227, 32.7815143170697], [-79.9333084873136, 32.7814870476099], [-79.9332437765553, 32.7813902782558], [-79.9332212456502, 32.7811702629947], [-79.933165165033, 32.78063358498], [-79.9325356617001, 32.7806889117382]]], "type": "Polygon"}, "id": "357", "properties": {"OBJECTID": 3420, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 30739.7734375, "Shape__Length": 725.850676282589, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.928729492307, 32.7784835735375, -79.9281404830543, 32.7793406689282], "geometry": {"coordinates": [[[-79.928729492307, 32.7792857525982], [-79.9287244024891, 32.77923648854], [-79.9287186036563, 32.7791787121586], [-79.9286865499561, 32.7788740014943], [-79.9286457867445, 32.7784835735375], [-79.9285047892176, 32.7785052714221], [-79.928408619307, 32.7785199793995], [-79.9283254898668, 32.7785326515646], [-79.9282268734723, 32.7785478493086], [-79.9281404830543, 32.7785610952049], [-79.9281824457689, 32.7787873808244], [-79.92818471933, 32.7788009715677], [-79.9281977053813, 32.7788696347773], [-79.9282023294425, 32.7788905500812], [-79.9282260492014, 32.7790125625313], [-79.9282428797977, 32.7790993818082], [-79.9282543836052, 32.7791562648746], [-79.9282589645111, 32.77918069786], [-79.9282650730317, 32.7792132228728], [-79.9282742685326, 32.7792593457535], [-79.9282911666943, 32.7793406689282], [-79.9285836552891, 32.7793039758209], [-79.928729492307, 32.7792857525982]]], "type": "Polygon"}, "id": "358", "properties": {"OBJECTID": 3421, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5630.35546875, "Shape__Length": 317.70497976282, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9287775763449, 32.7792857525982, -79.9282911666943, 32.7798837592671], "geometry": {"coordinates": [[[-79.9282911666943, 32.7793406689282], [-79.9283026505622, 32.7793991814336], [-79.9283742625731, 32.7797947785578], [-79.928382931047, 32.7798837592671], [-79.9286079782298, 32.7798409768058], [-79.9287775763449, 32.7798088740349], [-79.928729492307, 32.7792857525982], [-79.9285836552891, 32.7793039758209], [-79.9282911666943, 32.7793406689282]]], "type": "Polygon"}, "id": "359", "properties": {"OBJECTID": 3422, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3311.263671875, "Shape__Length": 236.493717967254, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9282231039091, 32.7793060904958, -79.927189260556, 32.780031402586], "geometry": {"coordinates": [[[-79.9278893152883, 32.7793400697951], [-79.9278167833224, 32.7793508585745], [-79.927650530063, 32.7793755996847], [-79.9275633295538, 32.7793884088077], [-79.927189260556, 32.7794439701608], [-79.927207935763, 32.7796453984453], [-79.9272438665515, 32.780031402586], [-79.9275802295624, 32.7799993929238], [-79.9278693542469, 32.7799718608162], [-79.9280543040419, 32.7799483987961], [-79.9281700898332, 32.7799263064631], [-79.9282231039091, 32.7799150894518], [-79.9282129954959, 32.7798108009789], [-79.9282023039378, 32.7797540134013], [-79.9281825212552, 32.7796426022423], [-79.9281680327443, 32.7795637901302], [-79.92816267223, 32.7795365988089], [-79.9281527635506, 32.7794823089576], [-79.9281444152259, 32.7794334446936], [-79.928142125867, 32.779421139828], [-79.9281298582413, 32.7793602152434], [-79.9281191340984, 32.7793060904958], [-79.9278893152883, 32.7793400697951]]], "type": "Polygon"}, "id": "360", "properties": {"OBJECTID": 3423, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8728.947265625, "Shape__Length": 374.817219101119, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9294338454504, 32.7797998210882, -79.9283939043823, 32.7803253912535], "geometry": {"coordinates": [[[-79.9284159129389, 32.7801922018609], [-79.9286728590705, 32.7801620015275], [-79.9288009234056, 32.7801466662593], [-79.9288092477393, 32.7801783800573], [-79.9289977313839, 32.7801551757163], [-79.9290189919443, 32.7803253912535], [-79.9292061390203, 32.7803109966451], [-79.9291893323445, 32.7801952359962], [-79.9291730420434, 32.780094649645], [-79.9293259011288, 32.7800704601967], [-79.9293076882905, 32.7799801226359], [-79.9294338454504, 32.7799627949967], [-79.9294316408312, 32.7799419099312], [-79.9294217340359, 32.7797998210882], [-79.9292808406644, 32.77982705807], [-79.9290301733797, 32.7798746325881], [-79.9287435060449, 32.7799279029943], [-79.9286164754744, 32.7799519328332], [-79.9283939043823, 32.7799943979124], [-79.9284159129389, 32.7801922018609]]], "type": "Polygon"}, "id": "361", "properties": {"OBJECTID": 3424, "ORDNO": "2022-042", "ORDSTAT": null, "Shape__Area": 4033.783203125, "Shape__Length": 350.135264093191, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9274152915213, 32.7812668186403, -79.9259744876917, 32.781694520679], "geometry": {"coordinates": [[[-79.9274152915213, 32.7816242358452], [-79.927343609408, 32.7813786326129], [-79.9273099955103, 32.7812668186403], [-79.926630079842, 32.7813428147887], [-79.9264636895309, 32.7813593509258], [-79.926382727652, 32.781366019262], [-79.9263017668281, 32.7813726875539], [-79.926224787742, 32.7813799029839], [-79.9260750745519, 32.7813913570268], [-79.9259744876917, 32.7813996402548], [-79.9260010293731, 32.7816398825341], [-79.9260041885088, 32.7816727587492], [-79.9262537509017, 32.7816540358142], [-79.9263337538895, 32.7816493161298], [-79.9264150559859, 32.7816445203154], [-79.9264980300585, 32.7816396254872], [-79.9266633992625, 32.7816261249383], [-79.9266660247883, 32.781694520679], [-79.9274152915213, 32.7816242358452]]], "type": "Polygon"}, "id": "362", "properties": {"OBJECTID": 3425, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6509.9375, "Shape__Length": 401.426195121955, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9278513660851, 32.7816242358452, -79.9260035078477, 32.7831668174344], "geometry": {"coordinates": [[[-79.9260041885088, 32.7816727587492], [-79.9260256986159, 32.7818806485748], [-79.9260257241921, 32.7820299135137], [-79.92602006777, 32.7821175881717], [-79.9260072253597, 32.7822501292269], [-79.9260035078477, 32.7823748421878], [-79.9260131415365, 32.782540958423], [-79.9260910080465, 32.7831668174344], [-79.9278513660851, 32.78298352967], [-79.9277482060288, 32.7827343338368], [-79.927639394884, 32.7823849169379], [-79.9274152915213, 32.7816242358452], [-79.9266660247883, 32.781694520679], [-79.9266633992625, 32.7816261249383], [-79.9264980300585, 32.7816396254872], [-79.9264150559859, 32.7816445203154], [-79.9263337538895, 32.7816493161298], [-79.9262537509017, 32.7816540358142], [-79.9260041885088, 32.7816727587492]]], "type": "Polygon"}, "id": "363", "properties": {"OBJECTID": 3426, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 33774.431640625, "Shape__Length": 749.104738015118, "ZONE_BASE": "LI", "__folium_color": "#8c564b"}, "type": "Feature"}, {"bbox": [-79.9270829321137, 32.7801648679894, -79.9258379453072, 32.7811193847604], "geometry": {"coordinates": [[[-79.926602131116, 32.7802111648497], [-79.9263178725821, 32.7802424883196], [-79.9258379453072, 32.7802953777298], [-79.9258565150011, 32.7804390274065], [-79.9259444937424, 32.7811193847604], [-79.9270829321137, 32.7810133486808], [-79.9269864435923, 32.7802674127358], [-79.9270345630484, 32.7802599464268], [-79.9270222610646, 32.7801648679894], [-79.926602131116, 32.7802111648497]]], "type": "Polygon"}, "id": "364", "properties": {"OBJECTID": 3427, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14225.064453125, "Shape__Length": 487.674557296402, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9460090708668, 32.7732988393639, -79.9419842150735, 32.7753139495955], "geometry": {"coordinates": [[[-79.942650226027, 32.7747575344249], [-79.9421625614181, 32.7747840230336], [-79.9422342957777, 32.7753139495955], [-79.9439559735756, 32.7751439550362], [-79.9460090708668, 32.7749435615271], [-79.945997769999, 32.7749362485856], [-79.945981612897, 32.7749270053605], [-79.9459775741473, 32.7749246510449], [-79.9459678585506, 32.7749208725188], [-79.94595894176, 32.7749183057246], [-79.9459379087586, 32.7749087616541], [-79.9459169099248, 32.7748962111608], [-79.9459055976941, 32.7748899289087], [-79.9458991562429, 32.7748844605969], [-79.9458943217744, 32.7748806393531], [-79.9458821785712, 32.7748758100071], [-79.9458643574603, 32.7748696448152], [-79.9458489712171, 32.7748639298759], [-79.9458319624694, 32.7748578537466], [-79.9458141693698, 32.7748493692724], [-79.9457972280369, 32.7748377104666], [-79.9457819465401, 32.7748233216828], [-79.9457691154934, 32.774808092764], [-79.945758734896, 32.774792023711], [-79.9457507839491, 32.7747768368476], [-79.9457436577322, 32.7747607146752], [-79.9457308443634, 32.7747440231303], [-79.9457212273001, 32.7747320874457], [-79.9457083662014, 32.7747193491263], [-79.9456914725925, 32.774703741587], [-79.945667272298, 32.7746868698274], [-79.9456406548502, 32.7746681708564], [-79.9456212973502, 32.7746545188902], [-79.9456108473296, 32.7746442904032], [-79.9455947265874, 32.7746319559539], [-79.9455729311961, 32.7746181945869], [-79.9455438716578, 32.7745996476965], [-79.9455163527087, 32.7745882448786], [-79.9454960937333, 32.7745817970859], [-79.9454774946407, 32.7745727040912], [-79.945453993722, 32.7745654581785], [-79.9454361913952, 32.7745577455388], [-79.9454216455397, 32.7745497173719], [-79.9454103272137, 32.7745440347404], [-79.9453909749294, 32.7745298678354], [-79.9453772476462, 32.7745215031215], [-79.9453619154483, 32.7745113218038], [-79.9453554657586, 32.7745065405893], [-79.9453385359258, 32.774493940304], [-79.9453297136623, 32.7744835535764], [-79.945312807683, 32.7744689793791], [-79.9452927168692, 32.774448703382], [-79.9452653609275, 32.7744238140871], [-79.9452452285855, 32.7744069773179], [-79.9452162729442, 32.7743798421803], [-79.9451953117417, 32.7743642842707], [-79.9451832101575, 32.7743560192271], [-79.9451711531894, 32.7743440615578], [-79.9451421146045, 32.7743237949547], [-79.9451122439604, 32.774304983042], [-79.94508884383, 32.7742894040819], [-79.945068679367, 32.7742752310232], [-79.945046041712, 32.7742637818142], [-79.9450234632079, 32.7742474379576], [-79.9449935874396, 32.7742290543424], [-79.9449685398628, 32.7742150943716], [-79.9449394214267, 32.7742014428837], [-79.9449191885187, 32.7741929372348], [-79.944901398771, 32.7741841938292], [-79.9448836453596, 32.7741724440206], [-79.944861023296, 32.7741597088966], [-79.9448303539855, 32.7741397735553], [-79.9447859451024, 32.7741125014096], [-79.9447657454606, 32.774101246331], [-79.9447415362034, 32.7740852328549], [-79.9447116522438, 32.7740676246766], [-79.9446834272101, 32.77404736408], [-79.9446495430147, 32.7740242237977], [-79.9446196767641, 32.7740051538769], [-79.9445898790482, 32.7739804156131], [-79.9445713601252, 32.7739647091223], [-79.9445584328656, 32.7739574667864], [-79.9445463832993, 32.7739448201177], [-79.9445222250451, 32.773924682952], [-79.9444818798646, 32.7738976225173], [-79.9444665499848, 32.7738872670522], [-79.9444447694788, 32.7738723043681], [-79.9444342822633, 32.7738650830741], [-79.9444270161608, 32.7738604688192], [-79.9444036671116, 32.773840596537], [-79.9443778957281, 32.7738192414742], [-79.9443633843926, 32.7738084646887], [-79.9443497341885, 32.7737937425955], [-79.9443337020971, 32.7737741922696], [-79.9443200612475, 32.7737586973822], [-79.9443024087287, 32.7737386172189], [-79.9442758956892, 32.7737113315879], [-79.9442566362716, 32.7736896034269], [-79.9442446117445, 32.7736749810265], [-79.9442188674373, 32.773651394125], [-79.9441987708064, 32.7736316355486], [-79.9441819212863, 32.773612421746], [-79.9441504660087, 32.7735902447045], [-79.944126275698, 32.7735726855258], [-79.9441101793106, 32.7735584590418], [-79.9440957210316, 32.7735433015738], [-79.9440861147392, 32.7735305046009], [-79.944079694267, 32.7735233192818], [-79.9440741016592, 32.773514939866], [-79.9440678920897, 32.7734903167058], [-79.9440576666871, 32.7734614545309], [-79.9440530515809, 32.7734395091506], [-79.9440500392313, 32.7734195553269], [-79.9440469541619, 32.7734055259232], [-79.9440438410724, 32.7733939898479], [-79.9440390566327, 32.7733859573982], [-79.9440293942416, 32.773377800773], [-79.9440188894607, 32.7733721277399], [-79.9440026445696, 32.7733700954573], [-79.9439831026765, 32.7733717331305], [-79.9439586548446, 32.7733754721064], [-79.9439374738444, 32.7733781237123], [-79.9439146599752, 32.7733813618387], [-79.9438926822183, 32.7733825473911], [-79.9438690851279, 32.773383288784], [-79.9438511647079, 32.7733853697084], [-79.9438324174704, 32.7733884697782], [-79.9438153145929, 32.7733902980278], [-79.9438006194454, 32.7733946388309], [-79.9437736723785, 32.7734032513446], [-79.9437524715875, 32.7734075377723], [-79.9437362100901, 32.7734069662816], [-79.943719935065, 32.7734075129459], [-79.9437052991808, 32.7734070429662], [-79.9436955391536, 32.7734069586872], [-79.9436882056377, 32.7734080109293], [-79.9436702405204, 32.7734137853524], [-79.9436547237652, 32.7734188901111], [-79.9436351777306, 32.7734208685862], [-79.9436221653955, 32.7734206705413], [-79.9436075128816, 32.773421574801], [-79.9435977216479, 32.7734240694893], [-79.9435887614578, 32.7734251076776], [-79.9435806343523, 32.7734245207406], [-79.9435749815477, 32.773421120708], [-79.9435701950418, 32.7734133506554], [-79.9435678288381, 32.7734072302167], [-79.9435646814871, 32.7733984426221], [-79.9435632470826, 32.7733825390211], [-79.9435593778885, 32.773366183316], [-79.9435570948197, 32.7733531925235], [-79.9435516124247, 32.7733356216436], [-79.9435501645135, 32.7733209227757], [-79.9435503588771, 32.7733048600892], [-79.9435496183102, 32.7732988393639], [-79.9434144186794, 32.7733129622485], [-79.9431619397424, 32.7733393008029], [-79.9431586812179, 32.7733397010218], [-79.9431554237194, 32.7733400164771], [-79.9431521662209, 32.7733403319323], [-79.9431489087224, 32.7733406473875], [-79.9425934393169, 32.7733997564342], [-79.9424688252407, 32.7734130255593], [-79.9423067467138, 32.7734301785839], [-79.9421454803917, 32.7734473384181], [-79.9419842150735, 32.7734644980489], [-79.9420339904295, 32.7738338922692], [-79.9420343094429, 32.7738336416129], [-79.9421954294189, 32.773816815233], [-79.9423568279051, 32.773799727714], [-79.9425182765493, 32.7737826359071], [-79.942650226027, 32.7747575344249]]], "type": "Polygon"}, "id": "365", "properties": {"OBJECTID": 3433, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 68454.224609375, "Shape__Length": 1335.23782694692, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.942650226027, 32.7737826359071, -79.9420339904295, 32.7747840230336], "geometry": {"coordinates": [[[-79.9420339904295, 32.7738338922692], [-79.9421625614181, 32.7747840230336], [-79.942650226027, 32.7747575344249], [-79.9425182765493, 32.7737826359071], [-79.9423568279051, 32.773799727714], [-79.9421954294189, 32.773816815233], [-79.9420339904295, 32.7738338922692]]], "type": "Polygon"}, "id": "366", "properties": {"OBJECTID": 3434, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6968.515625, "Shape__Length": 365.245749733278, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9420730794725, 32.7734803670689, -79.9409978067123, 32.7754069084964], "geometry": {"coordinates": [[[-79.9414955095778, 32.7735182490963], [-79.9413293379139, 32.7735375153831], [-79.94123647485, 32.7735483913178], [-79.9411493176228, 32.7735584616332], [-79.9409978067123, 32.7735760479995], [-79.9410164690773, 32.7737139935701], [-79.9410351315121, 32.7738519382382], [-79.9410447943974, 32.7739270995737], [-79.9410552717012, 32.7740021804812], [-79.9411792011066, 32.7749174857576], [-79.941244848169, 32.7754069084964], [-79.9416593712142, 32.7753672020384], [-79.9419338201051, 32.7753408013339], [-79.9420730794725, 32.7753274862311], [-79.942023767541, 32.774966454181], [-79.9420058500408, 32.7748340136857], [-79.9418804353449, 32.7739064116989], [-79.9418229642642, 32.7734803670689], [-79.9414955095778, 32.7735182490963]]], "type": "Polygon"}, "id": "367", "properties": {"OBJECTID": 3435, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22717.072265625, "Shape__Length": 675.605820357406, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9417904459332, 32.7730211877849, -79.9410473880686, 32.773415336627], "geometry": {"coordinates": [[[-79.9410525045626, 32.7733667576299], [-79.9410500259867, 32.7733698285622], [-79.9410491741592, 32.7733730831217], [-79.9410483264158, 32.7733759129528], [-79.94104747141, 32.7733793415387], [-79.9410474297393, 32.7733827771656], [-79.9410473880686, 32.7733862127924], [-79.9410481670281, 32.773389054], [-79.9410489470378, 32.7733918086406], [-79.9410505392935, 32.7733945721163], [-79.9410521295279, 32.7733976782715], [-79.941053720795, 32.7734006112834], [-79.9410561274319, 32.7734033836126], [-79.9410585403294, 32.7734055517672], [-79.94106176768, 32.7734078108427], [-79.9410649960195, 32.773409900382], [-79.9410682274588, 32.7734116463492], [-79.9410714672671, 32.7734128783434], [-79.9410747091689, 32.7734138497256], [-79.9410779531094, 32.7734145650045], [-79.9410812022907, 32.7734150242079], [-79.9410844525265, 32.7734153084645], [-79.9410877058684, 32.773415336627], [-79.9410909623163, 32.7734151086954], [-79.9412147726303, 32.7734010620453], [-79.9414135201399, 32.7733785579681], [-79.9417336335428, 32.7733424154202], [-79.9417368931559, 32.7733419259671], [-79.9417401537528, 32.7733413553573], [-79.9417434164482, 32.7733406116134], [-79.9417466812531, 32.7733396938339], [-79.9417499470852, 32.7733386912906], [-79.9417532150159, 32.7733375156134], [-79.9417573035386, 32.7733357482172], [-79.9417605745731, 32.7733343164458], [-79.9417638549962, 32.7733321100801], [-79.9417671374848, 32.7733297332856], [-79.941770422039, 32.7733271860623], [-79.9417737097188, 32.7733243809414], [-79.9417769984696, 32.7733214874499], [-79.9417794759512, 32.7733184164936], [-79.9417819565695, 32.7733150867381], [-79.9417836238093, 32.7733117535535], [-79.9417852931911, 32.773308243628], [-79.9417869635674, 32.7733046516441], [-79.9417886350146, 32.7733009712897], [-79.9417894941547, 32.7732971991359], [-79.9417903532947, 32.7732934269821], [-79.9417903991003, 32.7732896477923], [-79.9417904459332, 32.773285783839], [-79.9417896784045, 32.7732819976133], [-79.9417889108759, 32.7732782113876], [-79.94178814232, 32.7732745099254], [-79.9417873737531, 32.7732708093649], [-79.9417857897538, 32.7732672749024], [-79.9417833924313, 32.7732637325022], [-79.9417818063666, 32.7732603684684], [-79.9417794048803, 32.7732571696307], [-79.9417761890219, 32.7732540494223], [-79.941773784432, 32.7732511066786], [-79.9417705633496, 32.7732484175013], [-79.941767341251, 32.7732458121858], [-79.9417633027036, 32.7732434568299], [-79.9417600743535, 32.7732413673091], [-79.9417568387024, 32.7732398801502], [-79.9415586329259, 32.7731505476299], [-79.9414154415634, 32.7730859123398], [-79.9412714380761, 32.7730211877849], [-79.9410525045626, 32.7733667576299]]], "type": "Polygon"}, "id": "368", "properties": {"OBJECTID": 3436, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2412.369140625, "Shape__Length": 213.085321831207, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9411282450211, 32.7722468810378, -79.9392540211121, 32.7734563396172], "geometry": {"coordinates": [[[-79.9394148828391, 32.772512986044], [-79.9392540211121, 32.7727647360595], [-79.9393842565408, 32.7728243655052], [-79.9395128738766, 32.7728832899782], [-79.939641491413, 32.7729422999909], [-79.939770108023, 32.7730013125646], [-79.9398987248287, 32.7730603232002], [-79.9400273438939, 32.7731192498483], [-79.9401567743913, 32.7731782663591], [-79.94028539173, 32.7732372756875], [-79.9404140102662, 32.7732962884972], [-79.9405426289921, 32.7733552118906], [-79.9406712468085, 32.7734142244214], [-79.9407634658361, 32.7734563396172], [-79.9408123066263, 32.7734534122123], [-79.9409590780133, 32.7732230117389], [-79.9411282450211, 32.7729566387173], [-79.9409138854155, 32.7728580612983], [-79.9406995262938, 32.7727594835048], [-79.9405563487155, 32.772693816524], [-79.9404277330281, 32.7726346343409], [-79.9402991175535, 32.7725755367957], [-79.9401567538612, 32.7725098800013], [-79.9400135770622, 32.7724441276143], [-79.9398712137879, 32.7723784713903], [-79.9397280384868, 32.7723127186794], [-79.9395848644308, 32.7722468810378], [-79.9394148828391, 32.772512986044]]], "type": "Polygon"}, "id": "369", "properties": {"OBJECTID": 3437, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15210.115234375, "Shape__Length": 545.045150691019, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.943041854118, 32.772275188692, -79.9413568818079, 32.7733126935684], "geometry": {"coordinates": [[[-79.9416123000685, 32.77248107204], [-79.9415359995408, 32.7726021350675], [-79.9413568818079, 32.7728841396712], [-79.9415146357387, 32.7729552544628], [-79.9418099161933, 32.7730887211907], [-79.9419361225923, 32.773145391107], [-79.9419625647799, 32.7733126935684], [-79.9420122531576, 32.7733070242269], [-79.9425938322749, 32.7732412715473], [-79.9426141947205, 32.7732389566971], [-79.942947339187, 32.7732013760758], [-79.9429505925215, 32.7732014041888], [-79.9429538468823, 32.7732013475381], [-79.9429571022801, 32.7732012052221], [-79.9429603577107, 32.7732010602009], [-79.9429644316607, 32.7732004938814], [-79.9429676901918, 32.773200092766], [-79.9429709518865, 32.7731995185256], [-79.9429742124616, 32.773198860405], [-79.9429782926451, 32.7731977791918], [-79.9429815574207, 32.773196862281], [-79.9429848221743, 32.7731959471735], [-79.9429889096805, 32.7731943492725], [-79.9429929971369, 32.7731925791207], [-79.9429962660497, 32.7731913204502], [-79.9430003587325, 32.7731892067446], [-79.9430028164077, 32.7731877679121], [-79.9430052761679, 32.7731861568472], [-79.9430077369735, 32.773184547595], [-79.9430101966923, 32.7731828517573], [-79.9430126585264, 32.7731810693619], [-79.9430151214193, 32.7731791994976], [-79.9430184101235, 32.7731763059729], [-79.9430200617461, 32.7731742586519], [-79.9430233535502, 32.7731711090331], [-79.9430250072661, 32.7731689769577], [-79.9430266609844, 32.7731667565028], [-79.9430283136025, 32.7731645387438], [-79.9430299683577, 32.7731622326235], [-79.943031624139, 32.7731598417397], [-79.9430332799093, 32.7731574517576], [-79.9430349523686, 32.7731537713955], [-79.9430357958426, 32.7731512887204], [-79.9430374526303, 32.7731487264969], [-79.9430383117149, 32.7731449543343], [-79.9430391572847, 32.7731422985253], [-79.9430400018283, 32.7731397274798], [-79.9430408473653, 32.7731370743759], [-79.9430408796128, 32.7731344106375], [-79.9430417251824, 32.7731317548284], [-79.94304175743, 32.77312909109], [-79.9430417896339, 32.7731264309585], [-79.9430418218814, 32.7731237672201], [-79.943041854118, 32.7731211043834], [-79.9430410740697, 32.7731183479521], [-79.9430411063064, 32.7731156851154], [-79.9430403241513, 32.7731131027198], [-79.9430403563989, 32.7731104389814], [-79.94303957527, 32.7731077718223], [-79.9430387931478, 32.7731051867214], [-79.9430380110256, 32.7731026016206], [-79.9430372289119, 32.7731001039978], [-79.9430356334245, 32.7730975145745], [-79.9430340504064, 32.773093806985], [-79.9430324528558, 32.7730913879905], [-79.943031668638, 32.7730889760235], [-79.9430300700614, 32.7730866417925], [-79.9430284714825, 32.7730843959411], [-79.9430268728952, 32.7730820626117], [-79.943024457823, 32.7730798944776], [-79.9430228571727, 32.7730777315769], [-79.9430196412765, 32.7730746114012], [-79.9430164232953, 32.7730716634577], [-79.9430132042555, 32.7730688029827], [-79.9430107861248, 32.7730669757151], [-79.9428336573984, 32.7729164107048], [-79.9427402658335, 32.7728367463058], [-79.9427185108184, 32.7728196362652], [-79.9426572708458, 32.7727716903225], [-79.9425999998586, 32.7727320250258], [-79.9425709603207, 32.7727119300482], [-79.942471736492, 32.7726437269339], [-79.9424693151763, 32.7726420763873], [-79.9424668949608, 32.7726404231447], [-79.9424644747563, 32.7726387690003], [-79.9424620545519, 32.7726371148559], [-79.9424588210083, 32.7726354545817], [-79.9424563997337, 32.7726338888075], [-79.942453980597, 32.7726322346722], [-79.9424515592819, 32.7726305841252], [-79.9424491380404, 32.7726290156458], [-79.9424459055648, 32.7726273553804], [-79.9424434832233, 32.7726257895969], [-79.9424410630196, 32.772624135452], [-79.9424386417784, 32.7726225669724], [-79.9424362226095, 32.7726209155419], [-79.942432986973, 32.7726193400212], [-79.9424305667261, 32.7726176894831], [-79.9424281454852, 32.7726161210033], [-79.9424257242117, 32.7726145552286], [-79.9424233029711, 32.7726129867486], [-79.9424200694292, 32.7726113264734], [-79.9424168400272, 32.7726093244388], [-79.9424128056424, 32.7726066264434], [-79.9424095710852, 32.7726050500297], [-79.9424071498123, 32.7726034842546], [-79.9424047285723, 32.7726019157743], [-79.9424023072995, 32.7726003499991], [-79.9423990727317, 32.7725987744868], [-79.9423966514592, 32.7725972087115], [-79.9423942291819, 32.7725957258962], [-79.9423918079095, 32.7725941601209], [-79.9423885733422, 32.7725925846083], [-79.94238615207, 32.7725910188328], [-79.9423837297711, 32.7725895378208], [-79.9423813085319, 32.77258796934], [-79.9423780728944, 32.7725864821976], [-79.9423756516555, 32.7725849137167], [-79.9423732293569, 32.7725834327045], [-79.9423699947575, 32.7725818598966], [-79.942367572481, 32.7725803770808], [-79.9423651512096, 32.7725788113049], [-79.9423627289114, 32.7725773302925], [-79.9423594933074, 32.7725758404444], [-79.9423570720362, 32.7725742746683], [-79.9423546497384, 32.7725727936557], [-79.9423514141457, 32.7725713029056], [-79.942348991837, 32.7725698227947], [-79.9423465695393, 32.7725683417819], [-79.9423433339032, 32.7725668546386], [-79.9423409115948, 32.7725653745275], [-79.9423384893302, 32.7725638908094], [-79.9423352536944, 32.7725624036658], [-79.9423328313972, 32.7725609226528], [-79.9423304090892, 32.7725594425414], [-79.9423271734973, 32.7725579517908], [-79.9423247501626, 32.7725565564428], [-79.9423223278548, 32.7725550763313], [-79.9423190922305, 32.7725535882856], [-79.942316668896, 32.7725521929375], [-79.9423142465885, 32.7725507128258], [-79.9423110099267, 32.7725493104452], [-79.9423085876631, 32.7725478267265], [-79.9423053510015, 32.7725464243456], [-79.9423029286943, 32.7725449442337], [-79.9423005053603, 32.7725435488853], [-79.9422972697368, 32.7725420608391], [-79.942294846403, 32.7725406654905], [-79.9422924230693, 32.7725392701419], [-79.9422891864083, 32.7725378677607], [-79.9422867641017, 32.7725363876485], [-79.9422835274408, 32.7725349852671], [-79.9422811041402, 32.7725335872131], [-79.9422786808178, 32.7725321909625], [-79.9422754441136, 32.7725307921878], [-79.9422730207805, 32.7725293968389], [-79.9422697841201, 32.7725279944571], [-79.9422649364273, 32.7725252885224], [-79.9422616997673, 32.7725238861404], [-79.9422592764346, 32.7725224907912], [-79.9422560397747, 32.7725210884091], [-79.9422528062394, 32.7725194281294], [-79.9422455310531, 32.7725156704072], [-79.9422398700346, 32.7725129574386], [-79.9422342089728, 32.7725102480767], [-79.9422309712759, 32.7725089313591], [-79.942228547955, 32.7725075351075], [-79.9420829785376, 32.7724377269565], [-79.9419131469865, 32.772356457491], [-79.9417433157406, 32.772275188692], [-79.9416123000685, 32.77248107204]]], "type": "Polygon"}, "id": "370", "properties": {"OBJECTID": 3438, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 13676.580078125, "Shape__Length": 499.489391318506, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9410834531234, 32.7735968183521, -79.9403215697313, 32.7754708318043], "geometry": {"coordinates": [[[-79.9405138082233, 32.7736341412417], [-79.9403215697313, 32.7736564423262], [-79.9403713335866, 32.7739795983515], [-79.9403841690158, 32.7740614012781], [-79.9403999941208, 32.7741649615979], [-79.9404165658932, 32.774274025965], [-79.9404339510404, 32.774383098278], [-79.9404505239363, 32.7744920769779], [-79.940467095823, 32.7746011422439], [-79.940483667762, 32.7747102066072], [-79.940500240771, 32.7748191862061], [-79.9405176261751, 32.7749282549067], [-79.9405341982065, 32.7750373219723], [-79.9405583431028, 32.7751926646088], [-79.9406005202178, 32.7754708318043], [-79.9407633985492, 32.7754552327684], [-79.9408708978477, 32.7754449095603], [-79.9409792115033, 32.7754345085355], [-79.9410834531234, 32.775424504145], [-79.9410393990638, 32.7750997654962], [-79.9410244885058, 32.774987792748], [-79.9410095446477, 32.7748785685011], [-79.9409946007723, 32.7747693487625], [-79.9409796580172, 32.7746600397512], [-79.9409655275845, 32.7745508252494], [-79.9409505838531, 32.7744416028042], [-79.9409356401481, 32.7743323812601], [-79.9409206975415, 32.7742230722468], [-79.9409057539333, 32.7741138488982], [-79.9408916236705, 32.7740046352963], [-79.9408751961996, 32.7738836310658], [-79.9408363775511, 32.7735968183521], [-79.9405138082233, 32.7736341412417]]], "type": "Polygon"}, "id": "371", "properties": {"OBJECTID": 3439, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 13585.134765625, "Shape__Length": 597.711809344707, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9404388651697, 32.7736648952775, -79.9393445899017, 32.7755673900879], "geometry": {"coordinates": [[[-79.9400573612852, 32.7736768993386], [-79.9399750869579, 32.7736866648252], [-79.9397364107334, 32.7737148330284], [-79.9393445899017, 32.7737612581266], [-79.9394103149631, 32.7741763822412], [-79.9394307362603, 32.7743032597906], [-79.9394495830457, 32.7744258327598], [-79.9394700357529, 32.774550134037], [-79.9394881465216, 32.7746663426901], [-79.9395070185379, 32.7747868515741], [-79.9395281971142, 32.7749183756158], [-79.9395463549808, 32.77503071941], [-79.9395743019807, 32.7752077419451], [-79.9395818272836, 32.775257887843], [-79.9395931606521, 32.7753293689798], [-79.9396052698592, 32.7754039474275], [-79.9396173581902, 32.7754802463934], [-79.9396317551502, 32.7755673900879], [-79.9398581694016, 32.7755445249756], [-79.9399485738595, 32.7755353449504], [-79.9401130895209, 32.7755188176478], [-79.9402767917652, 32.7755022830781], [-79.9404388651697, 32.7754859046281], [-79.9403747588602, 32.7750710539056], [-79.9403582025956, 32.7749607036427], [-79.9403408163991, 32.7748517160756], [-79.9403242592231, 32.7747414478691], [-79.9403076906185, 32.7746321246846], [-79.9402903159664, 32.7745221966001], [-79.940273737004, 32.774413733673], [-79.9402571873073, 32.7743028631009], [-79.9402397971483, 32.7741941352189], [-79.940221738619, 32.7740735487388], [-79.9402059241953, 32.7739691272359], [-79.9401893047672, 32.7738640151672], [-79.9401591849266, 32.7736648952775], [-79.9400573612852, 32.7736768993386]]], "type": "Polygon"}, "id": "372", "properties": {"OBJECTID": 3440, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22045.9453125, "Shape__Length": 666.416265688197, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9388931757386, 32.7743084925526, -79.937355449854, 32.7757800171334], "geometry": {"coordinates": [[[-79.9388038303839, 32.7743084925526], [-79.9386613772016, 32.7744507078583], [-79.9385889215457, 32.7745225785609], [-79.9385255190777, 32.7745857673608], [-79.9384604762508, 32.7746500583653], [-79.9383962456448, 32.7747144411576], [-79.9383279075006, 32.7747821358779], [-79.9382768500476, 32.7748334057328], [-79.9381903913306, 32.7749195858244], [-79.9381031096824, 32.7750065324876], [-79.9380059527299, 32.7751028418784], [-79.9379219627791, 32.7751866389294], [-79.937837972678, 32.7752704350218], [-79.9376798839512, 32.7754272873179], [-79.9375753023778, 32.7755319496262], [-79.9375341329132, 32.7755728239384], [-79.937355449854, 32.7757508046058], [-79.9373957664496, 32.7757800171334], [-79.9375863355659, 32.775761657935], [-79.9377109390777, 32.7757495985039], [-79.9378282140529, 32.7757382445782], [-79.9379454878644, 32.7757268959413], [-79.9381083681862, 32.7757111272967], [-79.9382614755711, 32.7756963098212], [-79.9383942229574, 32.7756835448014], [-79.9385212705031, 32.775671161256], [-79.9388054962361, 32.7756436457335], [-79.9387504289629, 32.7752218309762], [-79.938838393169, 32.7752126287997], [-79.938830903679, 32.7750926478141], [-79.9387535152384, 32.7751017703849], [-79.9387299948527, 32.7749622356275], [-79.9388090004191, 32.7749538170046], [-79.9388052406583, 32.7749286132898], [-79.9387878270936, 32.7748219492752], [-79.9387856042354, 32.7748040601439], [-79.9387659146466, 32.7746839733202], [-79.9388931757386, 32.7746539829403], [-79.9388878622669, 32.7746225836773], [-79.938882596855, 32.7745874061452], [-79.9388704539383, 32.7745155734194], [-79.9388477416662, 32.7743765615531], [-79.9388224945507, 32.7743790065581], [-79.9388038303839, 32.7743084925526]]], "type": "Polygon"}, "id": "373", "properties": {"OBJECTID": 3441, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14586.806640625, "Shape__Length": 632.222783247261, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.939469232843, 32.7739855689561, -79.9387299948527, 32.7756436457335], "geometry": {"coordinates": [[[-79.938838393169, 32.7752126287997], [-79.9387504289629, 32.7752218309762], [-79.9388054962361, 32.7756436457335], [-79.9391744203563, 32.7756079341133], [-79.939321012257, 32.7755938280779], [-79.939469232843, 32.7755794816699], [-79.939419356669, 32.7752657709407], [-79.939399716188, 32.7751415614606], [-79.9393815730519, 32.7750279308519], [-79.9393604124276, 32.7748949450637], [-79.9393400067865, 32.7747668636816], [-79.939327142977, 32.7746873808051], [-79.9393105411659, 32.774580894358], [-79.9392931573717, 32.7744718227848], [-79.939271211829, 32.7743365124669], [-79.9392470079204, 32.7741862346604], [-79.9392228604642, 32.7740313174033], [-79.9392212786366, 32.7740276115769], [-79.9392205101719, 32.7740239109999], [-79.9392189272927, 32.7740202917404], [-79.9392173423976, 32.7740168384009], [-79.9392149430334, 32.7740134708874], [-79.9392125427051, 32.774010182727], [-79.9392101402515, 32.7740070695039], [-79.9392069223537, 32.7740041223616], [-79.9392045146853, 32.7740014383662], [-79.9392004793056, 32.773998825028], [-79.9391972541005, 32.7739964793455], [-79.9391932134732, 32.7739942979401], [-79.939189984116, 32.7739922940166], [-79.9391867453911, 32.77399106108], [-79.9391826974562, 32.7739894811344], [-79.9391786464099, 32.7739881572825], [-79.9391754024371, 32.7739873562787], [-79.9391721563826, 32.7739867266052], [-79.9391680959248, 32.7739861773471], [-79.9391648456959, 32.7739858912361], [-79.939161595478, 32.7739856042232], [-79.9391575287749, 32.7739855689561], [-79.9391534600119, 32.7739857032157], [-79.9391502034939, 32.7739859347026], [-79.9391469438531, 32.7739864231852], [-79.9391436832261, 32.7739869928241], [-79.9391404215034, 32.7739876526369], [-79.9391371576769, 32.7739884855836], [-79.9391330732562, 32.7739899084279], [-79.9391289867096, 32.7739915062095], [-79.9391248970291, 32.7739933618884], [-79.9391216186183, 32.7739953950495], [-79.939118344382, 32.7739970846479], [-79.9391150607662, 32.773999546135], [-79.9391117750355, 32.7740021816577], [-79.9391084872336, 32.774004987609], [-79.9388837007546, 32.7742287823703], [-79.9388038303839, 32.7743084925526], [-79.9388224945507, 32.7743790065581], [-79.9388477416662, 32.7743765615531], [-79.9388704539383, 32.7745155734194], [-79.938882596855, 32.7745874061452], [-79.9388878622669, 32.7746225836773], [-79.9388931757386, 32.7746539829403], [-79.9387659146466, 32.7746839733202], [-79.9387856042354, 32.7748040601439], [-79.9387878270936, 32.7748219492752], [-79.9388052406583, 32.7749286132898], [-79.9388090004191, 32.7749538170046], [-79.9387299948527, 32.7749622356275], [-79.9387535152384, 32.7751017703849], [-79.938830903679, 32.7750926478141], [-79.938838393169, 32.7752126287997]]], "type": "Polygon"}, "id": "374", "properties": {"OBJECTID": 3442, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12196.095703125, "Shape__Length": 568.683172009722, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.939177095406, 32.7737589549196, -79.9388295231127, 32.7739505518399], "geometry": {"coordinates": [[[-79.9388295231127, 32.7737984567005], [-79.9388851341077, 32.7738409429396], [-79.9388834625387, 32.7738446223528], [-79.9390139501008, 32.7739505518399], [-79.9391703914598, 32.7737950570966], [-79.9391720452505, 32.7737927519208], [-79.93917451657, 32.773790196812], [-79.9391753643672, 32.7737873678955], [-79.9391762131724, 32.773784456019], [-79.939177057825, 32.7737818859017], [-79.939177095406, 32.7737787929363], [-79.9391763133593, 32.7737762105158], [-79.9391755313454, 32.7737736253901], [-79.9391747524324, 32.7737707850722], [-79.9391731570911, 32.7737681919914], [-79.939170747364, 32.7737657659021], [-79.9391675221527, 32.7737633336426], [-79.9391642917418, 32.7737614171872], [-79.9391610561531, 32.7737600147322], [-79.9391578142662, 32.7737589549196], [-79.9388295231127, 32.7737984567005]]], "type": "Polygon"}, "id": "375", "properties": {"OBJECTID": 3443, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 482.703125, "Shape__Length": 98.9092054636035, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9386649697307, 32.7738184197128, -79.93814608785, 32.7742362335099], "geometry": {"coordinates": [[[-79.93814608785, 32.7739452562099], [-79.9381589911558, 32.774021218796], [-79.9381531348341, 32.7740346539915], [-79.9381583361998, 32.7740750706572], [-79.938168790536, 32.7740849553251], [-79.9381808085385, 32.7741670066252], [-79.9382588691919, 32.7742362335099], [-79.9383080029656, 32.7742092568194], [-79.9382565642477, 32.7741582165574], [-79.938418638672, 32.7741415828889], [-79.9384073638516, 32.774065378343], [-79.9384723791355, 32.7740033200771], [-79.9385118841809, 32.7739655261188], [-79.9385843143841, 32.7738956284623], [-79.9386649697307, 32.7738184197128], [-79.938469458186, 32.7738421495667], [-79.9383765912988, 32.7738533696079], [-79.9382177384082, 32.7738726915893], [-79.9381913877401, 32.7738990904255], [-79.93814608785, 32.7739452562099]]], "type": "Polygon"}, "id": "376", "properties": {"OBJECTID": 3444, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1522.2109375, "Shape__Length": 192.773076337343, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9390139501008, 32.7737984567005, -79.9362823368993, 32.775884009452], "geometry": {"coordinates": [[[-79.93814608785, 32.7739452562099], [-79.9380983311718, 32.7739926875688], [-79.9379986799474, 32.7740935277406], [-79.9379187963289, 32.7741741823572], [-79.9378380919355, 32.7742554286149], [-79.937746682233, 32.7743474065785], [-79.937660215113, 32.7744342734161], [-79.9375770409008, 32.7745178184791], [-79.9374930374932, 32.7746027333868], [-79.9374189133062, 32.774677937426], [-79.9373447973328, 32.7747524560991], [-79.9372402161687, 32.7748572055911], [-79.9371224444382, 32.7749763581204], [-79.9370055004137, 32.7750942245025], [-79.9369033846214, 32.7751968487746], [-79.9368177396496, 32.7752828618341], [-79.9367246749523, 32.7753769710455], [-79.9366085505037, 32.7754943328462], [-79.9365031364375, 32.7756004461821], [-79.9363392517375, 32.7757654125017], [-79.9362824310555, 32.775822299464], [-79.9362823996774, 32.775824874831], [-79.9362823682664, 32.7758274529032], [-79.9362823368993, 32.7758300273685], [-79.9362831198787, 32.7758325277498], [-79.9362830885007, 32.7758351031168], [-79.936283871513, 32.7758376007928], [-79.936283840102, 32.7758401788651], [-79.9362846231254, 32.7758426756394], [-79.9362854061379, 32.7758451733155], [-79.9362869888846, 32.7758487962206], [-79.9362885716645, 32.7758524164206], [-79.9362893557209, 32.7758548284314], [-79.9362909541789, 32.7758571618496], [-79.9362925390355, 32.7758606116207], [-79.9362949393597, 32.7758638953304], [-79.9362973396399, 32.775867182647], [-79.9363005553988, 32.7758703030004], [-79.9363037606767, 32.7758742836129], [-79.9363077814427, 32.7758780088823], [-79.9363110045557, 32.7758807009279], [-79.936313423666, 32.7758823551853], [-79.9363158438439, 32.775884009452], [-79.936477911397, 32.7758683233836], [-79.9365292178073, 32.7758633566151], [-79.9367588807681, 32.7758411305982], [-79.9371530509574, 32.7758030661404], [-79.9373317387427, 32.7756248278795], [-79.9373992618249, 32.7755573845417], [-79.9374997110105, 32.7754580109204], [-79.9376051132581, 32.7753527542814], [-79.9376891005568, 32.7752692135403], [-79.9377640362914, 32.7751941868239], [-79.9378447217429, 32.7751145745582], [-79.9379229472401, 32.7750365650873], [-79.9380044645842, 32.774955411493], [-79.9380843394058, 32.7748755323093], [-79.9381378589764, 32.7748224802369], [-79.9381897350361, 32.7747707034994], [-79.938243253411, 32.7747176513722], [-79.9382976006683, 32.7746632356282], [-79.938355235813, 32.7746061807696], [-79.9384746268225, 32.7744874713038], [-79.9385676751242, 32.7743944762217], [-79.9386483737862, 32.7743137434821], [-79.9387825826578, 32.774180475919], [-79.9388566906494, 32.7741064721743], [-79.9389307911946, 32.7740330707472], [-79.9390139501008, 32.7739505518399], [-79.9388834625387, 32.7738446223528], [-79.9388851341077, 32.7738409429396], [-79.9388295231127, 32.7737984567005], [-79.9386902229324, 32.7738153732712], [-79.9386649697307, 32.7738184197128], [-79.9385843143841, 32.7738956284623], [-79.9385118841809, 32.7739655261188], [-79.9384723791355, 32.7740033200771], [-79.9384073638516, 32.774065378343], [-79.938418638672, 32.7741415828889], [-79.9382565642477, 32.7741582165574], [-79.9383080029656, 32.7742092568194], [-79.9382588691919, 32.7742362335099], [-79.9381808085385, 32.7741670066252], [-79.938168790536, 32.7740849553251], [-79.9381583361998, 32.7740750706572], [-79.9381531348341, 32.7740346539915], [-79.9381589911558, 32.774021218796], [-79.93814608785, 32.7739452562099]]], "type": "Polygon"}, "id": "377", "properties": {"OBJECTID": 3445, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 23829.646484375, "Shape__Length": 925.495588710253, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9391549151133, 32.7727465789029, -79.9384321313428, 32.7737258171821], "geometry": {"coordinates": [[[-79.9389302592424, 32.7727465789029], [-79.9387946215148, 32.7729976020087], [-79.9386414802309, 32.7730155176116], [-79.9384818218668, 32.7730344045604], [-79.9384321313428, 32.7730402428965], [-79.9384471395731, 32.7731438820642], [-79.9384591597799, 32.7732257628997], [-79.9386155599515, 32.7732073644576], [-79.9386305673978, 32.7733110883681], [-79.9386335220831, 32.7733356835762], [-79.9386455759102, 32.7734147275146], [-79.9386905995676, 32.7737258171821], [-79.9388193053356, 32.7737106141786], [-79.9389805936365, 32.7736916561429], [-79.9391549151133, 32.7736711777012], [-79.9391399070261, 32.7735674502438], [-79.939124898957, 32.7734638120673], [-79.9391098909411, 32.7733600846087], [-79.9390940685421, 32.7732564393677], [-79.9390790594872, 32.7731527155054], [-79.9390520319232, 32.7729671929539], [-79.9390273159774, 32.7727920011185], [-79.9389302592424, 32.7727465789029]]], "type": "Polygon"}, "id": "378", "properties": {"OBJECTID": 3446, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5893.9765625, "Shape__Length": 370.538960476585, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9389302592424, 32.7723388110875, -79.9380181601231, 32.7737564631032], "geometry": {"coordinates": [[[-79.9382007865006, 32.7736696858389], [-79.9383775523063, 32.7736488861218], [-79.9384150232594, 32.7736444875039], [-79.9384307436347, 32.7737564631032], [-79.9385293100293, 32.7737447784332], [-79.9386905995676, 32.7737258171821], [-79.9386455759102, 32.7734147275146], [-79.9386335220831, 32.7733356835762], [-79.9386305673978, 32.7733110883681], [-79.9386155599515, 32.7732073644576], [-79.9384591597799, 32.7732257628997], [-79.9384471395731, 32.7731438820642], [-79.9384321313428, 32.7730402428965], [-79.9384818218668, 32.7730344045604], [-79.9386414802309, 32.7730155176116], [-79.9387946215148, 32.7729976020087], [-79.9389302592424, 32.7727465789029], [-79.9388162177164, 32.7726931037877], [-79.9387021752779, 32.7726397151335], [-79.9384740907715, 32.772532853636], [-79.9383568121887, 32.7724780594732], [-79.9382395347291, 32.7724231849436], [-79.9380664493371, 32.7723422227568], [-79.9380632106091, 32.7723409086249], [-79.9380599698555, 32.7723398487926], [-79.9380567249267, 32.7723392200007], [-79.9380534747593, 32.7723388463823], [-79.9380494092007, 32.7723388110875], [-79.9380461527412, 32.772339042545], [-79.9380428900263, 32.7723397005157], [-79.9380396273622, 32.7723405298352], [-79.9380363583405, 32.7723417063057], [-79.9380330841563, 32.7723433949729], [-79.9380298068493, 32.7723454281137], [-79.9380265190277, 32.7723481501644], [-79.938024050849, 32.7723503598744], [-79.9380223939149, 32.7723528354537], [-79.9380207380405, 32.7723553994219], [-79.9380198912838, 32.7723581408612], [-79.9380190445268, 32.7723608823005], [-79.9380181956716, 32.772363708494], [-79.9380181601231, 32.77236663103], [-79.9380189400534, 32.7723694713641], [-79.9380480960071, 32.7725804371394], [-79.9380810325377, 32.7728150574747], [-79.9381019818136, 32.7729653063548], [-79.9381177016103, 32.7730772864947], [-79.9381318940314, 32.773181004297], [-79.938146901933, 32.7732847309811], [-79.9381588529244, 32.773372193603], [-79.9381820774116, 32.7735359482559], [-79.9382007865006, 32.7736696858389]]], "type": "Polygon"}, "id": "379", "properties": {"OBJECTID": 3447, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10169.806640625, "Shape__Length": 548.278678840669, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9384307436347, 32.7736444875039, -79.9382007865006, 32.7737816553081], "geometry": {"coordinates": [[[-79.9382007865006, 32.7736696858389], [-79.938215693256, 32.7737816553081], [-79.9384307436347, 32.7737564631032], [-79.9384150232594, 32.7736444875039], [-79.9383775523063, 32.7736488861218], [-79.9382007865006, 32.7736696858389]]], "type": "Polygon"}, "id": "380", "properties": {"OBJECTID": 3448, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 359.919921875, "Shape__Length": 78.0961301360787, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9404569919735, 32.7728909729006, -79.9392107174664, 32.7736197880245], "geometry": {"coordinates": [[[-79.9392477702281, 32.7728909729006], [-79.9392445148623, 32.7728912007923], [-79.9392412541955, 32.7728916892681], [-79.9392379914956, 32.7728924329451], [-79.9392347266811, 32.7728933506577], [-79.9392314545919, 32.7728948671251], [-79.9392281804365, 32.7728966414989], [-79.9392249010019, 32.7728986746534], [-79.9392224369949, 32.7729006301064], [-79.9392191534169, 32.7729031799757], [-79.939216677934, 32.7729059920717], [-79.9392150147344, 32.7729089852655], [-79.9392133557528, 32.7729116312897], [-79.9392125027502, 32.772914889434], [-79.9392116487067, 32.7729182332435], [-79.939210800952, 32.7729210594547], [-79.9392107592092, 32.7729244950807], [-79.9392107174664, 32.7729279307068], [-79.9392561133087, 32.7732085314471], [-79.939278829109, 32.7733473691932], [-79.9393218845195, 32.7736197880245], [-79.9394831705111, 32.7736010845278], [-79.9396444553333, 32.7735823835144], [-79.9399214091415, 32.7735502508755], [-79.9399539926576, 32.773546498434], [-79.940156820039, 32.7735229991474], [-79.9404248142593, 32.7734919069214], [-79.9404280748754, 32.7734912479669], [-79.9404313397274, 32.7734904158969], [-79.9404346055417, 32.773489328616], [-79.9404378797721, 32.7734877237552], [-79.9404411529351, 32.773486118885], [-79.9404444312574, 32.7734840009159], [-79.9404468973496, 32.7734819606838], [-79.940449368612, 32.773479406451], [-79.9404510307405, 32.7734764989055], [-79.9404535061771, 32.7734735127302], [-79.940455172442, 32.7734702643271], [-79.9404560202005, 32.7734675228799], [-79.9404568668806, 32.7734647823251], [-79.9404569085855, 32.7734613457967], [-79.9404569513082, 32.7734578254065], [-79.9404569919735, 32.7734544745433], [-79.9404562130216, 32.7734516342337], [-79.9404554319737, 32.7734488786783], [-79.9404538376289, 32.7734462008507], [-79.9404522495496, 32.7734430947064], [-79.9404498439267, 32.7734402403069], [-79.9404474372752, 32.773437470671], [-79.9404442120515, 32.7734350375436], [-79.9404409858219, 32.7734328632338], [-79.9404377543717, 32.7734309431957], [-79.9402169179693, 32.7733298148815], [-79.9401077152484, 32.7732796493447], [-79.9399507866685, 32.7732075081855], [-79.9398359180671, 32.7731550576579], [-79.9396644281974, 32.7730764347037], [-79.9393780737189, 32.772945102656], [-79.939268058648, 32.7728948400384], [-79.9392648230788, 32.7728934384881], [-79.939261580182, 32.7728924643435], [-79.9392583362492, 32.772891663342], [-79.9392550891987, 32.7728912068141], [-79.9392518368802, 32.7728910081648], [-79.9392477702281, 32.7728909729006]]], "type": "Polygon"}, "id": "381", "properties": {"OBJECTID": 3449, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6866.69140625, "Shape__Length": 384.83782299515, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9394356253813, 32.7720435850802, -79.9388452354129, 32.7726919924288], "geometry": {"coordinates": [[[-79.9388452354129, 32.772578176868], [-79.9390862825396, 32.7726892768863], [-79.9390895222996, 32.7726904205532], [-79.9390927662344, 32.7726912206574], [-79.9390960132701, 32.7726917655694], [-79.9390992645134, 32.7726919642135], [-79.9391025178277, 32.7726919924288], [-79.9391057753056, 32.7726916779832], [-79.9391090369692, 32.7726910190732], [-79.9391123007037, 32.7726901897343], [-79.9391155697239, 32.7726890132351], [-79.9391188428328, 32.7726873245295], [-79.9391221212056, 32.772685290467], [-79.9391254068755, 32.7726826558462], [-79.9391270616918, 32.7726803524841], [-79.9391287175708, 32.7726779616532], [-79.9392771385412, 32.7724458604044], [-79.9394322031184, 32.7722025589952], [-79.9394338620799, 32.7721999129682], [-79.9394347077344, 32.7721971706081], [-79.9394347421838, 32.7721943346387], [-79.9394355909649, 32.772191422761], [-79.9394356253813, 32.7721885894968], [-79.9394348464849, 32.7721857482794], [-79.9394340686888, 32.7721829043659], [-79.9394324743545, 32.7721802301324], [-79.9394316923475, 32.7721776450088], [-79.9394292826303, 32.7721751332506], [-79.9394276831262, 32.7721728846379], [-79.939424459045, 32.7721704514932], [-79.9394212338904, 32.7721681067187], [-79.9394179972954, 32.7721666158819], [-79.939147813463, 32.7720435850802], [-79.9389770259604, 32.7723089952934], [-79.9390077632371, 32.7723231762979], [-79.9388452354129, 32.772578176868]]], "type": "Polygon"}, "id": "382", "properties": {"OBJECTID": 3450, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2818.638671875, "Shape__Length": 229.461496924136, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.939147813463, 32.7717193597976, -79.938093109373, 32.772578176868], "geometry": {"coordinates": [[[-79.939147813463, 32.7720435850802], [-79.9390022086812, 32.7719770375712], [-79.9387101853997, 32.771844022447], [-79.9385637668969, 32.7717774673519], [-79.9384432359397, 32.7717226495557], [-79.9384400004343, 32.771721159604], [-79.9384367575831, 32.7717202738174], [-79.9384335116292, 32.7717196432228], [-79.9384302614542, 32.7717193597976], [-79.9384261938263, 32.7717194092695], [-79.9384221220212, 32.7717198023039], [-79.9384188593213, 32.7717204611863], [-79.9384155945311, 32.7717213797787], [-79.9384123235389, 32.7717228962331], [-79.9384090483435, 32.7717246705756], [-79.9384057720734, 32.7717265332883], [-79.9384033028731, 32.7717289170507], [-79.9384016480338, 32.7717312222063], [-79.9383991788222, 32.7717336068703], [-79.938243321917, 32.7719750053444], [-79.9380957530597, 32.7722038508067], [-79.9380949062813, 32.772206506572], [-79.9380940584718, 32.7722092471008], [-79.9380932127641, 32.7722119903534], [-79.9380931783041, 32.7722148236171], [-79.9380931427692, 32.7722177452514], [-79.938093109373, 32.7722204910464], [-79.9380947025592, 32.7722232563731], [-79.9380954845964, 32.7722259235727], [-79.9380970798885, 32.7722285157654], [-79.9380986762192, 32.7722309348149], [-79.9381010901146, 32.7722331878095], [-79.9381034966221, 32.7722358727185], [-79.9381067248474, 32.7722379623355], [-79.9381099614666, 32.7722394496002], [-79.938224011329, 32.7722920678081], [-79.9383429204983, 32.7723466129162], [-79.9384682956447, 32.772404480463], [-79.938596909665, 32.7724636647047], [-79.9387255206397, 32.7725229380652], [-79.9388452354129, 32.772578176868], [-79.9390077632371, 32.7723231762979], [-79.9389770259604, 32.7723089952934], [-79.939147813463, 32.7720435850802]]], "type": "Polygon"}, "id": "383", "properties": {"OBJECTID": 3451, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7394.818359375, "Shape__Length": 346.667302388228, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9387329873281, 32.770527492595, -79.9375088476541, 32.7715046008284], "geometry": {"coordinates": [[[-79.9378918248047, 32.7705278776388], [-79.9378885632018, 32.770528537418], [-79.9378852995728, 32.7705294514966], [-79.9378820274905, 32.7705308849582], [-79.9378787575648, 32.7705323166348], [-79.937875472977, 32.7705347780783], [-79.9378721904766, 32.7705371556694], [-79.9378705356458, 32.7705394608175], [-79.9378688797981, 32.7705419373052], [-79.9376756773577, 32.7708444292461], [-79.9375114914269, 32.7711019071835], [-79.9375098323841, 32.7711045567911], [-79.9375089856234, 32.7711072982266], [-79.9375089511338, 32.7711101323915], [-79.9375089166552, 32.7711129656548], [-79.9375088821766, 32.7711157989181], [-79.9375088476541, 32.7711186357883], [-79.9375096275209, 32.7711213913525], [-79.9375112217769, 32.7711240656107], [-79.937512818063, 32.7711265730473], [-79.9375144143573, 32.7711289921041], [-79.9375168282072, 32.77113124511], [-79.9375192357446, 32.7711339291377], [-79.9375224638794, 32.7711359339971], [-79.9375257004368, 32.7711374221788], [-79.9376656419128, 32.7712012573574], [-79.9378371304462, 32.7712795422401], [-79.9380094347346, 32.7713577464847], [-79.9381809239166, 32.7714360281815], [-79.9383257222119, 32.7715019699579], [-79.9383289618812, 32.7715030288721], [-79.9383322047232, 32.7715039146616], [-79.9383354538519, 32.7715043712326], [-79.9383387039491, 32.7715045725928], [-79.9383419572189, 32.7715046008284], [-79.9383452156969, 32.7715042007378], [-79.9383484762912, 32.7715036266116], [-79.938351741052, 32.7715027098245], [-79.9383550089268, 32.7715015369434], [-79.938358284126, 32.7714997617007], [-79.9383615635611, 32.7714977258647], [-79.9383640316558, 32.7714953447992], [-79.9383664987783, 32.7714931314663], [-79.9383681546446, 32.7714907415478], [-79.9385339559931, 32.7712340511584], [-79.9387295994043, 32.7709313202188], [-79.9387304450947, 32.7709286635384], [-79.9387321051274, 32.7709259291509], [-79.9387321395663, 32.7709230958873], [-79.9387329873281, 32.7709202687783], [-79.9387322084987, 32.7709174248515], [-79.9387322429375, 32.770914591588], [-79.938731463034, 32.7709118360316], [-79.9387306831307, 32.7709090804752], [-79.9387290878109, 32.7709064909964], [-79.9387274904526, 32.770904069241], [-79.9387250776451, 32.7709018162684], [-79.9387226627661, 32.7708997337243], [-79.9387194356167, 32.7708975584586], [-79.9387162053546, 32.7708956392867], [-79.9383918238771, 32.7707482577921], [-79.9382114333809, 32.7706662863744], [-79.9380536904295, 32.7705947381042], [-79.9379129394851, 32.770530724991], [-79.9379096998283, 32.7705294929136], [-79.9379064570268, 32.770528607113], [-79.9379032132195, 32.7705278917502], [-79.9378999620562, 32.7705276055964], [-79.9378967109214, 32.770527492595], [-79.9378918248047, 32.7705278776388]]], "type": "Polygon"}, "id": "384", "properties": {"OBJECTID": 3452, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9895.107421875, "Shape__Length": 393.475923829851, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9399010965547, 32.7709906617309, -79.9385078717828, 32.772039451476], "geometry": {"coordinates": [[[-79.9388931828104, 32.7709908075457], [-79.938889924354, 32.7709912076508], [-79.9388866627523, 32.7709918665549], [-79.9388833990725, 32.7709927842672], [-79.938880125992, 32.7709942998138], [-79.9388768539349, 32.7709958189765], [-79.9388735714815, 32.7709982813673], [-79.9388711054227, 32.7710003215672], [-79.9388686372859, 32.7710026205753], [-79.9388669814315, 32.7710050114021], [-79.9386738232024, 32.7713041558859], [-79.9385113265542, 32.7715565797062], [-79.9385096686004, 32.7715592293367], [-79.9385088229411, 32.7715618824088], [-79.9385079751329, 32.7715647122217], [-79.9385079406865, 32.7715675454854], [-79.9385079051658, 32.7715704671195], [-79.9385078717828, 32.7715732129145], [-79.9385086506107, 32.7715760568429], [-79.9385102437944, 32.771578734686], [-79.9385118391309, 32.7715813232661], [-79.9385134375959, 32.7715837423285], [-79.9385150360242, 32.7715860766182], [-79.938518256956, 32.7715887649789], [-79.9385214851235, 32.7715908581918], [-79.9385247164815, 32.7715926889986], [-79.9386678959766, 32.7716579264163], [-79.9388393863057, 32.7717362098978], [-79.9389542577174, 32.7717883150944], [-79.9390828763486, 32.771846983919], [-79.9392260566779, 32.7719122206852], [-79.9393554890181, 32.7719708944734], [-79.9394986666216, 32.7720363888188], [-79.9395019073863, 32.7720375360909], [-79.93950515026, 32.7720384218494], [-79.9395083951772, 32.7720390515046], [-79.9395116463911, 32.7720393385174], [-79.9395148975842, 32.772039451476], [-79.9395181539959, 32.7720392226846], [-79.9395214146074, 32.772038736005], [-79.939524677268, 32.7720379048425], [-79.9395279441175, 32.7720368166936], [-79.9395312183211, 32.7720352109556], [-79.9395344934676, 32.7720333518102], [-79.9395377801788, 32.7720307162861], [-79.9395402514596, 32.7720281593668], [-79.9395419072821, 32.7720257712358], [-79.9397044299357, 32.7717708554116], [-79.9398984543404, 32.7714673329985], [-79.9398992989002, 32.7714646790059], [-79.9399001466567, 32.7714619375631], [-79.9399009933404, 32.7714591086331], [-79.9399010277525, 32.7714562744673], [-79.9399010621536, 32.7714534412033], [-79.9399010965547, 32.7714506079392], [-79.9399003177207, 32.7714478487924], [-79.9398987244258, 32.7714450889], [-79.9398971269979, 32.7714425814853], [-79.9398955305937, 32.7714400776867], [-79.9398939310582, 32.7714378317855], [-79.9398907069911, 32.7714353986533], [-79.9398874787856, 32.7714333063783], [-79.9398842474049, 32.7714314756076], [-79.93965449733, 32.7713280369612], [-79.9394530573041, 32.77123764216], [-79.9392233061794, 32.7711343731346], [-79.939050991865, 32.7710569424903], [-79.9389094219454, 32.7709932679305], [-79.9389061801861, 32.770992206308], [-79.9389029363272, 32.7709914052972], [-79.9388996882819, 32.7709909487507], [-79.9388964381763, 32.7709906617309], [-79.9388931828104, 32.7709908075457]]], "type": "Polygon"}, "id": "385", "properties": {"OBJECTID": 3453, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11782.6015625, "Shape__Length": 435.401104905701, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.938255521366, 32.7712672058641, -79.9370951179329, 32.7721532708216], "geometry": {"coordinates": [[[-79.9374224431207, 32.7712673507288], [-79.9374191867462, 32.7712676660405], [-79.9374159240804, 32.7712684105706], [-79.9374126582512, 32.7712693273234], [-79.9374093861912, 32.7712708437417], [-79.9374061099058, 32.7712727073294], [-79.9374028305365, 32.7712748243055], [-79.9374003655276, 32.7712769501595], [-79.937398711702, 32.771279170538], [-79.937396240377, 32.7712816399358], [-79.9372420029186, 32.7715235679579], [-79.9370985416528, 32.7717488396704], [-79.9370968825962, 32.7717514883708], [-79.9370960358162, 32.7717542298035], [-79.9370960013129, 32.7717570639686], [-79.937095153501, 32.7717598901648], [-79.9370951179329, 32.7717628117986], [-79.9370958967604, 32.7717656521291], [-79.9370966766089, 32.7717684085979], [-79.9370982708311, 32.7717710855669], [-79.9370990527655, 32.7717736707053], [-79.9371014624154, 32.7717761816076], [-79.9371030618743, 32.7717784284471], [-79.9371062827478, 32.7717811186485], [-79.9371095109215, 32.7717832091935], [-79.9371127464395, 32.7717846964751], [-79.9373254776569, 32.7718828407912], [-79.9374468099786, 32.7719386974513], [-79.9375649027055, 32.7719933255117], [-79.9376878525621, 32.7720498822756], [-79.9378108014918, 32.7721065281884], [-79.9379078673684, 32.7721511812132], [-79.9379111102554, 32.7721521526883], [-79.9379143561963, 32.7721526976224], [-79.9379176042797, 32.7721531541952], [-79.9379208575658, 32.7721532708216], [-79.9379249262639, 32.7721530473216], [-79.9379281869105, 32.772152558881], [-79.937931450625, 32.7721517304755], [-79.9379347174986, 32.7721506423691], [-79.9379379875423, 32.77214929366], [-79.9379412648473, 32.7721473479997], [-79.9379445494652, 32.7721447134015], [-79.9379470218304, 32.7721421592288], [-79.9379486777754, 32.7721397648072], [-79.9380954168667, 32.7719123750932], [-79.9382520988547, 32.7716699531718], [-79.9382537578857, 32.771667303554], [-79.9382546025194, 32.7716646477692], [-79.9382554513712, 32.7716618206725], [-79.9382554858697, 32.771658983802], [-79.938255521366, 32.7716560648731], [-79.9382547403927, 32.7716533102059], [-79.9382539626068, 32.7716504689904], [-79.9382531806028, 32.7716477990866], [-79.938251586351, 32.7716452096106], [-79.9382499889595, 32.771642790554], [-79.9382475772186, 32.7716404492014], [-79.9382451665086, 32.7716380230852], [-79.9382419383021, 32.7716359334719], [-79.9382387069923, 32.7716340990507], [-79.9381246474485, 32.7715822590517], [-79.9379830867822, 32.7715177204428], [-79.9378415262671, 32.7714530987012], [-79.9376983466939, 32.7713879450812], [-79.9374386832944, 32.7712696390675], [-79.9374354426129, 32.7712686648932], [-79.9374321976789, 32.7712678647359], [-79.937428949642, 32.7712674072485], [-79.9374256995558, 32.7712672058641], [-79.9374224431207, 32.7712673507288]]], "type": "Polygon"}, "id": "386", "properties": {"OBJECTID": 3454, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8362.599609375, "Shape__Length": 364.9477917955, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.936324268014, 32.7718237386324, -79.9355919149642, 32.7722160107413], "geometry": {"coordinates": [[[-79.936324268014, 32.7721022126931], [-79.936286176904, 32.7718237386324], [-79.9361403874414, 32.7718393080231], [-79.9360051857859, 32.7718537635831], [-79.9358691686097, 32.7718683011814], [-79.9356191263157, 32.7718950737155], [-79.9356158656999, 32.7718956468673], [-79.9356125998173, 32.7718965644739], [-79.9356093308475, 32.7718979104248], [-79.9356060555886, 32.7718996846923], [-79.9356027760961, 32.771901718651], [-79.9355994945717, 32.7719040943873], [-79.9355978406884, 32.7719063147416], [-79.935596183683, 32.7719087911896], [-79.9355945245767, 32.7719113523917], [-79.9355936787924, 32.7719140081489], [-79.9355928319526, 32.7719167504731], [-79.9355919840905, 32.7719195766589], [-79.9355919495493, 32.7719224099219], [-79.9355919149642, 32.7719252467918], [-79.9356306685599, 32.7722160107413], [-79.9358888177936, 32.7721915416398], [-79.935883638504, 32.7721493213992], [-79.9359072584092, 32.7721467753733], [-79.9360432749126, 32.7721322404282], [-79.9361784770259, 32.7721177821204], [-79.936324268014, 32.7721022126931]]], "type": "Polygon"}, "id": "387", "properties": {"OBJECTID": 3455, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3061.74609375, "Shape__Length": 240.198119140973, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9368417795518, 32.7717704614698, -79.9363542582996, 32.7721388172585], "geometry": {"coordinates": [[[-79.9368417795518, 32.7719536397098], [-79.9368185004715, 32.7717946090406], [-79.9368185350057, 32.7717917730721], [-79.9368169418458, 32.7717890095325], [-79.9368161598516, 32.7717863423248], [-79.9368145646407, 32.7717838348882], [-79.9368129662433, 32.771781501478], [-79.9368105534609, 32.7717792484674], [-79.9368073273918, 32.7717769856824], [-79.9368040981384, 32.7717749844016], [-79.9368008647454, 32.7717733230762], [-79.936797623993, 32.7717721784378], [-79.936794382246, 32.7717712908134], [-79.936791136302, 32.7717706601752], [-79.9367878850983, 32.7717704614698], [-79.9367830031041, 32.7717705894831], [-79.9365085272013, 32.7717999020494], [-79.9363814692945, 32.7718135729855], [-79.9363782086867, 32.7718141461576], [-79.9363749439155, 32.7718150610886], [-79.9363716759804, 32.7718162357202], [-79.9363684017616, 32.7718179261463], [-79.9363651233793, 32.7718199583314], [-79.9363618376475, 32.7718225937796], [-79.9363601838419, 32.7718248971133], [-79.9363577135156, 32.7718272808252], [-79.9363568677206, 32.7718298518149], [-79.9363552097402, 32.7718324978094], [-79.9363543618596, 32.7718353276074], [-79.9363543273432, 32.7718381608706], [-79.9363542928269, 32.7718409941338], [-79.9363542582996, 32.7718438282986], [-79.9363945886763, 32.7721388172585], [-79.9365525930935, 32.7721222381849], [-79.9365339192715, 32.7719857518635], [-79.9368417795518, 32.7719536397098]]], "type": "Polygon"}, "id": "388", "properties": {"OBJECTID": 3456, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1609.861328125, "Shape__Length": 187.268227231448, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9380136750546, 32.7718789733256, -79.9369704788793, 32.7735649435452], "geometry": {"coordinates": [[[-79.937535276401, 32.7734904296094], [-79.9375351674115, 32.7734905260609], [-79.9375392074579, 32.7735649435452], [-79.9376843074721, 32.7735482608253], [-79.9376845632837, 32.7735481169497], [-79.937684590866, 32.7735483065744], [-79.9380136750546, 32.7735103614014], [-79.9380039970446, 32.773436661549], [-79.9379934890328, 32.7733643261803], [-79.9379740651871, 32.7732225091408], [-79.9379702962723, 32.773197996128], [-79.9379530554543, 32.7730772432444], [-79.9379418836117, 32.7729927057035], [-79.937929118528, 32.772905320766], [-79.9379179467053, 32.7728206975501], [-79.9379044676165, 32.7727251448121], [-79.9378902410147, 32.7726241772832], [-79.9378618224872, 32.7724193999426], [-79.9378475949171, 32.7723184324029], [-79.9378370714853, 32.7722474739943], [-79.937649413841, 32.7721608023248], [-79.9374779310426, 32.7720819175151], [-79.9373630674818, 32.7720292942433], [-79.937191584133, 32.771950409024], [-79.9370435609303, 32.7718822915119], [-79.9370403233106, 32.7718808889826], [-79.9370370815326, 32.7718799156902], [-79.9370338366063, 32.7718792886746], [-79.9370305854065, 32.771879001596], [-79.9370273321232, 32.7718789733256], [-79.9370232613362, 32.7718792815499], [-79.9370200007631, 32.7718798520339], [-79.9370167359632, 32.7718807696873], [-79.9370134659484, 32.7718821156665], [-79.9370101917505, 32.771883805208], [-79.937006914448, 32.7718858374195], [-79.9370036266228, 32.7718885585409], [-79.9370011584226, 32.7718908566098], [-79.9369995025003, 32.7718932474116], [-79.9369704788793, 32.7719387795117], [-79.9369989662809, 32.7721377155842], [-79.9370086631811, 32.7722097824565], [-79.9370533405886, 32.7722147222499], [-79.9372005573548, 32.7722824891422], [-79.9373154232333, 32.7723348537596], [-79.9373744729413, 32.7723619979002], [-79.9373886988929, 32.7724629663879], [-79.9373902084658, 32.772472600269], [-79.9374044354525, 32.7725734866979], [-79.9374194748015, 32.7726744622495], [-79.9374321567586, 32.7727686328235], [-79.9374464487002, 32.7728641899736], [-79.9374584344448, 32.7729487346325], [-79.9374703857211, 32.7730361134566], [-79.9374823715235, 32.7731206572131], [-79.9374891437965, 32.7731657274888], [-79.9375033794054, 32.7732659240836], [-79.9375063557271, 32.773288627461], [-79.9375205840483, 32.7733895138947], [-79.9375251149665, 32.7734182424023], [-79.9375348103363, 32.773490482377], [-79.937535276401, 32.7734904296094]]], "type": "Polygon"}, "id": "389", "properties": {"OBJECTID": 3457, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11657.580078125, "Shape__Length": 577.16552698462, "ZONE_BASE": "SR-2", "__folium_color": "#c7c7c7"}, "type": "Feature"}, {"bbox": [-79.9371220109823, 32.7719536397098, -79.9363945886763, 32.7739783173332], "geometry": {"coordinates": [[[-79.9363945886763, 32.7721388172585], [-79.9364109866068, 32.7722617103083], [-79.9364371615681, 32.7724500596298], [-79.936455085829, 32.772581212321], [-79.9364827213047, 32.7727832308137], [-79.9365237675885, 32.7730863839722], [-79.9365416920533, 32.7732174536906], [-79.9365664062474, 32.7733922149866], [-79.9365716340263, 32.773430487391], [-79.9366029705595, 32.7736626043038], [-79.9366246115814, 32.7738226516032], [-79.9366463039129, 32.7739783173332], [-79.9367798936263, 32.7739629857712], [-79.9368866012, 32.7739507716569], [-79.9370022701519, 32.7739374304723], [-79.9371220109823, 32.7739236961872], [-79.9371002498269, 32.7737735275342], [-79.9370815424015, 32.7736397897813], [-79.9370680641261, 32.773544322617], [-79.9370537714199, 32.7734487654063], [-79.9370380518341, 32.7733368743972], [-79.9370118083946, 32.7731540212847], [-79.9369953362539, 32.7730371401968], [-79.9369721475898, 32.7728706368274], [-79.9369526596364, 32.7727342300669], [-79.9369233964242, 32.7725321984465], [-79.9369039421221, 32.772393040478], [-79.9368784790488, 32.7722129474331], [-79.9368417795518, 32.7719536397098], [-79.9365339192715, 32.7719857518635], [-79.9365525930935, 32.7721222381849], [-79.9363945886763, 32.7721388172585]]], "type": "Polygon"}, "id": "390", "properties": {"OBJECTID": 3458, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 13571.904296875, "Shape__Length": 631.722548140275, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9365819516585, 32.7721022126931, -79.9356306685599, 32.7740669664991], "geometry": {"coordinates": [[[-79.9361784770259, 32.7721177821204], [-79.9360432749126, 32.7721322404282], [-79.9359072584092, 32.7721467753733], [-79.935883638504, 32.7721493213992], [-79.9358888177936, 32.7721915416398], [-79.9356306685599, 32.7722160107413], [-79.935655959409, 32.7724100205801], [-79.9356805375478, 32.7725957787438], [-79.9356969345591, 32.7727186718955], [-79.9357133305272, 32.7728415668409], [-79.9357297286981, 32.7729644600009], [-79.9357461185163, 32.7730879546109], [-79.9357789014353, 32.7733346859319], [-79.9358116939481, 32.7735806453624], [-79.9358295169645, 32.7737199588893], [-79.9358503955822, 32.7738757051703], [-79.9358757209, 32.7740669664991], [-79.9361339404346, 32.7740372586832], [-79.9364206675223, 32.774004360395], [-79.9365819516585, 32.773985834749], [-79.9365169401352, 32.7735133341895], [-79.9364990228926, 32.7733814943596], [-79.9364945739485, 32.7733460640905], [-79.9364706073375, 32.7731767202856], [-79.9364370468593, 32.7729268900201], [-79.9364138927824, 32.7727576371452], [-79.9363989560953, 32.7726483285004], [-79.9363840184241, 32.7725391037168], [-79.9363690807463, 32.7724298825397], [-79.9363541431405, 32.7723207461348], [-79.9363392045031, 32.7722115222422], [-79.936324268014, 32.7721022126931], [-79.9361784770259, 32.7721177821204]]], "type": "Polygon"}, "id": "391", "properties": {"OBJECTID": 3459, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 19668.029296875, "Shape__Length": 660.92529673484, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9380571345876, 32.7722097824565, -79.9370086631811, 32.7739088383963], "geometry": {"coordinates": [[[-79.9370086631811, 32.7722097824565], [-79.9370349032122, 32.7723928916445], [-79.9370506382902, 32.7725034958608], [-79.9370648649225, 32.7726043796244], [-79.93707909159, 32.7727053508653], [-79.9371495709931, 32.7731966206525], [-79.9371667834863, 32.7733195233873], [-79.937181011453, 32.7734204071557], [-79.9371952373095, 32.7735213792847], [-79.9372094632293, 32.77362226123], [-79.9372507131332, 32.7739088383963], [-79.9373631244585, 32.7738958978429], [-79.9374698318686, 32.77388368322], [-79.9375830564435, 32.7738706638548], [-79.9377280492623, 32.7738539711288], [-79.9380571345876, 32.7738161133156], [-79.9380429076862, 32.7737151412836], [-79.9380286818379, 32.7736140853893], [-79.9380136750546, 32.7735103614014], [-79.937684590866, 32.7735483065744], [-79.9376845632837, 32.7735481169497], [-79.9376843074721, 32.7735482608253], [-79.9375392074579, 32.7735649435452], [-79.9375351674115, 32.7734905260609], [-79.937535276401, 32.7734904296094], [-79.9375348103363, 32.773490482377], [-79.9375251149665, 32.7734182424023], [-79.9375205840483, 32.7733895138947], [-79.9375063557271, 32.773288627461], [-79.9375033794054, 32.7732659240836], [-79.9374891437965, 32.7731657274888], [-79.9374823715235, 32.7731206572131], [-79.9374703857211, 32.7730361134566], [-79.9374584344448, 32.7729487346325], [-79.9374464487002, 32.7728641899736], [-79.9374321567586, 32.7727686328235], [-79.9374194748015, 32.7726744622495], [-79.9374044354525, 32.7725734866979], [-79.9373902084658, 32.772472600269], [-79.9373886988929, 32.7724629663879], [-79.9373744729413, 32.7723619979002], [-79.9373154232333, 32.7723348537596], [-79.9372005573548, 32.7722824891422], [-79.9370533405886, 32.7722147222499], [-79.9370086631811, 32.7722097824565]]], "type": "Polygon"}, "id": "392", "properties": {"OBJECTID": 3460, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10309.52734375, "Shape__Length": 617.402506531465, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9357472450763, 32.7722964471743, -79.935061557863, 32.7741339189125], "geometry": {"coordinates": [[[-79.9355103460743, 32.7722964471743], [-79.9351666286811, 32.77233399937], [-79.935061557863, 32.7723455399199], [-79.9350838885465, 32.7725153874223], [-79.9351025581138, 32.7726519587271], [-79.9351040622024, 32.7726620218643], [-79.9351256918255, 32.7728226708616], [-79.935148012274, 32.7729932902403], [-79.9351487878927, 32.7729963893827], [-79.9351681767125, 32.7731407858493], [-79.9353016676346, 32.7741339189125], [-79.9353700920286, 32.7741260101391], [-79.9354955382983, 32.7741113810719], [-79.935620984515, 32.7740967527779], [-79.9357472450763, 32.7740821332442], [-79.9356764778165, 32.7735482510589], [-79.9356466552933, 32.7733255946814], [-79.9356168873047, 32.7730983899223], [-79.9355967242418, 32.7729508953083], [-79.9355744018369, 32.7727801903285], [-79.9355520805866, 32.7726094853571], [-79.9355334103253, 32.7724729141215], [-79.9355103460743, 32.7722964471743]]], "type": "Polygon"}, "id": "393", "properties": {"OBJECTID": 3461, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11956.466796875, "Shape__Length": 576.610483106877, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9355103460743, 32.7718920776578, -79.9339018393707, 32.774240500795], "geometry": {"coordinates": [[[-79.9355103460743, 32.7722964471743], [-79.9354820348024, 32.7720833390261], [-79.9354567109224, 32.7718920776578], [-79.9352962552602, 32.771909663873], [-79.9348165186431, 32.7719620106925], [-79.9347261100183, 32.7719718749574], [-79.9344760586696, 32.7719992466058], [-79.9344084554783, 32.7720066461678], [-79.9342422987879, 32.7720247837669], [-79.9341909860936, 32.7720303510245], [-79.9339018393707, 32.7720619324171], [-79.9339254288942, 32.7721951973772], [-79.9339505842856, 32.7723333729421], [-79.9339543635519, 32.7723568553799], [-79.933994144839, 32.7725630187447], [-79.9340148042869, 32.7726696287871], [-79.9340346620371, 32.7727754580665], [-79.9340645090078, 32.7729290480714], [-79.9340683135076, 32.7729506431869], [-79.9340744216542, 32.7729832526414], [-79.9340965517343, 32.7731028483789], [-79.9341033935627, 32.7731420782804], [-79.9341475145222, 32.7733925153114], [-79.934155118322, 32.7734359634179], [-79.9342081999178, 32.7736853620361], [-79.9342405126623, 32.7738370011792], [-79.9342674624551, 32.7739615304356], [-79.934317482103, 32.7741952708382], [-79.9343182493157, 32.7741990571112], [-79.934319831951, 32.7742026800412], [-79.9343214146195, 32.7742063002658], [-79.9343229993684, 32.7742097500619], [-79.9343253984943, 32.7742131221801], [-79.9343277986771, 32.7742164077313], [-79.93433020203, 32.7742194335817], [-79.9343334197381, 32.7742223835576], [-79.9343358262283, 32.7742251524123], [-79.9343398625404, 32.7742276784424], [-79.9343430875905, 32.7742300269582], [-79.9343463210388, 32.7742316874473], [-79.9343495513613, 32.7742336040301], [-79.9343535971067, 32.7742353572696], [-79.9343576460002, 32.7742368526116], [-79.9343608878358, 32.7742378259753], [-79.9343641317737, 32.7742386271068], [-79.9343673767573, 32.774239342573], [-79.9343714382423, 32.7742398063254], [-79.9343754996834, 32.7742402736846], [-79.9343787509736, 32.7742404724541], [-79.934382004344, 32.774240500795], [-79.9343860742046, 32.7742403658016], [-79.9343893296554, 32.7742401362357], [-79.9344487948791, 32.7742331798262], [-79.9346557004224, 32.7742091263373], [-79.9348332794277, 32.7741885092524], [-79.9349961961608, 32.7741695706334], [-79.935153413162, 32.7741511837061], [-79.9353016676346, 32.7741339189125], [-79.9351681767125, 32.7731407858493], [-79.9351487878927, 32.7729963893827], [-79.935148012274, 32.7729932902403], [-79.9351256918255, 32.7728226708616], [-79.9351040622024, 32.7726620218643], [-79.9351025581138, 32.7726519587271], [-79.9350838885465, 32.7725153874223], [-79.935061557863, 32.7723455399199], [-79.9351666286811, 32.77233399937], [-79.9355103460743, 32.7722964471743]]], "type": "Polygon"}, "id": "394", "properties": {"OBJECTID": 3462, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 37081.037109375, "Shape__Length": 916.824976923667, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9356089599001, 32.774201426339, -79.9344989264266, 32.7756662841993], "geometry": {"coordinates": [[[-79.9356089599001, 32.7746828316207], [-79.9355870590678, 32.7744775972319], [-79.9355570744074, 32.774201426339], [-79.9351481543339, 32.7742488895867], [-79.934968128948, 32.7742699151034], [-79.9348076562315, 32.7742885322716], [-79.9346471823792, 32.774307236698], [-79.9345632790989, 32.7743169843693], [-79.9344989264266, 32.7743244997878], [-79.934534348593, 32.774621419949], [-79.9345372686378, 32.7746487628578], [-79.9345602141817, 32.7748348470796], [-79.9345749801467, 32.7749579877483], [-79.9345875073895, 32.7750646125571], [-79.9346111511809, 32.7752601540858], [-79.9346244247852, 32.7753722829787], [-79.9346273784558, 32.7753968746821], [-79.93464808549, 32.7755664520601], [-79.9346598823544, 32.7756662841993], [-79.9348251969198, 32.7756510578726], [-79.9349481655947, 32.775639758989], [-79.9349709667902, 32.7756376370834], [-79.9351159232163, 32.7756242126472], [-79.9351810723438, 32.7756182513763], [-79.9351700044716, 32.7755252949139], [-79.935169274923, 32.7755184165826], [-79.9351478027195, 32.7753447996369], [-79.9351456130391, 32.7753242503083], [-79.9351315662915, 32.7752087635303], [-79.9351364537486, 32.7752082036498], [-79.9351254194555, 32.7751125022942], [-79.9351128077499, 32.775012747889], [-79.9351193229298, 32.7750121174066], [-79.9351067950115, 32.7749054078801], [-79.9351001087117, 32.7748534662224], [-79.9352133118356, 32.7748423399958], [-79.9352001705727, 32.7747192171629], [-79.9356089599001, 32.7746828316207]]], "type": "Polygon"}, "id": "395", "properties": {"OBJECTID": 3463, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14530.626953125, "Shape__Length": 597.540695730933, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9357472140973, 32.7746828316207, -79.9346598823544, 32.7760491164729], "geometry": {"coordinates": [[[-79.9346598823544, 32.7756662841993], [-79.9346710168108, 32.7757537410032], [-79.9347064579232, 32.7760491164729], [-79.9348709609134, 32.77603388301], [-79.935016731383, 32.7760204648709], [-79.9351625018408, 32.7760070438529], [-79.9353082722428, 32.775993623563], [-79.935453229252, 32.7759801951195], [-79.9355989995315, 32.7759667771884], [-79.9357472140973, 32.775953118817], [-79.9357282330768, 32.7757752273081], [-79.9357076935002, 32.7755917371769], [-79.9356952663757, 32.7754767813095], [-79.9356755057184, 32.7752961342246], [-79.935660939152, 32.7751565053862], [-79.9356207064374, 32.7747868720734], [-79.9356089599001, 32.7746828316207], [-79.9352001705727, 32.7747192171629], [-79.9352133118356, 32.7748423399958], [-79.9351001087117, 32.7748534662224], [-79.9351067950115, 32.7749054078801], [-79.9351193229298, 32.7750121174066], [-79.9351128077499, 32.775012747889], [-79.9351254194555, 32.7751125022942], [-79.9351364537486, 32.7752082036498], [-79.9351315662915, 32.7752087635303], [-79.9351456130391, 32.7753242503083], [-79.9351478027195, 32.7753447996369], [-79.935169274923, 32.7755184165826], [-79.9351700044716, 32.7755252949139], [-79.9351810723438, 32.7756182513763], [-79.9351159232163, 32.7756242126472], [-79.9349709667902, 32.7756376370834], [-79.9349481655947, 32.775639758989], [-79.9348251969198, 32.7756510578726], [-79.9346598823544, 32.7756662841993]]], "type": "Polygon"}, "id": "396", "properties": {"OBJECTID": 3464, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12680.791015625, "Shape__Length": 572.467625224017, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9377141894996, 32.7739678909081, -79.9356801404301, 32.7759278185953], "geometry": {"coordinates": [[[-79.9374125547092, 32.7739697302341], [-79.9372849904419, 32.7739853772662], [-79.9371831597746, 32.7739978929267], [-79.9370520017352, 32.7740139332567], [-79.9368898885932, 32.7740337428426], [-79.9367676918598, 32.7740487442776], [-79.9366487526313, 32.7740633428307], [-79.9365550698486, 32.7740748132276], [-79.9364369459666, 32.7740892482169], [-79.9362886802805, 32.7741074594089], [-79.9361461163067, 32.7741249444308], [-79.9359994803479, 32.7741429097184], [-79.9358789141691, 32.7741575817539], [-79.9356801404301, 32.7741819659841], [-79.9356954636612, 32.7743261529489], [-79.9357093665498, 32.7744534903044], [-79.9357276490436, 32.7746220164763], [-79.9357423203718, 32.7747530526278], [-79.935754025199, 32.7748606161721], [-79.9357664575112, 32.7749750580252], [-79.9357789349237, 32.7750858902265], [-79.935788373564, 32.7751790885715], [-79.935798626632, 32.7752722074255], [-79.9358081741725, 32.7753563874694], [-79.9358154565689, 32.7754263727702], [-79.9358316009404, 32.7755700519296], [-79.9358446992336, 32.7756966959881], [-79.935870352657, 32.7759278185953], [-79.9360234597674, 32.7759130012059], [-79.9361453450013, 32.7757903656112], [-79.9362861704718, 32.7756487369225], [-79.9363808856454, 32.7755527539439], [-79.9365497138178, 32.7753826774692], [-79.9366147711183, 32.7753173594929], [-79.9366765372863, 32.7752551025609], [-79.9367728919236, 32.7751580152664], [-79.936892301519, 32.7750380196544], [-79.9369763101018, 32.7749527624942], [-79.9371484290383, 32.7747793653096], [-79.9372316059488, 32.7746955653342], [-79.9374004308174, 32.7745254867997], [-79.9374852485731, 32.7744404978644], [-79.9375725428021, 32.7743525218614], [-79.9377141894996, 32.7742098697308], [-79.93770617283, 32.7742040635453], [-79.9376174297418, 32.774139791999], [-79.9374311711603, 32.7740047721928], [-79.9374275528924, 32.7739678909081], [-79.9374125547092, 32.7739697302341]]], "type": "Polygon"}, "id": "397", "properties": {"OBJECTID": 3465, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 31364.384765625, "Shape__Length": 786.052927962936, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9323519357741, 32.7734513693849, -79.9319014354307, 32.7738594894718], "geometry": {"coordinates": [[[-79.9319014354307, 32.7735319347296], [-79.9319074230273, 32.7735743353714], [-79.9319111429722, 32.7736028009013], [-79.9319207412405, 32.7736826005964], [-79.9319429800237, 32.7738594894718], [-79.9323519357741, 32.7738092000799], [-79.9323297234919, 32.7736299901955], [-79.9323186368064, 32.7735389280575], [-79.9323178644482, 32.7735355700981], [-79.9323058783208, 32.7734513693849], [-79.9319014354307, 32.7735319347296]]], "type": "Polygon"}, "id": "398", "properties": {"OBJECTID": 3466, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2098.544921875, "Shape__Length": 183.544851369684, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9337722626734, 32.7715647264418, -79.9321863021924, 32.7738991196468], "geometry": {"coordinates": [[[-79.9337722626734, 32.7720705185046], [-79.9337425906291, 32.7719025835773], [-79.9337343049519, 32.7718483931659], [-79.9337313642403, 32.7718227707634], [-79.9337269878163, 32.7717815007412], [-79.9337233890348, 32.7717431594415], [-79.9337204641111, 32.7717162448478], [-79.9337135623859, 32.7716153397489], [-79.9337117403011, 32.7715647264418], [-79.9336115741998, 32.7715742496049], [-79.9334820940797, 32.7715865211164], [-79.933362384227, 32.771597931662], [-79.9331034195613, 32.7716225596576], [-79.9330553728988, 32.7716271241264], [-79.9328306104717, 32.7716485282001], [-79.932768720603, 32.7716543434758], [-79.932617250178, 32.771668827407], [-79.9324747388099, 32.7716823585407], [-79.9321863021924, 32.7717096827045], [-79.9323164793822, 32.7726277007916], [-79.9323718418327, 32.7730410358224], [-79.9323831358027, 32.7731818404562], [-79.9324777306435, 32.7738991196468], [-79.9327530309811, 32.7738694787405], [-79.9330478805954, 32.7738376945236], [-79.9331285166116, 32.7738289465892], [-79.9331271218743, 32.773809951705], [-79.9331082525624, 32.7736898710683], [-79.9330863966026, 32.7735481167395], [-79.9331010545139, 32.773546782709], [-79.9330973383804, 32.773518061131], [-79.9330839819836, 32.7734128033344], [-79.9330734424635, 32.7732769041182], [-79.9330692541724, 32.773220258521], [-79.9330474991269, 32.7730701739223], [-79.933035579537, 32.7729804762866], [-79.9330280854851, 32.7729281838702], [-79.9330071061239, 32.7727811984248], [-79.9329928841641, 32.7726802258079], [-79.9329876632319, 32.7726416124058], [-79.9332100322682, 32.7726164923301], [-79.9331756480051, 32.7724348605721], [-79.9331657244316, 32.7723816009545], [-79.9331276820497, 32.7721665188993], [-79.9331223477498, 32.7721370933094], [-79.933183429881, 32.7721308397303], [-79.9334098421404, 32.7721076457135], [-79.9334424180309, 32.7721043233141], [-79.9335621401535, 32.7720920515385], [-79.9337722626734, 32.7720705185046]]], "type": "Polygon"}, "id": "399", "properties": {"OBJECTID": 3467, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 29555.197265625, "Shape__Length": 924.714900313138, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9341886023931, 32.7720705185046, -79.9329876632319, 32.7743802322687], "geometry": {"coordinates": [[[-79.9331285166116, 32.7738289465892], [-79.933148174062, 32.7740175816575], [-79.9331852275647, 32.7743802322687], [-79.9332593583539, 32.7743713427386], [-79.9333066046963, 32.7743658278773], [-79.933433681483, 32.7743509581132], [-79.9334923314319, 32.7743442529837], [-79.9335444651084, 32.7743381827243], [-79.9339664220255, 32.7742890311605], [-79.9341334132349, 32.7742696115413], [-79.9341366729143, 32.7742691231924], [-79.9341407511326, 32.7742682163094], [-79.9341440150062, 32.7742673843978], [-79.9341480984975, 32.7742660455818], [-79.9341513665321, 32.7742648728127], [-79.9341554552962, 32.7742631020635], [-79.9341587275249, 32.7742615857317], [-79.9341620081749, 32.7742593795696], [-79.9341652908723, 32.7742570056841], [-79.9341685757051, 32.7742544568612], [-79.9341718636752, 32.7742516510426], [-79.9341751527128, 32.7742487577552], [-79.9341776304881, 32.7742456869526], [-79.9341801114226, 32.7742423573508], [-79.9341817789703, 32.7742390242695], [-79.9341834486755, 32.7742355144474], [-79.9341851193822, 32.7742319225669], [-79.9341867911567, 32.7742282432179], [-79.9341876495665, 32.7742245585856], [-79.9341876956906, 32.7742207803001], [-79.934188556258, 32.7742169189272], [-79.9341886023931, 32.7742131397399], [-79.9341878351859, 32.774209353466], [-79.9341870679788, 32.7742055671923], [-79.9341632457969, 32.7740913704306], [-79.9340801447676, 32.7737023785518], [-79.9340270572186, 32.7734534965738], [-79.9340201703371, 32.7734179574832], [-79.933974535292, 32.7731583148074], [-79.9339676956233, 32.7731189126665], [-79.9339402362862, 32.772969465728], [-79.9339356457702, 32.7729457164899], [-79.9339126774276, 32.7728282642931], [-79.933858404786, 32.7725432904293], [-79.9338217240315, 32.772349779726], [-79.9338140952862, 32.7723083956836], [-79.9337745222175, 32.7720853138567], [-79.9337722626734, 32.7720705185046], [-79.9335621401535, 32.7720920515385], [-79.9334424180309, 32.7721043233141], [-79.9334098421404, 32.7721076457135], [-79.933183429881, 32.7721308397303], [-79.9331223477498, 32.7721370933094], [-79.9331276820497, 32.7721665188993], [-79.9331657244316, 32.7723816009545], [-79.9331756480051, 32.7724348605721], [-79.9332100322682, 32.7726164923301], [-79.9329876632319, 32.7726416124058], [-79.9329928841641, 32.7726802258079], [-79.9330071061239, 32.7727811984248], [-79.9330280854851, 32.7729281838702], [-79.933035579537, 32.7729804762866], [-79.9330474991269, 32.7730701739223], [-79.9330692541724, 32.773220258521], [-79.9330734424635, 32.7732769041182], [-79.9330839819836, 32.7734128033344], [-79.9330973383804, 32.773518061131], [-79.9331010545139, 32.773546782709], [-79.9330863966026, 32.7735481167395], [-79.9331082525624, 32.7736898710683], [-79.9331271218743, 32.773809951705], [-79.9331285166116, 32.7738289465892]]], "type": "Polygon"}, "id": "400", "properties": {"OBJECTID": 3468, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 28786.140625, "Shape__Length": 799.571643386934, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9331852275647, 32.7738289465892, -79.9324777306435, 32.7744573824409], "geometry": {"coordinates": [[[-79.9324777306435, 32.7738991196468], [-79.9324888248508, 32.7739895839213], [-79.9324998907853, 32.7740825370128], [-79.9325117354011, 32.7741782465938], [-79.932522831774, 32.7742685395377], [-79.9325465536987, 32.7744573824409], [-79.9327730225586, 32.7744299793697], [-79.9328789252818, 32.7744171592933], [-79.932982382663, 32.7744047497746], [-79.9330915450463, 32.7743915259687], [-79.9331852275647, 32.7743802322687], [-79.933148174062, 32.7740175816575], [-79.9331285166116, 32.7738289465892], [-79.9330478805954, 32.7738376945236], [-79.9327530309811, 32.7738694787405], [-79.9324777306435, 32.7738991196468]]], "type": "Polygon"}, "id": "401", "properties": {"OBJECTID": 3469, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5342.314453125, "Shape__Length": 292.43307443438, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.932433321327, 32.7735319347296, -79.93142270685, 32.7745885909171], "geometry": {"coordinates": [[[-79.9315222693353, 32.7736073932943], [-79.9315370560793, 32.7737284693318], [-79.9315592783164, 32.7739066477639], [-79.9315717806925, 32.7740149915828], [-79.9318615936272, 32.7739960462311], [-79.931886659042, 32.7741413522949], [-79.9319730108653, 32.7741307674861], [-79.9319758261329, 32.774166695917], [-79.9319870596128, 32.7742458226895], [-79.9318819713266, 32.7742584786574], [-79.9318827153307, 32.7742642406643], [-79.9317517923945, 32.7742609483488], [-79.9317510379036, 32.7742561313725], [-79.9316573552888, 32.774267427581], [-79.931658134999, 32.7742701831835], [-79.9315856329478, 32.7742789119153], [-79.93142270685, 32.7742985340189], [-79.9314590149199, 32.7745885909171], [-79.9316716344513, 32.7745629600506], [-79.931787313385, 32.7745489393764], [-79.9319160268718, 32.7745333973763], [-79.9320260018109, 32.7745201852203], [-79.9321506411122, 32.7745051232541], [-79.9322084799942, 32.7744981546351], [-79.9322646900599, 32.774491344924], [-79.9323249742376, 32.7744840530929], [-79.932433321327, 32.7744709111364], [-79.9324230183563, 32.7743820869804], [-79.9323992652559, 32.774195991671], [-79.9323896591301, 32.7741167068923], [-79.9323763528796, 32.7740075850801], [-79.9323667489103, 32.7739282146454], [-79.9323526482812, 32.7738174526764], [-79.9323519357741, 32.7738092000799], [-79.9319429800237, 32.7738594894718], [-79.9319207412405, 32.7736826005964], [-79.9319111429722, 32.7736028009013], [-79.9319074230273, 32.7735743353714], [-79.9319014354307, 32.7735319347296], [-79.9317489538517, 32.7735623000215], [-79.9315222693353, 32.7736073932943]]], "type": "Polygon"}, "id": "402", "properties": {"OBJECTID": 3470, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9149.158203125, "Shape__Length": 565.529334307546, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9319870596128, 32.7736073932943, -79.9307794275097, 32.7746565958979], "geometry": {"coordinates": [[[-79.9315222693353, 32.7736073932943], [-79.9307794275097, 32.7737553517264], [-79.9308217098047, 32.7740887554285], [-79.9308952857481, 32.7746565958979], [-79.9314590149199, 32.7745885909171], [-79.93142270685, 32.7742985340189], [-79.9315856329478, 32.7742789119153], [-79.931658134999, 32.7742701831835], [-79.9316573552888, 32.774267427581], [-79.9317510379036, 32.7742561313725], [-79.9317517923945, 32.7742609483488], [-79.9318827153307, 32.7742642406643], [-79.9318819713266, 32.7742584786574], [-79.9319870596128, 32.7742458226895], [-79.9319758261329, 32.774166695917], [-79.9319730108653, 32.7741307674861], [-79.931886659042, 32.7741413522949], [-79.9318615936272, 32.7739960462311], [-79.9315717806925, 32.7740149915828], [-79.9315592783164, 32.7739066477639], [-79.9315370560793, 32.7737284693318], [-79.9315222693353, 32.7736073932943]]], "type": "Polygon"}, "id": "403", "properties": {"OBJECTID": 3471, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10898.4453125, "Shape__Length": 503.277814704163, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9333046199534, 32.7744757042667, -79.9328197179274, 32.7753546129031], "geometry": {"coordinates": [[[-79.9328744772136, 32.7745149614555], [-79.9328927744765, 32.7746151940777], [-79.9328251901027, 32.7746207892802], [-79.9328197179274, 32.7746692737851], [-79.9328978862725, 32.7746627428212], [-79.9329178447341, 32.7748268118846], [-79.9329259580241, 32.7748950884301], [-79.9329289090637, 32.7749197676325], [-79.9329340702908, 32.774963449739], [-79.9329259273534, 32.7749641515805], [-79.932936311682, 32.7750461919005], [-79.9329648114876, 32.7750437764794], [-79.9329707356922, 32.7750915893309], [-79.9329744350553, 32.7751216851677], [-79.9328824203773, 32.7751294725], [-79.9328964557386, 32.7752456466602], [-79.932966484857, 32.7752397282377], [-79.9329805361076, 32.7753546129031], [-79.9333046199534, 32.7753272025951], [-79.9332905683015, 32.7752124036417], [-79.9332720174906, 32.775066212263], [-79.933253528672, 32.774915039688], [-79.9332254130371, 32.7746863011182], [-79.9331995161686, 32.7744757042667], [-79.9330398476113, 32.7744950160396], [-79.9328744772136, 32.7745149614555]]], "type": "Polygon"}, "id": "404", "properties": {"OBJECTID": 3472, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4220.1640625, "Shape__Length": 336.622401334419, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9318272048474, 32.7752081217786, -79.9309851630072, 32.7758819436703], "geometry": {"coordinates": [[[-79.9309851630072, 32.7752839303783], [-79.9309953356526, 32.7753562607766], [-79.9310267205483, 32.775574556384], [-79.9310706266371, 32.7758819436703], [-79.9318272048474, 32.7758094389227], [-79.9318103850343, 32.7756550151258], [-79.9317934305367, 32.7755029664879], [-79.9317869101125, 32.7754441685237], [-79.9317650662339, 32.775279754515], [-79.9317562903274, 32.7752081217786], [-79.9316636606328, 32.7752172113881], [-79.9315613124352, 32.7752272540569], [-79.9315597279673, 32.7752145423805], [-79.9312201234899, 32.7752555555292], [-79.9309851630072, 32.7752839303783]]], "type": "Polygon"}, "id": "405", "properties": {"OBJECTID": 3473, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6903.544921875, "Shape__Length": 332.679287773758, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9326288258307, 32.774564804131, -79.930907943068, 32.7759717399203], "geometry": {"coordinates": [[[-79.9318086530346, 32.7756543578952], [-79.9320470259722, 32.7756350602611], [-79.9320563452019, 32.7757051483682], [-79.9320707868859, 32.7757152388199], [-79.9322079421893, 32.7757028923455], [-79.9322139012194, 32.7757706956198], [-79.9322239085312, 32.7758795875657], [-79.9322266266659, 32.7759112512724], [-79.9323352868044, 32.7759018998248], [-79.9323433678084, 32.7759717399203], [-79.9325353596026, 32.7759597345812], [-79.9326288258307, 32.7759493367285], [-79.9324609422475, 32.774564804131], [-79.9311433736894, 32.7747237897686], [-79.930907943068, 32.7747522279852], [-79.9309851630072, 32.7752839303783], [-79.9312201234899, 32.7752555555292], [-79.9315597279673, 32.7752145423805], [-79.9315613124352, 32.7752272540569], [-79.9316636606328, 32.7752172113881], [-79.9317562903274, 32.7752081217786], [-79.9317650662339, 32.775279754515], [-79.9317869101125, 32.7754441685237], [-79.9317934305367, 32.7755029664879], [-79.9318086530346, 32.7756543578952]]], "type": "Polygon"}, "id": "406", "properties": {"OBJECTID": 3474, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20040.451171875, "Shape__Length": 711.842037501983, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9333186380714, 32.7745149614555, -79.9325575829545, 32.7760644426447], "geometry": {"coordinates": [[[-79.9327326560621, 32.7760020251073], [-79.9328776029538, 32.7759895483544], [-79.9328864478115, 32.7760644426447], [-79.9330835253917, 32.7760462328958], [-79.9330695064141, 32.7759286872021], [-79.9330584260389, 32.7758369343669], [-79.9330225963269, 32.7758400578504], [-79.9330196105722, 32.7758181271385], [-79.9330159405555, 32.7757856263633], [-79.9330468859055, 32.7757828038797], [-79.9330394188938, 32.7757281912645], [-79.9330282693131, 32.7756421058572], [-79.9330738665272, 32.7756384687446], [-79.9330721885161, 32.7755760895173], [-79.9329402738297, 32.7755872228076], [-79.93292696983, 32.7754778422386], [-79.9329416248841, 32.7754766813514], [-79.9333186380714, 32.7754448366245], [-79.9333046199534, 32.7753272025951], [-79.9329805361076, 32.7753546129031], [-79.932966484857, 32.7752397282377], [-79.9328964557386, 32.7752456466602], [-79.9328824203773, 32.7751294725], [-79.9329744350553, 32.7751216851677], [-79.9329707356922, 32.7750915893309], [-79.9329648114876, 32.7750437764794], [-79.932936311682, 32.7750461919005], [-79.9329259273534, 32.7749641515805], [-79.9329340702908, 32.774963449739], [-79.9329289090637, 32.7749197676325], [-79.9329259580241, 32.7748950884301], [-79.9329178447341, 32.7748268118846], [-79.9328978862725, 32.7746627428212], [-79.9328197179274, 32.7746692737851], [-79.9328251901027, 32.7746207892802], [-79.9328927744765, 32.7746151940777], [-79.9328744772136, 32.7745149614555], [-79.9327767193543, 32.7745268217906], [-79.9325575829545, 32.7745532580579], [-79.9325752655566, 32.7747037356081], [-79.9325937636406, 32.7748540507285], [-79.9326018756324, 32.7749224129609], [-79.9326108010303, 32.7749907786833], [-79.9326203727832, 32.7750728119425], [-79.93262999391, 32.7751508081175], [-79.932644028972, 32.7752669796017], [-79.9326580798027, 32.7753818643045], [-79.9326720981056, 32.7754994127436], [-79.9326854028567, 32.7756087933499], [-79.9326928024358, 32.7756689029858], [-79.9327031372963, 32.775755066091], [-79.9327142435679, 32.7758446692122], [-79.932727496978, 32.7759582582333], [-79.9327326560621, 32.7760020251073]]], "type": "Polygon"}, "id": "407", "properties": {"OBJECTID": 3475, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7619.404296875, "Shape__Length": 626.882366048708, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9345931247629, 32.7743374357373, -79.9332801642722, 32.7761610077423], "geometry": {"coordinates": [[[-79.9342633738116, 32.7743516600684], [-79.9341517758402, 32.7743646057718], [-79.9340491382921, 32.7743765093757], [-79.9338446742984, 32.7744004126767], [-79.9336426576149, 32.7744238193178], [-79.9332801642722, 32.7744660139147], [-79.9333311955926, 32.7748831607099], [-79.933346059548, 32.7749980524117], [-79.933374117872, 32.7752315160731], [-79.9333948570797, 32.7753982576915], [-79.9334081962988, 32.775504889718], [-79.9334355559866, 32.7757289826301], [-79.9334570091258, 32.7759039768483], [-79.9334888473754, 32.7761610077423], [-79.9338854426864, 32.7761245224784], [-79.93433415769, 32.7760830771667], [-79.9344261805626, 32.7760746016072], [-79.9345931247629, 32.7760593050091], [-79.9345539494953, 32.7757365813046], [-79.9345377223053, 32.7755998579883], [-79.9345259098857, 32.7755014000975], [-79.93450594827, 32.7753373294809], [-79.934493389657, 32.7752333675049], [-79.9344823550422, 32.7751376624747], [-79.9344771500873, 32.7750976739739], [-79.9344624103637, 32.7749723050854], [-79.9344483362591, 32.7748591384075], [-79.9344416975246, 32.7748032443834], [-79.9344335756731, 32.7747355730059], [-79.9344188277524, 32.7746110607876], [-79.9343855630124, 32.7743374357373], [-79.9342633738116, 32.7743516600684]]], "type": "Polygon"}, "id": "408", "properties": {"OBJECTID": 3476, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 28174.318359375, "Shape__Length": 702.637768309386, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.933408224995, 32.7754448366245, -79.93292696983, 32.7761966354301], "geometry": {"coordinates": [[[-79.9330835253917, 32.7760462328958], [-79.9331020235663, 32.7761966354301], [-79.9332298786425, 32.7761848641295], [-79.933408224995, 32.7761684664299], [-79.9333615532494, 32.775793879148], [-79.9333467867281, 32.7756709123571], [-79.9333327590819, 32.7755541394979], [-79.9333186380714, 32.7754448366245], [-79.9329416248841, 32.7754766813514], [-79.93292696983, 32.7754778422386], [-79.9329402738297, 32.7755872228076], [-79.9330721885161, 32.7755760895173], [-79.9330738665272, 32.7756384687446], [-79.9330282693131, 32.7756421058572], [-79.9330394188938, 32.7757281912645], [-79.9330468859055, 32.7757828038797], [-79.9330159405555, 32.7757856263633], [-79.9330196105722, 32.7758181271385], [-79.9330225963269, 32.7758400578504], [-79.9330584260389, 32.7758369343669], [-79.9330695064141, 32.7759286872021], [-79.9330835253917, 32.7760462328958]]], "type": "Polygon"}, "id": "409", "properties": {"OBJECTID": 3477, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3443.177734375, "Shape__Length": 298.4421483967, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9331020235663, 32.7759895483544, -79.9327326560621, 32.7762281045956], "geometry": {"coordinates": [[[-79.9327326560621, 32.7760020251073], [-79.932760803337, 32.7762281045956], [-79.9329049467305, 32.7762147568388], [-79.9331020235663, 32.7761966354301], [-79.9330835253917, 32.7760462328958], [-79.9328864478115, 32.7760644426447], [-79.9328776029538, 32.7759895483544], [-79.9327326560621, 32.7760020251073]]], "type": "Polygon"}, "id": "410", "properties": {"OBJECTID": 3478, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 927.26171875, "Shape__Length": 136.582653606565, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9326652804566, 32.7756350602611, -79.9310706266371, 32.7763771392102], "geometry": {"coordinates": [[[-79.9310706266371, 32.7758819436703], [-79.9311421113764, 32.7763771392102], [-79.9318986789889, 32.7763109070522], [-79.9326652804566, 32.776249968575], [-79.9326288258307, 32.7759493367285], [-79.9325353596026, 32.7759597345812], [-79.9323433678084, 32.7759717399203], [-79.9323352868044, 32.7759018998248], [-79.9322266266659, 32.7759112512724], [-79.9322239085312, 32.7758795875657], [-79.9322139012194, 32.7757706956198], [-79.9322079421893, 32.7757028923455], [-79.9320707868859, 32.7757152388199], [-79.9320563452019, 32.7757051483682], [-79.9320470259722, 32.7756350602611], [-79.9318086530346, 32.7756543578952], [-79.9318272048474, 32.7758094389227], [-79.9310706266371, 32.7758819436703]]], "type": "Polygon"}, "id": "411", "properties": {"OBJECTID": 3479, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11048.1015625, "Shape__Length": 516.333219283242, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9337035667388, 32.7706797667199, -79.9327331350218, 32.7711706671776], "geometry": {"coordinates": [[[-79.9327331350218, 32.7706797667199], [-79.9327861804412, 32.7711312910784], [-79.9327861258481, 32.7711357573885], [-79.9327898333661, 32.7711652544727], [-79.9329516629072, 32.7711682958684], [-79.933118382778, 32.7711705256655], [-79.9331248882535, 32.7711706671776], [-79.9332592382798, 32.7711592961634], [-79.9332763378096, 32.7711579004396], [-79.9332844804114, 32.7711571967716], [-79.9334854790846, 32.7711499301676], [-79.9335147740865, 32.7711488995669], [-79.9337035667388, 32.7711420402304], [-79.9336890928292, 32.7707287341077], [-79.9334964391207, 32.7707188081757], [-79.933253384378, 32.7707063808197], [-79.933091619736, 32.7706980980183], [-79.9328981517863, 32.7706881640409], [-79.9327331350218, 32.7706797667199]]], "type": "Polygon"}, "id": "412", "properties": {"OBJECTID": 3480, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6255.310546875, "Shape__Length": 327.798180441385, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9320273970566, 32.7710686250712, -79.9318358919778, 32.7712698332647], "geometry": {"coordinates": [[[-79.9320036414503, 32.7710686250712], [-79.9318358919778, 32.7710839966902], [-79.9318596483316, 32.7712698332647], [-79.9320273970566, 32.7712544643087], [-79.9320036414503, 32.7710686250712]]], "type": "Polygon"}, "id": "413", "properties": {"OBJECTID": 3481, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 464.8125, "Shape__Length": 87.0585239189439, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9337150420544, 32.7706445808321, -79.9320478714459, 32.7716146140537], "geometry": {"coordinates": [[[-79.9327331350218, 32.7706797667199], [-79.9325559260041, 32.7706706612574], [-79.9323900970549, 32.7706621698096], [-79.9322982414251, 32.7706574180372], [-79.9321998803943, 32.7706524353537], [-79.9320478714459, 32.7706445808321], [-79.9320775935444, 32.7708746232571], [-79.9320835411373, 32.7709203738448], [-79.9320998308824, 32.7710515977142], [-79.9321161868293, 32.7711774129569], [-79.9321303056579, 32.7712866275379], [-79.9321436090883, 32.7713960081522], [-79.9321718447585, 32.7716146140537], [-79.9325081735815, 32.7715825872651], [-79.9328347276032, 32.7715515934545], [-79.9329943414624, 32.77153640832], [-79.9331401099786, 32.7715225613927], [-79.9332809933448, 32.7715091848352], [-79.9335000536592, 32.771488332649], [-79.9337150420544, 32.7714678729482], [-79.9337126111724, 32.7714005063671], [-79.9337071060643, 32.7712518495869], [-79.9337035667388, 32.7711420402304], [-79.9335147740865, 32.7711488995669], [-79.9334854790846, 32.7711499301676], [-79.9332844804114, 32.7711571967716], [-79.9332763378096, 32.7711579004396], [-79.9332592382798, 32.7711592961634], [-79.9331248882535, 32.7711706671776], [-79.933118382778, 32.7711705256655], [-79.9329516629072, 32.7711682958684], [-79.9327898333661, 32.7711652544727], [-79.9327861258481, 32.7711357573885], [-79.9327861804412, 32.7711312910784], [-79.9327331350218, 32.7706797667199]]], "type": "Polygon"}, "id": "414", "properties": {"OBJECTID": 3482, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 13830.126953125, "Shape__Length": 588.070519003855, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9320808804583, 32.7712818116629, -79.9312343928388, 32.7717435005535], "geometry": {"coordinates": [[[-79.9320311295516, 32.7712818116629], [-79.9315295137494, 32.7713275118451], [-79.9315265611223, 32.7713029173727], [-79.9314850305642, 32.7713067625629], [-79.9313775425908, 32.7713164778626], [-79.9312586524733, 32.7713273767583], [-79.9312563786317, 32.7713136986053], [-79.9312343928388, 32.7713157412585], [-79.9312596883502, 32.7715085517731], [-79.9312909754245, 32.7717435005535], [-79.9313707805477, 32.7717360388649], [-79.9313692527155, 32.7717278648153], [-79.9314376577204, 32.771721504734], [-79.931438370124, 32.7717297573338], [-79.9315849504431, 32.7717160897927], [-79.9317087293692, 32.7717045460727], [-79.9317869057508, 32.7716973233046], [-79.9320808804583, 32.7716699113522], [-79.9320704951868, 32.7715879593512], [-79.932055639791, 32.7714724651671], [-79.932037782248, 32.7713364163103], [-79.9320311295516, 32.7712818116629]]], "type": "Polygon"}, "id": "415", "properties": {"OBJECTID": 3483, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4688.857421875, "Shape__Length": 293.140602017898, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9320311295516, 32.7704202495574, -79.9303547973128, 32.7718142512829], "geometry": {"coordinates": [[[-79.9320036414503, 32.7710686250712], [-79.9319843991036, 32.7709128067287], [-79.9319487150133, 32.7706382166061], [-79.9317757650149, 32.770613427321], [-79.9316020007058, 32.7705886333837], [-79.9314988808548, 32.7705738146468], [-79.9313949476755, 32.7705589932266], [-79.9311627232799, 32.7705256931782], [-79.9310807137513, 32.770513984999], [-79.9309735327839, 32.7704987019579], [-79.9307193851823, 32.7704623759019], [-79.9304311356474, 32.7704210318366], [-79.9304278866624, 32.7704206571232], [-79.9304246365618, 32.7704203734853], [-79.9304205711108, 32.7704202495574], [-79.9304165024564, 32.7704203871333], [-79.9304132460592, 32.7704206174858], [-79.9304091742785, 32.7704210102534], [-79.9304059136725, 32.770421584168], [-79.930402652028, 32.7704222428458], [-79.9303993882956, 32.7704230719521], [-79.9303953049266, 32.7704244106424], [-79.9303912183981, 32.7704260072297], [-79.9303879483356, 32.7704273530316], [-79.9303846709047, 32.7704293002926], [-79.930381396622, 32.7704309905583], [-79.9303781139325, 32.7704333670465], [-79.9303748291659, 32.7704359130614], [-79.9303715412175, 32.7704387187767], [-79.9303682511479, 32.7704416976257], [-79.9303657733466, 32.7704447683499], [-79.930363293424, 32.7704480122077], [-79.9303616247203, 32.7704514336059], [-79.930359954978, 32.7704549397675], [-79.9303582841862, 32.7704585315942], [-79.9303566112289, 32.7704623001615], [-79.9303557527165, 32.7704659829617], [-79.9303557053238, 32.7704698514181], [-79.9303548446503, 32.7704736234811], [-79.9303547973128, 32.7704774874288], [-79.9303555653883, 32.7704812737343], [-79.9303845812265, 32.7707022028014], [-79.9303979855034, 32.7708031658733], [-79.9304403658989, 32.771128325908], [-79.9304753499812, 32.7713932887297], [-79.930479081996, 32.7714206361316], [-79.9305147596744, 32.7716953989387], [-79.9305303853441, 32.7718142512829], [-79.9311256644876, 32.7717588925168], [-79.9312909754245, 32.7717435005535], [-79.9312596883502, 32.7715085517731], [-79.9312343928388, 32.7713157412585], [-79.9312563786317, 32.7713136986053], [-79.9312586524733, 32.7713273767583], [-79.9313775425908, 32.7713164778626], [-79.9314850305642, 32.7713067625629], [-79.9315265611223, 32.7713029173727], [-79.9315295137494, 32.7713275118451], [-79.9320311295516, 32.7712818116629], [-79.9320273970566, 32.7712544643087], [-79.9318596483316, 32.7712698332647], [-79.9318358919778, 32.7710839966902], [-79.9320036414503, 32.7710686250712]]], "type": "Polygon"}, "id": "416", "properties": {"OBJECTID": 3484, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 23029.861328125, "Shape__Length": 721.530519048375, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9321694615464, 32.7717258561068, -79.9312748263437, 32.7725519208791], "geometry": {"coordinates": [[[-79.9312748263437, 32.7718002264546], [-79.9313134351126, 32.7721015574261], [-79.9313232075976, 32.772100612006], [-79.9313328409355, 32.7721774892001], [-79.9313343666562, 32.7721857489064], [-79.9313462444273, 32.7722786244166], [-79.9313811297163, 32.7725519208791], [-79.9315505234551, 32.7725352745941], [-79.9318770950567, 32.772503252659], [-79.9321694615464, 32.7724745386051], [-79.9321345738318, 32.7722012414681], [-79.9321226952327, 32.7721083660352], [-79.9321063884474, 32.7719785164029], [-79.9320900723023, 32.771849435953], [-79.9320736889246, 32.7717258561068], [-79.9318220591622, 32.771749343287], [-79.9316274330612, 32.7717674018772], [-79.9314661940078, 32.7717824862653], [-79.9312748263437, 32.7718002264546]], [[-79.9318255078147, 32.7719327705036], [-79.9318450516986, 32.7719309643443], [-79.9318539436098, 32.7720019938344], [-79.9318343997101, 32.7720037999951], [-79.9318255078147, 32.7719327705036]]], "type": "Polygon"}, "id": "417", "properties": {"OBJECTID": 3485, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8856.888671875, "Shape__Length": 402.123486772837, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9313811297163, 32.7718002264546, -79.9305370360931, 32.7726251943773], "geometry": {"coordinates": [[[-79.9312748263437, 32.7718002264546], [-79.9311062578113, 32.7718159335306], [-79.9309547899881, 32.7718301575064], [-79.9305370360931, 32.7718689416803], [-79.9305645545315, 32.7720793801222], [-79.9305764104612, 32.7721739708121], [-79.9305860441548, 32.7722507660075], [-79.9305994467928, 32.7723519013066], [-79.9306343298177, 32.7726251943773], [-79.9312288389229, 32.7725668252148], [-79.9313811297163, 32.7725519208791], [-79.9313462444273, 32.7722786244166], [-79.9313343666562, 32.7721857489064], [-79.9313328409355, 32.7721774892001], [-79.9313232075976, 32.772100612006], [-79.9313134351126, 32.7721015574261], [-79.9312748263437, 32.7718002264546]]], "type": "Polygon"}, "id": "418", "properties": {"OBJECTID": 3486, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8363.6015625, "Shape__Length": 368.354635193794, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.9322233261061, 32.7725585725005, -79.9310331802996, 32.7729441862079], "geometry": {"coordinates": [[[-79.9310331802996, 32.7726690556295], [-79.9310613957822, 32.7728891172238], [-79.9310736135915, 32.7728877648197], [-79.9314362313938, 32.7728518799255], [-79.931448296734, 32.7729441862079], [-79.931710487659, 32.772918234392], [-79.9318463593818, 32.7729047868367], [-79.9322233261061, 32.7728719414402], [-79.93220338411, 32.7727346866796], [-79.9321833089845, 32.7725585725005], [-79.9319186944357, 32.7725817833207], [-79.9314074860807, 32.772631946368], [-79.9310331802996, 32.7726690556295]]], "type": "Polygon"}, "id": "419", "properties": {"OBJECTID": 3487, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4839.552734375, "Shape__Length": 341.017588220135, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9323034162691, 32.772930362211, -79.9317411260723, 32.7735088099798], "geometry": {"coordinates": [[[-79.9317411260723, 32.772979067381], [-79.9317506957504, 32.7730611854536], [-79.9317632875968, 32.7731623135409], [-79.9317723760861, 32.7732172812808], [-79.9317888381025, 32.7733344218732], [-79.9318671177871, 32.7733187867247], [-79.9318661668598, 32.773463001652], [-79.9318694012696, 32.773464577443], [-79.9318726346452, 32.7734661505193], [-79.9318758596312, 32.7734685838727], [-79.9318790824688, 32.7734711055871], [-79.93188067972, 32.7734734372495], [-79.9318822769989, 32.7734759411625], [-79.9318838721294, 32.7734785334366], [-79.9318846518397, 32.7734812890374], [-79.9318854305019, 32.7734841303034], [-79.9318862091423, 32.7734869733728], [-79.9318861744803, 32.7734898066352], [-79.9318853254348, 32.773492718461], [-79.9318844784633, 32.7734954607599], [-79.9318836315027, 32.7734982021571], [-79.9318819722546, 32.7735008507873], [-79.9318803140572, 32.7735033262744], [-79.9318786600684, 32.7735056322532], [-79.9318786211919, 32.7735088099798], [-79.931952791285, 32.7734966587523], [-79.9321264729746, 32.7734620971678], [-79.9323034162691, 32.7734268766081], [-79.9322899169855, 32.7733334693829], [-79.9322764523667, 32.7732373172745], [-79.9322562402428, 32.7730941179714], [-79.9322442437454, 32.7730108622875], [-79.9322330280546, 32.772930362211], [-79.931942284594, 32.7729591771788], [-79.9317411260723, 32.772979067381]]], "type": "Polygon"}, "id": "420", "properties": {"OBJECTID": 3488, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3648.2578125, "Shape__Length": 252.401736466225, "ZONE_BASE": "SR-4", "__folium_color": "#dbdb8d"}, "type": "Feature"}, {"bbox": [-79.9318862091423, 32.772979067381, -79.9313943017297, 32.7735888217635], "geometry": {"coordinates": [[[-79.9314568984223, 32.77300725], [-79.9314568658214, 32.7730099137353], [-79.9314724762338, 32.7731301366188], [-79.9313943017297, 32.7731371860628], [-79.9314158482177, 32.7732376204446], [-79.93146043667, 32.7734492349992], [-79.9314896383733, 32.7735888217635], [-79.9316983831958, 32.7735472666989], [-79.9318630974091, 32.7735144299389], [-79.9318663581211, 32.7735138559853], [-79.93187127173, 32.7735110653251], [-79.9318786211919, 32.7735088099798], [-79.9318786600684, 32.7735056322532], [-79.9318803140572, 32.7735033262744], [-79.9318819722546, 32.7735008507873], [-79.9318836315027, 32.7734982021571], [-79.9318844784633, 32.7734954607599], [-79.9318853254348, 32.773492718461], [-79.9318861744803, 32.7734898066352], [-79.9318862091423, 32.7734869733728], [-79.9318854305019, 32.7734841303034], [-79.9318846518397, 32.7734812890374], [-79.9318838721294, 32.7734785334366], [-79.9318822769989, 32.7734759411625], [-79.93188067972, 32.7734734372495], [-79.9318790824688, 32.7734711055871], [-79.9318758596312, 32.7734685838727], [-79.9318726346452, 32.7734661505193], [-79.9318694012696, 32.773464577443], [-79.9318661668598, 32.773463001652], [-79.9318671177871, 32.7733187867247], [-79.9317888381025, 32.7733344218732], [-79.9317723760861, 32.7732172812808], [-79.9317632875968, 32.7731623135409], [-79.9317506957504, 32.7730611854536], [-79.9317411260723, 32.772979067381], [-79.9316482844628, 32.7729882209392], [-79.9315570705438, 32.7729973029698], [-79.9314568984223, 32.77300725]]], "type": "Polygon"}, "id": "421", "properties": {"OBJECTID": 3489, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2982.373046875, "Shape__Length": 244.872423083133, "ZONE_BASE": "SR-5", "__folium_color": "#17becf"}, "type": "Feature"}, {"bbox": [-79.9314896383733, 32.7726690556295, -79.9306447138204, 32.7737272290143], "geometry": {"coordinates": [[[-79.9310331802996, 32.7726690556295], [-79.9306447138204, 32.7727071501165], [-79.9306729304307, 32.772927127949], [-79.9306930346767, 32.7730787461218], [-79.9307078307171, 32.7731989619941], [-79.9307227277681, 32.77331102075], [-79.930734570324, 32.7734066439187], [-79.9307538793675, 32.7735569664146], [-79.930761315311, 32.7736139840926], [-79.9307940911809, 32.7737272290143], [-79.9310028377658, 32.7736856724401], [-79.9312833396572, 32.7736297963206], [-79.9314195137947, 32.7736027260467], [-79.9314545755626, 32.7735958167427], [-79.9314896383733, 32.7735888217635], [-79.93146043667, 32.7734492349992], [-79.9314158482177, 32.7732376204446], [-79.9313943017297, 32.7731371860628], [-79.9314724762338, 32.7731301366188], [-79.9314568658214, 32.7730099137353], [-79.9314568984223, 32.77300725], [-79.9314502133718, 32.7729553081445], [-79.9314368327659, 32.7728522846916], [-79.9310736135915, 32.7728877648197], [-79.9310613957822, 32.7728891172238], [-79.9310331802996, 32.7726690556295]]], "type": "Polygon"}, "id": "422", "properties": {"OBJECTID": 3490, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9587.541015625, "Shape__Length": 437.156915877157, "ZONE_BASE": "SR-3", "__folium_color": "#bcbd22"}, "type": "Feature"}, {"bbox": [-79.945318777317, 32.7886541490922, -79.9446364037328, 32.7895187951453], "geometry": {"coordinates": [[[-79.9446791315105, 32.7889042826353], [-79.9447199624975, 32.7889708683027], [-79.9447627380195, 32.7890417616597], [-79.9447790509214, 32.7890687048981], [-79.9448051215179, 32.7891102915179], [-79.944813136817, 32.7891230756206], [-79.9448499640425, 32.7891767809732], [-79.9448734100585, 32.7892102663037], [-79.9448808314779, 32.7892208646428], [-79.944887242155, 32.7892300212487], [-79.9449267821229, 32.7892864906496], [-79.9449331288, 32.789295554714], [-79.9449858418943, 32.7893649148943], [-79.9449860114741, 32.7893648415043], [-79.9449865883356, 32.7893656987129], [-79.9450409284699, 32.7894470005719], [-79.9450888750344, 32.7895187951453], [-79.945318777317, 32.7894121141655], [-79.945270016092, 32.7893403108575], [-79.9452156768566, 32.7892590109138], [-79.9451613376792, 32.7891776261738], [-79.9451245776101, 32.7891226769631], [-79.9450878186227, 32.7890676420761], [-79.9450502462222, 32.7890125983608], [-79.9450326724472, 32.7889857335689], [-79.9450166810276, 32.7889624861522], [-79.9449436428579, 32.7888630079845], [-79.9448602228574, 32.7887292570786], [-79.9448052724965, 32.7886541490922], [-79.9446390407146, 32.7887351493466], [-79.9446871103534, 32.7888103044759], [-79.9446364037328, 32.7888340434913], [-79.9446791315105, 32.7889042826353]]], "type": "Polygon"}, "id": "423", "properties": {"OBJECTID": 3537, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3301.4765625, "Shape__Length": 287.710718842931, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9448052724965, 32.7885860010117, -79.944312990438, 32.7889829467054], "geometry": {"coordinates": [[[-79.944312990438, 32.7887547776887], [-79.9443813837162, 32.7888460220878], [-79.9444169295422, 32.7888934433507], [-79.9444468529847, 32.7889333651337], [-79.9444840169737, 32.7889829467054], [-79.9445810748567, 32.7889438155684], [-79.9446791315105, 32.7889042826353], [-79.9446364037328, 32.7888340434913], [-79.9446871103534, 32.7888103044759], [-79.9446390407146, 32.7887351493466], [-79.9448052724965, 32.7886541490922], [-79.944759264147, 32.7885860010117], [-79.9445854746533, 32.7886509996772], [-79.9445312354096, 32.7886718944484], [-79.944312990438, 32.7887547776887]]], "type": "Polygon"}, "id": "424", "properties": {"OBJECTID": 3538, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1297.40625, "Shape__Length": 174.246595276702, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9433282878878, 32.7891847151604, -79.9430200136316, 32.7894369090506], "geometry": {"coordinates": [[[-79.9430200136316, 32.789264699247], [-79.9431171850168, 32.7894369090506], [-79.9432170093883, 32.7893899226444], [-79.9433282878878, 32.7893377151563], [-79.9432276293713, 32.7891847151604], [-79.9431230075681, 32.7892247854397], [-79.9430200136316, 32.789264699247]]], "type": "Polygon"}, "id": "425", "properties": {"OBJECTID": 3539, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 632.6796875, "Shape__Length": 100.735980696249, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9441138471199, 32.7889383284402, -79.943341487524, 32.7895680507621], "geometry": {"coordinates": [[[-79.9441138471199, 32.7893283895125], [-79.9438427944352, 32.7889383284402], [-79.9437981906118, 32.7889585133535], [-79.9437205969154, 32.7889879521516], [-79.9436206253474, 32.7890259003978], [-79.943341487524, 32.7891318553726], [-79.9436243194357, 32.7895680507621], [-79.9438434679718, 32.7894603922812], [-79.9441138471199, 32.7893283895125]]], "type": "Polygon"}, "id": "426", "properties": {"OBJECTID": 3540, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3888.9453125, "Shape__Length": 250.084245459613, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.945518559633, 32.789295554714, -79.9445460204243, 32.7900316827034], "geometry": {"coordinates": [[[-79.9446054934203, 32.7896903787462], [-79.9448265158601, 32.7900316827034], [-79.9449391129424, 32.7899771655995], [-79.9450328337453, 32.7899337387327], [-79.9451012800741, 32.7899060545602], [-79.945205197303, 32.789857042933], [-79.9452894702959, 32.7898177387763], [-79.9454301955266, 32.7897522078975], [-79.945518559633, 32.7897110504051], [-79.9454242615133, 32.7895699634926], [-79.9453683229975, 32.7894862455397], [-79.945318777317, 32.7894121141655], [-79.9450887447372, 32.7895187101512], [-79.9450406353034, 32.7894469637743], [-79.9449860948706, 32.7893656268201], [-79.9449331288, 32.789295554714], [-79.9447827500427, 32.7893595804641], [-79.944754377311, 32.7893711759491], [-79.9445460204243, 32.7894627357908], [-79.9446730504531, 32.7896471404051], [-79.9446227962073, 32.7896823456494], [-79.9446054934203, 32.7896903787462]]], "type": "Polygon"}, "id": "427", "properties": {"OBJECTID": 3541, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5745.376953125, "Shape__Length": 334.493272732203, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.944228484438, 32.7894603922812, -79.9436243194357, 32.7901529853305], "geometry": {"coordinates": [[[-79.9436243194357, 32.7895680507621], [-79.9437249912998, 32.7897233060334], [-79.9439670489639, 32.7900980718017], [-79.9440036041553, 32.7901529853305], [-79.9441008663904, 32.7901050300576], [-79.9442255597028, 32.7900435494122], [-79.944228484438, 32.790042108266], [-79.9441969996979, 32.7899893037639], [-79.9441912643973, 32.7899920156912], [-79.9441510411896, 32.7899310508146], [-79.9441038321101, 32.7898529692235], [-79.9441005543544, 32.7898479357496], [-79.9440710404828, 32.7898034460109], [-79.9440558552227, 32.7897805553354], [-79.9440423036386, 32.789760126339], [-79.943995413108, 32.7896894425049], [-79.9439934365765, 32.7896864629161], [-79.943949533472, 32.7896202815598], [-79.9439472518342, 32.7896168403025], [-79.9438954364033, 32.7895387314964], [-79.9438870364275, 32.7895260693668], [-79.9438434679718, 32.7894603922812], [-79.9436243194357, 32.7895680507621]]], "type": "Polygon"}, "id": "428", "properties": {"OBJECTID": 3542, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2525.076171875, "Shape__Length": 234.396454724085, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9447980325108, 32.7897067521821, -79.9440036041553, 32.790360324149], "geometry": {"coordinates": [[[-79.9440036041553, 32.7901529853305], [-79.9441380482641, 32.790360324149], [-79.9442379517962, 32.790313189683], [-79.9443636933585, 32.7902529796068], [-79.9446447431696, 32.7901132361682], [-79.9447980325108, 32.7900444622587], [-79.9445702285662, 32.7897067521821], [-79.9444952375749, 32.7897415690271], [-79.9444219279558, 32.7897756049145], [-79.9443749451487, 32.7897073166087], [-79.9442166727365, 32.7897837197981], [-79.9442164797742, 32.78980073306], [-79.9441038321101, 32.7898529692235], [-79.9441510411896, 32.7899310508146], [-79.9441912643973, 32.7899920156912], [-79.9441969996979, 32.7899893037639], [-79.944228484438, 32.790042108266], [-79.9441008663904, 32.7901050300576], [-79.9440036041553, 32.7901529853305]]], "type": "Polygon"}, "id": "429", "properties": {"OBJECTID": 3543, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4095.62890625, "Shape__Length": 291.833882529971, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9449331288, 32.7887547776887, -79.9438427944352, 32.7898529692235], "geometry": {"coordinates": [[[-79.9441138471199, 32.7893283895125], [-79.9438434679718, 32.7894603922812], [-79.9438870364275, 32.7895260693668], [-79.9438954364033, 32.7895387314964], [-79.9439472518342, 32.7896168403025], [-79.943949533472, 32.7896202815598], [-79.9439934365765, 32.7896864629161], [-79.943995413108, 32.7896894425049], [-79.9440423036386, 32.789760126339], [-79.9440558552227, 32.7897805553354], [-79.9440710404828, 32.7898034460109], [-79.9441005543544, 32.7898479357496], [-79.9441038321101, 32.7898529692235], [-79.9442164797742, 32.78980073306], [-79.9442166727365, 32.7897837197981], [-79.9443749451487, 32.7897073166087], [-79.9444219279558, 32.7897756049145], [-79.9444952375749, 32.7897415690271], [-79.9445702285662, 32.7897067521821], [-79.9446054934203, 32.7896903787462], [-79.9446227962073, 32.7896823456494], [-79.9446730504531, 32.7896471404051], [-79.9445460204243, 32.7894627357908], [-79.944754377311, 32.7893711759491], [-79.9447827500427, 32.7893595804641], [-79.9449331288, 32.789295554714], [-79.9449267821229, 32.7892864906496], [-79.944887242155, 32.7892300212487], [-79.9448808314779, 32.7892208646428], [-79.9448734100585, 32.7892102663037], [-79.9448499640425, 32.7891767809732], [-79.944813136817, 32.7891230756206], [-79.9448051215179, 32.7891102915179], [-79.9447790509214, 32.7890687048981], [-79.9447627380195, 32.7890417616597], [-79.9447199624975, 32.7889708683027], [-79.9446791315105, 32.7889042826353], [-79.9445810748567, 32.7889438155684], [-79.9444840169737, 32.7889829467054], [-79.9444468529847, 32.7889333651337], [-79.944312990438, 32.7887547776887], [-79.9441795648855, 32.788806863477], [-79.9441202812764, 32.7888300060999], [-79.9438427944352, 32.7889383284402], [-79.9441138471199, 32.7893283895125]]], "type": "Polygon"}, "id": "430", "properties": {"OBJECTID": 3544, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10037.990234375, "Shape__Length": 487.528690490131, "ZONE_BASE": "PUD", "__folium_color": "#7f7f7f"}, "type": "Feature"}, {"bbox": [-79.9446737934947, 32.7881822681483, -79.9434376914791, 32.7888678145179], "geometry": {"coordinates": [[[-79.9436471688468, 32.7887181546306], [-79.943638029544, 32.7887234533648], [-79.9436203304951, 32.7887337131378], [-79.9437315016572, 32.7888678145179], [-79.9440531496876, 32.7887422517222], [-79.9440441402526, 32.7887257840102], [-79.9445051787364, 32.7885473246236], [-79.9446737934947, 32.7884813227878], [-79.9444764418933, 32.7881822681483], [-79.944022210231, 32.7883008276401], [-79.9440211897074, 32.788302049837], [-79.9434376914791, 32.7884510366957], [-79.9434393337459, 32.7884529609651], [-79.943652365341, 32.7887151422757], [-79.9436471688468, 32.7887181546306]]], "type": "Polygon"}, "id": "431", "properties": {"OBJECTID": 3545, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6313.125, "Shape__Length": 353.731788311769, "ZONE_BASE": "PUD", "__folium_color": "#7f7f7f"}, "type": "Feature"}, {"bbox": [-79.9461504182598, 32.7870924656502, -79.9442143597143, 32.788414728676], "geometry": {"coordinates": [[[-79.9453228674414, 32.7872382840639], [-79.9452926509635, 32.7872479031813], [-79.9452461018589, 32.787262534572], [-79.9451824097951, 32.7872819989805], [-79.9451644388272, 32.7872879413463], [-79.9450754130085, 32.7873168116579], [-79.9450427467194, 32.787327095887], [-79.9449545488685, 32.7873547665955], [-79.9449210659572, 32.7873653025771], [-79.9448622701169, 32.7873835203219], [-79.9447977830422, 32.7874013480596], [-79.9447577861943, 32.7874124266338], [-79.9445815364282, 32.7874555751275], [-79.9445750079264, 32.7874572368048], [-79.9444509819383, 32.7874875191171], [-79.9443604077182, 32.7875098444641], [-79.9443163475102, 32.7875203737889], [-79.9442143597143, 32.7875446648442], [-79.9444717784896, 32.7879206344012], [-79.9445229485226, 32.7879948649058], [-79.9445844996187, 32.7880853341028], [-79.9446220775632, 32.7881397737801], [-79.9446596503755, 32.788194730153], [-79.9447004200508, 32.7882545244775], [-79.9448099410723, 32.788414728676], [-79.9448990344969, 32.7883803651473], [-79.9450968380018, 32.7883040710969], [-79.9452071801498, 32.7882618164264], [-79.9453044484862, 32.788224171865], [-79.9454033478362, 32.7881861093071], [-79.9455071538747, 32.7881461184509], [-79.9456109587832, 32.7881061247925], [-79.945729477694, 32.7880603291763], [-79.9461504182598, 32.7878981696088], [-79.9461210996257, 32.7878333204289], [-79.946077499455, 32.7877384550941], [-79.9460251897729, 32.7876237555104], [-79.9458960139888, 32.7873394312815], [-79.9458397369799, 32.7872163671881], [-79.9458222898825, 32.7871790224796], [-79.9457859119542, 32.7870924656502], [-79.9453228674414, 32.7872382840639]]], "type": "Polygon"}, "id": "432", "properties": {"OBJECTID": 3546, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21085.0078125, "Shape__Length": 596.252750190518, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9466445964558, 32.7856358449709, -79.9462482267842, 32.7858796329517], "geometry": {"coordinates": [[[-79.9462482267842, 32.7857464449775], [-79.9463094353948, 32.7858796329517], [-79.9466445964558, 32.7857707150309], [-79.9465826155288, 32.7856358449709], [-79.9462482267842, 32.7857464449775]]], "type": "Polygon"}, "id": "433", "properties": {"OBJECTID": 3547, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 761.03515625, "Shape__Length": 118.052879694354, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9461110702641, 32.7858301207316, -79.9454958680948, 32.7861280611908], "geometry": {"coordinates": [[[-79.945554719045, 32.7861221614478], [-79.945931053705, 32.7859966683712], [-79.9459914519952, 32.7861280611908], [-79.9461110702641, 32.7860870039322], [-79.9459941279824, 32.7858301207316], [-79.9454958680948, 32.7859919442089], [-79.945554719045, 32.7861221614478]]], "type": "Polygon"}, "id": "434", "properties": {"OBJECTID": 3548, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1349.04296875, "Shape__Length": 192.430412698978, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9472941195189, 32.7857464449775, -79.945554719045, 32.7875318055252], "geometry": {"coordinates": [[[-79.945554719045, 32.7861221614478], [-79.9455703239826, 32.7861562491217], [-79.9456147705325, 32.7862483731344], [-79.945669520288, 32.7863630055368], [-79.9457369784311, 32.7865030880841], [-79.945802061807, 32.7866379113732], [-79.9459665860945, 32.7870265659875], [-79.9460085090836, 32.7871255400992], [-79.9461332108983, 32.7874000055838], [-79.9461933514464, 32.7875318055252], [-79.946621869248, 32.7873942142969], [-79.9467344140452, 32.787358077245], [-79.9468408805565, 32.7873238916452], [-79.9469407114237, 32.787291839396], [-79.9470598925579, 32.7872535704147], [-79.9472941195189, 32.7871783591979], [-79.9472266606231, 32.7870324237088], [-79.9470627832985, 32.7866721625564], [-79.9470035175075, 32.7865412471729], [-79.9469337850408, 32.7863872088106], [-79.9468849760772, 32.7862793918862], [-79.946831625134, 32.7861641723633], [-79.9467003960151, 32.7858921323819], [-79.9466445964558, 32.7857707150309], [-79.9463094280963, 32.7858796184594], [-79.9462482267842, 32.7857464449775], [-79.9461064478413, 32.7857948724515], [-79.9459941279824, 32.7858301207316], [-79.9461110702641, 32.7860870039322], [-79.9459914519952, 32.7861280611908], [-79.945931053705, 32.7859966683712], [-79.945554719045, 32.7861221614478]]], "type": "Polygon"}, "id": "435", "properties": {"OBJECTID": 3549, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 26360.99609375, "Shape__Length": 734.679929458241, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9499110871091, 32.783629520991, -79.9461173250007, 32.7871296739919], "geometry": {"coordinates": [[[-79.9488242885124, 32.7849030709312], [-79.9488211334885, 32.7849037084748], [-79.9488154228025, 32.7849049481292], [-79.948812162844, 32.7849055225444], [-79.9488064542426, 32.784906589064], [-79.9488031953482, 32.7849070751083], [-79.9487999342861, 32.7849075638395], [-79.948794230925, 32.7849083724789], [-79.9487909709162, 32.7849087737409], [-79.9487877119531, 32.7849091768155], [-79.9487820095765, 32.7849098150161], [-79.9487787526874, 32.7849100458579], [-79.9487754948209, 32.7849103578563], [-79.9487722379317, 32.7849105886979], [-79.9487665396922, 32.7849108833344], [-79.9487632838346, 32.7849110285104], [-79.9487600280095, 32.784911170981], [-79.9487567731726, 32.7849112313932], [-79.9487510770179, 32.7849113528946], [-79.9487478232452, 32.7849113249359], [-79.9487445694725, 32.784911296977], [-79.9487413156997, 32.7849112690181], [-79.9487356226291, 32.7849111344244], [-79.9487323698771, 32.7849110217016], [-79.9487291181894, 32.784910820608], [-79.9487258665017, 32.7849106195144], [-79.9487201765043, 32.7849102297272], [-79.9487169258374, 32.7849099438697], [-79.9487136751814, 32.7849096571103], [-79.9487104255462, 32.7849092855872], [-79.948704739719, 32.7849085495307], [-79.9487014900948, 32.7849081771056], [-79.9486982414805, 32.7849077208185], [-79.9486925577386, 32.7849068116271], [-79.9486893101561, 32.7849062696744], [-79.9486860626062, 32.7849057250163], [-79.9486803819379, 32.7849045606316], [-79.9486771343881, 32.7849040159733], [-79.9486714557834, 32.7849026802575], [-79.9486682102862, 32.7849019651698], [-79.9486625327352, 32.7849005419846], [-79.9486592882591, 32.7848997421331], [-79.9486536138252, 32.7848980601477], [-79.9486503693926, 32.784897256689], [-79.9486446959691, 32.7848954908414], [-79.9486390246092, 32.7848935536626], [-79.9486333532821, 32.7848916137784], [-79.9486276840188, 32.7848895025631], [-79.9486220157658, 32.7848873074855], [-79.9486163485448, 32.7848850267423], [-79.9486131092718, 32.7848837949557], [-79.948608256515, 32.784881436439], [-79.9486025924443, 32.7848788941903], [-79.9485993531391, 32.7848776651084], [-79.9485945014475, 32.7848752182206], [-79.9485888373775, 32.7848726759713], [-79.9485839877282, 32.7848700595557], [-79.9485783246473, 32.7848674352474], [-79.948575900871, 32.7848660400214], [-79.9485726626311, 32.7848647225683], [-79.9485702388549, 32.7848633273422], [-79.9485678150788, 32.784861932116], [-79.9485653913029, 32.7848605368899], [-79.9485629675269, 32.7848591416636], [-79.9485597303084, 32.7848577394464], [-79.9485573065326, 32.78485634422], [-79.9485548838214, 32.784854860623], [-79.9485524600458, 32.7848534653966], [-79.9485500372912, 32.7848519854065], [-79.9485468010941, 32.7848504984252], [-79.9485443783506, 32.7848490175332], [-79.9485419555963, 32.7848475375429], [-79.9485395328855, 32.7848460539456], [-79.9485371111631, 32.7848444882898], [-79.9485346884091, 32.7848430082993], [-79.9485322667195, 32.7848414399382], [-79.9485298449975, 32.7848398742823], [-79.9485274233081, 32.784838305921], [-79.9485250015861, 32.784836740265], [-79.9485225798969, 32.7848351719037], [-79.9485201592397, 32.7848335178769], [-79.948517737518, 32.7848319522207], [-79.9485153168609, 32.7848302981938], [-79.9485128951255, 32.7848286450595], [-79.9485104754926, 32.7848269946486], [-79.9485080548358, 32.7848253406216], [-79.948505634179, 32.7848236865945], [-79.9485032135115, 32.7848220334692], [-79.9485007928549, 32.7848203794421], [-79.948498373176, 32.7848186442581], [-79.9484959535406, 32.7848169054672], [-79.9484935328843, 32.7848152514399], [-79.9484895070563, 32.7848117808493], [-79.9484870884857, 32.7848099536876], [-79.9484846688508, 32.7848082148964], [-79.9484822491834, 32.7848064788105], [-79.9484782244098, 32.7848029207506], [-79.9484758057963, 32.7848010971956], [-79.9484733871937, 32.7847992727389], [-79.9484693634527, 32.7847956290132], [-79.9484669448039, 32.7847937197835], [-79.9484645272584, 32.7847918962375], [-79.94846050455, 32.7847881668462], [-79.948456482863, 32.7847843526911], [-79.9484540653149, 32.7847824407651], [-79.9484500425609, 32.7847786266006], [-79.9484460219423, 32.7847748124543], [-79.9484420012419, 32.7847708278605], [-79.9484379816559, 32.7847669280486], [-79.9484339620455, 32.7847629416603], [-79.9484315444629, 32.7847609440592], [-79.9484299434783, 32.7847588687046], [-79.948425923847, 32.7847548841195], [-79.9484243207275, 32.7847528087465], [-79.948421905234, 32.7847507263907], [-79.9484203042498, 32.784748651036], [-79.9484178877355, 32.7847466534439], [-79.948416285673, 32.7847445789817], [-79.948414683586, 32.7847424179431], [-79.9484130815346, 32.7847403425791], [-79.9484106671092, 32.7847382602323], [-79.948409065058, 32.7847361848683], [-79.9484074640279, 32.7847340247406], [-79.9484058619738, 32.7847318609967], [-79.9484034464814, 32.7847297786407], [-79.9484018465299, 32.7847276176203], [-79.948400245511, 32.7847254565907], [-79.9483986445139, 32.7847232937576], [-79.9483970424169, 32.7847211336206], [-79.9483954413982, 32.784718972591], [-79.948393027995, 32.7847168054802], [-79.9483914280302, 32.7847145569817], [-79.9483898270118, 32.784712395952], [-79.9483882259797, 32.7847101474442], [-79.9483866249614, 32.7847079864145], [-79.948385026032, 32.7847057406302], [-79.9483834260676, 32.7847034921316], [-79.9483818260598, 32.7847012472399], [-79.948380225039, 32.7846989978303], [-79.9483786250314, 32.7846967529385], [-79.948376238512, 32.7846922656384], [-79.9483746396156, 32.7846900171488], [-79.9483730406511, 32.7846876856898], [-79.9483714406874, 32.784685437191], [-79.9483698406774, 32.7846831039193], [-79.9483682406812, 32.7846808581257], [-79.9483658573268, 32.7846761967986], [-79.9483642583846, 32.784673863536], [-79.9483626594207, 32.7846715320769], [-79.9483602739101, 32.7846668725348], [-79.9483586749791, 32.7846645383704], [-79.9483562915821, 32.78465988065], [-79.9483546936725, 32.7846574617219], [-79.9483530936634, 32.78465512845], [-79.9483523092055, 32.7846527156125], [-79.9483507102641, 32.7846503823498], [-79.9483499257955, 32.7846479704139], [-79.9483475434206, 32.7846432279298], [-79.9483459455115, 32.7846408090016], [-79.9483451610431, 32.7846383970657], [-79.9483435620775, 32.7846359772266], [-79.9483427776092, 32.7846335652907], [-79.9483411796895, 32.7846311472642], [-79.9483403952214, 32.7846287353283], [-79.9483024107534, 32.7845404465766], [-79.9480093551428, 32.7838807061248], [-79.9478976774731, 32.783629520991], [-79.9475192000104, 32.7837646114866], [-79.9461173250007, 32.7841997756867], [-79.9463217094939, 32.7846558605887], [-79.9465190083003, 32.7850924712458], [-79.9467573078424, 32.7856372407894], [-79.9470103862724, 32.7861711382985], [-79.9473408336222, 32.7869007804833], [-79.9474470899616, 32.7871296739919], [-79.9499110871091, 32.7863384044169], [-79.9493707120374, 32.7851081540486], [-79.9492965594296, 32.7849414624606], [-79.9492647530408, 32.7848759866678], [-79.9492359348264, 32.7848421873117], [-79.949198861334, 32.7848147236756], [-79.9491554288343, 32.784794999963], [-79.9488242885124, 32.7849030709312]]], "type": "Polygon"}, "id": "436", "properties": {"OBJECTID": 3550, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 106593.1171875, "Shape__Length": 1395.52556231712, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9463553256429, 32.7852616049059, -79.9459218566056, 32.7856771132357], "geometry": {"coordinates": [[[-79.9460000999879, 32.785540912285], [-79.9460014975482, 32.785541705314], [-79.9460541604614, 32.7856719636844], [-79.9460573097227, 32.7856771132357], [-79.9460596124774, 32.7856763277346], [-79.9463553256429, 32.7855753369942], [-79.9463522201353, 32.7855679765288], [-79.9463118257636, 32.7854756847814], [-79.9463115930396, 32.7854751524982], [-79.9462700686768, 32.7853802510155], [-79.9462181547746, 32.7852616049059], [-79.9461559309727, 32.785281716439], [-79.9459765877764, 32.7853430960838], [-79.9459218566056, 32.7853616929378], [-79.9460000999879, 32.785540912285]]], "type": "Polygon"}, "id": "437", "properties": {"OBJECTID": 3551, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1579.70703125, "Shape__Length": 160.065102381553, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9465399496497, 32.7833723397287, -79.9444534308157, 32.7858834566494], "geometry": {"coordinates": [[[-79.9453108111152, 32.785570488991], [-79.9453361410281, 32.7856286908215], [-79.945393217292, 32.7857527053496], [-79.945454280019, 32.7858834566494], [-79.945682200988, 32.7858052758566], [-79.9457908495119, 32.7857681582877], [-79.9458692747987, 32.7857412604401], [-79.9460573097227, 32.7856771132357], [-79.9460541604614, 32.7856719636844], [-79.9460014975482, 32.785541705314], [-79.9460000999879, 32.785540912285], [-79.9459218566056, 32.7853616929378], [-79.9459765877764, 32.7853430960838], [-79.9461559309727, 32.785281716439], [-79.9462181547746, 32.7852616049059], [-79.9462700686768, 32.7853802510155], [-79.9463115930396, 32.7854751524982], [-79.9463118257636, 32.7854756847814], [-79.9463522201353, 32.7855679765288], [-79.9463553256429, 32.7855753369942], [-79.9463643179844, 32.7855722661328], [-79.9465399496497, 32.7855124438922], [-79.9464956051314, 32.7854119042833], [-79.9464536399155, 32.7853164516552], [-79.9464021923054, 32.7851978096417], [-79.9463752712026, 32.7851365876193], [-79.9463110885905, 32.7849946452132], [-79.9462532498978, 32.7848662425488], [-79.9461946000581, 32.7847378337722], [-79.9461779667778, 32.7847004934258], [-79.9461351960497, 32.7846043456514], [-79.9459466592981, 32.7841834449706], [-79.9457984684808, 32.7838573804877], [-79.9457128873219, 32.7836686943636], [-79.9455732869726, 32.7833723397287], [-79.9444534308157, 32.7836794810503], [-79.9445239351558, 32.7838365125702], [-79.9445286963263, 32.7838464323441], [-79.9448560451829, 32.7845608514515], [-79.9449812708212, 32.7848348347231], [-79.9451413713279, 32.7851851423422], [-79.9451627686918, 32.7852320563044], [-79.9453108111152, 32.785570488991]]], "type": "Polygon"}, "id": "438", "properties": {"OBJECTID": 3552, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 38748.5078125, "Shape__Length": 965.543147097919, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9449482599289, 32.7837338238987, -79.9436075801731, 32.7854103537266], "geometry": {"coordinates": [[[-79.9439077507455, 32.7838302687874], [-79.9438449439563, 32.7838439837041], [-79.9437185126321, 32.7838716697167], [-79.9436075801731, 32.7838959650603], [-79.9436732129455, 32.7840520964737], [-79.9437356503949, 32.7842033907797], [-79.943806812469, 32.7843732272479], [-79.9438147369168, 32.7843906487669], [-79.9438709364854, 32.7845196399851], [-79.9440205226655, 32.7848644464251], [-79.9442612328896, 32.7854103537266], [-79.9447091851143, 32.7853010039014], [-79.9449482599289, 32.7852423344956], [-79.9446653067624, 32.7846237334453], [-79.9445202511967, 32.7843078301302], [-79.9444615990278, 32.7841796784099], [-79.9443918695753, 32.7840258279942], [-79.9443332022224, 32.78389905138], [-79.9443102275652, 32.7838479995718], [-79.9442587297083, 32.7837338238987], [-79.9439077507455, 32.7838302687874]]], "type": "Polygon"}, "id": "439", "properties": {"OBJECTID": 3553, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 16574.1171875, "Shape__Length": 582.589598932446, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9438294382785, 32.7839305916954, -79.9426197846774, 32.7848638590777], "geometry": {"coordinates": [[[-79.9429183766162, 32.7846474793261], [-79.9433100090684, 32.7845533651913], [-79.9433424555785, 32.7846283795912], [-79.9433772822186, 32.7847083926677], [-79.9434113224915, 32.7847862552815], [-79.9434453648899, 32.7848638590777], [-79.9435767261451, 32.784832181092], [-79.9438294382785, 32.7847715673377], [-79.9436739006197, 32.784465882274], [-79.9436541196428, 32.7844198423537], [-79.9435774134791, 32.7842375856478], [-79.9434493385366, 32.7839305916954], [-79.9433710305778, 32.7839478673164], [-79.9432755968222, 32.7839686897811], [-79.9426197846774, 32.7841124899216], [-79.9426443769754, 32.7841642423337], [-79.9427325639374, 32.7843387799488], [-79.9428880868483, 32.7845960213383], [-79.9429183766162, 32.7846474793261]]], "type": "Polygon"}, "id": "440", "properties": {"OBJECTID": 3554, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8894.18359375, "Shape__Length": 426.512049928155, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9441226521592, 32.7845533651913, -79.9429181818314, 32.7856068606804], "geometry": {"coordinates": [[[-79.9429181818314, 32.7846481359826], [-79.9434659978583, 32.7856068606804], [-79.9441226521592, 32.7854448199456], [-79.9438294382785, 32.7847715673377], [-79.9435767261451, 32.784832181092], [-79.9434453648899, 32.7848638590777], [-79.9434113224915, 32.7847862552815], [-79.9433772822186, 32.7847083926677], [-79.9433424555785, 32.7846283795912], [-79.9433100090684, 32.7845533651913], [-79.9429181818314, 32.7846481359826]]], "type": "Polygon"}, "id": "441", "properties": {"OBJECTID": 3555, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9570.203125, "Shape__Length": 445.592032438732, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9425853533119, 32.7841439892421, -79.9420825084035, 32.7847398923782], "geometry": {"coordinates": [[[-79.9420825084035, 32.7842308436829], [-79.9422919249271, 32.7847398923782], [-79.9423008998526, 32.7847377352237], [-79.9424583778142, 32.7846991534157], [-79.9424349058475, 32.7846219843124], [-79.9424067166821, 32.7845313740606], [-79.9423714636718, 32.7844194843633], [-79.9424620820332, 32.7843933822125], [-79.9425853533119, 32.7843579405467], [-79.9425114630098, 32.7842119594529], [-79.9424789330996, 32.7841439892421], [-79.9424650672375, 32.7841469617761], [-79.9422978508954, 32.7841836557188], [-79.9420825084035, 32.7842308436829]]], "type": "Polygon"}, "id": "442", "properties": {"OBJECTID": 3556, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2283.171875, "Shape__Length": 230.371923691555, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9421973208092, 32.7847188322041, -79.9412764402891, 32.7859811579168], "geometry": {"coordinates": [[[-79.9412764402891, 32.7847867141196], [-79.9413463706035, 32.7849133885971], [-79.9413880125117, 32.784990655622], [-79.9414390861263, 32.7850854231859], [-79.9415178701254, 32.7852316069144], [-79.9415891756523, 32.7853567456019], [-79.9416600936306, 32.7854819891156], [-79.9417378286459, 32.7856198252601], [-79.9418268877994, 32.7857776943668], [-79.9419416488463, 32.7859811579168], [-79.9421351372814, 32.785933505229], [-79.9420182768962, 32.7857269574711], [-79.9421411299941, 32.7856943903696], [-79.9420742021197, 32.7855306354065], [-79.9420165556171, 32.7853895886149], [-79.9419736387505, 32.7853988680124], [-79.9419029711391, 32.7852735483906], [-79.9421973208092, 32.7851955066828], [-79.9421562179239, 32.7850903427245], [-79.9421463246254, 32.7850650265414], [-79.9421071842125, 32.7849648793094], [-79.9420692192203, 32.7848677372237], [-79.9420417729875, 32.7847975120736], [-79.9419504650134, 32.7848160758287], [-79.9419442089857, 32.7848036368237], [-79.9418146987645, 32.7848270069377], [-79.941683206589, 32.7848526098488], [-79.9416429275458, 32.7847188322041], [-79.9412764402891, 32.7847867141196]]], "type": "Polygon"}, "id": "443", "properties": {"OBJECTID": 3557, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8233.671875, "Shape__Length": 499.576493048667, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9433237524011, 32.7842313005731, -79.9410894942216, 32.785933505229], "geometry": {"coordinates": [[[-79.9420742021197, 32.7855306354065], [-79.9421411299941, 32.7856943903696], [-79.9420182768962, 32.7857269574711], [-79.9421351372814, 32.785933505229], [-79.942231239935, 32.7859148637364], [-79.9426612449297, 32.7858071175514], [-79.9433237524011, 32.7856423837692], [-79.9432281328129, 32.7854742377112], [-79.9431711779965, 32.785373794459], [-79.9430577726058, 32.7851743245048], [-79.9428593023711, 32.7852238555888], [-79.9426418883482, 32.7852781132823], [-79.9424887850404, 32.7853029071178], [-79.9423022287357, 32.7853520992885], [-79.9422859954644, 32.7853172942082], [-79.9422488054973, 32.7853272716328], [-79.9422337990808, 32.7852888436592], [-79.9423374561943, 32.7852636262925], [-79.9430145336641, 32.7850976232406], [-79.9429632814788, 32.785007234117], [-79.9427435413658, 32.7846294875194], [-79.9426429956908, 32.784463120139], [-79.9425830189813, 32.7843584244965], [-79.9423694474874, 32.7844199683539], [-79.9424564426284, 32.7846982384601], [-79.9422897124226, 32.7847403656519], [-79.9420805918383, 32.7842313005731], [-79.9416977704758, 32.7843151997561], [-79.9410894942216, 32.7844485069679], [-79.9412764402891, 32.7847867141196], [-79.9412785482348, 32.7847863238301], [-79.9416429275458, 32.7847188322041], [-79.941683206589, 32.7848526098488], [-79.9418146987645, 32.7848270069377], [-79.9419442089857, 32.7848036368237], [-79.9419504650134, 32.7848160758287], [-79.9420417729875, 32.7847975120736], [-79.9420692192203, 32.7848677372237], [-79.9421071842125, 32.7849648793094], [-79.9421463246254, 32.7850650265414], [-79.9421562179239, 32.7850903427245], [-79.9421973208092, 32.7851955066828], [-79.9419029711391, 32.7852735483906], [-79.9419736387505, 32.7853988680124], [-79.9420165556171, 32.7853895886149], [-79.9420742021197, 32.7855306354065]]], "type": "Polygon"}, "id": "444", "properties": {"OBJECTID": 3558, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 23472.482421875, "Shape__Length": 1127.95651889798, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9436476204511, 32.7857557630963, -79.942918664556, 32.7863455779101], "geometry": {"coordinates": [[[-79.942918664556, 32.7858719627241], [-79.9430392997696, 32.7861887735189], [-79.9430566581233, 32.7862333334482], [-79.9430688984238, 32.7862302611261], [-79.9431130605175, 32.7863455779101], [-79.9436476204511, 32.7862059686495], [-79.9436287981051, 32.7861479074195], [-79.9436173504697, 32.7861527073427], [-79.9435185517685, 32.7859808266183], [-79.9434810742009, 32.7859181383825], [-79.9433886692641, 32.7857557630963], [-79.9431193882408, 32.7858229298692], [-79.9430443188166, 32.785841437226], [-79.942918664556, 32.7858719627241]]], "type": "Polygon"}, "id": "445", "properties": {"OBJECTID": 3559, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3875.75, "Shape__Length": 252.362280213108, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.943799797897, 32.7858719627241, -79.9424641818077, 32.7867116318001], "geometry": {"coordinates": [[[-79.942918664556, 32.7858719627241], [-79.9427970868153, 32.7859017513497], [-79.9427040693108, 32.7859243970404], [-79.9424641818077, 32.7859827132739], [-79.9425988077709, 32.7862189835164], [-79.9426657148411, 32.7863371583621], [-79.942707938548, 32.7864109687183], [-79.9427549369491, 32.7864935834528], [-79.9428202507797, 32.7866089099779], [-79.9428783955211, 32.7867116318001], [-79.9430807917487, 32.7866590060983], [-79.9432350418773, 32.7866185051246], [-79.943421933136, 32.7865698681255], [-79.943799797897, 32.7864712523191], [-79.9437073636761, 32.7863111117686], [-79.9436476204511, 32.7862059686495], [-79.9431130605175, 32.7863455779101], [-79.9430688984238, 32.7862302611261], [-79.9430566581233, 32.7862333334482], [-79.9430392997696, 32.7861887735189], [-79.942918664556, 32.7858719627241]]], "type": "Polygon"}, "id": "446", "properties": {"OBJECTID": 3560, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7365.58203125, "Shape__Length": 436.067966613741, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9442753571916, 32.7865958818629, -79.9429461867121, 32.7875914856195], "geometry": {"coordinates": [[[-79.9435669603727, 32.7866752193331], [-79.9432803229605, 32.7867500762708], [-79.9432010136519, 32.7867707475889], [-79.9431231241234, 32.7867910785033], [-79.9429461867121, 32.7868372659952], [-79.9430543083395, 32.7870368031545], [-79.9431478126385, 32.7872081722877], [-79.9432783202846, 32.7874538664569], [-79.9433508915743, 32.7875914856195], [-79.9436023387665, 32.7875205867132], [-79.9436666941886, 32.7875102256609], [-79.9437555295566, 32.7874831214189], [-79.9438447420732, 32.7874559022283], [-79.9439296160833, 32.7874340258722], [-79.9440876622462, 32.7873945314623], [-79.9442753571916, 32.7873415983284], [-79.9442100614973, 32.787221214356], [-79.9441248156197, 32.7870640463757], [-79.9440782612753, 32.7869782173593], [-79.9440440179078, 32.7869150828446], [-79.9438708875113, 32.7865958818629], [-79.9435669603727, 32.7866752193331]]], "type": "Polygon"}, "id": "447", "properties": {"OBJECTID": 3561, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11671.611328125, "Shape__Length": 434.050223384533, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9431939694416, 32.7868782541619, -79.9409584348419, 32.7880307160854], "geometry": {"coordinates": [[[-79.9413173420438, 32.7880142639017], [-79.9415940815892, 32.7879364255746], [-79.9416303619622, 32.7880307160854], [-79.9417805176892, 32.7879927562336], [-79.9420636884888, 32.7879212465433], [-79.9421967057687, 32.787887693156], [-79.9422211889507, 32.7878812907746], [-79.9423052449105, 32.7878599423511], [-79.9423648176153, 32.7878447365558], [-79.9424186814958, 32.7878308557808], [-79.9424243934613, 32.7878294459864], [-79.9424831537223, 32.787814233111], [-79.9425557834936, 32.7877957924709], [-79.9426806459235, 32.7877637129218], [-79.9427467501873, 32.7877466749446], [-79.9428699793119, 32.7877151835154], [-79.9429271041191, 32.7877005587231], [-79.9431939694416, 32.7876319095674], [-79.9430937581705, 32.7874421518249], [-79.9430468525188, 32.7873518083912], [-79.9430277526246, 32.7873166819389], [-79.943005465458, 32.7872760294582], [-79.9429266891477, 32.7871302643095], [-79.9428574437044, 32.7870036534738], [-79.9427898098135, 32.7868782541619], [-79.9427065652823, 32.7869000418982], [-79.9424291018767, 32.7869707447261], [-79.9423736106072, 32.7869847818785], [-79.9422495657692, 32.7870165218669], [-79.9420896171053, 32.7870572311619], [-79.9419492518015, 32.7870931260678], [-79.9418235755532, 32.7871251960197], [-79.9416660752129, 32.7871652387422], [-79.9416489372997, 32.787169642054], [-79.941415505538, 32.7872320460296], [-79.9413151129384, 32.7872588384412], [-79.9412310448385, 32.7872813909272], [-79.9411461611346, 32.7873040210695], [-79.9410522980011, 32.7873290634008], [-79.9409584348419, 32.7873541913346], [-79.9410293005305, 32.7874811645019], [-79.9410412399587, 32.7875029145988], [-79.9411089009988, 32.7876258215632], [-79.9411661892183, 32.787731976409], [-79.941232999667, 32.7878580540114], [-79.9412870989188, 32.78795885316], [-79.9413173420438, 32.7880142639017]]], "type": "Polygon"}, "id": "448", "properties": {"OBJECTID": 3562, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22711.548828125, "Shape__Length": 646.468518658454, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9416303619622, 32.7879364255746, -79.9413173420438, 32.7880983143795], "geometry": {"coordinates": [[[-79.9413173420438, 32.7880142639017], [-79.9413618819139, 32.7880983143795], [-79.9416303619622, 32.7880307160854], [-79.9415940815892, 32.7879364255746], [-79.9413173420438, 32.7880142639017]]], "type": "Polygon"}, "id": "449", "properties": {"OBJECTID": 3563, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 401.63671875, "Shape__Length": 88.9903229341682, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9412024745225, 32.7863475084858, -79.9404639985378, 32.7868486010581], "geometry": {"coordinates": [[[-79.9410123870872, 32.7863475084858], [-79.9408720266891, 32.7863831433628], [-79.940504796454, 32.7864766034849], [-79.9404639985378, 32.7864866429204], [-79.940526164935, 32.7865929259869], [-79.9405277501648, 32.7865963748054], [-79.9406105747091, 32.786743377828], [-79.9406695001437, 32.7868486010581], [-79.9412024745225, 32.7867061542157], [-79.941146810681, 32.786600186604], [-79.9410123870872, 32.7863475084858]]], "type": "Polygon"}, "id": "450", "properties": {"OBJECTID": 3564, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3277.7109375, "Shape__Length": 231.124014134736, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9427199477703, 32.7860247035078, -79.9406695001437, 32.7872325668737], "geometry": {"coordinates": [[[-79.9406695001437, 32.7868486010581], [-79.9406750692924, 32.786858957257], [-79.940753934353, 32.7869970797959], [-79.9408136756625, 32.7871021395733], [-79.9408455368411, 32.7871583346072], [-79.9408869396775, 32.7872325668737], [-79.9412093383847, 32.7871463651669], [-79.941309729798, 32.7871195746367], [-79.9414068569164, 32.787093700002], [-79.9414925569094, 32.7870707331447], [-79.9415994798321, 32.787042108641], [-79.9416492593262, 32.7870294824997], [-79.9417276026537, 32.7870094585584], [-79.9418271636518, 32.7869840330171], [-79.9420173071466, 32.7869356003313], [-79.9421731768639, 32.7868958009887], [-79.9423233334947, 32.7868575852826], [-79.942429422642, 32.7868304976946], [-79.9426571064253, 32.7867724205366], [-79.9427199477703, 32.7867560424832], [-79.9425773567248, 32.7865056141577], [-79.942436362156, 32.7862576912364], [-79.9423041374131, 32.7860247035078], [-79.9420887279699, 32.786077129713], [-79.9419296079187, 32.7861166428974], [-79.9417990471698, 32.7861491855137], [-79.941622790168, 32.7861931043439], [-79.9414897825825, 32.7862261404131], [-79.9414669318572, 32.7862319570472], [-79.9414204180714, 32.7862436662428], [-79.9413322847434, 32.7862660095586], [-79.9411690728029, 32.7863075470462], [-79.9410123870872, 32.7863475084858], [-79.941146810681, 32.786600186604], [-79.9412024745225, 32.7867061542157], [-79.9406695001437, 32.7868486010581]]], "type": "Polygon"}, "id": "451", "properties": {"OBJECTID": 3565, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 19586.681640625, "Shape__Length": 641.495576785248, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9407345810252, 32.7865213170978, -79.9395805179112, 32.787458958078], "geometry": {"coordinates": [[[-79.9395805179112, 32.7867036330323], [-79.9400074072606, 32.787458958078], [-79.9407345810252, 32.7872696633288], [-79.9405322600824, 32.786913571321], [-79.9403841309639, 32.7866507237528], [-79.940310042252, 32.7865213170978], [-79.9397543365621, 32.7866596986987], [-79.9395805179112, 32.7867036330323]]], "type": "Polygon"}, "id": "452", "properties": {"OBJECTID": 3566, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9240.943359375, "Shape__Length": 389.979468701449, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9400074072606, 32.7867036330323, -79.9388395269011, 32.7876281080092], "geometry": {"coordinates": [[[-79.9395805179112, 32.7867036330323], [-79.9394271012966, 32.7867423338714], [-79.9388395269011, 32.786892117457], [-79.9390001533544, 32.7871304209387], [-79.9391520360769, 32.7873519004041], [-79.9392039615067, 32.7874305190342], [-79.9393087158674, 32.787580464604], [-79.9393447468626, 32.7876281080092], [-79.9397707279922, 32.7875205588269], [-79.9400074072606, 32.787458958078], [-79.9395805179112, 32.7867036330323]]], "type": "Polygon"}, "id": "453", "properties": {"OBJECTID": 3567, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8980.35546875, "Shape__Length": 386.534718834296, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.939195563654, 32.7869294737786, -79.9381842739352, 32.7878118177651], "geometry": {"coordinates": [[[-79.9381842739352, 32.7870593151318], [-79.9384511981539, 32.7874155622318], [-79.938533687063, 32.7875404246219], [-79.9385492391576, 32.7875656594392], [-79.9384432083525, 32.787598923567], [-79.9385856777735, 32.7878118177651], [-79.9386957136156, 32.7877830279903], [-79.9388188063782, 32.7877609500999], [-79.9389504209126, 32.7877277334699], [-79.939195563654, 32.7876658631786], [-79.939028921422, 32.7874237967314], [-79.9386935076731, 32.7869294737786], [-79.9383123969845, 32.787026756996], [-79.9381842739352, 32.7870593151318]]], "type": "Polygon"}, "id": "454", "properties": {"OBJECTID": 3568, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6699.54296875, "Shape__Length": 365.627952340721, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9385856777735, 32.7870593138534, -79.9377709374688, 32.78789329606], "geometry": {"coordinates": [[[-79.9377709374688, 32.787165000762], [-79.9378158850492, 32.7872763862258], [-79.9378109131964, 32.7872976913145], [-79.9378199262116, 32.7873289361028], [-79.9379196506304, 32.787433240598], [-79.9380613543441, 32.7873970399566], [-79.938146107288, 32.7875222442195], [-79.9382200432705, 32.7876314497749], [-79.9382560104156, 32.7876842081636], [-79.9382987822496, 32.7877460574762], [-79.9382340735541, 32.7877633612904], [-79.9382791850496, 32.78789329606], [-79.9383801148314, 32.7878644356608], [-79.9385856777735, 32.7878118177651], [-79.9384432083525, 32.787598923567], [-79.9385492391576, 32.7875656594392], [-79.938533687063, 32.7875404246219], [-79.9384511981539, 32.7874155622318], [-79.9381844383686, 32.7870593138534], [-79.9380452087893, 32.7871024649095], [-79.9378901679641, 32.7871441474386], [-79.9377709374688, 32.787165000762]]], "type": "Polygon"}, "id": "455", "properties": {"OBJECTID": 3569, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4342.38671875, "Shape__Length": 342.979680870144, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9382987822496, 32.787165000762, -79.9373562752759, 32.7880100103319], "geometry": {"coordinates": [[[-79.9377709374688, 32.787165000762], [-79.9373562752759, 32.7872787350003], [-79.9374596956434, 32.7874253770893], [-79.9375390906431, 32.7875303747106], [-79.9375910575826, 32.7876054727304], [-79.9376070394281, 32.7876291494224], [-79.9377485503349, 32.7878337015242], [-79.9378710114958, 32.7880100103319], [-79.9382791850496, 32.78789329606], [-79.9382340735541, 32.7877633612904], [-79.9382987822496, 32.7877460574762], [-79.9382200432705, 32.7876314497749], [-79.938146107288, 32.7875222442195], [-79.9380613543441, 32.7873970399566], [-79.9379196506304, 32.787433240598], [-79.9378199262116, 32.7873289361028], [-79.9378109131964, 32.7872976913145], [-79.9378158850492, 32.7872763862258], [-79.9377709374688, 32.787165000762]]], "type": "Polygon"}, "id": "456", "properties": {"OBJECTID": 3570, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5808.453125, "Shape__Length": 344.710137956972, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9395961154652, 32.7880586923916, -79.9391530986106, 32.7883082735758], "geometry": {"coordinates": [[[-79.9394969811072, 32.7880586923916], [-79.9392896955069, 32.788111527755], [-79.9392040022251, 32.7881337211726], [-79.9392338944694, 32.7882179033662], [-79.9391530986106, 32.7882387648134], [-79.9391847962791, 32.7883082735758], [-79.9393455735241, 32.7882666319044], [-79.9395961154652, 32.7882025746584], [-79.9395769311721, 32.7881744063875], [-79.9395505414979, 32.7881367253254], [-79.9394969811072, 32.7880586923916]]], "type": "Polygon"}, "id": "457", "properties": {"OBJECTID": 3604, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 875.08203125, "Shape__Length": 134.890407471481, "ZONE_BASE": "DR-1", "__folium_color": "#aec7e8"}, "type": "Feature"}, {"bbox": [-79.9393968083109, 32.7884673420926, -79.9392288784938, 32.7886273792009], "geometry": {"coordinates": [[[-79.9393968083109, 32.7886030323779], [-79.9393211686268, 32.7884673420926], [-79.9392288784938, 32.7884967786998], [-79.9393021392186, 32.7886273792009], [-79.9393968083109, 32.7886030323779]]], "type": "Polygon"}, "id": "458", "properties": {"OBJECTID": 3605, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 212.9765625, "Shape__Length": 60.9718936941577, "ZONE_BASE": "DR-2", "__folium_color": "#2ca02c"}, "type": "Feature"}, {"bbox": [-79.9397975138294, 32.7877860313506, -79.9379552145146, 32.7887776689807], "geometry": {"coordinates": [[[-79.9383684905057, 32.7887189431664], [-79.9383686555005, 32.7887181058908], [-79.9386483779525, 32.7886447262715], [-79.9387221336871, 32.7887776689807], [-79.9388442928275, 32.7887455572442], [-79.9391225928524, 32.7886736684679], [-79.9393021392186, 32.7886273792009], [-79.9392288784938, 32.7884967786998], [-79.9393211686268, 32.7884673420926], [-79.9393968083109, 32.7886030323779], [-79.9394612837865, 32.788586238165], [-79.9397975138294, 32.7885005027014], [-79.9397280225323, 32.7883944154976], [-79.9395961154652, 32.7882025746584], [-79.9393455735241, 32.7882666319044], [-79.9391847962791, 32.7883082735758], [-79.9391530986106, 32.7882387648134], [-79.9392338944694, 32.7882179033662], [-79.9392040022251, 32.7881337211726], [-79.9392896955069, 32.788111527755], [-79.9394969811072, 32.7880586923916], [-79.9394929722206, 32.7880539320238], [-79.9394553432115, 32.7880038723202], [-79.9393960813813, 32.7879263039657], [-79.9393576359058, 32.7878765807532], [-79.9392871422125, 32.7877860313506], [-79.9385763515626, 32.7879654962256], [-79.9379552145146, 32.7881315620327], [-79.9381071642287, 32.788347461045], [-79.9382967265442, 32.7886147942006], [-79.9383159167796, 32.7886423603015], [-79.9383678777345, 32.7887180594612], [-79.9383684905057, 32.7887189431664]]], "type": "Polygon"}, "id": "459", "properties": {"OBJECTID": 3606, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15073.494140625, "Shape__Length": 663.093274854552, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9387221336871, 32.7886447262715, -79.9383684905057, 32.7888470874355], "geometry": {"coordinates": [[[-79.9383684905057, 32.7887189431664], [-79.938457427784, 32.7888470874355], [-79.9387218669774, 32.7887777397159], [-79.9387221336871, 32.7887776689807], [-79.9386483779525, 32.7886447262715], [-79.9383686555005, 32.7887181058908], [-79.9383684905057, 32.7887189431664]]], "type": "Polygon"}, "id": "460", "properties": {"OBJECTID": 3607, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 611.732421875, "Shape__Length": 102.669173611396, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9384909858145, 32.7897683218645, -79.9367648523282, 32.7911814132924], "geometry": {"coordinates": [[[-79.9384909858145, 32.7907477505199], [-79.9384909036398, 32.7907476596233], [-79.9378513263434, 32.7897683218645], [-79.9371567855767, 32.7900931108485], [-79.9367648523282, 32.7902761096049], [-79.9369350069611, 32.7905338286328], [-79.9369382065444, 32.7905382357489], [-79.9369397979528, 32.790541171525], [-79.9369413935783, 32.7905437610327], [-79.9369429902385, 32.7905463532548], [-79.937012487164, 32.7906517549287], [-79.9370156752743, 32.7906572802198], [-79.937335952111, 32.7911476310268], [-79.9373583212746, 32.7911814132924], [-79.9375708915156, 32.7910962429693], [-79.9378185881237, 32.7909992637733], [-79.9384909858145, 32.7907477505199]]], "type": "Polygon"}, "id": "461", "properties": {"OBJECTID": 3608, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 19630.009765625, "Shape__Length": 561.777398056343, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9388364209677, 32.7896235395515, -79.9378513263434, 32.7907477505199], "geometry": {"coordinates": [[[-79.9378513263434, 32.7897683218645], [-79.9384909036398, 32.7907476596233], [-79.9384909858145, 32.7907477505199], [-79.9384912292849, 32.7907476597431], [-79.9388364209677, 32.7906286600914], [-79.9387542479599, 32.7905131057765], [-79.9386688416651, 32.7903852142005], [-79.9386036577099, 32.7902876093956], [-79.938562468002, 32.7902180163191], [-79.9385097524876, 32.7901400984893], [-79.9384683250285, 32.7900811125155], [-79.9383652497946, 32.7899298370346], [-79.9381607581661, 32.7896235395515], [-79.9378514659393, 32.7897682563405], [-79.9378513263434, 32.7897683218645]]], "type": "Polygon"}, "id": "462", "properties": {"OBJECTID": 3609, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6048.912109375, "Shape__Length": 381.841857553807, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9388237761185, 32.789410508768, -79.9381605288438, 32.7899298370346], "geometry": {"coordinates": [[[-79.9388237761185, 32.7897147526259], [-79.9388227304324, 32.7897132068281], [-79.9387587739695, 32.7896202238427], [-79.9387204190184, 32.7895630231872], [-79.9386165080876, 32.789410508768], [-79.9381605288438, 32.7896236962844], [-79.9383652497946, 32.7899298370346], [-79.938823214882, 32.7897148983647], [-79.9388237761185, 32.7897147526259]]], "type": "Polygon"}, "id": "463", "properties": {"OBJECTID": 3610, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2706.255859375, "Shape__Length": 209.466522571969, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9390202663473, 32.7897147526259, -79.9383652497946, 32.7902178719935], "geometry": {"coordinates": [[[-79.938823214882, 32.7897148983647], [-79.9383652497946, 32.7899298370346], [-79.9384683250285, 32.7900811125155], [-79.9385100099733, 32.7901399086323], [-79.9385627583414, 32.7902178465873], [-79.9385627761832, 32.7902178719935], [-79.9389283146881, 32.7900469621949], [-79.9390199624335, 32.7900041117291], [-79.9390202663473, 32.7900040548434], [-79.9390201509529, 32.7900038861012], [-79.9389705894413, 32.7899313860975], [-79.9389262144197, 32.7898662088686], [-79.938924229795, 32.7898632940585], [-79.9388237761185, 32.7897147526259], [-79.938823214882, 32.7897148983647]]], "type": "Polygon"}, "id": "464", "properties": {"OBJECTID": 3611, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2571.111328125, "Shape__Length": 204.863816215937, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9292519579913, 32.7899388619726, -79.9270991549486, 32.791418635037], "geometry": {"coordinates": [[[-79.9270991549486, 32.7907282557704], [-79.927099396732, 32.7907303880295], [-79.9272029627693, 32.7913065716586], [-79.9272772493456, 32.791418635037], [-79.9286360794149, 32.7908111992885], [-79.9291489024413, 32.7905908031484], [-79.9292519579913, 32.7905464355869], [-79.9290406582864, 32.7901959198895], [-79.9288818880145, 32.7899406945481], [-79.9288807499281, 32.7899388619726], [-79.9270991549486, 32.7907282557704]]], "type": "Polygon"}, "id": "465", "properties": {"OBJECTID": 3763, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21469.82421875, "Shape__Length": 657.396933715568, "ZONE_BASE": "HI", "__folium_color": "#9467bd"}, "type": "Feature"}, {"bbox": [-79.9288807499281, 32.7893547510459, -79.9270363830236, 32.7907282557704], "geometry": {"coordinates": [[[-79.9288807499281, 32.7899388619726], [-79.9285177609355, 32.7893547510459], [-79.9270363830236, 32.7900111282262], [-79.9270695134852, 32.7903154000284], [-79.9270850629906, 32.790572722242], [-79.9270898547962, 32.7906462107648], [-79.9270991549486, 32.7907282557704], [-79.9288807499281, 32.7899388619726]]], "type": "Polygon"}, "id": "466", "properties": {"OBJECTID": 3764, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 17892.173828125, "Shape__Length": 593.10104656398, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9285881284215, 32.7866141455657, -79.9266907847039, 32.7893769705928], "geometry": {"coordinates": [[[-79.9268904651449, 32.7887886676041], [-79.9268938575212, 32.7887882888266], [-79.9277536358316, 32.7887119714269], [-79.9277668049692, 32.7888213641973], [-79.9278336052032, 32.7893769705928], [-79.9283144088857, 32.7891654294398], [-79.9285744995149, 32.7890509907819], [-79.9285881284215, 32.7888547433188], [-79.9282035402855, 32.7866141455657], [-79.9275928955129, 32.7868332625025], [-79.9275327431312, 32.7868543865157], [-79.9275092581879, 32.7868626344612], [-79.9275092873849, 32.7868627781092], [-79.9273679104792, 32.7869133564218], [-79.9273548135047, 32.7869182332614], [-79.9272338725329, 32.7869618408289], [-79.9266907847039, 32.7871557901066], [-79.9267794988501, 32.7879219138467], [-79.9268904651449, 32.7887886676041]]], "type": "Polygon"}, "id": "467", "properties": {"OBJECTID": 3828, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 50569.0859375, "Shape__Length": 1004.4253172759, "ZONE_BASE": "MU-2", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9334065724611, 32.7852336477169, -79.9327589562117, 32.7857918057614], "geometry": {"coordinates": [[[-79.9327589562117, 32.7854167901557], [-79.9329440736615, 32.7857131284549], [-79.93297026047, 32.7857004705154], [-79.9330317874612, 32.7857918057614], [-79.9334065724611, 32.7856130507778], [-79.9331427415712, 32.7852336477169], [-79.9327589562117, 32.7854167901557]]], "type": "Polygon"}, "id": "468", "properties": {"OBJECTID": 3894, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2885.4140625, "Shape__Length": 216.867750945355, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9335200957879, 32.7854167901557, -79.9323987077543, 32.78608880474], "geometry": {"coordinates": [[[-79.9327414997996, 32.7860460282939], [-79.932977884177, 32.7859420883552], [-79.9330290128459, 32.7860188133545], [-79.9330761562048, 32.78608880474], [-79.9331882384875, 32.7860374693285], [-79.9331850424115, 32.7860327167407], [-79.9331346724754, 32.7859604643157], [-79.9335200957879, 32.7857766486549], [-79.9334065724611, 32.7856130507778], [-79.9330317874612, 32.7857918057614], [-79.93297026047, 32.7857004705154], [-79.9329440736615, 32.7857131284549], [-79.9327589562117, 32.7854167901557], [-79.9324136282126, 32.785581624247], [-79.9324103491772, 32.785583659936], [-79.9324070660062, 32.7855860337774], [-79.9324054117825, 32.7855882540917], [-79.9324037554745, 32.7855906448349], [-79.9324020959704, 32.7855932096045], [-79.9324004376087, 32.7855958555494], [-79.932399590547, 32.7855985969538], [-79.9323995558528, 32.785601433827], [-79.9323987077543, 32.7856042599949], [-79.9323994865525, 32.7856071003596], [-79.932399452928, 32.7856098497641], [-79.9324002327738, 32.7856126044635], [-79.9324018260264, 32.7856152823902], [-79.9324034224947, 32.785617871965], [-79.9327022157323, 32.7860651823871], [-79.9327414997996, 32.7860460282939]]], "type": "Polygon"}, "id": "469", "properties": {"OBJECTID": 3895, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4992.310546875, "Shape__Length": 384.636077110615, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9332519198477, 32.7859420883552, -79.9323763972513, 32.7866939563069], "geometry": {"coordinates": [[[-79.9324009355715, 32.7866002698542], [-79.932452758975, 32.7865752154344], [-79.932533449308, 32.7866939563069], [-79.9326112045801, 32.7866553813877], [-79.9326161136655, 32.7866531064981], [-79.9326963114263, 32.7866146358039], [-79.9327274108252, 32.7865996155719], [-79.9327814203299, 32.7865738027015], [-79.9328403431111, 32.7865452811624], [-79.9328657146294, 32.7865329624354], [-79.9329508212595, 32.7864922148715], [-79.9330465709866, 32.7864459758989], [-79.9332519198477, 32.7863519022955], [-79.9331943986285, 32.7862656713096], [-79.9331320828711, 32.7861723551481], [-79.9330761562048, 32.78608880474], [-79.9330290128459, 32.7860188133545], [-79.932977884177, 32.7859420883552], [-79.9327414997996, 32.7860460282939], [-79.932792629402, 32.7861226650224], [-79.9328261759708, 32.7861736408287], [-79.9328285869113, 32.7861759813809], [-79.9328309978925, 32.7861784932823], [-79.9328342202348, 32.7861810961315], [-79.9328374509019, 32.7861829306891], [-79.9328406900208, 32.7861842485683], [-79.9328439312359, 32.7861853076387], [-79.9328471745474, 32.7861861079005], [-79.9328504241939, 32.7861865646178], [-79.9328536758815, 32.7861867670352], [-79.9328569307769, 32.7861867070461], [-79.9328601898282, 32.786186307101], [-79.9328634509756, 32.7861856483473], [-79.9328667184579, 32.7861846460491], [-79.932869986989, 32.7861834706075], [-79.9328839007149, 32.7861765495305], [-79.9329398251574, 32.7862603588357], [-79.9329370845057, 32.7862849036505], [-79.9328413307083, 32.7863314851977], [-79.932757033439, 32.7863725833437], [-79.9326719226253, 32.7864135877588], [-79.9325876251969, 32.7864546857884], [-79.9325025142216, 32.7864957775641], [-79.9323763972513, 32.786562263383], [-79.9324009355715, 32.7866002698542]]], "type": "Polygon"}, "id": "470", "properties": {"OBJECTID": 3896, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3333.83203125, "Shape__Length": 329.469278739585, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9341301021118, 32.7857766486549, -79.9317983008649, 32.7876042527553], "geometry": {"coordinates": [[[-79.9324009355715, 32.7866002698542], [-79.9323763972513, 32.786562263383], [-79.932263192333, 32.7866166905823], [-79.93214475107, 32.7866639997755], [-79.9317983008649, 32.7868096719194], [-79.9319381520871, 32.7875390597718], [-79.9319811443377, 32.7876042527553], [-79.9327306093925, 32.7872694930463], [-79.9328549373652, 32.7872149144214], [-79.932973537348, 32.7871629470339], [-79.9330905039276, 32.7871114838445], [-79.9331943836234, 32.7870657458208], [-79.9332982632214, 32.7870200068074], [-79.9341301021118, 32.7866548822506], [-79.933914237287, 32.786344359811], [-79.933758343192, 32.7861194063893], [-79.9335704649125, 32.7858489847816], [-79.9335200957879, 32.7857766486549], [-79.9331346724754, 32.7859604643157], [-79.9331850424115, 32.7860327167407], [-79.9331882384875, 32.7860374693285], [-79.9330761562048, 32.78608880474], [-79.9331320828711, 32.7861723551481], [-79.9331943986285, 32.7862656713096], [-79.9332519198477, 32.7863519022955], [-79.9330465709866, 32.7864459758989], [-79.9329508212595, 32.7864922148715], [-79.9328657146294, 32.7865329624354], [-79.9328403431111, 32.7865452811624], [-79.9327814203299, 32.7865738027015], [-79.9327274108252, 32.7865996155719], [-79.9326963114263, 32.7866146358039], [-79.9326161136655, 32.7866531064981], [-79.9326112045801, 32.7866553813877], [-79.932533449308, 32.7866939563069], [-79.932452758975, 32.7865752154344], [-79.9324009355715, 32.7866002698542]]], "type": "Polygon"}, "id": "471", "properties": {"OBJECTID": 3897, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 25616.6015625, "Shape__Length": 822.554393276937, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9327738998877, 32.7856144751023, -79.9316435805589, 32.7866998967485], "geometry": {"coordinates": [[[-79.9317559669888, 32.7865979795358], [-79.9317754662749, 32.7866998967485], [-79.9323188543181, 32.7864785650453], [-79.9323252453499, 32.7864881568335], [-79.9324348976584, 32.7864360289239], [-79.9324277026022, 32.786425658154], [-79.9325201861164, 32.7863805084657], [-79.9326044866804, 32.7863391507818], [-79.9326895984603, 32.7862978893995], [-79.9327738998877, 32.7862565352155], [-79.9327484206386, 32.7862112157413], [-79.9327236960967, 32.7861707105333], [-79.932667005741, 32.786083114851], [-79.9326612737653, 32.7860861572405], [-79.9323456934273, 32.7856144751023], [-79.9321754864957, 32.7856955391917], [-79.9319545405687, 32.7858009867554], [-79.931887439388, 32.7858329545252], [-79.9317344149496, 32.7859059243366], [-79.9316435805589, 32.7859493671254], [-79.9317559669888, 32.7865979795358]]], "type": "Polygon"}, "id": "472", "properties": {"OBJECTID": 3898, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10530.265625, "Shape__Length": 417.462526577248, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9317960186081, 32.7860800198107, -79.9299406295699, 32.7883280489011], "geometry": {"coordinates": [[[-79.9302492705319, 32.7879175591548], [-79.9302938245724, 32.7883280489011], [-79.9313416492276, 32.7878716562448], [-79.9313636700285, 32.7878615126426], [-79.9313786655098, 32.7878859156424], [-79.9315086201519, 32.7878289408307], [-79.9315006267502, 32.7877982248208], [-79.9317960186081, 32.7876692146163], [-79.9316496474283, 32.7869075281036], [-79.9316576767932, 32.7869064276347], [-79.9315794760343, 32.7864994837839], [-79.9316203809496, 32.7864939610246], [-79.9315439084074, 32.786089789169], [-79.9314578702949, 32.7861325612597], [-79.9314212635676, 32.7860800198107], [-79.9313090885694, 32.7861357853281], [-79.9313456952526, 32.7861883268109], [-79.9311604878426, 32.7862789126394], [-79.9311413558967, 32.7862480325621], [-79.9308667122343, 32.7863703215975], [-79.9308854600912, 32.7864005643715], [-79.9306453566587, 32.7865067602664], [-79.9306640280188, 32.7865368815606], [-79.9303940489925, 32.7866551989554], [-79.9303748575683, 32.7866242217388], [-79.9299406295699, 32.7868162755125], [-79.9301116622546, 32.7870818785677], [-79.9302492705319, 32.7879175591548]]], "type": "Polygon"}, "id": "473", "properties": {"OBJECTID": 3899, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 36891.26953125, "Shape__Length": 855.250718865476, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9301421102716, 32.7868731765263, -79.9296094937277, 32.7886346426057], "geometry": {"coordinates": [[[-79.9296230746557, 32.7868966866694], [-79.929625396026, 32.7869065009216], [-79.929677463788, 32.7869063549185], [-79.929726035376, 32.7871915391746], [-79.9297064838636, 32.7871936849541], [-79.9297125471485, 32.7872299891135], [-79.92972389399, 32.7872998400097], [-79.929717374697, 32.7873006406251], [-79.9297309850359, 32.7873850290845], [-79.9297635720691, 32.7873813623023], [-79.9297946011718, 32.7875711303003], [-79.9297991387076, 32.7875991720123], [-79.9296801946073, 32.787612647467], [-79.929732053106, 32.787895111696], [-79.9297412155481, 32.7879440686774], [-79.9297656175159, 32.7880771704451], [-79.9297709790539, 32.7881043617211], [-79.9297900195581, 32.7882102722099], [-79.929822606919, 32.7882066036082], [-79.929841680153, 32.7883098512526], [-79.9296094937277, 32.7883360836676], [-79.9296384763285, 32.7884936175141], [-79.9296560056355, 32.7885900671687], [-79.9296652218324, 32.7886346426057], [-79.929883625643, 32.7885382835677], [-79.9301421102716, 32.7884242370061], [-79.9301059687281, 32.7882532366895], [-79.9300735696825, 32.7880424115297], [-79.9300629969528, 32.7879757482106], [-79.9300524263658, 32.7879088242789], [-79.9299898798025, 32.7875026583183], [-79.9299369033628, 32.7871786088799], [-79.929743768981, 32.7868731765263], [-79.9296948128842, 32.7868847742421], [-79.9296230746557, 32.7868966866694]]], "type": "Polygon"}, "id": "474", "properties": {"OBJECTID": 3900, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6887.7734375, "Shape__Length": 569.558074695784, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.929841680153, 32.7868966866694, -79.9292491591344, 32.7886854394696], "geometry": {"coordinates": [[[-79.9296230746557, 32.7868966866694], [-79.9296059551345, 32.7868996301906], [-79.9292491591344, 32.7869372259732], [-79.9292999569244, 32.7872396946514], [-79.9293068061331, 32.7872782377556], [-79.9293317889888, 32.7874302399685], [-79.9293673545368, 32.7876480525104], [-79.9294044166015, 32.7878765279276], [-79.9294143238883, 32.7879311594951], [-79.9294508054957, 32.7881405604912], [-79.9294864748943, 32.788349952569], [-79.9294872378196, 32.7883540815392], [-79.9295162728547, 32.7885074962864], [-79.9295345786602, 32.7886069576729], [-79.9295507010835, 32.7886854394696], [-79.9296652218324, 32.7886346426057], [-79.9296560056355, 32.7885900671687], [-79.9296384763285, 32.7884936175141], [-79.9296094937277, 32.7883360836676], [-79.929841680153, 32.7883098512526], [-79.929822606919, 32.7882066036082], [-79.9297900195581, 32.7882102722099], [-79.9297709790539, 32.7881043617211], [-79.9297656175159, 32.7880771704451], [-79.9297412155481, 32.7879440686774], [-79.929732053106, 32.787895111696], [-79.9296801946073, 32.787612647467], [-79.9297991387076, 32.7875991720123], [-79.9297946011718, 32.7875711303003], [-79.9297635720691, 32.7873813623023], [-79.9297309850359, 32.7873850290845], [-79.929717374697, 32.7873006406251], [-79.92972389399, 32.7872998400097], [-79.9297125471485, 32.7872299891135], [-79.9297064838636, 32.7871936849541], [-79.929726035376, 32.7871915391746], [-79.929677463788, 32.7869063549185], [-79.929625396026, 32.7869065009216], [-79.9296230746557, 32.7868966866694]]], "type": "Polygon"}, "id": "475", "properties": {"OBJECTID": 3901, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8472.224609375, "Shape__Length": 573.773195248112, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9357463636131, 32.7842794799567, -79.9333293642295, 32.7860090670172], "geometry": {"coordinates": [[[-79.9348274120711, 32.7844401062425], [-79.93469323581, 32.7845022459163], [-79.9345476041018, 32.7845696975979], [-79.9344044303404, 32.7846357952179], [-79.9343217948198, 32.7846742466686], [-79.9333293642295, 32.7851342684546], [-79.9339296436405, 32.7860090670172], [-79.9343077182059, 32.7858273339262], [-79.9347348937627, 32.7856217985064], [-79.9350057673325, 32.7854911864891], [-79.9351219705313, 32.7854354157006], [-79.9352463571977, 32.7853755107649], [-79.935295460482, 32.7853517129928], [-79.9357463636131, 32.7851346161374], [-79.9356872421229, 32.7850461403853], [-79.9356440995031, 32.7849815119759], [-79.9355929660087, 32.7849049575957], [-79.935543432219, 32.784830741143], [-79.9355018873675, 32.7847685317803], [-79.9354699289297, 32.7847207522191], [-79.9354259732358, 32.7846561130501], [-79.9353876246941, 32.7845986561783], [-79.9353620576163, 32.7845604673139], [-79.9353261065276, 32.7845065529539], [-79.9353005395368, 32.7844683613718], [-79.9352837653079, 32.7844428747107], [-79.9352542013709, 32.7843989793955], [-79.9351734931109, 32.7842794799567], [-79.9348274120711, 32.7844401062425]]], "type": "Polygon"}, "id": "476", "properties": {"OBJECTID": 3902, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 30821.59765625, "Shape__Length": 731.139168774492, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9354472096525, 32.7855144082307, -79.9339622951927, 32.7865715516853], "geometry": {"coordinates": [[[-79.9350788504979, 32.7855144082307], [-79.9350295692832, 32.7855427144493], [-79.9349306177622, 32.7855903447639], [-79.9348316661332, 32.7856379749987], [-79.93479772321, 32.7856543129318], [-79.934451788101, 32.7858212848195], [-79.9343069422804, 32.7858908930663], [-79.9339622951927, 32.7860564490075], [-79.9341601380777, 32.7863322262426], [-79.9343201714073, 32.7865715516853], [-79.9346837593787, 32.7864120657682], [-79.9348228046696, 32.7863511688018], [-79.9349495850454, 32.7862953207048], [-79.9350379212316, 32.786256490063], [-79.9350968137132, 32.7862304607587], [-79.9351982341958, 32.7861860731466], [-79.9353042635317, 32.7861420384972], [-79.9354472096525, 32.7860589463298], [-79.9352134935777, 32.785713449217], [-79.9350788504979, 32.7855144082307]]], "type": "Polygon"}, "id": "477", "properties": {"OBJECTID": 3903, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11655.59375, "Shape__Length": 448.276074374903, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9361719328981, 32.7853078879749, -79.9350788504979, 32.7860589463298], "geometry": {"coordinates": [[[-79.9350788504979, 32.7855144082307], [-79.9352134935777, 32.785713449217], [-79.9354472096525, 32.7860589463298], [-79.9361719328981, 32.7857405118468], [-79.9360101611379, 32.7855046909186], [-79.9359556608284, 32.7854293591585], [-79.9358683287158, 32.7853078879749], [-79.9354511680313, 32.7855069896708], [-79.9353602832113, 32.7853838765261], [-79.9353599631971, 32.7853836789448], [-79.9353601506964, 32.7853838870968], [-79.9352840599917, 32.7854153798748], [-79.9352499287966, 32.7854318497647], [-79.9350788504979, 32.7855144082307]]], "type": "Polygon"}, "id": "478", "properties": {"OBJECTID": 3904, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6591.171875, "Shape__Length": 348.939058837802, "ZONE_BASE": "UC", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9358683287158, 32.7851811832143, -79.9353599631971, 32.7855069896708], "geometry": {"coordinates": [[[-79.9358683287158, 32.7853078879749], [-79.9357813926794, 32.7851811832143], [-79.9353599631971, 32.7853836789448], [-79.9354511680313, 32.7855069896708], [-79.9358683287158, 32.7853078879749]]], "type": "Polygon"}, "id": "479", "properties": {"OBJECTID": 3905, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1036.23046875, "Shape__Length": 146.03018651342, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9372101089389, 32.7859489002727, -79.9344501929626, 32.7881751080404], "geometry": {"coordinates": [[[-79.9362083780556, 32.7859489002727], [-79.9362051200379, 32.7859491298688], [-79.9362010496924, 32.7859494353703], [-79.9361977895539, 32.7859498390021], [-79.9361945273729, 32.7859504978354], [-79.9361912652265, 32.7859512414416], [-79.9361871822184, 32.7859524107911], [-79.9361830982463, 32.7859538344498], [-79.9361798277009, 32.7859550920289], [-79.9344776409802, 32.7867096884404], [-79.9344743588357, 32.7867119793775], [-79.9344710746107, 32.7867144407433], [-79.9344677872155, 32.7867171618102], [-79.934464499864, 32.7867199667481], [-79.9344620206772, 32.7867230375514], [-79.9344595415121, 32.7867261940292], [-79.9344578737035, 32.7867295298241], [-79.9344553924576, 32.7867329442088], [-79.9344537204221, 32.7867365387937], [-79.9344528629462, 32.7867401377674], [-79.9344511909433, 32.7867438171251], [-79.934451144813, 32.7867475963176], [-79.9344502852234, 32.7867513684254], [-79.934450239093, 32.7867551476179], [-79.9344501929626, 32.7867589268104], [-79.9344509602915, 32.7867627130877], [-79.9344517286881, 32.7867664118962], [-79.9344533105221, 32.786770119593], [-79.9344540799206, 32.7867737363431], [-79.9344564773276, 32.7867772779905], [-79.9344580633446, 32.7867806430259], [-79.934460463911, 32.7867839258737], [-79.9351802693966, 32.7877988836067], [-79.9354274445526, 32.7881751080404], [-79.9366634698322, 32.7876291553657], [-79.9372101089389, 32.7873876985517], [-79.9369592983233, 32.7870158615978], [-79.9369587821238, 32.7870135375911], [-79.9362666106022, 32.7859768945497], [-79.9362642111016, 32.7859736081398], [-79.9362618073581, 32.7859705823236], [-79.9362594015362, 32.7859676394581], [-79.9362561822879, 32.7859648626725], [-79.9362529598625, 32.7859622590117], [-79.9362489197971, 32.7859599043628], [-79.9362456932202, 32.7859577290376], [-79.9362416479357, 32.7859558027151], [-79.9362376026767, 32.7859540495451], [-79.9362335521291, 32.7859525551559], [-79.9362294995394, 32.7859513159683], [-79.9362262551727, 32.7859506005598], [-79.9362230076052, 32.7859499726015], [-79.93621894771, 32.7859494205487], [-79.9362156959778, 32.7859491343498], [-79.9362124442473, 32.7859489356287], [-79.9362083780556, 32.7859489002727]]], "type": "Polygon"}, "id": "480", "properties": {"OBJECTID": 3906, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 49790.64453125, "Shape__Length": 888.338434772936, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9346027287638, 32.7868215456548, -79.933211257575, 32.787785766168], "geometry": {"coordinates": [[[-79.933211257575, 32.7872721203159], [-79.9333990769964, 32.7875475192194], [-79.9334833110666, 32.787511661539], [-79.9336703351791, 32.787785766168], [-79.9342870230953, 32.7875182357839], [-79.9346027287638, 32.7873811403903], [-79.9344061329237, 32.7870912330451], [-79.9342942551988, 32.7869258439535], [-79.9342231228717, 32.7868215456548], [-79.9338664739073, 32.7869805297581], [-79.933211257575, 32.7872721203159]]], "type": "Polygon"}, "id": "481", "properties": {"OBJECTID": 3907, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10334.13671875, "Shape__Length": 423.962336383745, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9330204336651, 32.7874387625615, -79.9318663224844, 32.7880994212162], "geometry": {"coordinates": [[[-79.9318663224844, 32.7878739338026], [-79.9320248281965, 32.7879935807206], [-79.9321650444213, 32.7880994212162], [-79.9323227069576, 32.788025848285], [-79.9323343500558, 32.7880204153212], [-79.9324290582465, 32.7879762202969], [-79.9324388522754, 32.7879716495772], [-79.9324749259099, 32.7879553624384], [-79.9325207337162, 32.7879362545048], [-79.932675448071, 32.7878709586079], [-79.932692646297, 32.7879035864671], [-79.9328083875792, 32.7878548075307], [-79.9328242023981, 32.7878480292966], [-79.932918779997, 32.7878074942135], [-79.9328895847531, 32.7877641850143], [-79.9329394677704, 32.78774314286], [-79.9329623698102, 32.7877332086693], [-79.9330204336651, 32.787708458236], [-79.9328366131235, 32.7874387625615], [-79.9327564451175, 32.7874747427454], [-79.932623608046, 32.7875356509785], [-79.932247008377, 32.7877038805555], [-79.9318663224844, 32.7878739338026]]], "type": "Polygon"}, "id": "482", "properties": {"OBJECTID": 3908, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4944.693359375, "Shape__Length": 328.508203373716, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9336703351791, 32.7872721203159, -79.9321650444213, 32.7883146417739], "geometry": {"coordinates": [[[-79.9325207337162, 32.7879362545048], [-79.9324749259099, 32.7879553624384], [-79.9324290582465, 32.7879762202969], [-79.9323343500558, 32.7880204153212], [-79.9323227069576, 32.788025848285], [-79.9321650444213, 32.7880994212162], [-79.9322409652748, 32.7881567281617], [-79.9324501675544, 32.7883146417739], [-79.9326294704569, 32.7882381206818], [-79.9326963004522, 32.7882095996409], [-79.9328565625268, 32.7881427484413], [-79.9329748115239, 32.788088328588], [-79.9331493874952, 32.7880076576548], [-79.9332221726631, 32.7879766811544], [-79.9332949577793, 32.7879457046109], [-79.9333677428439, 32.7879147280241], [-79.93351331285, 32.7878528594939], [-79.9335860977596, 32.7878218827777], [-79.933644976001, 32.7877970543746], [-79.9336703351791, 32.787785766168], [-79.9334833110666, 32.787511661539], [-79.9333990769964, 32.7875475192194], [-79.933211257575, 32.7872721203159], [-79.9328366131235, 32.7874387625615], [-79.9330204336651, 32.787708458236], [-79.9329623698102, 32.7877332086693], [-79.9329394677704, 32.78774314286], [-79.9328895847531, 32.7877641850143], [-79.932918779997, 32.7878074942135], [-79.9328242023981, 32.7878480292966], [-79.9328083875792, 32.7878548075307], [-79.932692646297, 32.7879035864671], [-79.932675448071, 32.7878709586079], [-79.9325207337162, 32.7879362545048]]], "type": "Polygon"}, "id": "483", "properties": {"OBJECTID": 3909, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8418.853515625, "Shape__Length": 498.459769715286, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9350323642186, 32.7874897281831, -79.9339900556966, 32.7883503871298], "geometry": {"coordinates": [[[-79.9341596664748, 32.7880674023538], [-79.9343207960391, 32.7883503871298], [-79.9350323642186, 32.7880414157173], [-79.9348582355471, 32.7877769578792], [-79.9346729960965, 32.7874897281831], [-79.9342853159804, 32.7876580668193], [-79.9339900556966, 32.7877863175869], [-79.9341596664748, 32.7880674023538]]], "type": "Polygon"}, "id": "484", "properties": {"OBJECTID": 3910, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7246.421875, "Shape__Length": 341.290666725278, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9343207960391, 32.7880674023538, -79.933324929694, 32.788714599895], "geometry": {"coordinates": [[[-79.9341596664748, 32.7880674023538], [-79.9338122352901, 32.7882210123623], [-79.9337901886007, 32.7881846908765], [-79.9335593761153, 32.7882846516179], [-79.9335805927895, 32.7883196050408], [-79.9334534444741, 32.7883746693707], [-79.9334476018889, 32.7883643844017], [-79.933324929694, 32.7884223689863], [-79.9334891953073, 32.788714599895], [-79.9343207960391, 32.7883503871298], [-79.9341596664748, 32.7880674023538]]], "type": "Polygon"}, "id": "485", "properties": {"OBJECTID": 3911, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4505.638671875, "Shape__Length": 305.020130831805, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9341596664748, 32.7877863175869, -79.9325547677599, 32.7888545634681], "geometry": {"coordinates": [[[-79.9339900556966, 32.7877863175869], [-79.933711155179, 32.7879073278033], [-79.9334093833137, 32.7880356944914], [-79.9332943209597, 32.7880945380943], [-79.9331503482311, 32.7881576666361], [-79.933065905151, 32.7881816486986], [-79.9329268724975, 32.7882410837536], [-79.9328540880517, 32.7882719744139], [-79.9327755777428, 32.7883053916311], [-79.9325547677599, 32.7883993296055], [-79.9326466384648, 32.7884709126388], [-79.9326563140653, 32.7884780394874], [-79.9327489889309, 32.7885504050377], [-79.932811050092, 32.7885981052109], [-79.9328851927319, 32.7886557885402], [-79.9329593375625, 32.7887133879724], [-79.9331414776369, 32.7888545634681], [-79.9332829630722, 32.7887941196465], [-79.9334891953073, 32.788714599895], [-79.933324929694, 32.7884223689863], [-79.9334489177861, 32.7883667000643], [-79.9334534444741, 32.7883746693707], [-79.9335805927895, 32.7883196050408], [-79.9335593761153, 32.7882846516179], [-79.9337901886007, 32.7881846908765], [-79.9338122352901, 32.7882210123623], [-79.9341596664748, 32.7880674023538], [-79.9339900556966, 32.7877863175869]]], "type": "Polygon"}, "id": "486", "properties": {"OBJECTID": 3912, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9124.439453125, "Shape__Length": 511.635746817945, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9353023335891, 32.7881737791612, -79.9344699945308, 32.7886094222474], "geometry": {"coordinates": [[[-79.9344699945308, 32.7884558883521], [-79.9349668355839, 32.7886094222474], [-79.9353023335891, 32.7884505944082], [-79.9351194048868, 32.7881737791612], [-79.9344699945308, 32.7884558883521]]], "type": "Polygon"}, "id": "487", "properties": {"OBJECTID": 3913, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2666.53125, "Shape__Length": 225.093166142509, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9357001231567, 32.7885705972569, -79.935030364939, 32.7892787039693], "geometry": {"coordinates": [[[-79.935030364939, 32.7887369366346], [-79.9351102468702, 32.7888578917762], [-79.9351885229835, 32.7889770301193], [-79.9350665956343, 32.7890348101006], [-79.9351520653721, 32.7891645769939], [-79.9352271476007, 32.7892787039693], [-79.9357001231567, 32.7890546691912], [-79.9356601926876, 32.7889933315623], [-79.9354564936245, 32.7886849820007], [-79.9353814126168, 32.7885705972569], [-79.935030364939, 32.7887369366346]]], "type": "Polygon"}, "id": "488", "properties": {"OBJECTID": 3914, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3861.029296875, "Shape__Length": 267.389742041494, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9352271476007, 32.7884558883521, -79.9332816758173, 32.7897948260384], "geometry": {"coordinates": [[[-79.9344699945308, 32.7884558883521], [-79.9342745190751, 32.7885406024221], [-79.9341297525345, 32.7886033365136], [-79.9332816758173, 32.7889642001449], [-79.9334549547254, 32.7890982518636], [-79.9337966982085, 32.7893610801486], [-79.9338521865441, 32.7894141353297], [-79.9338706742935, 32.7894325063083], [-79.9339164859015, 32.7894785167657], [-79.9339573096178, 32.7895332486917], [-79.9339973545217, 32.7895851384451], [-79.9340237044772, 32.7896259127781], [-79.9340524823627, 32.7896678238299], [-79.9340588727509, 32.7896774155215], [-79.934136355696, 32.7897948260384], [-79.9342599190397, 32.7897364596907], [-79.9344047596874, 32.7896678010038], [-79.9344759503022, 32.7896342306048], [-79.9345528687656, 32.7895979648555], [-79.9346126054823, 32.7895697074542], [-79.9348327284955, 32.7894654517801], [-79.9349399289845, 32.7894144158151], [-79.9350340308483, 32.7893700502557], [-79.9351305898201, 32.7893244199925], [-79.9352271476007, 32.7892787039693], [-79.9351520653721, 32.7891645769939], [-79.9350665956343, 32.7890348101006], [-79.9351885229835, 32.7889770301193], [-79.9351102468702, 32.7888578917762], [-79.935030364939, 32.7887369366346], [-79.934908438888, 32.7887947164661], [-79.934779970205, 32.7888551907165], [-79.9346154923557, 32.7889331300734], [-79.9345132067072, 32.7889814588516], [-79.9344341295685, 32.7888613679678], [-79.9349668355839, 32.7886094222474], [-79.9344699945308, 32.7884558883521]]], "type": "Polygon"}, "id": "489", "properties": {"OBJECTID": 3915, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20202.27734375, "Shape__Length": 734.584694879379, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9377141110995, 32.7874824587541, -79.9354575198816, 32.7889607290849], "geometry": {"coordinates": [[[-79.9368349949043, 32.7876801053915], [-79.9365266191696, 32.7878168418707], [-79.9361086333951, 32.7880021028146], [-79.9358607852837, 32.7881119607709], [-79.9354575198816, 32.7882907316852], [-79.9356564324842, 32.7885913090632], [-79.9356699997569, 32.7886129034113], [-79.9358992533552, 32.7889607290849], [-79.9363689464, 32.7887386400338], [-79.9366070527793, 32.7886271488096], [-79.9367862451009, 32.7885432373581], [-79.9370562620986, 32.7884166453726], [-79.9372387252845, 32.7883313845815], [-79.9377141110995, 32.7881089953891], [-79.937664535027, 32.7880379566015], [-79.9376117699787, 32.7879615629586], [-79.9375558055023, 32.7878806747167], [-79.9375062328354, 32.7878092895891], [-79.9374454650926, 32.7877220043466], [-79.9374222801991, 32.7876885586166], [-79.9373887167421, 32.7876387031222], [-79.9373319538673, 32.7875566038921], [-79.9372807891301, 32.7874824587541], [-79.9368349949043, 32.7876801053915]]], "type": "Polygon"}, "id": "490", "properties": {"OBJECTID": 3916, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22705.25390625, "Shape__Length": 658.238526846253, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9384977610055, 32.7882747593471, -79.9374708625325, 32.7894995518468], "geometry": {"coordinates": [[[-79.9374708625325, 32.7884426654362], [-79.9376292180511, 32.7886670375197], [-79.9375064802823, 32.7887247299068], [-79.9375952271209, 32.7888528037185], [-79.9376017725854, 32.7888497681608], [-79.9376490110514, 32.7889123698451], [-79.9377042652487, 32.7889849198183], [-79.9376911701252, 32.7889913345075], [-79.9376428821019, 32.7890149671889], [-79.9376404866112, 32.789011252469], [-79.9376134630003, 32.7890257069189], [-79.9377158011796, 32.7891734838296], [-79.937701075926, 32.7891801422916], [-79.937736267094, 32.7892299261597], [-79.93792254802, 32.7894995518468], [-79.9384977610055, 32.7892305209781], [-79.9383106674587, 32.7889607195882], [-79.9382451081012, 32.7888658339787], [-79.9381795510654, 32.7887709447466], [-79.9381291733059, 32.7886987800129], [-79.9381155897179, 32.7886785638062], [-79.9380787977539, 32.7886266161794], [-79.9380220105574, 32.7885463225361], [-79.9379884161525, 32.7884990434836], [-79.9379396217438, 32.7884305899419], [-79.9379068398714, 32.7883834026927], [-79.9378796384229, 32.7883456285423], [-79.9378300600185, 32.7882747593471], [-79.937545318401, 32.7884080096683], [-79.9374708625325, 32.7884426654362]]], "type": "Polygon"}, "id": "491", "properties": {"OBJECTID": 3917, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9254.21875, "Shape__Length": 443.177371147958, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.93792254802, 32.7884426654362, -79.9360102887116, 32.7900960423081], "geometry": {"coordinates": [[[-79.9374708625325, 32.7884426654362], [-79.9372802154572, 32.788531978682], [-79.9372515785629, 32.7885453034665], [-79.9365585368437, 32.7888698251049], [-79.9364799865663, 32.7889065098941], [-79.9364358012574, 32.7889272558161], [-79.9363425140635, 32.7889716295237], [-79.9360102887116, 32.7891288554603], [-79.9363593636117, 32.7896587180036], [-79.9364240608786, 32.7897572919721], [-79.9364392492697, 32.7897794991458], [-79.9364640079448, 32.7898173398677], [-79.9365015449903, 32.789874959801], [-79.9365518623937, 32.7899518494139], [-79.9366469224095, 32.7900960423081], [-79.93693985283, 32.7899589151034], [-79.9370740421597, 32.7898962571341], [-79.9371967766135, 32.7898389962057], [-79.93792254802, 32.7894995518468], [-79.937736267094, 32.7892299261597], [-79.937701075926, 32.7891801422916], [-79.9377158011796, 32.7891734838296], [-79.9376134630003, 32.7890257069189], [-79.9376404866112, 32.789011252469], [-79.9376428821019, 32.7890149671889], [-79.9376911701252, 32.7889913345075], [-79.9377042652487, 32.7889849198183], [-79.9376490110514, 32.7889123698451], [-79.9376017725854, 32.7888497681608], [-79.9375952271209, 32.7888528037185], [-79.9375064802823, 32.7887247299068], [-79.9376292180511, 32.7886670375197], [-79.9374708625325, 32.7884426654362]]], "type": "Polygon"}, "id": "492", "properties": {"OBJECTID": 3918, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 25069.015625, "Shape__Length": 672.50029275034, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9364560625922, 32.7892229055632, -79.9344326145805, 32.7906039912162], "geometry": {"coordinates": [[[-79.9344326145805, 32.7898754280517], [-79.9345820017906, 32.790100843426], [-79.9346630111824, 32.7900627193703], [-79.9347404942036, 32.79018021788], [-79.9348387687274, 32.7903273621434], [-79.9349770789603, 32.7902606191344], [-79.9351336587107, 32.7904968336972], [-79.9352768363084, 32.7904311635094], [-79.9354224709304, 32.7903642276152], [-79.9355822631138, 32.7906039912162], [-79.9364560625922, 32.790202362005], [-79.9362395975055, 32.7898729405075], [-79.9358114451827, 32.7892229055632], [-79.9347263821896, 32.7897365954191], [-79.9346298236072, 32.7897822262764], [-79.9345136227608, 32.7898373915647], [-79.9344326145805, 32.7898754280517]]], "type": "Polygon"}, "id": "493", "properties": {"OBJECTID": 3919, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 22111.90234375, "Shape__Length": 646.453784707628, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9355822631138, 32.7898754280517, -79.9342484922459, 32.7909235768783], "geometry": {"coordinates": [[[-79.9344326145805, 32.7898754280517], [-79.9342574951554, 32.7899584282686], [-79.9342484922459, 32.7899628166417], [-79.9342572759691, 32.789976381017], [-79.9343978801978, 32.7901881447741], [-79.9344761775333, 32.7903056505471], [-79.9345776292017, 32.7904590931615], [-79.9346287608877, 32.7905359022926], [-79.9346750997011, 32.7906054576852], [-79.9346958637936, 32.7906373344177], [-79.9347214386214, 32.7906750103556], [-79.9347597810198, 32.7907331536977], [-79.9348149081511, 32.7908159280119], [-79.9348860035528, 32.7909235768783], [-79.9350504534916, 32.7908482999904], [-79.9351527284679, 32.7908010005412], [-79.9352934492987, 32.7907366833441], [-79.9354358147524, 32.7906710049971], [-79.935493903921, 32.790644280374], [-79.9355822631138, 32.7906039912162], [-79.9354224709304, 32.7903642276152], [-79.9352768363084, 32.7904311635094], [-79.9351336587107, 32.7904968336972], [-79.9349770789603, 32.7902606191344], [-79.9348387687274, 32.7903273621434], [-79.9347404942036, 32.79018021788], [-79.9346630111824, 32.7900627193703], [-79.9345820017906, 32.790100843426], [-79.9344326145805, 32.7898754280517]]], "type": "Polygon"}, "id": "494", "properties": {"OBJECTID": 3920, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 7198.322265625, "Shape__Length": 468.751706509495, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9366373937461, 32.7902985159515, -79.9349245570538, 32.7912085704682], "geometry": {"coordinates": [[[-79.9357615450278, 32.7906466086944], [-79.9349245570538, 32.7910312030569], [-79.9350411766119, 32.7912085704682], [-79.9362585919206, 32.7906509311567], [-79.9366373937461, 32.7904775290311], [-79.9365191637648, 32.7902985159515], [-79.9357615450278, 32.7906466086944]]], "type": "Polygon"}, "id": "495", "properties": {"OBJECTID": 3921, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5456.697265625, "Shape__Length": 458.593465545036, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9347713782657, 32.7899816827393, -79.932175340507, 32.7917244890868], "geometry": {"coordinates": [[[-79.933871062141, 32.7900237814876], [-79.9337861528591, 32.790048038671], [-79.9336359293125, 32.7900910538042], [-79.93347883145, 32.7901639876742], [-79.9333675522767, 32.7902156731183], [-79.9333282716921, 32.7902344874742], [-79.9332707227028, 32.7902834640838], [-79.9331827406063, 32.7903594053589], [-79.9331358781216, 32.7903993710486], [-79.9329896274974, 32.7905166375691], [-79.9328720042159, 32.790621440421], [-79.9328185410799, 32.7906688201368], [-79.9327091531704, 32.7907654482766], [-79.9326153811095, 32.790849155767], [-79.9325265560322, 32.7909274944285], [-79.9323209291441, 32.7911098696602], [-79.932175340507, 32.7912393410576], [-79.9324498998166, 32.7913412961306], [-79.9325657180247, 32.7913842248897], [-79.932679109487, 32.7914261033734], [-79.9327973558171, 32.7914700847943], [-79.9331942151112, 32.7916173408632], [-79.9332509105751, 32.7916382816263], [-79.9333408139152, 32.7916714485815], [-79.9334833590454, 32.7917244890868], [-79.9336003786749, 32.7916691587223], [-79.9337026680112, 32.7916208279883], [-79.9337992291002, 32.7915752862337], [-79.9338957901332, 32.7915296533181], [-79.933980894844, 32.7914894217134], [-79.9340905461806, 32.7914378053828], [-79.9341330989901, 32.7914176457859], [-79.9342272023555, 32.7913733683065], [-79.934240297056, 32.7913670387501], [-79.9343237629302, 32.791327823434], [-79.9344227806514, 32.791280840715], [-79.9346019878941, 32.7911963282728], [-79.9347713782657, 32.7911161987019], [-79.9344853822804, 32.7906846363137], [-79.9344518151768, 32.7906352092356], [-79.9342528968242, 32.7903350590628], [-79.9341642205019, 32.7902014857977], [-79.9340180199585, 32.7899816827393], [-79.933871062141, 32.7900237814876]]], "type": "Polygon"}, "id": "496", "properties": {"OBJECTID": 3922, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 36081.76953125, "Shape__Length": 764.658782963069, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9324461253981, 32.7882314597486, -79.9317342271071, 32.7887578936472], "geometry": {"coordinates": [[[-79.9319097474309, 32.7886434575145], [-79.9319807555267, 32.7887578936472], [-79.9321206093708, 32.7886978689013], [-79.9324461253981, 32.7885575133923], [-79.9323252301609, 32.7884642889756], [-79.9322462534558, 32.7884027817159], [-79.9321745256324, 32.7883472645402], [-79.9321027967886, 32.7882917509203], [-79.9320254337034, 32.7882314597486], [-79.9318176617872, 32.7883235342838], [-79.9317342271071, 32.7883605160902], [-79.9319097474309, 32.7886434575145]]], "type": "Polygon"}, "id": "497", "properties": {"OBJECTID": 3923, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2826.201171875, "Shape__Length": 217.892761123483, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9307506968029, 32.7886289739727, -79.9304806775772, 32.7889374428752], "geometry": {"coordinates": [[[-79.9304806775772, 32.7886801081409], [-79.9305835263303, 32.7888516914405], [-79.9306353576, 32.7889374428752], [-79.9307506968029, 32.7888863085504], [-79.9306988665178, 32.7888005571745], [-79.9305960175983, 32.7886289739727], [-79.9304806775772, 32.7886801081409]]], "type": "Polygon"}, "id": "498", "properties": {"OBJECTID": 3924, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 554.107421875, "Shape__Length": 105.389045431346, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.931964182501, 32.7879515606793, -79.9303881970929, 32.7891405456634], "geometry": {"coordinates": [[[-79.9306353576, 32.7889374428752], [-79.9307573465052, 32.7891405456634], [-79.9311041314584, 32.7889909319217], [-79.9312783396124, 32.7889159158223], [-79.9314460070326, 32.7888435063776], [-79.93167828477, 32.7887434857215], [-79.9319097474309, 32.7886434575145], [-79.9317342271071, 32.7883605160902], [-79.9316548786054, 32.7883958164251], [-79.9316181694166, 32.7883374275323], [-79.9316238963343, 32.7883348135175], [-79.9317106028267, 32.7882964850543], [-79.931964182501, 32.7881841098428], [-79.9318815309959, 32.7881258646734], [-79.9319001110089, 32.7881176172576], [-79.9316872666236, 32.7879515606793], [-79.9314685525141, 32.7880500052362], [-79.9305035358965, 32.788474576521], [-79.9303881970929, 32.7885257106105], [-79.9304806775772, 32.7886801081409], [-79.9305960175983, 32.7886289739727], [-79.9306988665178, 32.7888005571745], [-79.9307506968029, 32.7888863085504], [-79.9306353576, 32.7889374428752]]], "type": "Polygon"}, "id": "499", "properties": {"OBJECTID": 3925, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 13676.625, "Shape__Length": 578.998821128947, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.931418488483, 32.7889909319217, -79.9307573465052, 32.7896495147781], "geometry": {"coordinates": [[[-79.9307573465052, 32.7891405456634], [-79.9308275084099, 32.7892573811857], [-79.9308865110751, 32.789355479097], [-79.9309455159786, 32.7894534922267], [-79.9310045199581, 32.7895515044179], [-79.9310635240921, 32.7896495147781], [-79.931418488483, 32.789496450817], [-79.9313578487078, 32.7893991108395], [-79.9312972090238, 32.78930177444], [-79.9312365705977, 32.789204433512], [-79.9311767446684, 32.7891070166827], [-79.9311041314584, 32.7889909319217], [-79.9307573465052, 32.7891405456634]]], "type": "Polygon"}, "id": "500", "properties": {"OBJECTID": 3926, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3315.994140625, "Shape__Length": 238.860210798112, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9329393466675, 32.7885575133923, -79.9310635240921, 32.7897497765418], "geometry": {"coordinates": [[[-79.9310635240921, 32.7896495147781], [-79.9311241279377, 32.7897497765418], [-79.9312435574295, 32.789696874704], [-79.9314775256479, 32.789591884715], [-79.9316501360521, 32.789514538204], [-79.9317074016608, 32.7894887506062], [-79.9318170192216, 32.7894398009658], [-79.9319258242681, 32.7893907548536], [-79.9320468965485, 32.7893365805648], [-79.9322767712164, 32.789233445389], [-79.9324256611165, 32.7891663683236], [-79.9325696384079, 32.7891019113418], [-79.9327536996971, 32.7890194199222], [-79.932820761041, 32.7889908845911], [-79.9329393466675, 32.7889403780552], [-79.9327322230705, 32.7887797436441], [-79.9326347038395, 32.7887043318024], [-79.9325404134885, 32.7886309212715], [-79.9325130136551, 32.7886095521854], [-79.9324461253981, 32.7885575133923], [-79.9321206093708, 32.7886978689013], [-79.9319807555267, 32.7887578936472], [-79.9319097474309, 32.7886434575145], [-79.93167828477, 32.7887434857215], [-79.9314460070326, 32.7888435063776], [-79.9312783396124, 32.7889159158223], [-79.9311041314584, 32.7889909319217], [-79.9311767446684, 32.7891070166827], [-79.9312365705977, 32.789204433512], [-79.9312972090238, 32.78930177444], [-79.9313578487078, 32.7893991108395], [-79.931418488483, 32.789496450817], [-79.9310635240921, 32.7896495147781]]], "type": "Polygon"}, "id": "501", "properties": {"OBJECTID": 3927, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14601.921875, "Shape__Length": 614.398787048563, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9337702994908, 32.7890497500484, -79.9312112665444, 32.7911580770894], "geometry": {"coordinates": [[[-79.9328358574872, 32.7891536236627], [-79.9328072249489, 32.7891664316031], [-79.9325771725927, 32.7892700198412], [-79.9323531726046, 32.7893764678841], [-79.9322397000613, 32.7894303913535], [-79.932117467392, 32.789488477792], [-79.9318848394475, 32.7895990242836], [-79.9317888401811, 32.7896446433633], [-79.931673745439, 32.7896952261794], [-79.931551667734, 32.7897488772804], [-79.9314361744745, 32.7897996340576], [-79.9312112665444, 32.7898984768431], [-79.931343317433, 32.7901209761625], [-79.9314006889947, 32.7902194040795], [-79.9314198290222, 32.7902509235935], [-79.9314613304991, 32.7903167404464], [-79.9315076277559, 32.7903893890946], [-79.9315587199204, 32.7904692915844], [-79.9316098110998, 32.7905491949458], [-79.9316481145637, 32.7906103465657], [-79.9316632839904, 32.7906339294786], [-79.9317191606794, 32.7907216916993], [-79.9317478946629, 32.7907670425256], [-79.9317678263924, 32.7908004573431], [-79.9318339644552, 32.7909139095359], [-79.931841927074, 32.7909280657392], [-79.9318881514495, 32.7910068100212], [-79.9319072897293, 32.7910385007923], [-79.9319320205233, 32.7910785769578], [-79.9319544065304, 32.7911108984995], [-79.9319840814533, 32.7911458611122], [-79.9319961347235, 32.7911580770894], [-79.9320816665868, 32.7910830612852], [-79.9321770601202, 32.7909998823934], [-79.9322790391825, 32.7909104056582], [-79.93237608556, 32.7908250964728], [-79.9324690128324, 32.7907439574382], [-79.9325594742357, 32.790664945898], [-79.93261210826, 32.790618760307], [-79.9326573409484, 32.7905790394231], [-79.9327535646928, 32.7904944099707], [-79.932856359262, 32.7904047658285], [-79.9329509378127, 32.7903215801457], [-79.9330447226098, 32.7902366703736], [-79.9331393217924, 32.7901518542095], [-79.9333293624854, 32.789979648859], [-79.9334560471418, 32.7898655590075], [-79.9335424298192, 32.7897872876893], [-79.933627160253, 32.78971097062], [-79.9337135426358, 32.7896326108024], [-79.9337702994908, 32.7895818234181], [-79.933559928381, 32.7894203865436], [-79.933480943617, 32.7893593976735], [-79.9334011465493, 32.7892983141923], [-79.9333116780637, 32.7892297593982], [-79.933079570391, 32.7890497500484], [-79.9328358574872, 32.7891536236627]]], "type": "Polygon"}, "id": "502", "properties": {"OBJECTID": 3928, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 37532.88671875, "Shape__Length": 816.517284111727, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9309177445104, 32.7895213528381, -79.9303579845027, 32.7899846055368], "geometry": {"coordinates": [[[-79.9304387581874, 32.7895940559966], [-79.9303579845027, 32.7896277260577], [-79.930570837281, 32.7899846055368], [-79.9306592661462, 32.7899463460569], [-79.9307230581104, 32.7899191567829], [-79.9307549630262, 32.7899049187512], [-79.9309177445104, 32.789833067024], [-79.9308396522828, 32.7896993258656], [-79.9308021990236, 32.7896352621752], [-79.9307521299662, 32.7895213528381], [-79.9305401293042, 32.7896097259402], [-79.9305268334039, 32.7895876842689], [-79.9304781000735, 32.7896079987075], [-79.9304634752393, 32.7895837530475], [-79.9304387581874, 32.7895940559966]]], "type": "Polygon"}, "id": "503", "properties": {"OBJECTID": 3929, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2117.37890625, "Shape__Length": 194.024013781611, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9306252874551, 32.7886260271091, -79.9296683945778, 32.7901037759353], "geometry": {"coordinates": [[[-79.9306252874551, 32.7893131483157], [-79.9302041616774, 32.7886260271091], [-79.9298167013645, 32.7887961221489], [-79.9296959403173, 32.7888225077649], [-79.9296683945778, 32.7889248939844], [-79.929924440212, 32.789414662008], [-79.930078215367, 32.7897018051747], [-79.9302939397545, 32.7901037759353], [-79.9304564296455, 32.790033651085], [-79.930570837281, 32.7899846055368], [-79.9303579845027, 32.7896277260577], [-79.9304387581874, 32.7895940559966], [-79.9304157797616, 32.7895562232834], [-79.9303674326735, 32.7894766175657], [-79.9304238047291, 32.7894018809872], [-79.9306252874551, 32.7893131483157]]], "type": "Polygon"}, "id": "504", "properties": {"OBJECTID": 3930, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10330.21484375, "Shape__Length": 501.766307566743, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9289994460026, 32.7881576808881, -79.9286330575336, 32.7889863952739], "geometry": {"coordinates": [[[-79.9289994460026, 32.788882476835], [-79.9289375711781, 32.7884821203583], [-79.9288874379177, 32.7881577318528], [-79.9288873851599, 32.7881576808881], [-79.9288872771604, 32.788157694372], [-79.9286330575336, 32.7881893144037], [-79.9286710009804, 32.7884121261388], [-79.9287623946124, 32.7889863952739], [-79.9289994355316, 32.7888825470866], [-79.9289994460026, 32.788882476835]]], "type": "Polygon"}, "id": "505", "properties": {"OBJECTID": 3931, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2866.244140625, "Shape__Length": 261.69393204048, "ZONE_BASE": "MU-1", "__folium_color": "#c49c94"}, "type": "Feature"}, {"bbox": [-79.929387053033, 32.7881089923442, -79.9288873851599, 32.7888825470866], "geometry": {"coordinates": [[[-79.929387053033, 32.7887130313633], [-79.929350770666, 32.7885085317578], [-79.9293263797615, 32.7883745696415], [-79.9293089245458, 32.788272112552], [-79.9292800100661, 32.7881089923442], [-79.9288873851599, 32.7881576808881], [-79.9288874379177, 32.7881577318528], [-79.9289375711781, 32.7884821203583], [-79.9289994460026, 32.788882476835], [-79.9289994355316, 32.7888825470866], [-79.9289996040675, 32.7888824728076], [-79.9291421339021, 32.7888209480615], [-79.929387053033, 32.7887130313633]]], "type": "Polygon"}, "id": "506", "properties": {"OBJECTID": 3932, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3997.8359375, "Shape__Length": 270.480122915527, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9310269363447, 32.791006964581, -79.9298829013581, 32.7922664042374], "geometry": {"coordinates": [[[-79.9299844364928, 32.7914447034039], [-79.9300548844904, 32.7915899199898], [-79.9301636978846, 32.7917752700639], [-79.930452028755, 32.7922664042374], [-79.9305090151365, 32.7922399672145], [-79.9310031411012, 32.7920555526337], [-79.9310127932087, 32.7920368075156], [-79.9310269363447, 32.7920114163188], [-79.9309759163427, 32.7919255873573], [-79.9309703385571, 32.7919160035028], [-79.9309424538108, 32.7918677442702], [-79.9307922708164, 32.7915749700394], [-79.9307668594165, 32.7915240683554], [-79.9306967211931, 32.791382409036], [-79.9306035152739, 32.7911863007773], [-79.9305147199361, 32.791006964581], [-79.9298829013581, 32.7912745929368], [-79.9299844364928, 32.7914447034039]]], "type": "Polygon"}, "id": "507", "properties": {"OBJECTID": 3933, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 11014.115234375, "Shape__Length": 443.231049775793, "ZONE_BASE": "LI", "__folium_color": "#8c564b"}, "type": "Feature"}, {"bbox": [-79.9303577638731, 32.7903442395014, -79.9299562215939, 32.7907676406045], "geometry": {"coordinates": [[[-79.9299562215939, 32.7904414834559], [-79.9299564636812, 32.7904416803698], [-79.9301685373097, 32.7907676406045], [-79.9303577638731, 32.790686950158], [-79.9301830207386, 32.7903442395014], [-79.9299562215939, 32.7904414834559]]], "type": "Polygon"}, "id": "508", "properties": {"OBJECTID": 3934, "ORDNO": "2022-081", "ORDSTAT": null, "Shape__Area": 1279.00390625, "Shape__Length": 150.571424897507, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9301085644031, 32.7890127675125, -79.9287258173158, 32.7904816854675], "geometry": {"coordinates": [[[-79.9301085644031, 32.7901727995164], [-79.9297873089903, 32.7895536241998], [-79.9294565114089, 32.7890127675125], [-79.9287258173158, 32.7893322919047], [-79.9290479369547, 32.7898737347992], [-79.9292370410549, 32.7901915901101], [-79.9292913189843, 32.7902828223608], [-79.9293426835547, 32.7903691591748], [-79.9294096292114, 32.7904816854675], [-79.9295453931892, 32.7904178166654], [-79.9296206400253, 32.7903854037348], [-79.9297490471086, 32.790330347126], [-79.9298643728295, 32.7902805058227], [-79.9301085644031, 32.7901727995164]]], "type": "Polygon"}, "id": "509", "properties": {"OBJECTID": 3935, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15476.2109375, "Shape__Length": 519.753889618876, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9314544129308, 32.7899805412965, -79.9306649313614, 32.7908885985847], "geometry": {"coordinates": [[[-79.9308122854073, 32.79006561202], [-79.9306649313614, 32.7901272760291], [-79.9308734635231, 32.7904703822455], [-79.9309833509439, 32.7906412060506], [-79.9309121319284, 32.7906726449556], [-79.9310049090408, 32.7908233958576], [-79.9310454677498, 32.7908885985847], [-79.9314544129308, 32.7907127233511], [-79.9314040546792, 32.7906441218272], [-79.9312091714418, 32.7903236924981], [-79.9310053324127, 32.7899805412965], [-79.9308122854073, 32.79006561202]]], "type": "Polygon"}, "id": "510", "properties": {"OBJECTID": 3936, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4864.568359375, "Shape__Length": 320.753343975389, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9318417840777, 32.7907127233511, -79.9310307469766, 32.7916080128817], "geometry": {"coordinates": [[[-79.9310454677498, 32.7908885985847], [-79.9310307469766, 32.7908948252133], [-79.9310802403751, 32.7909723096435], [-79.9310974163751, 32.7909648148323], [-79.9311589903579, 32.7910523691634], [-79.9312088798822, 32.791031158199], [-79.931265506761, 32.7911240820836], [-79.9313245143155, 32.7912219237088], [-79.9312836216383, 32.7912393453309], [-79.9315077280909, 32.7916080128817], [-79.9315784852993, 32.7915435163753], [-79.9318417840777, 32.7913025467114], [-79.9318040119869, 32.7912644209732], [-79.9317631068185, 32.7912163882487], [-79.9317311259952, 32.7911704111586], [-79.9317040052024, 32.7911261926903], [-79.9316721200836, 32.7910724011046], [-79.9316290773541, 32.7909995221095], [-79.9316139330784, 32.790973967095], [-79.9315597548318, 32.7908802900809], [-79.9315446032791, 32.7908553329118], [-79.9315039066022, 32.7907902076085], [-79.9314544129308, 32.7907127233511], [-79.9310454677498, 32.7908885985847]]], "type": "Polygon"}, "id": "511", "properties": {"OBJECTID": 3937, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4781.166015625, "Shape__Length": 319.126447342398, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9315077280909, 32.7901272760291, -79.9303542661869, 32.7918415040385], "geometry": {"coordinates": [[[-79.9311222590979, 32.7918006899395], [-79.9311228360218, 32.7918008347643], [-79.9311303109213, 32.7918098255433], [-79.9311345498948, 32.7918139965946], [-79.9311439380124, 32.7918216017307], [-79.9311516988475, 32.791826598968], [-79.9311599962688, 32.7918309371406], [-79.9311717583386, 32.7918356293382], [-79.9311841387742, 32.7918390003347], [-79.9311937058055, 32.7918406269508], [-79.9312034138232, 32.7918414647887], [-79.9312131721921, 32.7918415040385], [-79.9312196604393, 32.7918410854477], [-79.9312324736873, 32.7918391925919], [-79.9312418360696, 32.7918368664701], [-79.9312508863357, 32.7918337836858], [-79.9312595418833, 32.7918299759835], [-79.9312650507683, 32.791827050748], [-79.9312703251456, 32.7918238321705], [-79.9312728670198, 32.7918221156324], [-79.9312742674353, 32.7918216264438], [-79.9315077280909, 32.7916080128817], [-79.9312836216383, 32.7912393453309], [-79.9313245143155, 32.7912219237088], [-79.931265506761, 32.7911240820836], [-79.9312088798822, 32.791031158199], [-79.9311589903579, 32.7910523691634], [-79.9310974163751, 32.7909648148323], [-79.9310802403751, 32.7909723096435], [-79.9310307469766, 32.7908948252133], [-79.9310454677498, 32.7908885985847], [-79.9310049090408, 32.7908233958576], [-79.9309121319284, 32.7906726449556], [-79.9309833509439, 32.7906412060506], [-79.9308734635231, 32.7904703822455], [-79.9306649313614, 32.7901272760291], [-79.9303542661869, 32.7902627028416], [-79.9305209764089, 32.7906007157057], [-79.93061347269, 32.7908044834313], [-79.9306898332131, 32.7909692102441], [-79.9308210847782, 32.7912070443073], [-79.9311082945558, 32.7917616275363], [-79.9311093953573, 32.7917700855593], [-79.9311114127972, 32.7917781502728], [-79.9311132669412, 32.7917834196697], [-79.931115520733, 32.7917885753192], [-79.9311181637399, 32.7917935972898], [-79.9311222590979, 32.7918006899395]]], "type": "Polygon"}, "id": "512", "properties": {"OBJECTID": 3938, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9927.91796875, "Shape__Length": 559.338950873972, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9339380460846, 32.7818046335166, -79.9318795280066, 32.7832256376749], "geometry": {"coordinates": [[[-79.9331194870454, 32.7819727514464], [-79.9329747578445, 32.7820332523222], [-79.932381121888, 32.782281136419], [-79.9318795280066, 32.7824907420642], [-79.9319400139451, 32.7829500502207], [-79.9319567181586, 32.7830840384017], [-79.9319647874676, 32.7831497155973], [-79.9319979375296, 32.7832061785435], [-79.932022859651, 32.7832256376749], [-79.9326029526257, 32.7829840788784], [-79.9327083718948, 32.7829395244417], [-79.9334687333379, 32.7826178151896], [-79.9334981665323, 32.7826057878778], [-79.9339380460846, 32.7824247644386], [-79.9338325786814, 32.7822678503439], [-79.933799024611, 32.7822176512419], [-79.9337271116346, 32.7821110254423], [-79.9336432274224, 32.7819854793574], [-79.9336048801597, 32.781928021934], [-79.9335657216577, 32.7818705583287], [-79.9335217845064, 32.7818046335166], [-79.9331194870454, 32.7819727514464]]], "type": "Polygon"}, "id": "513", "properties": {"OBJECTID": 3939, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 21042.556640625, "Shape__Length": 636.434503572032, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9318188528161, 32.7825787677332, -79.9312124374389, 32.7834858224744], "geometry": {"coordinates": [[[-79.9313688101503, 32.782705318967], [-79.9314954318221, 32.7829280474827], [-79.9315233160936, 32.7829761370163], [-79.9313631154066, 32.7830376164626], [-79.931394981564, 32.7830926146009], [-79.9314029381631, 32.7831072857236], [-79.9312124374389, 32.7831849930853], [-79.9312427114414, 32.7832372267556], [-79.9312721762562, 32.7832891972282], [-79.9313335147315, 32.7833955616847], [-79.9313846829623, 32.7834858224744], [-79.9318188528161, 32.7833039693846], [-79.9317665408436, 32.783214668268], [-79.9317493890527, 32.7830899704684], [-79.9317406914627, 32.7830288871339], [-79.9317309682692, 32.7829592255999], [-79.9317227521443, 32.7828993675545], [-79.9317153063735, 32.7828430370027], [-79.9316790766513, 32.7825787677332], [-79.9313688101503, 32.782705318967]]], "type": "Polygon"}, "id": "514", "properties": {"OBJECTID": 3940, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4200.34765625, "Shape__Length": 327.714026501388, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9343398165744, 32.7825265483979, -79.9320837071664, 32.7838381527376], "geometry": {"coordinates": [[[-79.9328686352123, 32.782994923499], [-79.9327664290619, 32.7830372379871], [-79.9324385621459, 32.7831720759765], [-79.9320837071664, 32.7833183599002], [-79.9321628243964, 32.7834344999079], [-79.9323562453544, 32.783716566062], [-79.9323754242317, 32.7837449076838], [-79.9324393653589, 32.7838381527376], [-79.9326536176395, 32.7837473350723], [-79.933052682031, 32.7835781559615], [-79.9332914649768, 32.7834770735993], [-79.9333977710632, 32.7834321312923], [-79.9334501074975, 32.7834099100087], [-79.9335171622338, 32.78338154384], [-79.9339284897184, 32.783207316623], [-79.9340544253907, 32.7831536968949], [-79.9343398165744, 32.7830328301103], [-79.9343022860329, 32.7829751220964], [-79.9342671370924, 32.7829222452084], [-79.9342072386999, 32.7828309284008], [-79.9341648970062, 32.7827674220142], [-79.9341313604431, 32.7827158451518], [-79.9340978091556, 32.7826653900353], [-79.9340530745622, 32.7825980840701], [-79.9340059500995, 32.7825265483979], [-79.9336666351381, 32.782666528648], [-79.9337177971443, 32.7827404164598], [-79.9337641699391, 32.7828067917042], [-79.9337993552136, 32.7828566650412], [-79.9337846370264, 32.7828628072324], [-79.9336519180311, 32.7826725842559], [-79.9332431052196, 32.7828409912536], [-79.9328686352123, 32.782994923499]]], "type": "Polygon"}, "id": "515", "properties": {"OBJECTID": 3941, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 18461.001953125, "Shape__Length": 689.645198969907, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9315233621328, 32.7827055083334, -79.9299107715585, 32.7839258836515], "geometry": {"coordinates": [[[-79.9313684982294, 32.7827055083334], [-79.9312101977604, 32.7827699053784], [-79.9310196986683, 32.7828476124465], [-79.9307849260144, 32.7829389089415], [-79.9307241106223, 32.7829640671113], [-79.930382577668, 32.7831088329348], [-79.9302229937798, 32.7831709448705], [-79.9299107715585, 32.7833024507792], [-79.9301913189906, 32.7837117802981], [-79.9303360532846, 32.7839258836515], [-79.9313846829623, 32.7834858224744], [-79.9313335147315, 32.7833955616847], [-79.9312721762562, 32.7832891972282], [-79.9312427114414, 32.7832372267556], [-79.9312127331373, 32.7831851697229], [-79.9314032040824, 32.7831074530822], [-79.9313948161082, 32.78309278721], [-79.9313633482666, 32.7830377808271], [-79.9315233621328, 32.7829763006507], [-79.9314958596675, 32.7829282433105], [-79.9313684982294, 32.7827055083334]]], "type": "Polygon"}, "id": "516", "properties": {"OBJECTID": 3942, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 14612.169921875, "Shape__Length": 543.489959299133, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.932216697534, 32.7834194621399, -79.9314235242638, 32.7840433141814], "geometry": {"coordinates": [[[-79.9314235242638, 32.7836000176165], [-79.9315906165279, 32.7838422581259], [-79.9316958239854, 32.7838029261275], [-79.9317622998989, 32.783922266653], [-79.9318303095503, 32.7840433141814], [-79.9318596038929, 32.7840313500737], [-79.932216697534, 32.7838852567462], [-79.9321775369304, 32.7838278801439], [-79.9321327990303, 32.7837609161291], [-79.9321200058384, 32.7837426784627], [-79.932101637351, 32.7837146865715], [-79.9320568575266, 32.7836511590592], [-79.9319089465666, 32.7834394992733], [-79.9319073480675, 32.7834370801214], [-79.9319049361708, 32.7834347386406], [-79.9319025295012, 32.7834320572134], [-79.9318993041464, 32.783429623858], [-79.9318960777741, 32.7834273609407], [-79.9318928440292, 32.7834257878632], [-79.9318896102677, 32.7834240416331], [-79.931886371285, 32.7834228094037], [-79.9318831312515, 32.7834217503175], [-79.9318798859166, 32.7834209500118], [-79.9318766416797, 32.7834202344883], [-79.9318733932197, 32.7834197768527], [-79.9318701405589, 32.7834195753019], [-79.9318668889519, 32.7834194621399], [-79.9318628175892, 32.7834196845184], [-79.9318587462652, 32.7834200782459], [-79.9318554852273, 32.7834206485929], [-79.9318522209704, 32.7834213947697], [-79.9318489557039, 32.7834223979608], [-79.9318456830724, 32.7834238285578], [-79.9314235242638, 32.7836000176165]]], "type": "Polygon"}, "id": "517", "properties": {"OBJECTID": 3943, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3796.388671875, "Shape__Length": 261.71331252584, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9318303095503, 32.7836000176165, -79.9304030155759, 32.7845113937608], "geometry": {"coordinates": [[[-79.9314235242638, 32.7836000176165], [-79.9304030155759, 32.7840283008213], [-79.9307134606033, 32.7845113937608], [-79.9314677499639, 32.7841926828224], [-79.9315963704369, 32.784145780665], [-79.9316589289818, 32.7841205155277], [-79.9318303095503, 32.7840433141814], [-79.9317622998989, 32.783922266653], [-79.9316954273244, 32.7838027116342], [-79.9315906165279, 32.7838422581259], [-79.9314235242638, 32.7836000176165]]], "type": "Polygon"}, "id": "518", "properties": {"OBJECTID": 3944, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9708.615234375, "Shape__Length": 423.713246024671, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9330855305002, 32.7839817950625, -79.9318631688445, 32.7853465491861], "geometry": {"coordinates": [[[-79.9321933286169, 32.7851971771198], [-79.9323357094067, 32.7851296132646], [-79.9324772775781, 32.785062043959], [-79.9326747409946, 32.7853465491861], [-79.9330855305002, 32.785150586635], [-79.9328880661992, 32.784866081175], [-79.9328057212782, 32.7847475082867], [-79.9327049835784, 32.7846030049274], [-79.9325570915198, 32.784389539719], [-79.9324979338183, 32.7843042419574], [-79.9324811405002, 32.7842804727358], [-79.9324060020688, 32.7841714975687], [-79.9322740912234, 32.7839817950625], [-79.9320443018015, 32.7840790048356], [-79.9319134598053, 32.7841344717399], [-79.9321210926267, 32.7844518790464], [-79.9319738121897, 32.7845210312868], [-79.9320399279442, 32.7846360270802], [-79.9319040867711, 32.7847010711313], [-79.9318631688445, 32.7847207283382], [-79.9319974655968, 32.7849149189221], [-79.9320110619159, 32.7849341060319], [-79.9321109854057, 32.7850786028673], [-79.9321933286169, 32.7851971771198]]], "type": "Polygon"}, "id": "519", "properties": {"OBJECTID": 3945, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12017.109375, "Shape__Length": 535.974103216971, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9326747409946, 32.785062043959, -79.9321933286169, 32.7854816899171], "geometry": {"coordinates": [[[-79.9321933286169, 32.7851971771198], [-79.9323916059284, 32.7854816899171], [-79.9325331724926, 32.7854141205258], [-79.9326747409946, 32.7853465491861], [-79.9324772775781, 32.785062043959], [-79.9323357094067, 32.7851296132646], [-79.9321933286169, 32.7851971771198]]], "type": "Polygon"}, "id": "520", "properties": {"OBJECTID": 3946, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1582.814453125, "Shape__Length": 159.844729772388, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9323916059284, 32.7841344717399, -79.9307826202317, 32.7858592829756], "geometry": {"coordinates": [[[-79.9319134598053, 32.7841344717399], [-79.9317826166057, 32.784190023268], [-79.9316427802487, 32.7842491025664], [-79.9315119377425, 32.7843045690422], [-79.9313721010188, 32.7843636480319], [-79.9312240855481, 32.78442635204], [-79.9311161428812, 32.7844718806112], [-79.9310090125019, 32.7845175009584], [-79.9307826202317, 32.7846150023134], [-79.9308799127105, 32.7847626489337], [-79.930919853696, 32.784822784282], [-79.9309733623729, 32.7849042556694], [-79.9310907696992, 32.7850824066293], [-79.9312233437742, 32.7852843126663], [-79.9313365860957, 32.7854682303185], [-79.9314618323158, 32.785667059954], [-79.9315074719306, 32.7857364526269], [-79.9315882564245, 32.7858592829756], [-79.9317083192343, 32.7858072141712], [-79.9318163336631, 32.7857559301682], [-79.9319243490021, 32.7857045613066], [-79.9320315518768, 32.7856531816515], [-79.9322475829789, 32.7855503568874], [-79.9323916059284, 32.7854816899171], [-79.9321933286169, 32.7851971771198], [-79.9321109854057, 32.7850786028673], [-79.9320110619159, 32.7849341060319], [-79.9319974655968, 32.7849149189221], [-79.9318631688445, 32.7847207283382], [-79.9319040867711, 32.7847010711313], [-79.9320399279442, 32.7846360270802], [-79.9319738121897, 32.7845210312868], [-79.9321210926267, 32.7844518790464], [-79.9319134598053, 32.7841344717399]]], "type": "Polygon"}, "id": "521", "properties": {"OBJECTID": 3947, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 20996.53515625, "Shape__Length": 654.092902861341, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9337168711462, 32.7836970810171, -79.9325046188969, 32.7850627211454], "geometry": {"coordinates": [[[-79.9333894966402, 32.7842411248395], [-79.933063020259, 32.7836970810171], [-79.9325046188969, 32.7839336529768], [-79.9328867353904, 32.784490050011], [-79.9329674627149, 32.7846077510886], [-79.9330002363208, 32.7846553688795], [-79.9331353101186, 32.7848527421366], [-79.9332799042341, 32.7850627211454], [-79.9337168711462, 32.7848602119597], [-79.9335665086853, 32.784643183147], [-79.9334050329449, 32.7843945335911], [-79.9333213834764, 32.7842730502828], [-79.9333894966402, 32.7842411248395]]], "type": "Polygon"}, "id": "522", "properties": {"OBJECTID": 3948, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10500.578125, "Shape__Length": 476.496117296151, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9316524429921, 32.7821190762822, -79.9305791801793, 32.7827055264813], "geometry": {"coordinates": [[[-79.9308091545835, 32.7826252394273], [-79.9309489626442, 32.7825683054282], [-79.9309887511699, 32.7826406385491], [-79.93099447668, 32.7826381977087], [-79.9310318860286, 32.7827055264813], [-79.9312804384269, 32.7826038426107], [-79.9315142687392, 32.7825084759837], [-79.9316524429921, 32.7824520436695], [-79.9316309676681, 32.782279113101], [-79.9316109616368, 32.7821190762822], [-79.9305791801793, 32.7822064431893], [-79.930736742935, 32.7824931784133], [-79.9308091545835, 32.7826252394273]]], "type": "Polygon"}, "id": "523", "properties": {"OBJECTID": 3949, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6061.689453125, "Shape__Length": 336.044418599743, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9305080830575, 32.7822165635329, -79.9292948676309, 32.7826945816405], "geometry": {"coordinates": [[[-79.9293955846713, 32.7825337609666], [-79.9295360172717, 32.7824921282771], [-79.9295328605183, 32.7824842826396], [-79.9295540894548, 32.7824779400015], [-79.9296226735972, 32.7824575814175], [-79.9296498338278, 32.782498278113], [-79.9296594263647, 32.7825121060182], [-79.9296945660476, 32.7825654982188], [-79.9297257039424, 32.7826135309605], [-79.9297656431214, 32.7826735818989], [-79.9297800288228, 32.7826945816405], [-79.9299084760971, 32.7826354021671], [-79.9298689321004, 32.7825755919159], [-79.9299400144148, 32.7825457397352], [-79.9300302507623, 32.7825078429182], [-79.9301223736058, 32.7826468594478], [-79.930228753615, 32.7826015138115], [-79.9301096933411, 32.782425197237], [-79.9302939606907, 32.7823743343558], [-79.9303002261584, 32.7823853311143], [-79.9305080830575, 32.7822995909544], [-79.9304589907417, 32.7822165635329], [-79.9302111635753, 32.7822264064016], [-79.9300016243577, 32.7822502771261], [-79.9297615165996, 32.7822755484735], [-79.9296434947666, 32.7822854461899], [-79.9295514732753, 32.7822932337375], [-79.9294854874736, 32.7823006439108], [-79.9292948676309, 32.7823218237672], [-79.9293396870754, 32.7824482331634], [-79.9293955846713, 32.7825337609666]]], "type": "Polygon"}, "id": "524", "properties": {"OBJECTID": 3950, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4177.57421875, "Shape__Length": 392.900738772016, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9292977088423, 32.7823372784946, -79.9287987638886, 32.7826969268976], "geometry": {"coordinates": [[[-79.9292977088423, 32.7825544663967], [-79.9291563822397, 32.7823372784946], [-79.929027671552, 32.7823516985554], [-79.9287987638886, 32.7823770976299], [-79.9289583556337, 32.7826969268976], [-79.9291112671909, 32.7826328932117], [-79.9291308925161, 32.7826246481645], [-79.9292977088423, 32.7825544663967]]], "type": "Polygon"}, "id": "525", "properties": {"OBJECTID": 3951, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1581.5, "Shape__Length": 161.084674279714, "ZONE_BASE": "CT", "__folium_color": "#1f77b4"}, "type": "Feature"}, {"bbox": [-79.9285234819321, 32.7824121822336, -79.9278916451532, 32.782729517359], "geometry": {"coordinates": [[[-79.9279530939514, 32.7826600839012], [-79.9282349426131, 32.7826612890246], [-79.928244713678, 32.782729517359], [-79.9284065369508, 32.7826897570776], [-79.9285234819321, 32.7826610126633], [-79.9284846244473, 32.7824121822336], [-79.9283652644912, 32.7824254786456], [-79.9278916451532, 32.7824782339718], [-79.9279530939514, 32.7826600839012]]], "type": "Polygon"}, "id": "526", "properties": {"OBJECTID": 3952, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2018.59765625, "Shape__Length": 197.65371966926, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9310318860286, 32.7825683054282, -79.9308091545835, 32.7827648139617], "geometry": {"coordinates": [[[-79.9308091545835, 32.7826252394273], [-79.9308863554873, 32.7827648139617], [-79.9310318860286, 32.7827055264813], [-79.93099447668, 32.7826381977087], [-79.9309887511699, 32.7826406385491], [-79.9309489626442, 32.7825683054282], [-79.9308091545835, 32.7826252394273]]], "type": "Polygon"}, "id": "527", "properties": {"OBJECTID": 3953, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 359.16015625, "Shape__Length": 76.7826683523274, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9295484211504, 32.7825544663967, -79.9289583556337, 32.7831031140622], "geometry": {"coordinates": [[[-79.9289583556337, 32.7826969268976], [-79.9290306088462, 32.7828416980791], [-79.9290711018895, 32.7829228841157], [-79.9291608177789, 32.7831031140622], [-79.9292818419839, 32.7830522041272], [-79.9295484211504, 32.7829402066898], [-79.9294374419437, 32.7827690654484], [-79.9292977088423, 32.7825544663967], [-79.9291308925161, 32.7826246481645], [-79.9291112671909, 32.7826328932117], [-79.9289583556337, 32.7826969268976]]], "type": "Polygon"}, "id": "528", "properties": {"OBJECTID": 3954, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2631.126953125, "Shape__Length": 206.980463171834, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9307983524797, 32.7822995909544, -79.9293955846713, 32.7832034472698], "geometry": {"coordinates": [[[-79.9293955846713, 32.7825337609666], [-79.9294355119696, 32.7825946722621], [-79.9294714396909, 32.7826501330212], [-79.9295105642681, 32.7827103473633], [-79.9295496877987, 32.7827705643892], [-79.9295856156649, 32.7828260251158], [-79.9296263377408, 32.7828885729201], [-79.9296391060623, 32.7829087865564], [-79.9296670567131, 32.7829513786088], [-79.9297197401641, 32.7830336171038], [-79.9298282968584, 32.7832034472698], [-79.9299215180297, 32.7831642319964], [-79.9300531711558, 32.7831088590964], [-79.9301848230341, 32.7830537484799], [-79.9303271071583, 32.7829939175886], [-79.9305626137669, 32.7828947878209], [-79.9307983524797, 32.7827973217174], [-79.930640425723, 32.7825234201197], [-79.9305080830575, 32.7822995909544], [-79.9303002261584, 32.7823853311143], [-79.9302939606907, 32.7823743343558], [-79.9301096933411, 32.782425197237], [-79.930228753615, 32.7826015138115], [-79.9301223736058, 32.7826468594478], [-79.9300302507623, 32.7825078429182], [-79.9299400144148, 32.7825457397352], [-79.9298689321004, 32.7825755919159], [-79.9299084776242, 32.7826354517814], [-79.9297800288228, 32.7826945816405], [-79.9297656431214, 32.7826735818989], [-79.9297257039424, 32.7826135309605], [-79.9296945660476, 32.7825654982188], [-79.9296594263647, 32.7825121060182], [-79.9296498338278, 32.782498278113], [-79.9296226735972, 32.7824575814175], [-79.9295540894548, 32.7824779400015], [-79.9295328605183, 32.7824842826396], [-79.9295360172717, 32.7824921282771], [-79.9293955846713, 32.7825337609666]]], "type": "Polygon"}, "id": "529", "properties": {"OBJECTID": 3955, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9261.78125, "Shape__Length": 514.777490912575, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9297408001585, 32.7829643984212, -79.9286281477029, 32.7836236355008], "geometry": {"coordinates": [[[-79.9287071316399, 32.783421300494], [-79.9287205691533, 32.7834457821657], [-79.9287060585271, 32.7834517632373], [-79.9288160940495, 32.7836236355008], [-79.9289214803731, 32.783580684771], [-79.9290302196409, 32.7835365404137], [-79.9291471320739, 32.7834892885295], [-79.9291659357646, 32.783481720776], [-79.9293654656343, 32.7833976555829], [-79.9294938478383, 32.7833438031047], [-79.9296254994008, 32.7832886894724], [-79.9297408001585, 32.7832401314978], [-79.9295643947255, 32.7829643984212], [-79.9294490942832, 32.7830128651431], [-79.9293174441039, 32.7830679776916], [-79.9291890611182, 32.7831218308755], [-79.9290974759937, 32.7831602870408], [-79.929063340237, 32.7830872930275], [-79.9290231529271, 32.7830087664731], [-79.928767423752, 32.7831039898381], [-79.9287888207816, 32.7831531333648], [-79.9286514072757, 32.7832038776494], [-79.9286281477029, 32.7832164683077], [-79.9287067986997, 32.7833147167844], [-79.9286518684993, 32.7833413242151], [-79.9287071316399, 32.783421300494]]], "type": "Polygon"}, "id": "530", "properties": {"OBJECTID": 3956, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5730.412109375, "Shape__Length": 360.082937170668, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9302597032433, 32.7833467060574, -79.9288675173398, 32.7845067224905], "geometry": {"coordinates": [[[-79.9292722243688, 32.7841016479131], [-79.9291643000335, 32.7841456300812], [-79.9291054345899, 32.7841694229157], [-79.9290465690921, 32.7841932175254], [-79.9289877035512, 32.7842170130086], [-79.9289296514246, 32.7842408146832], [-79.9288675173398, 32.7842657827395], [-79.9289352029807, 32.7843850028594], [-79.9290036738011, 32.7845067224905], [-79.9290641959116, 32.7844805363012], [-79.9291222618443, 32.7844556191105], [-79.9291803288058, 32.7844306153253], [-79.9292383947164, 32.7844056944728], [-79.9292964605718, 32.7843807753962], [-79.9294035979707, 32.7843346434595], [-79.9294461263225, 32.7843163728575], [-79.9294951863103, 32.7842961014042], [-79.929600664023, 32.7842526142893], [-79.9297110485868, 32.7842070209364], [-79.9298132575876, 32.7841647089956], [-79.9299449017812, 32.7841103678146], [-79.9300029577663, 32.7840862211941], [-79.9300879938541, 32.7840511457695], [-79.9302597032433, 32.7839801478076], [-79.930219783139, 32.783918463972], [-79.9302022128537, 32.7838917683953], [-79.9301686244418, 32.7838444899245], [-79.93010066702, 32.783747255792], [-79.9300846689387, 32.7837250398396], [-79.9299815282348, 32.7835779348396], [-79.9299095608912, 32.783476030993], [-79.9298671883186, 32.783415271616], [-79.9298159639105, 32.7833467060574], [-79.929653237894, 32.7834149448034], [-79.9295076820459, 32.7834761215957], [-79.9293621249262, 32.7835372982058], [-79.929231286263, 32.7835924177739], [-79.9292165697541, 32.783598386282], [-79.9290579594095, 32.7836626281595], [-79.9289524884623, 32.7837055124327], [-79.9289580655183, 32.7837151820454], [-79.9290912373762, 32.783934105189], [-79.9290913253092, 32.783934247547], [-79.9291438798176, 32.784019691197], [-79.9292109237457, 32.7839923607798], [-79.9292722243688, 32.7841016479131]]], "type": "Polygon"}, "id": "531", "properties": {"OBJECTID": 3957, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12049.408203125, "Shape__Length": 517.193433031156, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9306261501082, 32.7840645858702, -79.9293421384716, 32.7849839304137], "geometry": {"coordinates": [[[-79.9293421384716, 32.7844694847499], [-79.929496590744, 32.7847122984461], [-79.9294467117576, 32.7847329099432], [-79.9296063403547, 32.7849839304137], [-79.9297314699364, 32.7849301339726], [-79.9298467917281, 32.7848800321117], [-79.9299629278738, 32.7848299390697], [-79.9301330404512, 32.7847566068749], [-79.930174748005, 32.7847388464946], [-79.9302826904543, 32.7846934035162], [-79.930384095788, 32.7846503102913], [-79.930509213891, 32.7845974589908], [-79.9306261501082, 32.7845483147402], [-79.9305535171962, 32.7844342072233], [-79.9304415530304, 32.7842665483945], [-79.930393569215, 32.7841964800929], [-79.9303151997005, 32.7840645858702], [-79.9293421384716, 32.7844694847499]]], "type": "Polygon"}, "id": "532", "properties": {"OBJECTID": 3958, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9082.638671875, "Shape__Length": 401.361344942848, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9296063403547, 32.7844694776864, -79.929005610384, 32.7851429744904], "geometry": {"coordinates": [[[-79.9293417435396, 32.7844694776864], [-79.9292313363298, 32.7845168741861], [-79.929005610384, 32.7846141129622], [-79.9291368123355, 32.784861106508], [-79.9292383001538, 32.7851429744904], [-79.9296063403547, 32.7849839304137], [-79.9294467117576, 32.7847329099432], [-79.929496590744, 32.7847122984461], [-79.9293417435396, 32.7844694776864]]], "type": "Polygon"}, "id": "533", "properties": {"OBJECTID": 3959, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3173.28125, "Shape__Length": 243.271004223558, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9311991413736, 32.7846446346697, -79.9294767208866, 32.786007766012], "geometry": {"coordinates": [[[-79.9295148510443, 32.7851471126004], [-79.9296576245865, 32.7853794347547], [-79.9297286060142, 32.7854955899685], [-79.9295512222486, 32.7855645607531], [-79.929609961877, 32.785683790605], [-79.9294767208866, 32.7857355391351], [-79.929546601355, 32.7858750505007], [-79.9295081816777, 32.785890005874], [-79.9295661259495, 32.786007766012], [-79.9297393812313, 32.7859437390186], [-79.9299175453933, 32.7858774351956], [-79.9300188849167, 32.7858398383706], [-79.9301202243483, 32.7858023289398], [-79.9301439249447, 32.7857935151295], [-79.9302191002083, 32.7857665988511], [-79.9303735357084, 32.7857113436025], [-79.9306627961435, 32.7856078694984], [-79.9309332655855, 32.7855107598112], [-79.9309471594067, 32.7855056424527], [-79.9311991413736, 32.7854092986251], [-79.9311032631937, 32.7852618359651], [-79.9310171925825, 32.7851314585346], [-79.9308560983578, 32.7848894833684], [-79.9306891149318, 32.7846446346697], [-79.9303975424176, 32.7847677711558], [-79.9301127091657, 32.7848888014847], [-79.9300284709587, 32.7849250878659], [-79.9299556829906, 32.784956406019], [-79.9298109203121, 32.7850189645384], [-79.9296612494417, 32.7850837958636], [-79.9295148510443, 32.7851471126004]]], "type": "Polygon"}, "id": "534", "properties": {"OBJECTID": 3960, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 18626.951171875, "Shape__Length": 609.810369693234, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9297286060142, 32.7851471126004, -79.9291476297392, 32.7861594096054], "geometry": {"coordinates": [[[-79.9295148510443, 32.7851471126004], [-79.9293913552942, 32.785200320696], [-79.9291476297392, 32.7853056495332], [-79.9291671653374, 32.7855700486289], [-79.9291677680648, 32.7855872338854], [-79.9291752040703, 32.7857105664622], [-79.9291793145753, 32.7857733963989], [-79.9291783536982, 32.7858517287039], [-79.9291771210081, 32.7859522194541], [-79.9291574951073, 32.7861594096054], [-79.9294770436745, 32.7860409145444], [-79.9295661259495, 32.786007766012], [-79.9295081816777, 32.785890005874], [-79.929546601355, 32.7858750505007], [-79.9294767208866, 32.7857355391351], [-79.929609961877, 32.785683790605], [-79.9295512222486, 32.7855645607531], [-79.9297286060142, 32.7854955899685], [-79.9296576245865, 32.7853794347547], [-79.9295148510443, 32.7851471126004]]], "type": "Polygon"}, "id": "535", "properties": {"OBJECTID": 3961, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5303.2265625, "Shape__Length": 357.646845383883, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9290231529271, 32.7823846635897, -79.9279524967932, 32.7837620003272], "geometry": {"coordinates": [[[-79.9279524967932, 32.7826600272636], [-79.9280894247515, 32.7830877856384], [-79.928136779014, 32.7831745829106], [-79.9283818535544, 32.7836007335264], [-79.9284180245848, 32.783665836461], [-79.9284746744236, 32.7837620003272], [-79.9287187986455, 32.7836629630692], [-79.928652634104, 32.7835624485092], [-79.9286049331058, 32.7834860988798], [-79.92864774179, 32.7834577538976], [-79.9287071316399, 32.783421300494], [-79.9286518684993, 32.7833413242151], [-79.9287067986997, 32.7833147167844], [-79.9286281477029, 32.7832164683077], [-79.9286514072757, 32.7832038776494], [-79.9287450141167, 32.7831692957698], [-79.9287888207816, 32.7831531333648], [-79.928767423752, 32.7831039898381], [-79.9290231529271, 32.7830087664731], [-79.928990111625, 32.7829401198519], [-79.9289135515506, 32.7827703886997], [-79.9288342249239, 32.7826032386811], [-79.9287311500997, 32.7823846635897], [-79.9286008102997, 32.7823992429916], [-79.928484320703, 32.7824121398924], [-79.9285235686637, 32.7826609917788], [-79.9284060712915, 32.7826896853611], [-79.9282445078533, 32.7827294993228], [-79.9282347695547, 32.7826612108524], [-79.9279524967932, 32.7826600272636]]], "type": "Polygon"}, "id": "536", "properties": {"OBJECTID": 3962, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10644.830078125, "Shape__Length": 544.238058962594, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9290913253092, 32.7837055124327, -79.9286678076084, 32.7840495715626], "geometry": {"coordinates": [[[-79.9290913253092, 32.783934247547], [-79.9290912373762, 32.783934105189], [-79.9289580655183, 32.7837151820454], [-79.9289524884623, 32.7837055124327], [-79.9289287820225, 32.7837149256761], [-79.9288789077205, 32.7837351906717], [-79.9287734386995, 32.7837780775147], [-79.928667967473, 32.783820961543], [-79.9286678076084, 32.7838210259772], [-79.9288071052963, 32.7840495715626], [-79.9289127053225, 32.7840067354345], [-79.9290183707054, 32.7839638718316], [-79.9290913253092, 32.783934247547]]], "type": "Polygon"}, "id": "537", "properties": {"OBJECTID": 3963, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1195.22265625, "Shape__Length": 138.325859671782, "ZONE_BASE": "STR", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9292722243688, 32.7838210259772, -79.9285624982618, 32.7845168228607], "geometry": {"coordinates": [[[-79.9292722243688, 32.7841016479131], [-79.9292109237457, 32.7839923607798], [-79.9291438798176, 32.784019691197], [-79.9290913253092, 32.783934247547], [-79.9290183707054, 32.7839638718316], [-79.9289127053225, 32.7840067354345], [-79.9288071052963, 32.7840495715626], [-79.9286678076084, 32.7838210259772], [-79.9285624982618, 32.7838637598248], [-79.9287012442541, 32.7840924413885], [-79.9287538864086, 32.7841780275657], [-79.9287849853783, 32.7842292373826], [-79.9288168218928, 32.7842866420493], [-79.9288828795776, 32.78440610587], [-79.9289369940611, 32.7845043323689], [-79.9289799576517, 32.7845168228607], [-79.9290036738011, 32.7845067224905], [-79.9289352029807, 32.7843850028594], [-79.9288675173398, 32.7842657827395], [-79.9289296514246, 32.7842408146832], [-79.9289877035512, 32.7842170130086], [-79.9290465690921, 32.7841932175254], [-79.9291054345899, 32.7841694229157], [-79.9291643000335, 32.7841456300812], [-79.9292722243688, 32.7841016479131]]], "type": "Polygon"}, "id": "538", "properties": {"OBJECTID": 3964, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2179.775390625, "Shape__Length": 307.069338278607, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9346158574978, 32.7781078266073, -79.9337779067644, 32.7790890590688], "geometry": {"coordinates": [[[-79.9337779067644, 32.778178741037], [-79.9337871875644, 32.7782608528503], [-79.9337866564008, 32.7783522465077], [-79.9338065470172, 32.7784637721587], [-79.9339908196341, 32.7784363533861], [-79.9340208569996, 32.7786801187359], [-79.9338181026712, 32.7786983455074], [-79.9338711613806, 32.7790890590688], [-79.9343910691209, 32.7790343527734], [-79.9346158574978, 32.7790122586805], [-79.9345660229746, 32.7786297450823], [-79.9344983670873, 32.7781078266073], [-79.9344022626046, 32.7781172974858], [-79.9337779067644, 32.778178741037]]], "type": "Polygon"}, "id": "539", "properties": {"OBJECTID": 3965, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 9289.734375, "Shape__Length": 450.72991816749, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9340208569996, 32.778178741037, -79.9330258837444, 32.7791579163711], "geometry": {"coordinates": [[[-79.9337779067644, 32.778178741037], [-79.9336485738899, 32.7781914424738], [-79.93346207803, 32.7782106436618], [-79.9333560432588, 32.7782243784991], [-79.9330258837444, 32.7782525936996], [-79.9330318419309, 32.7782947640763], [-79.9330406683061, 32.7783713753041], [-79.933047336855, 32.7784246913448], [-79.9330532098926, 32.7784766260501], [-79.9330606089211, 32.7785368213479], [-79.9330768333078, 32.7786736296674], [-79.9330886120007, 32.7787748362425], [-79.9330974887932, 32.7788472426513], [-79.9331056173088, 32.7789143153932], [-79.9331122534177, 32.7789703799437], [-79.9332417519093, 32.7789576805062], [-79.9332424656113, 32.7789658456334], [-79.9332431782447, 32.7789740982292], [-79.9331144941501, 32.7789868074763], [-79.9331196021573, 32.7790346970908], [-79.9331255099234, 32.7790838842062], [-79.9331339441596, 32.7791579163711], [-79.9338711613806, 32.7790890590688], [-79.9338181026712, 32.7786983455074], [-79.9340208569996, 32.7786801187359], [-79.9339908196341, 32.7784363533861], [-79.9338065470172, 32.7784637721587], [-79.9337866564008, 32.7783522465077], [-79.9337871875644, 32.7782608528503], [-79.9337779067644, 32.778178741037]]], "type": "Polygon"}, "id": "540", "properties": {"OBJECTID": 3966, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 10629.1015625, "Shape__Length": 482.264987332409, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9346958016385, 32.7791200656793, -79.9336387896493, 32.7795498074311], "geometry": {"coordinates": [[[-79.9336387896493, 32.7792189271533], [-79.9336631660987, 32.7794210912126], [-79.9337926630878, 32.7794083875658], [-79.9338749246233, 32.7794002592903], [-79.9338728369141, 32.7793713760555], [-79.9339217032673, 32.7793666479213], [-79.9340104791961, 32.7793578891261], [-79.9341073984881, 32.7793484247395], [-79.9341766289515, 32.7793415544135], [-79.9342841358945, 32.7793310665604], [-79.9342945231082, 32.77941310501], [-79.9343865568143, 32.7794040298205], [-79.9344476407914, 32.7793980335025], [-79.9344661252861, 32.7795498074311], [-79.9346958016385, 32.7795272380995], [-79.9346765023135, 32.779375542788], [-79.934666928124, 32.7792935123562], [-79.9346557743594, 32.7792076010994], [-79.9346454539112, 32.7791200656793], [-79.9344092631678, 32.7791432617538], [-79.9343897166877, 32.7791451530877], [-79.9340859254065, 32.7791749752582], [-79.9339890052367, 32.7791845270963], [-79.9339002305171, 32.7791932011123], [-79.9338326290415, 32.7791999123256], [-79.9337674740207, 32.7792062164526], [-79.9336387896493, 32.7792189271533]]], "type": "Polygon"}, "id": "541", "properties": {"OBJECTID": 3967, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3682.248046875, "Shape__Length": 341.617042662432, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9344661252861, 32.7792189271533, -79.9331484892941, 32.7796739104014], "geometry": {"coordinates": [[[-79.9336387896493, 32.7792189271533], [-79.9331484892941, 32.7792670498532], [-79.9331715894335, 32.7794403405533], [-79.9331827732602, 32.7795236747769], [-79.9331924310488, 32.7795987520156], [-79.9332020867948, 32.7796739104014], [-79.9334610847338, 32.779648511188], [-79.9335742943171, 32.779637383767], [-79.9336923904619, 32.7796257883956], [-79.9338886761865, 32.7796064511943], [-79.9342063124154, 32.7795753757213], [-79.9343097495883, 32.7795651932802], [-79.9343846801937, 32.7795577736718], [-79.9344661252861, 32.7795498074311], [-79.9344476407914, 32.7793980335025], [-79.9343865568143, 32.7794040298205], [-79.9342945231082, 32.77941310501], [-79.9342841358945, 32.7793310665604], [-79.9341766289515, 32.7793415544135], [-79.9341073984881, 32.7793484247395], [-79.9340104791961, 32.7793578891261], [-79.9339217032673, 32.7793666479213], [-79.9338728369141, 32.7793713760555], [-79.9338749246233, 32.7794002592903], [-79.9337926630878, 32.7794083875658], [-79.9336631660987, 32.7794210912126], [-79.9336387896493, 32.7792189271533]]], "type": "Polygon"}, "id": "542", "properties": {"OBJECTID": 3968, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5398.39453125, "Shape__Length": 399.668413122579, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9347253828393, 32.7796092721474, -79.9344178729413, 32.7797940242247], "geometry": {"coordinates": [[[-79.9344178729413, 32.7796375189902], [-79.9344200919018, 32.7796556643044], [-79.9344371131674, 32.7797940242247], [-79.9345348221571, 32.7797865440983], [-79.9347253828393, 32.7797697340376], [-79.9347172676559, 32.7797013728023], [-79.9347083747437, 32.7796302578044], [-79.9347053769043, 32.7796092721474], [-79.9345147935341, 32.7796279695171], [-79.9344178729413, 32.7796375189902]]], "type": "Polygon"}, "id": "543", "properties": {"OBJECTID": 3969, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 682.419921875, "Shape__Length": 106.668885779962, "ZONE_BASE": "DR-1F", "__folium_color": "#ffbb78"}, "type": "Feature"}, {"bbox": [-79.9347483667813, 32.7796375189902, -79.9332132885408, 32.7800841298203], "geometry": {"coordinates": [[[-79.9344178729413, 32.7796375189902], [-79.9343836653452, 32.7796409158429], [-79.9343535310291, 32.7796438305147], [-79.9342908169393, 32.7796500705116], [-79.9341938952301, 32.779659619798], [-79.9336205184947, 32.7797158694114], [-79.9334877611288, 32.7797288871542], [-79.9332132885408, 32.7797558703829], [-79.9332221823291, 32.7798269025398], [-79.9332333494609, 32.7799116110129], [-79.9332564593712, 32.7800841298203], [-79.9339975264269, 32.780018947765], [-79.9343794612349, 32.7799853388009], [-79.9344185503775, 32.7799818996956], [-79.9345415178646, 32.7799711151976], [-79.9347483667813, 32.7799528146342], [-79.9347350566378, 32.7798435225617], [-79.9347253828393, 32.7797697340376], [-79.9345348221571, 32.7797865440983], [-79.9344371131674, 32.7797940242247], [-79.9344200919018, 32.7796556643044], [-79.9344178729413, 32.7796375189902]]], "type": "Polygon"}, "id": "544", "properties": {"OBJECTID": 3970, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6795.2265625, "Shape__Length": 423.179302439802, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9348016724047, 32.7800075932215, -79.9332639269353, 32.7805166198958], "geometry": {"coordinates": [[[-79.9343787860937, 32.7800406496913], [-79.9332639269353, 32.7801387388412], [-79.9333138132251, 32.7805166198958], [-79.9343741279723, 32.7804222640048], [-79.9348016724047, 32.7803842415015], [-79.9347550197143, 32.7800075932215], [-79.9343787860937, 32.7800406496913]]], "type": "Polygon"}, "id": "545", "properties": {"OBJECTID": 3971, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 8376.279296875, "Shape__Length": 433.926033320683, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9348420867367, 32.7804799219601, -79.9333205393317, 32.7813892006696], "geometry": {"coordinates": [[[-79.93437189629, 32.7805191197142], [-79.9341878474331, 32.7805354683194], [-79.9341495714349, 32.7805389144379], [-79.9339761103221, 32.78055432778], [-79.9333205393317, 32.7806126085792], [-79.9333405828134, 32.7807698082203], [-79.9333494432597, 32.7808435861721], [-79.9333583362229, 32.7809147039927], [-79.9333672302803, 32.7809857334426], [-79.933376886307, 32.7810609811074], [-79.9333864605249, 32.7811429259906], [-79.9333946744631, 32.7812030427121], [-79.9334012931059, 32.7812605662751], [-79.933408011407, 32.7813099336052], [-79.9334452772538, 32.7813892006696], [-79.934191569058, 32.7810969437562], [-79.9343656728191, 32.781028967713], [-79.9347220555191, 32.7808896482836], [-79.9347269674055, 32.780887200186], [-79.934731878191, 32.780884667306], [-79.9347351485673, 32.7808833222882], [-79.9347376066284, 32.7808819683934], [-79.9347400625434, 32.7808806153816], [-79.9347425195259, 32.780879262379], [-79.9347449786431, 32.780877821917], [-79.9347474366707, 32.7808763832491], [-79.934749894665, 32.7808748598083], [-79.9347523537597, 32.7808733336716], [-79.9347548138889, 32.7808718102493], [-79.9347589186074, 32.7808686688254], [-79.9347613787471, 32.7808670570232], [-79.9347638409885, 32.7808653604668], [-79.9347663000605, 32.7808637486552], [-79.9347704089925, 32.7808603493427], [-79.9347728722788, 32.7808585671209], [-79.9347769822664, 32.780854993763], [-79.9347810953899, 32.7808513383654], [-79.9347852074564, 32.7808475945785], [-79.934787671787, 32.7808456392131], [-79.934790973618, 32.7808418035986], [-79.9347934379484, 32.7808398482331], [-79.9347950888414, 32.7808378010121], [-79.9347967408017, 32.7808357538006], [-79.934798392762, 32.780833706589], [-79.9348000457897, 32.7808316593866], [-79.9348016977498, 32.780829612175], [-79.9348033496767, 32.7808274801905], [-79.9348050027149, 32.7808253446083], [-79.934806655709, 32.7808232126331], [-79.9348083097816, 32.7808210797654], [-79.9348099628195, 32.7808189441832], [-79.9348116168587, 32.7808167265426], [-79.9348132698632, 32.7808145061875], [-79.9348157645262, 32.7808100647257], [-79.9348174207107, 32.7808077587239], [-79.9348199164956, 32.7808032252845], [-79.9348224122139, 32.7807986097776], [-79.9348240673196, 32.7807963046682], [-79.9348257517355, 32.7807915973246], [-79.9348274089537, 32.7807892065591], [-79.9348282517446, 32.7807868050953], [-79.9348290944915, 32.7807844072382], [-79.9348299372383, 32.7807820093812], [-79.9348307799412, 32.7807796151312], [-79.9348316216205, 32.7807772172648], [-79.9348333081921, 32.7807723331803], [-79.9348341519729, 32.7807698505597], [-79.9348349957647, 32.7807673670374], [-79.9348358395787, 32.7807649691897], [-79.9348366834034, 32.7807624829621], [-79.934837527184, 32.7807600003416], [-79.9348375575612, 32.7807575106388], [-79.9348384024311, 32.780754938746], [-79.9348384328083, 32.7807524490433], [-79.9348392765997, 32.7807499655209], [-79.934839306977, 32.7807474758182], [-79.9348401518356, 32.7807449048271], [-79.9348401822238, 32.7807424142226], [-79.9348410270823, 32.7807398432316], [-79.9348410574595, 32.7807373535288], [-79.9348410888818, 32.7807347781608], [-79.9348411193029, 32.780732284851], [-79.9348411507143, 32.7807297103848], [-79.934841993438, 32.7807272268532], [-79.9348420248933, 32.7807246487799], [-79.9348420552704, 32.7807221590772], [-79.9348420867367, 32.7807195801022], [-79.9348413058125, 32.7807169985631], [-79.9348413362116, 32.7807145070569], [-79.934841367656, 32.7807119298854], [-79.9348413980331, 32.7807094401827], [-79.9348406160965, 32.7807068541256], [-79.9348124724002, 32.7804799219601], [-79.93437189629, 32.7805191197142]]], "type": "Polygon"}, "id": "546", "properties": {"OBJECTID": 3972, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 12635.140625, "Shape__Length": 487.396349810287, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9352329374512, 32.7810438506855, -79.9334809478334, 32.7823656162294], "geometry": {"coordinates": [[[-79.9343645342035, 32.7811222463509], [-79.9341511989936, 32.7812051694159], [-79.9340302263454, 32.7812523040657], [-79.9338405957541, 32.7813259882185], [-79.9334809478334, 32.7814658763695], [-79.9335648449832, 32.7815903035], [-79.9336111792803, 32.7816597708589], [-79.9336543323788, 32.7817232845103], [-79.9337142493564, 32.781813057809], [-79.9338380846804, 32.7819978752462], [-79.9338764310709, 32.7820553316859], [-79.9339619247021, 32.7821823508026], [-79.9340442236308, 32.7823045325342], [-79.9340849665164, 32.7823656162294], [-79.9343507020031, 32.7822554038268], [-79.9344504557415, 32.7822139252207], [-79.9345780091856, 32.782160917884], [-79.9347161882362, 32.7821037940751], [-79.9348363818249, 32.7820539022564], [-79.9352329374512, 32.7818894190414], [-79.934565610296, 32.7810438506855], [-79.9343645342035, 32.7811222463509]]], "type": "Polygon"}, "id": "547", "properties": {"OBJECTID": 3973, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 18563.123046875, "Shape__Length": 546.706962538486, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9358064379713, 32.7820101902771, -79.9341373674682, 32.7832112412081], "geometry": {"coordinates": [[[-79.9351411622474, 32.7820771714745], [-79.9350022046761, 32.7821314545144], [-79.9349278160136, 32.7821609561713], [-79.9344553486374, 32.7823462508686], [-79.9343490821294, 32.7823881047293], [-79.9341373674682, 32.7824713025551], [-79.9342244405417, 32.7826022825819], [-79.9342659834407, 32.7826645807437], [-79.9343434698627, 32.7827812191526], [-79.9343922016184, 32.7828543171447], [-79.9344273527206, 32.7829070208623], [-79.9345032473163, 32.7830208108354], [-79.9345463902027, 32.7830852692046], [-79.9345871306346, 32.7831466124387], [-79.9346302715653, 32.7832112412081], [-79.9350788057193, 32.7829875979278], [-79.9352989775778, 32.7828780176258], [-79.9358064379713, 32.7826249877848], [-79.9355195493085, 32.782268498938], [-79.9355011150903, 32.7822458341381], [-79.9354642488268, 32.7822003286909], [-79.9354153730127, 32.7821390006373], [-79.9353111886348, 32.7820101902771], [-79.9351411622474, 32.7820771714745]]], "type": "Polygon"}, "id": "548", "properties": {"OBJECTID": 3974, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 15547.99609375, "Shape__Length": 507.049664406445, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9428079121587, 32.7893860628535, -79.9424086102339, 32.7896807245209], "geometry": {"coordinates": [[[-79.9424865453723, 32.789633625118], [-79.9424867210859, 32.7896339269479], [-79.9425146291756, 32.7896807245209], [-79.9428078610821, 32.7895625975637], [-79.9428079121587, 32.7895623472947], [-79.9427812934934, 32.7895159198629], [-79.9427808265027, 32.7895161304644], [-79.9427731254061, 32.7895029900104], [-79.9427045959341, 32.7893860628535], [-79.9427045058328, 32.7893860972464], [-79.9424086102339, 32.7895001940697], [-79.9424865453723, 32.789633625118]]], "type": "Polygon"}, "id": "549", "properties": {"OBJECTID": 4096, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 955.4765625, "Shape__Length": 125.224405768461, "ZONE_BASE": "LB", "__folium_color": "#c5b0d5"}, "type": "Feature"}, {"bbox": [-79.9340238082137, 32.7836135241393, -79.933063020259, 32.7848602119597], "geometry": {"coordinates": [[[-79.933063020259, 32.7836970810171], [-79.9333894966402, 32.7842411248395], [-79.9333213834764, 32.7842730502828], [-79.9334050329449, 32.7843945335911], [-79.9335665086853, 32.784643183147], [-79.9337168711462, 32.7848602119597], [-79.9340238082137, 32.7847179644154], [-79.9337736530928, 32.7843458515035], [-79.9338933845711, 32.7842901243687], [-79.9337548263463, 32.7840840080632], [-79.9336694050836, 32.7841237298262], [-79.9335757494433, 32.7839643509205], [-79.9334858394091, 32.7840040316229], [-79.933260239886, 32.7836135241393], [-79.933063020259, 32.7836970810171]]], "type": "Polygon"}, "id": "550", "properties": {"OBJECTID": 4174, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 6160.86328125, "Shape__Length": 448.693146823964, "ZONE_BASE": "MU-2", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9368382395776, 32.7841112219936, -79.935898820951, 32.7850162102677], "geometry": {"coordinates": [[[-79.9365849764363, 32.7848832068968], [-79.9366263724098, 32.7849444712712], [-79.9366739729287, 32.7850162102677], [-79.9367262193456, 32.7849894667957], [-79.9367491496488, 32.7849777302873], [-79.9367492098138, 32.784977699246], [-79.9367743790027, 32.7849648161173], [-79.9367817779927, 32.7849609294774], [-79.9368382395776, 32.7849312717845], [-79.9363203167862, 32.7841112219936], [-79.9362585521224, 32.7841446084155], [-79.9360780574204, 32.7842421740704], [-79.9360444362319, 32.7841936352869], [-79.9359542886849, 32.7842393877897], [-79.9359164163995, 32.7841868141601], [-79.9358993889881, 32.7841957511509], [-79.9359407767369, 32.7842570111791], [-79.9360084805167, 32.7843572239807], [-79.9360660551111, 32.7844373594723], [-79.9359184171394, 32.7845152611293], [-79.9359294746521, 32.7845307480288], [-79.935898820951, 32.7845463591298], [-79.9359189944858, 32.7845751020388], [-79.9359720854574, 32.7846507444131], [-79.9360596668519, 32.7846050805009], [-79.9360892190312, 32.7846473513103], [-79.9360745442104, 32.784655004731], [-79.9360963104646, 32.7846840311099], [-79.936106042727, 32.784697009286], [-79.9361122808642, 32.7847054163342], [-79.9361413822484, 32.7847443842963], [-79.9361745390366, 32.7847884756717], [-79.936219210375, 32.7848478811253], [-79.936235222539, 32.7848683847013], [-79.9362355359789, 32.7848689465647], [-79.9362369371146, 32.7848714532248], [-79.9362896258809, 32.7849442178126], [-79.9363150808494, 32.7849309296331], [-79.9363596836882, 32.78490764694], [-79.936538690127, 32.7848141992252], [-79.9365849764363, 32.7848832068968]]], "type": "Polygon"}, "id": "551", "properties": {"OBJECTID": 4175, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5945.833984375, "Shape__Length": 413.210160358079, "ZONE_BASE": "MU-2", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9393210276697, 32.7902974023954, -79.938898164436, 32.7905716635564], "geometry": {"coordinates": [[[-79.939223727696, 32.7902974023954], [-79.938898164436, 32.7904430783088], [-79.9389855838297, 32.7905716635564], [-79.9393210276697, 32.7904434857092], [-79.939223727696, 32.7902974023954]]], "type": "Polygon"}, "id": "552", "properties": {"OBJECTID": 4286, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 855.501953125, "Shape__Length": 123.855823376555, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.939223727696, 32.7900739834465, -79.9386036577099, 32.7906286600914], "geometry": {"coordinates": [[[-79.9390692794407, 32.7900739834465], [-79.9386082844411, 32.7902845878001], [-79.9386036577099, 32.7902876093956], [-79.9386688416651, 32.7903852142005], [-79.9387542479599, 32.7905131057765], [-79.9388364209677, 32.7906286600914], [-79.9389855838297, 32.7905716635564], [-79.938898164436, 32.7904430783088], [-79.939223727696, 32.7902974023954], [-79.9391252659016, 32.7901555773185], [-79.9390692794407, 32.7900739834465]]], "type": "Polygon"}, "id": "553", "properties": {"OBJECTID": 4287, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2361.560546875, "Shape__Length": 224.254780967588, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9390692794407, 32.7900041117291, -79.938562468002, 32.7902876093956], "geometry": {"coordinates": [[[-79.938562468002, 32.7902180163191], [-79.9386036577099, 32.7902876093956], [-79.9390692794407, 32.7900739834465], [-79.9390199624335, 32.7900041117291], [-79.938562468002, 32.7902180163191]]], "type": "Polygon"}, "id": "554", "properties": {"OBJECTID": 4294, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 617.04296875, "Shape__Length": 138.376281318919, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9526142518425, 32.7879097940772, -79.951850238092, 32.7886137764045], "geometry": {"coordinates": [[[-79.9518722792375, 32.7882385198539], [-79.9518652916232, 32.7882515717636], [-79.9518628594803, 32.7882588639035], [-79.9518609512153, 32.7882645841247], [-79.9518589266779, 32.7882706514579], [-79.9518572841747, 32.7882755785379], [-79.9518554645073, 32.7882810334769], [-79.95185441125, 32.7882841907946], [-79.9518534931172, 32.7882869425425], [-79.9518524142622, 32.7882902754986], [-79.9518511495707, 32.7882939694001], [-79.951850238092, 32.7882967004629], [-79.9519602991168, 32.7885445412489], [-79.951990247622, 32.7886137764045], [-79.9522172582485, 32.7885382378217], [-79.9523056245666, 32.7885077306643], [-79.9522773427478, 32.7884432760565], [-79.9522321131702, 32.7883401932235], [-79.9522781591639, 32.7883225941474], [-79.9523228300863, 32.7883055207726], [-79.9523835071777, 32.7882849058557], [-79.9524336290141, 32.7882678764097], [-79.9525038522453, 32.7884339083683], [-79.9525315860945, 32.7884255269817], [-79.9525621916951, 32.7884162773585], [-79.9525940702822, 32.7884066436221], [-79.9526142518425, 32.7884005441352], [-79.9525658619182, 32.7882890716634], [-79.9525413888074, 32.7882312502524], [-79.9524121713739, 32.7879250731538], [-79.9524057235143, 32.7879097940772], [-79.9523113245682, 32.7879519491384], [-79.9522106850598, 32.7879996195107], [-79.9521100454415, 32.7880472898004], [-79.952019465865, 32.7880922369657], [-79.9520048536397, 32.7881003491573], [-79.9520017739875, 32.7881020822566], [-79.9519977494846, 32.7881043465594], [-79.9519953762622, 32.7881060207778], [-79.9519931290256, 32.7881076058917], [-79.9519880615075, 32.7881109299337], [-79.9519862128675, 32.788112485094], [-79.9519844351098, 32.7881137387469], [-79.9519827897867, 32.7881148997435], [-79.9519811250743, 32.7881160750033], [-79.9519791685767, 32.7881174542837], [-79.9519777967604, 32.7881184219249], [-79.9519744372059, 32.7881207920266], [-79.95196724109, 32.7881258681352], [-79.9519551456124, 32.7881344013923], [-79.9519480379548, 32.7881411800192], [-79.951941164683, 32.7881477333912], [-79.951935548536, 32.7881530899755], [-79.9519336736039, 32.7881548784849], [-79.9519322620102, 32.7881562245554], [-79.9519183415497, 32.7881694993524], [-79.9519109074094, 32.7881791935168], [-79.9519019710415, 32.7881908462219], [-79.9518952744606, 32.7881995781336], [-79.9518881635343, 32.7882088512033], [-79.9518842110236, 32.78821623403], [-79.9518811551756, 32.788221941715], [-79.9518754770733, 32.7882325464425], [-79.9518748086602, 32.78823379607], [-79.9518722792375, 32.7882385198539]]], "type": "Polygon"}, "id": "555", "properties": {"OBJECTID": 4330, "ORDNO": "2014-063", "ORDSTAT": null, "Shape__Area": 4141.400390625, "Shape__Length": 319.264365445695, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9366739729287, 32.7848141992252, -79.9359176416521, 32.7853436721821], "geometry": {"coordinates": [[[-79.9363596836882, 32.78490764694], [-79.9363150808494, 32.7849309296331], [-79.9362896258809, 32.7849442178126], [-79.9362554807126, 32.7849620406109], [-79.9362046900164, 32.7849885530451], [-79.9359176416521, 32.7851383839997], [-79.9359700677519, 32.7852169236026], [-79.9360116110388, 32.7852792184653], [-79.9360546953506, 32.7853436721821], [-79.9363156673194, 32.785205675334], [-79.9365296818379, 32.7850925094376], [-79.9366739729287, 32.7850162102677], [-79.9366263724098, 32.7849444712712], [-79.9365849764363, 32.7848832068968], [-79.936538690127, 32.7848141992252], [-79.9363596836882, 32.78490764694]]], "type": "Polygon"}, "id": "556", "properties": {"OBJECTID": 4467, "ORDNO": "2018-023", "ORDSTAT": null, "Shape__Area": 2516.099609375, "Shape__Length": 224.685380794728, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.952991436134, 32.787764728605, -79.9524057235143, 32.7882890716634], "geometry": {"coordinates": [[[-79.9526995223864, 32.7877682260139], [-79.9526506723045, 32.7877917650705], [-79.9524057235143, 32.7879097940772], [-79.9524121713739, 32.7879250731538], [-79.9525658619182, 32.7882890716634], [-79.952586489326, 32.7882810487782], [-79.9527358436069, 32.7882229270865], [-79.9527578215281, 32.7882158870084], [-79.952893630014, 32.7881721975712], [-79.952991436134, 32.788141053757], [-79.9528724889491, 32.7879838010897], [-79.9528716397394, 32.7879826791543], [-79.9528194259948, 32.7879146758464], [-79.9527870953588, 32.7878709640698], [-79.9527438772766, 32.7878137740651], [-79.9527426024535, 32.7878120866428], [-79.9527067806313, 32.787764728605], [-79.9526995223864, 32.7877682260139]]], "type": "Polygon"}, "id": "557", "properties": {"OBJECTID": 4470, "ORDNO": "2019-066", "ORDSTAT": null, "Shape__Area": 2480.681640625, "Shape__Length": 202.273482630443, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9533100496683, 32.787564142915, -79.9527067806313, 32.788141053757], "geometry": {"coordinates": [[[-79.9531112393679, 32.7875736969402], [-79.9530288902257, 32.7876126847016], [-79.9529373554342, 32.7876554563524], [-79.9528375957319, 32.7877027343481], [-79.9527450752254, 32.7877465805234], [-79.9527067806313, 32.787764728605], [-79.9527426024535, 32.7878120866428], [-79.9527438772766, 32.7878137740651], [-79.9527866640611, 32.7878703381125], [-79.9528201506901, 32.787914607197], [-79.9528716397394, 32.7879826791543], [-79.9528724889491, 32.7879838010897], [-79.952991436134, 32.788141053757], [-79.9529916301286, 32.7881409913869], [-79.9530100410968, 32.7881350967309], [-79.9530533151058, 32.7881212424102], [-79.9530887846702, 32.7881098671709], [-79.9530885141938, 32.7881091848732], [-79.953060303192, 32.7880453758705], [-79.9531607568958, 32.7880131642612], [-79.9532612105657, 32.787981038244], [-79.9533100496683, 32.7879654440103], [-79.9531772598154, 32.7876627299897], [-79.9531629076954, 32.7876299373382], [-79.9531341109746, 32.787564142915], [-79.9531112393679, 32.7875736969402]]], "type": "Polygon"}, "id": "558", "properties": {"OBJECTID": 4471, "ORDNO": "2015-151", "ORDSTAT": null, "Shape__Area": 2697.572265625, "Shape__Length": 220.627311680878, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9391578927402, 32.790686947798, -79.9389202062084, 32.7909253554465], "geometry": {"coordinates": [[[-79.9389202062084, 32.7907429134561], [-79.9390259314595, 32.7909253554465], [-79.9390344633413, 32.7909219357191], [-79.9390387507323, 32.7909202179246], [-79.9390479041869, 32.7909159053577], [-79.9391233557638, 32.7908803536022], [-79.9391301048209, 32.7908771781383], [-79.9391355159213, 32.7908746286711], [-79.9391416100261, 32.7908717541519], [-79.9391442065972, 32.7908705294269], [-79.9391578927402, 32.790864080925], [-79.9390550378513, 32.790686947798], [-79.9389202062084, 32.7907429134561]]], "type": "Polygon"}, "id": "559", "properties": {"OBJECTID": 4481, "ORDNO": "", "ORDSTAT": null, "Shape__Area": 444.44921875, "Shape__Length": 86.4988658835365, "ZONE_BASE": "LI", "__folium_color": "#8c564b"}, "type": "Feature"}, {"bbox": [-79.9552851555561, 32.7859810228596, -79.9544893862766, 32.7865762851892], "geometry": {"coordinates": [[[-79.9544893862766, 32.7861950365424], [-79.9545943979345, 32.7863252848545], [-79.9546298069757, 32.7863704166825], [-79.9547438497936, 32.7865157692928], [-79.9547944274642, 32.7865762851892], [-79.9548229176074, 32.7865629866407], [-79.9551706177299, 32.7864006007373], [-79.9552851555561, 32.7863469457415], [-79.9551154368375, 32.7859810228596], [-79.954994539825, 32.7860222529169], [-79.9550230921146, 32.7860836573735], [-79.9546579453835, 32.7862085307911], [-79.9546293922425, 32.7861471262393], [-79.9544893862766, 32.7861950365424]]], "type": "Polygon"}, "id": "560", "properties": {"OBJECTID": 4576, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3470.6171875, "Shape__Length": 268.043690716913, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9288176133352, 32.7853722749265, -79.9281428297916, 32.7857876353681], "geometry": {"coordinates": [[[-79.9288176133352, 32.7853722749265], [-79.9281428297916, 32.7853877835428], [-79.9282114022462, 32.7857876353681], [-79.9288046817762, 32.7857124128153], [-79.9288086992554, 32.785646899822], [-79.9288176133352, 32.7853722749265]]], "type": "Polygon"}, "id": "561", "properties": {"OBJECTID": 4654, "ORDNO": "2018-033", "ORDSTAT": null, "Shape__Area": 3480.279296875, "Shape__Length": 240.491378812127, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9288046817762, 32.7857124128153, -79.9282114022462, 32.7864978030788], "geometry": {"coordinates": [[[-79.9288046817762, 32.7857124128153], [-79.9282114022462, 32.7857876353681], [-79.9283333399646, 32.7864978030788], [-79.9285766011796, 32.7864089997019], [-79.9285982378247, 32.7863672601024], [-79.9286274711889, 32.7863108672509], [-79.9286689323681, 32.7862308848167], [-79.9287155133677, 32.7861410251971], [-79.9287284844398, 32.7861090694747], [-79.9287404372249, 32.7860768324801], [-79.9287513661098, 32.7860443367106], [-79.9287612612001, 32.7860116055275], [-79.928770115804, 32.7859786623201], [-79.9287779242975, 32.7859455304873], [-79.9287846799776, 32.7859122343201], [-79.9287903793443, 32.7858787981374], [-79.928795017852, 32.7858452444458], [-79.9287985909331, 32.7858115975548], [-79.9288046817762, 32.7857124128153]]], "type": "Polygon"}, "id": "562", "properties": {"OBJECTID": 4655, "ORDNO": "2018-034", "ORDSTAT": null, "Shape__Area": 4624.8828125, "Shape__Length": 287.901529250884, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9505286144268, 32.7875703870497, -79.9500919745083, 32.7881802222313], "geometry": {"coordinates": [[[-79.950240235231, 32.788009229778], [-79.9502959291871, 32.788104891767], [-79.9503397871557, 32.7881802222313], [-79.9504011481587, 32.7881517754155], [-79.9503520282132, 32.7880647670652], [-79.9503138269194, 32.7879779687101], [-79.9504489894224, 32.7879138444734], [-79.9504265269103, 32.7878654550299], [-79.9503687634449, 32.7877724014902], [-79.9505286144268, 32.7876946584402], [-79.950470641224, 32.7875703870497], [-79.950174180172, 32.7877145882534], [-79.9500919745083, 32.7877545736131], [-79.950240235231, 32.788009229778]]], "type": "Polygon"}, "id": "563", "properties": {"OBJECTID": 4675, "ORDNO": "2018-070", "ORDSTAT": null, "Shape__Area": 1593.658203125, "Shape__Length": 220.547198048166, "ZONE_BASE": "MU-1/WH", "__folium_color": "#e377c2"}, "type": "Feature"}, {"bbox": [-79.9296526804037, 32.7816437864404, -79.9292074659685, 32.7818119914957], "geometry": {"coordinates": [[[-79.9296526804037, 32.7817614291406], [-79.9296382478186, 32.7816437864404], [-79.9292074659685, 32.7816886310235], [-79.9292190222347, 32.7818119914957], [-79.9296526804037, 32.7817614291406]]], "type": "Polygon"}, "id": "564", "properties": {"OBJECTID": 4694, "ORDNO": "2018-129", "ORDSTAT": null, "Shape__Area": 776.8125, "Shape__Length": 129.100885231526, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9395994401645, 32.7905588768947, -79.9390387507323, 32.7911142702362], "geometry": {"coordinates": [[[-79.9390387507323, 32.7909202179246], [-79.9390408192725, 32.790923346294], [-79.9391074024795, 32.7910240580979], [-79.9390708638855, 32.7910411773641], [-79.9391239038713, 32.7911142702362], [-79.9392660932775, 32.7910396045395], [-79.9395994401645, 32.7908580145398], [-79.9395509835049, 32.7907863314918], [-79.9395021409462, 32.7907140778249], [-79.9394696698171, 32.790666044162], [-79.9393972232009, 32.7905588768947], [-79.9391585442121, 32.7906482087107], [-79.9390550378513, 32.790686947798], [-79.9391578927402, 32.790864080925], [-79.9391442065972, 32.7908705294269], [-79.9391416100261, 32.7908717541519], [-79.9391355159213, 32.7908746286711], [-79.9391301048209, 32.7908771781383], [-79.9391233557638, 32.7908803536022], [-79.9390479041869, 32.7909159053577], [-79.9390387507323, 32.7909202179246]]], "type": "Polygon"}, "id": "565", "properties": {"OBJECTID": 4696, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 2544.94140625, "Shape__Length": 223.169726584607, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9412577716833, 32.790494882995, -79.9399287343528, 32.7910507882141], "geometry": {"coordinates": [[[-79.9399287343528, 32.7909621090557], [-79.9399918986174, 32.7910507882141], [-79.9403759449049, 32.7908699627127], [-79.940468992737, 32.7910065399004], [-79.9412577716833, 32.7906372655724], [-79.9411682687692, 32.790494882995], [-79.9411678618383, 32.7904950706625], [-79.9406058753459, 32.7907547882293], [-79.9405447585507, 32.7906626748964], [-79.9401706707187, 32.7908309362236], [-79.9401000386544, 32.7908598495719], [-79.940110339341, 32.7908768563423], [-79.9399287343528, 32.7909621090557]]], "type": "Polygon"}, "id": "566", "properties": {"OBJECTID": 4698, "ORDNO": "2018-139", "ORDSTAT": null, "Shape__Area": 3324.0546875, "Shape__Length": 372.424157880816, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9497142560094, 32.7812193011782, -79.9483959812339, 32.7822487698167], "geometry": {"coordinates": [[[-79.9484989285031, 32.7814740107296], [-79.9483959812339, 32.7815029531071], [-79.9483960289797, 32.7815030662468], [-79.9486806296206, 32.7820993286348], [-79.9486979810121, 32.7821356836808], [-79.9487273335832, 32.7821971821813], [-79.9487293562183, 32.7822011198354], [-79.9487308380055, 32.7822036928758], [-79.9487349980887, 32.7822099242249], [-79.9487397813382, 32.7822158263481], [-79.9487429350432, 32.7822191911364], [-79.9487486395474, 32.7822244789101], [-79.9487535790985, 32.7822283947334], [-79.9487601869969, 32.7822328668947], [-79.948764363846, 32.7822353124867], [-79.9487701560594, 32.7822382814956], [-79.9487792659602, 32.7822420798409], [-79.9487855781332, 32.7822441586973], [-79.9487904155677, 32.7822454727518], [-79.948796979107, 32.7822468909194], [-79.9488053214385, 32.7822481160473], [-79.9488137587086, 32.7822487269394], [-79.9488205331097, 32.7822487698167], [-79.948830659919, 32.7822480884671], [-79.9488373426858, 32.7822471412441], [-79.9488439297675, 32.7822458063117], [-79.9488487895859, 32.7822445521324], [-79.9491237502543, 32.7821673031165], [-79.949320638602, 32.7821119874747], [-79.9497142560094, 32.7820013998739], [-79.9497138747432, 32.7820004352455], [-79.9496517945009, 32.7818434809453], [-79.9496058501491, 32.7817273216421], [-79.9494049137815, 32.7812193011782], [-79.9484989285031, 32.7814740107296]]], "type": "Polygon"}, "id": "567", "properties": {"OBJECTID": 4707, "ORDNO": "2019-009", "ORDSTAT": null, "Shape__Area": 12539.53125, "Shape__Length": 444.607668048586, "ZONE_BASE": "MU-1/WH", "__folium_color": "#e377c2"}, "type": "Feature"}, {"bbox": [-79.9534297328314, 32.7875169630234, -79.9531341109746, 32.7879654440103], "geometry": {"coordinates": [[[-79.9531341109746, 32.787564142915], [-79.9531629076954, 32.7876299373382], [-79.9531790608529, 32.7876658540227], [-79.9533100611078, 32.7879644899674], [-79.9533100496683, 32.7879654440103], [-79.9533102104385, 32.7879653921775], [-79.9533118631183, 32.7879648625103], [-79.9533617263606, 32.7879488892289], [-79.9534297328314, 32.7879272606104], [-79.9534296694083, 32.7879271184799], [-79.9532470514852, 32.7875169630234], [-79.9531341109746, 32.787564142915]]], "type": "Polygon"}, "id": "568", "properties": {"OBJECTID": 4724, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 806.6953125, "Shape__Length": 142.941737136864, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9536943641806, 32.7873959014098, -79.9532470514852, 32.7879272606104], "geometry": {"coordinates": [[[-79.9534795524568, 32.7874075682623], [-79.9533833610791, 32.7874528273502], [-79.9532470514852, 32.7875169630234], [-79.9534296694083, 32.7879271184799], [-79.9534297328314, 32.7879272606104], [-79.9534566218868, 32.7879187031472], [-79.953557299116, 32.7878865237896], [-79.9536943641806, 32.7878468591868], [-79.9536660163082, 32.7877809893686], [-79.9535043497268, 32.7873959014098], [-79.9534795524568, 32.7874075682623]]], "type": "Polygon"}, "id": "569", "properties": {"OBJECTID": 4725, "ORDNO": "2019-067", "ORDSTAT": null, "Shape__Area": 1927.404296875, "Shape__Length": 185.511144357817, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9354207045445, 32.780506000781, -79.9349414899115, 32.7807766579405], "geometry": {"coordinates": [[[-79.9349414899115, 32.7806021905926], [-79.9349577384014, 32.7807351083569], [-79.9349840766738, 32.7807766579405], [-79.935199059937, 32.7806918548353], [-79.9354197648341, 32.7806046977562], [-79.9354207045445, 32.7806043271628], [-79.9354144647602, 32.780506000781], [-79.9351201631362, 32.7805658328397], [-79.9349423828876, 32.7806019756136], [-79.9349414899115, 32.7806021905926]]], "type": "Polygon"}, "id": "570", "properties": {"OBJECTID": 4729, "ORDNO": "2019-075", "ORDSTAT": null, "Shape__Area": 983.732421875, "Shape__Length": 144.827432143097, "ZONE_BASE": "UC", "__folium_color": "#9edae5"}, "type": "Feature"}, {"bbox": [-79.9307521299662, 32.7893131483157, -79.9303674326735, 32.7896097259402], "geometry": {"coordinates": [[[-79.9304387581874, 32.7895940559966], [-79.9304634752393, 32.7895837530475], [-79.9304781000735, 32.7896079987075], [-79.9305268334039, 32.7895876842689], [-79.9305401293042, 32.7896097259402], [-79.9307521299662, 32.7895213528381], [-79.9306252874551, 32.7893131483157], [-79.9304238047291, 32.7894018809872], [-79.9303674326735, 32.7894766175657], [-79.9304157797616, 32.7895562232834], [-79.9304387581874, 32.7895940559966]]], "type": "Polygon"}, "id": "571", "properties": {"OBJECTID": 4742, "ORDNO": "2020-002", "ORDSTAT": null, "Shape__Area": 1013.04296875, "Shape__Length": 127.815433868597, "ZONE_BASE": "DR-2F", "__folium_color": "#98df8a"}, "type": "Feature"}, {"bbox": [-79.9278336052032, 32.7887119714269, -79.9268904651449, 32.7897384330269], "geometry": {"coordinates": [[[-79.9268904651449, 32.7887886676041], [-79.9270120605985, 32.7897384330269], [-79.9277714689888, 32.7894043090512], [-79.9278336052032, 32.7893769705928], [-79.9277668049692, 32.7888213641973], [-79.9277536358316, 32.7887119714269], [-79.9268938575212, 32.7887882888266], [-79.9268904651449, 32.7887886676041]]], "type": "Polygon"}, "id": "572", "properties": {"OBJECTID": 4745, "ORDNO": "2020-011", "ORDSTAT": null, "Shape__Area": 10351.23046875, "Shape__Length": 414.843856228708, "ZONE_BASE": "PUD", "__folium_color": "#7f7f7f"}, "type": "Feature"}, {"bbox": [-79.9411678618383, 32.7900677564819, -79.9396278944257, 32.7909621090557], "geometry": {"coordinates": [[[-79.9397285261549, 32.7906810188727], [-79.9397420842082, 32.7907000532725], [-79.9398007454745, 32.7907824158293], [-79.9399287343528, 32.7909621090557], [-79.940110339341, 32.7908768563423], [-79.9401000386544, 32.7908598495719], [-79.9401706707187, 32.7908309362236], [-79.9405447585507, 32.7906626748964], [-79.9406058753459, 32.7907547882293], [-79.9411678618383, 32.7904950706625], [-79.9410942561525, 32.7903847154173], [-79.9409305768505, 32.7901410773683], [-79.9408787121054, 32.7900677564819], [-79.9408110436398, 32.7900935971781], [-79.9402313738811, 32.7903120344009], [-79.9403904423836, 32.7905270831563], [-79.940373180996, 32.7905344739116], [-79.9402163349937, 32.7903177038415], [-79.9396278944257, 32.7905397381465], [-79.9397285261549, 32.7906810188727]]], "type": "Polygon"}, "id": "573", "properties": {"OBJECTID": 4821, "ORDNO": "", "ORDSTAT": null, "Shape__Area": 9613.486328125, "Shape__Length": 517.381890593111, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9270178257797, 32.7799365274252, -79.9262999477451, 32.7801301108793], "geometry": {"coordinates": [[[-79.9262999477451, 32.7800090233204], [-79.926331681132, 32.7801301108793], [-79.9265583974334, 32.7801051355364], [-79.9270178257797, 32.780054519222], [-79.9270068132447, 32.7799365274252], [-79.9265280309896, 32.7799892816642], [-79.9265272162993, 32.7799839969714], [-79.9262999477451, 32.7800090233204]]], "type": "Polygon"}, "id": "574", "properties": {"OBJECTID": 4829, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1240.505859375, "Shape__Length": 189.096519482796, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9351251055956, 32.7835575967245, -79.9343500677768, 32.7843492843869], "geometry": {"coordinates": [[[-79.9346881814853, 32.7835575967245], [-79.9343939119485, 32.7836987522594], [-79.9344402071525, 32.783767544391], [-79.9343500677768, 32.7838097948583], [-79.9343837066752, 32.7838615168471], [-79.9344209526419, 32.7839187840671], [-79.9344826815209, 32.7840012967622], [-79.9345661322877, 32.783960808752], [-79.934617249163, 32.7840356318971], [-79.9346622075156, 32.7841145299963], [-79.9347554052471, 32.7842531654547], [-79.934819875948, 32.7843490075343], [-79.9348199782639, 32.7843492843869], [-79.9348202445339, 32.7843491613501], [-79.9351251055956, 32.7842075378194], [-79.9350603858793, 32.7841112608553], [-79.9350234495253, 32.7840563151477], [-79.9349672119934, 32.7839726565043], [-79.9349151718769, 32.7838886042016], [-79.9348675744308, 32.7838169565256], [-79.9348136958718, 32.7837337088439], [-79.9347773349124, 32.78367748025], [-79.9347421004441, 32.7836257913741], [-79.9346881814853, 32.7835575967245]]], "type": "Polygon"}, "id": "575", "properties": {"OBJECTID": 4833, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 4138.232421875, "Shape__Length": 296.159532569818, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9346461159004, 32.7831291154843, -79.9338962946536, 32.7837197365193], "geometry": {"coordinates": [[[-79.9338962946536, 32.7833467899291], [-79.9340569639614, 32.7836100279968], [-79.9341341116165, 32.7835748566987], [-79.934287187167, 32.7835050687841], [-79.9343267659825, 32.783569916442], [-79.9341420714343, 32.7836554978462], [-79.9341828587051, 32.7837197365193], [-79.9346461159004, 32.7834950281133], [-79.9346125092426, 32.7834375139897], [-79.9345712712067, 32.7833755540837], [-79.934519763382, 32.7833038442598], [-79.934478804342, 32.7832424783563], [-79.9344415006156, 32.7831868150183], [-79.934403594042, 32.7831291154843], [-79.9339632051698, 32.7833158799865], [-79.9338962946536, 32.7833467899291]]], "type": "Polygon"}, "id": "576", "properties": {"OBJECTID": 4834, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 3353.078125, "Shape__Length": 289.525485577469, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9342892611603, 32.7834782602075, -79.933260239886, 32.7847179644154], "geometry": {"coordinates": [[[-79.9335802590626, 32.7834782602075], [-79.9334987242058, 32.783512666934], [-79.9334521121769, 32.7835324454702], [-79.9333392586429, 32.7835805106125], [-79.933260239886, 32.7836135241393], [-79.9334858394091, 32.7840040316229], [-79.9335757494433, 32.7839643509205], [-79.9336694050836, 32.7841237298262], [-79.9337548263463, 32.7840840080632], [-79.9338933845711, 32.7842901243687], [-79.9337736530928, 32.7843458515035], [-79.9340238082137, 32.7847179644154], [-79.9341436321983, 32.784662646368], [-79.9342892611603, 32.7845951960404], [-79.9342891526827, 32.7845949867714], [-79.9339001938008, 32.7840164116358], [-79.9338946298027, 32.7840190019212], [-79.9338569312795, 32.7839563304018], [-79.933822713099, 32.7838866756252], [-79.9337828844604, 32.7838249062935], [-79.9337894466776, 32.7838224897488], [-79.9337196212781, 32.7837061964162], [-79.9337151088647, 32.7836968140697], [-79.9335802590626, 32.7834782602075]]], "type": "Polygon"}, "id": "577", "properties": {"OBJECTID": 4835, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 5468.873046875, "Shape__Length": 449.276844405998, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9294663913714, 32.7799627949967, -79.9291730420434, 32.7803109966451], "geometry": {"coordinates": [[[-79.9294338454504, 32.7799627949967], [-79.9293076882905, 32.7799801226359], [-79.9293259011288, 32.7800704601967], [-79.9291730420434, 32.780094649645], [-79.9291893323445, 32.7801952359962], [-79.9292061390203, 32.7803109966451], [-79.9294663913714, 32.7802710530949], [-79.9294553297672, 32.7801662802235], [-79.9294338454504, 32.7799627949967]]], "type": "Polygon"}, "id": "578", "properties": {"OBJECTID": 4866, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1031.62109375, "Shape__Length": 142.98363920371, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9290189919443, 32.7801466662593, -79.9284159129389, 32.7803702501698], "geometry": {"coordinates": [[[-79.9284159129389, 32.7801922018609], [-79.9284357567187, 32.7803702501698], [-79.9290189919443, 32.7803253912535], [-79.9289977313839, 32.7801551757163], [-79.9288092477393, 32.7801783800573], [-79.9288009234056, 32.7801466662593], [-79.9286728590705, 32.7801620015275], [-79.9284159129389, 32.7801922018609]]], "type": "Polygon"}, "id": "579", "properties": {"OBJECTID": 4867, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 1551.671875, "Shape__Length": 180.322373068056, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9305147199361, 32.790686950158, -79.9297002912151, 32.7912745929368], "geometry": {"coordinates": [[[-79.9298829013581, 32.7912745929368], [-79.9305147199361, 32.791006964581], [-79.9303577638731, 32.790686950158], [-79.9301685373097, 32.7907676406045], [-79.9300379836821, 32.7908230540517], [-79.9298974189538, 32.7908831009176], [-79.9297002912151, 32.79096730905], [-79.9298829013581, 32.7912745929368]]], "type": "Polygon"}, "id": "580", "properties": {"OBJECTID": 4870, "ORDNO": "2022-056", "ORDSTAT": null, "Shape__Area": 3667.13671875, "Shape__Length": 252.147779367385, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9300379836821, 32.7904981947131, -79.92949428502, 32.79096730905], "geometry": {"coordinates": [[[-79.9298248772614, 32.7904981947131], [-79.92949428502, 32.7906389480773], [-79.9296463987051, 32.790881407503], [-79.9297002912151, 32.79096730905], [-79.9298974189538, 32.7908831009176], [-79.9300379836821, 32.7908230540517], [-79.9298254303876, 32.7904987992726], [-79.9298248772614, 32.7904981947131]]], "type": "Polygon"}, "id": "581", "properties": {"OBJECTID": 4876, "ORDNO": "2022-080", "ORDSTAT": null, "Shape__Area": 2049.32421875, "Shape__Length": 181.703937872181, "ZONE_BASE": "MU-2/WH", "__folium_color": "#f7b6d2"}, "type": "Feature"}, {"bbox": [-79.9301685373097, 32.7904414834559, -79.9298248772614, 32.7908230540517], "geometry": {"coordinates": [[[-79.9299562215939, 32.7904414834559], [-79.9299559597014, 32.7904415956986], [-79.9298259119222, 32.7904977537466], [-79.9298248772614, 32.7904981947131], [-79.9298254303876, 32.7904987992726], [-79.9300379836821, 32.7908230540517], [-79.9301685373097, 32.7907676406045], [-79.9299564636812, 32.7904416803698], [-79.9299562215939, 32.7904414834559]]], "type": "Polygon"}, "id": "582", "properties": {"OBJECTID": 4877, "ORDNO": null, "ORDSTAT": null, "Shape__Area": 804.01171875, "Shape__Length": 131.079578556527, "ZONE_BASE": "GB", "__folium_color": "#d62728"}, "type": "Feature"}, {"bbox": [-79.9476924140989, 32.781393863246, -79.9472083271681, 32.7816355948914], "geometry": {"coordinates": [[[-79.9476551896431, 32.781393863246], [-79.9472083271681, 32.7814968029071], [-79.9472504199615, 32.7816355948914], [-79.9476924140989, 32.781543795036], [-79.9476551896431, 32.781393863246]]], "type": "Polygon"}, "id": "583", "properties": {"OBJECTID": 4899, "ORDNO": "2022-102", "ORDSTAT": null, "Shape__Area": 1002.576171875, "Shape__Length": 141.504383923505, "ZONE_BASE": "PUD", "__folium_color": "#7f7f7f"}, "type": "Feature"}], "type": "FeatureCollection"});\n", "\n", " \n", " \n", - " geo_json_3f5e11aebffb652c641c0a9f6d00d166.bindTooltip(\n", + " geo_json_f307c13e235ec59df2be91ff083bc3a6.bindTooltip(\n", " function(layer){\n", " let div = L.DomUtil.create('div');\n", " \n", @@ -372,59 +412,59 @@ " ,{"className": "foliumtooltip", "sticky": true});\n", " \n", " \n", - " function geo_json_3c0140304d9ef4c017f2a17d988059e5_styler(feature) {\n", + " function geo_json_3115e8c8abe4b5978b36eaa9b6ede8ce_styler(feature) {\n", " switch(feature.id) {\n", " default:\n", " return {"color": "#FFFACD", "fillColor": "#FFFACD", "fillOpacity": 0.5, "weight": 2};\n", " }\n", " }\n", - " function geo_json_3c0140304d9ef4c017f2a17d988059e5_highlighter(feature) {\n", + " function geo_json_3115e8c8abe4b5978b36eaa9b6ede8ce_highlighter(feature) {\n", " switch(feature.id) {\n", " default:\n", " return {"fillOpacity": 0.75};\n", " }\n", " }\n", - " function geo_json_3c0140304d9ef4c017f2a17d988059e5_pointToLayer(feature, latlng) {\n", + " function geo_json_3115e8c8abe4b5978b36eaa9b6ede8ce_pointToLayer(feature, latlng) {\n", " var opts = {"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2, "stroke": true, "weight": 3};\n", " \n", - " let style = geo_json_3c0140304d9ef4c017f2a17d988059e5_styler(feature)\n", + " let style = geo_json_3115e8c8abe4b5978b36eaa9b6ede8ce_styler(feature)\n", " Object.assign(opts, style)\n", " \n", " return new L.CircleMarker(latlng, opts)\n", " }\n", "\n", - " function geo_json_3c0140304d9ef4c017f2a17d988059e5_onEachFeature(feature, layer) {\n", + " function geo_json_3115e8c8abe4b5978b36eaa9b6ede8ce_onEachFeature(feature, layer) {\n", " layer.on({\n", " mouseout: function(e) {\n", " if(typeof e.target.setStyle === "function"){\n", - " geo_json_3c0140304d9ef4c017f2a17d988059e5.resetStyle(e.target);\n", + " geo_json_3115e8c8abe4b5978b36eaa9b6ede8ce.resetStyle(e.target);\n", " }\n", " },\n", " mouseover: function(e) {\n", " if(typeof e.target.setStyle === "function"){\n", - " const highlightStyle = geo_json_3c0140304d9ef4c017f2a17d988059e5_highlighter(e.target.feature)\n", + " const highlightStyle = geo_json_3115e8c8abe4b5978b36eaa9b6ede8ce_highlighter(e.target.feature)\n", " e.target.setStyle(highlightStyle);\n", " }\n", " },\n", " });\n", " };\n", - " var geo_json_3c0140304d9ef4c017f2a17d988059e5 = L.geoJson(null, {\n", - " onEachFeature: geo_json_3c0140304d9ef4c017f2a17d988059e5_onEachFeature,\n", + " var geo_json_3115e8c8abe4b5978b36eaa9b6ede8ce = L.geoJson(null, {\n", + " onEachFeature: geo_json_3115e8c8abe4b5978b36eaa9b6ede8ce_onEachFeature,\n", " \n", - " style: geo_json_3c0140304d9ef4c017f2a17d988059e5_styler,\n", - " pointToLayer: geo_json_3c0140304d9ef4c017f2a17d988059e5_pointToLayer\n", + " style: geo_json_3115e8c8abe4b5978b36eaa9b6ede8ce_styler,\n", + " pointToLayer: geo_json_3115e8c8abe4b5978b36eaa9b6ede8ce_pointToLayer\n", " });\n", "\n", - " function geo_json_3c0140304d9ef4c017f2a17d988059e5_add (data) {\n", - " geo_json_3c0140304d9ef4c017f2a17d988059e5\n", + " function geo_json_3115e8c8abe4b5978b36eaa9b6ede8ce_add (data) {\n", + " geo_json_3115e8c8abe4b5978b36eaa9b6ede8ce\n", " .addData(data)\n", - " .addTo(map_8c6bccfe833991aba0fe8483f23a6e2a);\n", + " .addTo(map_e6d7260c9a6d62313dca5521720cfdb4);\n", " }\n", - " geo_json_3c0140304d9ef4c017f2a17d988059e5_add({"bbox": [-79.94603104, 32.769791258, -79.92438222, 32.784158743], "features": [{"bbox": [-79.93000008, 32.770545239, -79.93000008, 32.770545239], "geometry": {"coordinates": [-79.93000008, 32.770545239], "type": "Point"}, "id": "0", "properties": {"Object ID": 573783417, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92968382, 32.771271301, -79.92968382, 32.771271301], "geometry": {"coordinates": [-79.92968382, 32.771271301], "type": "Point"}, "id": "1", "properties": {"Object ID": 573783433, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93179589, 32.773364727, -79.93179589, 32.773364727], "geometry": {"coordinates": [-79.93179589, 32.773364727], "type": "Point"}, "id": "2", "properties": {"Object ID": 573785665, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93064525, 32.774854333, -79.93064525, 32.774854333], "geometry": {"coordinates": [-79.93064525, 32.774854333], "type": "Point"}, "id": "3", "properties": {"Object ID": 574346729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187273, 32.770989143, -79.93187273, 32.770989143], "geometry": {"coordinates": [-79.93187273, 32.770989143], "type": "Point"}, "id": "4", "properties": {"Object ID": 574372707, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191719, 32.771641938, -79.93191719, 32.771641938], "geometry": {"coordinates": [-79.93191719, 32.771641938], "type": "Point"}, "id": "5", "properties": {"Object ID": 574372721, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "6", "properties": {"Object ID": 574476728, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "7", "properties": {"Object ID": 574476811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93027436, 32.775360757, -79.93027436, 32.775360757], "geometry": {"coordinates": [-79.93027436, 32.775360757], "type": "Point"}, "id": "8", "properties": {"Object ID": 574486899, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92998998, 32.773144664, -79.92998998, 32.773144664], "geometry": {"coordinates": [-79.92998998, 32.773144664], "type": "Point"}, "id": "9", "properties": {"Object ID": 574486932, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92697274, 32.77580358, -79.92697274, 32.77580358], "geometry": {"coordinates": [-79.92697274, 32.77580358], "type": "Point"}, "id": "10", "properties": {"Object ID": 574372378, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92477287, 32.775260615, -79.92477287, 32.775260615], "geometry": {"coordinates": [-79.92477287, 32.775260615], "type": "Point"}, "id": "11", "properties": {"Object ID": 574421614, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92640322, 32.776823374, -79.92640322, 32.776823374], "geometry": {"coordinates": [-79.92640322, 32.776823374], "type": "Point"}, "id": "12", "properties": {"Object ID": 574437143, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9250907, 32.774485627, -79.9250907, 32.774485627], "geometry": {"coordinates": [-79.9250907, 32.774485627], "type": "Point"}, "id": "13", "properties": {"Object ID": 574446459, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92766193, 32.773486846, -79.92766193, 32.773486846], "geometry": {"coordinates": [-79.92766193, 32.773486846], "type": "Point"}, "id": "14", "properties": {"Object ID": 574488867, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92740748, 32.778806247, -79.92740748, 32.778806247], "geometry": {"coordinates": [-79.92740748, 32.778806247], "type": "Point"}, "id": "15", "properties": {"Object ID": 573779435, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9304724, 32.778022319, -79.9304724, 32.778022319], "geometry": {"coordinates": [-79.9304724, 32.778022319], "type": "Point"}, "id": "16", "properties": {"Object ID": 573783353, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93080905, 32.776727923, -79.93080905, 32.776727923], "geometry": {"coordinates": [-79.93080905, 32.776727923], "type": "Point"}, "id": "17", "properties": {"Object ID": 573827729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92907633, 32.777112595, -79.92907633, 32.777112595], "geometry": {"coordinates": [-79.92907633, 32.777112595], "type": "Point"}, "id": "18", "properties": {"Object ID": 574421669, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "19", "properties": {"Object ID": 574451480, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92820274, 32.778662139, -79.92820274, 32.778662139], "geometry": {"coordinates": [-79.92820274, 32.778662139], "type": "Point"}, "id": "20", "properties": {"Object ID": 574461033, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "21", "properties": {"Object ID": 574488693, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92670704, 32.778289721, -79.92670704, 32.778289721], "geometry": {"coordinates": [-79.92670704, 32.778289721], "type": "Point"}, "id": "22", "properties": {"Object ID": 574488726, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92806298, 32.777600684, -79.92806298, 32.777600684], "geometry": {"coordinates": [-79.92806298, 32.777600684], "type": "Point"}, "id": "23", "properties": {"Object ID": 574488773, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "24", "properties": {"Object ID": 574488781, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187083, 32.779462015, -79.93187083, 32.779462015], "geometry": {"coordinates": [-79.93187083, 32.779462015], "type": "Point"}, "id": "25", "properties": {"Object ID": 573387882, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92942383, 32.782461503, -79.92942383, 32.782461503], "geometry": {"coordinates": [-79.92942383, 32.782461503], "type": "Point"}, "id": "26", "properties": {"Object ID": 573467952, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92952055, 32.782575733, -79.92952055, 32.782575733], "geometry": {"coordinates": [-79.92952055, 32.782575733], "type": "Point"}, "id": "27", "properties": {"Object ID": 573467954, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9300262, 32.782961292, -79.9300262, 32.782961292], "geometry": {"coordinates": [-79.9300262, 32.782961292], "type": "Point"}, "id": "28", "properties": {"Object ID": 573467966, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9296748, 32.772410417, -79.9296748, 32.772410417], "geometry": {"coordinates": [-79.9296748, 32.772410417], "type": "Point"}, "id": "29", "properties": {"Object ID": 573782570, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9295957, 32.774689891, -79.9295957, 32.774689891], "geometry": {"coordinates": [-79.9295957, 32.774689891], "type": "Point"}, "id": "30", "properties": {"Object ID": 573783130, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93049625, 32.774344859, -79.93049625, 32.774344859], "geometry": {"coordinates": [-79.93049625, 32.774344859], "type": "Point"}, "id": "31", "properties": {"Object ID": 573783164, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92949789, 32.777677463, -79.92949789, 32.777677463], "geometry": {"coordinates": [-79.92949789, 32.777677463], "type": "Point"}, "id": "32", "properties": {"Object ID": 573783333, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93010789, 32.771055204, -79.93010789, 32.771055204], "geometry": {"coordinates": [-79.93010789, 32.771055204], "type": "Point"}, "id": "33", "properties": {"Object ID": 573783427, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9295781, 32.771610827, -79.9295781, 32.771610827], "geometry": {"coordinates": [-79.9295781, 32.771610827], "type": "Point"}, "id": "34", "properties": {"Object ID": 573783441, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9295716, 32.77192977, -79.9295716, 32.77192977], "geometry": {"coordinates": [-79.9295716, 32.77192977], "type": "Point"}, "id": "35", "properties": {"Object ID": 573783447, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93178469, 32.776556116, -79.93178469, 32.776556116], "geometry": {"coordinates": [-79.93178469, 32.776556116], "type": "Point"}, "id": "36", "properties": {"Object ID": 573785448, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93316494, 32.774836158, -79.93316494, 32.774836158], "geometry": {"coordinates": [-79.93316494, 32.774836158], "type": "Point"}, "id": "37", "properties": {"Object ID": 573785816, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93294774, 32.776004938, -79.93294774, 32.776004938], "geometry": {"coordinates": [-79.93294774, 32.776004938], "type": "Point"}, "id": "38", "properties": {"Object ID": 573785864, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93359647, 32.773110601, -79.93359647, 32.773110601], "geometry": {"coordinates": [-79.93359647, 32.773110601], "type": "Point"}, "id": "39", "properties": {"Object ID": 573785925, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93269833, 32.774102068, -79.93269833, 32.774102068], "geometry": {"coordinates": [-79.93269833, 32.774102068], "type": "Point"}, "id": "40", "properties": {"Object ID": 573785962, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93414417, 32.77250666, -79.93414417, 32.77250666], "geometry": {"coordinates": [-79.93414417, 32.77250666], "type": "Point"}, "id": "41", "properties": {"Object ID": 573789014, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93546136, 32.772875167, -79.93546136, 32.772875167], "geometry": {"coordinates": [-79.93546136, 32.772875167], "type": "Point"}, "id": "42", "properties": {"Object ID": 573789019, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93555996, 32.773442523, -79.93555996, 32.773442523], "geometry": {"coordinates": [-79.93555996, 32.773442523], "type": "Point"}, "id": "43", "properties": {"Object ID": 573789026, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93504335, 32.775873827, -79.93504335, 32.775873827], "geometry": {"coordinates": [-79.93504335, 32.775873827], "type": "Point"}, "id": "44", "properties": {"Object ID": 573789160, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93721769, 32.776455767, -79.93721769, 32.776455767], "geometry": {"coordinates": [-79.93721769, 32.776455767], "type": "Point"}, "id": "45", "properties": {"Object ID": 573789173, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93621898, 32.776607519, -79.93621898, 32.776607519], "geometry": {"coordinates": [-79.93621898, 32.776607519], "type": "Point"}, "id": "46", "properties": {"Object ID": 573789181, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93747764, 32.778459962, -79.93747764, 32.778459962], "geometry": {"coordinates": [-79.93747764, 32.778459962], "type": "Point"}, "id": "47", "properties": {"Object ID": 573789195, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93840551, 32.774817257, -79.93840551, 32.774817257], "geometry": {"coordinates": [-79.93840551, 32.774817257], "type": "Point"}, "id": "48", "properties": {"Object ID": 573789340, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93801322, 32.775612877, -79.93801322, 32.775612877], "geometry": {"coordinates": [-79.93801322, 32.775612877], "type": "Point"}, "id": "49", "properties": {"Object ID": 573789361, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93959894, 32.77423144, -79.93959894, 32.77423144], "geometry": {"coordinates": [-79.93959894, 32.77423144], "type": "Point"}, "id": "50", "properties": {"Object ID": 573795548, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9407934, 32.778432824, -79.9407934, 32.778432824], "geometry": {"coordinates": [-79.9407934, 32.778432824], "type": "Point"}, "id": "51", "properties": {"Object ID": 573795699, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94320128, 32.777364436, -79.94320128, 32.777364436], "geometry": {"coordinates": [-79.94320128, 32.777364436], "type": "Point"}, "id": "52", "properties": {"Object ID": 573800815, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92911574, 32.783303914, -79.92911574, 32.783303914], "geometry": {"coordinates": [-79.92911574, 32.783303914], "type": "Point"}, "id": "53", "properties": {"Object ID": 573827798, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92897309, 32.783345307, -79.92897309, 32.783345307], "geometry": {"coordinates": [-79.92897309, 32.783345307], "type": "Point"}, "id": "54", "properties": {"Object ID": 573827800, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93231375, 32.775717083, -79.93231375, 32.775717083], "geometry": {"coordinates": [-79.93231375, 32.775717083], "type": "Point"}, "id": "55", "properties": {"Object ID": 573831730, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93136773, 32.78120541, -79.93136773, 32.78120541], "geometry": {"coordinates": [-79.93136773, 32.78120541], "type": "Point"}, "id": "56", "properties": {"Object ID": 573831821, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9370822, 32.780106517, -79.9370822, 32.780106517], "geometry": {"coordinates": [-79.9370822, 32.780106517], "type": "Point"}, "id": "57", "properties": {"Object ID": 573850799, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94073347, 32.773739974, -79.94073347, 32.773739974], "geometry": {"coordinates": [-79.94073347, 32.773739974], "type": "Point"}, "id": "58", "properties": {"Object ID": 573860243, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93066806, 32.772190687, -79.93066806, 32.772190687], "geometry": {"coordinates": [-79.93066806, 32.772190687], "type": "Point"}, "id": "59", "properties": {"Object ID": 574268207, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93104665, 32.771945208, -79.93104665, 32.771945208], "geometry": {"coordinates": [-79.93104665, 32.771945208], "type": "Point"}, "id": "60", "properties": {"Object ID": 574268219, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93307183, 32.770319309, -79.93307183, 32.770319309], "geometry": {"coordinates": [-79.93307183, 32.770319309], "type": "Point"}, "id": "61", "properties": {"Object ID": 574268595, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93287143, 32.770350664, -79.93287143, 32.770350664], "geometry": {"coordinates": [-79.93287143, 32.770350664], "type": "Point"}, "id": "62", "properties": {"Object ID": 574268597, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93405413, 32.771895369, -79.93405413, 32.771895369], "geometry": {"coordinates": [-79.93405413, 32.771895369], "type": "Point"}, "id": "63", "properties": {"Object ID": 574268706, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93643612, 32.771395477, -79.93643612, 32.771395477], "geometry": {"coordinates": [-79.93643612, 32.771395477], "type": "Point"}, "id": "64", "properties": {"Object ID": 574268907, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93722348, 32.776803473, -79.93722348, 32.776803473], "geometry": {"coordinates": [-79.93722348, 32.776803473], "type": "Point"}, "id": "65", "properties": {"Object ID": 574268926, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93826701, 32.773914061, -79.93826701, 32.773914061], "geometry": {"coordinates": [-79.93826701, 32.773914061], "type": "Point"}, "id": "66", "properties": {"Object ID": 574269135, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9371539, 32.775141232, -79.9371539, 32.775141232], "geometry": {"coordinates": [-79.9371539, 32.775141232], "type": "Point"}, "id": "67", "properties": {"Object ID": 574269195, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9376746, 32.779882371, -79.9376746, 32.779882371], "geometry": {"coordinates": [-79.9376746, 32.779882371], "type": "Point"}, "id": "68", "properties": {"Object ID": 574294815, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94051647, 32.778824337, -79.94051647, 32.778824337], "geometry": {"coordinates": [-79.94051647, 32.778824337], "type": "Point"}, "id": "69", "properties": {"Object ID": 574295941, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94069038, 32.772157079, -79.94069038, 32.772157079], "geometry": {"coordinates": [-79.94069038, 32.772157079], "type": "Point"}, "id": "70", "properties": {"Object ID": 574296073, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93008132, 32.775745364, -79.93008132, 32.775745364], "geometry": {"coordinates": [-79.93008132, 32.775745364], "type": "Point"}, "id": "71", "properties": {"Object ID": 574346751, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93276684, 32.781806628, -79.93276684, 32.781806628], "geometry": {"coordinates": [-79.93276684, 32.781806628], "type": "Point"}, "id": "72", "properties": {"Object ID": 574371565, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93258546, 32.781970217, -79.93258546, 32.781970217], "geometry": {"coordinates": [-79.93258546, 32.781970217], "type": "Point"}, "id": "73", "properties": {"Object ID": 574371581, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93201544, 32.781770845, -79.93201544, 32.781770845], "geometry": {"coordinates": [-79.93201544, 32.781770845], "type": "Point"}, "id": "74", "properties": {"Object ID": 574371591, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93575382, 32.778675453, -79.93575382, 32.778675453], "geometry": {"coordinates": [-79.93575382, 32.778675453], "type": "Point"}, "id": "75", "properties": {"Object ID": 574371783, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93667006, 32.773601944, -79.93667006, 32.773601944], "geometry": {"coordinates": [-79.93667006, 32.773601944], "type": "Point"}, "id": "76", "properties": {"Object ID": 574371920, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938979, 32.776111957, -79.92938979, 32.776111957], "geometry": {"coordinates": [-79.92938979, 32.776111957], "type": "Point"}, "id": "77", "properties": {"Object ID": 574372557, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93565177, 32.776908084, -79.93565177, 32.776908084], "geometry": {"coordinates": [-79.93565177, 32.776908084], "type": "Point"}, "id": "78", "properties": {"Object ID": 574372970, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93591088, 32.777347278, -79.93591088, 32.777347278], "geometry": {"coordinates": [-79.93591088, 32.777347278], "type": "Point"}, "id": "79", "properties": {"Object ID": 574372985, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93338057, 32.776663, -79.93338057, 32.776663], "geometry": {"coordinates": [-79.93338057, 32.776663], "type": "Point"}, "id": "80", "properties": {"Object ID": 574409645, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93305761, 32.776982082, -79.93305761, 32.776982082], "geometry": {"coordinates": [-79.93305761, 32.776982082], "type": "Point"}, "id": "81", "properties": {"Object ID": 574409651, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93775815, 32.770940705, -79.93775815, 32.770940705], "geometry": {"coordinates": [-79.93775815, 32.770940705], "type": "Point"}, "id": "82", "properties": {"Object ID": 574409955, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93765334, 32.771058635, -79.93765334, 32.771058635], "geometry": {"coordinates": [-79.93765334, 32.771058635], "type": "Point"}, "id": "83", "properties": {"Object ID": 574409957, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92907633, 32.777112595, -79.92907633, 32.777112595], "geometry": {"coordinates": [-79.92907633, 32.777112595], "type": "Point"}, "id": "84", "properties": {"Object ID": 574421673, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93595137, 32.779986363, -79.93595137, 32.779986363], "geometry": {"coordinates": [-79.93595137, 32.779986363], "type": "Point"}, "id": "85", "properties": {"Object ID": 574421941, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94106447, 32.773697132, -79.94106447, 32.773697132], "geometry": {"coordinates": [-79.94106447, 32.773697132], "type": "Point"}, "id": "86", "properties": {"Object ID": 574431443, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92923676, 32.778549824, -79.92923676, 32.778549824], "geometry": {"coordinates": [-79.92923676, 32.778549824], "type": "Point"}, "id": "87", "properties": {"Object ID": 574446469, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92888433, 32.779250513, -79.92888433, 32.779250513], "geometry": {"coordinates": [-79.92888433, 32.779250513], "type": "Point"}, "id": "88", "properties": {"Object ID": 574446473, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "89", "properties": {"Object ID": 574447808, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92995578, 32.780593928, -79.92995578, 32.780593928], "geometry": {"coordinates": [-79.92995578, 32.780593928], "type": "Point"}, "id": "90", "properties": {"Object ID": 574461015, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "91", "properties": {"Object ID": 574486752, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94238262, 32.777178526, -79.94238262, 32.777178526], "geometry": {"coordinates": [-79.94238262, 32.777178526], "type": "Point"}, "id": "92", "properties": {"Object ID": 574486758, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "93", "properties": {"Object ID": 574486770, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "94", "properties": {"Object ID": 574486776, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93592137, 32.775622979, -79.93592137, 32.775622979], "geometry": {"coordinates": [-79.93592137, 32.775622979], "type": "Point"}, "id": "95", "properties": {"Object ID": 574486861, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542766, 32.774993284, -79.93542766, 32.774993284], "geometry": {"coordinates": [-79.93542766, 32.774993284], "type": "Point"}, "id": "96", "properties": {"Object ID": 574486874, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93355832, 32.771708828, -79.93355832, 32.771708828], "geometry": {"coordinates": [-79.93355832, 32.771708828], "type": "Point"}, "id": "97", "properties": {"Object ID": 574486913, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93337915, 32.770923728, -79.93337915, 32.770923728], "geometry": {"coordinates": [-79.93337915, 32.770923728], "type": "Point"}, "id": "98", "properties": {"Object ID": 574486922, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93337915, 32.770923728, -79.93337915, 32.770923728], "geometry": {"coordinates": [-79.93337915, 32.770923728], "type": "Point"}, "id": "99", "properties": {"Object ID": 574486924, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93799754, 32.777475499, -79.93799754, 32.777475499], "geometry": {"coordinates": [-79.93799754, 32.777475499], "type": "Point"}, "id": "100", "properties": {"Object ID": 574486955, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93784205, 32.777169314, -79.93784205, 32.777169314], "geometry": {"coordinates": [-79.93784205, 32.777169314], "type": "Point"}, "id": "101", "properties": {"Object ID": 574486963, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505269, 32.780658666, -79.93505269, 32.780658666], "geometry": {"coordinates": [-79.93505269, 32.780658666], "type": "Point"}, "id": "102", "properties": {"Object ID": 574486977, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93341863, 32.778558501, -79.93341863, 32.778558501], "geometry": {"coordinates": [-79.93341863, 32.778558501], "type": "Point"}, "id": "103", "properties": {"Object ID": 574487012, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "104", "properties": {"Object ID": 574487065, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93463201, 32.777303647, -79.93463201, 32.777303647], "geometry": {"coordinates": [-79.93463201, 32.777303647], "type": "Point"}, "id": "105", "properties": {"Object ID": 574487081, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93315737, 32.777824742, -79.93315737, 32.777824742], "geometry": {"coordinates": [-79.93315737, 32.777824742], "type": "Point"}, "id": "106", "properties": {"Object ID": 574487097, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92893496, 32.776146937, -79.92893496, 32.776146937], "geometry": {"coordinates": [-79.92893496, 32.776146937], "type": "Point"}, "id": "107", "properties": {"Object ID": 574488769, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92831027, 32.773372134, -79.92831027, 32.773372134], "geometry": {"coordinates": [-79.92831027, 32.773372134], "type": "Point"}, "id": "108", "properties": {"Object ID": 573779329, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92817594, 32.773609057, -79.92817594, 32.773609057], "geometry": {"coordinates": [-79.92817594, 32.773609057], "type": "Point"}, "id": "109", "properties": {"Object ID": 573779341, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92750038, 32.774233574, -79.92750038, 32.774233574], "geometry": {"coordinates": [-79.92750038, 32.774233574], "type": "Point"}, "id": "110", "properties": {"Object ID": 573779365, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92875669, 32.774286101, -79.92875669, 32.774286101], "geometry": {"coordinates": [-79.92875669, 32.774286101], "type": "Point"}, "id": "111", "properties": {"Object ID": 573779367, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92871575, 32.774521312, -79.92871575, 32.774521312], "geometry": {"coordinates": [-79.92871575, 32.774521312], "type": "Point"}, "id": "112", "properties": {"Object ID": 573779381, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92745236, 32.774767971, -79.92745236, 32.774767971], "geometry": {"coordinates": [-79.92745236, 32.774767971], "type": "Point"}, "id": "113", "properties": {"Object ID": 573779398, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92750067, 32.774821471, -79.92750067, 32.774821471], "geometry": {"coordinates": [-79.92750067, 32.774821471], "type": "Point"}, "id": "114", "properties": {"Object ID": 573779402, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92841286, 32.774869589, -79.92841286, 32.774869589], "geometry": {"coordinates": [-79.92841286, 32.774869589], "type": "Point"}, "id": "115", "properties": {"Object ID": 573779407, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92799861, 32.778946379, -79.92799861, 32.778946379], "geometry": {"coordinates": [-79.92799861, 32.778946379], "type": "Point"}, "id": "116", "properties": {"Object ID": 573779433, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9280224, 32.77925801, -79.9280224, 32.77925801], "geometry": {"coordinates": [-79.9280224, 32.77925801], "type": "Point"}, "id": "117", "properties": {"Object ID": 573779441, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92845103, 32.779234726, -79.92845103, 32.779234726], "geometry": {"coordinates": [-79.92845103, 32.779234726], "type": "Point"}, "id": "118", "properties": {"Object ID": 573782397, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92988988, 32.7731489, -79.92988988, 32.7731489], "geometry": {"coordinates": [-79.92988988, 32.7731489], "type": "Point"}, "id": "119", "properties": {"Object ID": 573782598, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92854191, 32.77226441, -79.92854191, 32.77226441], "geometry": {"coordinates": [-79.92854191, 32.77226441], "type": "Point"}, "id": "120", "properties": {"Object ID": 573782409, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92935025, 32.772166019, -79.92935025, 32.772166019], "geometry": {"coordinates": [-79.92935025, 32.772166019], "type": "Point"}, "id": "121", "properties": {"Object ID": 573782411, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92797887, 32.772354604, -79.92797887, 32.772354604], "geometry": {"coordinates": [-79.92797887, 32.772354604], "type": "Point"}, "id": "122", "properties": {"Object ID": 573782427, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92862976, 32.781951428, -79.92862976, 32.781951428], "geometry": {"coordinates": [-79.92862976, 32.781951428], "type": "Point"}, "id": "123", "properties": {"Object ID": 573782462, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92897026, 32.782111377, -79.92897026, 32.782111377], "geometry": {"coordinates": [-79.92897026, 32.782111377], "type": "Point"}, "id": "124", "properties": {"Object ID": 573782470, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92797978, 32.782231327, -79.92797978, 32.782231327], "geometry": {"coordinates": [-79.92797978, 32.782231327], "type": "Point"}, "id": "125", "properties": {"Object ID": 573782478, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92866159, 32.777809893, -79.92866159, 32.777809893], "geometry": {"coordinates": [-79.92866159, 32.777809893], "type": "Point"}, "id": "126", "properties": {"Object ID": 573782480, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92883904, 32.778133922, -79.92883904, 32.778133922], "geometry": {"coordinates": [-79.92883904, 32.778133922], "type": "Point"}, "id": "127", "properties": {"Object ID": 573782497, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92820141, 32.77829234, -79.92820141, 32.77829234], "geometry": {"coordinates": [-79.92820141, 32.77829234], "type": "Point"}, "id": "128", "properties": {"Object ID": 573782510, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92882508, 32.775158799, -79.92882508, 32.775158799], "geometry": {"coordinates": [-79.92882508, 32.775158799], "type": "Point"}, "id": "129", "properties": {"Object ID": 573782514, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92840181, 32.775139393, -79.92840181, 32.775139393], "geometry": {"coordinates": [-79.92840181, 32.775139393], "type": "Point"}, "id": "130", "properties": {"Object ID": 573782524, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92838664, 32.775587207, -79.92838664, 32.775587207], "geometry": {"coordinates": [-79.92838664, 32.775587207], "type": "Point"}, "id": "131", "properties": {"Object ID": 573782536, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9285131, 32.775788861, -79.9285131, 32.775788861], "geometry": {"coordinates": [-79.9285131, 32.775788861], "type": "Point"}, "id": "132", "properties": {"Object ID": 573782544, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92957264, 32.772145758, -79.92957264, 32.772145758], "geometry": {"coordinates": [-79.92957264, 32.772145758], "type": "Point"}, "id": "133", "properties": {"Object ID": 573782558, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92964998, 32.772328339, -79.92964998, 32.772328339], "geometry": {"coordinates": [-79.92964998, 32.772328339], "type": "Point"}, "id": "134", "properties": {"Object ID": 573782566, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92960379, 32.772994753, -79.92960379, 32.772994753], "geometry": {"coordinates": [-79.92960379, 32.772994753], "type": "Point"}, "id": "135", "properties": {"Object ID": 573782588, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92951177, 32.773126709, -79.92951177, 32.773126709], "geometry": {"coordinates": [-79.92951177, 32.773126709], "type": "Point"}, "id": "136", "properties": {"Object ID": 573782592, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93012658, 32.774387509, -79.93012658, 32.774387509], "geometry": {"coordinates": [-79.93012658, 32.774387509], "type": "Point"}, "id": "137", "properties": {"Object ID": 573783166, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92939164, 32.774427484, -79.92939164, 32.774427484], "geometry": {"coordinates": [-79.92939164, 32.774427484], "type": "Point"}, "id": "138", "properties": {"Object ID": 573783171, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92998159, 32.774419791, -79.92998159, 32.774419791], "geometry": {"coordinates": [-79.92998159, 32.774419791], "type": "Point"}, "id": "139", "properties": {"Object ID": 573783173, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93062888, 32.774571123, -79.93062888, 32.774571123], "geometry": {"coordinates": [-79.93062888, 32.774571123], "type": "Point"}, "id": "140", "properties": {"Object ID": 573783183, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93061493, 32.778660238, -79.93061493, 32.778660238], "geometry": {"coordinates": [-79.93061493, 32.778660238], "type": "Point"}, "id": "141", "properties": {"Object ID": 573783299, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93008018, 32.779441212, -79.93008018, 32.779441212], "geometry": {"coordinates": [-79.93008018, 32.779441212], "type": "Point"}, "id": "142", "properties": {"Object ID": 573783315, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93027735, 32.779357218, -79.93027735, 32.779357218], "geometry": {"coordinates": [-79.93027735, 32.779357218], "type": "Point"}, "id": "143", "properties": {"Object ID": 573783323, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93097044, 32.777869364, -79.93097044, 32.777869364], "geometry": {"coordinates": [-79.93097044, 32.777869364], "type": "Point"}, "id": "144", "properties": {"Object ID": 573783345, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92964276, 32.771129193, -79.92964276, 32.771129193], "geometry": {"coordinates": [-79.92964276, 32.771129193], "type": "Point"}, "id": "145", "properties": {"Object ID": 573783429, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93011819, 32.771237151, -79.93011819, 32.771237151], "geometry": {"coordinates": [-79.93011819, 32.771237151], "type": "Point"}, "id": "146", "properties": {"Object ID": 573783431, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93185223, 32.776545415, -79.93185223, 32.776545415], "geometry": {"coordinates": [-79.93185223, 32.776545415], "type": "Point"}, "id": "147", "properties": {"Object ID": 573785441, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93212031, 32.773068617, -79.93212031, 32.773068617], "geometry": {"coordinates": [-79.93212031, 32.773068617], "type": "Point"}, "id": "148", "properties": {"Object ID": 573785643, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93091969, 32.773225942, -79.93091969, 32.773225942], "geometry": {"coordinates": [-79.93091969, 32.773225942], "type": "Point"}, "id": "149", "properties": {"Object ID": 573785657, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9322069, 32.773305104, -79.9322069, 32.773305104], "geometry": {"coordinates": [-79.9322069, 32.773305104], "type": "Point"}, "id": "150", "properties": {"Object ID": 573785659, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9328413, 32.774564598, -79.9328413, 32.774564598], "geometry": {"coordinates": [-79.9328413, 32.774564598], "type": "Point"}, "id": "151", "properties": {"Object ID": 573785810, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93265399, 32.77477142, -79.93265399, 32.77477142], "geometry": {"coordinates": [-79.93265399, 32.77477142], "type": "Point"}, "id": "152", "properties": {"Object ID": 573785812, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9329071, 32.775881966, -79.9329071, 32.775881966], "geometry": {"coordinates": [-79.9329071, 32.775881966], "type": "Point"}, "id": "153", "properties": {"Object ID": 573785849, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93315097, 32.776053979, -79.93315097, 32.776053979], "geometry": {"coordinates": [-79.93315097, 32.776053979], "type": "Point"}, "id": "154", "properties": {"Object ID": 573785853, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93289001, 32.776126537, -79.93289001, 32.776126537], "geometry": {"coordinates": [-79.93289001, 32.776126537], "type": "Point"}, "id": "155", "properties": {"Object ID": 573785857, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93317714, 32.77173931, -79.93317714, 32.77173931], "geometry": {"coordinates": [-79.93317714, 32.77173931], "type": "Point"}, "id": "156", "properties": {"Object ID": 573785887, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93261637, 32.771773692, -79.93261637, 32.771773692], "geometry": {"coordinates": [-79.93261637, 32.771773692], "type": "Point"}, "id": "157", "properties": {"Object ID": 573785889, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93292102, 32.771766614, -79.93292102, 32.771766614], "geometry": {"coordinates": [-79.93292102, 32.771766614], "type": "Point"}, "id": "158", "properties": {"Object ID": 573785891, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93353142, 32.77226628, -79.93353142, 32.77226628], "geometry": {"coordinates": [-79.93353142, 32.77226628], "type": "Point"}, "id": "159", "properties": {"Object ID": 573785901, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93371244, 32.772487911, -79.93371244, 32.772487911], "geometry": {"coordinates": [-79.93371244, 32.772487911], "type": "Point"}, "id": "160", "properties": {"Object ID": 573785905, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93359592, 32.773408579, -79.93359592, 32.773408579], "geometry": {"coordinates": [-79.93359592, 32.773408579], "type": "Point"}, "id": "161", "properties": {"Object ID": 573785933, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93379667, 32.773628558, -79.93379667, 32.773628558], "geometry": {"coordinates": [-79.93379667, 32.773628558], "type": "Point"}, "id": "162", "properties": {"Object ID": 573785941, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93260306, 32.773944765, -79.93260306, 32.773944765], "geometry": {"coordinates": [-79.93260306, 32.773944765], "type": "Point"}, "id": "163", "properties": {"Object ID": 573785954, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93368834, 32.774043825, -79.93368834, 32.774043825], "geometry": {"coordinates": [-79.93368834, 32.774043825], "type": "Point"}, "id": "164", "properties": {"Object ID": 573785964, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93335075, 32.774171168, -79.93335075, 32.774171168], "geometry": {"coordinates": [-79.93335075, 32.774171168], "type": "Point"}, "id": "165", "properties": {"Object ID": 573785966, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9258072, 32.776117446, -79.9258072, 32.776117446], "geometry": {"coordinates": [-79.9258072, 32.776117446], "type": "Point"}, "id": "166", "properties": {"Object ID": 573818739, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92675255, 32.776555258, -79.92675255, 32.776555258], "geometry": {"coordinates": [-79.92675255, 32.776555258], "type": "Point"}, "id": "167", "properties": {"Object ID": 573818746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772824, 32.777642211, -79.92772824, 32.777642211], "geometry": {"coordinates": [-79.92772824, 32.777642211], "type": "Point"}, "id": "168", "properties": {"Object ID": 573827132, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92730578, 32.777707213, -79.92730578, 32.777707213], "geometry": {"coordinates": [-79.92730578, 32.777707213], "type": "Point"}, "id": "169", "properties": {"Object ID": 573827144, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92787224, 32.781358849, -79.92787224, 32.781358849], "geometry": {"coordinates": [-79.92787224, 32.781358849], "type": "Point"}, "id": "170", "properties": {"Object ID": 573827360, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92972682, 32.776806657, -79.92972682, 32.776806657], "geometry": {"coordinates": [-79.92972682, 32.776806657], "type": "Point"}, "id": "171", "properties": {"Object ID": 573827748, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92932179, 32.783238162, -79.92932179, 32.783238162], "geometry": {"coordinates": [-79.92932179, 32.783238162], "type": "Point"}, "id": "172", "properties": {"Object ID": 573827796, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93040738, 32.781275186, -79.93040738, 32.781275186], "geometry": {"coordinates": [-79.93040738, 32.781275186], "type": "Point"}, "id": "173", "properties": {"Object ID": 573831834, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9307575, 32.7811525, -79.9307575, 32.7811525], "geometry": {"coordinates": [-79.9307575, 32.7811525], "type": "Point"}, "id": "174", "properties": {"Object ID": 573831838, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93238462, 32.774996083, -79.93238462, 32.774996083], "geometry": {"coordinates": [-79.93238462, 32.774996083], "type": "Point"}, "id": "175", "properties": {"Object ID": 573831693, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93178479, 32.778780081, -79.93178479, 32.778780081], "geometry": {"coordinates": [-79.93178479, 32.778780081], "type": "Point"}, "id": "176", "properties": {"Object ID": 573831764, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93143087, 32.778125781, -79.93143087, 32.778125781], "geometry": {"coordinates": [-79.93143087, 32.778125781], "type": "Point"}, "id": "177", "properties": {"Object ID": 573831776, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93271625, 32.778164884, -79.93271625, 32.778164884], "geometry": {"coordinates": [-79.93271625, 32.778164884], "type": "Point"}, "id": "178", "properties": {"Object ID": 573831786, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.931735, 32.778508926, -79.931735, 32.778508926], "geometry": {"coordinates": [-79.931735, 32.778508926], "type": "Point"}, "id": "179", "properties": {"Object ID": 573831792, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93261388, 32.779041775, -79.93261388, 32.779041775], "geometry": {"coordinates": [-79.93261388, 32.779041775], "type": "Point"}, "id": "180", "properties": {"Object ID": 573831799, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93136773, 32.78120541, -79.93136773, 32.78120541], "geometry": {"coordinates": [-79.93136773, 32.78120541], "type": "Point"}, "id": "181", "properties": {"Object ID": 573831817, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9321254, 32.77072847, -79.9321254, 32.77072847], "geometry": {"coordinates": [-79.9321254, 32.77072847], "type": "Point"}, "id": "182", "properties": {"Object ID": 573841002, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9322566, 32.770746347, -79.9322566, 32.770746347], "geometry": {"coordinates": [-79.9322566, 32.770746347], "type": "Point"}, "id": "183", "properties": {"Object ID": 573841003, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93286486, 32.770822724, -79.93286486, 32.770822724], "geometry": {"coordinates": [-79.93286486, 32.770822724], "type": "Point"}, "id": "184", "properties": {"Object ID": 573841007, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93228322, 32.771096832, -79.93228322, 32.771096832], "geometry": {"coordinates": [-79.93228322, 32.771096832], "type": "Point"}, "id": "185", "properties": {"Object ID": 573841015, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93356223, 32.771210236, -79.93356223, 32.771210236], "geometry": {"coordinates": [-79.93356223, 32.771210236], "type": "Point"}, "id": "186", "properties": {"Object ID": 573841018, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92617574, 32.781501592, -79.92617574, 32.781501592], "geometry": {"coordinates": [-79.92617574, 32.781501592], "type": "Point"}, "id": "187", "properties": {"Object ID": 574267592, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92797932, 32.78365938, -79.92797932, 32.78365938], "geometry": {"coordinates": [-79.92797932, 32.78365938], "type": "Point"}, "id": "188", "properties": {"Object ID": 574267610, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92661629, 32.773262881, -79.92661629, 32.773262881], "geometry": {"coordinates": [-79.92661629, 32.773262881], "type": "Point"}, "id": "189", "properties": {"Object ID": 574267656, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92771583, 32.775172679, -79.92771583, 32.775172679], "geometry": {"coordinates": [-79.92771583, 32.775172679], "type": "Point"}, "id": "190", "properties": {"Object ID": 574267731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9276191, 32.775675174, -79.9276191, 32.775675174], "geometry": {"coordinates": [-79.9276191, 32.775675174], "type": "Point"}, "id": "191", "properties": {"Object ID": 574267751, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92813757, 32.775784606, -79.92813757, 32.775784606], "geometry": {"coordinates": [-79.92813757, 32.775784606], "type": "Point"}, "id": "192", "properties": {"Object ID": 574267755, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93074187, 32.771994039, -79.93074187, 32.771994039], "geometry": {"coordinates": [-79.93074187, 32.771994039], "type": "Point"}, "id": "193", "properties": {"Object ID": 574268221, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93217351, 32.769910148, -79.93217351, 32.769910148], "geometry": {"coordinates": [-79.93217351, 32.769910148], "type": "Point"}, "id": "194", "properties": {"Object ID": 574268583, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93190648, 32.774318022, -79.93190648, 32.774318022], "geometry": {"coordinates": [-79.93190648, 32.774318022], "type": "Point"}, "id": "195", "properties": {"Object ID": 574293791, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93157595, 32.774493879, -79.93157595, 32.774493879], "geometry": {"coordinates": [-79.93157595, 32.774493879], "type": "Point"}, "id": "196", "properties": {"Object ID": 574293797, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9311826, 32.77445443, -79.9311826, 32.77445443], "geometry": {"coordinates": [-79.9311826, 32.77445443], "type": "Point"}, "id": "197", "properties": {"Object ID": 574293799, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92600584, 32.77666482, -79.92600584, 32.77666482], "geometry": {"coordinates": [-79.92600584, 32.77666482], "type": "Point"}, "id": "198", "properties": {"Object ID": 574346713, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92957774, 32.775185701, -79.92957774, 32.775185701], "geometry": {"coordinates": [-79.92957774, 32.775185701], "type": "Point"}, "id": "199", "properties": {"Object ID": 574346741, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93020163, 32.775736916, -79.93020163, 32.775736916], "geometry": {"coordinates": [-79.93020163, 32.775736916], "type": "Point"}, "id": "200", "properties": {"Object ID": 574346750, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9295125, 32.774947, -79.9295125, 32.774947], "geometry": {"coordinates": [-79.9295125, 32.774947], "type": "Point"}, "id": "201", "properties": {"Object ID": 574346756, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92739084, 32.779499094, -79.92739084, 32.779499094], "geometry": {"coordinates": [-79.92739084, 32.779499094], "type": "Point"}, "id": "202", "properties": {"Object ID": 574371443, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9276305, 32.779852059, -79.9276305, 32.779852059], "geometry": {"coordinates": [-79.9276305, 32.779852059], "type": "Point"}, "id": "203", "properties": {"Object ID": 574371451, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242442, 32.781970364, -79.93242442, 32.781970364], "geometry": {"coordinates": [-79.93242442, 32.781970364], "type": "Point"}, "id": "204", "properties": {"Object ID": 574371542, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93276684, 32.781806628, -79.93276684, 32.781806628], "geometry": {"coordinates": [-79.93276684, 32.781806628], "type": "Point"}, "id": "205", "properties": {"Object ID": 574371563, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93201544, 32.781770845, -79.93201544, 32.781770845], "geometry": {"coordinates": [-79.93201544, 32.781770845], "type": "Point"}, "id": "206", "properties": {"Object ID": 574371585, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93353543, 32.777907449, -79.93353543, 32.777907449], "geometry": {"coordinates": [-79.93353543, 32.777907449], "type": "Point"}, "id": "207", "properties": {"Object ID": 574371675, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92447946, 32.779202062, -79.92447946, 32.779202062], "geometry": {"coordinates": [-79.92447946, 32.779202062], "type": "Point"}, "id": "208", "properties": {"Object ID": 574372308, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "209", "properties": {"Object ID": 574372397, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9282403, 32.780783377, -79.9282403, 32.780783377], "geometry": {"coordinates": [-79.9282403, 32.780783377], "type": "Point"}, "id": "210", "properties": {"Object ID": 574372412, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92900036, 32.776107722, -79.92900036, 32.776107722], "geometry": {"coordinates": [-79.92900036, 32.776107722], "type": "Point"}, "id": "211", "properties": {"Object ID": 574372445, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92746316, 32.776524315, -79.92746316, 32.776524315], "geometry": {"coordinates": [-79.92746316, 32.776524315], "type": "Point"}, "id": "212", "properties": {"Object ID": 574372463, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9277285, 32.7764545, -79.9277285, 32.7764545], "geometry": {"coordinates": [-79.9277285, 32.7764545], "type": "Point"}, "id": "213", "properties": {"Object ID": 574372464, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92806552, 32.776605013, -79.92806552, 32.776605013], "geometry": {"coordinates": [-79.92806552, 32.776605013], "type": "Point"}, "id": "214", "properties": {"Object ID": 574372467, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938805, 32.776236693, -79.92938805, 32.776236693], "geometry": {"coordinates": [-79.92938805, 32.776236693], "type": "Point"}, "id": "215", "properties": {"Object ID": 574372547, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92979255, 32.776387148, -79.92979255, 32.776387148], "geometry": {"coordinates": [-79.92979255, 32.776387148], "type": "Point"}, "id": "216", "properties": {"Object ID": 574372553, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92937575, 32.776446635, -79.92937575, 32.776446635], "geometry": {"coordinates": [-79.92937575, 32.776446635], "type": "Point"}, "id": "217", "properties": {"Object ID": 574372571, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93107316, 32.770696863, -79.93107316, 32.770696863], "geometry": {"coordinates": [-79.93107316, 32.770696863], "type": "Point"}, "id": "218", "properties": {"Object ID": 574372689, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93055836, 32.770734997, -79.93055836, 32.770734997], "geometry": {"coordinates": [-79.93055836, 32.770734997], "type": "Point"}, "id": "219", "properties": {"Object ID": 574372693, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93086869, 32.77100272, -79.93086869, 32.77100272], "geometry": {"coordinates": [-79.93086869, 32.77100272], "type": "Point"}, "id": "220", "properties": {"Object ID": 574372709, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93166856, 32.771371807, -79.93166856, 32.771371807], "geometry": {"coordinates": [-79.93166856, 32.771371807], "type": "Point"}, "id": "221", "properties": {"Object ID": 574372715, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93065529, 32.771599188, -79.93065529, 32.771599188], "geometry": {"coordinates": [-79.93065529, 32.771599188], "type": "Point"}, "id": "222", "properties": {"Object ID": 574372725, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93317976, 32.776398119, -79.93317976, 32.776398119], "geometry": {"coordinates": [-79.93317976, 32.776398119], "type": "Point"}, "id": "223", "properties": {"Object ID": 574409639, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93286925, 32.776423337, -79.93286925, 32.776423337], "geometry": {"coordinates": [-79.93286925, 32.776423337], "type": "Point"}, "id": "224", "properties": {"Object ID": 574409640, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.933281, 32.7766405, -79.933281, 32.7766405], "geometry": {"coordinates": [-79.933281, 32.7766405], "type": "Point"}, "id": "225", "properties": {"Object ID": 574409897, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92691392, 32.775561673, -79.92691392, 32.775561673], "geometry": {"coordinates": [-79.92691392, 32.775561673], "type": "Point"}, "id": "226", "properties": {"Object ID": 574421622, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92885302, 32.77702994, -79.92885302, 32.77702994], "geometry": {"coordinates": [-79.92885302, 32.77702994], "type": "Point"}, "id": "227", "properties": {"Object ID": 574421663, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92885302, 32.77702994, -79.92885302, 32.77702994], "geometry": {"coordinates": [-79.92885302, 32.77702994], "type": "Point"}, "id": "228", "properties": {"Object ID": 574421667, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92907633, 32.777112595, -79.92907633, 32.777112595], "geometry": {"coordinates": [-79.92907633, 32.777112595], "type": "Point"}, "id": "229", "properties": {"Object ID": 574421671, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92804197, 32.777344437, -79.92804197, 32.777344437], "geometry": {"coordinates": [-79.92804197, 32.777344437], "type": "Point"}, "id": "230", "properties": {"Object ID": 574421692, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92910129, 32.777397915, -79.92910129, 32.777397915], "geometry": {"coordinates": [-79.92910129, 32.777397915], "type": "Point"}, "id": "231", "properties": {"Object ID": 574421693, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9290865, 32.7769105, -79.9290865, 32.7769105], "geometry": {"coordinates": [-79.9290865, 32.7769105], "type": "Point"}, "id": "232", "properties": {"Object ID": 574421716, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92644898, 32.780051895, -79.92644898, 32.780051895], "geometry": {"coordinates": [-79.92644898, 32.780051895], "type": "Point"}, "id": "233", "properties": {"Object ID": 574435938, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92783811, 32.778163155, -79.92783811, 32.778163155], "geometry": {"coordinates": [-79.92783811, 32.778163155], "type": "Point"}, "id": "234", "properties": {"Object ID": 574446483, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92783811, 32.778163155, -79.92783811, 32.778163155], "geometry": {"coordinates": [-79.92783811, 32.778163155], "type": "Point"}, "id": "235", "properties": {"Object ID": 574446484, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93370546, 32.780669368, -79.93370546, 32.780669368], "geometry": {"coordinates": [-79.93370546, 32.780669368], "type": "Point"}, "id": "236", "properties": {"Object ID": 574447814, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93364603, 32.781073771, -79.93364603, 32.781073771], "geometry": {"coordinates": [-79.93364603, 32.781073771], "type": "Point"}, "id": "237", "properties": {"Object ID": 574447830, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93364603, 32.781073771, -79.93364603, 32.781073771], "geometry": {"coordinates": [-79.93364603, 32.781073771], "type": "Point"}, "id": "238", "properties": {"Object ID": 574447832, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93368836, 32.78091163, -79.93368836, 32.78091163], "geometry": {"coordinates": [-79.93368836, 32.78091163], "type": "Point"}, "id": "239", "properties": {"Object ID": 574447840, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.926487, 32.780818198, -79.926487, 32.780818198], "geometry": {"coordinates": [-79.926487, 32.780818198], "type": "Point"}, "id": "240", "properties": {"Object ID": 574451291, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.926487, 32.780818198, -79.926487, 32.780818198], "geometry": {"coordinates": [-79.926487, 32.780818198], "type": "Point"}, "id": "241", "properties": {"Object ID": 574451292, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9265575, 32.7779802, -79.9265575, 32.7779802], "geometry": {"coordinates": [-79.9265575, 32.7779802], "type": "Point"}, "id": "242", "properties": {"Object ID": 574453708, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9265575, 32.7779802, -79.9265575, 32.7779802], "geometry": {"coordinates": [-79.9265575, 32.7779802], "type": "Point"}, "id": "243", "properties": {"Object ID": 574453716, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9265575, 32.7779802, -79.9265575, 32.7779802], "geometry": {"coordinates": [-79.9265575, 32.7779802], "type": "Point"}, "id": "244", "properties": {"Object ID": 574453718, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93069936, 32.78185867, -79.93069936, 32.78185867], "geometry": {"coordinates": [-79.93069936, 32.78185867], "type": "Point"}, "id": "245", "properties": {"Object ID": 574454476, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92675798, 32.779623429, -79.92675798, 32.779623429], "geometry": {"coordinates": [-79.92675798, 32.779623429], "type": "Point"}, "id": "246", "properties": {"Object ID": 574455176, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92675798, 32.779623429, -79.92675798, 32.779623429], "geometry": {"coordinates": [-79.92675798, 32.779623429], "type": "Point"}, "id": "247", "properties": {"Object ID": 574455179, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93204842, 32.782216168, -79.93204842, 32.782216168], "geometry": {"coordinates": [-79.93204842, 32.782216168], "type": "Point"}, "id": "248", "properties": {"Object ID": 574460919, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93185497, 32.781795259, -79.93185497, 32.781795259], "geometry": {"coordinates": [-79.93185497, 32.781795259], "type": "Point"}, "id": "249", "properties": {"Object ID": 574460925, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93355205, 32.781223407, -79.93355205, 32.781223407], "geometry": {"coordinates": [-79.93355205, 32.781223407], "type": "Point"}, "id": "250", "properties": {"Object ID": 574460929, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93319151, 32.778253452, -79.93319151, 32.778253452], "geometry": {"coordinates": [-79.93319151, 32.778253452], "type": "Point"}, "id": "251", "properties": {"Object ID": 574460963, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.928615, 32.780554416, -79.928615, 32.780554416], "geometry": {"coordinates": [-79.928615, 32.780554416], "type": "Point"}, "id": "252", "properties": {"Object ID": 574461017, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93269937, 32.77799692, -79.93269937, 32.77799692], "geometry": {"coordinates": [-79.93269937, 32.77799692], "type": "Point"}, "id": "253", "properties": {"Object ID": 574461045, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9297417, 32.776818232, -79.9297417, 32.776818232], "geometry": {"coordinates": [-79.9297417, 32.776818232], "type": "Point"}, "id": "254", "properties": {"Object ID": 574461063, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92738581, 32.77970087, -79.92738581, 32.77970087], "geometry": {"coordinates": [-79.92738581, 32.77970087], "type": "Point"}, "id": "255", "properties": {"Object ID": 574461286, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673802, 32.779726367, -79.92673802, 32.779726367], "geometry": {"coordinates": [-79.92673802, 32.779726367], "type": "Point"}, "id": "256", "properties": {"Object ID": 574461294, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673802, 32.779726367, -79.92673802, 32.779726367], "geometry": {"coordinates": [-79.92673802, 32.779726367], "type": "Point"}, "id": "257", "properties": {"Object ID": 574461297, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673511, 32.779500111, -79.92673511, 32.779500111], "geometry": {"coordinates": [-79.92673511, 32.779500111], "type": "Point"}, "id": "258", "properties": {"Object ID": 574461298, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92732872, 32.776630152, -79.92732872, 32.776630152], "geometry": {"coordinates": [-79.92732872, 32.776630152], "type": "Point"}, "id": "259", "properties": {"Object ID": 574461315, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93378521, 32.770261381, -79.93378521, 32.770261381], "geometry": {"coordinates": [-79.93378521, 32.770261381], "type": "Point"}, "id": "260", "properties": {"Object ID": 574476700, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "261", "properties": {"Object ID": 574476708, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "262", "properties": {"Object ID": 574476724, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "263", "properties": {"Object ID": 574476730, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "264", "properties": {"Object ID": 574476736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "265", "properties": {"Object ID": 574476741, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "266", "properties": {"Object ID": 574476745, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "267", "properties": {"Object ID": 574476747, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "268", "properties": {"Object ID": 574476751, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "269", "properties": {"Object ID": 574476773, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "270", "properties": {"Object ID": 574476798, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "271", "properties": {"Object ID": 574476802, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9303937, 32.774591616, -79.9303937, 32.774591616], "geometry": {"coordinates": [-79.9303937, 32.774591616], "type": "Point"}, "id": "272", "properties": {"Object ID": 574486902, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93189785, 32.773192121, -79.93189785, 32.773192121], "geometry": {"coordinates": [-79.93189785, 32.773192121], "type": "Point"}, "id": "273", "properties": {"Object ID": 574486910, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93327038, 32.771857448, -79.93327038, 32.771857448], "geometry": {"coordinates": [-79.93327038, 32.771857448], "type": "Point"}, "id": "274", "properties": {"Object ID": 574486914, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93341863, 32.778558501, -79.93341863, 32.778558501], "geometry": {"coordinates": [-79.93341863, 32.778558501], "type": "Point"}, "id": "275", "properties": {"Object ID": 574487010, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "276", "properties": {"Object ID": 574487020, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "277", "properties": {"Object ID": 574487022, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "278", "properties": {"Object ID": 574487026, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93099298, 32.777963075, -79.93099298, 32.777963075], "geometry": {"coordinates": [-79.93099298, 32.777963075], "type": "Point"}, "id": "279", "properties": {"Object ID": 574487100, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93010382, 32.782773607, -79.93010382, 32.782773607], "geometry": {"coordinates": [-79.93010382, 32.782773607], "type": "Point"}, "id": "280", "properties": {"Object ID": 574488422, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "281", "properties": {"Object ID": 574488428, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "282", "properties": {"Object ID": 574488655, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "283", "properties": {"Object ID": 574488668, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92873624, 32.7785858, -79.92873624, 32.7785858], "geometry": {"coordinates": [-79.92873624, 32.7785858], "type": "Point"}, "id": "284", "properties": {"Object ID": 574488688, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92879983, 32.778170178, -79.92879983, 32.778170178], "geometry": {"coordinates": [-79.92879983, 32.778170178], "type": "Point"}, "id": "285", "properties": {"Object ID": 574488691, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92792729, 32.779113403, -79.92792729, 32.779113403], "geometry": {"coordinates": [-79.92792729, 32.779113403], "type": "Point"}, "id": "286", "properties": {"Object ID": 574488703, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92820274, 32.778662139, -79.92820274, 32.778662139], "geometry": {"coordinates": [-79.92820274, 32.778662139], "type": "Point"}, "id": "287", "properties": {"Object ID": 574488706, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92679108, 32.778909003, -79.92679108, 32.778909003], "geometry": {"coordinates": [-79.92679108, 32.778909003], "type": "Point"}, "id": "288", "properties": {"Object ID": 574488721, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "289", "properties": {"Object ID": 574488728, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "290", "properties": {"Object ID": 574488730, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "291", "properties": {"Object ID": 574488731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "292", "properties": {"Object ID": 574488755, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "293", "properties": {"Object ID": 574488758, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "294", "properties": {"Object ID": 574488760, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92839366, 32.776254187, -79.92839366, 32.776254187], "geometry": {"coordinates": [-79.92839366, 32.776254187], "type": "Point"}, "id": "295", "properties": {"Object ID": 574488770, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92657086, 32.77801074, -79.92657086, 32.77801074], "geometry": {"coordinates": [-79.92657086, 32.77801074], "type": "Point"}, "id": "296", "properties": {"Object ID": 574488776, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92621897, 32.777241248, -79.92621897, 32.777241248], "geometry": {"coordinates": [-79.92621897, 32.777241248], "type": "Point"}, "id": "297", "properties": {"Object ID": 574488779, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "298", "properties": {"Object ID": 574488782, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "299", "properties": {"Object ID": 574488785, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "300", "properties": {"Object ID": 574488787, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "301", "properties": {"Object ID": 574488788, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92564707, 32.776897949, -79.92564707, 32.776897949], "geometry": {"coordinates": [-79.92564707, 32.776897949], "type": "Point"}, "id": "302", "properties": {"Object ID": 574488789, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9278244, 32.776520526, -79.9278244, 32.776520526], "geometry": {"coordinates": [-79.9278244, 32.776520526], "type": "Point"}, "id": "303", "properties": {"Object ID": 574488790, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "304", "properties": {"Object ID": 574488797, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92747743, 32.775444399, -79.92747743, 32.775444399], "geometry": {"coordinates": [-79.92747743, 32.775444399], "type": "Point"}, "id": "305", "properties": {"Object ID": 574488843, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92787671, 32.774030712, -79.92787671, 32.774030712], "geometry": {"coordinates": [-79.92787671, 32.774030712], "type": "Point"}, "id": "306", "properties": {"Object ID": 574488864, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92983764, 32.771915503, -79.92983764, 32.771915503], "geometry": {"coordinates": [-79.92983764, 32.771915503], "type": "Point"}, "id": "307", "properties": {"Object ID": 574488871, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94535006, 32.776922657, -79.94535006, 32.776922657], "geometry": {"coordinates": [-79.94535006, 32.776922657], "type": "Point"}, "id": "308", "properties": {"Object ID": 574486731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94576754, 32.776757269, -79.94576754, 32.776757269], "geometry": {"coordinates": [-79.94576754, 32.776757269], "type": "Point"}, "id": "309", "properties": {"Object ID": 574486733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93448657, 32.772126133, -79.93448657, 32.772126133], "geometry": {"coordinates": [-79.93448657, 32.772126133], "type": "Point"}, "id": "310", "properties": {"Object ID": 573789007, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93734922, 32.773559648, -79.93734922, 32.773559648], "geometry": {"coordinates": [-79.93734922, 32.773559648], "type": "Point"}, "id": "311", "properties": {"Object ID": 573789244, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93538896, 32.772554222, -79.93538896, 32.772554222], "geometry": {"coordinates": [-79.93538896, 32.772554222], "type": "Point"}, "id": "312", "properties": {"Object ID": 573789015, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93416321, 32.772727135, -79.93416321, 32.772727135], "geometry": {"coordinates": [-79.93416321, 32.772727135], "type": "Point"}, "id": "313", "properties": {"Object ID": 573789018, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9350509, 32.772964392, -79.9350509, 32.772964392], "geometry": {"coordinates": [-79.9350509, 32.772964392], "type": "Point"}, "id": "314", "properties": {"Object ID": 573789020, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93457154, 32.774125594, -79.93457154, 32.774125594], "geometry": {"coordinates": [-79.93457154, 32.774125594], "type": "Point"}, "id": "315", "properties": {"Object ID": 573789038, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93598329, 32.779587071, -79.93598329, 32.779587071], "geometry": {"coordinates": [-79.93598329, 32.779587071], "type": "Point"}, "id": "316", "properties": {"Object ID": 573789125, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93556626, 32.779617714, -79.93556626, 32.779617714], "geometry": {"coordinates": [-79.93556626, 32.779617714], "type": "Point"}, "id": "317", "properties": {"Object ID": 573789128, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93545543, 32.779653107, -79.93545543, 32.779653107], "geometry": {"coordinates": [-79.93545543, 32.779653107], "type": "Point"}, "id": "318", "properties": {"Object ID": 573789129, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93460795, 32.77444064, -79.93460795, 32.77444064], "geometry": {"coordinates": [-79.93460795, 32.77444064], "type": "Point"}, "id": "319", "properties": {"Object ID": 573789137, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93502228, 32.775581217, -79.93502228, 32.775581217], "geometry": {"coordinates": [-79.93502228, 32.775581217], "type": "Point"}, "id": "320", "properties": {"Object ID": 573789151, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93473706, 32.775669235, -79.93473706, 32.775669235], "geometry": {"coordinates": [-79.93473706, 32.775669235], "type": "Point"}, "id": "321", "properties": {"Object ID": 573789153, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93565778, 32.775855588, -79.93565778, 32.775855588], "geometry": {"coordinates": [-79.93565778, 32.775855588], "type": "Point"}, "id": "322", "properties": {"Object ID": 573789157, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93519799, 32.775873131, -79.93519799, 32.775873131], "geometry": {"coordinates": [-79.93519799, 32.775873131], "type": "Point"}, "id": "323", "properties": {"Object ID": 573789158, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93490138, 32.775887122, -79.93490138, 32.775887122], "geometry": {"coordinates": [-79.93490138, 32.775887122], "type": "Point"}, "id": "324", "properties": {"Object ID": 573789159, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93693849, 32.777955157, -79.93693849, 32.777955157], "geometry": {"coordinates": [-79.93693849, 32.777955157], "type": "Point"}, "id": "325", "properties": {"Object ID": 573789189, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9362999, 32.778362141, -79.9362999, 32.778362141], "geometry": {"coordinates": [-79.9362999, 32.778362141], "type": "Point"}, "id": "326", "properties": {"Object ID": 573789194, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93628486, 32.778578677, -79.93628486, 32.778578677], "geometry": {"coordinates": [-79.93628486, 32.778578677], "type": "Point"}, "id": "327", "properties": {"Object ID": 573789197, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93714449, 32.772463145, -79.93714449, 32.772463145], "geometry": {"coordinates": [-79.93714449, 32.772463145], "type": "Point"}, "id": "328", "properties": {"Object ID": 573789217, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93718391, 32.772062331, -79.93718391, 32.772062331], "geometry": {"coordinates": [-79.93718391, 32.772062331], "type": "Point"}, "id": "329", "properties": {"Object ID": 573789219, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93726913, 32.773261342, -79.93726913, 32.773261342], "geometry": {"coordinates": [-79.93726913, 32.773261342], "type": "Point"}, "id": "330", "properties": {"Object ID": 573789238, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93916423, 32.774556754, -79.93916423, 32.774556754], "geometry": {"coordinates": [-79.93916423, 32.774556754], "type": "Point"}, "id": "331", "properties": {"Object ID": 573789333, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93766094, 32.775523076, -79.93766094, 32.775523076], "geometry": {"coordinates": [-79.93766094, 32.775523076], "type": "Point"}, "id": "332", "properties": {"Object ID": 573789354, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9381655, 32.775585135, -79.9381655, 32.775585135], "geometry": {"coordinates": [-79.9381655, 32.775585135], "type": "Point"}, "id": "333", "properties": {"Object ID": 573789359, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93803255, 32.777139819, -79.93803255, 32.777139819], "geometry": {"coordinates": [-79.93803255, 32.777139819], "type": "Point"}, "id": "334", "properties": {"Object ID": 573789431, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93835293, 32.777096821, -79.93835293, 32.777096821], "geometry": {"coordinates": [-79.93835293, 32.777096821], "type": "Point"}, "id": "335", "properties": {"Object ID": 573789457, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93771746, 32.777206323, -79.93771746, 32.777206323], "geometry": {"coordinates": [-79.93771746, 32.777206323], "type": "Point"}, "id": "336", "properties": {"Object ID": 573789460, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93827119, 32.773608704, -79.93827119, 32.773608704], "geometry": {"coordinates": [-79.93827119, 32.773608704], "type": "Point"}, "id": "337", "properties": {"Object ID": 573789725, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9388745, 32.778951101, -79.9388745, 32.778951101], "geometry": {"coordinates": [-79.9388745, 32.778951101], "type": "Point"}, "id": "338", "properties": {"Object ID": 573794204, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93856829, 32.779083084, -79.93856829, 32.779083084], "geometry": {"coordinates": [-79.93856829, 32.779083084], "type": "Point"}, "id": "339", "properties": {"Object ID": 573794210, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93856829, 32.779083084, -79.93856829, 32.779083084], "geometry": {"coordinates": [-79.93856829, 32.779083084], "type": "Point"}, "id": "340", "properties": {"Object ID": 573794212, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93830633, 32.779336481, -79.93830633, 32.779336481], "geometry": {"coordinates": [-79.93830633, 32.779336481], "type": "Point"}, "id": "341", "properties": {"Object ID": 573794214, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93888854, 32.77700303, -79.93888854, 32.77700303], "geometry": {"coordinates": [-79.93888854, 32.77700303], "type": "Point"}, "id": "342", "properties": {"Object ID": 573794265, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93913879, 32.776592723, -79.93913879, 32.776592723], "geometry": {"coordinates": [-79.93913879, 32.776592723], "type": "Point"}, "id": "343", "properties": {"Object ID": 573794273, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93870903, 32.776619225, -79.93870903, 32.776619225], "geometry": {"coordinates": [-79.93870903, 32.776619225], "type": "Point"}, "id": "344", "properties": {"Object ID": 573794277, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93879261, 32.776621581, -79.93879261, 32.776621581], "geometry": {"coordinates": [-79.93879261, 32.776621581], "type": "Point"}, "id": "345", "properties": {"Object ID": 573794279, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93967326, 32.776949978, -79.93967326, 32.776949978], "geometry": {"coordinates": [-79.93967326, 32.776949978], "type": "Point"}, "id": "346", "properties": {"Object ID": 573794300, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93939249, 32.777006969, -79.93939249, 32.777006969], "geometry": {"coordinates": [-79.93939249, 32.777006969], "type": "Point"}, "id": "347", "properties": {"Object ID": 573794306, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93957266, 32.773937837, -79.93957266, 32.773937837], "geometry": {"coordinates": [-79.93957266, 32.773937837], "type": "Point"}, "id": "348", "properties": {"Object ID": 573795542, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94017754, 32.774703917, -79.94017754, 32.774703917], "geometry": {"coordinates": [-79.94017754, 32.774703917], "type": "Point"}, "id": "349", "properties": {"Object ID": 573795563, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94018872, 32.774815879, -79.94018872, 32.774815879], "geometry": {"coordinates": [-79.94018872, 32.774815879], "type": "Point"}, "id": "350", "properties": {"Object ID": 573795567, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94035902, 32.778525286, -79.94035902, 32.778525286], "geometry": {"coordinates": [-79.94035902, 32.778525286], "type": "Point"}, "id": "351", "properties": {"Object ID": 573795703, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93983414, 32.778812195, -79.93983414, 32.778812195], "geometry": {"coordinates": [-79.93983414, 32.778812195], "type": "Point"}, "id": "352", "properties": {"Object ID": 573795714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94208958, 32.772577279, -79.94208958, 32.772577279], "geometry": {"coordinates": [-79.94208958, 32.772577279], "type": "Point"}, "id": "353", "properties": {"Object ID": 573800718, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94307847, 32.777749378, -79.94307847, 32.777749378], "geometry": {"coordinates": [-79.94307847, 32.777749378], "type": "Point"}, "id": "354", "properties": {"Object ID": 573806314, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9429624, 32.777888243, -79.9429624, 32.777888243], "geometry": {"coordinates": [-79.9429624, 32.777888243], "type": "Point"}, "id": "355", "properties": {"Object ID": 573806319, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93592489, 32.771966616, -79.93592489, 32.771966616], "geometry": {"coordinates": [-79.93592489, 32.771966616], "type": "Point"}, "id": "356", "properties": {"Object ID": 573850063, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93578585, 32.772650967, -79.93578585, 32.772650967], "geometry": {"coordinates": [-79.93578585, 32.772650967], "type": "Point"}, "id": "357", "properties": {"Object ID": 573850082, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93585322, 32.772777781, -79.93585322, 32.772777781], "geometry": {"coordinates": [-79.93585322, 32.772777781], "type": "Point"}, "id": "358", "properties": {"Object ID": 573850084, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9359242, 32.773795148, -79.9359242, 32.773795148], "geometry": {"coordinates": [-79.9359242, 32.773795148], "type": "Point"}, "id": "359", "properties": {"Object ID": 573850106, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93759801, 32.780012327, -79.93759801, 32.780012327], "geometry": {"coordinates": [-79.93759801, 32.780012327], "type": "Point"}, "id": "360", "properties": {"Object ID": 573850807, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93847335, 32.775944388, -79.93847335, 32.775944388], "geometry": {"coordinates": [-79.93847335, 32.775944388], "type": "Point"}, "id": "361", "properties": {"Object ID": 573856066, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93847335, 32.775944388, -79.93847335, 32.775944388], "geometry": {"coordinates": [-79.93847335, 32.775944388], "type": "Point"}, "id": "362", "properties": {"Object ID": 573856068, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93948176, 32.773068006, -79.93948176, 32.773068006], "geometry": {"coordinates": [-79.93948176, 32.773068006], "type": "Point"}, "id": "363", "properties": {"Object ID": 573860087, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94051176, 32.77412515, -79.94051176, 32.77412515], "geometry": {"coordinates": [-79.94051176, 32.77412515], "type": "Point"}, "id": "364", "properties": {"Object ID": 573860252, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94081369, 32.77419362, -79.94081369, 32.77419362], "geometry": {"coordinates": [-79.94081369, 32.77419362], "type": "Point"}, "id": "365", "properties": {"Object ID": 573860254, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94051699, 32.774229963, -79.94051699, 32.774229963], "geometry": {"coordinates": [-79.94051699, 32.774229963], "type": "Point"}, "id": "366", "properties": {"Object ID": 573860256, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94061347, 32.774886557, -79.94061347, 32.774886557], "geometry": {"coordinates": [-79.94061347, 32.774886557], "type": "Point"}, "id": "367", "properties": {"Object ID": 573860279, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94066901, 32.775345254, -79.94066901, 32.775345254], "geometry": {"coordinates": [-79.94066901, 32.775345254], "type": "Point"}, "id": "368", "properties": {"Object ID": 573860296, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94240692, 32.778108071, -79.94240692, 32.778108071], "geometry": {"coordinates": [-79.94240692, 32.778108071], "type": "Point"}, "id": "369", "properties": {"Object ID": 573860809, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93506524, 32.770285125, -79.93506524, 32.770285125], "geometry": {"coordinates": [-79.93506524, 32.770285125], "type": "Point"}, "id": "370", "properties": {"Object ID": 574268589, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93479209, 32.770882299, -79.93479209, 32.770882299], "geometry": {"coordinates": [-79.93479209, 32.770882299], "type": "Point"}, "id": "371", "properties": {"Object ID": 574268676, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93507803, 32.771379107, -79.93507803, 32.771379107], "geometry": {"coordinates": [-79.93507803, 32.771379107], "type": "Point"}, "id": "372", "properties": {"Object ID": 574268686, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93433723, 32.771866244, -79.93433723, 32.771866244], "geometry": {"coordinates": [-79.93433723, 32.771866244], "type": "Point"}, "id": "373", "properties": {"Object ID": 574268704, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93767162, 32.774014875, -79.93767162, 32.774014875], "geometry": {"coordinates": [-79.93767162, 32.774014875], "type": "Point"}, "id": "374", "properties": {"Object ID": 574268738, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93710509, 32.774072701, -79.93710509, 32.774072701], "geometry": {"coordinates": [-79.93710509, 32.774072701], "type": "Point"}, "id": "375", "properties": {"Object ID": 574268742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93596651, 32.774228269, -79.93596651, 32.774228269], "geometry": {"coordinates": [-79.93596651, 32.774228269], "type": "Point"}, "id": "376", "properties": {"Object ID": 574268752, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9363641, 32.774219989, -79.9363641, 32.774219989], "geometry": {"coordinates": [-79.9363641, 32.774219989], "type": "Point"}, "id": "377", "properties": {"Object ID": 574268759, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93575925, 32.774255824, -79.93575925, 32.774255824], "geometry": {"coordinates": [-79.93575925, 32.774255824], "type": "Point"}, "id": "378", "properties": {"Object ID": 574268761, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93612078, 32.774644753, -79.93612078, 32.774644753], "geometry": {"coordinates": [-79.93612078, 32.774644753], "type": "Point"}, "id": "379", "properties": {"Object ID": 574268775, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93649777, 32.775185967, -79.93649777, 32.775185967], "geometry": {"coordinates": [-79.93649777, 32.775185967], "type": "Point"}, "id": "380", "properties": {"Object ID": 574268800, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93645231, 32.775264486, -79.93645231, 32.775264486], "geometry": {"coordinates": [-79.93645231, 32.775264486], "type": "Point"}, "id": "381", "properties": {"Object ID": 574268802, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93629706, 32.77537191, -79.93629706, 32.77537191], "geometry": {"coordinates": [-79.93629706, 32.77537191], "type": "Point"}, "id": "382", "properties": {"Object ID": 574268806, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93590704, 32.775733091, -79.93590704, 32.775733091], "geometry": {"coordinates": [-79.93590704, 32.775733091], "type": "Point"}, "id": "383", "properties": {"Object ID": 574268814, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93611015, 32.771372386, -79.93611015, 32.771372386], "geometry": {"coordinates": [-79.93611015, 32.771372386], "type": "Point"}, "id": "384", "properties": {"Object ID": 574268905, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93607679, 32.776939396, -79.93607679, 32.776939396], "geometry": {"coordinates": [-79.93607679, 32.776939396], "type": "Point"}, "id": "385", "properties": {"Object ID": 574268936, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93647865, 32.776956527, -79.93647865, 32.776956527], "geometry": {"coordinates": [-79.93647865, 32.776956527], "type": "Point"}, "id": "386", "properties": {"Object ID": 574268940, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93731747, 32.777240698, -79.93731747, 32.777240698], "geometry": {"coordinates": [-79.93731747, 32.777240698], "type": "Point"}, "id": "387", "properties": {"Object ID": 574268950, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93620043, 32.777318712, -79.93620043, 32.777318712], "geometry": {"coordinates": [-79.93620043, 32.777318712], "type": "Point"}, "id": "388", "properties": {"Object ID": 574268961, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93872273, 32.774082603, -79.93872273, 32.774082603], "geometry": {"coordinates": [-79.93872273, 32.774082603], "type": "Point"}, "id": "389", "properties": {"Object ID": 574269143, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93852213, 32.774303023, -79.93852213, 32.774303023], "geometry": {"coordinates": [-79.93852213, 32.774303023], "type": "Point"}, "id": "390", "properties": {"Object ID": 574269149, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9377773, 32.774460142, -79.9377773, 32.774460142], "geometry": {"coordinates": [-79.9377773, 32.774460142], "type": "Point"}, "id": "391", "properties": {"Object ID": 574269155, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93770351, 32.774559847, -79.93770351, 32.774559847], "geometry": {"coordinates": [-79.93770351, 32.774559847], "type": "Point"}, "id": "392", "properties": {"Object ID": 574269159, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93787827, 32.774937546, -79.93787827, 32.774937546], "geometry": {"coordinates": [-79.93787827, 32.774937546], "type": "Point"}, "id": "393", "properties": {"Object ID": 574269182, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93740152, 32.774916492, -79.93740152, 32.774916492], "geometry": {"coordinates": [-79.93740152, 32.774916492], "type": "Point"}, "id": "394", "properties": {"Object ID": 574269184, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93703665, 32.775231071, -79.93703665, 32.775231071], "geometry": {"coordinates": [-79.93703665, 32.775231071], "type": "Point"}, "id": "395", "properties": {"Object ID": 574269197, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9367818, 32.775544505, -79.9367818, 32.775544505], "geometry": {"coordinates": [-79.9367818, 32.775544505], "type": "Point"}, "id": "396", "properties": {"Object ID": 574269210, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93662489, 32.775600043, -79.93662489, 32.775600043], "geometry": {"coordinates": [-79.93662489, 32.775600043], "type": "Point"}, "id": "397", "properties": {"Object ID": 574269214, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93819354, 32.777429077, -79.93819354, 32.777429077], "geometry": {"coordinates": [-79.93819354, 32.777429077], "type": "Point"}, "id": "398", "properties": {"Object ID": 574269288, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93812086, 32.778053709, -79.93812086, 32.778053709], "geometry": {"coordinates": [-79.93812086, 32.778053709], "type": "Point"}, "id": "399", "properties": {"Object ID": 574269311, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93661628, 32.779542963, -79.93661628, 32.779542963], "geometry": {"coordinates": [-79.93661628, 32.779542963], "type": "Point"}, "id": "400", "properties": {"Object ID": 574294734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93616824, 32.770574015, -79.93616824, 32.770574015], "geometry": {"coordinates": [-79.93616824, 32.770574015], "type": "Point"}, "id": "401", "properties": {"Object ID": 574294751, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93647511, 32.770608002, -79.93647511, 32.770608002], "geometry": {"coordinates": [-79.93647511, 32.770608002], "type": "Point"}, "id": "402", "properties": {"Object ID": 574294753, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93680363, 32.770686806, -79.93680363, 32.770686806], "geometry": {"coordinates": [-79.93680363, 32.770686806], "type": "Point"}, "id": "403", "properties": {"Object ID": 574294755, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93794348, 32.779846323, -79.93794348, 32.779846323], "geometry": {"coordinates": [-79.93794348, 32.779846323], "type": "Point"}, "id": "404", "properties": {"Object ID": 574294828, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93930365, 32.777467101, -79.93930365, 32.777467101], "geometry": {"coordinates": [-79.93930365, 32.777467101], "type": "Point"}, "id": "405", "properties": {"Object ID": 574295710, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93773589, 32.777865692, -79.93773589, 32.777865692], "geometry": {"coordinates": [-79.93773589, 32.777865692], "type": "Point"}, "id": "406", "properties": {"Object ID": 574295729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93861426, 32.777766057, -79.93861426, 32.777766057], "geometry": {"coordinates": [-79.93861426, 32.777766057], "type": "Point"}, "id": "407", "properties": {"Object ID": 574295731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94097343, 32.778702238, -79.94097343, 32.778702238], "geometry": {"coordinates": [-79.94097343, 32.778702238], "type": "Point"}, "id": "408", "properties": {"Object ID": 574295937, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94008986, 32.771695182, -79.94008986, 32.771695182], "geometry": {"coordinates": [-79.94008986, 32.771695182], "type": "Point"}, "id": "409", "properties": {"Object ID": 574296075, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94073507, 32.771969909, -79.94073507, 32.771969909], "geometry": {"coordinates": [-79.94073507, 32.771969909], "type": "Point"}, "id": "410", "properties": {"Object ID": 574296071, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93650435, 32.772355831, -79.93650435, 32.772355831], "geometry": {"coordinates": [-79.93650435, 32.772355831], "type": "Point"}, "id": "411", "properties": {"Object ID": 574371853, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9340377, 32.777812018, -79.9340377, 32.777812018], "geometry": {"coordinates": [-79.9340377, 32.777812018], "type": "Point"}, "id": "412", "properties": {"Object ID": 574371660, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93417268, 32.777810727, -79.93417268, 32.777810727], "geometry": {"coordinates": [-79.93417268, 32.777810727], "type": "Point"}, "id": "413", "properties": {"Object ID": 574371664, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93418554, 32.778027576, -79.93418554, 32.778027576], "geometry": {"coordinates": [-79.93418554, 32.778027576], "type": "Point"}, "id": "414", "properties": {"Object ID": 574371681, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93572033, 32.778549364, -79.93572033, 32.778549364], "geometry": {"coordinates": [-79.93572033, 32.778549364], "type": "Point"}, "id": "415", "properties": {"Object ID": 574371779, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93967324, 32.772787928, -79.93967324, 32.772787928], "geometry": {"coordinates": [-79.93967324, 32.772787928], "type": "Point"}, "id": "416", "properties": {"Object ID": 574372038, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94027533, 32.772711727, -79.94027533, 32.772711727], "geometry": {"coordinates": [-79.94027533, 32.772711727], "type": "Point"}, "id": "417", "properties": {"Object ID": 574372056, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94080978, 32.773305397, -79.94080978, 32.773305397], "geometry": {"coordinates": [-79.94080978, 32.773305397], "type": "Point"}, "id": "418", "properties": {"Object ID": 574372080, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93698483, 32.773741413, -79.93698483, 32.773741413], "geometry": {"coordinates": [-79.93698483, 32.773741413], "type": "Point"}, "id": "419", "properties": {"Object ID": 574371926, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93561315, 32.776247585, -79.93561315, 32.776247585], "geometry": {"coordinates": [-79.93561315, 32.776247585], "type": "Point"}, "id": "420", "properties": {"Object ID": 574372948, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542452, 32.776442332, -79.93542452, 32.776442332], "geometry": {"coordinates": [-79.93542452, 32.776442332], "type": "Point"}, "id": "421", "properties": {"Object ID": 574372959, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93493554, 32.776655945, -79.93493554, 32.776655945], "geometry": {"coordinates": [-79.93493554, 32.776655945], "type": "Point"}, "id": "422", "properties": {"Object ID": 574372963, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93566118, 32.776727236, -79.93566118, 32.776727236], "geometry": {"coordinates": [-79.93566118, 32.776727236], "type": "Point"}, "id": "423", "properties": {"Object ID": 574372964, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9356845, 32.77735098, -79.9356845, 32.77735098], "geometry": {"coordinates": [-79.9356845, 32.77735098], "type": "Point"}, "id": "424", "properties": {"Object ID": 574372987, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93467942, 32.777360598, -79.93467942, 32.777360598], "geometry": {"coordinates": [-79.93467942, 32.777360598], "type": "Point"}, "id": "425", "properties": {"Object ID": 574409655, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9339938, 32.777484322, -79.9339938, 32.777484322], "geometry": {"coordinates": [-79.9339938, 32.777484322], "type": "Point"}, "id": "426", "properties": {"Object ID": 574409656, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93858876, 32.770981389, -79.93858876, 32.770981389], "geometry": {"coordinates": [-79.93858876, 32.770981389], "type": "Point"}, "id": "427", "properties": {"Object ID": 574409949, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93888674, 32.771096386, -79.93888674, 32.771096386], "geometry": {"coordinates": [-79.93888674, 32.771096386], "type": "Point"}, "id": "428", "properties": {"Object ID": 574421846, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93944399, 32.771416594, -79.93944399, 32.771416594], "geometry": {"coordinates": [-79.93944399, 32.771416594], "type": "Point"}, "id": "429", "properties": {"Object ID": 574421853, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93864922, 32.771481104, -79.93864922, 32.771481104], "geometry": {"coordinates": [-79.93864922, 32.771481104], "type": "Point"}, "id": "430", "properties": {"Object ID": 574421857, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93882755, 32.771527681, -79.93882755, 32.771527681], "geometry": {"coordinates": [-79.93882755, 32.771527681], "type": "Point"}, "id": "431", "properties": {"Object ID": 574421863, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93908385, 32.771694623, -79.93908385, 32.771694623], "geometry": {"coordinates": [-79.93908385, 32.771694623], "type": "Point"}, "id": "432", "properties": {"Object ID": 574421867, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94377195, 32.776775025, -79.94377195, 32.776775025], "geometry": {"coordinates": [-79.94377195, 32.776775025], "type": "Point"}, "id": "433", "properties": {"Object ID": 574431595, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93454869, 32.779269657, -79.93454869, 32.779269657], "geometry": {"coordinates": [-79.93454869, 32.779269657], "type": "Point"}, "id": "434", "properties": {"Object ID": 574446535, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93455069, 32.779355163, -79.93455069, 32.779355163], "geometry": {"coordinates": [-79.93455069, 32.779355163], "type": "Point"}, "id": "435", "properties": {"Object ID": 574446549, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "436", "properties": {"Object ID": 574447804, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505067, 32.780686378, -79.93505067, 32.780686378], "geometry": {"coordinates": [-79.93505067, 32.780686378], "type": "Point"}, "id": "437", "properties": {"Object ID": 574455488, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93401099, 32.780256033, -79.93401099, 32.780256033], "geometry": {"coordinates": [-79.93401099, 32.780256033], "type": "Point"}, "id": "438", "properties": {"Object ID": 574455891, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93401099, 32.780256033, -79.93401099, 32.780256033], "geometry": {"coordinates": [-79.93401099, 32.780256033], "type": "Point"}, "id": "439", "properties": {"Object ID": 574455893, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93420524, 32.779937346, -79.93420524, 32.779937346], "geometry": {"coordinates": [-79.93420524, 32.779937346], "type": "Point"}, "id": "440", "properties": {"Object ID": 574460947, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93530803, 32.774862095, -79.93530803, 32.774862095], "geometry": {"coordinates": [-79.93530803, 32.774862095], "type": "Point"}, "id": "441", "properties": {"Object ID": 574461049, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94242933, 32.778108219, -79.94242933, 32.778108219], "geometry": {"coordinates": [-79.94242933, 32.778108219], "type": "Point"}, "id": "442", "properties": {"Object ID": 574485619, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "443", "properties": {"Object ID": 574485652, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "444", "properties": {"Object ID": 574485654, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "445", "properties": {"Object ID": 574485663, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "446", "properties": {"Object ID": 574485664, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "447", "properties": {"Object ID": 574486700, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "448", "properties": {"Object ID": 574486702, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "449", "properties": {"Object ID": 574486745, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "450", "properties": {"Object ID": 574486747, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "451", "properties": {"Object ID": 574486760, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "452", "properties": {"Object ID": 574486761, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93822265, 32.777639314, -79.93822265, 32.777639314], "geometry": {"coordinates": [-79.93822265, 32.777639314], "type": "Point"}, "id": "453", "properties": {"Object ID": 574486796, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93921764, 32.776949441, -79.93921764, 32.776949441], "geometry": {"coordinates": [-79.93921764, 32.776949441], "type": "Point"}, "id": "454", "properties": {"Object ID": 574486799, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93892571, 32.776049265, -79.93892571, 32.776049265], "geometry": {"coordinates": [-79.93892571, 32.776049265], "type": "Point"}, "id": "455", "properties": {"Object ID": 574486810, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94120829, 32.773686968, -79.94120829, 32.773686968], "geometry": {"coordinates": [-79.94120829, 32.773686968], "type": "Point"}, "id": "456", "properties": {"Object ID": 574486829, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93911017, 32.774639014, -79.93911017, 32.774639014], "geometry": {"coordinates": [-79.93911017, 32.774639014], "type": "Point"}, "id": "457", "properties": {"Object ID": 574486834, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93842612, 32.773930758, -79.93842612, 32.773930758], "geometry": {"coordinates": [-79.93842612, 32.773930758], "type": "Point"}, "id": "458", "properties": {"Object ID": 574486841, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9388671, 32.773329276, -79.9388671, 32.773329276], "geometry": {"coordinates": [-79.9388671, 32.773329276], "type": "Point"}, "id": "459", "properties": {"Object ID": 574486849, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93622307, 32.774620925, -79.93622307, 32.774620925], "geometry": {"coordinates": [-79.93622307, 32.774620925], "type": "Point"}, "id": "460", "properties": {"Object ID": 574486866, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93622307, 32.774620925, -79.93622307, 32.774620925], "geometry": {"coordinates": [-79.93622307, 32.774620925], "type": "Point"}, "id": "461", "properties": {"Object ID": 574486867, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93622307, 32.774620925, -79.93622307, 32.774620925], "geometry": {"coordinates": [-79.93622307, 32.774620925], "type": "Point"}, "id": "462", "properties": {"Object ID": 574486870, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93479539, 32.775596363, -79.93479539, 32.775596363], "geometry": {"coordinates": [-79.93479539, 32.775596363], "type": "Point"}, "id": "463", "properties": {"Object ID": 574486876, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93790402, 32.777827605, -79.93790402, 32.777827605], "geometry": {"coordinates": [-79.93790402, 32.777827605], "type": "Point"}, "id": "464", "properties": {"Object ID": 574486953, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9376776, 32.77784901, -79.9376776, 32.77784901], "geometry": {"coordinates": [-79.9376776, 32.77784901], "type": "Point"}, "id": "465", "properties": {"Object ID": 574486956, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93777386, 32.776445317, -79.93777386, 32.776445317], "geometry": {"coordinates": [-79.93777386, 32.776445317], "type": "Point"}, "id": "466", "properties": {"Object ID": 574486970, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9357483, 32.779531488, -79.9357483, 32.779531488], "geometry": {"coordinates": [-79.9357483, 32.779531488], "type": "Point"}, "id": "467", "properties": {"Object ID": 574486980, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93461369, 32.779668035, -79.93461369, 32.779668035], "geometry": {"coordinates": [-79.93461369, 32.779668035], "type": "Point"}, "id": "468", "properties": {"Object ID": 574486993, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93562925, 32.778091018, -79.93562925, 32.778091018], "geometry": {"coordinates": [-79.93562925, 32.778091018], "type": "Point"}, "id": "469", "properties": {"Object ID": 574487000, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93538148, 32.777985729, -79.93538148, 32.777985729], "geometry": {"coordinates": [-79.93538148, 32.777985729], "type": "Point"}, "id": "470", "properties": {"Object ID": 574487039, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "471", "properties": {"Object ID": 574487052, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "472", "properties": {"Object ID": 574487068, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93430262, 32.777822901, -79.93430262, 32.777822901], "geometry": {"coordinates": [-79.93430262, 32.777822901], "type": "Point"}, "id": "473", "properties": {"Object ID": 574487075, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93595261, 32.776210444, -79.93595261, 32.776210444], "geometry": {"coordinates": [-79.93595261, 32.776210444], "type": "Point"}, "id": "474", "properties": {"Object ID": 574487096, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9333705, 32.774557773, -79.9333705, 32.774557773], "geometry": {"coordinates": [-79.9333705, 32.774557773], "type": "Point"}, "id": "475", "properties": {"Object ID": 573475702, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92879208, 32.772589616, -79.92879208, 32.772589616], "geometry": {"coordinates": [-79.92879208, 32.772589616], "type": "Point"}, "id": "476", "properties": {"Object ID": 573782435, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92967136, 32.772517063, -79.92967136, 32.772517063], "geometry": {"coordinates": [-79.92967136, 32.772517063], "type": "Point"}, "id": "477", "properties": {"Object ID": 573782574, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93028792, 32.773039913, -79.93028792, 32.773039913], "geometry": {"coordinates": [-79.93028792, 32.773039913], "type": "Point"}, "id": "478", "properties": {"Object ID": 573782590, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92936358, 32.773541539, -79.92936358, 32.773541539], "geometry": {"coordinates": [-79.92936358, 32.773541539], "type": "Point"}, "id": "479", "properties": {"Object ID": 573783144, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92978985, 32.770699308, -79.92978985, 32.770699308], "geometry": {"coordinates": [-79.92978985, 32.770699308], "type": "Point"}, "id": "480", "properties": {"Object ID": 573783421, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93407396, 32.772290752, -79.93407396, 32.772290752], "geometry": {"coordinates": [-79.93407396, 32.772290752], "type": "Point"}, "id": "481", "properties": {"Object ID": 573789010, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93483794, 32.772949924, -79.93483794, 32.772949924], "geometry": {"coordinates": [-79.93483794, 32.772949924], "type": "Point"}, "id": "482", "properties": {"Object ID": 573789021, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9384498, 32.775574641, -79.9384498, 32.775574641], "geometry": {"coordinates": [-79.9384498, 32.775574641], "type": "Point"}, "id": "483", "properties": {"Object ID": 573789357, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94042078, 32.777638216, -79.94042078, 32.777638216], "geometry": {"coordinates": [-79.94042078, 32.777638216], "type": "Point"}, "id": "484", "properties": {"Object ID": 573795679, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92787224, 32.781358849, -79.92787224, 32.781358849], "geometry": {"coordinates": [-79.92787224, 32.781358849], "type": "Point"}, "id": "485", "properties": {"Object ID": 573827362, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9339263, 32.771234697, -79.9339263, 32.771234697], "geometry": {"coordinates": [-79.9339263, 32.771234697], "type": "Point"}, "id": "486", "properties": {"Object ID": 574268682, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93810941, 32.774114166, -79.93810941, 32.774114166], "geometry": {"coordinates": [-79.93810941, 32.774114166], "type": "Point"}, "id": "487", "properties": {"Object ID": 574269222, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9309973, 32.771647637, -79.9309973, 32.771647637], "geometry": {"coordinates": [-79.9309973, 32.771647637], "type": "Point"}, "id": "488", "properties": {"Object ID": 574372729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9385834, 32.77234976, -79.9385834, 32.77234976], "geometry": {"coordinates": [-79.9385834, 32.77234976], "type": "Point"}, "id": "489", "properties": {"Object ID": 574373121, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9378298, 32.771098061, -79.9378298, 32.771098061], "geometry": {"coordinates": [-79.9378298, 32.771098061], "type": "Point"}, "id": "490", "properties": {"Object ID": 574409959, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "491", "properties": {"Object ID": 574451483, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92810725, 32.776948576, -79.92810725, 32.776948576], "geometry": {"coordinates": [-79.92810725, 32.776948576], "type": "Point"}, "id": "492", "properties": {"Object ID": 574461091, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "493", "properties": {"Object ID": 574486304, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "494", "properties": {"Object ID": 574486754, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "495", "properties": {"Object ID": 574486763, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93484603, 32.771753102, -79.93484603, 32.771753102], "geometry": {"coordinates": [-79.93484603, 32.771753102], "type": "Point"}, "id": "496", "properties": {"Object ID": 574486906, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93405994, 32.771469521, -79.93405994, 32.771469521], "geometry": {"coordinates": [-79.93405994, 32.771469521], "type": "Point"}, "id": "497", "properties": {"Object ID": 574486907, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "498", "properties": {"Object ID": 574488665, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "499", "properties": {"Object ID": 574488699, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "500", "properties": {"Object ID": 574488784, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92769608, 32.774939907, -79.92769608, 32.774939907], "geometry": {"coordinates": [-79.92769608, 32.774939907], "type": "Point"}, "id": "501", "properties": {"Object ID": 573779413, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92799861, 32.778946379, -79.92799861, 32.778946379], "geometry": {"coordinates": [-79.92799861, 32.778946379], "type": "Point"}, "id": "502", "properties": {"Object ID": 573779431, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9289689, 32.782217096, -79.9289689, 32.782217096], "geometry": {"coordinates": [-79.9289689, 32.782217096], "type": "Point"}, "id": "503", "properties": {"Object ID": 573782472, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92979056, 32.774550683, -79.92979056, 32.774550683], "geometry": {"coordinates": [-79.92979056, 32.774550683], "type": "Point"}, "id": "504", "properties": {"Object ID": 573783181, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93055145, 32.778294283, -79.93055145, 32.778294283], "geometry": {"coordinates": [-79.93055145, 32.778294283], "type": "Point"}, "id": "505", "properties": {"Object ID": 573783274, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92978267, 32.777695288, -79.92978267, 32.777695288], "geometry": {"coordinates": [-79.92978267, 32.777695288], "type": "Point"}, "id": "506", "properties": {"Object ID": 573783339, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93326406, 32.773720865, -79.93326406, 32.773720865], "geometry": {"coordinates": [-79.93326406, 32.773720865], "type": "Point"}, "id": "507", "properties": {"Object ID": 573785945, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9356649, 32.779559153, -79.9356649, 32.779559153], "geometry": {"coordinates": [-79.9356649, 32.779559153], "type": "Point"}, "id": "508", "properties": {"Object ID": 573789127, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93635742, 32.776213477, -79.93635742, 32.776213477], "geometry": {"coordinates": [-79.93635742, 32.776213477], "type": "Point"}, "id": "509", "properties": {"Object ID": 573789163, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93632697, 32.776586814, -79.93632697, 32.776586814], "geometry": {"coordinates": [-79.93632697, 32.776586814], "type": "Point"}, "id": "510", "properties": {"Object ID": 573789180, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93646103, 32.773817225, -79.93646103, 32.773817225], "geometry": {"coordinates": [-79.93646103, 32.773817225], "type": "Point"}, "id": "511", "properties": {"Object ID": 573850108, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9392596, 32.777705003, -79.9392596, 32.777705003], "geometry": {"coordinates": [-79.9392596, 32.777705003], "type": "Point"}, "id": "512", "properties": {"Object ID": 574295704, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93258546, 32.781970217, -79.93258546, 32.781970217], "geometry": {"coordinates": [-79.93258546, 32.781970217], "type": "Point"}, "id": "513", "properties": {"Object ID": 574371571, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92971409, 32.776056935, -79.92971409, 32.776056935], "geometry": {"coordinates": [-79.92971409, 32.776056935], "type": "Point"}, "id": "514", "properties": {"Object ID": 574372561, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9287642, 32.777334067, -79.9287642, 32.777334067], "geometry": {"coordinates": [-79.9287642, 32.777334067], "type": "Point"}, "id": "515", "properties": {"Object ID": 574421659, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9445626, 32.776857362, -79.9445626, 32.776857362], "geometry": {"coordinates": [-79.9445626, 32.776857362], "type": "Point"}, "id": "516", "properties": {"Object ID": 574431597, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92592791, 32.779129789, -79.92592791, 32.779129789], "geometry": {"coordinates": [-79.92592791, 32.779129789], "type": "Point"}, "id": "517", "properties": {"Object ID": 574435917, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681259, 32.780233741, -79.92681259, 32.780233741], "geometry": {"coordinates": [-79.92681259, 32.780233741], "type": "Point"}, "id": "518", "properties": {"Object ID": 574461290, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93834227, 32.777786172, -79.93834227, 32.777786172], "geometry": {"coordinates": [-79.93834227, 32.777786172], "type": "Point"}, "id": "519", "properties": {"Object ID": 574486794, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "520", "properties": {"Object ID": 574487028, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "521", "properties": {"Object ID": 574487055, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93458576, 32.776932543, -79.93458576, 32.776932543], "geometry": {"coordinates": [-79.93458576, 32.776932543], "type": "Point"}, "id": "522", "properties": {"Object ID": 574487085, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92752096, 32.775522281, -79.92752096, 32.775522281], "geometry": {"coordinates": [-79.92752096, 32.775522281], "type": "Point"}, "id": "523", "properties": {"Object ID": 574488842, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93208953, 32.780330062, -79.93208953, 32.780330062], "geometry": {"coordinates": [-79.93208953, 32.780330062], "type": "Point"}, "id": "524", "properties": {"Object ID": 573387904, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681104, 32.778289954, -79.92681104, 32.778289954], "geometry": {"coordinates": [-79.92681104, 32.778289954], "type": "Point"}, "id": "525", "properties": {"Object ID": 573407533, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92637322, 32.778336562, -79.92637322, 32.778336562], "geometry": {"coordinates": [-79.92637322, 32.778336562], "type": "Point"}, "id": "526", "properties": {"Object ID": 573407536, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92750378, 32.774105961, -79.92750378, 32.774105961], "geometry": {"coordinates": [-79.92750378, 32.774105961], "type": "Point"}, "id": "527", "properties": {"Object ID": 573779361, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92843115, 32.777839639, -79.92843115, 32.777839639], "geometry": {"coordinates": [-79.92843115, 32.777839639], "type": "Point"}, "id": "528", "properties": {"Object ID": 573782491, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92917523, 32.773740483, -79.92917523, 32.773740483], "geometry": {"coordinates": [-79.92917523, 32.773740483], "type": "Point"}, "id": "529", "properties": {"Object ID": 573783150, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93005637, 32.774272094, -79.93005637, 32.774272094], "geometry": {"coordinates": [-79.93005637, 32.774272094], "type": "Point"}, "id": "530", "properties": {"Object ID": 573783162, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92959328, 32.771352309, -79.92959328, 32.771352309], "geometry": {"coordinates": [-79.92959328, 32.771352309], "type": "Point"}, "id": "531", "properties": {"Object ID": 573783435, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93217246, 32.776521687, -79.93217246, 32.776521687], "geometry": {"coordinates": [-79.93217246, 32.776521687], "type": "Point"}, "id": "532", "properties": {"Object ID": 573785437, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93144562, 32.773161086, -79.93144562, 32.773161086], "geometry": {"coordinates": [-79.93144562, 32.773161086], "type": "Point"}, "id": "533", "properties": {"Object ID": 573785651, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93185801, 32.773447896, -79.93185801, 32.773447896], "geometry": {"coordinates": [-79.93185801, 32.773447896], "type": "Point"}, "id": "534", "properties": {"Object ID": 573785669, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93158177, 32.773420504, -79.93158177, 32.773420504], "geometry": {"coordinates": [-79.93158177, 32.773420504], "type": "Point"}, "id": "535", "properties": {"Object ID": 573785673, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93132241, 32.773522266, -79.93132241, 32.773522266], "geometry": {"coordinates": [-79.93132241, 32.773522266], "type": "Point"}, "id": "536", "properties": {"Object ID": 573785675, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9328019, 32.774852212, -79.9328019, 32.774852212], "geometry": {"coordinates": [-79.9328019, 32.774852212], "type": "Point"}, "id": "537", "properties": {"Object ID": 573785814, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93233748, 32.771791945, -79.93233748, 32.771791945], "geometry": {"coordinates": [-79.93233748, 32.771791945], "type": "Point"}, "id": "538", "properties": {"Object ID": 573785885, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93477358, 32.775591585, -79.93477358, 32.775591585], "geometry": {"coordinates": [-79.93477358, 32.775591585], "type": "Point"}, "id": "539", "properties": {"Object ID": 573789152, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93807295, 32.775217709, -79.93807295, 32.775217709], "geometry": {"coordinates": [-79.93807295, 32.775217709], "type": "Point"}, "id": "540", "properties": {"Object ID": 573789349, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9378936, 32.775650462, -79.9378936, 32.775650462], "geometry": {"coordinates": [-79.9378936, 32.775650462], "type": "Point"}, "id": "541", "properties": {"Object ID": 573789360, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93837331, 32.772599033, -79.93837331, 32.772599033], "geometry": {"coordinates": [-79.93837331, 32.772599033], "type": "Point"}, "id": "542", "properties": {"Object ID": 573789689, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93855791, 32.772719119, -79.93855791, 32.772719119], "geometry": {"coordinates": [-79.93855791, 32.772719119], "type": "Point"}, "id": "543", "properties": {"Object ID": 573789693, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9401507, 32.77534358, -79.9401507, 32.77534358], "geometry": {"coordinates": [-79.9401507, 32.77534358], "type": "Point"}, "id": "544", "properties": {"Object ID": 573795586, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93960418, 32.777373408, -79.93960418, 32.777373408], "geometry": {"coordinates": [-79.93960418, 32.777373408], "type": "Point"}, "id": "545", "properties": {"Object ID": 573795671, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92972682, 32.776806657, -79.92972682, 32.776806657], "geometry": {"coordinates": [-79.92972682, 32.776806657], "type": "Point"}, "id": "546", "properties": {"Object ID": 573827750, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9299812, 32.777132109, -79.9299812, 32.777132109], "geometry": {"coordinates": [-79.9299812, 32.777132109], "type": "Point"}, "id": "547", "properties": {"Object ID": 573827766, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9282511, 32.782869981, -79.9282511, 32.782869981], "geometry": {"coordinates": [-79.9282511, 32.782869981], "type": "Point"}, "id": "548", "properties": {"Object ID": 573827784, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93099317, 32.774783956, -79.93099317, 32.774783956], "geometry": {"coordinates": [-79.93099317, 32.774783956], "type": "Point"}, "id": "549", "properties": {"Object ID": 573831685, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93181846, 32.774972758, -79.93181846, 32.774972758], "geometry": {"coordinates": [-79.93181846, 32.774972758], "type": "Point"}, "id": "550", "properties": {"Object ID": 573831758, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93230431, 32.771323454, -79.93230431, 32.771323454], "geometry": {"coordinates": [-79.93230431, 32.771323454], "type": "Point"}, "id": "551", "properties": {"Object ID": 573841020, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93236844, 32.770764112, -79.93236844, 32.770764112], "geometry": {"coordinates": [-79.93236844, 32.770764112], "type": "Point"}, "id": "552", "properties": {"Object ID": 573841028, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94063884, 32.775115733, -79.94063884, 32.775115733], "geometry": {"coordinates": [-79.94063884, 32.775115733], "type": "Point"}, "id": "553", "properties": {"Object ID": 573860287, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92692669, 32.78147486, -79.92692669, 32.78147486], "geometry": {"coordinates": [-79.92692669, 32.78147486], "type": "Point"}, "id": "554", "properties": {"Object ID": 574267584, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93197281, 32.772352818, -79.93197281, 32.772352818], "geometry": {"coordinates": [-79.93197281, 32.772352818], "type": "Point"}, "id": "555", "properties": {"Object ID": 574268235, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9324734, 32.770385335, -79.9324734, 32.770385335], "geometry": {"coordinates": [-79.9324734, 32.770385335], "type": "Point"}, "id": "556", "properties": {"Object ID": 574268604, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93747767, 32.774232104, -79.93747767, 32.774232104], "geometry": {"coordinates": [-79.93747767, 32.774232104], "type": "Point"}, "id": "557", "properties": {"Object ID": 574268755, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93572505, 32.771292746, -79.93572505, 32.771292746], "geometry": {"coordinates": [-79.93572505, 32.771292746], "type": "Point"}, "id": "558", "properties": {"Object ID": 574268917, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93613698, 32.777025927, -79.93613698, 32.777025927], "geometry": {"coordinates": [-79.93613698, 32.777025927], "type": "Point"}, "id": "559", "properties": {"Object ID": 574268944, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93746303, 32.775362634, -79.93746303, 32.775362634], "geometry": {"coordinates": [-79.93746303, 32.775362634], "type": "Point"}, "id": "560", "properties": {"Object ID": 574269202, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93664764, 32.775804194, -79.93664764, 32.775804194], "geometry": {"coordinates": [-79.93664764, 32.775804194], "type": "Point"}, "id": "561", "properties": {"Object ID": 574269218, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93219068, 32.773524381, -79.93219068, 32.773524381], "geometry": {"coordinates": [-79.93219068, 32.773524381], "type": "Point"}, "id": "562", "properties": {"Object ID": 574293769, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93206727, 32.774434528, -79.93206727, 32.774434528], "geometry": {"coordinates": [-79.93206727, 32.774434528], "type": "Point"}, "id": "563", "properties": {"Object ID": 574293795, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93312309, 32.777861464, -79.93312309, 32.777861464], "geometry": {"coordinates": [-79.93312309, 32.777861464], "type": "Point"}, "id": "564", "properties": {"Object ID": 574371666, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92813633, 32.780414773, -79.92813633, 32.780414773], "geometry": {"coordinates": [-79.92813633, 32.780414773], "type": "Point"}, "id": "565", "properties": {"Object ID": 574372409, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92849911, 32.776440239, -79.92849911, 32.776440239], "geometry": {"coordinates": [-79.92849911, 32.776440239], "type": "Point"}, "id": "566", "properties": {"Object ID": 574372457, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92966224, 32.77604809, -79.92966224, 32.77604809], "geometry": {"coordinates": [-79.92966224, 32.77604809], "type": "Point"}, "id": "567", "properties": {"Object ID": 574372529, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93051865, 32.770587558, -79.93051865, 32.770587558], "geometry": {"coordinates": [-79.93051865, 32.770587558], "type": "Point"}, "id": "568", "properties": {"Object ID": 574372691, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505684, 32.7763231, -79.93505684, 32.7763231], "geometry": {"coordinates": [-79.93505684, 32.7763231], "type": "Point"}, "id": "569", "properties": {"Object ID": 574372954, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94196237, 32.77505852, -79.94196237, 32.77505852], "geometry": {"coordinates": [-79.94196237, 32.77505852], "type": "Point"}, "id": "570", "properties": {"Object ID": 574431453, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92664858, 32.779055723, -79.92664858, 32.779055723], "geometry": {"coordinates": [-79.92664858, 32.779055723], "type": "Point"}, "id": "571", "properties": {"Object ID": 574435923, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92664858, 32.779055723, -79.92664858, 32.779055723], "geometry": {"coordinates": [-79.92664858, 32.779055723], "type": "Point"}, "id": "572", "properties": {"Object ID": 574435927, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9290221, 32.778559412, -79.9290221, 32.778559412], "geometry": {"coordinates": [-79.9290221, 32.778559412], "type": "Point"}, "id": "573", "properties": {"Object ID": 574446467, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9342548, 32.779930537, -79.9342548, 32.779930537], "geometry": {"coordinates": [-79.9342548, 32.779930537], "type": "Point"}, "id": "574", "properties": {"Object ID": 574446519, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.926487, 32.780818198, -79.926487, 32.780818198], "geometry": {"coordinates": [-79.926487, 32.780818198], "type": "Point"}, "id": "575", "properties": {"Object ID": 574451293, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92864836, 32.779234877, -79.92864836, 32.779234877], "geometry": {"coordinates": [-79.92864836, 32.779234877], "type": "Point"}, "id": "576", "properties": {"Object ID": 574461025, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "577", "properties": {"Object ID": 574476749, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "578", "properties": {"Object ID": 574476779, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93840036, 32.774878623, -79.93840036, 32.774878623], "geometry": {"coordinates": [-79.93840036, 32.774878623], "type": "Point"}, "id": "579", "properties": {"Object ID": 574486836, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94160737, 32.773273112, -79.94160737, 32.773273112], "geometry": {"coordinates": [-79.94160737, 32.773273112], "type": "Point"}, "id": "580", "properties": {"Object ID": 574486843, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93784122, 32.77398576, -79.93784122, 32.77398576], "geometry": {"coordinates": [-79.93784122, 32.77398576], "type": "Point"}, "id": "581", "properties": {"Object ID": 574486855, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93043341, 32.77534059, -79.93043341, 32.77534059], "geometry": {"coordinates": [-79.93043341, 32.77534059], "type": "Point"}, "id": "582", "properties": {"Object ID": 574486901, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92996702, 32.774587518, -79.92996702, 32.774587518], "geometry": {"coordinates": [-79.92996702, 32.774587518], "type": "Point"}, "id": "583", "properties": {"Object ID": 574486903, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93133148, 32.771521871, -79.93133148, 32.771521871], "geometry": {"coordinates": [-79.93133148, 32.771521871], "type": "Point"}, "id": "584", "properties": {"Object ID": 574486919, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93068697, 32.771232663, -79.93068697, 32.771232663], "geometry": {"coordinates": [-79.93068697, 32.771232663], "type": "Point"}, "id": "585", "properties": {"Object ID": 574486934, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9357483, 32.779531488, -79.9357483, 32.779531488], "geometry": {"coordinates": [-79.9357483, 32.779531488], "type": "Point"}, "id": "586", "properties": {"Object ID": 574486982, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93536504, 32.77764065, -79.93536504, 32.77764065], "geometry": {"coordinates": [-79.93536504, 32.77764065], "type": "Point"}, "id": "587", "properties": {"Object ID": 574487046, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93378854, 32.777872673, -79.93378854, 32.777872673], "geometry": {"coordinates": [-79.93378854, 32.777872673], "type": "Point"}, "id": "588", "properties": {"Object ID": 574487079, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92836807, 32.779106044, -79.92836807, 32.779106044], "geometry": {"coordinates": [-79.92836807, 32.779106044], "type": "Point"}, "id": "589", "properties": {"Object ID": 574488680, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "590", "properties": {"Object ID": 574488742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "591", "properties": {"Object ID": 574488802, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9267068, 32.776164736, -79.9267068, 32.776164736], "geometry": {"coordinates": [-79.9267068, 32.776164736], "type": "Point"}, "id": "592", "properties": {"Object ID": 574488817, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938167, 32.775139478, -79.92938167, 32.775139478], "geometry": {"coordinates": [-79.92938167, 32.775139478], "type": "Point"}, "id": "593", "properties": {"Object ID": 574488831, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92956131, 32.77340052, -79.92956131, 32.77340052], "geometry": {"coordinates": [-79.92956131, 32.77340052], "type": "Point"}, "id": "594", "properties": {"Object ID": 574488869, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93102303, 32.781120425, -79.93102303, 32.781120425], "geometry": {"coordinates": [-79.93102303, 32.781120425], "type": "Point"}, "id": "595", "properties": {"Object ID": 573831840, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92692669, 32.78147486, -79.92692669, 32.78147486], "geometry": {"coordinates": [-79.92692669, 32.78147486], "type": "Point"}, "id": "596", "properties": {"Object ID": 574267590, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92857452, 32.78132147, -79.92857452, 32.78132147], "geometry": {"coordinates": [-79.92857452, 32.78132147], "type": "Point"}, "id": "597", "properties": {"Object ID": 574431316, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93010382, 32.782773607, -79.93010382, 32.782773607], "geometry": {"coordinates": [-79.93010382, 32.782773607], "type": "Point"}, "id": "598", "properties": {"Object ID": 574488423, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "599", "properties": {"Object ID": 574488424, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "600", "properties": {"Object ID": 574488662, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92848337, 32.773018263, -79.92848337, 32.773018263], "geometry": {"coordinates": [-79.92848337, 32.773018263], "type": "Point"}, "id": "601", "properties": {"Object ID": 573779315, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92933467, 32.772737024, -79.92933467, 32.772737024], "geometry": {"coordinates": [-79.92933467, 32.772737024], "type": "Point"}, "id": "602", "properties": {"Object ID": 573782445, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92991604, 32.772163112, -79.92991604, 32.772163112], "geometry": {"coordinates": [-79.92991604, 32.772163112], "type": "Point"}, "id": "603", "properties": {"Object ID": 573782562, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92915473, 32.773637584, -79.92915473, 32.773637584], "geometry": {"coordinates": [-79.92915473, 32.773637584], "type": "Point"}, "id": "604", "properties": {"Object ID": 573783148, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93083678, 32.773332097, -79.93083678, 32.773332097], "geometry": {"coordinates": [-79.93083678, 32.773332097], "type": "Point"}, "id": "605", "properties": {"Object ID": 573785663, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93279414, 32.775415461, -79.93279414, 32.775415461], "geometry": {"coordinates": [-79.93279414, 32.775415461], "type": "Point"}, "id": "606", "properties": {"Object ID": 573785802, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93287592, 32.775610735, -79.93287592, 32.775610735], "geometry": {"coordinates": [-79.93287592, 32.775610735], "type": "Point"}, "id": "607", "properties": {"Object ID": 573785837, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93032633, 32.775998298, -79.93032633, 32.775998298], "geometry": {"coordinates": [-79.93032633, 32.775998298], "type": "Point"}, "id": "608", "properties": {"Object ID": 574372535, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93327038, 32.771857448, -79.93327038, 32.771857448], "geometry": {"coordinates": [-79.93327038, 32.771857448], "type": "Point"}, "id": "609", "properties": {"Object ID": 574486915, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93337915, 32.770923728, -79.93337915, 32.770923728], "geometry": {"coordinates": [-79.93337915, 32.770923728], "type": "Point"}, "id": "610", "properties": {"Object ID": 574486923, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92813581, 32.772327859, -79.92813581, 32.772327859], "geometry": {"coordinates": [-79.92813581, 32.772327859], "type": "Point"}, "id": "611", "properties": {"Object ID": 574488875, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93036329, 32.782270155, -79.93036329, 32.782270155], "geometry": {"coordinates": [-79.93036329, 32.782270155], "type": "Point"}, "id": "612", "properties": {"Object ID": 573467947, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "613", "properties": {"Object ID": 574488430, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93226152, 32.778060838, -79.93226152, 32.778060838], "geometry": {"coordinates": [-79.93226152, 32.778060838], "type": "Point"}, "id": "614", "properties": {"Object ID": 573831778, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93357708, 32.778422236, -79.93357708, 32.778422236], "geometry": {"coordinates": [-79.93357708, 32.778422236], "type": "Point"}, "id": "615", "properties": {"Object ID": 574421795, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93317162, 32.778454651, -79.93317162, 32.778454651], "geometry": {"coordinates": [-79.93317162, 32.778454651], "type": "Point"}, "id": "616", "properties": {"Object ID": 574421797, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93351639, 32.778826923, -79.93351639, 32.778826923], "geometry": {"coordinates": [-79.93351639, 32.778826923], "type": "Point"}, "id": "617", "properties": {"Object ID": 574421805, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93261131, 32.779045122, -79.93261131, 32.779045122], "geometry": {"coordinates": [-79.93261131, 32.779045122], "type": "Point"}, "id": "618", "properties": {"Object ID": 574487007, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92680082, 32.776102704, -79.92680082, 32.776102704], "geometry": {"coordinates": [-79.92680082, 32.776102704], "type": "Point"}, "id": "619", "properties": {"Object ID": 573818740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92716263, 32.773225239, -79.92716263, 32.773225239], "geometry": {"coordinates": [-79.92716263, 32.773225239], "type": "Point"}, "id": "620", "properties": {"Object ID": 574267652, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93523879, 32.77004074, -79.93523879, 32.77004074], "geometry": {"coordinates": [-79.93523879, 32.77004074], "type": "Point"}, "id": "621", "properties": {"Object ID": 574268559, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93662462, 32.77499479, -79.93662462, 32.77499479], "geometry": {"coordinates": [-79.93662462, 32.77499479], "type": "Point"}, "id": "622", "properties": {"Object ID": 574268789, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93668375, 32.773904989, -79.93668375, 32.773904989], "geometry": {"coordinates": [-79.93668375, 32.773904989], "type": "Point"}, "id": "623", "properties": {"Object ID": 574371932, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "624", "properties": {"Object ID": 574372403, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92830278, 32.776202619, -79.92830278, 32.776202619], "geometry": {"coordinates": [-79.92830278, 32.776202619], "type": "Point"}, "id": "625", "properties": {"Object ID": 574372449, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93831937, 32.771336188, -79.93831937, 32.771336188], "geometry": {"coordinates": [-79.93831937, 32.771336188], "type": "Point"}, "id": "626", "properties": {"Object ID": 574409965, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94143723, 32.77365876, -79.94143723, 32.77365876], "geometry": {"coordinates": [-79.94143723, 32.77365876], "type": "Point"}, "id": "627", "properties": {"Object ID": 574431439, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9355996, 32.77158305, -79.9355996, 32.77158305], "geometry": {"coordinates": [-79.9355996, 32.77158305], "type": "Point"}, "id": "628", "properties": {"Object ID": 574431711, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92857452, 32.78132147, -79.92857452, 32.78132147], "geometry": {"coordinates": [-79.92857452, 32.78132147], "type": "Point"}, "id": "629", "properties": {"Object ID": 574431318, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92783811, 32.778163155, -79.92783811, 32.778163155], "geometry": {"coordinates": [-79.92783811, 32.778163155], "type": "Point"}, "id": "630", "properties": {"Object ID": 574446485, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92783811, 32.778163155, -79.92783811, 32.778163155], "geometry": {"coordinates": [-79.92783811, 32.778163155], "type": "Point"}, "id": "631", "properties": {"Object ID": 574446487, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93454321, 32.779150786, -79.93454321, 32.779150786], "geometry": {"coordinates": [-79.93454321, 32.779150786], "type": "Point"}, "id": "632", "properties": {"Object ID": 574446530, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "633", "properties": {"Object ID": 574451481, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9278853, 32.779870634, -79.9278853, 32.779870634], "geometry": {"coordinates": [-79.9278853, 32.779870634], "type": "Point"}, "id": "634", "properties": {"Object ID": 574461031, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92903083, 32.776368402, -79.92903083, 32.776368402], "geometry": {"coordinates": [-79.92903083, 32.776368402], "type": "Point"}, "id": "635", "properties": {"Object ID": 574461075, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92653372, 32.77762264, -79.92653372, 32.77762264], "geometry": {"coordinates": [-79.92653372, 32.77762264], "type": "Point"}, "id": "636", "properties": {"Object ID": 574461311, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93469895, 32.773907663, -79.93469895, 32.773907663], "geometry": {"coordinates": [-79.93469895, 32.773907663], "type": "Point"}, "id": "637", "properties": {"Object ID": 574486889, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92820274, 32.778662139, -79.92820274, 32.778662139], "geometry": {"coordinates": [-79.92820274, 32.778662139], "type": "Point"}, "id": "638", "properties": {"Object ID": 574488707, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92787671, 32.774030712, -79.92787671, 32.774030712], "geometry": {"coordinates": [-79.92787671, 32.774030712], "type": "Point"}, "id": "639", "properties": {"Object ID": 574488862, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92970963, 32.771767424, -79.92970963, 32.771767424], "geometry": {"coordinates": [-79.92970963, 32.771767424], "type": "Point"}, "id": "640", "properties": {"Object ID": 574488872, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93201312, 32.780098957, -79.93201312, 32.780098957], "geometry": {"coordinates": [-79.93201312, 32.780098957], "type": "Point"}, "id": "641", "properties": {"Object ID": 573387902, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9287439, 32.773182583, -79.9287439, 32.773182583], "geometry": {"coordinates": [-79.9287439, 32.773182583], "type": "Point"}, "id": "642", "properties": {"Object ID": 573779317, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92987574, 32.772444946, -79.92987574, 32.772444946], "geometry": {"coordinates": [-79.92987574, 32.772444946], "type": "Point"}, "id": "643", "properties": {"Object ID": 573782572, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191169, 32.773184427, -79.93191169, 32.773184427], "geometry": {"coordinates": [-79.93191169, 32.773184427], "type": "Point"}, "id": "644", "properties": {"Object ID": 573785653, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93324946, 32.775619435, -79.93324946, 32.775619435], "geometry": {"coordinates": [-79.93324946, 32.775619435], "type": "Point"}, "id": "645", "properties": {"Object ID": 573785839, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93236015, 32.772141633, -79.93236015, 32.772141633], "geometry": {"coordinates": [-79.93236015, 32.772141633], "type": "Point"}, "id": "646", "properties": {"Object ID": 573785899, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93899668, 32.773525213, -79.93899668, 32.773525213], "geometry": {"coordinates": [-79.93899668, 32.773525213], "type": "Point"}, "id": "647", "properties": {"Object ID": 573789723, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93958966, 32.774360446, -79.93958966, 32.774360446], "geometry": {"coordinates": [-79.93958966, 32.774360446], "type": "Point"}, "id": "648", "properties": {"Object ID": 573795552, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93997171, 32.777265081, -79.93997171, 32.777265081], "geometry": {"coordinates": [-79.93997171, 32.777265081], "type": "Point"}, "id": "649", "properties": {"Object ID": 573795664, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93978301, 32.777964217, -79.93978301, 32.777964217], "geometry": {"coordinates": [-79.93978301, 32.777964217], "type": "Point"}, "id": "650", "properties": {"Object ID": 573795687, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94603081, 32.776689581, -79.94603081, 32.776689581], "geometry": {"coordinates": [-79.94603081, 32.776689581], "type": "Point"}, "id": "651", "properties": {"Object ID": 573807503, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93276684, 32.781806628, -79.93276684, 32.781806628], "geometry": {"coordinates": [-79.93276684, 32.781806628], "type": "Point"}, "id": "652", "properties": {"Object ID": 574371567, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94054419, 32.772812341, -79.94054419, 32.772812341], "geometry": {"coordinates": [-79.94054419, 32.772812341], "type": "Point"}, "id": "653", "properties": {"Object ID": 574372060, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94018291, 32.773010452, -79.94018291, 32.773010452], "geometry": {"coordinates": [-79.94018291, 32.773010452], "type": "Point"}, "id": "654", "properties": {"Object ID": 574372072, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93666954, 32.773115876, -79.93666954, 32.773115876], "geometry": {"coordinates": [-79.93666954, 32.773115876], "type": "Point"}, "id": "655", "properties": {"Object ID": 574371910, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93528261, 32.780263613, -79.93528261, 32.780263613], "geometry": {"coordinates": [-79.93528261, 32.780263613], "type": "Point"}, "id": "656", "properties": {"Object ID": 574421947, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93411816, 32.780945961, -79.93411816, 32.780945961], "geometry": {"coordinates": [-79.93411816, 32.780945961], "type": "Point"}, "id": "657", "properties": {"Object ID": 574447824, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93622307, 32.774620925, -79.93622307, 32.774620925], "geometry": {"coordinates": [-79.93622307, 32.774620925], "type": "Point"}, "id": "658", "properties": {"Object ID": 574486868, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93218159, 32.775506556, -79.93218159, 32.775506556], "geometry": {"coordinates": [-79.93218159, 32.775506556], "type": "Point"}, "id": "659", "properties": {"Object ID": 574486892, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93570616, 32.778083429, -79.93570616, 32.778083429], "geometry": {"coordinates": [-79.93570616, 32.778083429], "type": "Point"}, "id": "660", "properties": {"Object ID": 574486999, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93392391, 32.781461064, -79.93392391, 32.781461064], "geometry": {"coordinates": [-79.93392391, 32.781461064], "type": "Point"}, "id": "661", "properties": {"Object ID": 574488437, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92950695, 32.77844283, -79.92950695, 32.77844283], "geometry": {"coordinates": [-79.92950695, 32.77844283], "type": "Point"}, "id": "662", "properties": {"Object ID": 573783284, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93094355, 32.778464521, -79.93094355, 32.778464521], "geometry": {"coordinates": [-79.93094355, 32.778464521], "type": "Point"}, "id": "663", "properties": {"Object ID": 573783297, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9291748, 32.780046684, -79.9291748, 32.780046684], "geometry": {"coordinates": [-79.9291748, 32.780046684], "type": "Point"}, "id": "664", "properties": {"Object ID": 574268055, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92536003, 32.779720867, -79.92536003, 32.779720867], "geometry": {"coordinates": [-79.92536003, 32.779720867], "type": "Point"}, "id": "665", "properties": {"Object ID": 574372310, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92893785, 32.778623909, -79.92893785, 32.778623909], "geometry": {"coordinates": [-79.92893785, 32.778623909], "type": "Point"}, "id": "666", "properties": {"Object ID": 574446465, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "667", "properties": {"Object ID": 574460989, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92738581, 32.77970087, -79.92738581, 32.77970087], "geometry": {"coordinates": [-79.92738581, 32.77970087], "type": "Point"}, "id": "668", "properties": {"Object ID": 574461288, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92947662, 32.778394904, -79.92947662, 32.778394904], "geometry": {"coordinates": [-79.92947662, 32.778394904], "type": "Point"}, "id": "669", "properties": {"Object ID": 574488685, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93288729, 32.78040061, -79.93288729, 32.78040061], "geometry": {"coordinates": [-79.93288729, 32.78040061], "type": "Point"}, "id": "670", "properties": {"Object ID": 573387916, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191667, 32.780486772, -79.93191667, 32.780486772], "geometry": {"coordinates": [-79.93191667, 32.780486772], "type": "Point"}, "id": "671", "properties": {"Object ID": 573387920, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9326316, 32.781124507, -79.9326316, 32.781124507], "geometry": {"coordinates": [-79.9326316, 32.781124507], "type": "Point"}, "id": "672", "properties": {"Object ID": 574371550, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "673", "properties": {"Object ID": 574447798, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "674", "properties": {"Object ID": 574447810, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "675", "properties": {"Object ID": 574447812, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93370546, 32.780669368, -79.93370546, 32.780669368], "geometry": {"coordinates": [-79.93370546, 32.780669368], "type": "Point"}, "id": "676", "properties": {"Object ID": 574447816, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93411816, 32.780945961, -79.93411816, 32.780945961], "geometry": {"coordinates": [-79.93411816, 32.780945961], "type": "Point"}, "id": "677", "properties": {"Object ID": 574447826, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93368836, 32.78091163, -79.93368836, 32.78091163], "geometry": {"coordinates": [-79.93368836, 32.78091163], "type": "Point"}, "id": "678", "properties": {"Object ID": 574447836, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505067, 32.780686378, -79.93505067, 32.780686378], "geometry": {"coordinates": [-79.93505067, 32.780686378], "type": "Point"}, "id": "679", "properties": {"Object ID": 574455485, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505067, 32.780686378, -79.93505067, 32.780686378], "geometry": {"coordinates": [-79.93505067, 32.780686378], "type": "Point"}, "id": "680", "properties": {"Object ID": 574455486, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93289652, 32.780858639, -79.93289652, 32.780858639], "geometry": {"coordinates": [-79.93289652, 32.780858639], "type": "Point"}, "id": "681", "properties": {"Object ID": 574460943, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681104, 32.778289954, -79.92681104, 32.778289954], "geometry": {"coordinates": [-79.92681104, 32.778289954], "type": "Point"}, "id": "682", "properties": {"Object ID": 573407532, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92913919, 32.780523417, -79.92913919, 32.780523417], "geometry": {"coordinates": [-79.92913919, 32.780523417], "type": "Point"}, "id": "683", "properties": {"Object ID": 573463562, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92839527, 32.77175843, -79.92839527, 32.77175843], "geometry": {"coordinates": [-79.92839527, 32.77175843], "type": "Point"}, "id": "684", "properties": {"Object ID": 573467723, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92922584, 32.770686687, -79.92922584, 32.770686687], "geometry": {"coordinates": [-79.92922584, 32.770686687], "type": "Point"}, "id": "685", "properties": {"Object ID": 573467726, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92868859, 32.770611556, -79.92868859, 32.770611556], "geometry": {"coordinates": [-79.92868859, 32.770611556], "type": "Point"}, "id": "686", "properties": {"Object ID": 573467727, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92929336, 32.770856818, -79.92929336, 32.770856818], "geometry": {"coordinates": [-79.92929336, 32.770856818], "type": "Point"}, "id": "687", "properties": {"Object ID": 573467728, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92860345, 32.770856816, -79.92860345, 32.770856816], "geometry": {"coordinates": [-79.92860345, 32.770856816], "type": "Point"}, "id": "688", "properties": {"Object ID": 573467729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.928633, 32.771059561, -79.928633, 32.771059561], "geometry": {"coordinates": [-79.928633, 32.771059561], "type": "Point"}, "id": "689", "properties": {"Object ID": 573467730, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92924984, 32.77110611, -79.92924984, 32.77110611], "geometry": {"coordinates": [-79.92924984, 32.77110611], "type": "Point"}, "id": "690", "properties": {"Object ID": 573467731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92905401, 32.77139283, -79.92905401, 32.77139283], "geometry": {"coordinates": [-79.92905401, 32.77139283], "type": "Point"}, "id": "691", "properties": {"Object ID": 573467735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92926183, 32.771492098, -79.92926183, 32.771492098], "geometry": {"coordinates": [-79.92926183, 32.771492098], "type": "Point"}, "id": "692", "properties": {"Object ID": 573467737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92890022, 32.771928889, -79.92890022, 32.771928889], "geometry": {"coordinates": [-79.92890022, 32.771928889], "type": "Point"}, "id": "693", "properties": {"Object ID": 573467741, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92805491, 32.771993839, -79.92805491, 32.771993839], "geometry": {"coordinates": [-79.92805491, 32.771993839], "type": "Point"}, "id": "694", "properties": {"Object ID": 573467746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.929019, 32.770324, -79.929019, 32.770324], "geometry": {"coordinates": [-79.929019, 32.770324], "type": "Point"}, "id": "695", "properties": {"Object ID": 573467747, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92998203, 32.782339142, -79.92998203, 32.782339142], "geometry": {"coordinates": [-79.92998203, 32.782339142], "type": "Point"}, "id": "696", "properties": {"Object ID": 573467946, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9296311, 32.782353895, -79.9296311, 32.782353895], "geometry": {"coordinates": [-79.9296311, 32.782353895], "type": "Point"}, "id": "697", "properties": {"Object ID": 573467948, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92954539, 32.782384969, -79.92954539, 32.782384969], "geometry": {"coordinates": [-79.92954539, 32.782384969], "type": "Point"}, "id": "698", "properties": {"Object ID": 573467951, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93034224, 32.782788355, -79.93034224, 32.782788355], "geometry": {"coordinates": [-79.93034224, 32.782788355], "type": "Point"}, "id": "699", "properties": {"Object ID": 573467963, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92878222, 32.773090161, -79.92878222, 32.773090161], "geometry": {"coordinates": [-79.92878222, 32.773090161], "type": "Point"}, "id": "700", "properties": {"Object ID": 573779311, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765306, 32.773234724, -79.92765306, 32.773234724], "geometry": {"coordinates": [-79.92765306, 32.773234724], "type": "Point"}, "id": "701", "properties": {"Object ID": 573779319, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92764858, 32.773515572, -79.92764858, 32.773515572], "geometry": {"coordinates": [-79.92764858, 32.773515572], "type": "Point"}, "id": "702", "properties": {"Object ID": 573779335, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92840483, 32.774112545, -79.92840483, 32.774112545], "geometry": {"coordinates": [-79.92840483, 32.774112545], "type": "Point"}, "id": "703", "properties": {"Object ID": 573779357, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92751869, 32.77433957, -79.92751869, 32.77433957], "geometry": {"coordinates": [-79.92751869, 32.77433957], "type": "Point"}, "id": "704", "properties": {"Object ID": 573779369, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92749568, 32.774537733, -79.92749568, 32.774537733], "geometry": {"coordinates": [-79.92749568, 32.774537733], "type": "Point"}, "id": "705", "properties": {"Object ID": 573779385, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92743299, 32.775021932, -79.92743299, 32.775021932], "geometry": {"coordinates": [-79.92743299, 32.775021932], "type": "Point"}, "id": "706", "properties": {"Object ID": 573779415, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92796935, 32.778662763, -79.92796935, 32.778662763], "geometry": {"coordinates": [-79.92796935, 32.778662763], "type": "Point"}, "id": "707", "properties": {"Object ID": 573779425, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92842468, 32.778619655, -79.92842468, 32.778619655], "geometry": {"coordinates": [-79.92842468, 32.778619655], "type": "Point"}, "id": "708", "properties": {"Object ID": 573782393, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92842468, 32.778619655, -79.92842468, 32.778619655], "geometry": {"coordinates": [-79.92842468, 32.778619655], "type": "Point"}, "id": "709", "properties": {"Object ID": 573782395, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92836098, 32.779305088, -79.92836098, 32.779305088], "geometry": {"coordinates": [-79.92836098, 32.779305088], "type": "Point"}, "id": "710", "properties": {"Object ID": 573782403, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9285359, 32.779643027, -79.9285359, 32.779643027], "geometry": {"coordinates": [-79.9285359, 32.779643027], "type": "Point"}, "id": "711", "properties": {"Object ID": 573782407, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92933255, 32.772267939, -79.92933255, 32.772267939], "geometry": {"coordinates": [-79.92933255, 32.772267939], "type": "Point"}, "id": "712", "properties": {"Object ID": 573782417, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92929796, 32.772372007, -79.92929796, 32.772372007], "geometry": {"coordinates": [-79.92929796, 32.772372007], "type": "Point"}, "id": "713", "properties": {"Object ID": 573782425, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92831106, 32.772640619, -79.92831106, 32.772640619], "geometry": {"coordinates": [-79.92831106, 32.772640619], "type": "Point"}, "id": "714", "properties": {"Object ID": 573782443, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92864422, 32.77279569, -79.92864422, 32.77279569], "geometry": {"coordinates": [-79.92864422, 32.77279569], "type": "Point"}, "id": "715", "properties": {"Object ID": 573782449, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92910961, 32.777958283, -79.92910961, 32.777958283], "geometry": {"coordinates": [-79.92910961, 32.777958283], "type": "Point"}, "id": "716", "properties": {"Object ID": 573782493, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92813575, 32.778079241, -79.92813575, 32.778079241], "geometry": {"coordinates": [-79.92813575, 32.778079241], "type": "Point"}, "id": "717", "properties": {"Object ID": 573782495, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92891453, 32.777767176, -79.92891453, 32.777767176], "geometry": {"coordinates": [-79.92891453, 32.777767176], "type": "Point"}, "id": "718", "properties": {"Object ID": 573782512, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92865918, 32.7750572, -79.92865918, 32.7750572], "geometry": {"coordinates": [-79.92865918, 32.7750572], "type": "Point"}, "id": "719", "properties": {"Object ID": 573782516, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9284404, 32.775666181, -79.9284404, 32.775666181], "geometry": {"coordinates": [-79.9284404, 32.775666181], "type": "Point"}, "id": "720", "properties": {"Object ID": 573782540, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92852646, 32.775996194, -79.92852646, 32.775996194], "geometry": {"coordinates": [-79.92852646, 32.775996194], "type": "Point"}, "id": "721", "properties": {"Object ID": 573782554, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93017261, 32.772909565, -79.93017261, 32.772909565], "geometry": {"coordinates": [-79.93017261, 32.772909565], "type": "Point"}, "id": "722", "properties": {"Object ID": 573782586, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92919073, 32.77440531, -79.92919073, 32.77440531], "geometry": {"coordinates": [-79.92919073, 32.77440531], "type": "Point"}, "id": "723", "properties": {"Object ID": 573783169, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92928354, 32.774527291, -79.92928354, 32.774527291], "geometry": {"coordinates": [-79.92928354, 32.774527291], "type": "Point"}, "id": "724", "properties": {"Object ID": 573783179, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93016895, 32.774630317, -79.93016895, 32.774630317], "geometry": {"coordinates": [-79.93016895, 32.774630317], "type": "Point"}, "id": "725", "properties": {"Object ID": 573783187, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93028267, 32.774664403, -79.93028267, 32.774664403], "geometry": {"coordinates": [-79.93028267, 32.774664403], "type": "Point"}, "id": "726", "properties": {"Object ID": 573783189, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92921208, 32.774721509, -79.92921208, 32.774721509], "geometry": {"coordinates": [-79.92921208, 32.774721509], "type": "Point"}, "id": "727", "properties": {"Object ID": 573783199, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93004161, 32.778371848, -79.93004161, 32.778371848], "geometry": {"coordinates": [-79.93004161, 32.778371848], "type": "Point"}, "id": "728", "properties": {"Object ID": 573783278, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92950695, 32.77844283, -79.92950695, 32.77844283], "geometry": {"coordinates": [-79.92950695, 32.77844283], "type": "Point"}, "id": "729", "properties": {"Object ID": 573783282, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92970399, 32.778582016, -79.92970399, 32.778582016], "geometry": {"coordinates": [-79.92970399, 32.778582016], "type": "Point"}, "id": "730", "properties": {"Object ID": 573783290, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93027735, 32.779357218, -79.93027735, 32.779357218], "geometry": {"coordinates": [-79.93027735, 32.779357218], "type": "Point"}, "id": "731", "properties": {"Object ID": 573783321, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997355, 32.777842066, -79.92997355, 32.777842066], "geometry": {"coordinates": [-79.92997355, 32.777842066], "type": "Point"}, "id": "732", "properties": {"Object ID": 573783327, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93015806, 32.771913194, -79.93015806, 32.771913194], "geometry": {"coordinates": [-79.93015806, 32.771913194], "type": "Point"}, "id": "733", "properties": {"Object ID": 573783443, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92996727, 32.771829327, -79.92996727, 32.771829327], "geometry": {"coordinates": [-79.92996727, 32.771829327], "type": "Point"}, "id": "734", "properties": {"Object ID": 573783445, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92746902, 32.777122924, -79.92746902, 32.777122924], "geometry": {"coordinates": [-79.92746902, 32.777122924], "type": "Point"}, "id": "735", "properties": {"Object ID": 573827136, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92730578, 32.777707213, -79.92730578, 32.777707213], "geometry": {"coordinates": [-79.92730578, 32.777707213], "type": "Point"}, "id": "736", "properties": {"Object ID": 573827142, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92780251, 32.777958909, -79.92780251, 32.777958909], "geometry": {"coordinates": [-79.92780251, 32.777958909], "type": "Point"}, "id": "737", "properties": {"Object ID": 573827148, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92787224, 32.781358849, -79.92787224, 32.781358849], "geometry": {"coordinates": [-79.92787224, 32.781358849], "type": "Point"}, "id": "738", "properties": {"Object ID": 573827364, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92777195, 32.781674281, -79.92777195, 32.781674281], "geometry": {"coordinates": [-79.92777195, 32.781674281], "type": "Point"}, "id": "739", "properties": {"Object ID": 573827366, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92959283, 32.776794111, -79.92959283, 32.776794111], "geometry": {"coordinates": [-79.92959283, 32.776794111], "type": "Point"}, "id": "740", "properties": {"Object ID": 573827731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92959283, 32.776794111, -79.92959283, 32.776794111], "geometry": {"coordinates": [-79.92959283, 32.776794111], "type": "Point"}, "id": "741", "properties": {"Object ID": 573827733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92959283, 32.776794111, -79.92959283, 32.776794111], "geometry": {"coordinates": [-79.92959283, 32.776794111], "type": "Point"}, "id": "742", "properties": {"Object ID": 573827735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93017988, 32.776819591, -79.93017988, 32.776819591], "geometry": {"coordinates": [-79.93017988, 32.776819591], "type": "Point"}, "id": "743", "properties": {"Object ID": 573827754, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92951778, 32.777494394, -79.92951778, 32.777494394], "geometry": {"coordinates": [-79.92951778, 32.777494394], "type": "Point"}, "id": "744", "properties": {"Object ID": 573827769, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92920715, 32.78276068, -79.92920715, 32.78276068], "geometry": {"coordinates": [-79.92920715, 32.78276068], "type": "Point"}, "id": "745", "properties": {"Object ID": 573827771, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9294362, 32.783137529, -79.9294362, 32.783137529], "geometry": {"coordinates": [-79.9294362, 32.783137529], "type": "Point"}, "id": "746", "properties": {"Object ID": 573827794, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93040738, 32.781275186, -79.93040738, 32.781275186], "geometry": {"coordinates": [-79.93040738, 32.781275186], "type": "Point"}, "id": "747", "properties": {"Object ID": 573831831, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92692669, 32.78147486, -79.92692669, 32.78147486], "geometry": {"coordinates": [-79.92692669, 32.78147486], "type": "Point"}, "id": "748", "properties": {"Object ID": 574267586, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92617574, 32.781501592, -79.92617574, 32.781501592], "geometry": {"coordinates": [-79.92617574, 32.781501592], "type": "Point"}, "id": "749", "properties": {"Object ID": 574267594, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92682845, 32.782317397, -79.92682845, 32.782317397], "geometry": {"coordinates": [-79.92682845, 32.782317397], "type": "Point"}, "id": "750", "properties": {"Object ID": 574267598, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92744398, 32.775221138, -79.92744398, 32.775221138], "geometry": {"coordinates": [-79.92744398, 32.775221138], "type": "Point"}, "id": "751", "properties": {"Object ID": 574267735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92811401, 32.775152887, -79.92811401, 32.775152887], "geometry": {"coordinates": [-79.92811401, 32.775152887], "type": "Point"}, "id": "752", "properties": {"Object ID": 574267737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92800828, 32.77526518, -79.92800828, 32.77526518], "geometry": {"coordinates": [-79.92800828, 32.77526518], "type": "Point"}, "id": "753", "properties": {"Object ID": 574267739, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92788864, 32.77557876, -79.92788864, 32.77557876], "geometry": {"coordinates": [-79.92788864, 32.77557876], "type": "Point"}, "id": "754", "properties": {"Object ID": 574267749, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92794047, 32.776035788, -79.92794047, 32.776035788], "geometry": {"coordinates": [-79.92794047, 32.776035788], "type": "Point"}, "id": "755", "properties": {"Object ID": 574267976, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772127, 32.776048279, -79.92772127, 32.776048279], "geometry": {"coordinates": [-79.92772127, 32.776048279], "type": "Point"}, "id": "756", "properties": {"Object ID": 574268005, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9291748, 32.780046684, -79.9291748, 32.780046684], "geometry": {"coordinates": [-79.9291748, 32.780046684], "type": "Point"}, "id": "757", "properties": {"Object ID": 574268049, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92987341, 32.774975591, -79.92987341, 32.774975591], "geometry": {"coordinates": [-79.92987341, 32.774975591], "type": "Point"}, "id": "758", "properties": {"Object ID": 574346733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92934753, 32.774969361, -79.92934753, 32.774969361], "geometry": {"coordinates": [-79.92934753, 32.774969361], "type": "Point"}, "id": "759", "properties": {"Object ID": 574346737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997655, 32.774978291, -79.92997655, 32.774978291], "geometry": {"coordinates": [-79.92997655, 32.774978291], "type": "Point"}, "id": "760", "properties": {"Object ID": 574346738, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92924438, 32.775144793, -79.92924438, 32.775144793], "geometry": {"coordinates": [-79.92924438, 32.775144793], "type": "Point"}, "id": "761", "properties": {"Object ID": 574346740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92929333, 32.775337089, -79.92929333, 32.775337089], "geometry": {"coordinates": [-79.92929333, 32.775337089], "type": "Point"}, "id": "762", "properties": {"Object ID": 574346744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92981335, 32.775770066, -79.92981335, 32.775770066], "geometry": {"coordinates": [-79.92981335, 32.775770066], "type": "Point"}, "id": "763", "properties": {"Object ID": 574346753, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92476988, 32.780379241, -79.92476988, 32.780379241], "geometry": {"coordinates": [-79.92476988, 32.780379241], "type": "Point"}, "id": "764", "properties": {"Object ID": 574372314, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92900036, 32.776107722, -79.92900036, 32.776107722], "geometry": {"coordinates": [-79.92900036, 32.776107722], "type": "Point"}, "id": "765", "properties": {"Object ID": 574372447, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92900036, 32.776107722, -79.92900036, 32.776107722], "geometry": {"coordinates": [-79.92900036, 32.776107722], "type": "Point"}, "id": "766", "properties": {"Object ID": 574372448, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92881546, 32.776447296, -79.92881546, 32.776447296], "geometry": {"coordinates": [-79.92881546, 32.776447296], "type": "Point"}, "id": "767", "properties": {"Object ID": 574372473, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93032633, 32.775998298, -79.93032633, 32.775998298], "geometry": {"coordinates": [-79.93032633, 32.775998298], "type": "Point"}, "id": "768", "properties": {"Object ID": 574372533, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938805, 32.776236693, -79.92938805, 32.776236693], "geometry": {"coordinates": [-79.92938805, 32.776236693], "type": "Point"}, "id": "769", "properties": {"Object ID": 574372543, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92958905, 32.776381714, -79.92958905, 32.776381714], "geometry": {"coordinates": [-79.92958905, 32.776381714], "type": "Point"}, "id": "770", "properties": {"Object ID": 574372567, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92846361, 32.776973025, -79.92846361, 32.776973025], "geometry": {"coordinates": [-79.92846361, 32.776973025], "type": "Point"}, "id": "771", "properties": {"Object ID": 574421681, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92846361, 32.776973025, -79.92846361, 32.776973025], "geometry": {"coordinates": [-79.92846361, 32.776973025], "type": "Point"}, "id": "772", "properties": {"Object ID": 574421683, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92646291, 32.77728981, -79.92646291, 32.77728981], "geometry": {"coordinates": [-79.92646291, 32.77728981], "type": "Point"}, "id": "773", "properties": {"Object ID": 574431298, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92664858, 32.779055723, -79.92664858, 32.779055723], "geometry": {"coordinates": [-79.92664858, 32.779055723], "type": "Point"}, "id": "774", "properties": {"Object ID": 574435925, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92692192, 32.77999463, -79.92692192, 32.77999463], "geometry": {"coordinates": [-79.92692192, 32.77999463], "type": "Point"}, "id": "775", "properties": {"Object ID": 574435929, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92643612, 32.780279013, -79.92643612, 32.780279013], "geometry": {"coordinates": [-79.92643612, 32.780279013], "type": "Point"}, "id": "776", "properties": {"Object ID": 574451295, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9265575, 32.7779802, -79.9265575, 32.7779802], "geometry": {"coordinates": [-79.9265575, 32.7779802], "type": "Point"}, "id": "777", "properties": {"Object ID": 574453714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9265575, 32.7779802, -79.9265575, 32.7779802], "geometry": {"coordinates": [-79.9265575, 32.7779802], "type": "Point"}, "id": "778", "properties": {"Object ID": 574453719, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92653241, 32.777628862, -79.92653241, 32.777628862], "geometry": {"coordinates": [-79.92653241, 32.777628862], "type": "Point"}, "id": "779", "properties": {"Object ID": 574455174, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92656424, 32.778612183, -79.92656424, 32.778612183], "geometry": {"coordinates": [-79.92656424, 32.778612183], "type": "Point"}, "id": "780", "properties": {"Object ID": 574457056, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93005522, 32.780237264, -79.93005522, 32.780237264], "geometry": {"coordinates": [-79.93005522, 32.780237264], "type": "Point"}, "id": "781", "properties": {"Object ID": 574461023, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9297417, 32.776818232, -79.9297417, 32.776818232], "geometry": {"coordinates": [-79.9297417, 32.776818232], "type": "Point"}, "id": "782", "properties": {"Object ID": 574461065, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92950828, 32.776424893, -79.92950828, 32.776424893], "geometry": {"coordinates": [-79.92950828, 32.776424893], "type": "Point"}, "id": "783", "properties": {"Object ID": 574461073, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92903083, 32.776368402, -79.92903083, 32.776368402], "geometry": {"coordinates": [-79.92903083, 32.776368402], "type": "Point"}, "id": "784", "properties": {"Object ID": 574461077, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92860499, 32.776487427, -79.92860499, 32.776487427], "geometry": {"coordinates": [-79.92860499, 32.776487427], "type": "Point"}, "id": "785", "properties": {"Object ID": 574461079, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9268905, 32.782767342, -79.9268905, 32.782767342], "geometry": {"coordinates": [-79.9268905, 32.782767342], "type": "Point"}, "id": "786", "properties": {"Object ID": 574461282, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92749926, 32.780354163, -79.92749926, 32.780354163], "geometry": {"coordinates": [-79.92749926, 32.780354163], "type": "Point"}, "id": "787", "properties": {"Object ID": 574461285, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681259, 32.780233741, -79.92681259, 32.780233741], "geometry": {"coordinates": [-79.92681259, 32.780233741], "type": "Point"}, "id": "788", "properties": {"Object ID": 574461293, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93010382, 32.782773607, -79.93010382, 32.782773607], "geometry": {"coordinates": [-79.93010382, 32.782773607], "type": "Point"}, "id": "789", "properties": {"Object ID": 574488421, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "790", "properties": {"Object ID": 574488653, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "791", "properties": {"Object ID": 574488658, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "792", "properties": {"Object ID": 574488661, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92833261, 32.779168837, -79.92833261, 32.779168837], "geometry": {"coordinates": [-79.92833261, 32.779168837], "type": "Point"}, "id": "793", "properties": {"Object ID": 574488679, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92948115, 32.77847685, -79.92948115, 32.77847685], "geometry": {"coordinates": [-79.92948115, 32.77847685], "type": "Point"}, "id": "794", "properties": {"Object ID": 574488684, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "795", "properties": {"Object ID": 574488711, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92679108, 32.778909003, -79.92679108, 32.778909003], "geometry": {"coordinates": [-79.92679108, 32.778909003], "type": "Point"}, "id": "796", "properties": {"Object ID": 574488723, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92670704, 32.778289721, -79.92670704, 32.778289721], "geometry": {"coordinates": [-79.92670704, 32.778289721], "type": "Point"}, "id": "797", "properties": {"Object ID": 574488724, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "798", "properties": {"Object ID": 574488736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "799", "properties": {"Object ID": 574488743, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "800", "properties": {"Object ID": 574488744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "801", "properties": {"Object ID": 574488745, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "802", "properties": {"Object ID": 574488750, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92896336, 32.775975959, -79.92896336, 32.775975959], "geometry": {"coordinates": [-79.92896336, 32.775975959], "type": "Point"}, "id": "803", "properties": {"Object ID": 574488771, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "804", "properties": {"Object ID": 574488793, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92816916, 32.776277427, -79.92816916, 32.776277427], "geometry": {"coordinates": [-79.92816916, 32.776277427], "type": "Point"}, "id": "805", "properties": {"Object ID": 574488804, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92824222, 32.776275418, -79.92824222, 32.776275418], "geometry": {"coordinates": [-79.92824222, 32.776275418], "type": "Point"}, "id": "806", "properties": {"Object ID": 574488806, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92574958, 32.776331873, -79.92574958, 32.776331873], "geometry": {"coordinates": [-79.92574958, 32.776331873], "type": "Point"}, "id": "807", "properties": {"Object ID": 574488816, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9267068, 32.776164736, -79.9267068, 32.776164736], "geometry": {"coordinates": [-79.9267068, 32.776164736], "type": "Point"}, "id": "808", "properties": {"Object ID": 574488819, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92898379, 32.775180586, -79.92898379, 32.775180586], "geometry": {"coordinates": [-79.92898379, 32.775180586], "type": "Point"}, "id": "809", "properties": {"Object ID": 574488830, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92951787, 32.774706172, -79.92951787, 32.774706172], "geometry": {"coordinates": [-79.92951787, 32.774706172], "type": "Point"}, "id": "810", "properties": {"Object ID": 574488834, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92891, 32.77509288, -79.92891, 32.77509288], "geometry": {"coordinates": [-79.92891, 32.77509288], "type": "Point"}, "id": "811", "properties": {"Object ID": 574488837, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92763108, 32.774978951, -79.92763108, 32.774978951], "geometry": {"coordinates": [-79.92763108, 32.774978951], "type": "Point"}, "id": "812", "properties": {"Object ID": 574488848, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92671547, 32.775554202, -79.92671547, 32.775554202], "geometry": {"coordinates": [-79.92671547, 32.775554202], "type": "Point"}, "id": "813", "properties": {"Object ID": 574488851, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92914469, 32.77176507, -79.92914469, 32.77176507], "geometry": {"coordinates": [-79.92914469, 32.77176507], "type": "Point"}, "id": "814", "properties": {"Object ID": 574488874, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "815", "properties": {"Object ID": 574461003, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191116, 32.779781997, -79.93191116, 32.779781997], "geometry": {"coordinates": [-79.93191116, 32.779781997], "type": "Point"}, "id": "816", "properties": {"Object ID": 573387866, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191116, 32.779781997, -79.93191116, 32.779781997], "geometry": {"coordinates": [-79.93191116, 32.779781997], "type": "Point"}, "id": "817", "properties": {"Object ID": 573387870, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187083, 32.779462015, -79.93187083, 32.779462015], "geometry": {"coordinates": [-79.93187083, 32.779462015], "type": "Point"}, "id": "818", "properties": {"Object ID": 573387884, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187083, 32.779462015, -79.93187083, 32.779462015], "geometry": {"coordinates": [-79.93187083, 32.779462015], "type": "Point"}, "id": "819", "properties": {"Object ID": 573387886, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187083, 32.779462015, -79.93187083, 32.779462015], "geometry": {"coordinates": [-79.93187083, 32.779462015], "type": "Point"}, "id": "820", "properties": {"Object ID": 573387892, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93360899, 32.776033664, -79.93360899, 32.776033664], "geometry": {"coordinates": [-79.93360899, 32.776033664], "type": "Point"}, "id": "821", "properties": {"Object ID": 573475698, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93350694, 32.774931654, -79.93350694, 32.774931654], "geometry": {"coordinates": [-79.93350694, 32.774931654], "type": "Point"}, "id": "822", "properties": {"Object ID": 573475708, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93413964, 32.77496308, -79.93413964, 32.77496308], "geometry": {"coordinates": [-79.93413964, 32.77496308], "type": "Point"}, "id": "823", "properties": {"Object ID": 573475709, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93436789, 32.775053947, -79.93436789, 32.775053947], "geometry": {"coordinates": [-79.93436789, 32.775053947], "type": "Point"}, "id": "824", "properties": {"Object ID": 573475711, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93346705, 32.775369223, -79.93346705, 32.775369223], "geometry": {"coordinates": [-79.93346705, 32.775369223], "type": "Point"}, "id": "825", "properties": {"Object ID": 573475714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93438944, 32.775567239, -79.93438944, 32.775567239], "geometry": {"coordinates": [-79.93438944, 32.775567239], "type": "Point"}, "id": "826", "properties": {"Object ID": 573475717, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93378306, 32.775606407, -79.93378306, 32.775606407], "geometry": {"coordinates": [-79.93378306, 32.775606407], "type": "Point"}, "id": "827", "properties": {"Object ID": 573475718, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93355151, 32.775633988, -79.93355151, 32.775633988], "geometry": {"coordinates": [-79.93355151, 32.775633988], "type": "Point"}, "id": "828", "properties": {"Object ID": 573475719, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9344114, 32.775932355, -79.9344114, 32.775932355], "geometry": {"coordinates": [-79.9344114, 32.775932355], "type": "Point"}, "id": "829", "properties": {"Object ID": 573475722, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.933893, 32.775928348, -79.933893, 32.775928348], "geometry": {"coordinates": [-79.933893, 32.775928348], "type": "Point"}, "id": "830", "properties": {"Object ID": 573475723, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9338145, 32.775785, -79.9338145, 32.775785], "geometry": {"coordinates": [-79.9338145, 32.775785], "type": "Point"}, "id": "831", "properties": {"Object ID": 573475724, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93079852, 32.777638171, -79.93079852, 32.777638171], "geometry": {"coordinates": [-79.93079852, 32.777638171], "type": "Point"}, "id": "832", "properties": {"Object ID": 573783335, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93214152, 32.777204905, -79.93214152, 32.777204905], "geometry": {"coordinates": [-79.93214152, 32.777204905], "type": "Point"}, "id": "833", "properties": {"Object ID": 573785443, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93214152, 32.777204905, -79.93214152, 32.777204905], "geometry": {"coordinates": [-79.93214152, 32.777204905], "type": "Point"}, "id": "834", "properties": {"Object ID": 573785444, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93161064, 32.772703802, -79.93161064, 32.772703802], "geometry": {"coordinates": [-79.93161064, 32.772703802], "type": "Point"}, "id": "835", "properties": {"Object ID": 573785627, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93114084, 32.772836375, -79.93114084, 32.772836375], "geometry": {"coordinates": [-79.93114084, 32.772836375], "type": "Point"}, "id": "836", "properties": {"Object ID": 573785633, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93180744, 32.77302667, -79.93180744, 32.77302667], "geometry": {"coordinates": [-79.93180744, 32.77302667], "type": "Point"}, "id": "837", "properties": {"Object ID": 573785645, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9331389, 32.775167154, -79.9331389, 32.775167154], "geometry": {"coordinates": [-79.9331389, 32.775167154], "type": "Point"}, "id": "838", "properties": {"Object ID": 573785826, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93282842, 32.775506882, -79.93282842, 32.775506882], "geometry": {"coordinates": [-79.93282842, 32.775506882], "type": "Point"}, "id": "839", "properties": {"Object ID": 573785833, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93363477, 32.771683017, -79.93363477, 32.771683017], "geometry": {"coordinates": [-79.93363477, 32.771683017], "type": "Point"}, "id": "840", "properties": {"Object ID": 573785879, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93366622, 32.772009247, -79.93366622, 32.772009247], "geometry": {"coordinates": [-79.93366622, 32.772009247], "type": "Point"}, "id": "841", "properties": {"Object ID": 573785895, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93256642, 32.772005755, -79.93256642, 32.772005755], "geometry": {"coordinates": [-79.93256642, 32.772005755], "type": "Point"}, "id": "842", "properties": {"Object ID": 573785897, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93372203, 32.772786731, -79.93372203, 32.772786731], "geometry": {"coordinates": [-79.93372203, 32.772786731], "type": "Point"}, "id": "843", "properties": {"Object ID": 573785913, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9333603, 32.772834737, -79.9333603, 32.772834737], "geometry": {"coordinates": [-79.9333603, 32.772834737], "type": "Point"}, "id": "844", "properties": {"Object ID": 573785915, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93248569, 32.773119952, -79.93248569, 32.773119952], "geometry": {"coordinates": [-79.93248569, 32.773119952], "type": "Point"}, "id": "845", "properties": {"Object ID": 573785927, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93385672, 32.773355253, -79.93385672, 32.773355253], "geometry": {"coordinates": [-79.93385672, 32.773355253], "type": "Point"}, "id": "846", "properties": {"Object ID": 573785931, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93257043, 32.773796019, -79.93257043, 32.773796019], "geometry": {"coordinates": [-79.93257043, 32.773796019], "type": "Point"}, "id": "847", "properties": {"Object ID": 573785948, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93440146, 32.773777543, -79.93440146, 32.773777543], "geometry": {"coordinates": [-79.93440146, 32.773777543], "type": "Point"}, "id": "848", "properties": {"Object ID": 573789030, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542728, 32.7746297, -79.93542728, 32.7746297], "geometry": {"coordinates": [-79.93542728, 32.7746297], "type": "Point"}, "id": "849", "properties": {"Object ID": 573789138, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93525106, 32.775418782, -79.93525106, 32.775418782], "geometry": {"coordinates": [-79.93525106, 32.775418782], "type": "Point"}, "id": "850", "properties": {"Object ID": 573789147, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93667741, 32.776584619, -79.93667741, 32.776584619], "geometry": {"coordinates": [-79.93667741, 32.776584619], "type": "Point"}, "id": "851", "properties": {"Object ID": 573789178, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242602, 32.774634875, -79.93242602, 32.774634875], "geometry": {"coordinates": [-79.93242602, 32.774634875], "type": "Point"}, "id": "852", "properties": {"Object ID": 573831664, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93163876, 32.77495676, -79.93163876, 32.77495676], "geometry": {"coordinates": [-79.93163876, 32.77495676], "type": "Point"}, "id": "853", "properties": {"Object ID": 573831695, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9322801, 32.776149882, -79.9322801, 32.776149882], "geometry": {"coordinates": [-79.9322801, 32.776149882], "type": "Point"}, "id": "854", "properties": {"Object ID": 573831740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93162921, 32.77607049, -79.93162921, 32.77607049], "geometry": {"coordinates": [-79.93162921, 32.77607049], "type": "Point"}, "id": "855", "properties": {"Object ID": 573831752, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93223243, 32.776189875, -79.93223243, 32.776189875], "geometry": {"coordinates": [-79.93223243, 32.776189875], "type": "Point"}, "id": "856", "properties": {"Object ID": 573831756, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93153616, 32.774791501, -79.93153616, 32.774791501], "geometry": {"coordinates": [-79.93153616, 32.774791501], "type": "Point"}, "id": "857", "properties": {"Object ID": 573831760, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9328372, 32.778732752, -79.9328372, 32.778732752], "geometry": {"coordinates": [-79.9328372, 32.778732752], "type": "Point"}, "id": "858", "properties": {"Object ID": 573831762, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93214434, 32.778087636, -79.93214434, 32.778087636], "geometry": {"coordinates": [-79.93214434, 32.778087636], "type": "Point"}, "id": "859", "properties": {"Object ID": 573831774, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93286677, 32.778913318, -79.93286677, 32.778913318], "geometry": {"coordinates": [-79.93286677, 32.778913318], "type": "Point"}, "id": "860", "properties": {"Object ID": 573831794, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93286337, 32.778922257, -79.93286337, 32.778922257], "geometry": {"coordinates": [-79.93286337, 32.778922257], "type": "Point"}, "id": "861", "properties": {"Object ID": 573831811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93339798, 32.770887763, -79.93339798, 32.770887763], "geometry": {"coordinates": [-79.93339798, 32.770887763], "type": "Point"}, "id": "862", "properties": {"Object ID": 573841010, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93291882, 32.771096194, -79.93291882, 32.771096194], "geometry": {"coordinates": [-79.93291882, 32.771096194], "type": "Point"}, "id": "863", "properties": {"Object ID": 573841014, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93364348, 32.77140757, -79.93364348, 32.77140757], "geometry": {"coordinates": [-79.93364348, 32.77140757], "type": "Point"}, "id": "864", "properties": {"Object ID": 573841022, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93572727, 32.772035734, -79.93572727, 32.772035734], "geometry": {"coordinates": [-79.93572727, 32.772035734], "type": "Point"}, "id": "865", "properties": {"Object ID": 573850067, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93617873, 32.772287908, -79.93617873, 32.772287908], "geometry": {"coordinates": [-79.93617873, 32.772287908], "type": "Point"}, "id": "866", "properties": {"Object ID": 573850071, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93577462, 32.772317111, -79.93577462, 32.772317111], "geometry": {"coordinates": [-79.93577462, 32.772317111], "type": "Point"}, "id": "867", "properties": {"Object ID": 573850073, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93579285, 32.772520263, -79.93579285, 32.772520263], "geometry": {"coordinates": [-79.93579285, 32.772520263], "type": "Point"}, "id": "868", "properties": {"Object ID": 573850080, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93583814, 32.773007524, -79.93583814, 32.773007524], "geometry": {"coordinates": [-79.93583814, 32.773007524], "type": "Point"}, "id": "869", "properties": {"Object ID": 573850090, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93590682, 32.773253196, -79.93590682, 32.773253196], "geometry": {"coordinates": [-79.93590682, 32.773253196], "type": "Point"}, "id": "870", "properties": {"Object ID": 573850096, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93140677, 32.771893335, -79.93140677, 32.771893335], "geometry": {"coordinates": [-79.93140677, 32.771893335], "type": "Point"}, "id": "871", "properties": {"Object ID": 574268217, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93128147, 32.772442711, -79.93128147, 32.772442711], "geometry": {"coordinates": [-79.93128147, 32.772442711], "type": "Point"}, "id": "872", "properties": {"Object ID": 574268243, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93349048, 32.769855029, -79.93349048, 32.769855029], "geometry": {"coordinates": [-79.93349048, 32.769855029], "type": "Point"}, "id": "873", "properties": {"Object ID": 574268569, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93413876, 32.770269086, -79.93413876, 32.770269086], "geometry": {"coordinates": [-79.93413876, 32.770269086], "type": "Point"}, "id": "874", "properties": {"Object ID": 574268587, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93329024, 32.770458633, -79.93329024, 32.770458633], "geometry": {"coordinates": [-79.93329024, 32.770458633], "type": "Point"}, "id": "875", "properties": {"Object ID": 574268610, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93487211, 32.771806515, -79.93487211, 32.771806515], "geometry": {"coordinates": [-79.93487211, 32.771806515], "type": "Point"}, "id": "876", "properties": {"Object ID": 574268702, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9359361, 32.775221257, -79.9359361, 32.775221257], "geometry": {"coordinates": [-79.9359361, 32.775221257], "type": "Point"}, "id": "877", "properties": {"Object ID": 574268798, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93588042, 32.775509244, -79.93588042, 32.775509244], "geometry": {"coordinates": [-79.93588042, 32.775509244], "type": "Point"}, "id": "878", "properties": {"Object ID": 574268808, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93638706, 32.776937652, -79.93638706, 32.776937652], "geometry": {"coordinates": [-79.93638706, 32.776937652], "type": "Point"}, "id": "879", "properties": {"Object ID": 574268942, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93671244, 32.777244439, -79.93671244, 32.777244439], "geometry": {"coordinates": [-79.93671244, 32.777244439], "type": "Point"}, "id": "880", "properties": {"Object ID": 574268955, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93151186, 32.774118231, -79.93151186, 32.774118231], "geometry": {"coordinates": [-79.93151186, 32.774118231], "type": "Point"}, "id": "881", "properties": {"Object ID": 574293787, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93236964, 32.774375972, -79.93236964, 32.774375972], "geometry": {"coordinates": [-79.93236964, 32.774375972], "type": "Point"}, "id": "882", "properties": {"Object ID": 574293803, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93619081, 32.770083745, -79.93619081, 32.770083745], "geometry": {"coordinates": [-79.93619081, 32.770083745], "type": "Point"}, "id": "883", "properties": {"Object ID": 574294741, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93574513, 32.770557858, -79.93574513, 32.770557858], "geometry": {"coordinates": [-79.93574513, 32.770557858], "type": "Point"}, "id": "884", "properties": {"Object ID": 574294747, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93592786, 32.770507557, -79.93592786, 32.770507557], "geometry": {"coordinates": [-79.93592786, 32.770507557], "type": "Point"}, "id": "885", "properties": {"Object ID": 574294749, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93315148, 32.778091191, -79.93315148, 32.778091191], "geometry": {"coordinates": [-79.93315148, 32.778091191], "type": "Point"}, "id": "886", "properties": {"Object ID": 574371685, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9334065, 32.777989, -79.9334065, 32.777989], "geometry": {"coordinates": [-79.9334065, 32.777989], "type": "Point"}, "id": "887", "properties": {"Object ID": 574371689, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505033, 32.77773103, -79.93505033, 32.77773103], "geometry": {"coordinates": [-79.93505033, 32.77773103], "type": "Point"}, "id": "888", "properties": {"Object ID": 574371757, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93590816, 32.777795982, -79.93590816, 32.777795982], "geometry": {"coordinates": [-79.93590816, 32.777795982], "type": "Point"}, "id": "889", "properties": {"Object ID": 574371763, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93537559, 32.777868024, -79.93537559, 32.777868024], "geometry": {"coordinates": [-79.93537559, 32.777868024], "type": "Point"}, "id": "890", "properties": {"Object ID": 574371767, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93524323, 32.778317105, -79.93524323, 32.778317105], "geometry": {"coordinates": [-79.93524323, 32.778317105], "type": "Point"}, "id": "891", "properties": {"Object ID": 574371775, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93074816, 32.77631412, -79.93074816, 32.77631412], "geometry": {"coordinates": [-79.93074816, 32.77631412], "type": "Point"}, "id": "892", "properties": {"Object ID": 574372549, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93155486, 32.770746994, -79.93155486, 32.770746994], "geometry": {"coordinates": [-79.93155486, 32.770746994], "type": "Point"}, "id": "893", "properties": {"Object ID": 574372697, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93147052, 32.771614819, -79.93147052, 32.771614819], "geometry": {"coordinates": [-79.93147052, 32.771614819], "type": "Point"}, "id": "894", "properties": {"Object ID": 574372723, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93065646, 32.771764304, -79.93065646, 32.771764304], "geometry": {"coordinates": [-79.93065646, 32.771764304], "type": "Point"}, "id": "895", "properties": {"Object ID": 574372733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505947, 32.777107924, -79.93505947, 32.777107924], "geometry": {"coordinates": [-79.93505947, 32.777107924], "type": "Point"}, "id": "896", "properties": {"Object ID": 574372981, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93390382, 32.776978556, -79.93390382, 32.776978556], "geometry": {"coordinates": [-79.93390382, 32.776978556], "type": "Point"}, "id": "897", "properties": {"Object ID": 574409638, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93286925, 32.776423337, -79.93286925, 32.776423337], "geometry": {"coordinates": [-79.93286925, 32.776423337], "type": "Point"}, "id": "898", "properties": {"Object ID": 574409641, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93340489, 32.776451748, -79.93340489, 32.776451748], "geometry": {"coordinates": [-79.93340489, 32.776451748], "type": "Point"}, "id": "899", "properties": {"Object ID": 574409643, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93296787, 32.776879729, -79.93296787, 32.776879729], "geometry": {"coordinates": [-79.93296787, 32.776879729], "type": "Point"}, "id": "900", "properties": {"Object ID": 574409647, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93463591, 32.777016773, -79.93463591, 32.777016773], "geometry": {"coordinates": [-79.93463591, 32.777016773], "type": "Point"}, "id": "901", "properties": {"Object ID": 574409653, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93305299, 32.777086839, -79.93305299, 32.777086839], "geometry": {"coordinates": [-79.93305299, 32.777086839], "type": "Point"}, "id": "902", "properties": {"Object ID": 574409654, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9344145, 32.777479, -79.9344145, 32.777479], "geometry": {"coordinates": [-79.9344145, 32.777479], "type": "Point"}, "id": "903", "properties": {"Object ID": 574409898, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93405956, 32.778165872, -79.93405956, 32.778165872], "geometry": {"coordinates": [-79.93405956, 32.778165872], "type": "Point"}, "id": "904", "properties": {"Object ID": 574421788, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93319144, 32.778464297, -79.93319144, 32.778464297], "geometry": {"coordinates": [-79.93319144, 32.778464297], "type": "Point"}, "id": "905", "properties": {"Object ID": 574421819, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93614378, 32.779728689, -79.93614378, 32.779728689], "geometry": {"coordinates": [-79.93614378, 32.779728689], "type": "Point"}, "id": "906", "properties": {"Object ID": 574421943, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93130933, 32.776599053, -79.93130933, 32.776599053], "geometry": {"coordinates": [-79.93130933, 32.776599053], "type": "Point"}, "id": "907", "properties": {"Object ID": 574431322, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93396619, 32.779526363, -79.93396619, 32.779526363], "geometry": {"coordinates": [-79.93396619, 32.779526363], "type": "Point"}, "id": "908", "properties": {"Object ID": 574446523, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9340138, 32.779235573, -79.9340138, 32.779235573], "geometry": {"coordinates": [-79.9340138, 32.779235573], "type": "Point"}, "id": "909", "properties": {"Object ID": 574446531, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9340138, 32.779235573, -79.9340138, 32.779235573], "geometry": {"coordinates": [-79.9340138, 32.779235573], "type": "Point"}, "id": "910", "properties": {"Object ID": 574446533, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93338378, 32.779406072, -79.93338378, 32.779406072], "geometry": {"coordinates": [-79.93338378, 32.779406072], "type": "Point"}, "id": "911", "properties": {"Object ID": 574446559, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "912", "properties": {"Object ID": 574460969, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "913", "properties": {"Object ID": 574460979, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "914", "properties": {"Object ID": 574460999, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93323889, 32.77801247, -79.93323889, 32.77801247], "geometry": {"coordinates": [-79.93323889, 32.77801247], "type": "Point"}, "id": "915", "properties": {"Object ID": 574461043, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93474766, 32.774476107, -79.93474766, 32.774476107], "geometry": {"coordinates": [-79.93474766, 32.774476107], "type": "Point"}, "id": "916", "properties": {"Object ID": 574461051, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "917", "properties": {"Object ID": 574476706, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "918", "properties": {"Object ID": 574476763, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "919", "properties": {"Object ID": 574476769, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "920", "properties": {"Object ID": 574476797, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "921", "properties": {"Object ID": 574476803, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93541956, 32.775403971, -79.93541956, 32.775403971], "geometry": {"coordinates": [-79.93541956, 32.775403971], "type": "Point"}, "id": "922", "properties": {"Object ID": 574486863, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542766, 32.774993284, -79.93542766, 32.774993284], "geometry": {"coordinates": [-79.93542766, 32.774993284], "type": "Point"}, "id": "923", "properties": {"Object ID": 574486871, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.934546, 32.774462493, -79.934546, 32.774462493], "geometry": {"coordinates": [-79.934546, 32.774462493], "type": "Point"}, "id": "924", "properties": {"Object ID": 574486886, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93422128, 32.774488499, -79.93422128, 32.774488499], "geometry": {"coordinates": [-79.93422128, 32.774488499], "type": "Point"}, "id": "925", "properties": {"Object ID": 574486887, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93213015, 32.775116518, -79.93213015, 32.775116518], "geometry": {"coordinates": [-79.93213015, 32.775116518], "type": "Point"}, "id": "926", "properties": {"Object ID": 574486895, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9316641, 32.774929808, -79.9316641, 32.774929808], "geometry": {"coordinates": [-79.9316641, 32.774929808], "type": "Point"}, "id": "927", "properties": {"Object ID": 574486896, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93202975, 32.77342594, -79.93202975, 32.77342594], "geometry": {"coordinates": [-79.93202975, 32.77342594], "type": "Point"}, "id": "928", "properties": {"Object ID": 574486897, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93405994, 32.771469521, -79.93405994, 32.771469521], "geometry": {"coordinates": [-79.93405994, 32.771469521], "type": "Point"}, "id": "929", "properties": {"Object ID": 574486908, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93133148, 32.771521871, -79.93133148, 32.771521871], "geometry": {"coordinates": [-79.93133148, 32.771521871], "type": "Point"}, "id": "930", "properties": {"Object ID": 574486920, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93318093, 32.770926003, -79.93318093, 32.770926003], "geometry": {"coordinates": [-79.93318093, 32.770926003], "type": "Point"}, "id": "931", "properties": {"Object ID": 574486926, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93318093, 32.770926003, -79.93318093, 32.770926003], "geometry": {"coordinates": [-79.93318093, 32.770926003], "type": "Point"}, "id": "932", "properties": {"Object ID": 574486928, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93132077, 32.770922951, -79.93132077, 32.770922951], "geometry": {"coordinates": [-79.93132077, 32.770922951], "type": "Point"}, "id": "933", "properties": {"Object ID": 574486930, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93663915, 32.776900157, -79.93663915, 32.776900157], "geometry": {"coordinates": [-79.93663915, 32.776900157], "type": "Point"}, "id": "934", "properties": {"Object ID": 574486966, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93565933, 32.77953797, -79.93565933, 32.77953797], "geometry": {"coordinates": [-79.93565933, 32.77953797], "type": "Point"}, "id": "935", "properties": {"Object ID": 574486985, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93555431, 32.779513661, -79.93555431, 32.779513661], "geometry": {"coordinates": [-79.93555431, 32.779513661], "type": "Point"}, "id": "936", "properties": {"Object ID": 574486987, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93565933, 32.77953797, -79.93565933, 32.77953797], "geometry": {"coordinates": [-79.93565933, 32.77953797], "type": "Point"}, "id": "937", "properties": {"Object ID": 574486988, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93503717, 32.779666462, -79.93503717, 32.779666462], "geometry": {"coordinates": [-79.93503717, 32.779666462], "type": "Point"}, "id": "938", "properties": {"Object ID": 574486992, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93590791, 32.778044034, -79.93590791, 32.778044034], "geometry": {"coordinates": [-79.93590791, 32.778044034], "type": "Point"}, "id": "939", "properties": {"Object ID": 574486998, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516426, 32.778139791, -79.93516426, 32.778139791], "geometry": {"coordinates": [-79.93516426, 32.778139791], "type": "Point"}, "id": "940", "properties": {"Object ID": 574487001, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93547424, 32.778107277, -79.93547424, 32.778107277], "geometry": {"coordinates": [-79.93547424, 32.778107277], "type": "Point"}, "id": "941", "properties": {"Object ID": 574487003, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93341863, 32.778558501, -79.93341863, 32.778558501], "geometry": {"coordinates": [-79.93341863, 32.778558501], "type": "Point"}, "id": "942", "properties": {"Object ID": 574487013, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93335111, 32.778447628, -79.93335111, 32.778447628], "geometry": {"coordinates": [-79.93335111, 32.778447628], "type": "Point"}, "id": "943", "properties": {"Object ID": 574487014, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93589727, 32.777913662, -79.93589727, 32.777913662], "geometry": {"coordinates": [-79.93589727, 32.777913662], "type": "Point"}, "id": "944", "properties": {"Object ID": 574487031, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93588859, 32.777847933, -79.93588859, 32.777847933], "geometry": {"coordinates": [-79.93588859, 32.777847933], "type": "Point"}, "id": "945", "properties": {"Object ID": 574487032, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93571463, 32.777605998, -79.93571463, 32.777605998], "geometry": {"coordinates": [-79.93571463, 32.777605998], "type": "Point"}, "id": "946", "properties": {"Object ID": 574487041, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93465995, 32.777498525, -79.93465995, 32.777498525], "geometry": {"coordinates": [-79.93465995, 32.777498525], "type": "Point"}, "id": "947", "properties": {"Object ID": 574487074, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93442144, 32.777811398, -79.93442144, 32.777811398], "geometry": {"coordinates": [-79.93442144, 32.777811398], "type": "Point"}, "id": "948", "properties": {"Object ID": 574487076, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93417652, 32.777835117, -79.93417652, 32.777835117], "geometry": {"coordinates": [-79.93417652, 32.777835117], "type": "Point"}, "id": "949", "properties": {"Object ID": 574487077, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93460219, 32.777064456, -79.93460219, 32.777064456], "geometry": {"coordinates": [-79.93460219, 32.777064456], "type": "Point"}, "id": "950", "properties": {"Object ID": 574487084, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93544376, 32.776459504, -79.93544376, 32.776459504], "geometry": {"coordinates": [-79.93544376, 32.776459504], "type": "Point"}, "id": "951", "properties": {"Object ID": 574487093, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93617751, 32.776188702, -79.93617751, 32.776188702], "geometry": {"coordinates": [-79.93617751, 32.776188702], "type": "Point"}, "id": "952", "properties": {"Object ID": 574487094, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93790448, 32.773475926, -79.93790448, 32.773475926], "geometry": {"coordinates": [-79.93790448, 32.773475926], "type": "Point"}, "id": "953", "properties": {"Object ID": 573789243, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93793205, 32.773780667, -79.93793205, 32.773780667], "geometry": {"coordinates": [-79.93793205, 32.773780667], "type": "Point"}, "id": "954", "properties": {"Object ID": 573789247, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93728257, 32.773814709, -79.93728257, 32.773814709], "geometry": {"coordinates": [-79.93728257, 32.773814709], "type": "Point"}, "id": "955", "properties": {"Object ID": 573789251, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93719372, 32.776331026, -79.93719372, 32.776331026], "geometry": {"coordinates": [-79.93719372, 32.776331026], "type": "Point"}, "id": "956", "properties": {"Object ID": 573789170, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93724426, 32.776572277, -79.93724426, 32.776572277], "geometry": {"coordinates": [-79.93724426, 32.776572277], "type": "Point"}, "id": "957", "properties": {"Object ID": 573789175, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93733943, 32.772132174, -79.93733943, 32.772132174], "geometry": {"coordinates": [-79.93733943, 32.772132174], "type": "Point"}, "id": "958", "properties": {"Object ID": 573789221, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93767787, 32.772248937, -79.93767787, 32.772248937], "geometry": {"coordinates": [-79.93767787, 32.772248937], "type": "Point"}, "id": "959", "properties": {"Object ID": 573789222, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93750956, 32.772215363, -79.93750956, 32.772215363], "geometry": {"coordinates": [-79.93750956, 32.772215363], "type": "Point"}, "id": "960", "properties": {"Object ID": 573789223, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93774926, 32.772785619, -79.93774926, 32.772785619], "geometry": {"coordinates": [-79.93774926, 32.772785619], "type": "Point"}, "id": "961", "properties": {"Object ID": 573789231, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93724447, 32.773129957, -79.93724447, 32.773129957], "geometry": {"coordinates": [-79.93724447, 32.773129957], "type": "Point"}, "id": "962", "properties": {"Object ID": 573789235, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93733809, 32.771558726, -79.93733809, 32.771558726], "geometry": {"coordinates": [-79.93733809, 32.771558726], "type": "Point"}, "id": "963", "properties": {"Object ID": 573789298, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9379042, 32.772046896, -79.9379042, 32.772046896], "geometry": {"coordinates": [-79.9379042, 32.772046896], "type": "Point"}, "id": "964", "properties": {"Object ID": 573789315, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93920776, 32.774979165, -79.93920776, 32.774979165], "geometry": {"coordinates": [-79.93920776, 32.774979165], "type": "Point"}, "id": "965", "properties": {"Object ID": 573789343, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93889075, 32.774356039, -79.93889075, 32.774356039], "geometry": {"coordinates": [-79.93889075, 32.774356039], "type": "Point"}, "id": "966", "properties": {"Object ID": 573789364, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93766712, 32.776069164, -79.93766712, 32.776069164], "geometry": {"coordinates": [-79.93766712, 32.776069164], "type": "Point"}, "id": "967", "properties": {"Object ID": 573789435, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93758682, 32.776280781, -79.93758682, 32.776280781], "geometry": {"coordinates": [-79.93758682, 32.776280781], "type": "Point"}, "id": "968", "properties": {"Object ID": 573789439, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93819563, 32.776338634, -79.93819563, 32.776338634], "geometry": {"coordinates": [-79.93819563, 32.776338634], "type": "Point"}, "id": "969", "properties": {"Object ID": 573789440, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9376077, 32.776502687, -79.9376077, 32.776502687], "geometry": {"coordinates": [-79.9376077, 32.776502687], "type": "Point"}, "id": "970", "properties": {"Object ID": 573789442, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93830366, 32.776560399, -79.93830366, 32.776560399], "geometry": {"coordinates": [-79.93830366, 32.776560399], "type": "Point"}, "id": "971", "properties": {"Object ID": 573789443, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93896071, 32.773212784, -79.93896071, 32.773212784], "geometry": {"coordinates": [-79.93896071, 32.773212784], "type": "Point"}, "id": "972", "properties": {"Object ID": 573789711, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9382641, 32.773318644, -79.9382641, 32.773318644], "geometry": {"coordinates": [-79.9382641, 32.773318644], "type": "Point"}, "id": "973", "properties": {"Object ID": 573789715, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93895953, 32.773319279, -79.93895953, 32.773319279], "geometry": {"coordinates": [-79.93895953, 32.773319279], "type": "Point"}, "id": "974", "properties": {"Object ID": 573789717, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93830338, 32.773709544, -79.93830338, 32.773709544], "geometry": {"coordinates": [-79.93830338, 32.773709544], "type": "Point"}, "id": "975", "properties": {"Object ID": 573789733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93844929, 32.778429673, -79.93844929, 32.778429673], "geometry": {"coordinates": [-79.93844929, 32.778429673], "type": "Point"}, "id": "976", "properties": {"Object ID": 573794188, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93947433, 32.778713874, -79.93947433, 32.778713874], "geometry": {"coordinates": [-79.93947433, 32.778713874], "type": "Point"}, "id": "977", "properties": {"Object ID": 573794196, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93771389, 32.778821369, -79.93771389, 32.778821369], "geometry": {"coordinates": [-79.93771389, 32.778821369], "type": "Point"}, "id": "978", "properties": {"Object ID": 573794202, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93978995, 32.77651546, -79.93978995, 32.77651546], "geometry": {"coordinates": [-79.93978995, 32.77651546], "type": "Point"}, "id": "979", "properties": {"Object ID": 573794267, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93951861, 32.776552919, -79.93951861, 32.776552919], "geometry": {"coordinates": [-79.93951861, 32.776552919], "type": "Point"}, "id": "980", "properties": {"Object ID": 573794271, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9385364, 32.776632552, -79.9385364, 32.776632552], "geometry": {"coordinates": [-79.9385364, 32.776632552], "type": "Point"}, "id": "981", "properties": {"Object ID": 573794285, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94004055, 32.776992299, -79.94004055, 32.776992299], "geometry": {"coordinates": [-79.94004055, 32.776992299], "type": "Point"}, "id": "982", "properties": {"Object ID": 573794302, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93961593, 32.774488156, -79.93961593, 32.774488156], "geometry": {"coordinates": [-79.93961593, 32.774488156], "type": "Point"}, "id": "983", "properties": {"Object ID": 573795536, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9401197, 32.774167927, -79.9401197, 32.774167927], "geometry": {"coordinates": [-79.9401197, 32.774167927], "type": "Point"}, "id": "984", "properties": {"Object ID": 573795546, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94012605, 32.774379512, -79.94012605, 32.774379512], "geometry": {"coordinates": [-79.94012605, 32.774379512], "type": "Point"}, "id": "985", "properties": {"Object ID": 573795554, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93971605, 32.775311298, -79.93971605, 32.775311298], "geometry": {"coordinates": [-79.93971605, 32.775311298], "type": "Point"}, "id": "986", "properties": {"Object ID": 573795579, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93972569, 32.775469182, -79.93972569, 32.775469182], "geometry": {"coordinates": [-79.93972569, 32.775469182], "type": "Point"}, "id": "987", "properties": {"Object ID": 573795592, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93983204, 32.777830457, -79.93983204, 32.777830457], "geometry": {"coordinates": [-79.93983204, 32.777830457], "type": "Point"}, "id": "988", "properties": {"Object ID": 573795685, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94347788, 32.775072097, -79.94347788, 32.775072097], "geometry": {"coordinates": [-79.94347788, 32.775072097], "type": "Point"}, "id": "989", "properties": {"Object ID": 573800696, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94228272, 32.773154225, -79.94228272, 32.773154225], "geometry": {"coordinates": [-79.94228272, 32.773154225], "type": "Point"}, "id": "990", "properties": {"Object ID": 573800712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9422464, 32.772653694, -79.9422464, 32.772653694], "geometry": {"coordinates": [-79.9422464, 32.772653694], "type": "Point"}, "id": "991", "properties": {"Object ID": 573800720, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94239952, 32.772744995, -79.94239952, 32.772744995], "geometry": {"coordinates": [-79.94239952, 32.772744995], "type": "Point"}, "id": "992", "properties": {"Object ID": 573800722, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94265223, 32.772951797, -79.94265223, 32.772951797], "geometry": {"coordinates": [-79.94265223, 32.772951797], "type": "Point"}, "id": "993", "properties": {"Object ID": 573800730, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94244646, 32.77728956, -79.94244646, 32.77728956], "geometry": {"coordinates": [-79.94244646, 32.77728956], "type": "Point"}, "id": "994", "properties": {"Object ID": 573800789, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94375075, 32.774456513, -79.94375075, 32.774456513], "geometry": {"coordinates": [-79.94375075, 32.774456513], "type": "Point"}, "id": "995", "properties": {"Object ID": 573800967, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94349179, 32.777766883, -79.94349179, 32.777766883], "geometry": {"coordinates": [-79.94349179, 32.777766883], "type": "Point"}, "id": "996", "properties": {"Object ID": 573806316, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94541169, 32.776914122, -79.94541169, 32.776914122], "geometry": {"coordinates": [-79.94541169, 32.776914122], "type": "Point"}, "id": "997", "properties": {"Object ID": 573807482, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93721568, 32.780100557, -79.93721568, 32.780100557], "geometry": {"coordinates": [-79.93721568, 32.780100557], "type": "Point"}, "id": "998", "properties": {"Object ID": 573854165, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93878284, 32.77632334, -79.93878284, 32.77632334], "geometry": {"coordinates": [-79.93878284, 32.77632334], "type": "Point"}, "id": "999", "properties": {"Object ID": 573856087, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93931502, 32.773027274, -79.93931502, 32.773027274], "geometry": {"coordinates": [-79.93931502, 32.773027274], "type": "Point"}, "id": "1000", "properties": {"Object ID": 573860086, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94043882, 32.773791803, -79.94043882, 32.773791803], "geometry": {"coordinates": [-79.94043882, 32.773791803], "type": "Point"}, "id": "1001", "properties": {"Object ID": 573860245, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94082046, 32.774309368, -79.94082046, 32.774309368], "geometry": {"coordinates": [-79.94082046, 32.774309368], "type": "Point"}, "id": "1002", "properties": {"Object ID": 573860258, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94083872, 32.774521669, -79.94083872, 32.774521669], "geometry": {"coordinates": [-79.94083872, 32.774521669], "type": "Point"}, "id": "1003", "properties": {"Object ID": 573860265, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94060195, 32.774775293, -79.94060195, 32.774775293], "geometry": {"coordinates": [-79.94060195, 32.774775293], "type": "Point"}, "id": "1004", "properties": {"Object ID": 573860275, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9407972, 32.77536125, -79.9407972, 32.77536125], "geometry": {"coordinates": [-79.9407972, 32.77536125], "type": "Point"}, "id": "1005", "properties": {"Object ID": 573860294, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93731496, 32.774424834, -79.93731496, 32.774424834], "geometry": {"coordinates": [-79.93731496, 32.774424834], "type": "Point"}, "id": "1006", "properties": {"Object ID": 574268769, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93902851, 32.773844363, -79.93902851, 32.773844363], "geometry": {"coordinates": [-79.93902851, 32.773844363], "type": "Point"}, "id": "1007", "properties": {"Object ID": 574269131, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9387764, 32.773854455, -79.9387764, 32.773854455], "geometry": {"coordinates": [-79.9387764, 32.773854455], "type": "Point"}, "id": "1008", "properties": {"Object ID": 574269133, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93879442, 32.774027033, -79.93879442, 32.774027033], "geometry": {"coordinates": [-79.93879442, 32.774027033], "type": "Point"}, "id": "1009", "properties": {"Object ID": 574269141, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9380263, 32.774222479, -79.9380263, 32.774222479], "geometry": {"coordinates": [-79.9380263, 32.774222479], "type": "Point"}, "id": "1010", "properties": {"Object ID": 574269147, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93827832, 32.774501177, -79.93827832, 32.774501177], "geometry": {"coordinates": [-79.93827832, 32.774501177], "type": "Point"}, "id": "1011", "properties": {"Object ID": 574269157, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93819474, 32.774642053, -79.93819474, 32.774642053], "geometry": {"coordinates": [-79.93819474, 32.774642053], "type": "Point"}, "id": "1012", "properties": {"Object ID": 574269163, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93747328, 32.774789678, -79.93747328, 32.774789678], "geometry": {"coordinates": [-79.93747328, 32.774789678], "type": "Point"}, "id": "1013", "properties": {"Object ID": 574269178, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9372582, 32.775023238, -79.9372582, 32.775023238], "geometry": {"coordinates": [-79.9372582, 32.775023238], "type": "Point"}, "id": "1014", "properties": {"Object ID": 574269188, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93694112, 32.775312756, -79.93694112, 32.775312756], "geometry": {"coordinates": [-79.93694112, 32.775312756], "type": "Point"}, "id": "1015", "properties": {"Object ID": 574269200, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93730022, 32.775544898, -79.93730022, 32.775544898], "geometry": {"coordinates": [-79.93730022, 32.775544898], "type": "Point"}, "id": "1016", "properties": {"Object ID": 574269208, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9412164, 32.773203632, -79.9412164, 32.773203632], "geometry": {"coordinates": [-79.9412164, 32.773203632], "type": "Point"}, "id": "1017", "properties": {"Object ID": 574270738, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93903767, 32.777334498, -79.93903767, 32.777334498], "geometry": {"coordinates": [-79.93903767, 32.777334498], "type": "Point"}, "id": "1018", "properties": {"Object ID": 574295708, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94064393, 32.778776275, -79.94064393, 32.778776275], "geometry": {"coordinates": [-79.94064393, 32.778776275], "type": "Point"}, "id": "1019", "properties": {"Object ID": 574295939, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94057589, 32.771899434, -79.94057589, 32.771899434], "geometry": {"coordinates": [-79.94057589, 32.771899434], "type": "Point"}, "id": "1020", "properties": {"Object ID": 574296079, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94012734, 32.772187048, -79.94012734, 32.772187048], "geometry": {"coordinates": [-79.94012734, 32.772187048], "type": "Point"}, "id": "1021", "properties": {"Object ID": 574296087, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94124728, 32.772224293, -79.94124728, 32.772224293], "geometry": {"coordinates": [-79.94124728, 32.772224293], "type": "Point"}, "id": "1022", "properties": {"Object ID": 574296089, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94144284, 32.772270044, -79.94144284, 32.772270044], "geometry": {"coordinates": [-79.94144284, 32.772270044], "type": "Point"}, "id": "1023", "properties": {"Object ID": 574296091, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94077452, 32.772434881, -79.94077452, 32.772434881], "geometry": {"coordinates": [-79.94077452, 32.772434881], "type": "Point"}, "id": "1024", "properties": {"Object ID": 574296099, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94124616, 32.772522382, -79.94124616, 32.772522382], "geometry": {"coordinates": [-79.94124616, 32.772522382], "type": "Point"}, "id": "1025", "properties": {"Object ID": 574296101, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94471824, 32.777201345, -79.94471824, 32.777201345], "geometry": {"coordinates": [-79.94471824, 32.777201345], "type": "Point"}, "id": "1026", "properties": {"Object ID": 574348016, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93989683, 32.772889519, -79.93989683, 32.772889519], "geometry": {"coordinates": [-79.93989683, 32.772889519], "type": "Point"}, "id": "1027", "properties": {"Object ID": 574372066, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94028232, 32.77307384, -79.94028232, 32.77307384], "geometry": {"coordinates": [-79.94028232, 32.77307384], "type": "Point"}, "id": "1028", "properties": {"Object ID": 574372074, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93687935, 32.772994266, -79.93687935, 32.772994266], "geometry": {"coordinates": [-79.93687935, 32.772994266], "type": "Point"}, "id": "1029", "properties": {"Object ID": 574371908, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93690444, 32.773417841, -79.93690444, 32.773417841], "geometry": {"coordinates": [-79.93690444, 32.773417841], "type": "Point"}, "id": "1030", "properties": {"Object ID": 574371916, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93693362, 32.773609989, -79.93693362, 32.773609989], "geometry": {"coordinates": [-79.93693362, 32.773609989], "type": "Point"}, "id": "1031", "properties": {"Object ID": 574371922, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93837643, 32.771857528, -79.93837643, 32.771857528], "geometry": {"coordinates": [-79.93837643, 32.771857528], "type": "Point"}, "id": "1032", "properties": {"Object ID": 574373106, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93859094, 32.779624813, -79.93859094, 32.779624813], "geometry": {"coordinates": [-79.93859094, 32.779624813], "type": "Point"}, "id": "1033", "properties": {"Object ID": 574409905, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93859094, 32.779624813, -79.93859094, 32.779624813], "geometry": {"coordinates": [-79.93859094, 32.779624813], "type": "Point"}, "id": "1034", "properties": {"Object ID": 574409907, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93882755, 32.771527681, -79.93882755, 32.771527681], "geometry": {"coordinates": [-79.93882755, 32.771527681], "type": "Point"}, "id": "1035", "properties": {"Object ID": 574421861, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94477888, 32.776377681, -79.94477888, 32.776377681], "geometry": {"coordinates": [-79.94477888, 32.776377681], "type": "Point"}, "id": "1036", "properties": {"Object ID": 574422147, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94121158, 32.773901986, -79.94121158, 32.773901986], "geometry": {"coordinates": [-79.94121158, 32.773901986], "type": "Point"}, "id": "1037", "properties": {"Object ID": 574431445, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94184372, 32.774924203, -79.94184372, 32.774924203], "geometry": {"coordinates": [-79.94184372, 32.774924203], "type": "Point"}, "id": "1038", "properties": {"Object ID": 574431449, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9410735, 32.773705, -79.9410735, 32.773705], "geometry": {"coordinates": [-79.9410735, 32.773705], "type": "Point"}, "id": "1039", "properties": {"Object ID": 574431457, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9439818, 32.776817126, -79.9439818, 32.776817126], "geometry": {"coordinates": [-79.9439818, 32.776817126], "type": "Point"}, "id": "1040", "properties": {"Object ID": 574431607, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94242933, 32.778108219, -79.94242933, 32.778108219], "geometry": {"coordinates": [-79.94242933, 32.778108219], "type": "Point"}, "id": "1041", "properties": {"Object ID": 574485618, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94242933, 32.778108219, -79.94242933, 32.778108219], "geometry": {"coordinates": [-79.94242933, 32.778108219], "type": "Point"}, "id": "1042", "properties": {"Object ID": 574485620, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94242933, 32.778108219, -79.94242933, 32.778108219], "geometry": {"coordinates": [-79.94242933, 32.778108219], "type": "Point"}, "id": "1043", "properties": {"Object ID": 574485621, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "1044", "properties": {"Object ID": 574485658, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "1045", "properties": {"Object ID": 574485660, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "1046", "properties": {"Object ID": 574486697, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "1047", "properties": {"Object ID": 574486739, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "1048", "properties": {"Object ID": 574486740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "1049", "properties": {"Object ID": 574486741, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "1050", "properties": {"Object ID": 574486749, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "1051", "properties": {"Object ID": 574486762, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "1052", "properties": {"Object ID": 574486766, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "1053", "properties": {"Object ID": 574486771, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93871033, 32.777371745, -79.93871033, 32.777371745], "geometry": {"coordinates": [-79.93871033, 32.777371745], "type": "Point"}, "id": "1054", "properties": {"Object ID": 574486800, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "1055", "properties": {"Object ID": 574486823, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9408639, 32.775053967, -79.9408639, 32.775053967], "geometry": {"coordinates": [-79.9408639, 32.775053967], "type": "Point"}, "id": "1056", "properties": {"Object ID": 574486826, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94010269, 32.773919714, -79.94010269, 32.773919714], "geometry": {"coordinates": [-79.94010269, 32.773919714], "type": "Point"}, "id": "1057", "properties": {"Object ID": 574486830, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93988545, 32.773901763, -79.93988545, 32.773901763], "geometry": {"coordinates": [-79.93988545, 32.773901763], "type": "Point"}, "id": "1058", "properties": {"Object ID": 574486832, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93872965, 32.773556377, -79.93872965, 32.773556377], "geometry": {"coordinates": [-79.93872965, 32.773556377], "type": "Point"}, "id": "1059", "properties": {"Object ID": 574486842, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93801926, 32.775587877, -79.93801926, 32.775587877], "geometry": {"coordinates": [-79.93801926, 32.775587877], "type": "Point"}, "id": "1060", "properties": {"Object ID": 574486851, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93785469, 32.777499843, -79.93785469, 32.777499843], "geometry": {"coordinates": [-79.93785469, 32.777499843], "type": "Point"}, "id": "1061", "properties": {"Object ID": 574486957, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93777386, 32.776445317, -79.93777386, 32.776445317], "geometry": {"coordinates": [-79.93777386, 32.776445317], "type": "Point"}, "id": "1062", "properties": {"Object ID": 574486971, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93716135, 32.776559813, -79.93716135, 32.776559813], "geometry": {"coordinates": [-79.93716135, 32.776559813], "type": "Point"}, "id": "1063", "properties": {"Object ID": 574486974, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93392255, 32.774543245, -79.93392255, 32.774543245], "geometry": {"coordinates": [-79.93392255, 32.774543245], "type": "Point"}, "id": "1064", "properties": {"Object ID": 573475701, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93353068, 32.775133449, -79.93353068, 32.775133449], "geometry": {"coordinates": [-79.93353068, 32.775133449], "type": "Point"}, "id": "1065", "properties": {"Object ID": 573475712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93780143, 32.773427301, -79.93780143, 32.773427301], "geometry": {"coordinates": [-79.93780143, 32.773427301], "type": "Point"}, "id": "1066", "properties": {"Object ID": 573789241, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93676377, 32.776128349, -79.93676377, 32.776128349], "geometry": {"coordinates": [-79.93676377, 32.776128349], "type": "Point"}, "id": "1067", "properties": {"Object ID": 573789165, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93898076, 32.773420021, -79.93898076, 32.773420021], "geometry": {"coordinates": [-79.93898076, 32.773420021], "type": "Point"}, "id": "1068", "properties": {"Object ID": 573789719, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93785265, 32.778492033, -79.93785265, 32.778492033], "geometry": {"coordinates": [-79.93785265, 32.778492033], "type": "Point"}, "id": "1069", "properties": {"Object ID": 573794192, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93304805, 32.769791258, -79.93304805, 32.769791258], "geometry": {"coordinates": [-79.93304805, 32.769791258], "type": "Point"}, "id": "1070", "properties": {"Object ID": 574268561, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93435682, 32.770544643, -79.93435682, 32.770544643], "geometry": {"coordinates": [-79.93435682, 32.770544643], "type": "Point"}, "id": "1071", "properties": {"Object ID": 574268618, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9362661, 32.776793297, -79.9362661, 32.776793297], "geometry": {"coordinates": [-79.9362661, 32.776793297], "type": "Point"}, "id": "1072", "properties": {"Object ID": 574268923, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93819474, 32.774642053, -79.93819474, 32.774642053], "geometry": {"coordinates": [-79.93819474, 32.774642053], "type": "Point"}, "id": "1073", "properties": {"Object ID": 574269166, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94113564, 32.772450975, -79.94113564, 32.772450975], "geometry": {"coordinates": [-79.94113564, 32.772450975], "type": "Point"}, "id": "1074", "properties": {"Object ID": 574296097, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93559899, 32.777602365, -79.93559899, 32.777602365], "geometry": {"coordinates": [-79.93559899, 32.777602365], "type": "Point"}, "id": "1075", "properties": {"Object ID": 574371751, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9348458, 32.777735178, -79.9348458, 32.777735178], "geometry": {"coordinates": [-79.9348458, 32.777735178], "type": "Point"}, "id": "1076", "properties": {"Object ID": 574371755, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93642432, 32.771931076, -79.93642432, 32.771931076], "geometry": {"coordinates": [-79.93642432, 32.771931076], "type": "Point"}, "id": "1077", "properties": {"Object ID": 574371857, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93928608, 32.772254657, -79.93928608, 32.772254657], "geometry": {"coordinates": [-79.93928608, 32.772254657], "type": "Point"}, "id": "1078", "properties": {"Object ID": 574373119, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93446534, 32.776518504, -79.93446534, 32.776518504], "geometry": {"coordinates": [-79.93446534, 32.776518504], "type": "Point"}, "id": "1079", "properties": {"Object ID": 574409637, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93305513, 32.776608666, -79.93305513, 32.776608666], "geometry": {"coordinates": [-79.93305513, 32.776608666], "type": "Point"}, "id": "1080", "properties": {"Object ID": 574409644, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94183799, 32.775161736, -79.94183799, 32.775161736], "geometry": {"coordinates": [-79.94183799, 32.775161736], "type": "Point"}, "id": "1081", "properties": {"Object ID": 574431455, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94434665, 32.776643873, -79.94434665, 32.776643873], "geometry": {"coordinates": [-79.94434665, 32.776643873], "type": "Point"}, "id": "1082", "properties": {"Object ID": 574431591, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "1083", "properties": {"Object ID": 574486765, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "1084", "properties": {"Object ID": 574486768, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93777386, 32.776445317, -79.93777386, 32.776445317], "geometry": {"coordinates": [-79.93777386, 32.776445317], "type": "Point"}, "id": "1085", "properties": {"Object ID": 574486969, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93537183, 32.77791889, -79.93537183, 32.77791889], "geometry": {"coordinates": [-79.93537183, 32.77791889], "type": "Point"}, "id": "1086", "properties": {"Object ID": 574487036, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93579376, 32.777596444, -79.93579376, 32.777596444], "geometry": {"coordinates": [-79.93579376, 32.777596444], "type": "Point"}, "id": "1087", "properties": {"Object ID": 574487044, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1088", "properties": {"Object ID": 574487063, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681104, 32.778289954, -79.92681104, 32.778289954], "geometry": {"coordinates": [-79.92681104, 32.778289954], "type": "Point"}, "id": "1089", "properties": {"Object ID": 573407535, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92913919, 32.780523417, -79.92913919, 32.780523417], "geometry": {"coordinates": [-79.92913919, 32.780523417], "type": "Point"}, "id": "1090", "properties": {"Object ID": 573463563, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92962481, 32.782751918, -79.92962481, 32.782751918], "geometry": {"coordinates": [-79.92962481, 32.782751918], "type": "Point"}, "id": "1091", "properties": {"Object ID": 573467958, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92815908, 32.772919817, -79.92815908, 32.772919817], "geometry": {"coordinates": [-79.92815908, 32.772919817], "type": "Point"}, "id": "1092", "properties": {"Object ID": 573779309, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92845507, 32.773445045, -79.92845507, 32.773445045], "geometry": {"coordinates": [-79.92845507, 32.773445045], "type": "Point"}, "id": "1093", "properties": {"Object ID": 573779331, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92874417, 32.77370954, -79.92874417, 32.77370954], "geometry": {"coordinates": [-79.92874417, 32.77370954], "type": "Point"}, "id": "1094", "properties": {"Object ID": 573779345, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92853821, 32.774582905, -79.92853821, 32.774582905], "geometry": {"coordinates": [-79.92853821, 32.774582905], "type": "Point"}, "id": "1095", "properties": {"Object ID": 573779387, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92791241, 32.774675817, -79.92791241, 32.774675817], "geometry": {"coordinates": [-79.92791241, 32.774675817], "type": "Point"}, "id": "1096", "properties": {"Object ID": 573779391, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92741433, 32.77931362, -79.92741433, 32.77931362], "geometry": {"coordinates": [-79.92741433, 32.77931362], "type": "Point"}, "id": "1097", "properties": {"Object ID": 573782385, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92741436, 32.778811463, -79.92741436, 32.778811463], "geometry": {"coordinates": [-79.92741436, 32.778811463], "type": "Point"}, "id": "1098", "properties": {"Object ID": 573782387, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9285359, 32.779643027, -79.9285359, 32.779643027], "geometry": {"coordinates": [-79.9285359, 32.779643027], "type": "Point"}, "id": "1099", "properties": {"Object ID": 573782405, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92875099, 32.782205177, -79.92875099, 32.782205177], "geometry": {"coordinates": [-79.92875099, 32.782205177], "type": "Point"}, "id": "1100", "properties": {"Object ID": 573782476, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92820141, 32.77829234, -79.92820141, 32.77829234], "geometry": {"coordinates": [-79.92820141, 32.77829234], "type": "Point"}, "id": "1101", "properties": {"Object ID": 573782508, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92889412, 32.775479003, -79.92889412, 32.775479003], "geometry": {"coordinates": [-79.92889412, 32.775479003], "type": "Point"}, "id": "1102", "properties": {"Object ID": 573782532, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92901056, 32.775913829, -79.92901056, 32.775913829], "geometry": {"coordinates": [-79.92901056, 32.775913829], "type": "Point"}, "id": "1103", "properties": {"Object ID": 573782548, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92927399, 32.773426703, -79.92927399, 32.773426703], "geometry": {"coordinates": [-79.92927399, 32.773426703], "type": "Point"}, "id": "1104", "properties": {"Object ID": 573783140, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93002133, 32.779324182, -79.93002133, 32.779324182], "geometry": {"coordinates": [-79.93002133, 32.779324182], "type": "Point"}, "id": "1105", "properties": {"Object ID": 573783307, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93112351, 32.779280644, -79.93112351, 32.779280644], "geometry": {"coordinates": [-79.93112351, 32.779280644], "type": "Point"}, "id": "1106", "properties": {"Object ID": 573783311, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93206633, 32.776539325, -79.93206633, 32.776539325], "geometry": {"coordinates": [-79.93206633, 32.776539325], "type": "Point"}, "id": "1107", "properties": {"Object ID": 573785452, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93343889, 32.771793801, -79.93343889, 32.771793801], "geometry": {"coordinates": [-79.93343889, 32.771793801], "type": "Point"}, "id": "1108", "properties": {"Object ID": 573785883, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93251053, 32.77281289, -79.93251053, 32.77281289], "geometry": {"coordinates": [-79.93251053, 32.77281289], "type": "Point"}, "id": "1109", "properties": {"Object ID": 573785917, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93761682, 32.773771677, -79.93761682, 32.773771677], "geometry": {"coordinates": [-79.93761682, 32.773771677], "type": "Point"}, "id": "1110", "properties": {"Object ID": 573789248, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93500732, 32.779001874, -79.93500732, 32.779001874], "geometry": {"coordinates": [-79.93500732, 32.779001874], "type": "Point"}, "id": "1111", "properties": {"Object ID": 573789111, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93677075, 32.776509311, -79.93677075, 32.776509311], "geometry": {"coordinates": [-79.93677075, 32.776509311], "type": "Point"}, "id": "1112", "properties": {"Object ID": 573789174, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93758824, 32.77268194, -79.93758824, 32.77268194], "geometry": {"coordinates": [-79.93758824, 32.77268194], "type": "Point"}, "id": "1113", "properties": {"Object ID": 573789229, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93892889, 32.77475913, -79.93892889, 32.77475913], "geometry": {"coordinates": [-79.93892889, 32.77475913], "type": "Point"}, "id": "1114", "properties": {"Object ID": 573789338, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93828502, 32.773000626, -79.93828502, 32.773000626], "geometry": {"coordinates": [-79.93828502, 32.773000626], "type": "Point"}, "id": "1115", "properties": {"Object ID": 573789703, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93971208, 32.774966193, -79.93971208, 32.774966193], "geometry": {"coordinates": [-79.93971208, 32.774966193], "type": "Point"}, "id": "1116", "properties": {"Object ID": 573795573, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94000052, 32.775354477, -79.94000052, 32.775354477], "geometry": {"coordinates": [-79.94000052, 32.775354477], "type": "Point"}, "id": "1117", "properties": {"Object ID": 573795584, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93977192, 32.777724528, -79.93977192, 32.777724528], "geometry": {"coordinates": [-79.93977192, 32.777724528], "type": "Point"}, "id": "1118", "properties": {"Object ID": 573795681, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9431408, 32.776523032, -79.9431408, 32.776523032], "geometry": {"coordinates": [-79.9431408, 32.776523032], "type": "Point"}, "id": "1119", "properties": {"Object ID": 573800799, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92774466, 32.777705241, -79.92774466, 32.777705241], "geometry": {"coordinates": [-79.92774466, 32.777705241], "type": "Point"}, "id": "1120", "properties": {"Object ID": 573827140, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92950468, 32.777282449, -79.92950468, 32.777282449], "geometry": {"coordinates": [-79.92950468, 32.777282449], "type": "Point"}, "id": "1121", "properties": {"Object ID": 573827762, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283487, 32.783341755, -79.9283487, 32.783341755], "geometry": {"coordinates": [-79.9283487, 32.783341755], "type": "Point"}, "id": "1122", "properties": {"Object ID": 573827805, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93253579, 32.775843272, -79.93253579, 32.775843272], "geometry": {"coordinates": [-79.93253579, 32.775843272], "type": "Point"}, "id": "1123", "properties": {"Object ID": 573831732, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93948096, 32.776016515, -79.93948096, 32.776016515], "geometry": {"coordinates": [-79.93948096, 32.776016515], "type": "Point"}, "id": "1124", "properties": {"Object ID": 573856074, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92821535, 32.775841025, -79.92821535, 32.775841025], "geometry": {"coordinates": [-79.92821535, 32.775841025], "type": "Point"}, "id": "1125", "properties": {"Object ID": 574267729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92859461, 32.780244674, -79.92859461, 32.780244674], "geometry": {"coordinates": [-79.92859461, 32.780244674], "type": "Point"}, "id": "1126", "properties": {"Object ID": 574268037, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93789908, 32.774403738, -79.93789908, 32.774403738], "geometry": {"coordinates": [-79.93789908, 32.774403738], "type": "Point"}, "id": "1127", "properties": {"Object ID": 574269153, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93733677, 32.775455194, -79.93733677, 32.775455194], "geometry": {"coordinates": [-79.93733677, 32.775455194], "type": "Point"}, "id": "1128", "properties": {"Object ID": 574269206, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9316132, 32.77376274, -79.9316132, 32.77376274], "geometry": {"coordinates": [-79.9316132, 32.77376274], "type": "Point"}, "id": "1129", "properties": {"Object ID": 574293775, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9326316, 32.781124507, -79.9326316, 32.781124507], "geometry": {"coordinates": [-79.9326316, 32.781124507], "type": "Point"}, "id": "1130", "properties": {"Object ID": 574371556, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92438222, 32.783062593, -79.92438222, 32.783062593], "geometry": {"coordinates": [-79.92438222, 32.783062593], "type": "Point"}, "id": "1131", "properties": {"Object ID": 574372304, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92684347, 32.783582589, -79.92684347, 32.783582589], "geometry": {"coordinates": [-79.92684347, 32.783582589], "type": "Point"}, "id": "1132", "properties": {"Object ID": 574372316, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92560022, 32.776892399, -79.92560022, 32.776892399], "geometry": {"coordinates": [-79.92560022, 32.776892399], "type": "Point"}, "id": "1133", "properties": {"Object ID": 574372326, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9367562, 32.772173076, -79.9367562, 32.772173076], "geometry": {"coordinates": [-79.9367562, 32.772173076], "type": "Point"}, "id": "1134", "properties": {"Object ID": 574371890, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9282403, 32.780783377, -79.9282403, 32.780783377], "geometry": {"coordinates": [-79.9282403, 32.780783377], "type": "Point"}, "id": "1135", "properties": {"Object ID": 574372414, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92780897, 32.776260517, -79.92780897, 32.776260517], "geometry": {"coordinates": [-79.92780897, 32.776260517], "type": "Point"}, "id": "1136", "properties": {"Object ID": 574372455, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92846361, 32.776973025, -79.92846361, 32.776973025], "geometry": {"coordinates": [-79.92846361, 32.776973025], "type": "Point"}, "id": "1137", "properties": {"Object ID": 574421677, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92804197, 32.777344437, -79.92804197, 32.777344437], "geometry": {"coordinates": [-79.92804197, 32.777344437], "type": "Point"}, "id": "1138", "properties": {"Object ID": 574421689, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93317357, 32.778282489, -79.93317357, 32.778282489], "geometry": {"coordinates": [-79.93317357, 32.778282489], "type": "Point"}, "id": "1139", "properties": {"Object ID": 574421786, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94135288, 32.774987805, -79.94135288, 32.774987805], "geometry": {"coordinates": [-79.94135288, 32.774987805], "type": "Point"}, "id": "1140", "properties": {"Object ID": 574431451, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92890689, 32.781738577, -79.92890689, 32.781738577], "geometry": {"coordinates": [-79.92890689, 32.781738577], "type": "Point"}, "id": "1141", "properties": {"Object ID": 574431310, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93370546, 32.780669368, -79.93370546, 32.780669368], "geometry": {"coordinates": [-79.93370546, 32.780669368], "type": "Point"}, "id": "1142", "properties": {"Object ID": 574447818, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92653241, 32.777628862, -79.92653241, 32.777628862], "geometry": {"coordinates": [-79.92653241, 32.777628862], "type": "Point"}, "id": "1143", "properties": {"Object ID": 574455173, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92792463, 32.776347843, -79.92792463, 32.776347843], "geometry": {"coordinates": [-79.92792463, 32.776347843], "type": "Point"}, "id": "1144", "properties": {"Object ID": 574461097, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673802, 32.779726367, -79.92673802, 32.779726367], "geometry": {"coordinates": [-79.92673802, 32.779726367], "type": "Point"}, "id": "1145", "properties": {"Object ID": 574461295, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "1146", "properties": {"Object ID": 574485651, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94238262, 32.777178526, -79.94238262, 32.777178526], "geometry": {"coordinates": [-79.94238262, 32.777178526], "type": "Point"}, "id": "1147", "properties": {"Object ID": 574486757, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93941203, 32.773249683, -79.93941203, 32.773249683], "geometry": {"coordinates": [-79.93941203, 32.773249683], "type": "Point"}, "id": "1148", "properties": {"Object ID": 574486845, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93594431, 32.775383833, -79.93594431, 32.775383833], "geometry": {"coordinates": [-79.93594431, 32.775383833], "type": "Point"}, "id": "1149", "properties": {"Object ID": 574486862, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93598957, 32.773950257, -79.93598957, 32.773950257], "geometry": {"coordinates": [-79.93598957, 32.773950257], "type": "Point"}, "id": "1150", "properties": {"Object ID": 574486882, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93653136, 32.776173731, -79.93653136, 32.776173731], "geometry": {"coordinates": [-79.93653136, 32.776173731], "type": "Point"}, "id": "1151", "properties": {"Object ID": 574486976, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1152", "properties": {"Object ID": 574487050, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "1153", "properties": {"Object ID": 574488432, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "1154", "properties": {"Object ID": 574488700, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92792729, 32.779113403, -79.92792729, 32.779113403], "geometry": {"coordinates": [-79.92792729, 32.779113403], "type": "Point"}, "id": "1155", "properties": {"Object ID": 574488704, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "1156", "properties": {"Object ID": 574488714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1157", "properties": {"Object ID": 574488729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1158", "properties": {"Object ID": 574488732, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1159", "properties": {"Object ID": 574488740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1160", "properties": {"Object ID": 574488741, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1161", "properties": {"Object ID": 574488756, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "1162", "properties": {"Object ID": 574488792, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "1163", "properties": {"Object ID": 574488800, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9267068, 32.776164736, -79.9267068, 32.776164736], "geometry": {"coordinates": [-79.9267068, 32.776164736], "type": "Point"}, "id": "1164", "properties": {"Object ID": 574488818, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92658659, 32.77583613, -79.92658659, 32.77583613], "geometry": {"coordinates": [-79.92658659, 32.77583613], "type": "Point"}, "id": "1165", "properties": {"Object ID": 574488826, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92584038, 32.776023966, -79.92584038, 32.776023966], "geometry": {"coordinates": [-79.92584038, 32.776023966], "type": "Point"}, "id": "1166", "properties": {"Object ID": 574488828, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92647587, 32.775452184, -79.92647587, 32.775452184], "geometry": {"coordinates": [-79.92647587, 32.775452184], "type": "Point"}, "id": "1167", "properties": {"Object ID": 574488853, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9277608, 32.774429346, -79.9277608, 32.774429346], "geometry": {"coordinates": [-79.9277608, 32.774429346], "type": "Point"}, "id": "1168", "properties": {"Object ID": 574488861, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93065525, 32.777943181, -79.93065525, 32.777943181], "geometry": {"coordinates": [-79.93065525, 32.777943181], "type": "Point"}, "id": "1169", "properties": {"Object ID": 573783351, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93165656, 32.77805851, -79.93165656, 32.77805851], "geometry": {"coordinates": [-79.93165656, 32.77805851], "type": "Point"}, "id": "1170", "properties": {"Object ID": 573831770, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93350976, 32.777834982, -79.93350976, 32.777834982], "geometry": {"coordinates": [-79.93350976, 32.777834982], "type": "Point"}, "id": "1171", "properties": {"Object ID": 574371662, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92813633, 32.780414773, -79.92813633, 32.780414773], "geometry": {"coordinates": [-79.92813633, 32.780414773], "type": "Point"}, "id": "1172", "properties": {"Object ID": 574372411, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92783811, 32.778163155, -79.92783811, 32.778163155], "geometry": {"coordinates": [-79.92783811, 32.778163155], "type": "Point"}, "id": "1173", "properties": {"Object ID": 574446489, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93092389, 32.780416852, -79.93092389, 32.780416852], "geometry": {"coordinates": [-79.93092389, 32.780416852], "type": "Point"}, "id": "1174", "properties": {"Object ID": 574451494, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93092389, 32.780416852, -79.93092389, 32.780416852], "geometry": {"coordinates": [-79.93092389, 32.780416852], "type": "Point"}, "id": "1175", "properties": {"Object ID": 574451496, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "1176", "properties": {"Object ID": 574485657, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "1177", "properties": {"Object ID": 574486703, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93682513, 32.776882893, -79.93682513, 32.776882893], "geometry": {"coordinates": [-79.93682513, 32.776882893], "type": "Point"}, "id": "1178", "properties": {"Object ID": 574486973, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "1179", "properties": {"Object ID": 574487015, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "1180", "properties": {"Object ID": 574488672, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92821141, 32.778169161, -79.92821141, 32.778169161], "geometry": {"coordinates": [-79.92821141, 32.778169161], "type": "Point"}, "id": "1181", "properties": {"Object ID": 574488719, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92885762, 32.770297964, -79.92885762, 32.770297964], "geometry": {"coordinates": [-79.92885762, 32.770297964], "type": "Point"}, "id": "1182", "properties": {"Object ID": 573467724, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92928728, 32.770430113, -79.92928728, 32.770430113], "geometry": {"coordinates": [-79.92928728, 32.770430113], "type": "Point"}, "id": "1183", "properties": {"Object ID": 573467725, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9343763, 32.77528917, -79.9343763, 32.77528917], "geometry": {"coordinates": [-79.9343763, 32.77528917], "type": "Point"}, "id": "1184", "properties": {"Object ID": 573475713, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92822267, 32.774440015, -79.92822267, 32.774440015], "geometry": {"coordinates": [-79.92822267, 32.774440015], "type": "Point"}, "id": "1185", "properties": {"Object ID": 573779379, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92785603, 32.772534319, -79.92785603, 32.772534319], "geometry": {"coordinates": [-79.92785603, 32.772534319], "type": "Point"}, "id": "1186", "properties": {"Object ID": 573782437, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93024669, 32.774493376, -79.93024669, 32.774493376], "geometry": {"coordinates": [-79.93024669, 32.774493376], "type": "Point"}, "id": "1187", "properties": {"Object ID": 573783177, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93324451, 32.775745585, -79.93324451, 32.775745585], "geometry": {"coordinates": [-79.93324451, 32.775745585], "type": "Point"}, "id": "1188", "properties": {"Object ID": 573785843, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93297858, 32.773632398, -79.93297858, 32.773632398], "geometry": {"coordinates": [-79.93297858, 32.773632398], "type": "Point"}, "id": "1189", "properties": {"Object ID": 573785939, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93474089, 32.77500809, -79.93474089, 32.77500809], "geometry": {"coordinates": [-79.93474089, 32.77500809], "type": "Point"}, "id": "1190", "properties": {"Object ID": 573789141, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93713911, 32.772556192, -79.93713911, 32.772556192], "geometry": {"coordinates": [-79.93713911, 32.772556192], "type": "Point"}, "id": "1191", "properties": {"Object ID": 573789227, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93862172, 32.774610886, -79.93862172, 32.774610886], "geometry": {"coordinates": [-79.93862172, 32.774610886], "type": "Point"}, "id": "1192", "properties": {"Object ID": 573789335, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93982498, 32.773850911, -79.93982498, 32.773850911], "geometry": {"coordinates": [-79.93982498, 32.773850911], "type": "Point"}, "id": "1193", "properties": {"Object ID": 573795540, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94204363, 32.773525316, -79.94204363, 32.773525316], "geometry": {"coordinates": [-79.94204363, 32.773525316], "type": "Point"}, "id": "1194", "properties": {"Object ID": 573800694, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92814765, 32.775553137, -79.92814765, 32.775553137], "geometry": {"coordinates": [-79.92814765, 32.775553137], "type": "Point"}, "id": "1195", "properties": {"Object ID": 574267747, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93377141, 32.769843821, -79.93377141, 32.769843821], "geometry": {"coordinates": [-79.93377141, 32.769843821], "type": "Point"}, "id": "1196", "properties": {"Object ID": 574268567, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93436966, 32.770291893, -79.93436966, 32.770291893], "geometry": {"coordinates": [-79.93436966, 32.770291893], "type": "Point"}, "id": "1197", "properties": {"Object ID": 574268591, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93481976, 32.77115796, -79.93481976, 32.77115796], "geometry": {"coordinates": [-79.93481976, 32.77115796], "type": "Point"}, "id": "1198", "properties": {"Object ID": 574268680, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93608043, 32.774289088, -79.93608043, 32.774289088], "geometry": {"coordinates": [-79.93608043, 32.774289088], "type": "Point"}, "id": "1199", "properties": {"Object ID": 574268736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93683644, 32.774149522, -79.93683644, 32.774149522], "geometry": {"coordinates": [-79.93683644, 32.774149522], "type": "Point"}, "id": "1200", "properties": {"Object ID": 574268748, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93617157, 32.770989293, -79.93617157, 32.770989293], "geometry": {"coordinates": [-79.93617157, 32.770989293], "type": "Point"}, "id": "1201", "properties": {"Object ID": 574268889, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93668804, 32.771101372, -79.93668804, 32.771101372], "geometry": {"coordinates": [-79.93668804, 32.771101372], "type": "Point"}, "id": "1202", "properties": {"Object ID": 574268897, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93703657, 32.770780147, -79.93703657, 32.770780147], "geometry": {"coordinates": [-79.93703657, 32.770780147], "type": "Point"}, "id": "1203", "properties": {"Object ID": 574294756, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92941497, 32.775830294, -79.92941497, 32.775830294], "geometry": {"coordinates": [-79.92941497, 32.775830294], "type": "Point"}, "id": "1204", "properties": {"Object ID": 574346755, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92780897, 32.776260517, -79.92780897, 32.776260517], "geometry": {"coordinates": [-79.92780897, 32.776260517], "type": "Point"}, "id": "1205", "properties": {"Object ID": 574372453, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92958905, 32.776381714, -79.92958905, 32.776381714], "geometry": {"coordinates": [-79.92958905, 32.776381714], "type": "Point"}, "id": "1206", "properties": {"Object ID": 574372569, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93131293, 32.771566947, -79.93131293, 32.771566947], "geometry": {"coordinates": [-79.93131293, 32.771566947], "type": "Point"}, "id": "1207", "properties": {"Object ID": 574372737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1208", "properties": {"Object ID": 574476759, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1209", "properties": {"Object ID": 574476807, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92881418, 32.770269817, -79.92881418, 32.770269817], "geometry": {"coordinates": [-79.92881418, 32.770269817], "type": "Point"}, "id": "1210", "properties": {"Object ID": 574476812, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92759289, 32.776314875, -79.92759289, 32.776314875], "geometry": {"coordinates": [-79.92759289, 32.776314875], "type": "Point"}, "id": "1211", "properties": {"Object ID": 574488791, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92802582, 32.776264948, -79.92802582, 32.776264948], "geometry": {"coordinates": [-79.92802582, 32.776264948], "type": "Point"}, "id": "1212", "properties": {"Object ID": 574488805, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92858397, 32.775119787, -79.92858397, 32.775119787], "geometry": {"coordinates": [-79.92858397, 32.775119787], "type": "Point"}, "id": "1213", "properties": {"Object ID": 574488838, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93056057, 32.782797349, -79.93056057, 32.782797349], "geometry": {"coordinates": [-79.93056057, 32.782797349], "type": "Point"}, "id": "1214", "properties": {"Object ID": 573467959, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93341205, 32.774822277, -79.93341205, 32.774822277], "geometry": {"coordinates": [-79.93341205, 32.774822277], "type": "Point"}, "id": "1215", "properties": {"Object ID": 573475705, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93155196, 32.777449246, -79.93155196, 32.777449246], "geometry": {"coordinates": [-79.93155196, 32.777449246], "type": "Point"}, "id": "1216", "properties": {"Object ID": 573785433, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93217246, 32.776521687, -79.93217246, 32.776521687], "geometry": {"coordinates": [-79.93217246, 32.776521687], "type": "Point"}, "id": "1217", "properties": {"Object ID": 573785439, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9320575, 32.777626, -79.9320575, 32.777626], "geometry": {"coordinates": [-79.9320575, 32.777626], "type": "Point"}, "id": "1218", "properties": {"Object ID": 573785446, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93212526, 32.772653578, -79.93212526, 32.772653578], "geometry": {"coordinates": [-79.93212526, 32.772653578], "type": "Point"}, "id": "1219", "properties": {"Object ID": 573785629, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93149855, 32.772900084, -79.93149855, 32.772900084], "geometry": {"coordinates": [-79.93149855, 32.772900084], "type": "Point"}, "id": "1220", "properties": {"Object ID": 573785637, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93211193, 32.772955814, -79.93211193, 32.772955814], "geometry": {"coordinates": [-79.93211193, 32.772955814], "type": "Point"}, "id": "1221", "properties": {"Object ID": 573785639, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93265221, 32.774553154, -79.93265221, 32.774553154], "geometry": {"coordinates": [-79.93265221, 32.774553154], "type": "Point"}, "id": "1222", "properties": {"Object ID": 573785806, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9331634, 32.774554734, -79.9331634, 32.774554734], "geometry": {"coordinates": [-79.9331634, 32.774554734], "type": "Point"}, "id": "1223", "properties": {"Object ID": 573785808, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93272357, 32.775012546, -79.93272357, 32.775012546], "geometry": {"coordinates": [-79.93272357, 32.775012546], "type": "Point"}, "id": "1224", "properties": {"Object ID": 573785820, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93319265, 32.775344823, -79.93319265, 32.775344823], "geometry": {"coordinates": [-79.93319265, 32.775344823], "type": "Point"}, "id": "1225", "properties": {"Object ID": 573785831, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93289056, 32.775679154, -79.93289056, 32.775679154], "geometry": {"coordinates": [-79.93289056, 32.775679154], "type": "Point"}, "id": "1226", "properties": {"Object ID": 573785841, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93287745, 32.775781486, -79.93287745, 32.775781486], "geometry": {"coordinates": [-79.93287745, 32.775781486], "type": "Point"}, "id": "1227", "properties": {"Object ID": 573785845, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93326482, 32.775832553, -79.93326482, 32.775832553], "geometry": {"coordinates": [-79.93326482, 32.775832553], "type": "Point"}, "id": "1228", "properties": {"Object ID": 573785847, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93332341, 32.776036678, -79.93332341, 32.776036678], "geometry": {"coordinates": [-79.93332341, 32.776036678], "type": "Point"}, "id": "1229", "properties": {"Object ID": 573785851, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93315097, 32.776053979, -79.93315097, 32.776053979], "geometry": {"coordinates": [-79.93315097, 32.776053979], "type": "Point"}, "id": "1230", "properties": {"Object ID": 573785855, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93289001, 32.776126537, -79.93289001, 32.776126537], "geometry": {"coordinates": [-79.93289001, 32.776126537], "type": "Point"}, "id": "1231", "properties": {"Object ID": 573785860, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.932894, 32.776134, -79.932894, 32.776134], "geometry": {"coordinates": [-79.932894, 32.776134], "type": "Point"}, "id": "1232", "properties": {"Object ID": 573785866, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93279297, 32.774349755, -79.93279297, 32.774349755], "geometry": {"coordinates": [-79.93279297, 32.774349755], "type": "Point"}, "id": "1233", "properties": {"Object ID": 573785877, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93248491, 32.772379968, -79.93248491, 32.772379968], "geometry": {"coordinates": [-79.93248491, 32.772379968], "type": "Point"}, "id": "1234", "properties": {"Object ID": 573785903, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93341532, 32.772540302, -79.93341532, 32.772540302], "geometry": {"coordinates": [-79.93341532, 32.772540302], "type": "Point"}, "id": "1235", "properties": {"Object ID": 573785907, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9324951, 32.772675445, -79.9324951, 32.772675445], "geometry": {"coordinates": [-79.9324951, 32.772675445], "type": "Point"}, "id": "1236", "properties": {"Object ID": 573785911, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93249332, 32.77297829, -79.93249332, 32.77297829], "geometry": {"coordinates": [-79.93249332, 32.77297829], "type": "Point"}, "id": "1237", "properties": {"Object ID": 573785921, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93264403, 32.773252508, -79.93264403, 32.773252508], "geometry": {"coordinates": [-79.93264403, 32.773252508], "type": "Point"}, "id": "1238", "properties": {"Object ID": 573785929, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93291731, 32.773515169, -79.93291731, 32.773515169], "geometry": {"coordinates": [-79.93291731, 32.773515169], "type": "Point"}, "id": "1239", "properties": {"Object ID": 573785935, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93328816, 32.773945646, -79.93328816, 32.773945646], "geometry": {"coordinates": [-79.93328816, 32.773945646], "type": "Point"}, "id": "1240", "properties": {"Object ID": 573785956, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93346091, 32.773917177, -79.93346091, 32.773917177], "geometry": {"coordinates": [-79.93346091, 32.773917177], "type": "Point"}, "id": "1241", "properties": {"Object ID": 573785958, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93265327, 32.774223123, -79.93265327, 32.774223123], "geometry": {"coordinates": [-79.93265327, 32.774223123], "type": "Point"}, "id": "1242", "properties": {"Object ID": 573785970, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93309834, 32.774256592, -79.93309834, 32.774256592], "geometry": {"coordinates": [-79.93309834, 32.774256592], "type": "Point"}, "id": "1243", "properties": {"Object ID": 573785976, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93276125, 32.771949088, -79.93276125, 32.771949088], "geometry": {"coordinates": [-79.93276125, 32.771949088], "type": "Point"}, "id": "1244", "properties": {"Object ID": 573785984, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93213834, 32.774695077, -79.93213834, 32.774695077], "geometry": {"coordinates": [-79.93213834, 32.774695077], "type": "Point"}, "id": "1245", "properties": {"Object ID": 573831666, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93201278, 32.774722221, -79.93201278, 32.774722221], "geometry": {"coordinates": [-79.93201278, 32.774722221], "type": "Point"}, "id": "1246", "properties": {"Object ID": 573831668, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93201278, 32.774722221, -79.93201278, 32.774722221], "geometry": {"coordinates": [-79.93201278, 32.774722221], "type": "Point"}, "id": "1247", "properties": {"Object ID": 573831670, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93172229, 32.774753116, -79.93172229, 32.774753116], "geometry": {"coordinates": [-79.93172229, 32.774753116], "type": "Point"}, "id": "1248", "properties": {"Object ID": 573831682, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93184157, 32.774769794, -79.93184157, 32.774769794], "geometry": {"coordinates": [-79.93184157, 32.774769794], "type": "Point"}, "id": "1249", "properties": {"Object ID": 573831689, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241209, 32.774880914, -79.93241209, 32.774880914], "geometry": {"coordinates": [-79.93241209, 32.774880914], "type": "Point"}, "id": "1250", "properties": {"Object ID": 573831691, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242062, 32.775087666, -79.93242062, 32.775087666], "geometry": {"coordinates": [-79.93242062, 32.775087666], "type": "Point"}, "id": "1251", "properties": {"Object ID": 573831697, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93193054, 32.775284203, -79.93193054, 32.775284203], "geometry": {"coordinates": [-79.93193054, 32.775284203], "type": "Point"}, "id": "1252", "properties": {"Object ID": 573831711, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93165798, 32.775393375, -79.93165798, 32.775393375], "geometry": {"coordinates": [-79.93165798, 32.775393375], "type": "Point"}, "id": "1253", "properties": {"Object ID": 573831717, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242972, 32.775481669, -79.93242972, 32.775481669], "geometry": {"coordinates": [-79.93242972, 32.775481669], "type": "Point"}, "id": "1254", "properties": {"Object ID": 573831719, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93249662, 32.775623078, -79.93249662, 32.775623078], "geometry": {"coordinates": [-79.93249662, 32.775623078], "type": "Point"}, "id": "1255", "properties": {"Object ID": 573831727, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93256952, 32.776031415, -79.93256952, 32.776031415], "geometry": {"coordinates": [-79.93256952, 32.776031415], "type": "Point"}, "id": "1256", "properties": {"Object ID": 573831734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93256952, 32.776031415, -79.93256952, 32.776031415], "geometry": {"coordinates": [-79.93256952, 32.776031415], "type": "Point"}, "id": "1257", "properties": {"Object ID": 573831736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93162921, 32.77607049, -79.93162921, 32.77607049], "geometry": {"coordinates": [-79.93162921, 32.77607049], "type": "Point"}, "id": "1258", "properties": {"Object ID": 573831744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93162921, 32.77607049, -79.93162921, 32.77607049], "geometry": {"coordinates": [-79.93162921, 32.77607049], "type": "Point"}, "id": "1259", "properties": {"Object ID": 573831746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93250064, 32.777942599, -79.93250064, 32.777942599], "geometry": {"coordinates": [-79.93250064, 32.777942599], "type": "Point"}, "id": "1260", "properties": {"Object ID": 573831766, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93150848, 32.778259346, -79.93150848, 32.778259346], "geometry": {"coordinates": [-79.93150848, 32.778259346], "type": "Point"}, "id": "1261", "properties": {"Object ID": 573831782, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93271625, 32.778164884, -79.93271625, 32.778164884], "geometry": {"coordinates": [-79.93271625, 32.778164884], "type": "Point"}, "id": "1262", "properties": {"Object ID": 573831784, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93286915, 32.779143341, -79.93286915, 32.779143341], "geometry": {"coordinates": [-79.93286915, 32.779143341], "type": "Point"}, "id": "1263", "properties": {"Object ID": 573831797, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93152646, 32.77827288, -79.93152646, 32.77827288], "geometry": {"coordinates": [-79.93152646, 32.77827288], "type": "Point"}, "id": "1264", "properties": {"Object ID": 573831813, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93317944, 32.771383771, -79.93317944, 32.771383771], "geometry": {"coordinates": [-79.93317944, 32.771383771], "type": "Point"}, "id": "1265", "properties": {"Object ID": 573841024, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9322612, 32.771474667, -79.9322612, 32.771474667], "geometry": {"coordinates": [-79.9322612, 32.771474667], "type": "Point"}, "id": "1266", "properties": {"Object ID": 573841027, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93199343, 32.771806729, -79.93199343, 32.771806729], "geometry": {"coordinates": [-79.93199343, 32.771806729], "type": "Point"}, "id": "1267", "properties": {"Object ID": 574268209, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93202989, 32.77216751, -79.93202989, 32.77216751], "geometry": {"coordinates": [-79.93202989, 32.77216751], "type": "Point"}, "id": "1268", "properties": {"Object ID": 574268231, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93145158, 32.772374505, -79.93145158, 32.772374505], "geometry": {"coordinates": [-79.93145158, 32.772374505], "type": "Point"}, "id": "1269", "properties": {"Object ID": 574268237, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93145158, 32.772374505, -79.93145158, 32.772374505], "geometry": {"coordinates": [-79.93145158, 32.772374505], "type": "Point"}, "id": "1270", "properties": {"Object ID": 574268239, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93164132, 32.772368363, -79.93164132, 32.772368363], "geometry": {"coordinates": [-79.93164132, 32.772368363], "type": "Point"}, "id": "1271", "properties": {"Object ID": 574268241, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93195291, 32.774025626, -79.93195291, 32.774025626], "geometry": {"coordinates": [-79.93195291, 32.774025626], "type": "Point"}, "id": "1272", "properties": {"Object ID": 574293767, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93225749, 32.774175235, -79.93225749, 32.774175235], "geometry": {"coordinates": [-79.93225749, 32.774175235], "type": "Point"}, "id": "1273", "properties": {"Object ID": 574293785, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93338296, 32.777843775, -79.93338296, 32.777843775], "geometry": {"coordinates": [-79.93338296, 32.777843775], "type": "Point"}, "id": "1274", "properties": {"Object ID": 574371691, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191397, 32.771436685, -79.93191397, 32.771436685], "geometry": {"coordinates": [-79.93191397, 32.771436685], "type": "Point"}, "id": "1275", "properties": {"Object ID": 574372717, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93179919, 32.771590688, -79.93179919, 32.771590688], "geometry": {"coordinates": [-79.93179919, 32.771590688], "type": "Point"}, "id": "1276", "properties": {"Object ID": 574372727, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93167344, 32.771639475, -79.93167344, 32.771639475], "geometry": {"coordinates": [-79.93167344, 32.771639475], "type": "Point"}, "id": "1277", "properties": {"Object ID": 574372735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93296787, 32.776879729, -79.93296787, 32.776879729], "geometry": {"coordinates": [-79.93296787, 32.776879729], "type": "Point"}, "id": "1278", "properties": {"Object ID": 574409648, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93305761, 32.776982082, -79.93305761, 32.776982082], "geometry": {"coordinates": [-79.93305761, 32.776982082], "type": "Point"}, "id": "1279", "properties": {"Object ID": 574409650, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93307108, 32.77742516, -79.93307108, 32.77742516], "geometry": {"coordinates": [-79.93307108, 32.77742516], "type": "Point"}, "id": "1280", "properties": {"Object ID": 574409661, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93325105, 32.778823121, -79.93325105, 32.778823121], "geometry": {"coordinates": [-79.93325105, 32.778823121], "type": "Point"}, "id": "1281", "properties": {"Object ID": 574421807, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93319144, 32.778464297, -79.93319144, 32.778464297], "geometry": {"coordinates": [-79.93319144, 32.778464297], "type": "Point"}, "id": "1282", "properties": {"Object ID": 574421817, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93338378, 32.779406072, -79.93338378, 32.779406072], "geometry": {"coordinates": [-79.93338378, 32.779406072], "type": "Point"}, "id": "1283", "properties": {"Object ID": 574446557, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93342151, 32.779442072, -79.93342151, 32.779442072], "geometry": {"coordinates": [-79.93342151, 32.779442072], "type": "Point"}, "id": "1284", "properties": {"Object ID": 574446561, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93295129, 32.780329582, -79.93295129, 32.780329582], "geometry": {"coordinates": [-79.93295129, 32.780329582], "type": "Point"}, "id": "1285", "properties": {"Object ID": 574460955, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "1286", "properties": {"Object ID": 574460971, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "1287", "properties": {"Object ID": 574460983, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "1288", "properties": {"Object ID": 574460985, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "1289", "properties": {"Object ID": 574460993, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "1290", "properties": {"Object ID": 574460995, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "1291", "properties": {"Object ID": 574460997, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "1292", "properties": {"Object ID": 574461001, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93315753, 32.777901952, -79.93315753, 32.777901952], "geometry": {"coordinates": [-79.93315753, 32.777901952], "type": "Point"}, "id": "1293", "properties": {"Object ID": 574461037, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93247947, 32.775920061, -79.93247947, 32.775920061], "geometry": {"coordinates": [-79.93247947, 32.775920061], "type": "Point"}, "id": "1294", "properties": {"Object ID": 574486859, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93218159, 32.775506556, -79.93218159, 32.775506556], "geometry": {"coordinates": [-79.93218159, 32.775506556], "type": "Point"}, "id": "1295", "properties": {"Object ID": 574486891, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9317424, 32.771649042, -79.9317424, 32.771649042], "geometry": {"coordinates": [-79.9317424, 32.771649042], "type": "Point"}, "id": "1296", "properties": {"Object ID": 574486917, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93269937, 32.77799692, -79.93269937, 32.77799692], "geometry": {"coordinates": [-79.93269937, 32.77799692], "type": "Point"}, "id": "1297", "properties": {"Object ID": 574487098, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191116, 32.779781997, -79.93191116, 32.779781997], "geometry": {"coordinates": [-79.93191116, 32.779781997], "type": "Point"}, "id": "1298", "properties": {"Object ID": 573387868, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191116, 32.779781997, -79.93191116, 32.779781997], "geometry": {"coordinates": [-79.93191116, 32.779781997], "type": "Point"}, "id": "1299", "properties": {"Object ID": 573387872, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191116, 32.779781997, -79.93191116, 32.779781997], "geometry": {"coordinates": [-79.93191116, 32.779781997], "type": "Point"}, "id": "1300", "properties": {"Object ID": 573387874, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191116, 32.779781997, -79.93191116, 32.779781997], "geometry": {"coordinates": [-79.93191116, 32.779781997], "type": "Point"}, "id": "1301", "properties": {"Object ID": 573387876, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191116, 32.779781997, -79.93191116, 32.779781997], "geometry": {"coordinates": [-79.93191116, 32.779781997], "type": "Point"}, "id": "1302", "properties": {"Object ID": 573387878, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187083, 32.779462015, -79.93187083, 32.779462015], "geometry": {"coordinates": [-79.93187083, 32.779462015], "type": "Point"}, "id": "1303", "properties": {"Object ID": 573387880, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187083, 32.779462015, -79.93187083, 32.779462015], "geometry": {"coordinates": [-79.93187083, 32.779462015], "type": "Point"}, "id": "1304", "properties": {"Object ID": 573387885, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187083, 32.779462015, -79.93187083, 32.779462015], "geometry": {"coordinates": [-79.93187083, 32.779462015], "type": "Point"}, "id": "1305", "properties": {"Object ID": 573387888, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187083, 32.779462015, -79.93187083, 32.779462015], "geometry": {"coordinates": [-79.93187083, 32.779462015], "type": "Point"}, "id": "1306", "properties": {"Object ID": 573387894, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93293388, 32.779311996, -79.93293388, 32.779311996], "geometry": {"coordinates": [-79.93293388, 32.779311996], "type": "Point"}, "id": "1307", "properties": {"Object ID": 573387898, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93288339, 32.779521837, -79.93288339, 32.779521837], "geometry": {"coordinates": [-79.93288339, 32.779521837], "type": "Point"}, "id": "1308", "properties": {"Object ID": 573387900, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93208953, 32.780330062, -79.93208953, 32.780330062], "geometry": {"coordinates": [-79.93208953, 32.780330062], "type": "Point"}, "id": "1309", "properties": {"Object ID": 573387906, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93208953, 32.780330062, -79.93208953, 32.780330062], "geometry": {"coordinates": [-79.93208953, 32.780330062], "type": "Point"}, "id": "1310", "properties": {"Object ID": 573387908, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93208953, 32.780330062, -79.93208953, 32.780330062], "geometry": {"coordinates": [-79.93208953, 32.780330062], "type": "Point"}, "id": "1311", "properties": {"Object ID": 573387910, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93208953, 32.780330062, -79.93208953, 32.780330062], "geometry": {"coordinates": [-79.93208953, 32.780330062], "type": "Point"}, "id": "1312", "properties": {"Object ID": 573387912, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191667, 32.780486772, -79.93191667, 32.780486772], "geometry": {"coordinates": [-79.93191667, 32.780486772], "type": "Point"}, "id": "1313", "properties": {"Object ID": 573387918, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191667, 32.780486772, -79.93191667, 32.780486772], "geometry": {"coordinates": [-79.93191667, 32.780486772], "type": "Point"}, "id": "1314", "properties": {"Object ID": 573387922, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191667, 32.780486772, -79.93191667, 32.780486772], "geometry": {"coordinates": [-79.93191667, 32.780486772], "type": "Point"}, "id": "1315", "properties": {"Object ID": 573387924, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191667, 32.780486772, -79.93191667, 32.780486772], "geometry": {"coordinates": [-79.93191667, 32.780486772], "type": "Point"}, "id": "1316", "properties": {"Object ID": 573387926, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93147255, 32.782216093, -79.93147255, 32.782216093], "geometry": {"coordinates": [-79.93147255, 32.782216093], "type": "Point"}, "id": "1317", "properties": {"Object ID": 573475695, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029658, 32.778403404, -79.93029658, 32.778403404], "geometry": {"coordinates": [-79.93029658, 32.778403404], "type": "Point"}, "id": "1318", "properties": {"Object ID": 573783286, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.930667, 32.77875707, -79.930667, 32.77875707], "geometry": {"coordinates": [-79.930667, 32.77875707], "type": "Point"}, "id": "1319", "properties": {"Object ID": 573783301, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93112351, 32.779280644, -79.93112351, 32.779280644], "geometry": {"coordinates": [-79.93112351, 32.779280644], "type": "Point"}, "id": "1320", "properties": {"Object ID": 573783313, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93598329, 32.779587071, -79.93598329, 32.779587071], "geometry": {"coordinates": [-79.93598329, 32.779587071], "type": "Point"}, "id": "1321", "properties": {"Object ID": 573789126, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93136773, 32.78120541, -79.93136773, 32.78120541], "geometry": {"coordinates": [-79.93136773, 32.78120541], "type": "Point"}, "id": "1322", "properties": {"Object ID": 573831815, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93704671, 32.780246604, -79.93704671, 32.780246604], "geometry": {"coordinates": [-79.93704671, 32.780246604], "type": "Point"}, "id": "1323", "properties": {"Object ID": 573850811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93735004, 32.779713226, -79.93735004, 32.779713226], "geometry": {"coordinates": [-79.93735004, 32.779713226], "type": "Point"}, "id": "1324", "properties": {"Object ID": 574294735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93656366, 32.779805929, -79.93656366, 32.779805929], "geometry": {"coordinates": [-79.93656366, 32.779805929], "type": "Point"}, "id": "1325", "properties": {"Object ID": 574294737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93801118, 32.779802144, -79.93801118, 32.779802144], "geometry": {"coordinates": [-79.93801118, 32.779802144], "type": "Point"}, "id": "1326", "properties": {"Object ID": 574294813, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242442, 32.781970364, -79.93242442, 32.781970364], "geometry": {"coordinates": [-79.93242442, 32.781970364], "type": "Point"}, "id": "1327", "properties": {"Object ID": 574371538, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242442, 32.781970364, -79.93242442, 32.781970364], "geometry": {"coordinates": [-79.93242442, 32.781970364], "type": "Point"}, "id": "1328", "properties": {"Object ID": 574371544, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242442, 32.781970364, -79.93242442, 32.781970364], "geometry": {"coordinates": [-79.93242442, 32.781970364], "type": "Point"}, "id": "1329", "properties": {"Object ID": 574371546, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9326316, 32.781124507, -79.9326316, 32.781124507], "geometry": {"coordinates": [-79.9326316, 32.781124507], "type": "Point"}, "id": "1330", "properties": {"Object ID": 574371554, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93276684, 32.781806628, -79.93276684, 32.781806628], "geometry": {"coordinates": [-79.93276684, 32.781806628], "type": "Point"}, "id": "1331", "properties": {"Object ID": 574371559, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93258546, 32.781970217, -79.93258546, 32.781970217], "geometry": {"coordinates": [-79.93258546, 32.781970217], "type": "Point"}, "id": "1332", "properties": {"Object ID": 574371575, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93600432, 32.778566182, -79.93600432, 32.778566182], "geometry": {"coordinates": [-79.93600432, 32.778566182], "type": "Point"}, "id": "1333", "properties": {"Object ID": 574371777, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93586242, 32.778678371, -79.93586242, 32.778678371], "geometry": {"coordinates": [-79.93586242, 32.778678371], "type": "Point"}, "id": "1334", "properties": {"Object ID": 574371787, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93543226, 32.778704167, -79.93543226, 32.778704167], "geometry": {"coordinates": [-79.93543226, 32.778704167], "type": "Point"}, "id": "1335", "properties": {"Object ID": 574371791, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93327766, 32.779045709, -79.93327766, 32.779045709], "geometry": {"coordinates": [-79.93327766, 32.779045709], "type": "Point"}, "id": "1336", "properties": {"Object ID": 574421815, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93463445, 32.779732623, -79.93463445, 32.779732623], "geometry": {"coordinates": [-79.93463445, 32.779732623], "type": "Point"}, "id": "1337", "properties": {"Object ID": 574446509, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9342548, 32.779930537, -79.9342548, 32.779930537], "geometry": {"coordinates": [-79.9342548, 32.779930537], "type": "Point"}, "id": "1338", "properties": {"Object ID": 574446517, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93396619, 32.779526363, -79.93396619, 32.779526363], "geometry": {"coordinates": [-79.93396619, 32.779526363], "type": "Point"}, "id": "1339", "properties": {"Object ID": 574446525, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93385777, 32.779260347, -79.93385777, 32.779260347], "geometry": {"coordinates": [-79.93385777, 32.779260347], "type": "Point"}, "id": "1340", "properties": {"Object ID": 574446539, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93378849, 32.779266023, -79.93378849, 32.779266023], "geometry": {"coordinates": [-79.93378849, 32.779266023], "type": "Point"}, "id": "1341", "properties": {"Object ID": 574446545, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "1342", "properties": {"Object ID": 574447800, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "1343", "properties": {"Object ID": 574447811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93370546, 32.780669368, -79.93370546, 32.780669368], "geometry": {"coordinates": [-79.93370546, 32.780669368], "type": "Point"}, "id": "1344", "properties": {"Object ID": 574447822, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93411816, 32.780945961, -79.93411816, 32.780945961], "geometry": {"coordinates": [-79.93411816, 32.780945961], "type": "Point"}, "id": "1345", "properties": {"Object ID": 574447828, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93057458, 32.779847015, -79.93057458, 32.779847015], "geometry": {"coordinates": [-79.93057458, 32.779847015], "type": "Point"}, "id": "1346", "properties": {"Object ID": 574451487, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93092389, 32.780416852, -79.93092389, 32.780416852], "geometry": {"coordinates": [-79.93092389, 32.780416852], "type": "Point"}, "id": "1347", "properties": {"Object ID": 574451491, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93092389, 32.780416852, -79.93092389, 32.780416852], "geometry": {"coordinates": [-79.93092389, 32.780416852], "type": "Point"}, "id": "1348", "properties": {"Object ID": 574451492, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93092389, 32.780416852, -79.93092389, 32.780416852], "geometry": {"coordinates": [-79.93092389, 32.780416852], "type": "Point"}, "id": "1349", "properties": {"Object ID": 574451495, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93087903, 32.780089433, -79.93087903, 32.780089433], "geometry": {"coordinates": [-79.93087903, 32.780089433], "type": "Point"}, "id": "1350", "properties": {"Object ID": 574451499, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93087903, 32.780089433, -79.93087903, 32.780089433], "geometry": {"coordinates": [-79.93087903, 32.780089433], "type": "Point"}, "id": "1351", "properties": {"Object ID": 574451500, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93401099, 32.780256033, -79.93401099, 32.780256033], "geometry": {"coordinates": [-79.93401099, 32.780256033], "type": "Point"}, "id": "1352", "properties": {"Object ID": 574455889, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93401099, 32.780256033, -79.93401099, 32.780256033], "geometry": {"coordinates": [-79.93401099, 32.780256033], "type": "Point"}, "id": "1353", "properties": {"Object ID": 574455890, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93355205, 32.781223407, -79.93355205, 32.781223407], "geometry": {"coordinates": [-79.93355205, 32.781223407], "type": "Point"}, "id": "1354", "properties": {"Object ID": 574460931, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93305405, 32.781484465, -79.93305405, 32.781484465], "geometry": {"coordinates": [-79.93305405, 32.781484465], "type": "Point"}, "id": "1355", "properties": {"Object ID": 574460937, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93285367, 32.781098819, -79.93285367, 32.781098819], "geometry": {"coordinates": [-79.93285367, 32.781098819], "type": "Point"}, "id": "1356", "properties": {"Object ID": 574460939, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93420524, 32.779937346, -79.93420524, 32.779937346], "geometry": {"coordinates": [-79.93420524, 32.779937346], "type": "Point"}, "id": "1357", "properties": {"Object ID": 574460945, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93395183, 32.779269382, -79.93395183, 32.779269382], "geometry": {"coordinates": [-79.93395183, 32.779269382], "type": "Point"}, "id": "1358", "properties": {"Object ID": 574460953, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93289545, 32.779879272, -79.93289545, 32.779879272], "geometry": {"coordinates": [-79.93289545, 32.779879272], "type": "Point"}, "id": "1359", "properties": {"Object ID": 574460957, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9357483, 32.779531488, -79.9357483, 32.779531488], "geometry": {"coordinates": [-79.9357483, 32.779531488], "type": "Point"}, "id": "1360", "properties": {"Object ID": 574486981, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93503717, 32.779666462, -79.93503717, 32.779666462], "geometry": {"coordinates": [-79.93503717, 32.779666462], "type": "Point"}, "id": "1361", "properties": {"Object ID": 574486991, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93341863, 32.778558501, -79.93341863, 32.778558501], "geometry": {"coordinates": [-79.93341863, 32.778558501], "type": "Point"}, "id": "1362", "properties": {"Object ID": 574487008, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "1363", "properties": {"Object ID": 574487016, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "1364", "properties": {"Object ID": 574487023, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681104, 32.778289954, -79.92681104, 32.778289954], "geometry": {"coordinates": [-79.92681104, 32.778289954], "type": "Point"}, "id": "1365", "properties": {"Object ID": 573407534, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92913919, 32.780523417, -79.92913919, 32.780523417], "geometry": {"coordinates": [-79.92913919, 32.780523417], "type": "Point"}, "id": "1366", "properties": {"Object ID": 573463564, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92975035, 32.782570197, -79.92975035, 32.782570197], "geometry": {"coordinates": [-79.92975035, 32.782570197], "type": "Point"}, "id": "1367", "properties": {"Object ID": 573467955, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92968011, 32.782808334, -79.92968011, 32.782808334], "geometry": {"coordinates": [-79.92968011, 32.782808334], "type": "Point"}, "id": "1368", "properties": {"Object ID": 573467960, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92971968, 32.782868734, -79.92971968, 32.782868734], "geometry": {"coordinates": [-79.92971968, 32.782868734], "type": "Point"}, "id": "1369", "properties": {"Object ID": 573467961, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92976628, 32.7829352, -79.92976628, 32.7829352], "geometry": {"coordinates": [-79.92976628, 32.7829352], "type": "Point"}, "id": "1370", "properties": {"Object ID": 573467964, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92828742, 32.778875554, -79.92828742, 32.778875554], "geometry": {"coordinates": [-79.92828742, 32.778875554], "type": "Point"}, "id": "1371", "properties": {"Object ID": 573782391, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92887058, 32.78191093, -79.92887058, 32.78191093], "geometry": {"coordinates": [-79.92887058, 32.78191093], "type": "Point"}, "id": "1372", "properties": {"Object ID": 573782460, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.928426, 32.782048005, -79.928426, 32.782048005], "geometry": {"coordinates": [-79.928426, 32.782048005], "type": "Point"}, "id": "1373", "properties": {"Object ID": 573782474, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92981909, 32.778397581, -79.92981909, 32.778397581], "geometry": {"coordinates": [-79.92981909, 32.778397581], "type": "Point"}, "id": "1374", "properties": {"Object ID": 573783280, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93002133, 32.779324182, -79.93002133, 32.779324182], "geometry": {"coordinates": [-79.93002133, 32.779324182], "type": "Point"}, "id": "1375", "properties": {"Object ID": 573783305, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92868467, 32.782475631, -79.92868467, 32.782475631], "geometry": {"coordinates": [-79.92868467, 32.782475631], "type": "Point"}, "id": "1376", "properties": {"Object ID": 573827774, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92855501, 32.78251713, -79.92855501, 32.78251713], "geometry": {"coordinates": [-79.92855501, 32.78251713], "type": "Point"}, "id": "1377", "properties": {"Object ID": 573827776, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92888718, 32.783025097, -79.92888718, 32.783025097], "geometry": {"coordinates": [-79.92888718, 32.783025097], "type": "Point"}, "id": "1378", "properties": {"Object ID": 573827788, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92692669, 32.78147486, -79.92692669, 32.78147486], "geometry": {"coordinates": [-79.92692669, 32.78147486], "type": "Point"}, "id": "1379", "properties": {"Object ID": 574267588, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92682845, 32.782317397, -79.92682845, 32.782317397], "geometry": {"coordinates": [-79.92682845, 32.782317397], "type": "Point"}, "id": "1380", "properties": {"Object ID": 574267600, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92682845, 32.782317397, -79.92682845, 32.782317397], "geometry": {"coordinates": [-79.92682845, 32.782317397], "type": "Point"}, "id": "1381", "properties": {"Object ID": 574267602, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92682845, 32.782317397, -79.92682845, 32.782317397], "geometry": {"coordinates": [-79.92682845, 32.782317397], "type": "Point"}, "id": "1382", "properties": {"Object ID": 574267604, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92682845, 32.782317397, -79.92682845, 32.782317397], "geometry": {"coordinates": [-79.92682845, 32.782317397], "type": "Point"}, "id": "1383", "properties": {"Object ID": 574267606, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92859461, 32.780244674, -79.92859461, 32.780244674], "geometry": {"coordinates": [-79.92859461, 32.780244674], "type": "Point"}, "id": "1384", "properties": {"Object ID": 574268039, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92859461, 32.780244674, -79.92859461, 32.780244674], "geometry": {"coordinates": [-79.92859461, 32.780244674], "type": "Point"}, "id": "1385", "properties": {"Object ID": 574268041, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92859461, 32.780244674, -79.92859461, 32.780244674], "geometry": {"coordinates": [-79.92859461, 32.780244674], "type": "Point"}, "id": "1386", "properties": {"Object ID": 574268045, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9291748, 32.780046684, -79.9291748, 32.780046684], "geometry": {"coordinates": [-79.9291748, 32.780046684], "type": "Point"}, "id": "1387", "properties": {"Object ID": 574268051, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9291748, 32.780046684, -79.9291748, 32.780046684], "geometry": {"coordinates": [-79.9291748, 32.780046684], "type": "Point"}, "id": "1388", "properties": {"Object ID": 574268053, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9291748, 32.780046684, -79.9291748, 32.780046684], "geometry": {"coordinates": [-79.9291748, 32.780046684], "type": "Point"}, "id": "1389", "properties": {"Object ID": 574268057, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92739084, 32.779499094, -79.92739084, 32.779499094], "geometry": {"coordinates": [-79.92739084, 32.779499094], "type": "Point"}, "id": "1390", "properties": {"Object ID": 574371445, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92803347, 32.77943033, -79.92803347, 32.77943033], "geometry": {"coordinates": [-79.92803347, 32.77943033], "type": "Point"}, "id": "1391", "properties": {"Object ID": 574371447, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92476988, 32.780379241, -79.92476988, 32.780379241], "geometry": {"coordinates": [-79.92476988, 32.780379241], "type": "Point"}, "id": "1392", "properties": {"Object ID": 574372312, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "1393", "properties": {"Object ID": 574372402, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587587, 32.778685767, -79.92587587, 32.778685767], "geometry": {"coordinates": [-79.92587587, 32.778685767], "type": "Point"}, "id": "1394", "properties": {"Object ID": 574421612, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92883682, 32.778518011, -79.92883682, 32.778518011], "geometry": {"coordinates": [-79.92883682, 32.778518011], "type": "Point"}, "id": "1395", "properties": {"Object ID": 574446463, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92744911, 32.778311544, -79.92744911, 32.778311544], "geometry": {"coordinates": [-79.92744911, 32.778311544], "type": "Point"}, "id": "1396", "properties": {"Object ID": 574446477, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92643612, 32.780279013, -79.92643612, 32.780279013], "geometry": {"coordinates": [-79.92643612, 32.780279013], "type": "Point"}, "id": "1397", "properties": {"Object ID": 574451297, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92927368, 32.780925182, -79.92927368, 32.780925182], "geometry": {"coordinates": [-79.92927368, 32.780925182], "type": "Point"}, "id": "1398", "properties": {"Object ID": 574451456, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "1399", "properties": {"Object ID": 574451478, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "1400", "properties": {"Object ID": 574451479, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92789056, 32.781058865, -79.92789056, 32.781058865], "geometry": {"coordinates": [-79.92789056, 32.781058865], "type": "Point"}, "id": "1401", "properties": {"Object ID": 574451869, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92656424, 32.778612183, -79.92656424, 32.778612183], "geometry": {"coordinates": [-79.92656424, 32.778612183], "type": "Point"}, "id": "1402", "properties": {"Object ID": 574457057, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92995578, 32.780593928, -79.92995578, 32.780593928], "geometry": {"coordinates": [-79.92995578, 32.780593928], "type": "Point"}, "id": "1403", "properties": {"Object ID": 574461013, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93005522, 32.780237264, -79.93005522, 32.780237264], "geometry": {"coordinates": [-79.93005522, 32.780237264], "type": "Point"}, "id": "1404", "properties": {"Object ID": 574461021, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9278853, 32.779870634, -79.9278853, 32.779870634], "geometry": {"coordinates": [-79.9278853, 32.779870634], "type": "Point"}, "id": "1405", "properties": {"Object ID": 574461029, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92738581, 32.77970087, -79.92738581, 32.77970087], "geometry": {"coordinates": [-79.92738581, 32.77970087], "type": "Point"}, "id": "1406", "properties": {"Object ID": 574461287, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "1407", "properties": {"Object ID": 574488426, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92839272, 32.779026569, -79.92839272, 32.779026569], "geometry": {"coordinates": [-79.92839272, 32.779026569], "type": "Point"}, "id": "1408", "properties": {"Object ID": 574488678, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92954131, 32.778528978, -79.92954131, 32.778528978], "geometry": {"coordinates": [-79.92954131, 32.778528978], "type": "Point"}, "id": "1409", "properties": {"Object ID": 574488683, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92828968, 32.778609691, -79.92828968, 32.778609691], "geometry": {"coordinates": [-79.92828968, 32.778609691], "type": "Point"}, "id": "1410", "properties": {"Object ID": 574488687, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "1411", "properties": {"Object ID": 574488695, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "1412", "properties": {"Object ID": 574488697, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "1413", "properties": {"Object ID": 574488698, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92820274, 32.778662139, -79.92820274, 32.778662139], "geometry": {"coordinates": [-79.92820274, 32.778662139], "type": "Point"}, "id": "1414", "properties": {"Object ID": 574488708, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "1415", "properties": {"Object ID": 574488718, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93005403, 32.77324804, -79.93005403, 32.77324804], "geometry": {"coordinates": [-79.93005403, 32.77324804], "type": "Point"}, "id": "1416", "properties": {"Object ID": 573782600, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.929988, 32.7731275, -79.929988, 32.7731275], "geometry": {"coordinates": [-79.929988, 32.7731275], "type": "Point"}, "id": "1417", "properties": {"Object ID": 573782604, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93035753, 32.772832711, -79.93035753, 32.772832711], "geometry": {"coordinates": [-79.93035753, 32.772832711], "type": "Point"}, "id": "1418", "properties": {"Object ID": 573782582, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92968705, 32.773486552, -79.92968705, 32.773486552], "geometry": {"coordinates": [-79.92968705, 32.773486552], "type": "Point"}, "id": "1419", "properties": {"Object ID": 573783142, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93035212, 32.77359656, -79.93035212, 32.77359656], "geometry": {"coordinates": [-79.93035212, 32.77359656], "type": "Point"}, "id": "1420", "properties": {"Object ID": 573783146, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9304745, 32.774210317, -79.9304745, 32.774210317], "geometry": {"coordinates": [-79.9304745, 32.774210317], "type": "Point"}, "id": "1421", "properties": {"Object ID": 573783156, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92999374, 32.774658193, -79.92999374, 32.774658193], "geometry": {"coordinates": [-79.92999374, 32.774658193], "type": "Point"}, "id": "1422", "properties": {"Object ID": 573783191, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92985915, 32.774718141, -79.92985915, 32.774718141], "geometry": {"coordinates": [-79.92985915, 32.774718141], "type": "Point"}, "id": "1423", "properties": {"Object ID": 573783193, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92972636, 32.77472706, -79.92972636, 32.77472706], "geometry": {"coordinates": [-79.92972636, 32.77472706], "type": "Point"}, "id": "1424", "properties": {"Object ID": 573783195, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92999255, 32.778560384, -79.92999255, 32.778560384], "geometry": {"coordinates": [-79.92999255, 32.778560384], "type": "Point"}, "id": "1425", "properties": {"Object ID": 573783288, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93094355, 32.778464521, -79.93094355, 32.778464521], "geometry": {"coordinates": [-79.93094355, 32.778464521], "type": "Point"}, "id": "1426", "properties": {"Object ID": 573783295, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93008018, 32.779441212, -79.93008018, 32.779441212], "geometry": {"coordinates": [-79.93008018, 32.779441212], "type": "Point"}, "id": "1427", "properties": {"Object ID": 573783317, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93049453, 32.777679672, -79.93049453, 32.777679672], "geometry": {"coordinates": [-79.93049453, 32.777679672], "type": "Point"}, "id": "1428", "properties": {"Object ID": 573783341, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93097044, 32.777869364, -79.93097044, 32.777869364], "geometry": {"coordinates": [-79.93097044, 32.777869364], "type": "Point"}, "id": "1429", "properties": {"Object ID": 573783347, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93065525, 32.777943181, -79.93065525, 32.777943181], "geometry": {"coordinates": [-79.93065525, 32.777943181], "type": "Point"}, "id": "1430", "properties": {"Object ID": 573783349, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92960926, 32.778025075, -79.92960926, 32.778025075], "geometry": {"coordinates": [-79.92960926, 32.778025075], "type": "Point"}, "id": "1431", "properties": {"Object ID": 573783355, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92983308, 32.777886226, -79.92983308, 32.777886226], "geometry": {"coordinates": [-79.92983308, 32.777886226], "type": "Point"}, "id": "1432", "properties": {"Object ID": 573783357, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92991341, 32.770870666, -79.92991341, 32.770870666], "geometry": {"coordinates": [-79.92991341, 32.770870666], "type": "Point"}, "id": "1433", "properties": {"Object ID": 573783411, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93010077, 32.770889895, -79.93010077, 32.770889895], "geometry": {"coordinates": [-79.93010077, 32.770889895], "type": "Point"}, "id": "1434", "properties": {"Object ID": 573783413, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92960692, 32.770433827, -79.92960692, 32.770433827], "geometry": {"coordinates": [-79.92960692, 32.770433827], "type": "Point"}, "id": "1435", "properties": {"Object ID": 573783415, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93002946, 32.771528793, -79.93002946, 32.771528793], "geometry": {"coordinates": [-79.93002946, 32.771528793], "type": "Point"}, "id": "1436", "properties": {"Object ID": 573783437, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9309266, 32.772982975, -79.9309266, 32.772982975], "geometry": {"coordinates": [-79.9309266, 32.772982975], "type": "Point"}, "id": "1437", "properties": {"Object ID": 573785641, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93094521, 32.773453754, -79.93094521, 32.773453754], "geometry": {"coordinates": [-79.93094521, 32.773453754], "type": "Point"}, "id": "1438", "properties": {"Object ID": 573785671, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93113756, 32.773595724, -79.93113756, 32.773595724], "geometry": {"coordinates": [-79.93113756, 32.773595724], "type": "Point"}, "id": "1439", "properties": {"Object ID": 573785681, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92972682, 32.776806657, -79.92972682, 32.776806657], "geometry": {"coordinates": [-79.92972682, 32.776806657], "type": "Point"}, "id": "1440", "properties": {"Object ID": 573827744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93090297, 32.777247689, -79.93090297, 32.777247689], "geometry": {"coordinates": [-79.93090297, 32.777247689], "type": "Point"}, "id": "1441", "properties": {"Object ID": 573827764, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9299812, 32.777132109, -79.9299812, 32.777132109], "geometry": {"coordinates": [-79.9299812, 32.777132109], "type": "Point"}, "id": "1442", "properties": {"Object ID": 573827767, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93101707, 32.774974017, -79.93101707, 32.774974017], "geometry": {"coordinates": [-79.93101707, 32.774974017], "type": "Point"}, "id": "1443", "properties": {"Object ID": 573831660, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93099317, 32.774783956, -79.93099317, 32.774783956], "geometry": {"coordinates": [-79.93099317, 32.774783956], "type": "Point"}, "id": "1444", "properties": {"Object ID": 573831683, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93123444, 32.774908892, -79.93123444, 32.774908892], "geometry": {"coordinates": [-79.93123444, 32.774908892], "type": "Point"}, "id": "1445", "properties": {"Object ID": 573831701, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93123444, 32.774908892, -79.93123444, 32.774908892], "geometry": {"coordinates": [-79.93123444, 32.774908892], "type": "Point"}, "id": "1446", "properties": {"Object ID": 573831703, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93120313, 32.771908318, -79.93120313, 32.771908318], "geometry": {"coordinates": [-79.93120313, 32.771908318], "type": "Point"}, "id": "1447", "properties": {"Object ID": 574268215, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93069143, 32.772115719, -79.93069143, 32.772115719], "geometry": {"coordinates": [-79.93069143, 32.772115719], "type": "Point"}, "id": "1448", "properties": {"Object ID": 574268227, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93077705, 32.77226974, -79.93077705, 32.77226974], "geometry": {"coordinates": [-79.93077705, 32.77226974], "type": "Point"}, "id": "1449", "properties": {"Object ID": 574268233, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93116856, 32.7739649, -79.93116856, 32.7739649], "geometry": {"coordinates": [-79.93116856, 32.7739649], "type": "Point"}, "id": "1450", "properties": {"Object ID": 574293783, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93018554, 32.774930128, -79.93018554, 32.774930128], "geometry": {"coordinates": [-79.93018554, 32.774930128], "type": "Point"}, "id": "1451", "properties": {"Object ID": 574346732, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93028654, 32.774926278, -79.93028654, 32.774926278], "geometry": {"coordinates": [-79.93028654, 32.774926278], "type": "Point"}, "id": "1452", "properties": {"Object ID": 574346734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93042833, 32.774908289, -79.93042833, 32.774908289], "geometry": {"coordinates": [-79.93042833, 32.774908289], "type": "Point"}, "id": "1453", "properties": {"Object ID": 574346735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93033564, 32.775791754, -79.93033564, 32.775791754], "geometry": {"coordinates": [-79.93033564, 32.775791754], "type": "Point"}, "id": "1454", "properties": {"Object ID": 574346754, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93005346, 32.77625511, -79.93005346, 32.77625511], "geometry": {"coordinates": [-79.93005346, 32.77625511], "type": "Point"}, "id": "1455", "properties": {"Object ID": 574372523, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92966224, 32.77604809, -79.92966224, 32.77604809], "geometry": {"coordinates": [-79.92966224, 32.77604809], "type": "Point"}, "id": "1456", "properties": {"Object ID": 574372527, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92966224, 32.77604809, -79.92966224, 32.77604809], "geometry": {"coordinates": [-79.92966224, 32.77604809], "type": "Point"}, "id": "1457", "properties": {"Object ID": 574372531, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93074816, 32.77631412, -79.93074816, 32.77631412], "geometry": {"coordinates": [-79.93074816, 32.77631412], "type": "Point"}, "id": "1458", "properties": {"Object ID": 574372551, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93119192, 32.771465967, -79.93119192, 32.771465967], "geometry": {"coordinates": [-79.93119192, 32.771465967], "type": "Point"}, "id": "1459", "properties": {"Object ID": 574372719, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93126436, 32.771596841, -79.93126436, 32.771596841], "geometry": {"coordinates": [-79.93126436, 32.771596841], "type": "Point"}, "id": "1460", "properties": {"Object ID": 574372731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9299647, 32.777106362, -79.9299647, 32.777106362], "geometry": {"coordinates": [-79.9299647, 32.777106362], "type": "Point"}, "id": "1461", "properties": {"Object ID": 574461054, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9297417, 32.776818232, -79.9297417, 32.776818232], "geometry": {"coordinates": [-79.9297417, 32.776818232], "type": "Point"}, "id": "1462", "properties": {"Object ID": 574461069, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92984364, 32.776348356, -79.92984364, 32.776348356], "geometry": {"coordinates": [-79.92984364, 32.776348356], "type": "Point"}, "id": "1463", "properties": {"Object ID": 574461071, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93118436, 32.773859045, -79.93118436, 32.773859045], "geometry": {"coordinates": [-79.93118436, 32.773859045], "type": "Point"}, "id": "1464", "properties": {"Object ID": 574486898, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93057638, 32.77489169, -79.93057638, 32.77489169], "geometry": {"coordinates": [-79.93057638, 32.77489169], "type": "Point"}, "id": "1465", "properties": {"Object ID": 574486900, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93054043, 32.774049999, -79.93054043, 32.774049999], "geometry": {"coordinates": [-79.93054043, 32.774049999], "type": "Point"}, "id": "1466", "properties": {"Object ID": 574486904, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "1467", "properties": {"Object ID": 574487019, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "1468", "properties": {"Object ID": 574487021, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "1469", "properties": {"Object ID": 574487027, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93099298, 32.777963075, -79.93099298, 32.777963075], "geometry": {"coordinates": [-79.93099298, 32.777963075], "type": "Point"}, "id": "1470", "properties": {"Object ID": 574487099, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92998285, 32.777991927, -79.92998285, 32.777991927], "geometry": {"coordinates": [-79.92998285, 32.777991927], "type": "Point"}, "id": "1471", "properties": {"Object ID": 574487103, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9295985, 32.777773831, -79.9295985, 32.777773831], "geometry": {"coordinates": [-79.9295985, 32.777773831], "type": "Point"}, "id": "1472", "properties": {"Object ID": 574488765, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93825076, 32.772566349, -79.93825076, 32.772566349], "geometry": {"coordinates": [-79.93825076, 32.772566349], "type": "Point"}, "id": "1473", "properties": {"Object ID": 573789687, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94279517, 32.773094927, -79.94279517, 32.773094927], "geometry": {"coordinates": [-79.94279517, 32.773094927], "type": "Point"}, "id": "1474", "properties": {"Object ID": 573800734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93621845, 32.771937653, -79.93621845, 32.771937653], "geometry": {"coordinates": [-79.93621845, 32.771937653], "type": "Point"}, "id": "1475", "properties": {"Object ID": 573850061, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9340731, 32.771696531, -79.9340731, 32.771696531], "geometry": {"coordinates": [-79.9340731, 32.771696531], "type": "Point"}, "id": "1476", "properties": {"Object ID": 574268694, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93718549, 32.770551431, -79.93718549, 32.770551431], "geometry": {"coordinates": [-79.93718549, 32.770551431], "type": "Point"}, "id": "1477", "properties": {"Object ID": 574294750, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9409813, 32.7725674, -79.9409813, 32.7725674], "geometry": {"coordinates": [-79.9409813, 32.7725674], "type": "Point"}, "id": "1478", "properties": {"Object ID": 574296103, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93967324, 32.772787928, -79.93967324, 32.772787928], "geometry": {"coordinates": [-79.93967324, 32.772787928], "type": "Point"}, "id": "1479", "properties": {"Object ID": 574372040, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93956678, 32.772372292, -79.93956678, 32.772372292], "geometry": {"coordinates": [-79.93956678, 32.772372292], "type": "Point"}, "id": "1480", "properties": {"Object ID": 574372042, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93677602, 32.772289822, -79.93677602, 32.772289822], "geometry": {"coordinates": [-79.93677602, 32.772289822], "type": "Point"}, "id": "1481", "properties": {"Object ID": 574371894, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93818311, 32.772170113, -79.93818311, 32.772170113], "geometry": {"coordinates": [-79.93818311, 32.772170113], "type": "Point"}, "id": "1482", "properties": {"Object ID": 574373115, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93971856, 32.771505285, -79.93971856, 32.771505285], "geometry": {"coordinates": [-79.93971856, 32.771505285], "type": "Point"}, "id": "1483", "properties": {"Object ID": 574421859, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1484", "properties": {"Object ID": 574476734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1485", "properties": {"Object ID": 574476800, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1486", "properties": {"Object ID": 574476808, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93133148, 32.771521871, -79.93133148, 32.771521871], "geometry": {"coordinates": [-79.93133148, 32.771521871], "type": "Point"}, "id": "1487", "properties": {"Object ID": 574486918, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93438481, 32.775443603, -79.93438481, 32.775443603], "geometry": {"coordinates": [-79.93438481, 32.775443603], "type": "Point"}, "id": "1488", "properties": {"Object ID": 573475716, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92792634, 32.773819458, -79.92792634, 32.773819458], "geometry": {"coordinates": [-79.92792634, 32.773819458], "type": "Point"}, "id": "1489", "properties": {"Object ID": 573779299, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92876632, 32.773883945, -79.92876632, 32.773883945], "geometry": {"coordinates": [-79.92876632, 32.773883945], "type": "Point"}, "id": "1490", "properties": {"Object ID": 573779349, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93123631, 32.772723921, -79.93123631, 32.772723921], "geometry": {"coordinates": [-79.93123631, 32.772723921], "type": "Point"}, "id": "1491", "properties": {"Object ID": 573785631, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93080597, 32.772842451, -79.93080597, 32.772842451], "geometry": {"coordinates": [-79.93080597, 32.772842451], "type": "Point"}, "id": "1492", "properties": {"Object ID": 573785635, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93373462, 32.774283442, -79.93373462, 32.774283442], "geometry": {"coordinates": [-79.93373462, 32.774283442], "type": "Point"}, "id": "1493", "properties": {"Object ID": 573785974, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93433877, 32.773026799, -79.93433877, 32.773026799], "geometry": {"coordinates": [-79.93433877, 32.773026799], "type": "Point"}, "id": "1494", "properties": {"Object ID": 573789022, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93565769, 32.773961659, -79.93565769, 32.773961659], "geometry": {"coordinates": [-79.93565769, 32.773961659], "type": "Point"}, "id": "1495", "properties": {"Object ID": 573789036, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93828855, 32.773444779, -79.93828855, 32.773444779], "geometry": {"coordinates": [-79.93828855, 32.773444779], "type": "Point"}, "id": "1496", "properties": {"Object ID": 573789721, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94006169, 32.773782417, -79.94006169, 32.773782417], "geometry": {"coordinates": [-79.94006169, 32.773782417], "type": "Point"}, "id": "1497", "properties": {"Object ID": 573795538, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9414963, 32.772793567, -79.9414963, 32.772793567], "geometry": {"coordinates": [-79.9414963, 32.772793567], "type": "Point"}, "id": "1498", "properties": {"Object ID": 573800724, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93230155, 32.774620289, -79.93230155, 32.774620289], "geometry": {"coordinates": [-79.93230155, 32.774620289], "type": "Point"}, "id": "1499", "properties": {"Object ID": 573831662, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93641555, 32.773269442, -79.93641555, 32.773269442], "geometry": {"coordinates": [-79.93641555, 32.773269442], "type": "Point"}, "id": "1500", "properties": {"Object ID": 573850094, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94006266, 32.773440656, -79.94006266, 32.773440656], "geometry": {"coordinates": [-79.94006266, 32.773440656], "type": "Point"}, "id": "1501", "properties": {"Object ID": 573860098, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93777101, 32.775010988, -79.93777101, 32.775010988], "geometry": {"coordinates": [-79.93777101, 32.775010988], "type": "Point"}, "id": "1502", "properties": {"Object ID": 574269186, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141633, 32.773180776, -79.94141633, 32.773180776], "geometry": {"coordinates": [-79.94141633, 32.773180776], "type": "Point"}, "id": "1503", "properties": {"Object ID": 574270734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938979, 32.776111957, -79.92938979, 32.776111957], "geometry": {"coordinates": [-79.92938979, 32.776111957], "type": "Point"}, "id": "1504", "properties": {"Object ID": 574372559, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "1505", "properties": {"Object ID": 574486775, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "1506", "properties": {"Object ID": 574486816, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93218159, 32.775506556, -79.93218159, 32.775506556], "geometry": {"coordinates": [-79.93218159, 32.775506556], "type": "Point"}, "id": "1507", "properties": {"Object ID": 574486890, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9275034, 32.775239754, -79.9275034, 32.775239754], "geometry": {"coordinates": [-79.9275034, 32.775239754], "type": "Point"}, "id": "1508", "properties": {"Object ID": 574488846, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92683952, 32.77534394, -79.92683952, 32.77534394], "geometry": {"coordinates": [-79.92683952, 32.77534394], "type": "Point"}, "id": "1509", "properties": {"Object ID": 574488857, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92820141, 32.77829234, -79.92820141, 32.77829234], "geometry": {"coordinates": [-79.92820141, 32.77829234], "type": "Point"}, "id": "1510", "properties": {"Object ID": 573782506, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93725354, 32.777128648, -79.93725354, 32.777128648], "geometry": {"coordinates": [-79.93725354, 32.777128648], "type": "Point"}, "id": "1511", "properties": {"Object ID": 574268946, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9389859, 32.777964172, -79.9389859, 32.777964172], "geometry": {"coordinates": [-79.9389859, 32.777964172], "type": "Point"}, "id": "1512", "properties": {"Object ID": 574269307, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93474207, 32.777751789, -79.93474207, 32.777751789], "geometry": {"coordinates": [-79.93474207, 32.777751789], "type": "Point"}, "id": "1513", "properties": {"Object ID": 574371761, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542686, 32.778094108, -79.93542686, 32.778094108], "geometry": {"coordinates": [-79.93542686, 32.778094108], "type": "Point"}, "id": "1514", "properties": {"Object ID": 574371771, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93270804, 32.778062275, -79.93270804, 32.778062275], "geometry": {"coordinates": [-79.93270804, 32.778062275], "type": "Point"}, "id": "1515", "properties": {"Object ID": 574460967, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92894188, 32.777506624, -79.92894188, 32.777506624], "geometry": {"coordinates": [-79.92894188, 32.777506624], "type": "Point"}, "id": "1516", "properties": {"Object ID": 574461056, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92722124, 32.778240325, -79.92722124, 32.778240325], "geometry": {"coordinates": [-79.92722124, 32.778240325], "type": "Point"}, "id": "1517", "properties": {"Object ID": 574461301, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.945115, 32.777017559, -79.945115, 32.777017559], "geometry": {"coordinates": [-79.945115, 32.777017559], "type": "Point"}, "id": "1518", "properties": {"Object ID": 573807484, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94498354, 32.776730046, -79.94498354, 32.776730046], "geometry": {"coordinates": [-79.94498354, 32.776730046], "type": "Point"}, "id": "1519", "properties": {"Object ID": 574422154, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "1520", "properties": {"Object ID": 574488676, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93370953, 32.774604353, -79.93370953, 32.774604353], "geometry": {"coordinates": [-79.93370953, 32.774604353], "type": "Point"}, "id": "1521", "properties": {"Object ID": 573475703, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93431994, 32.774694143, -79.93431994, 32.774694143], "geometry": {"coordinates": [-79.93431994, 32.774694143], "type": "Point"}, "id": "1522", "properties": {"Object ID": 573475704, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93433075, 32.774823148, -79.93433075, 32.774823148], "geometry": {"coordinates": [-79.93433075, 32.774823148], "type": "Point"}, "id": "1523", "properties": {"Object ID": 573475706, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93435745, 32.774935229, -79.93435745, 32.774935229], "geometry": {"coordinates": [-79.93435745, 32.774935229], "type": "Point"}, "id": "1524", "properties": {"Object ID": 573475707, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93416017, 32.775455442, -79.93416017, 32.775455442], "geometry": {"coordinates": [-79.93416017, 32.775455442], "type": "Point"}, "id": "1525", "properties": {"Object ID": 573475715, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93440606, 32.775688852, -79.93440606, 32.775688852], "geometry": {"coordinates": [-79.93440606, 32.775688852], "type": "Point"}, "id": "1526", "properties": {"Object ID": 573475720, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93440606, 32.775688852, -79.93440606, 32.775688852], "geometry": {"coordinates": [-79.93440606, 32.775688852], "type": "Point"}, "id": "1527", "properties": {"Object ID": 573475721, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93378161, 32.77292716, -79.93378161, 32.77292716], "geometry": {"coordinates": [-79.93378161, 32.77292716], "type": "Point"}, "id": "1528", "properties": {"Object ID": 573785919, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93537271, 32.772004267, -79.93537271, 32.772004267], "geometry": {"coordinates": [-79.93537271, 32.772004267], "type": "Point"}, "id": "1529", "properties": {"Object ID": 573789003, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93408022, 32.772094735, -79.93408022, 32.772094735], "geometry": {"coordinates": [-79.93408022, 32.772094735], "type": "Point"}, "id": "1530", "properties": {"Object ID": 573789005, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93523778, 32.772259994, -79.93523778, 32.772259994], "geometry": {"coordinates": [-79.93523778, 32.772259994], "type": "Point"}, "id": "1531", "properties": {"Object ID": 573789008, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93781728, 32.773331009, -79.93781728, 32.773331009], "geometry": {"coordinates": [-79.93781728, 32.773331009], "type": "Point"}, "id": "1532", "properties": {"Object ID": 573789239, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93793231, 32.773675936, -79.93793231, 32.773675936], "geometry": {"coordinates": [-79.93793231, 32.773675936], "type": "Point"}, "id": "1533", "properties": {"Object ID": 573789246, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93504046, 32.772231457, -79.93504046, 32.772231457], "geometry": {"coordinates": [-79.93504046, 32.772231457], "type": "Point"}, "id": "1534", "properties": {"Object ID": 573789009, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93460458, 32.772566938, -79.93460458, 32.772566938], "geometry": {"coordinates": [-79.93460458, 32.772566938], "type": "Point"}, "id": "1535", "properties": {"Object ID": 573789016, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93453715, 32.773622948, -79.93453715, 32.773622948], "geometry": {"coordinates": [-79.93453715, 32.773622948], "type": "Point"}, "id": "1536", "properties": {"Object ID": 573789028, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93511044, 32.773671495, -79.93511044, 32.773671495], "geometry": {"coordinates": [-79.93511044, 32.773671495], "type": "Point"}, "id": "1537", "properties": {"Object ID": 573789029, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93440146, 32.773777543, -79.93440146, 32.773777543], "geometry": {"coordinates": [-79.93440146, 32.773777543], "type": "Point"}, "id": "1538", "properties": {"Object ID": 573789031, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93539216, 32.77392293, -79.93539216, 32.77392293], "geometry": {"coordinates": [-79.93539216, 32.77392293], "type": "Point"}, "id": "1539", "properties": {"Object ID": 573789033, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9349111, 32.779304384, -79.9349111, 32.779304384], "geometry": {"coordinates": [-79.9349111, 32.779304384], "type": "Point"}, "id": "1540", "properties": {"Object ID": 573789117, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93611956, 32.779335274, -79.93611956, 32.779335274], "geometry": {"coordinates": [-79.93611956, 32.779335274], "type": "Point"}, "id": "1541", "properties": {"Object ID": 573789118, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93614984, 32.77955311, -79.93614984, 32.77955311], "geometry": {"coordinates": [-79.93614984, 32.77955311], "type": "Point"}, "id": "1542", "properties": {"Object ID": 573789124, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93529618, 32.779606624, -79.93529618, 32.779606624], "geometry": {"coordinates": [-79.93529618, 32.779606624], "type": "Point"}, "id": "1543", "properties": {"Object ID": 573789131, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93523634, 32.774303366, -79.93523634, 32.774303366], "geometry": {"coordinates": [-79.93523634, 32.774303366], "type": "Point"}, "id": "1544", "properties": {"Object ID": 573789134, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9346991, 32.77475771, -79.9346991, 32.77475771], "geometry": {"coordinates": [-79.9346991, 32.77475771], "type": "Point"}, "id": "1545", "properties": {"Object ID": 573789139, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93475988, 32.774854654, -79.93475988, 32.774854654], "geometry": {"coordinates": [-79.93475988, 32.774854654], "type": "Point"}, "id": "1546", "properties": {"Object ID": 573789140, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93548515, 32.775252082, -79.93548515, 32.775252082], "geometry": {"coordinates": [-79.93548515, 32.775252082], "type": "Point"}, "id": "1547", "properties": {"Object ID": 573789144, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93475801, 32.775493881, -79.93475801, 32.775493881], "geometry": {"coordinates": [-79.93475801, 32.775493881], "type": "Point"}, "id": "1548", "properties": {"Object ID": 573789149, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93562931, 32.775669566, -79.93562931, 32.775669566], "geometry": {"coordinates": [-79.93562931, 32.775669566], "type": "Point"}, "id": "1549", "properties": {"Object ID": 573789154, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93609282, 32.776160355, -79.93609282, 32.776160355], "geometry": {"coordinates": [-79.93609282, 32.776160355], "type": "Point"}, "id": "1550", "properties": {"Object ID": 573789167, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93609282, 32.776160355, -79.93609282, 32.776160355], "geometry": {"coordinates": [-79.93609282, 32.776160355], "type": "Point"}, "id": "1551", "properties": {"Object ID": 573789168, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93648499, 32.776168474, -79.93648499, 32.776168474], "geometry": {"coordinates": [-79.93648499, 32.776168474], "type": "Point"}, "id": "1552", "properties": {"Object ID": 573789169, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93734491, 32.777615599, -79.93734491, 32.777615599], "geometry": {"coordinates": [-79.93734491, 32.777615599], "type": "Point"}, "id": "1553", "properties": {"Object ID": 573789184, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93623861, 32.777941604, -79.93623861, 32.777941604], "geometry": {"coordinates": [-79.93623861, 32.777941604], "type": "Point"}, "id": "1554", "properties": {"Object ID": 573789186, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93737953, 32.777914047, -79.93737953, 32.777914047], "geometry": {"coordinates": [-79.93737953, 32.777914047], "type": "Point"}, "id": "1555", "properties": {"Object ID": 573789187, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93653742, 32.778016123, -79.93653742, 32.778016123], "geometry": {"coordinates": [-79.93653742, 32.778016123], "type": "Point"}, "id": "1556", "properties": {"Object ID": 573789188, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93625524, 32.778153138, -79.93625524, 32.778153138], "geometry": {"coordinates": [-79.93625524, 32.778153138], "type": "Point"}, "id": "1557", "properties": {"Object ID": 573789192, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9362763, 32.778253113, -79.9362763, 32.778253113], "geometry": {"coordinates": [-79.9362763, 32.778253113], "type": "Point"}, "id": "1558", "properties": {"Object ID": 573789193, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93633458, 32.778472228, -79.93633458, 32.778472228], "geometry": {"coordinates": [-79.93633458, 32.778472228], "type": "Point"}, "id": "1559", "properties": {"Object ID": 573789196, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9366804, 32.778584811, -79.9366804, 32.778584811], "geometry": {"coordinates": [-79.9366804, 32.778584811], "type": "Point"}, "id": "1560", "properties": {"Object ID": 573789199, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93634563, 32.778674696, -79.93634563, 32.778674696], "geometry": {"coordinates": [-79.93634563, 32.778674696], "type": "Point"}, "id": "1561", "properties": {"Object ID": 573789200, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93718391, 32.772062331, -79.93718391, 32.772062331], "geometry": {"coordinates": [-79.93718391, 32.772062331], "type": "Point"}, "id": "1562", "properties": {"Object ID": 573789220, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93778308, 32.772542105, -79.93778308, 32.772542105], "geometry": {"coordinates": [-79.93778308, 32.772542105], "type": "Point"}, "id": "1563", "properties": {"Object ID": 573789226, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93777473, 32.772956385, -79.93777473, 32.772956385], "geometry": {"coordinates": [-79.93777473, 32.772956385], "type": "Point"}, "id": "1564", "properties": {"Object ID": 573789233, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93769368, 32.773062639, -79.93769368, 32.773062639], "geometry": {"coordinates": [-79.93769368, 32.773062639], "type": "Point"}, "id": "1565", "properties": {"Object ID": 573789234, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93782264, 32.773160388, -79.93782264, 32.773160388], "geometry": {"coordinates": [-79.93782264, 32.773160388], "type": "Point"}, "id": "1566", "properties": {"Object ID": 573789236, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93739608, 32.771383523, -79.93739608, 32.771383523], "geometry": {"coordinates": [-79.93739608, 32.771383523], "type": "Point"}, "id": "1567", "properties": {"Object ID": 573789297, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93752697, 32.771468138, -79.93752697, 32.771468138], "geometry": {"coordinates": [-79.93752697, 32.771468138], "type": "Point"}, "id": "1568", "properties": {"Object ID": 573789299, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93718705, 32.771715953, -79.93718705, 32.771715953], "geometry": {"coordinates": [-79.93718705, 32.771715953], "type": "Point"}, "id": "1569", "properties": {"Object ID": 573789310, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.937703, 32.771885698, -79.937703, 32.771885698], "geometry": {"coordinates": [-79.937703, 32.771885698], "type": "Point"}, "id": "1570", "properties": {"Object ID": 573789313, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93746248, 32.775702903, -79.93746248, 32.775702903], "geometry": {"coordinates": [-79.93746248, 32.775702903], "type": "Point"}, "id": "1571", "properties": {"Object ID": 573789328, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93868974, 32.774538661, -79.93868974, 32.774538661], "geometry": {"coordinates": [-79.93868974, 32.774538661], "type": "Point"}, "id": "1572", "properties": {"Object ID": 573789334, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93917071, 32.774845088, -79.93917071, 32.774845088], "geometry": {"coordinates": [-79.93917071, 32.774845088], "type": "Point"}, "id": "1573", "properties": {"Object ID": 573789341, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93917071, 32.774845088, -79.93917071, 32.774845088], "geometry": {"coordinates": [-79.93917071, 32.774845088], "type": "Point"}, "id": "1574", "properties": {"Object ID": 573789342, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93837185, 32.774970542, -79.93837185, 32.774970542], "geometry": {"coordinates": [-79.93837185, 32.774970542], "type": "Point"}, "id": "1575", "properties": {"Object ID": 573789344, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93831938, 32.775569158, -79.93831938, 32.775569158], "geometry": {"coordinates": [-79.93831938, 32.775569158], "type": "Point"}, "id": "1576", "properties": {"Object ID": 573789358, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93765526, 32.775658099, -79.93765526, 32.775658099], "geometry": {"coordinates": [-79.93765526, 32.775658099], "type": "Point"}, "id": "1577", "properties": {"Object ID": 573789363, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93749841, 32.776049816, -79.93749841, 32.776049816], "geometry": {"coordinates": [-79.93749841, 32.776049816], "type": "Point"}, "id": "1578", "properties": {"Object ID": 573789434, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93751029, 32.776176005, -79.93751029, 32.776176005], "geometry": {"coordinates": [-79.93751029, 32.776176005], "type": "Point"}, "id": "1579", "properties": {"Object ID": 573789436, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93831947, 32.776628992, -79.93831947, 32.776628992], "geometry": {"coordinates": [-79.93831947, 32.776628992], "type": "Point"}, "id": "1580", "properties": {"Object ID": 573789444, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93759531, 32.77667411, -79.93759531, 32.77667411], "geometry": {"coordinates": [-79.93759531, 32.77667411], "type": "Point"}, "id": "1581", "properties": {"Object ID": 573789447, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93832342, 32.776711131, -79.93832342, 32.776711131], "geometry": {"coordinates": [-79.93832342, 32.776711131], "type": "Point"}, "id": "1582", "properties": {"Object ID": 573789448, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93818535, 32.776790341, -79.93818535, 32.776790341], "geometry": {"coordinates": [-79.93818535, 32.776790341], "type": "Point"}, "id": "1583", "properties": {"Object ID": 573789450, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93767106, 32.776809693, -79.93767106, 32.776809693], "geometry": {"coordinates": [-79.93767106, 32.776809693], "type": "Point"}, "id": "1584", "properties": {"Object ID": 573789452, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93833687, 32.776969485, -79.93833687, 32.776969485], "geometry": {"coordinates": [-79.93833687, 32.776969485], "type": "Point"}, "id": "1585", "properties": {"Object ID": 573789454, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93770666, 32.777076795, -79.93770666, 32.777076795], "geometry": {"coordinates": [-79.93770666, 32.777076795], "type": "Point"}, "id": "1586", "properties": {"Object ID": 573789456, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93819619, 32.777099656, -79.93819619, 32.777099656], "geometry": {"coordinates": [-79.93819619, 32.777099656], "type": "Point"}, "id": "1587", "properties": {"Object ID": 573789458, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93813707, 32.772478655, -79.93813707, 32.772478655], "geometry": {"coordinates": [-79.93813707, 32.772478655], "type": "Point"}, "id": "1588", "properties": {"Object ID": 573789685, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93816719, 32.772752536, -79.93816719, 32.772752536], "geometry": {"coordinates": [-79.93816719, 32.772752536], "type": "Point"}, "id": "1589", "properties": {"Object ID": 573789695, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93879792, 32.772805162, -79.93879792, 32.772805162], "geometry": {"coordinates": [-79.93879792, 32.772805162], "type": "Point"}, "id": "1590", "properties": {"Object ID": 573789697, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93823187, 32.772896944, -79.93823187, 32.772896944], "geometry": {"coordinates": [-79.93823187, 32.772896944], "type": "Point"}, "id": "1591", "properties": {"Object ID": 573789699, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93828502, 32.773000626, -79.93828502, 32.773000626], "geometry": {"coordinates": [-79.93828502, 32.773000626], "type": "Point"}, "id": "1592", "properties": {"Object ID": 573789705, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93886252, 32.773075873, -79.93886252, 32.773075873], "geometry": {"coordinates": [-79.93886252, 32.773075873], "type": "Point"}, "id": "1593", "properties": {"Object ID": 573789707, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93827245, 32.773216691, -79.93827245, 32.773216691], "geometry": {"coordinates": [-79.93827245, 32.773216691], "type": "Point"}, "id": "1594", "properties": {"Object ID": 573789713, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93873172, 32.773606916, -79.93873172, 32.773606916], "geometry": {"coordinates": [-79.93873172, 32.773606916], "type": "Point"}, "id": "1595", "properties": {"Object ID": 573789729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93863202, 32.778861265, -79.93863202, 32.778861265], "geometry": {"coordinates": [-79.93863202, 32.778861265], "type": "Point"}, "id": "1596", "properties": {"Object ID": 573794177, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93880209, 32.779148001, -79.93880209, 32.779148001], "geometry": {"coordinates": [-79.93880209, 32.779148001], "type": "Point"}, "id": "1597", "properties": {"Object ID": 573794179, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9393743, 32.778607709, -79.9393743, 32.778607709], "geometry": {"coordinates": [-79.9393743, 32.778607709], "type": "Point"}, "id": "1598", "properties": {"Object ID": 573794194, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93806316, 32.778729252, -79.93806316, 32.778729252], "geometry": {"coordinates": [-79.93806316, 32.778729252], "type": "Point"}, "id": "1599", "properties": {"Object ID": 573794198, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93914735, 32.778785585, -79.93914735, 32.778785585], "geometry": {"coordinates": [-79.93914735, 32.778785585], "type": "Point"}, "id": "1600", "properties": {"Object ID": 573794200, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93899147, 32.776604057, -79.93899147, 32.776604057], "geometry": {"coordinates": [-79.93899147, 32.776604057], "type": "Point"}, "id": "1601", "properties": {"Object ID": 573794275, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93997455, 32.776925363, -79.93997455, 32.776925363], "geometry": {"coordinates": [-79.93997455, 32.776925363], "type": "Point"}, "id": "1602", "properties": {"Object ID": 573794297, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93952515, 32.776952112, -79.93952515, 32.776952112], "geometry": {"coordinates": [-79.93952515, 32.776952112], "type": "Point"}, "id": "1603", "properties": {"Object ID": 573794304, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94011101, 32.773982601, -79.94011101, 32.773982601], "geometry": {"coordinates": [-79.94011101, 32.773982601], "type": "Point"}, "id": "1604", "properties": {"Object ID": 573795544, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94017163, 32.77459815, -79.94017163, 32.77459815], "geometry": {"coordinates": [-79.94017163, 32.77459815], "type": "Point"}, "id": "1605", "properties": {"Object ID": 573795559, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94022349, 32.774935408, -79.94022349, 32.774935408], "geometry": {"coordinates": [-79.94022349, 32.774935408], "type": "Point"}, "id": "1606", "properties": {"Object ID": 573795571, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94025227, 32.775029053, -79.94025227, 32.775029053], "geometry": {"coordinates": [-79.94025227, 32.775029053], "type": "Point"}, "id": "1607", "properties": {"Object ID": 573795575, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93974614, 32.775086642, -79.93974614, 32.775086642], "geometry": {"coordinates": [-79.93974614, 32.775086642], "type": "Point"}, "id": "1608", "properties": {"Object ID": 573795577, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94016477, 32.777275962, -79.94016477, 32.777275962], "geometry": {"coordinates": [-79.94016477, 32.777275962], "type": "Point"}, "id": "1609", "properties": {"Object ID": 573795667, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93973969, 32.777601819, -79.93973969, 32.777601819], "geometry": {"coordinates": [-79.93973969, 32.777601819], "type": "Point"}, "id": "1610", "properties": {"Object ID": 573795677, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.940458, 32.777760235, -79.940458, 32.777760235], "geometry": {"coordinates": [-79.940458, 32.777760235], "type": "Point"}, "id": "1611", "properties": {"Object ID": 573795683, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93980324, 32.778122815, -79.93980324, 32.778122815], "geometry": {"coordinates": [-79.93980324, 32.778122815], "type": "Point"}, "id": "1612", "properties": {"Object ID": 573795691, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94071972, 32.77826953, -79.94071972, 32.77826953], "geometry": {"coordinates": [-79.94071972, 32.77826953], "type": "Point"}, "id": "1613", "properties": {"Object ID": 573795695, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93983763, 32.77838185, -79.93983763, 32.77838185], "geometry": {"coordinates": [-79.93983763, 32.77838185], "type": "Point"}, "id": "1614", "properties": {"Object ID": 573795697, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93976601, 32.77853983, -79.93976601, 32.77853983], "geometry": {"coordinates": [-79.93976601, 32.77853983], "type": "Point"}, "id": "1615", "properties": {"Object ID": 573795701, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93621063, 32.772729507, -79.93621063, 32.772729507], "geometry": {"coordinates": [-79.93621063, 32.772729507], "type": "Point"}, "id": "1616", "properties": {"Object ID": 573850059, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93583216, 32.772890334, -79.93583216, 32.772890334], "geometry": {"coordinates": [-79.93583216, 32.772890334], "type": "Point"}, "id": "1617", "properties": {"Object ID": 573850086, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93623978, 32.772899881, -79.93623978, 32.772899881], "geometry": {"coordinates": [-79.93623978, 32.772899881], "type": "Point"}, "id": "1618", "properties": {"Object ID": 573850088, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93627811, 32.773075553, -79.93627811, 32.773075553], "geometry": {"coordinates": [-79.93627811, 32.773075553], "type": "Point"}, "id": "1619", "properties": {"Object ID": 573850092, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93606006, 32.773310199, -79.93606006, 32.773310199], "geometry": {"coordinates": [-79.93606006, 32.773310199], "type": "Point"}, "id": "1620", "properties": {"Object ID": 573850098, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93961406, 32.776193756, -79.93961406, 32.776193756], "geometry": {"coordinates": [-79.93961406, 32.776193756], "type": "Point"}, "id": "1621", "properties": {"Object ID": 573856058, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93861559, 32.775932066, -79.93861559, 32.775932066], "geometry": {"coordinates": [-79.93861559, 32.775932066], "type": "Point"}, "id": "1622", "properties": {"Object ID": 573856072, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93932045, 32.776242016, -79.93932045, 32.776242016], "geometry": {"coordinates": [-79.93932045, 32.776242016], "type": "Point"}, "id": "1623", "properties": {"Object ID": 573856080, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93905036, 32.776267163, -79.93905036, 32.776267163], "geometry": {"coordinates": [-79.93905036, 32.776267163], "type": "Point"}, "id": "1624", "properties": {"Object ID": 573856082, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93969172, 32.773176769, -79.93969172, 32.773176769], "geometry": {"coordinates": [-79.93969172, 32.773176769], "type": "Point"}, "id": "1625", "properties": {"Object ID": 573860089, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9393708, 32.7732589, -79.9393708, 32.7732589], "geometry": {"coordinates": [-79.9393708, 32.7732589], "type": "Point"}, "id": "1626", "properties": {"Object ID": 573860091, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93938891, 32.773467217, -79.93938891, 32.773467217], "geometry": {"coordinates": [-79.93938891, 32.773467217], "type": "Point"}, "id": "1627", "properties": {"Object ID": 573860102, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93971781, 32.77349768, -79.93971781, 32.77349768], "geometry": {"coordinates": [-79.93971781, 32.77349768], "type": "Point"}, "id": "1628", "properties": {"Object ID": 573860104, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94088067, 32.774744066, -79.94088067, 32.774744066], "geometry": {"coordinates": [-79.94088067, 32.774744066], "type": "Point"}, "id": "1629", "properties": {"Object ID": 573860273, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94100801, 32.775296708, -79.94100801, 32.775296708], "geometry": {"coordinates": [-79.94100801, 32.775296708], "type": "Point"}, "id": "1630", "properties": {"Object ID": 573860290, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93404348, 32.77150084, -79.93404348, 32.77150084], "geometry": {"coordinates": [-79.93404348, 32.77150084], "type": "Point"}, "id": "1631", "properties": {"Object ID": 574268688, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93532674, 32.77173108, -79.93532674, 32.77173108], "geometry": {"coordinates": [-79.93532674, 32.77173108], "type": "Point"}, "id": "1632", "properties": {"Object ID": 574268696, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93451041, 32.77172831, -79.93451041, 32.77172831], "geometry": {"coordinates": [-79.93451041, 32.77172831], "type": "Point"}, "id": "1633", "properties": {"Object ID": 574268698, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93695233, 32.774108396, -79.93695233, 32.774108396], "geometry": {"coordinates": [-79.93695233, 32.774108396], "type": "Point"}, "id": "1634", "properties": {"Object ID": 574268744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93670898, 32.774170108, -79.93670898, 32.774170108], "geometry": {"coordinates": [-79.93670898, 32.774170108], "type": "Point"}, "id": "1635", "properties": {"Object ID": 574268750, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93661223, 32.774204262, -79.93661223, 32.774204262], "geometry": {"coordinates": [-79.93661223, 32.774204262], "type": "Point"}, "id": "1636", "properties": {"Object ID": 574268757, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93584872, 32.774393986, -79.93584872, 32.774393986], "geometry": {"coordinates": [-79.93584872, 32.774393986], "type": "Point"}, "id": "1637", "properties": {"Object ID": 574268767, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93714697, 32.774576472, -79.93714697, 32.774576472], "geometry": {"coordinates": [-79.93714697, 32.774576472], "type": "Point"}, "id": "1638", "properties": {"Object ID": 574268773, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93685084, 32.774808474, -79.93685084, 32.774808474], "geometry": {"coordinates": [-79.93685084, 32.774808474], "type": "Point"}, "id": "1639", "properties": {"Object ID": 574268781, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93678465, 32.774911101, -79.93678465, 32.774911101], "geometry": {"coordinates": [-79.93678465, 32.774911101], "type": "Point"}, "id": "1640", "properties": {"Object ID": 574268785, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93595544, 32.775013407, -79.93595544, 32.775013407], "geometry": {"coordinates": [-79.93595544, 32.775013407], "type": "Point"}, "id": "1641", "properties": {"Object ID": 574268787, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9359729, 32.775120997, -79.9359729, 32.775120997], "geometry": {"coordinates": [-79.9359729, 32.775120997], "type": "Point"}, "id": "1642", "properties": {"Object ID": 574268793, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93612841, 32.775619051, -79.93612841, 32.775619051], "geometry": {"coordinates": [-79.93612841, 32.775619051], "type": "Point"}, "id": "1643", "properties": {"Object ID": 574268812, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9373155, 32.7740415, -79.9373155, 32.7740415], "geometry": {"coordinates": [-79.9373155, 32.7740415], "type": "Point"}, "id": "1644", "properties": {"Object ID": 574268819, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93671012, 32.771501891, -79.93671012, 32.771501891], "geometry": {"coordinates": [-79.93671012, 32.771501891], "type": "Point"}, "id": "1645", "properties": {"Object ID": 574268911, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93697776, 32.771577676, -79.93697776, 32.771577676], "geometry": {"coordinates": [-79.93697776, 32.771577676], "type": "Point"}, "id": "1646", "properties": {"Object ID": 574268915, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93660609, 32.777306644, -79.93660609, 32.777306644], "geometry": {"coordinates": [-79.93660609, 32.777306644], "type": "Point"}, "id": "1647", "properties": {"Object ID": 574268919, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93660609, 32.777306644, -79.93660609, 32.777306644], "geometry": {"coordinates": [-79.93660609, 32.777306644], "type": "Point"}, "id": "1648", "properties": {"Object ID": 574268921, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93695026, 32.776765158, -79.93695026, 32.776765158], "geometry": {"coordinates": [-79.93695026, 32.776765158], "type": "Point"}, "id": "1649", "properties": {"Object ID": 574268924, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93676979, 32.776807622, -79.93676979, 32.776807622], "geometry": {"coordinates": [-79.93676979, 32.776807622], "type": "Point"}, "id": "1650", "properties": {"Object ID": 574268930, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93655873, 32.776860422, -79.93655873, 32.776860422], "geometry": {"coordinates": [-79.93655873, 32.776860422], "type": "Point"}, "id": "1651", "properties": {"Object ID": 574268934, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93762425, 32.774645189, -79.93762425, 32.774645189], "geometry": {"coordinates": [-79.93762425, 32.774645189], "type": "Point"}, "id": "1652", "properties": {"Object ID": 574269129, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93813552, 32.774685044, -79.93813552, 32.774685044], "geometry": {"coordinates": [-79.93813552, 32.774685044], "type": "Point"}, "id": "1653", "properties": {"Object ID": 574269168, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93754883, 32.774725395, -79.93754883, 32.774725395], "geometry": {"coordinates": [-79.93754883, 32.774725395], "type": "Point"}, "id": "1654", "properties": {"Object ID": 574269174, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93793417, 32.774851052, -79.93793417, 32.774851052], "geometry": {"coordinates": [-79.93793417, 32.774851052], "type": "Point"}, "id": "1655", "properties": {"Object ID": 574269180, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93768012, 32.775093368, -79.93768012, 32.775093368], "geometry": {"coordinates": [-79.93768012, 32.775093368], "type": "Point"}, "id": "1656", "properties": {"Object ID": 574269191, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9367818, 32.775544505, -79.9367818, 32.775544505], "geometry": {"coordinates": [-79.9367818, 32.775544505], "type": "Point"}, "id": "1657", "properties": {"Object ID": 574269212, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93698741, 32.775693274, -79.93698741, 32.775693274], "geometry": {"coordinates": [-79.93698741, 32.775693274], "type": "Point"}, "id": "1658", "properties": {"Object ID": 574269216, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93809154, 32.777433619, -79.93809154, 32.777433619], "geometry": {"coordinates": [-79.93809154, 32.777433619], "type": "Point"}, "id": "1659", "properties": {"Object ID": 574269274, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93789222, 32.777492563, -79.93789222, 32.777492563], "geometry": {"coordinates": [-79.93789222, 32.777492563], "type": "Point"}, "id": "1660", "properties": {"Object ID": 574269276, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93773008, 32.777478878, -79.93773008, 32.777478878], "geometry": {"coordinates": [-79.93773008, 32.777478878], "type": "Point"}, "id": "1661", "properties": {"Object ID": 574269278, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93807513, 32.777624664, -79.93807513, 32.777624664], "geometry": {"coordinates": [-79.93807513, 32.777624664], "type": "Point"}, "id": "1662", "properties": {"Object ID": 574269282, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93777773, 32.777671048, -79.93777773, 32.777671048], "geometry": {"coordinates": [-79.93777773, 32.777671048], "type": "Point"}, "id": "1663", "properties": {"Object ID": 574269286, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93930677, 32.777937619, -79.93930677, 32.777937619], "geometry": {"coordinates": [-79.93930677, 32.777937619], "type": "Point"}, "id": "1664", "properties": {"Object ID": 574269305, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93779719, 32.778083571, -79.93779719, 32.778083571], "geometry": {"coordinates": [-79.93779719, 32.778083571], "type": "Point"}, "id": "1665", "properties": {"Object ID": 574269313, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9373179, 32.778946903, -79.9373179, 32.778946903], "geometry": {"coordinates": [-79.9373179, 32.778946903], "type": "Point"}, "id": "1666", "properties": {"Object ID": 574294729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93819205, 32.779692506, -79.93819205, 32.779692506], "geometry": {"coordinates": [-79.93819205, 32.779692506], "type": "Point"}, "id": "1667", "properties": {"Object ID": 574294811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93822413, 32.779787326, -79.93822413, 32.779787326], "geometry": {"coordinates": [-79.93822413, 32.779787326], "type": "Point"}, "id": "1668", "properties": {"Object ID": 574294812, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94000387, 32.779025358, -79.94000387, 32.779025358], "geometry": {"coordinates": [-79.94000387, 32.779025358], "type": "Point"}, "id": "1669", "properties": {"Object ID": 574295953, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93921587, 32.777599349, -79.93921587, 32.777599349], "geometry": {"coordinates": [-79.93921587, 32.777599349], "type": "Point"}, "id": "1670", "properties": {"Object ID": 574295718, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93839824, 32.777793826, -79.93839824, 32.777793826], "geometry": {"coordinates": [-79.93839824, 32.777793826], "type": "Point"}, "id": "1671", "properties": {"Object ID": 574295725, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93808469, 32.777829012, -79.93808469, 32.777829012], "geometry": {"coordinates": [-79.93808469, 32.777829012], "type": "Point"}, "id": "1672", "properties": {"Object ID": 574295733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93874983, 32.777755829, -79.93874983, 32.777755829], "geometry": {"coordinates": [-79.93874983, 32.777755829], "type": "Point"}, "id": "1673", "properties": {"Object ID": 574295735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94041869, 32.778907851, -79.94041869, 32.778907851], "geometry": {"coordinates": [-79.94041869, 32.778907851], "type": "Point"}, "id": "1674", "properties": {"Object ID": 574295943, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93983264, 32.772065591, -79.93983264, 32.772065591], "geometry": {"coordinates": [-79.93983264, 32.772065591], "type": "Point"}, "id": "1675", "properties": {"Object ID": 574296083, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94108104, 32.772146762, -79.94108104, 32.772146762], "geometry": {"coordinates": [-79.94108104, 32.772146762], "type": "Point"}, "id": "1676", "properties": {"Object ID": 574296085, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94034008, 32.772263073, -79.94034008, 32.772263073], "geometry": {"coordinates": [-79.94034008, 32.772263073], "type": "Point"}, "id": "1677", "properties": {"Object ID": 574296093, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94057186, 32.77229336, -79.94057186, 32.77229336], "geometry": {"coordinates": [-79.94057186, 32.77229336], "type": "Point"}, "id": "1678", "properties": {"Object ID": 574296095, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93443657, 32.77777957, -79.93443657, 32.77777957], "geometry": {"coordinates": [-79.93443657, 32.77777957], "type": "Point"}, "id": "1679", "properties": {"Object ID": 574371652, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93430103, 32.777786816, -79.93430103, 32.777786816], "geometry": {"coordinates": [-79.93430103, 32.777786816], "type": "Point"}, "id": "1680", "properties": {"Object ID": 574371654, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93391977, 32.777859319, -79.93391977, 32.777859319], "geometry": {"coordinates": [-79.93391977, 32.777859319], "type": "Point"}, "id": "1681", "properties": {"Object ID": 574371673, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93401476, 32.778046036, -79.93401476, 32.778046036], "geometry": {"coordinates": [-79.93401476, 32.778046036], "type": "Point"}, "id": "1682", "properties": {"Object ID": 574371683, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9351499, 32.777726955, -79.9351499, 32.777726955], "geometry": {"coordinates": [-79.9351499, 32.777726955], "type": "Point"}, "id": "1683", "properties": {"Object ID": 574371749, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93472814, 32.778071559, -79.93472814, 32.778071559], "geometry": {"coordinates": [-79.93472814, 32.778071559], "type": "Point"}, "id": "1684", "properties": {"Object ID": 574371769, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94000969, 32.772560114, -79.94000969, 32.772560114], "geometry": {"coordinates": [-79.94000969, 32.772560114], "type": "Point"}, "id": "1685", "properties": {"Object ID": 574372048, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94071309, 32.772861632, -79.94071309, 32.772861632], "geometry": {"coordinates": [-79.94071309, 32.772861632], "type": "Point"}, "id": "1686", "properties": {"Object ID": 574372064, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9406681, 32.773227775, -79.9406681, 32.773227775], "geometry": {"coordinates": [-79.9406681, 32.773227775], "type": "Point"}, "id": "1687", "properties": {"Object ID": 574372078, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93651865, 32.772195261, -79.93651865, 32.772195261], "geometry": {"coordinates": [-79.93651865, 32.772195261], "type": "Point"}, "id": "1688", "properties": {"Object ID": 574371892, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93685673, 32.772685101, -79.93685673, 32.772685101], "geometry": {"coordinates": [-79.93685673, 32.772685101], "type": "Point"}, "id": "1689", "properties": {"Object ID": 574371900, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93657663, 32.772968201, -79.93657663, 32.772968201], "geometry": {"coordinates": [-79.93657663, 32.772968201], "type": "Point"}, "id": "1690", "properties": {"Object ID": 574371906, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93668643, 32.773707716, -79.93668643, 32.773707716], "geometry": {"coordinates": [-79.93668643, 32.773707716], "type": "Point"}, "id": "1691", "properties": {"Object ID": 574371924, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93680738, 32.773854201, -79.93680738, 32.773854201], "geometry": {"coordinates": [-79.93680738, 32.773854201], "type": "Point"}, "id": "1692", "properties": {"Object ID": 574371928, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93699713, 32.773878589, -79.93699713, 32.773878589], "geometry": {"coordinates": [-79.93699713, 32.773878589], "type": "Point"}, "id": "1693", "properties": {"Object ID": 574371930, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93549282, 32.777354814, -79.93549282, 32.777354814], "geometry": {"coordinates": [-79.93549282, 32.777354814], "type": "Point"}, "id": "1694", "properties": {"Object ID": 574372946, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93525023, 32.776302921, -79.93525023, 32.776302921], "geometry": {"coordinates": [-79.93525023, 32.776302921], "type": "Point"}, "id": "1695", "properties": {"Object ID": 574372952, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93480139, 32.776356808, -79.93480139, 32.776356808], "geometry": {"coordinates": [-79.93480139, 32.776356808], "type": "Point"}, "id": "1696", "properties": {"Object ID": 574372956, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93578413, 32.776495483, -79.93578413, 32.776495483], "geometry": {"coordinates": [-79.93578413, 32.776495483], "type": "Point"}, "id": "1697", "properties": {"Object ID": 574372961, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93497674, 32.776770163, -79.93497674, 32.776770163], "geometry": {"coordinates": [-79.93497674, 32.776770163], "type": "Point"}, "id": "1698", "properties": {"Object ID": 574372966, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93576923, 32.777181596, -79.93576923, 32.777181596], "geometry": {"coordinates": [-79.93576923, 32.777181596], "type": "Point"}, "id": "1699", "properties": {"Object ID": 574372979, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93537325, 32.77739054, -79.93537325, 32.77739054], "geometry": {"coordinates": [-79.93537325, 32.77739054], "type": "Point"}, "id": "1700", "properties": {"Object ID": 574372989, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93870515, 32.772382261, -79.93870515, 32.772382261], "geometry": {"coordinates": [-79.93870515, 32.772382261], "type": "Point"}, "id": "1701", "properties": {"Object ID": 574373104, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9387488, 32.772018395, -79.9387488, 32.772018395], "geometry": {"coordinates": [-79.9387488, 32.772018395], "type": "Point"}, "id": "1702", "properties": {"Object ID": 574373110, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9390071, 32.77213281, -79.9390071, 32.77213281], "geometry": {"coordinates": [-79.9390071, 32.77213281], "type": "Point"}, "id": "1703", "properties": {"Object ID": 574373113, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93883955, 32.772444734, -79.93883955, 32.772444734], "geometry": {"coordinates": [-79.93883955, 32.772444734], "type": "Point"}, "id": "1704", "properties": {"Object ID": 574373123, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93958613, 32.779332357, -79.93958613, 32.779332357], "geometry": {"coordinates": [-79.93958613, 32.779332357], "type": "Point"}, "id": "1705", "properties": {"Object ID": 574409909, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93880584, 32.779479519, -79.93880584, 32.779479519], "geometry": {"coordinates": [-79.93880584, 32.779479519], "type": "Point"}, "id": "1706", "properties": {"Object ID": 574409913, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93435092, 32.778161771, -79.93435092, 32.778161771], "geometry": {"coordinates": [-79.93435092, 32.778161771], "type": "Point"}, "id": "1707", "properties": {"Object ID": 574421790, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93367716, 32.778948121, -79.93367716, 32.778948121], "geometry": {"coordinates": [-79.93367716, 32.778948121], "type": "Point"}, "id": "1708", "properties": {"Object ID": 574421813, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93923788, 32.771723338, -79.93923788, 32.771723338], "geometry": {"coordinates": [-79.93923788, 32.771723338], "type": "Point"}, "id": "1709", "properties": {"Object ID": 574421844, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93925836, 32.77125494, -79.93925836, 32.77125494], "geometry": {"coordinates": [-79.93925836, 32.77125494], "type": "Point"}, "id": "1710", "properties": {"Object ID": 574421850, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93907638, 32.771448138, -79.93907638, 32.771448138], "geometry": {"coordinates": [-79.93907638, 32.771448138], "type": "Point"}, "id": "1711", "properties": {"Object ID": 574421855, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93946262, 32.77192598, -79.93946262, 32.77192598], "geometry": {"coordinates": [-79.93946262, 32.77192598], "type": "Point"}, "id": "1712", "properties": {"Object ID": 574421869, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93619061, 32.771648107, -79.93619061, 32.771648107], "geometry": {"coordinates": [-79.93619061, 32.771648107], "type": "Point"}, "id": "1713", "properties": {"Object ID": 574431709, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93596509, 32.771624237, -79.93596509, 32.771624237], "geometry": {"coordinates": [-79.93596509, 32.771624237], "type": "Point"}, "id": "1714", "properties": {"Object ID": 574431713, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9336979, 32.779879458, -79.9336979, 32.779879458], "geometry": {"coordinates": [-79.9336979, 32.779879458], "type": "Point"}, "id": "1715", "properties": {"Object ID": 574446507, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93454321, 32.779150786, -79.93454321, 32.779150786], "geometry": {"coordinates": [-79.93454321, 32.779150786], "type": "Point"}, "id": "1716", "properties": {"Object ID": 574446529, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93454869, 32.779269657, -79.93454869, 32.779269657], "geometry": {"coordinates": [-79.93454869, 32.779269657], "type": "Point"}, "id": "1717", "properties": {"Object ID": 574446537, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93378849, 32.779266023, -79.93378849, 32.779266023], "geometry": {"coordinates": [-79.93378849, 32.779266023], "type": "Point"}, "id": "1718", "properties": {"Object ID": 574446547, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93458081, 32.779415342, -79.93458081, 32.779415342], "geometry": {"coordinates": [-79.93458081, 32.779415342], "type": "Point"}, "id": "1719", "properties": {"Object ID": 574446553, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94073764, 32.778398944, -79.94073764, 32.778398944], "geometry": {"coordinates": [-79.94073764, 32.778398944], "type": "Point"}, "id": "1720", "properties": {"Object ID": 574486707, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94073764, 32.778398944, -79.94073764, 32.778398944], "geometry": {"coordinates": [-79.94073764, 32.778398944], "type": "Point"}, "id": "1721", "properties": {"Object ID": 574486709, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94041454, 32.778985705, -79.94041454, 32.778985705], "geometry": {"coordinates": [-79.94041454, 32.778985705], "type": "Point"}, "id": "1722", "properties": {"Object ID": 574486710, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94073764, 32.778398944, -79.94073764, 32.778398944], "geometry": {"coordinates": [-79.94073764, 32.778398944], "type": "Point"}, "id": "1723", "properties": {"Object ID": 574486711, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93923474, 32.778607967, -79.93923474, 32.778607967], "geometry": {"coordinates": [-79.93923474, 32.778607967], "type": "Point"}, "id": "1724", "properties": {"Object ID": 574486722, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93987278, 32.777321676, -79.93987278, 32.777321676], "geometry": {"coordinates": [-79.93987278, 32.777321676], "type": "Point"}, "id": "1725", "properties": {"Object ID": 574486787, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93887089, 32.777536819, -79.93887089, 32.777536819], "geometry": {"coordinates": [-79.93887089, 32.777536819], "type": "Point"}, "id": "1726", "properties": {"Object ID": 574486791, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93823393, 32.777796414, -79.93823393, 32.777796414], "geometry": {"coordinates": [-79.93823393, 32.777796414], "type": "Point"}, "id": "1727", "properties": {"Object ID": 574486793, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93833407, 32.777109379, -79.93833407, 32.777109379], "geometry": {"coordinates": [-79.93833407, 32.777109379], "type": "Point"}, "id": "1728", "properties": {"Object ID": 574486803, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93892571, 32.776049265, -79.93892571, 32.776049265], "geometry": {"coordinates": [-79.93892571, 32.776049265], "type": "Point"}, "id": "1729", "properties": {"Object ID": 574486809, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93970129, 32.775274844, -79.93970129, 32.775274844], "geometry": {"coordinates": [-79.93970129, 32.775274844], "type": "Point"}, "id": "1730", "properties": {"Object ID": 574486828, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94012077, 32.773764515, -79.94012077, 32.773764515], "geometry": {"coordinates": [-79.94012077, 32.773764515], "type": "Point"}, "id": "1731", "properties": {"Object ID": 574486831, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93838114, 32.774335868, -79.93838114, 32.774335868], "geometry": {"coordinates": [-79.93838114, 32.774335868], "type": "Point"}, "id": "1732", "properties": {"Object ID": 574486837, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93838114, 32.774335868, -79.93838114, 32.774335868], "geometry": {"coordinates": [-79.93838114, 32.774335868], "type": "Point"}, "id": "1733", "properties": {"Object ID": 574486838, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9389617, 32.773529048, -79.9389617, 32.773529048], "geometry": {"coordinates": [-79.9389617, 32.773529048], "type": "Point"}, "id": "1734", "properties": {"Object ID": 574486839, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93949742, 32.773071317, -79.93949742, 32.773071317], "geometry": {"coordinates": [-79.93949742, 32.773071317], "type": "Point"}, "id": "1735", "properties": {"Object ID": 574486846, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93775971, 32.774029491, -79.93775971, 32.774029491], "geometry": {"coordinates": [-79.93775971, 32.774029491], "type": "Point"}, "id": "1736", "properties": {"Object ID": 574486852, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93693074, 32.773862018, -79.93693074, 32.773862018], "geometry": {"coordinates": [-79.93693074, 32.773862018], "type": "Point"}, "id": "1737", "properties": {"Object ID": 574486857, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93767257, 32.77278843, -79.93767257, 32.77278843], "geometry": {"coordinates": [-79.93767257, 32.77278843], "type": "Point"}, "id": "1738", "properties": {"Object ID": 574486858, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93541956, 32.775403971, -79.93541956, 32.775403971], "geometry": {"coordinates": [-79.93541956, 32.775403971], "type": "Point"}, "id": "1739", "properties": {"Object ID": 574486864, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93622307, 32.774620925, -79.93622307, 32.774620925], "geometry": {"coordinates": [-79.93622307, 32.774620925], "type": "Point"}, "id": "1740", "properties": {"Object ID": 574486869, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542766, 32.774993284, -79.93542766, 32.774993284], "geometry": {"coordinates": [-79.93542766, 32.774993284], "type": "Point"}, "id": "1741", "properties": {"Object ID": 574486873, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93651266, 32.774225118, -79.93651266, 32.774225118], "geometry": {"coordinates": [-79.93651266, 32.774225118], "type": "Point"}, "id": "1742", "properties": {"Object ID": 574486878, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93598957, 32.773950257, -79.93598957, 32.773950257], "geometry": {"coordinates": [-79.93598957, 32.773950257], "type": "Point"}, "id": "1743", "properties": {"Object ID": 574486879, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93598957, 32.773950257, -79.93598957, 32.773950257], "geometry": {"coordinates": [-79.93598957, 32.773950257], "type": "Point"}, "id": "1744", "properties": {"Object ID": 574486880, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.934546, 32.774462493, -79.934546, 32.774462493], "geometry": {"coordinates": [-79.934546, 32.774462493], "type": "Point"}, "id": "1745", "properties": {"Object ID": 574486884, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93405994, 32.771469521, -79.93405994, 32.771469521], "geometry": {"coordinates": [-79.93405994, 32.771469521], "type": "Point"}, "id": "1746", "properties": {"Object ID": 574486909, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93818709, 32.777642703, -79.93818709, 32.777642703], "geometry": {"coordinates": [-79.93818709, 32.777642703], "type": "Point"}, "id": "1747", "properties": {"Object ID": 574486954, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93727479, 32.777235676, -79.93727479, 32.777235676], "geometry": {"coordinates": [-79.93727479, 32.777235676], "type": "Point"}, "id": "1748", "properties": {"Object ID": 574486962, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93777386, 32.776445317, -79.93777386, 32.776445317], "geometry": {"coordinates": [-79.93777386, 32.776445317], "type": "Point"}, "id": "1749", "properties": {"Object ID": 574486967, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93565933, 32.77953797, -79.93565933, 32.77953797], "geometry": {"coordinates": [-79.93565933, 32.77953797], "type": "Point"}, "id": "1750", "properties": {"Object ID": 574486984, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93565933, 32.77953797, -79.93565933, 32.77953797], "geometry": {"coordinates": [-79.93565933, 32.77953797], "type": "Point"}, "id": "1751", "properties": {"Object ID": 574486990, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93595317, 32.77838712, -79.93595317, 32.77838712], "geometry": {"coordinates": [-79.93595317, 32.77838712], "type": "Point"}, "id": "1752", "properties": {"Object ID": 574486994, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93593404, 32.778242086, -79.93593404, 32.778242086], "geometry": {"coordinates": [-79.93593404, 32.778242086], "type": "Point"}, "id": "1753", "properties": {"Object ID": 574486995, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93591665, 32.778110287, -79.93591665, 32.778110287], "geometry": {"coordinates": [-79.93591665, 32.778110287], "type": "Point"}, "id": "1754", "properties": {"Object ID": 574486997, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93531925, 32.778123533, -79.93531925, 32.778123533], "geometry": {"coordinates": [-79.93531925, 32.778123533], "type": "Point"}, "id": "1755", "properties": {"Object ID": 574487005, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9358843, 32.777586927, -79.9358843, 32.777586927], "geometry": {"coordinates": [-79.9358843, 32.777586927], "type": "Point"}, "id": "1756", "properties": {"Object ID": 574487038, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93535116, 32.777775663, -79.93535116, 32.777775663], "geometry": {"coordinates": [-79.93535116, 32.777775663], "type": "Point"}, "id": "1757", "properties": {"Object ID": 574487040, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93528915, 32.777648469, -79.93528915, 32.777648469], "geometry": {"coordinates": [-79.93528915, 32.777648469], "type": "Point"}, "id": "1758", "properties": {"Object ID": 574487045, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1759", "properties": {"Object ID": 574487047, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1760", "properties": {"Object ID": 574487059, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1761", "properties": {"Object ID": 574487060, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1762", "properties": {"Object ID": 574487061, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1763", "properties": {"Object ID": 574487064, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1764", "properties": {"Object ID": 574487066, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1765", "properties": {"Object ID": 574487069, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1766", "properties": {"Object ID": 574487072, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93452382, 32.77746979, -79.93452382, 32.77746979], "geometry": {"coordinates": [-79.93452382, 32.77746979], "type": "Point"}, "id": "1767", "properties": {"Object ID": 574487073, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93378854, 32.777872673, -79.93378854, 32.777872673], "geometry": {"coordinates": [-79.93378854, 32.777872673], "type": "Point"}, "id": "1768", "properties": {"Object ID": 574487078, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.934624, 32.777239407, -79.934624, 32.777239407], "geometry": {"coordinates": [-79.934624, 32.777239407], "type": "Point"}, "id": "1769", "properties": {"Object ID": 574487082, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93608199, 32.776339796, -79.93608199, 32.776339796], "geometry": {"coordinates": [-79.93608199, 32.776339796], "type": "Point"}, "id": "1770", "properties": {"Object ID": 574487088, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93544376, 32.776459504, -79.93544376, 32.776459504], "geometry": {"coordinates": [-79.93544376, 32.776459504], "type": "Point"}, "id": "1771", "properties": {"Object ID": 574487090, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9352781, 32.77651496, -79.9352781, 32.77651496], "geometry": {"coordinates": [-79.9352781, 32.77651496], "type": "Point"}, "id": "1772", "properties": {"Object ID": 574487091, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93240946, 32.770748295, -79.93240946, 32.770748295], "geometry": {"coordinates": [-79.93240946, 32.770748295], "type": "Point"}, "id": "1773", "properties": {"Object ID": 573841001, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93300495, 32.770797186, -79.93300495, 32.770797186], "geometry": {"coordinates": [-79.93300495, 32.770797186], "type": "Point"}, "id": "1774", "properties": {"Object ID": 573841004, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93263882, 32.770808827, -79.93263882, 32.770808827], "geometry": {"coordinates": [-79.93263882, 32.770808827], "type": "Point"}, "id": "1775", "properties": {"Object ID": 573841006, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93339798, 32.770887763, -79.93339798, 32.770887763], "geometry": {"coordinates": [-79.93339798, 32.770887763], "type": "Point"}, "id": "1776", "properties": {"Object ID": 573841009, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93224796, 32.770977933, -79.93224796, 32.770977933], "geometry": {"coordinates": [-79.93224796, 32.770977933], "type": "Point"}, "id": "1777", "properties": {"Object ID": 573841011, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93317999, 32.770889867, -79.93317999, 32.770889867], "geometry": {"coordinates": [-79.93317999, 32.770889867], "type": "Point"}, "id": "1778", "properties": {"Object ID": 573841012, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93307387, 32.771037166, -79.93307387, 32.771037166], "geometry": {"coordinates": [-79.93307387, 32.771037166], "type": "Point"}, "id": "1779", "properties": {"Object ID": 573841013, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93285747, 32.771197675, -79.93285747, 32.771197675], "geometry": {"coordinates": [-79.93285747, 32.771197675], "type": "Point"}, "id": "1780", "properties": {"Object ID": 573841017, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93439284, 32.769931874, -79.93439284, 32.769931874], "geometry": {"coordinates": [-79.93439284, 32.769931874], "type": "Point"}, "id": "1781", "properties": {"Object ID": 574268571, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93464987, 32.769935012, -79.93464987, 32.769935012], "geometry": {"coordinates": [-79.93464987, 32.769935012], "type": "Point"}, "id": "1782", "properties": {"Object ID": 574268573, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93488696, 32.769956775, -79.93488696, 32.769956775], "geometry": {"coordinates": [-79.93488696, 32.769956775], "type": "Point"}, "id": "1783", "properties": {"Object ID": 574268577, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93367723, 32.770158324, -79.93367723, 32.770158324], "geometry": {"coordinates": [-79.93367723, 32.770158324], "type": "Point"}, "id": "1784", "properties": {"Object ID": 574268579, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93271119, 32.770319213, -79.93271119, 32.770319213], "geometry": {"coordinates": [-79.93271119, 32.770319213], "type": "Point"}, "id": "1785", "properties": {"Object ID": 574268600, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93459117, 32.7704236, -79.93459117, 32.7704236], "geometry": {"coordinates": [-79.93459117, 32.7704236], "type": "Point"}, "id": "1786", "properties": {"Object ID": 574268602, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93371775, 32.770503078, -79.93371775, 32.770503078], "geometry": {"coordinates": [-79.93371775, 32.770503078], "type": "Point"}, "id": "1787", "properties": {"Object ID": 574268612, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93410271, 32.770514797, -79.93410271, 32.770514797], "geometry": {"coordinates": [-79.93410271, 32.770514797], "type": "Point"}, "id": "1788", "properties": {"Object ID": 574268614, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93521992, 32.770550235, -79.93521992, 32.770550235], "geometry": {"coordinates": [-79.93521992, 32.770550235], "type": "Point"}, "id": "1789", "properties": {"Object ID": 574268620, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9341155, 32.770523, -79.9341155, 32.770523], "geometry": {"coordinates": [-79.9341155, 32.770523], "type": "Point"}, "id": "1790", "properties": {"Object ID": 574268624, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9338813, 32.770824729, -79.9338813, 32.770824729], "geometry": {"coordinates": [-79.9338813, 32.770824729], "type": "Point"}, "id": "1791", "properties": {"Object ID": 574268668, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93454819, 32.770877524, -79.93454819, 32.770877524], "geometry": {"coordinates": [-79.93454819, 32.770877524], "type": "Point"}, "id": "1792", "properties": {"Object ID": 574268670, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93392783, 32.770953083, -79.93392783, 32.770953083], "geometry": {"coordinates": [-79.93392783, 32.770953083], "type": "Point"}, "id": "1793", "properties": {"Object ID": 574268672, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93418237, 32.770892902, -79.93418237, 32.770892902], "geometry": {"coordinates": [-79.93418237, 32.770892902], "type": "Point"}, "id": "1794", "properties": {"Object ID": 574268674, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93617157, 32.770989293, -79.93617157, 32.770989293], "geometry": {"coordinates": [-79.93617157, 32.770989293], "type": "Point"}, "id": "1795", "properties": {"Object ID": 574268887, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93735071, 32.770882479, -79.93735071, 32.770882479], "geometry": {"coordinates": [-79.93735071, 32.770882479], "type": "Point"}, "id": "1796", "properties": {"Object ID": 574294739, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93659095, 32.770183291, -79.93659095, 32.770183291], "geometry": {"coordinates": [-79.93659095, 32.770183291], "type": "Point"}, "id": "1797", "properties": {"Object ID": 574294742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9363766, 32.770164995, -79.9363766, 32.770164995], "geometry": {"coordinates": [-79.9363766, 32.770164995], "type": "Point"}, "id": "1798", "properties": {"Object ID": 574294743, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93696293, 32.770279971, -79.93696293, 32.770279971], "geometry": {"coordinates": [-79.93696293, 32.770279971], "type": "Point"}, "id": "1799", "properties": {"Object ID": 574294744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93715494, 32.770315545, -79.93715494, 32.770315545], "geometry": {"coordinates": [-79.93715494, 32.770315545], "type": "Point"}, "id": "1800", "properties": {"Object ID": 574294745, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93557849, 32.770569252, -79.93557849, 32.770569252], "geometry": {"coordinates": [-79.93557849, 32.770569252], "type": "Point"}, "id": "1801", "properties": {"Object ID": 574294752, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191241, 32.770725118, -79.93191241, 32.770725118], "geometry": {"coordinates": [-79.93191241, 32.770725118], "type": "Point"}, "id": "1802", "properties": {"Object ID": 574372695, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93144243, 32.770732137, -79.93144243, 32.770732137], "geometry": {"coordinates": [-79.93144243, 32.770732137], "type": "Point"}, "id": "1803", "properties": {"Object ID": 574372699, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93178436, 32.770928248, -79.93178436, 32.770928248], "geometry": {"coordinates": [-79.93178436, 32.770928248], "type": "Point"}, "id": "1804", "properties": {"Object ID": 574372703, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93803994, 32.770742535, -79.93803994, 32.770742535], "geometry": {"coordinates": [-79.93803994, 32.770742535], "type": "Point"}, "id": "1805", "properties": {"Object ID": 574409951, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93818981, 32.770817699, -79.93818981, 32.770817699], "geometry": {"coordinates": [-79.93818981, 32.770817699], "type": "Point"}, "id": "1806", "properties": {"Object ID": 574409953, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93816717, 32.771254553, -79.93816717, 32.771254553], "geometry": {"coordinates": [-79.93816717, 32.771254553], "type": "Point"}, "id": "1807", "properties": {"Object ID": 574409963, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93439626, 32.770505466, -79.93439626, 32.770505466], "geometry": {"coordinates": [-79.93439626, 32.770505466], "type": "Point"}, "id": "1808", "properties": {"Object ID": 574476696, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1809", "properties": {"Object ID": 574476712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1810", "properties": {"Object ID": 574476726, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1811", "properties": {"Object ID": 574476732, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1812", "properties": {"Object ID": 574476743, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1813", "properties": {"Object ID": 574476753, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1814", "properties": {"Object ID": 574476755, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1815", "properties": {"Object ID": 574476757, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1816", "properties": {"Object ID": 574476765, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1817", "properties": {"Object ID": 574476771, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1818", "properties": {"Object ID": 574476796, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1819", "properties": {"Object ID": 574476809, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92881418, 32.770269817, -79.92881418, 32.770269817], "geometry": {"coordinates": [-79.92881418, 32.770269817], "type": "Point"}, "id": "1820", "properties": {"Object ID": 574476813, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93337915, 32.770923728, -79.93337915, 32.770923728], "geometry": {"coordinates": [-79.93337915, 32.770923728], "type": "Point"}, "id": "1821", "properties": {"Object ID": 574486927, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93318093, 32.770926003, -79.93318093, 32.770926003], "geometry": {"coordinates": [-79.93318093, 32.770926003], "type": "Point"}, "id": "1822", "properties": {"Object ID": 574486929, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93665313, 32.769943237, -79.93665313, 32.769943237], "geometry": {"coordinates": [-79.93665313, 32.769943237], "type": "Point"}, "id": "1823", "properties": {"Object ID": 574507806, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93293388, 32.779311996, -79.93293388, 32.779311996], "geometry": {"coordinates": [-79.93293388, 32.779311996], "type": "Point"}, "id": "1824", "properties": {"Object ID": 573387896, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93530052, 32.779386435, -79.93530052, 32.779386435], "geometry": {"coordinates": [-79.93530052, 32.779386435], "type": "Point"}, "id": "1825", "properties": {"Object ID": 573789120, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93692948, 32.776556451, -79.93692948, 32.776556451], "geometry": {"coordinates": [-79.93692948, 32.776556451], "type": "Point"}, "id": "1826", "properties": {"Object ID": 573789176, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93817055, 32.776638893, -79.93817055, 32.776638893], "geometry": {"coordinates": [-79.93817055, 32.776638893], "type": "Point"}, "id": "1827", "properties": {"Object ID": 573789446, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93979767, 32.777307076, -79.93979767, 32.777307076], "geometry": {"coordinates": [-79.93979767, 32.777307076], "type": "Point"}, "id": "1828", "properties": {"Object ID": 573795669, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94056852, 32.778051788, -79.94056852, 32.778051788], "geometry": {"coordinates": [-79.94056852, 32.778051788], "type": "Point"}, "id": "1829", "properties": {"Object ID": 573795689, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93980207, 32.77824427, -79.93980207, 32.77824427], "geometry": {"coordinates": [-79.93980207, 32.77824427], "type": "Point"}, "id": "1830", "properties": {"Object ID": 573795693, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94331842, 32.777717081, -79.94331842, 32.777717081], "geometry": {"coordinates": [-79.94331842, 32.777717081], "type": "Point"}, "id": "1831", "properties": {"Object ID": 573806315, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93651901, 32.77729427, -79.93651901, 32.77729427], "geometry": {"coordinates": [-79.93651901, 32.77729427], "type": "Point"}, "id": "1832", "properties": {"Object ID": 574268957, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9369969, 32.778972482, -79.9369969, 32.778972482], "geometry": {"coordinates": [-79.9369969, 32.778972482], "type": "Point"}, "id": "1833", "properties": {"Object ID": 574294730, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94000387, 32.779025358, -79.94000387, 32.779025358], "geometry": {"coordinates": [-79.94000387, 32.779025358], "type": "Point"}, "id": "1834", "properties": {"Object ID": 574295951, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93377103, 32.777801582, -79.93377103, 32.777801582], "geometry": {"coordinates": [-79.93377103, 32.777801582], "type": "Point"}, "id": "1835", "properties": {"Object ID": 574371656, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93563199, 32.778725566, -79.93563199, 32.778725566], "geometry": {"coordinates": [-79.93563199, 32.778725566], "type": "Point"}, "id": "1836", "properties": {"Object ID": 574371793, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93531382, 32.778704309, -79.93531382, 32.778704309], "geometry": {"coordinates": [-79.93531382, 32.778704309], "type": "Point"}, "id": "1837", "properties": {"Object ID": 574371795, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93894709, 32.779440076, -79.93894709, 32.779440076], "geometry": {"coordinates": [-79.93894709, 32.779440076], "type": "Point"}, "id": "1838", "properties": {"Object ID": 574409911, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9332883, 32.779098746, -79.9332883, 32.779098746], "geometry": {"coordinates": [-79.9332883, 32.779098746], "type": "Point"}, "id": "1839", "properties": {"Object ID": 574460961, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92619257, 32.779171671, -79.92619257, 32.779171671], "geometry": {"coordinates": [-79.92619257, 32.779171671], "type": "Point"}, "id": "1840", "properties": {"Object ID": 574461306, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9391611, 32.778882308, -79.9391611, 32.778882308], "geometry": {"coordinates": [-79.9391611, 32.778882308], "type": "Point"}, "id": "1841", "properties": {"Object ID": 574486720, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92679108, 32.778909003, -79.92679108, 32.778909003], "geometry": {"coordinates": [-79.92679108, 32.778909003], "type": "Point"}, "id": "1842", "properties": {"Object ID": 574488722, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1843", "properties": {"Object ID": 574488739, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92647017, 32.778019617, -79.92647017, 32.778019617], "geometry": {"coordinates": [-79.92647017, 32.778019617], "type": "Point"}, "id": "1844", "properties": {"Object ID": 574488777, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "1845", "properties": {"Object ID": 574488783, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92585281, 32.776543046, -79.92585281, 32.776543046], "geometry": {"coordinates": [-79.92585281, 32.776543046], "type": "Point"}, "id": "1846", "properties": {"Object ID": 574488814, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92855347, 32.780772815, -79.92855347, 32.780772815], "geometry": {"coordinates": [-79.92855347, 32.780772815], "type": "Point"}, "id": "1847", "properties": {"Object ID": 573463565, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9373317, 32.780090392, -79.9373317, 32.780090392], "geometry": {"coordinates": [-79.9373317, 32.780090392], "type": "Point"}, "id": "1848", "properties": {"Object ID": 573850809, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9342548, 32.779930537, -79.9342548, 32.779930537], "geometry": {"coordinates": [-79.9342548, 32.779930537], "type": "Point"}, "id": "1849", "properties": {"Object ID": 574446521, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92839527, 32.77175843, -79.92839527, 32.77175843], "geometry": {"coordinates": [-79.92839527, 32.77175843], "type": "Point"}, "id": "1850", "properties": {"Object ID": 573467722, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92886798, 32.771255592, -79.92886798, 32.771255592], "geometry": {"coordinates": [-79.92886798, 32.771255592], "type": "Point"}, "id": "1851", "properties": {"Object ID": 573467732, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92932936, 32.771292152, -79.92932936, 32.771292152], "geometry": {"coordinates": [-79.92932936, 32.771292152], "type": "Point"}, "id": "1852", "properties": {"Object ID": 573467733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92848113, 32.771312249, -79.92848113, 32.771312249], "geometry": {"coordinates": [-79.92848113, 32.771312249], "type": "Point"}, "id": "1853", "properties": {"Object ID": 573467734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92894471, 32.771386915, -79.92894471, 32.771386915], "geometry": {"coordinates": [-79.92894471, 32.771386915], "type": "Point"}, "id": "1854", "properties": {"Object ID": 573467736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92832596, 32.771470143, -79.92832596, 32.771470143], "geometry": {"coordinates": [-79.92832596, 32.771470143], "type": "Point"}, "id": "1855", "properties": {"Object ID": 573467738, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9292999, 32.771727703, -79.9292999, 32.771727703], "geometry": {"coordinates": [-79.9292999, 32.771727703], "type": "Point"}, "id": "1856", "properties": {"Object ID": 573467739, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92859359, 32.771977228, -79.92859359, 32.771977228], "geometry": {"coordinates": [-79.92859359, 32.771977228], "type": "Point"}, "id": "1857", "properties": {"Object ID": 573467742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92932355, 32.771940541, -79.92932355, 32.771940541], "geometry": {"coordinates": [-79.92932355, 32.771940541], "type": "Point"}, "id": "1858", "properties": {"Object ID": 573467743, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92846362, 32.771931572, -79.92846362, 32.771931572], "geometry": {"coordinates": [-79.92846362, 32.771931572], "type": "Point"}, "id": "1859", "properties": {"Object ID": 573467744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92782068, 32.773933524, -79.92782068, 32.773933524], "geometry": {"coordinates": [-79.92782068, 32.773933524], "type": "Point"}, "id": "1860", "properties": {"Object ID": 573779301, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92787285, 32.772877067, -79.92787285, 32.772877067], "geometry": {"coordinates": [-79.92787285, 32.772877067], "type": "Point"}, "id": "1861", "properties": {"Object ID": 573779305, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92841825, 32.773283159, -79.92841825, 32.773283159], "geometry": {"coordinates": [-79.92841825, 32.773283159], "type": "Point"}, "id": "1862", "properties": {"Object ID": 573779321, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92756653, 32.773396037, -79.92756653, 32.773396037], "geometry": {"coordinates": [-79.92756653, 32.773396037], "type": "Point"}, "id": "1863", "properties": {"Object ID": 573779325, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92875409, 32.773430464, -79.92875409, 32.773430464], "geometry": {"coordinates": [-79.92875409, 32.773430464], "type": "Point"}, "id": "1864", "properties": {"Object ID": 573779327, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92869197, 32.773984497, -79.92869197, 32.773984497], "geometry": {"coordinates": [-79.92869197, 32.773984497], "type": "Point"}, "id": "1865", "properties": {"Object ID": 573779351, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92784061, 32.774047305, -79.92784061, 32.774047305], "geometry": {"coordinates": [-79.92784061, 32.774047305], "type": "Point"}, "id": "1866", "properties": {"Object ID": 573779353, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92877971, 32.77408881, -79.92877971, 32.77408881], "geometry": {"coordinates": [-79.92877971, 32.77408881], "type": "Point"}, "id": "1867", "properties": {"Object ID": 573779355, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9277353, 32.774140817, -79.9277353, 32.774140817], "geometry": {"coordinates": [-79.9277353, 32.774140817], "type": "Point"}, "id": "1868", "properties": {"Object ID": 573779359, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92891834, 32.774557236, -79.92891834, 32.774557236], "geometry": {"coordinates": [-79.92891834, 32.774557236], "type": "Point"}, "id": "1869", "properties": {"Object ID": 573779383, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92888873, 32.774850575, -79.92888873, 32.774850575], "geometry": {"coordinates": [-79.92888873, 32.774850575], "type": "Point"}, "id": "1870", "properties": {"Object ID": 573779403, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92757123, 32.774902404, -79.92757123, 32.774902404], "geometry": {"coordinates": [-79.92757123, 32.774902404], "type": "Point"}, "id": "1871", "properties": {"Object ID": 573779417, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92837271, 32.774865757, -79.92837271, 32.774865757], "geometry": {"coordinates": [-79.92837271, 32.774865757], "type": "Point"}, "id": "1872", "properties": {"Object ID": 573779419, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92778363, 32.774850814, -79.92778363, 32.774850814], "geometry": {"coordinates": [-79.92778363, 32.774850814], "type": "Point"}, "id": "1873", "properties": {"Object ID": 573779421, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92786915, 32.77868531, -79.92786915, 32.77868531], "geometry": {"coordinates": [-79.92786915, 32.77868531], "type": "Point"}, "id": "1874", "properties": {"Object ID": 573779428, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92795311, 32.778779648, -79.92795311, 32.778779648], "geometry": {"coordinates": [-79.92795311, 32.778779648], "type": "Point"}, "id": "1875", "properties": {"Object ID": 573779429, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92774785, 32.779257139, -79.92774785, 32.779257139], "geometry": {"coordinates": [-79.92774785, 32.779257139], "type": "Point"}, "id": "1876", "properties": {"Object ID": 573782384, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92915151, 32.772201636, -79.92915151, 32.772201636], "geometry": {"coordinates": [-79.92915151, 32.772201636], "type": "Point"}, "id": "1877", "properties": {"Object ID": 573782421, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92853749, 32.772504844, -79.92853749, 32.772504844], "geometry": {"coordinates": [-79.92853749, 32.772504844], "type": "Point"}, "id": "1878", "properties": {"Object ID": 573782433, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92914102, 32.773005501, -79.92914102, 32.773005501], "geometry": {"coordinates": [-79.92914102, 32.773005501], "type": "Point"}, "id": "1879", "properties": {"Object ID": 573782455, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92912196, 32.77820043, -79.92912196, 32.77820043], "geometry": {"coordinates": [-79.92912196, 32.77820043], "type": "Point"}, "id": "1880", "properties": {"Object ID": 573782499, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92896674, 32.7750519, -79.92896674, 32.7750519], "geometry": {"coordinates": [-79.92896674, 32.7750519], "type": "Point"}, "id": "1881", "properties": {"Object ID": 573782518, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92895295, 32.77527119, -79.92895295, 32.77527119], "geometry": {"coordinates": [-79.92895295, 32.77527119], "type": "Point"}, "id": "1882", "properties": {"Object ID": 573782526, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92890484, 32.775611061, -79.92890484, 32.775611061], "geometry": {"coordinates": [-79.92890484, 32.775611061], "type": "Point"}, "id": "1883", "properties": {"Object ID": 573782538, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92892324, 32.775748633, -79.92892324, 32.775748633], "geometry": {"coordinates": [-79.92892324, 32.775748633], "type": "Point"}, "id": "1884", "properties": {"Object ID": 573782542, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92901056, 32.775913829, -79.92901056, 32.775913829], "geometry": {"coordinates": [-79.92901056, 32.775913829], "type": "Point"}, "id": "1885", "properties": {"Object ID": 573782546, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92852646, 32.775996194, -79.92852646, 32.775996194], "geometry": {"coordinates": [-79.92852646, 32.775996194], "type": "Point"}, "id": "1886", "properties": {"Object ID": 573782552, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92842969, 32.775998919, -79.92842969, 32.775998919], "geometry": {"coordinates": [-79.92842969, 32.775998919], "type": "Point"}, "id": "1887", "properties": {"Object ID": 573782556, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92919661, 32.773246526, -79.92919661, 32.773246526], "geometry": {"coordinates": [-79.92919661, 32.773246526], "type": "Point"}, "id": "1888", "properties": {"Object ID": 573783132, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92915162, 32.773339051, -79.92915162, 32.773339051], "geometry": {"coordinates": [-79.92915162, 32.773339051], "type": "Point"}, "id": "1889", "properties": {"Object ID": 573783134, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92919826, 32.773991919, -79.92919826, 32.773991919], "geometry": {"coordinates": [-79.92919826, 32.773991919], "type": "Point"}, "id": "1890", "properties": {"Object ID": 573783153, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9269, 32.7765165, -79.9269, 32.7765165], "geometry": {"coordinates": [-79.9269, 32.7765165], "type": "Point"}, "id": "1891", "properties": {"Object ID": 573818745, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92774466, 32.777705241, -79.92774466, 32.777705241], "geometry": {"coordinates": [-79.92774466, 32.777705241], "type": "Point"}, "id": "1892", "properties": {"Object ID": 573827138, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92666523, 32.773779002, -79.92666523, 32.773779002], "geometry": {"coordinates": [-79.92666523, 32.773779002], "type": "Point"}, "id": "1893", "properties": {"Object ID": 574267648, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92562107, 32.773965888, -79.92562107, 32.773965888], "geometry": {"coordinates": [-79.92562107, 32.773965888], "type": "Point"}, "id": "1894", "properties": {"Object ID": 574267650, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92716263, 32.773225239, -79.92716263, 32.773225239], "geometry": {"coordinates": [-79.92716263, 32.773225239], "type": "Point"}, "id": "1895", "properties": {"Object ID": 574267654, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92737716, 32.775389231, -79.92737716, 32.775389231], "geometry": {"coordinates": [-79.92737716, 32.775389231], "type": "Point"}, "id": "1896", "properties": {"Object ID": 574267745, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9278474, 32.776061698, -79.9278474, 32.776061698], "geometry": {"coordinates": [-79.9278474, 32.776061698], "type": "Point"}, "id": "1897", "properties": {"Object ID": 574268003, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92734544, 32.775819117, -79.92734544, 32.775819117], "geometry": {"coordinates": [-79.92734544, 32.775819117], "type": "Point"}, "id": "1898", "properties": {"Object ID": 574268007, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92783782, 32.775810255, -79.92783782, 32.775810255], "geometry": {"coordinates": [-79.92783782, 32.775810255], "type": "Point"}, "id": "1899", "properties": {"Object ID": 574268009, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92732289, 32.775916661, -79.92732289, 32.775916661], "geometry": {"coordinates": [-79.92732289, 32.775916661], "type": "Point"}, "id": "1900", "properties": {"Object ID": 574268011, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92940177, 32.775627813, -79.92940177, 32.775627813], "geometry": {"coordinates": [-79.92940177, 32.775627813], "type": "Point"}, "id": "1901", "properties": {"Object ID": 574346728, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92934753, 32.774969361, -79.92934753, 32.774969361], "geometry": {"coordinates": [-79.92934753, 32.774969361], "type": "Point"}, "id": "1902", "properties": {"Object ID": 574346736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9294061, 32.775727513, -79.9294061, 32.775727513], "geometry": {"coordinates": [-79.9294061, 32.775727513], "type": "Point"}, "id": "1903", "properties": {"Object ID": 574346749, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92929411, 32.775350895, -79.92929411, 32.775350895], "geometry": {"coordinates": [-79.92929411, 32.775350895], "type": "Point"}, "id": "1904", "properties": {"Object ID": 574346757, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92694287, 32.784158743, -79.92694287, 32.784158743], "geometry": {"coordinates": [-79.92694287, 32.784158743], "type": "Point"}, "id": "1905", "properties": {"Object ID": 574372318, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92577921, 32.777325014, -79.92577921, 32.777325014], "geometry": {"coordinates": [-79.92577921, 32.777325014], "type": "Point"}, "id": "1906", "properties": {"Object ID": 574372322, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92592834, 32.776862369, -79.92592834, 32.776862369], "geometry": {"coordinates": [-79.92592834, 32.776862369], "type": "Point"}, "id": "1907", "properties": {"Object ID": 574372324, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92607839, 32.775803443, -79.92607839, 32.775803443], "geometry": {"coordinates": [-79.92607839, 32.775803443], "type": "Point"}, "id": "1908", "properties": {"Object ID": 574372380, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92668835, 32.775800728, -79.92668835, 32.775800728], "geometry": {"coordinates": [-79.92668835, 32.775800728], "type": "Point"}, "id": "1909", "properties": {"Object ID": 574372381, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "1910", "properties": {"Object ID": 574372396, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "1911", "properties": {"Object ID": 574372398, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "1912", "properties": {"Object ID": 574372405, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92902475, 32.776264226, -79.92902475, 32.776264226], "geometry": {"coordinates": [-79.92902475, 32.776264226], "type": "Point"}, "id": "1913", "properties": {"Object ID": 574372444, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92830278, 32.776202619, -79.92830278, 32.776202619], "geometry": {"coordinates": [-79.92830278, 32.776202619], "type": "Point"}, "id": "1914", "properties": {"Object ID": 574372450, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92830278, 32.776202619, -79.92830278, 32.776202619], "geometry": {"coordinates": [-79.92830278, 32.776202619], "type": "Point"}, "id": "1915", "properties": {"Object ID": 574372451, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92780897, 32.776260517, -79.92780897, 32.776260517], "geometry": {"coordinates": [-79.92780897, 32.776260517], "type": "Point"}, "id": "1916", "properties": {"Object ID": 574372454, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92849911, 32.776440239, -79.92849911, 32.776440239], "geometry": {"coordinates": [-79.92849911, 32.776440239], "type": "Point"}, "id": "1917", "properties": {"Object ID": 574372460, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92861993, 32.776165771, -79.92861993, 32.776165771], "geometry": {"coordinates": [-79.92861993, 32.776165771], "type": "Point"}, "id": "1918", "properties": {"Object ID": 574372468, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92799631, 32.776307158, -79.92799631, 32.776307158], "geometry": {"coordinates": [-79.92799631, 32.776307158], "type": "Point"}, "id": "1919", "properties": {"Object ID": 574372469, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92881546, 32.776447296, -79.92881546, 32.776447296], "geometry": {"coordinates": [-79.92881546, 32.776447296], "type": "Point"}, "id": "1920", "properties": {"Object ID": 574372470, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92881546, 32.776447296, -79.92881546, 32.776447296], "geometry": {"coordinates": [-79.92881546, 32.776447296], "type": "Point"}, "id": "1921", "properties": {"Object ID": 574372471, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92936348, 32.776171244, -79.92936348, 32.776171244], "geometry": {"coordinates": [-79.92936348, 32.776171244], "type": "Point"}, "id": "1922", "properties": {"Object ID": 574372537, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92936348, 32.776171244, -79.92936348, 32.776171244], "geometry": {"coordinates": [-79.92936348, 32.776171244], "type": "Point"}, "id": "1923", "properties": {"Object ID": 574372541, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92577065, 32.7783565, -79.92577065, 32.7783565], "geometry": {"coordinates": [-79.92577065, 32.7783565], "type": "Point"}, "id": "1924", "properties": {"Object ID": 574421609, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92691392, 32.775561673, -79.92691392, 32.775561673], "geometry": {"coordinates": [-79.92691392, 32.775561673], "type": "Point"}, "id": "1925", "properties": {"Object ID": 574421624, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9287642, 32.777334067, -79.9287642, 32.777334067], "geometry": {"coordinates": [-79.9287642, 32.777334067], "type": "Point"}, "id": "1926", "properties": {"Object ID": 574421661, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92846361, 32.776973025, -79.92846361, 32.776973025], "geometry": {"coordinates": [-79.92846361, 32.776973025], "type": "Point"}, "id": "1927", "properties": {"Object ID": 574421675, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92846361, 32.776973025, -79.92846361, 32.776973025], "geometry": {"coordinates": [-79.92846361, 32.776973025], "type": "Point"}, "id": "1928", "properties": {"Object ID": 574421685, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92910129, 32.777397915, -79.92910129, 32.777397915], "geometry": {"coordinates": [-79.92910129, 32.777397915], "type": "Point"}, "id": "1929", "properties": {"Object ID": 574421694, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92806239, 32.777533498, -79.92806239, 32.777533498], "geometry": {"coordinates": [-79.92806239, 32.777533498], "type": "Point"}, "id": "1930", "properties": {"Object ID": 574421702, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92805585, 32.777391231, -79.92805585, 32.777391231], "geometry": {"coordinates": [-79.92805585, 32.777391231], "type": "Point"}, "id": "1931", "properties": {"Object ID": 574421704, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92801597, 32.777036402, -79.92801597, 32.777036402], "geometry": {"coordinates": [-79.92801597, 32.777036402], "type": "Point"}, "id": "1932", "properties": {"Object ID": 574421708, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92801597, 32.777036402, -79.92801597, 32.777036402], "geometry": {"coordinates": [-79.92801597, 32.777036402], "type": "Point"}, "id": "1933", "properties": {"Object ID": 574421712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92801597, 32.777036402, -79.92801597, 32.777036402], "geometry": {"coordinates": [-79.92801597, 32.777036402], "type": "Point"}, "id": "1934", "properties": {"Object ID": 574421714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92857452, 32.78132147, -79.92857452, 32.78132147], "geometry": {"coordinates": [-79.92857452, 32.78132147], "type": "Point"}, "id": "1935", "properties": {"Object ID": 574431312, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92664858, 32.779055723, -79.92664858, 32.779055723], "geometry": {"coordinates": [-79.92664858, 32.779055723], "type": "Point"}, "id": "1936", "properties": {"Object ID": 574435921, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92692192, 32.77999463, -79.92692192, 32.77999463], "geometry": {"coordinates": [-79.92692192, 32.77999463], "type": "Point"}, "id": "1937", "properties": {"Object ID": 574435934, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92640322, 32.776823374, -79.92640322, 32.776823374], "geometry": {"coordinates": [-79.92640322, 32.776823374], "type": "Point"}, "id": "1938", "properties": {"Object ID": 574437141, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92922092, 32.779011193, -79.92922092, 32.779011193], "geometry": {"coordinates": [-79.92922092, 32.779011193], "type": "Point"}, "id": "1939", "properties": {"Object ID": 574446471, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92744911, 32.778311544, -79.92744911, 32.778311544], "geometry": {"coordinates": [-79.92744911, 32.778311544], "type": "Point"}, "id": "1940", "properties": {"Object ID": 574446479, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92744911, 32.778311544, -79.92744911, 32.778311544], "geometry": {"coordinates": [-79.92744911, 32.778311544], "type": "Point"}, "id": "1941", "properties": {"Object ID": 574446481, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9265575, 32.7779802, -79.9265575, 32.7779802], "geometry": {"coordinates": [-79.9265575, 32.7779802], "type": "Point"}, "id": "1942", "properties": {"Object ID": 574453710, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92653241, 32.777628862, -79.92653241, 32.777628862], "geometry": {"coordinates": [-79.92653241, 32.777628862], "type": "Point"}, "id": "1943", "properties": {"Object ID": 574455175, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92792712, 32.782317497, -79.92792712, 32.782317497], "geometry": {"coordinates": [-79.92792712, 32.782317497], "type": "Point"}, "id": "1944", "properties": {"Object ID": 574461019, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92896336, 32.775975959, -79.92896336, 32.775975959], "geometry": {"coordinates": [-79.92896336, 32.775975959], "type": "Point"}, "id": "1945", "properties": {"Object ID": 574461081, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92806298, 32.777600684, -79.92806298, 32.777600684], "geometry": {"coordinates": [-79.92806298, 32.777600684], "type": "Point"}, "id": "1946", "properties": {"Object ID": 574461083, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92764633, 32.776580021, -79.92764633, 32.776580021], "geometry": {"coordinates": [-79.92764633, 32.776580021], "type": "Point"}, "id": "1947", "properties": {"Object ID": 574461095, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92700615, 32.781478363, -79.92700615, 32.781478363], "geometry": {"coordinates": [-79.92700615, 32.781478363], "type": "Point"}, "id": "1948", "properties": {"Object ID": 574461284, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681259, 32.780233741, -79.92681259, 32.780233741], "geometry": {"coordinates": [-79.92681259, 32.780233741], "type": "Point"}, "id": "1949", "properties": {"Object ID": 574461289, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681259, 32.780233741, -79.92681259, 32.780233741], "geometry": {"coordinates": [-79.92681259, 32.780233741], "type": "Point"}, "id": "1950", "properties": {"Object ID": 574461292, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92756366, 32.778200602, -79.92756366, 32.778200602], "geometry": {"coordinates": [-79.92756366, 32.778200602], "type": "Point"}, "id": "1951", "properties": {"Object ID": 574461300, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92670704, 32.778289721, -79.92670704, 32.778289721], "geometry": {"coordinates": [-79.92670704, 32.778289721], "type": "Point"}, "id": "1952", "properties": {"Object ID": 574461308, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92653372, 32.77762264, -79.92653372, 32.77762264], "geometry": {"coordinates": [-79.92653372, 32.77762264], "type": "Point"}, "id": "1953", "properties": {"Object ID": 574461312, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92724016, 32.776689036, -79.92724016, 32.776689036], "geometry": {"coordinates": [-79.92724016, 32.776689036], "type": "Point"}, "id": "1954", "properties": {"Object ID": 574461314, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "1955", "properties": {"Object ID": 574488656, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "1956", "properties": {"Object ID": 574488667, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "1957", "properties": {"Object ID": 574488671, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92848388, 32.778727006, -79.92848388, 32.778727006], "geometry": {"coordinates": [-79.92848388, 32.778727006], "type": "Point"}, "id": "1958", "properties": {"Object ID": 574488682, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92879983, 32.778170178, -79.92879983, 32.778170178], "geometry": {"coordinates": [-79.92879983, 32.778170178], "type": "Point"}, "id": "1959", "properties": {"Object ID": 574488689, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "1960", "properties": {"Object ID": 574488709, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "1961", "properties": {"Object ID": 574488716, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92777941, 32.778286286, -79.92777941, 32.778286286], "geometry": {"coordinates": [-79.92777941, 32.778286286], "type": "Point"}, "id": "1962", "properties": {"Object ID": 574488720, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92670704, 32.778289721, -79.92670704, 32.778289721], "geometry": {"coordinates": [-79.92670704, 32.778289721], "type": "Point"}, "id": "1963", "properties": {"Object ID": 574488725, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1964", "properties": {"Object ID": 574488735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1965", "properties": {"Object ID": 574488749, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1966", "properties": {"Object ID": 574488752, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1967", "properties": {"Object ID": 574488754, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1968", "properties": {"Object ID": 574488759, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1969", "properties": {"Object ID": 574488762, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1970", "properties": {"Object ID": 574488763, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1971", "properties": {"Object ID": 574488764, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92896336, 32.775975959, -79.92896336, 32.775975959], "geometry": {"coordinates": [-79.92896336, 32.775975959], "type": "Point"}, "id": "1972", "properties": {"Object ID": 574488772, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92799481, 32.777083557, -79.92799481, 32.777083557], "geometry": {"coordinates": [-79.92799481, 32.777083557], "type": "Point"}, "id": "1973", "properties": {"Object ID": 574488774, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92799481, 32.777083557, -79.92799481, 32.777083557], "geometry": {"coordinates": [-79.92799481, 32.777083557], "type": "Point"}, "id": "1974", "properties": {"Object ID": 574488775, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "1975", "properties": {"Object ID": 574488780, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "1976", "properties": {"Object ID": 574488786, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "1977", "properties": {"Object ID": 574488795, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "1978", "properties": {"Object ID": 574488799, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92734658, 32.77619729, -79.92734658, 32.77619729], "geometry": {"coordinates": [-79.92734658, 32.77619729], "type": "Point"}, "id": "1979", "properties": {"Object ID": 574488808, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92742942, 32.776022606, -79.92742942, 32.776022606], "geometry": {"coordinates": [-79.92742942, 32.776022606], "type": "Point"}, "id": "1980", "properties": {"Object ID": 574488809, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92738736, 32.776097531, -79.92738736, 32.776097531], "geometry": {"coordinates": [-79.92738736, 32.776097531], "type": "Point"}, "id": "1981", "properties": {"Object ID": 574488810, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9256622, 32.776723864, -79.9256622, 32.776723864], "geometry": {"coordinates": [-79.9256622, 32.776723864], "type": "Point"}, "id": "1982", "properties": {"Object ID": 574488812, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92571506, 32.7763831, -79.92571506, 32.7763831], "geometry": {"coordinates": [-79.92571506, 32.7763831], "type": "Point"}, "id": "1983", "properties": {"Object ID": 574488815, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9267068, 32.776164736, -79.9267068, 32.776164736], "geometry": {"coordinates": [-79.9267068, 32.776164736], "type": "Point"}, "id": "1984", "properties": {"Object ID": 574488821, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9267068, 32.776164736, -79.9267068, 32.776164736], "geometry": {"coordinates": [-79.9267068, 32.776164736], "type": "Point"}, "id": "1985", "properties": {"Object ID": 574488822, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9267068, 32.776164736, -79.9267068, 32.776164736], "geometry": {"coordinates": [-79.9267068, 32.776164736], "type": "Point"}, "id": "1986", "properties": {"Object ID": 574488823, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9267068, 32.776164736, -79.9267068, 32.776164736], "geometry": {"coordinates": [-79.9267068, 32.776164736], "type": "Point"}, "id": "1987", "properties": {"Object ID": 574488824, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92685983, 32.775842692, -79.92685983, 32.775842692], "geometry": {"coordinates": [-79.92685983, 32.775842692], "type": "Point"}, "id": "1988", "properties": {"Object ID": 574488825, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92649226, 32.775833863, -79.92649226, 32.775833863], "geometry": {"coordinates": [-79.92649226, 32.775833863], "type": "Point"}, "id": "1989", "properties": {"Object ID": 574488827, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578214, 32.776215491, -79.92578214, 32.776215491], "geometry": {"coordinates": [-79.92578214, 32.776215491], "type": "Point"}, "id": "1990", "properties": {"Object ID": 574488829, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92814562, 32.775228597, -79.92814562, 32.775228597], "geometry": {"coordinates": [-79.92814562, 32.775228597], "type": "Point"}, "id": "1991", "properties": {"Object ID": 574488840, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92700922, 32.775346997, -79.92700922, 32.775346997], "geometry": {"coordinates": [-79.92700922, 32.775346997], "type": "Point"}, "id": "1992", "properties": {"Object ID": 574488847, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92683941, 32.775533158, -79.92683941, 32.775533158], "geometry": {"coordinates": [-79.92683941, 32.775533158], "type": "Point"}, "id": "1993", "properties": {"Object ID": 574488852, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92636701, 32.775569886, -79.92636701, 32.775569886], "geometry": {"coordinates": [-79.92636701, 32.775569886], "type": "Point"}, "id": "1994", "properties": {"Object ID": 574488854, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92690681, 32.775344252, -79.92690681, 32.775344252], "geometry": {"coordinates": [-79.92690681, 32.775344252], "type": "Point"}, "id": "1995", "properties": {"Object ID": 574488855, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92628827, 32.775415889, -79.92628827, 32.775415889], "geometry": {"coordinates": [-79.92628827, 32.775415889], "type": "Point"}, "id": "1996", "properties": {"Object ID": 574488856, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.926143, 32.775422751, -79.926143, 32.775422751], "geometry": {"coordinates": [-79.926143, 32.775422751], "type": "Point"}, "id": "1997", "properties": {"Object ID": 574488859, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92766193, 32.773486846, -79.92766193, 32.773486846], "geometry": {"coordinates": [-79.92766193, 32.773486846], "type": "Point"}, "id": "1998", "properties": {"Object ID": 574488865, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283837, 32.772998391, -79.9283837, 32.772998391], "geometry": {"coordinates": [-79.9283837, 32.772998391], "type": "Point"}, "id": "1999", "properties": {"Object ID": 574488870, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92794778, 32.772289916, -79.92794778, 32.772289916], "geometry": {"coordinates": [-79.92794778, 32.772289916], "type": "Point"}, "id": "2000", "properties": {"Object ID": 574488876, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93659774, 32.776592992, -79.93659774, 32.776592992], "geometry": {"coordinates": [-79.93659774, 32.776592992], "type": "Point"}, "id": "2001", "properties": {"Object ID": 573789177, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93605361, 32.776611861, -79.93605361, 32.776611861], "geometry": {"coordinates": [-79.93605361, 32.776611861], "type": "Point"}, "id": "2002", "properties": {"Object ID": 573789182, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9373959, 32.772732826, -79.9373959, 32.772732826], "geometry": {"coordinates": [-79.9373959, 32.772732826], "type": "Point"}, "id": "2003", "properties": {"Object ID": 573789230, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93783418, 32.77538463, -79.93783418, 32.77538463], "geometry": {"coordinates": [-79.93783418, 32.77538463], "type": "Point"}, "id": "2004", "properties": {"Object ID": 573789352, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93592765, 32.773472617, -79.93592765, 32.773472617], "geometry": {"coordinates": [-79.93592765, 32.773472617], "type": "Point"}, "id": "2005", "properties": {"Object ID": 573850100, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93621765, 32.77424536, -79.93621765, 32.77424536], "geometry": {"coordinates": [-79.93621765, 32.77424536], "type": "Point"}, "id": "2006", "properties": {"Object ID": 574268763, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93592034, 32.771328781, -79.93592034, 32.771328781], "geometry": {"coordinates": [-79.93592034, 32.771328781], "type": "Point"}, "id": "2007", "properties": {"Object ID": 574268903, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93750411, 32.770496187, -79.93750411, 32.770496187], "geometry": {"coordinates": [-79.93750411, 32.770496187], "type": "Point"}, "id": "2008", "properties": {"Object ID": 574294748, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93651909, 32.772544069, -79.93651909, 32.772544069], "geometry": {"coordinates": [-79.93651909, 32.772544069], "type": "Point"}, "id": "2009", "properties": {"Object ID": 574371898, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93598957, 32.773950257, -79.93598957, 32.773950257], "geometry": {"coordinates": [-79.93598957, 32.773950257], "type": "Point"}, "id": "2010", "properties": {"Object ID": 574486883, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93256952, 32.776031415, -79.93256952, 32.776031415], "geometry": {"coordinates": [-79.93256952, 32.776031415], "type": "Point"}, "id": "2011", "properties": {"Object ID": 573831738, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92873639, 32.771904013, -79.92873639, 32.771904013], "geometry": {"coordinates": [-79.92873639, 32.771904013], "type": "Point"}, "id": "2012", "properties": {"Object ID": 573467740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92930477, 32.772638939, -79.92930477, 32.772638939], "geometry": {"coordinates": [-79.92930477, 32.772638939], "type": "Point"}, "id": "2013", "properties": {"Object ID": 573782439, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92966834, 32.770848671, -79.92966834, 32.770848671], "geometry": {"coordinates": [-79.92966834, 32.770848671], "type": "Point"}, "id": "2014", "properties": {"Object ID": 573783423, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93484331, 32.770478466, -79.93484331, 32.770478466], "geometry": {"coordinates": [-79.93484331, 32.770478466], "type": "Point"}, "id": "2015", "properties": {"Object ID": 574268606, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93064204, 32.771294373, -79.93064204, 32.771294373], "geometry": {"coordinates": [-79.93064204, 32.771294373], "type": "Point"}, "id": "2016", "properties": {"Object ID": 574372713, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2017", "properties": {"Object ID": 574476718, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93327038, 32.771857448, -79.93327038, 32.771857448], "geometry": {"coordinates": [-79.93327038, 32.771857448], "type": "Point"}, "id": "2018", "properties": {"Object ID": 574486916, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93068979, 32.770710613, -79.93068979, 32.770710613], "geometry": {"coordinates": [-79.93068979, 32.770710613], "type": "Point"}, "id": "2019", "properties": {"Object ID": 574486938, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93288729, 32.78040061, -79.93288729, 32.78040061], "geometry": {"coordinates": [-79.93288729, 32.78040061], "type": "Point"}, "id": "2020", "properties": {"Object ID": 573387914, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191667, 32.780486772, -79.93191667, 32.780486772], "geometry": {"coordinates": [-79.93191667, 32.780486772], "type": "Point"}, "id": "2021", "properties": {"Object ID": 573387928, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92956619, 32.782624172, -79.92956619, 32.782624172], "geometry": {"coordinates": [-79.92956619, 32.782624172], "type": "Point"}, "id": "2022", "properties": {"Object ID": 573467956, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93040738, 32.781275186, -79.93040738, 32.781275186], "geometry": {"coordinates": [-79.93040738, 32.781275186], "type": "Point"}, "id": "2023", "properties": {"Object ID": 573831829, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "2024", "properties": {"Object ID": 574451475, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93406996, 32.780618992, -79.93406996, 32.780618992], "geometry": {"coordinates": [-79.93406996, 32.780618992], "type": "Point"}, "id": "2025", "properties": {"Object ID": 574460907, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9341309, 32.774423321, -79.9341309, 32.774423321], "geometry": {"coordinates": [-79.9341309, 32.774423321], "type": "Point"}, "id": "2026", "properties": {"Object ID": 573475699, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93471872, 32.775317612, -79.93471872, 32.775317612], "geometry": {"coordinates": [-79.93471872, 32.775317612], "type": "Point"}, "id": "2027", "properties": {"Object ID": 573789145, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93473542, 32.775905342, -79.93473542, 32.775905342], "geometry": {"coordinates": [-79.93473542, 32.775905342], "type": "Point"}, "id": "2028", "properties": {"Object ID": 573789161, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93597249, 32.774791206, -79.93597249, 32.774791206], "geometry": {"coordinates": [-79.93597249, 32.774791206], "type": "Point"}, "id": "2029", "properties": {"Object ID": 574268779, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93896268, 32.775483022, -79.93896268, 32.775483022], "geometry": {"coordinates": [-79.93896268, 32.775483022], "type": "Point"}, "id": "2030", "properties": {"Object ID": 573789355, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93854163, 32.776191824, -79.93854163, 32.776191824], "geometry": {"coordinates": [-79.93854163, 32.776191824], "type": "Point"}, "id": "2031", "properties": {"Object ID": 573856078, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93779661, 32.779910747, -79.93779661, 32.779910747], "geometry": {"coordinates": [-79.93779661, 32.779910747], "type": "Point"}, "id": "2032", "properties": {"Object ID": 574294817, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93860483, 32.777758109, -79.93860483, 32.777758109], "geometry": {"coordinates": [-79.93860483, 32.777758109], "type": "Point"}, "id": "2033", "properties": {"Object ID": 574295723, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93918923, 32.777320035, -79.93918923, 32.777320035], "geometry": {"coordinates": [-79.93918923, 32.777320035], "type": "Point"}, "id": "2034", "properties": {"Object ID": 574486797, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9385842, 32.776408744, -79.9385842, 32.776408744], "geometry": {"coordinates": [-79.9385842, 32.776408744], "type": "Point"}, "id": "2035", "properties": {"Object ID": 574486806, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "2036", "properties": {"Object ID": 574486818, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92863034, 32.778887381, -79.92863034, 32.778887381], "geometry": {"coordinates": [-79.92863034, 32.778887381], "type": "Point"}, "id": "2037", "properties": {"Object ID": 573782401, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92964116, 32.778401737, -79.92964116, 32.778401737], "geometry": {"coordinates": [-79.92964116, 32.778401737], "type": "Point"}, "id": "2038", "properties": {"Object ID": 573783270, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93545543, 32.779653107, -79.93545543, 32.779653107], "geometry": {"coordinates": [-79.93545543, 32.779653107], "type": "Point"}, "id": "2039", "properties": {"Object ID": 573789130, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92947989, 32.777028121, -79.92947989, 32.777028121], "geometry": {"coordinates": [-79.92947989, 32.777028121], "type": "Point"}, "id": "2040", "properties": {"Object ID": 573827756, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.931676, 32.779163, -79.931676, 32.779163], "geometry": {"coordinates": [-79.931676, 32.779163], "type": "Point"}, "id": "2041", "properties": {"Object ID": 573831805, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93703989, 32.776788689, -79.93703989, 32.776788689], "geometry": {"coordinates": [-79.93703989, 32.776788689], "type": "Point"}, "id": "2042", "properties": {"Object ID": 574268928, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92739084, 32.779499094, -79.92739084, 32.779499094], "geometry": {"coordinates": [-79.92739084, 32.779499094], "type": "Point"}, "id": "2043", "properties": {"Object ID": 574371446, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93443657, 32.77777957, -79.93443657, 32.77777957], "geometry": {"coordinates": [-79.93443657, 32.77777957], "type": "Point"}, "id": "2044", "properties": {"Object ID": 574371651, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92813633, 32.780414773, -79.92813633, 32.780414773], "geometry": {"coordinates": [-79.92813633, 32.780414773], "type": "Point"}, "id": "2045", "properties": {"Object ID": 574372408, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92849911, 32.776440239, -79.92849911, 32.776440239], "geometry": {"coordinates": [-79.92849911, 32.776440239], "type": "Point"}, "id": "2046", "properties": {"Object ID": 574372458, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92746316, 32.776524315, -79.92746316, 32.776524315], "geometry": {"coordinates": [-79.92746316, 32.776524315], "type": "Point"}, "id": "2047", "properties": {"Object ID": 574372461, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93576441, 32.776991384, -79.93576441, 32.776991384], "geometry": {"coordinates": [-79.93576441, 32.776991384], "type": "Point"}, "id": "2048", "properties": {"Object ID": 574372972, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93435995, 32.778563419, -79.93435995, 32.778563419], "geometry": {"coordinates": [-79.93435995, 32.778563419], "type": "Point"}, "id": "2049", "properties": {"Object ID": 574421799, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9258767, 32.779600257, -79.9258767, 32.779600257], "geometry": {"coordinates": [-79.9258767, 32.779600257], "type": "Point"}, "id": "2050", "properties": {"Object ID": 574435946, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92675798, 32.779623429, -79.92675798, 32.779623429], "geometry": {"coordinates": [-79.92675798, 32.779623429], "type": "Point"}, "id": "2051", "properties": {"Object ID": 574455182, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505067, 32.780686378, -79.93505067, 32.780686378], "geometry": {"coordinates": [-79.93505067, 32.780686378], "type": "Point"}, "id": "2052", "properties": {"Object ID": 574455487, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93447747, 32.779742739, -79.93447747, 32.779742739], "geometry": {"coordinates": [-79.93447747, 32.779742739], "type": "Point"}, "id": "2053", "properties": {"Object ID": 574460949, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "2054", "properties": {"Object ID": 574487053, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "2055", "properties": {"Object ID": 574487058, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "2056", "properties": {"Object ID": 574488696, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2057", "properties": {"Object ID": 574488761, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93928382, 32.775223153, -79.93928382, 32.775223153], "geometry": {"coordinates": [-79.93928382, 32.775223153], "type": "Point"}, "id": "2058", "properties": {"Object ID": 573789348, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93823357, 32.773109229, -79.93823357, 32.773109229], "geometry": {"coordinates": [-79.93823357, 32.773109229], "type": "Point"}, "id": "2059", "properties": {"Object ID": 573789709, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.940148, 32.774488111, -79.940148, 32.774488111], "geometry": {"coordinates": [-79.940148, 32.774488111], "type": "Point"}, "id": "2060", "properties": {"Object ID": 573795556, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9396445, 32.774597005, -79.9396445, 32.774597005], "geometry": {"coordinates": [-79.9396445, 32.774597005], "type": "Point"}, "id": "2061", "properties": {"Object ID": 573795561, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93971747, 32.774851675, -79.93971747, 32.774851675], "geometry": {"coordinates": [-79.93971747, 32.774851675], "type": "Point"}, "id": "2062", "properties": {"Object ID": 573795569, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94056439, 32.774559418, -79.94056439, 32.774559418], "geometry": {"coordinates": [-79.94056439, 32.774559418], "type": "Point"}, "id": "2063", "properties": {"Object ID": 573860267, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94087048, 32.774635646, -79.94087048, 32.774635646], "geometry": {"coordinates": [-79.94087048, 32.774635646], "type": "Point"}, "id": "2064", "properties": {"Object ID": 573860269, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94093141, 32.774953177, -79.94093141, 32.774953177], "geometry": {"coordinates": [-79.94093141, 32.774953177], "type": "Point"}, "id": "2065", "properties": {"Object ID": 573860281, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94062597, 32.774995077, -79.94062597, 32.774995077], "geometry": {"coordinates": [-79.94062597, 32.774995077], "type": "Point"}, "id": "2066", "properties": {"Object ID": 573860283, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9412164, 32.773203632, -79.9412164, 32.773203632], "geometry": {"coordinates": [-79.9412164, 32.773203632], "type": "Point"}, "id": "2067", "properties": {"Object ID": 574270736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94040588, 32.772766804, -79.94040588, 32.772766804], "geometry": {"coordinates": [-79.94040588, 32.772766804], "type": "Point"}, "id": "2068", "properties": {"Object ID": 574372058, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191116, 32.779781997, -79.93191116, 32.779781997], "geometry": {"coordinates": [-79.93191116, 32.779781997], "type": "Point"}, "id": "2069", "properties": {"Object ID": 573387864, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92827685, 32.772006634, -79.92827685, 32.772006634], "geometry": {"coordinates": [-79.92827685, 32.772006634], "type": "Point"}, "id": "2070", "properties": {"Object ID": 573467745, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92874432, 32.77330072, -79.92874432, 32.77330072], "geometry": {"coordinates": [-79.92874432, 32.77330072], "type": "Point"}, "id": "2071", "properties": {"Object ID": 573779323, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92780556, 32.7743702, -79.92780556, 32.7743702], "geometry": {"coordinates": [-79.92780556, 32.7743702], "type": "Point"}, "id": "2072", "properties": {"Object ID": 573779375, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92811631, 32.774730033, -79.92811631, 32.774730033], "geometry": {"coordinates": [-79.92811631, 32.774730033], "type": "Point"}, "id": "2073", "properties": {"Object ID": 573779393, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92862217, 32.774811231, -79.92862217, 32.774811231], "geometry": {"coordinates": [-79.92862217, 32.774811231], "type": "Point"}, "id": "2074", "properties": {"Object ID": 573779405, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92800806, 32.778884243, -79.92800806, 32.778884243], "geometry": {"coordinates": [-79.92800806, 32.778884243], "type": "Point"}, "id": "2075", "properties": {"Object ID": 573779423, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92794544, 32.779117807, -79.92794544, 32.779117807], "geometry": {"coordinates": [-79.92794544, 32.779117807], "type": "Point"}, "id": "2076", "properties": {"Object ID": 573779437, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92975812, 32.773115965, -79.92975812, 32.773115965], "geometry": {"coordinates": [-79.92975812, 32.773115965], "type": "Point"}, "id": "2077", "properties": {"Object ID": 573782594, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93036119, 32.773184386, -79.93036119, 32.773184386], "geometry": {"coordinates": [-79.93036119, 32.773184386], "type": "Point"}, "id": "2078", "properties": {"Object ID": 573782596, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92871845, 32.772191724, -79.92871845, 32.772191724], "geometry": {"coordinates": [-79.92871845, 32.772191724], "type": "Point"}, "id": "2079", "properties": {"Object ID": 573782413, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92887994, 32.772190428, -79.92887994, 32.772190428], "geometry": {"coordinates": [-79.92887994, 32.772190428], "type": "Point"}, "id": "2080", "properties": {"Object ID": 573782415, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92834819, 32.772232759, -79.92834819, 32.772232759], "geometry": {"coordinates": [-79.92834819, 32.772232759], "type": "Point"}, "id": "2081", "properties": {"Object ID": 573782419, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.928964, 32.772909407, -79.928964, 32.772909407], "geometry": {"coordinates": [-79.928964, 32.772909407], "type": "Point"}, "id": "2082", "properties": {"Object ID": 573782453, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92914283, 32.777854438, -79.92914283, 32.777854438], "geometry": {"coordinates": [-79.92914283, 32.777854438], "type": "Point"}, "id": "2083", "properties": {"Object ID": 573782485, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9284514, 32.775421312, -79.9284514, 32.775421312], "geometry": {"coordinates": [-79.9284514, 32.775421312], "type": "Point"}, "id": "2084", "properties": {"Object ID": 573782528, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92955844, 32.773337104, -79.92955844, 32.773337104], "geometry": {"coordinates": [-79.92955844, 32.773337104], "type": "Point"}, "id": "2085", "properties": {"Object ID": 573783136, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92936283, 32.774169335, -79.92936283, 32.774169335], "geometry": {"coordinates": [-79.92936283, 32.774169335], "type": "Point"}, "id": "2086", "properties": {"Object ID": 573783158, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93046822, 32.774471714, -79.93046822, 32.774471714], "geometry": {"coordinates": [-79.93046822, 32.774471714], "type": "Point"}, "id": "2087", "properties": {"Object ID": 573783175, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93039775, 32.77458916, -79.93039775, 32.77458916], "geometry": {"coordinates": [-79.93039775, 32.77458916], "type": "Point"}, "id": "2088", "properties": {"Object ID": 573783185, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93094355, 32.778464521, -79.93094355, 32.778464521], "geometry": {"coordinates": [-79.93094355, 32.778464521], "type": "Point"}, "id": "2089", "properties": {"Object ID": 573783294, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93112351, 32.779280644, -79.93112351, 32.779280644], "geometry": {"coordinates": [-79.93112351, 32.779280644], "type": "Point"}, "id": "2090", "properties": {"Object ID": 573783309, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93027735, 32.779357218, -79.93027735, 32.779357218], "geometry": {"coordinates": [-79.93027735, 32.779357218], "type": "Point"}, "id": "2091", "properties": {"Object ID": 573783319, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9301985, 32.778408, -79.9301985, 32.778408], "geometry": {"coordinates": [-79.9301985, 32.778408], "type": "Point"}, "id": "2092", "properties": {"Object ID": 573783325, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92958184, 32.77059715, -79.92958184, 32.77059715], "geometry": {"coordinates": [-79.92958184, 32.77059715], "type": "Point"}, "id": "2093", "properties": {"Object ID": 573783419, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92967987, 32.770989749, -79.92967987, 32.770989749], "geometry": {"coordinates": [-79.92967987, 32.770989749], "type": "Point"}, "id": "2094", "properties": {"Object ID": 573783425, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93155196, 32.777449246, -79.93155196, 32.777449246], "geometry": {"coordinates": [-79.93155196, 32.777449246], "type": "Point"}, "id": "2095", "properties": {"Object ID": 573785435, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93170101, 32.777807059, -79.93170101, 32.777807059], "geometry": {"coordinates": [-79.93170101, 32.777807059], "type": "Point"}, "id": "2096", "properties": {"Object ID": 573785450, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93273414, 32.775209529, -79.93273414, 32.775209529], "geometry": {"coordinates": [-79.93273414, 32.775209529], "type": "Point"}, "id": "2097", "properties": {"Object ID": 573785827, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93278733, 32.773839298, -79.93278733, 32.773839298], "geometry": {"coordinates": [-79.93278733, 32.773839298], "type": "Point"}, "id": "2098", "properties": {"Object ID": 573785950, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93262251, 32.77438286, -79.93262251, 32.77438286], "geometry": {"coordinates": [-79.93262251, 32.77438286], "type": "Point"}, "id": "2099", "properties": {"Object ID": 573785982, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93332761, 32.772338527, -79.93332761, 32.772338527], "geometry": {"coordinates": [-79.93332761, 32.772338527], "type": "Point"}, "id": "2100", "properties": {"Object ID": 573785986, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587104, 32.776016439, -79.92587104, 32.776016439], "geometry": {"coordinates": [-79.92587104, 32.776016439], "type": "Point"}, "id": "2101", "properties": {"Object ID": 573818743, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9257632, 32.776298411, -79.9257632, 32.776298411], "geometry": {"coordinates": [-79.9257632, 32.776298411], "type": "Point"}, "id": "2102", "properties": {"Object ID": 573818747, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.929484, 32.777288, -79.929484, 32.777288], "geometry": {"coordinates": [-79.929484, 32.777288], "type": "Point"}, "id": "2103", "properties": {"Object ID": 573827725, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93080905, 32.776727923, -79.93080905, 32.776727923], "geometry": {"coordinates": [-79.93080905, 32.776727923], "type": "Point"}, "id": "2104", "properties": {"Object ID": 573827727, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92972682, 32.776806657, -79.92972682, 32.776806657], "geometry": {"coordinates": [-79.92972682, 32.776806657], "type": "Point"}, "id": "2105", "properties": {"Object ID": 573827740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92947989, 32.777028121, -79.92947989, 32.777028121], "geometry": {"coordinates": [-79.92947989, 32.777028121], "type": "Point"}, "id": "2106", "properties": {"Object ID": 573827758, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93245507, 32.775189806, -79.93245507, 32.775189806], "geometry": {"coordinates": [-79.93245507, 32.775189806], "type": "Point"}, "id": "2107", "properties": {"Object ID": 573831699, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93193054, 32.775284203, -79.93193054, 32.775284203], "geometry": {"coordinates": [-79.93193054, 32.775284203], "type": "Point"}, "id": "2108", "properties": {"Object ID": 573831713, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93244164, 32.775333645, -79.93244164, 32.775333645], "geometry": {"coordinates": [-79.93244164, 32.775333645], "type": "Point"}, "id": "2109", "properties": {"Object ID": 573831715, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.931676, 32.779163, -79.931676, 32.779163], "geometry": {"coordinates": [-79.931676, 32.779163], "type": "Point"}, "id": "2110", "properties": {"Object ID": 573831807, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92712901, 32.774181965, -79.92712901, 32.774181965], "geometry": {"coordinates": [-79.92712901, 32.774181965], "type": "Point"}, "id": "2111", "properties": {"Object ID": 574267660, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9270412, 32.774650345, -79.9270412, 32.774650345], "geometry": {"coordinates": [-79.9270412, 32.774650345], "type": "Point"}, "id": "2112", "properties": {"Object ID": 574267669, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92810606, 32.775413772, -79.92810606, 32.775413772], "geometry": {"coordinates": [-79.92810606, 32.775413772], "type": "Point"}, "id": "2113", "properties": {"Object ID": 574267743, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92802961, 32.775707528, -79.92802961, 32.775707528], "geometry": {"coordinates": [-79.92802961, 32.775707528], "type": "Point"}, "id": "2114", "properties": {"Object ID": 574267753, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92859461, 32.780244674, -79.92859461, 32.780244674], "geometry": {"coordinates": [-79.92859461, 32.780244674], "type": "Point"}, "id": "2115", "properties": {"Object ID": 574268043, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9320608, 32.772056543, -79.9320608, 32.772056543], "geometry": {"coordinates": [-79.9320608, 32.772056543], "type": "Point"}, "id": "2116", "properties": {"Object ID": 574268223, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93161077, 32.772049306, -79.93161077, 32.772049306], "geometry": {"coordinates": [-79.93161077, 32.772049306], "type": "Point"}, "id": "2117", "properties": {"Object ID": 574268225, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93134554, 32.772086136, -79.93134554, 32.772086136], "geometry": {"coordinates": [-79.93134554, 32.772086136], "type": "Point"}, "id": "2118", "properties": {"Object ID": 574268229, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93220346, 32.774400506, -79.93220346, 32.774400506], "geometry": {"coordinates": [-79.93220346, 32.774400506], "type": "Point"}, "id": "2119", "properties": {"Object ID": 574293801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92566411, 32.776611185, -79.92566411, 32.776611185], "geometry": {"coordinates": [-79.92566411, 32.776611185], "type": "Point"}, "id": "2120", "properties": {"Object ID": 574346714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93054012, 32.775380171, -79.93054012, 32.775380171], "geometry": {"coordinates": [-79.93054012, 32.775380171], "type": "Point"}, "id": "2121", "properties": {"Object ID": 574346742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938432, 32.775529007, -79.92938432, 32.775529007], "geometry": {"coordinates": [-79.92938432, 32.775529007], "type": "Point"}, "id": "2122", "properties": {"Object ID": 574346745, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93066427, 32.775793669, -79.93066427, 32.775793669], "geometry": {"coordinates": [-79.93066427, 32.775793669], "type": "Point"}, "id": "2123", "properties": {"Object ID": 574346752, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92739084, 32.779499094, -79.92739084, 32.779499094], "geometry": {"coordinates": [-79.92739084, 32.779499094], "type": "Point"}, "id": "2124", "properties": {"Object ID": 574371444, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92813633, 32.780414773, -79.92813633, 32.780414773], "geometry": {"coordinates": [-79.92813633, 32.780414773], "type": "Point"}, "id": "2125", "properties": {"Object ID": 574372410, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9282403, 32.780783377, -79.9282403, 32.780783377], "geometry": {"coordinates": [-79.9282403, 32.780783377], "type": "Point"}, "id": "2126", "properties": {"Object ID": 574372416, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92780897, 32.776260517, -79.92780897, 32.776260517], "geometry": {"coordinates": [-79.92780897, 32.776260517], "type": "Point"}, "id": "2127", "properties": {"Object ID": 574372456, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92834043, 32.776554351, -79.92834043, 32.776554351], "geometry": {"coordinates": [-79.92834043, 32.776554351], "type": "Point"}, "id": "2128", "properties": {"Object ID": 574372466, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93005346, 32.77625511, -79.93005346, 32.77625511], "geometry": {"coordinates": [-79.93005346, 32.77625511], "type": "Point"}, "id": "2129", "properties": {"Object ID": 574372521, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92989155, 32.776352934, -79.92989155, 32.776352934], "geometry": {"coordinates": [-79.92989155, 32.776352934], "type": "Point"}, "id": "2130", "properties": {"Object ID": 574372563, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93193579, 32.771215032, -79.93193579, 32.771215032], "geometry": {"coordinates": [-79.93193579, 32.771215032], "type": "Point"}, "id": "2131", "properties": {"Object ID": 574372711, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93305761, 32.776982082, -79.93305761, 32.776982082], "geometry": {"coordinates": [-79.93305761, 32.776982082], "type": "Point"}, "id": "2132", "properties": {"Object ID": 574409649, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92846361, 32.776973025, -79.92846361, 32.776973025], "geometry": {"coordinates": [-79.92846361, 32.776973025], "type": "Point"}, "id": "2133", "properties": {"Object ID": 574421679, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92592791, 32.779129789, -79.92592791, 32.779129789], "geometry": {"coordinates": [-79.92592791, 32.779129789], "type": "Point"}, "id": "2134", "properties": {"Object ID": 574435915, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9258767, 32.779600257, -79.9258767, 32.779600257], "geometry": {"coordinates": [-79.9258767, 32.779600257], "type": "Point"}, "id": "2135", "properties": {"Object ID": 574435948, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92686154, 32.776849372, -79.92686154, 32.776849372], "geometry": {"coordinates": [-79.92686154, 32.776849372], "type": "Point"}, "id": "2136", "properties": {"Object ID": 574437151, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92881402, 32.77874176, -79.92881402, 32.77874176], "geometry": {"coordinates": [-79.92881402, 32.77874176], "type": "Point"}, "id": "2137", "properties": {"Object ID": 574446461, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "2138", "properties": {"Object ID": 574451477, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93057458, 32.779847015, -79.93057458, 32.779847015], "geometry": {"coordinates": [-79.93057458, 32.779847015], "type": "Point"}, "id": "2139", "properties": {"Object ID": 574451485, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93057458, 32.779847015, -79.93057458, 32.779847015], "geometry": {"coordinates": [-79.93057458, 32.779847015], "type": "Point"}, "id": "2140", "properties": {"Object ID": 574451490, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93092389, 32.780416852, -79.93092389, 32.780416852], "geometry": {"coordinates": [-79.93092389, 32.780416852], "type": "Point"}, "id": "2141", "properties": {"Object ID": 574451493, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92675798, 32.779623429, -79.92675798, 32.779623429], "geometry": {"coordinates": [-79.92675798, 32.779623429], "type": "Point"}, "id": "2142", "properties": {"Object ID": 574455178, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92675798, 32.779623429, -79.92675798, 32.779623429], "geometry": {"coordinates": [-79.92675798, 32.779623429], "type": "Point"}, "id": "2143", "properties": {"Object ID": 574455181, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92656424, 32.778612183, -79.92656424, 32.778612183], "geometry": {"coordinates": [-79.92656424, 32.778612183], "type": "Point"}, "id": "2144", "properties": {"Object ID": 574457058, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "2145", "properties": {"Object ID": 574460973, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "2146", "properties": {"Object ID": 574460987, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92799481, 32.777083557, -79.92799481, 32.777083557], "geometry": {"coordinates": [-79.92799481, 32.777083557], "type": "Point"}, "id": "2147", "properties": {"Object ID": 574461085, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92826226, 32.776519314, -79.92826226, 32.776519314], "geometry": {"coordinates": [-79.92826226, 32.776519314], "type": "Point"}, "id": "2148", "properties": {"Object ID": 574461093, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673802, 32.779726367, -79.92673802, 32.779726367], "geometry": {"coordinates": [-79.92673802, 32.779726367], "type": "Point"}, "id": "2149", "properties": {"Object ID": 574461296, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2150", "properties": {"Object ID": 574476710, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2151", "properties": {"Object ID": 574476767, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2152", "properties": {"Object ID": 574476775, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2153", "properties": {"Object ID": 574476781, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2154", "properties": {"Object ID": 574476804, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2155", "properties": {"Object ID": 574476806, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93068697, 32.771232663, -79.93068697, 32.771232663], "geometry": {"coordinates": [-79.93068697, 32.771232663], "type": "Point"}, "id": "2156", "properties": {"Object ID": 574486936, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93341863, 32.778558501, -79.93341863, 32.778558501], "geometry": {"coordinates": [-79.93341863, 32.778558501], "type": "Point"}, "id": "2157", "properties": {"Object ID": 574487009, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93341863, 32.778558501, -79.93341863, 32.778558501], "geometry": {"coordinates": [-79.93341863, 32.778558501], "type": "Point"}, "id": "2158", "properties": {"Object ID": 574487011, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93016513, 32.77936776, -79.93016513, 32.77936776], "geometry": {"coordinates": [-79.93016513, 32.77936776], "type": "Point"}, "id": "2159", "properties": {"Object ID": 574487030, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92879721, 32.778559702, -79.92879721, 32.778559702], "geometry": {"coordinates": [-79.92879721, 32.778559702], "type": "Point"}, "id": "2160", "properties": {"Object ID": 574488686, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "2161", "properties": {"Object ID": 574488694, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92823571, 32.778833709, -79.92823571, 32.778833709], "geometry": {"coordinates": [-79.92823571, 32.778833709], "type": "Point"}, "id": "2162", "properties": {"Object ID": 574488705, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2163", "properties": {"Object ID": 574488727, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2164", "properties": {"Object ID": 574488734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2165", "properties": {"Object ID": 574488746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2166", "properties": {"Object ID": 574488751, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2167", "properties": {"Object ID": 574488753, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92621897, 32.777241248, -79.92621897, 32.777241248], "geometry": {"coordinates": [-79.92621897, 32.777241248], "type": "Point"}, "id": "2168", "properties": {"Object ID": 574488778, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "2169", "properties": {"Object ID": 574488798, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92933268, 32.775041993, -79.92933268, 32.775041993], "geometry": {"coordinates": [-79.92933268, 32.775041993], "type": "Point"}, "id": "2170", "properties": {"Object ID": 574488832, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938167, 32.775139478, -79.92938167, 32.775139478], "geometry": {"coordinates": [-79.92938167, 32.775139478], "type": "Point"}, "id": "2171", "properties": {"Object ID": 574488833, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92884854, 32.774434661, -79.92884854, 32.774434661], "geometry": {"coordinates": [-79.92884854, 32.774434661], "type": "Point"}, "id": "2172", "properties": {"Object ID": 574488839, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92753232, 32.775619891, -79.92753232, 32.775619891], "geometry": {"coordinates": [-79.92753232, 32.775619891], "type": "Point"}, "id": "2173", "properties": {"Object ID": 574488841, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9269903, 32.775504683, -79.9269903, 32.775504683], "geometry": {"coordinates": [-79.9269903, 32.775504683], "type": "Point"}, "id": "2174", "properties": {"Object ID": 574488844, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92919442, 32.771849439, -79.92919442, 32.771849439], "geometry": {"coordinates": [-79.92919442, 32.771849439], "type": "Point"}, "id": "2175", "properties": {"Object ID": 574488873, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94241985, 32.777173173, -79.94241985, 32.777173173], "geometry": {"coordinates": [-79.94241985, 32.777173173], "type": "Point"}, "id": "2176", "properties": {"Object ID": 573800807, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9435405, 32.777304554, -79.9435405, 32.777304554], "geometry": {"coordinates": [-79.9435405, 32.777304554], "type": "Point"}, "id": "2177", "properties": {"Object ID": 573800811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94269541, 32.777619258, -79.94269541, 32.777619258], "geometry": {"coordinates": [-79.94269541, 32.777619258], "type": "Point"}, "id": "2178", "properties": {"Object ID": 573800821, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94230703, 32.774140084, -79.94230703, 32.774140084], "geometry": {"coordinates": [-79.94230703, 32.774140084], "type": "Point"}, "id": "2179", "properties": {"Object ID": 573800973, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94603104, 32.776676418, -79.94603104, 32.776676418], "geometry": {"coordinates": [-79.94603104, 32.776676418], "type": "Point"}, "id": "2180", "properties": {"Object ID": 573807476, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94417646, 32.777349111, -79.94417646, 32.777349111], "geometry": {"coordinates": [-79.94417646, 32.777349111], "type": "Point"}, "id": "2181", "properties": {"Object ID": 574348018, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94420161, 32.77748615, -79.94420161, 32.77748615], "geometry": {"coordinates": [-79.94420161, 32.77748615], "type": "Point"}, "id": "2182", "properties": {"Object ID": 574348020, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9439425, 32.777143809, -79.9439425, 32.777143809], "geometry": {"coordinates": [-79.9439425, 32.777143809], "type": "Point"}, "id": "2183", "properties": {"Object ID": 574431605, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "2184", "properties": {"Object ID": 574486742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "2185", "properties": {"Object ID": 574486751, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2186", "properties": {"Object ID": 574486779, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2187", "properties": {"Object ID": 574486782, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93428365, 32.774439413, -79.93428365, 32.774439413], "geometry": {"coordinates": [-79.93428365, 32.774439413], "type": "Point"}, "id": "2188", "properties": {"Object ID": 573475700, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93399074, 32.775033421, -79.93399074, 32.775033421], "geometry": {"coordinates": [-79.93399074, 32.775033421], "type": "Point"}, "id": "2189", "properties": {"Object ID": 573475710, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93539976, 32.772380183, -79.93539976, 32.772380183], "geometry": {"coordinates": [-79.93539976, 32.772380183], "type": "Point"}, "id": "2190", "properties": {"Object ID": 573789013, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9347198, 32.773271604, -79.9347198, 32.773271604], "geometry": {"coordinates": [-79.9347198, 32.773271604], "type": "Point"}, "id": "2191", "properties": {"Object ID": 573789023, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93438451, 32.773903594, -79.93438451, 32.773903594], "geometry": {"coordinates": [-79.93438451, 32.773903594], "type": "Point"}, "id": "2192", "properties": {"Object ID": 573789032, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93502173, 32.774331734, -79.93502173, 32.774331734], "geometry": {"coordinates": [-79.93502173, 32.774331734], "type": "Point"}, "id": "2193", "properties": {"Object ID": 573789135, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93512059, 32.775466775, -79.93512059, 32.775466775], "geometry": {"coordinates": [-79.93512059, 32.775466775], "type": "Point"}, "id": "2194", "properties": {"Object ID": 573789148, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93717378, 32.776095307, -79.93717378, 32.776095307], "geometry": {"coordinates": [-79.93717378, 32.776095307], "type": "Point"}, "id": "2195", "properties": {"Object ID": 573789164, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93659501, 32.776436549, -79.93659501, 32.776436549], "geometry": {"coordinates": [-79.93659501, 32.776436549], "type": "Point"}, "id": "2196", "properties": {"Object ID": 573789171, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93609038, 32.776386865, -79.93609038, 32.776386865], "geometry": {"coordinates": [-79.93609038, 32.776386865], "type": "Point"}, "id": "2197", "properties": {"Object ID": 573789172, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9362525, 32.776181, -79.9362525, 32.776181], "geometry": {"coordinates": [-79.9362525, 32.776181], "type": "Point"}, "id": "2198", "properties": {"Object ID": 573789183, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93718607, 32.772660027, -79.93718607, 32.772660027], "geometry": {"coordinates": [-79.93718607, 32.772660027], "type": "Point"}, "id": "2199", "properties": {"Object ID": 573789228, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93776485, 32.772881263, -79.93776485, 32.772881263], "geometry": {"coordinates": [-79.93776485, 32.772881263], "type": "Point"}, "id": "2200", "properties": {"Object ID": 573789232, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93759388, 32.773226578, -79.93759388, 32.773226578], "geometry": {"coordinates": [-79.93759388, 32.773226578], "type": "Point"}, "id": "2201", "properties": {"Object ID": 573789237, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93756021, 32.7718473, -79.93756021, 32.7718473], "geometry": {"coordinates": [-79.93756021, 32.7718473], "type": "Point"}, "id": "2202", "properties": {"Object ID": 573789312, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93918259, 32.774666558, -79.93918259, 32.774666558], "geometry": {"coordinates": [-79.93918259, 32.774666558], "type": "Point"}, "id": "2203", "properties": {"Object ID": 573789336, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.937993, 32.775313812, -79.937993, 32.775313812], "geometry": {"coordinates": [-79.937993, 32.775313812], "type": "Point"}, "id": "2204", "properties": {"Object ID": 573789351, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9379172, 32.777179279, -79.9379172, 32.777179279], "geometry": {"coordinates": [-79.9379172, 32.777179279], "type": "Point"}, "id": "2205", "properties": {"Object ID": 573789459, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93868916, 32.772740818, -79.93868916, 32.772740818], "geometry": {"coordinates": [-79.93868916, 32.772740818], "type": "Point"}, "id": "2206", "properties": {"Object ID": 573789691, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93845498, 32.773656866, -79.93845498, 32.773656866], "geometry": {"coordinates": [-79.93845498, 32.773656866], "type": "Point"}, "id": "2207", "properties": {"Object ID": 573789731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93817891, 32.778456407, -79.93817891, 32.778456407], "geometry": {"coordinates": [-79.93817891, 32.778456407], "type": "Point"}, "id": "2208", "properties": {"Object ID": 573794190, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93932232, 32.776556312, -79.93932232, 32.776556312], "geometry": {"coordinates": [-79.93932232, 32.776556312], "type": "Point"}, "id": "2209", "properties": {"Object ID": 573794269, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93918309, 32.776871181, -79.93918309, 32.776871181], "geometry": {"coordinates": [-79.93918309, 32.776871181], "type": "Point"}, "id": "2210", "properties": {"Object ID": 573794293, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94034745, 32.77755386, -79.94034745, 32.77755386], "geometry": {"coordinates": [-79.94034745, 32.77755386], "type": "Point"}, "id": "2211", "properties": {"Object ID": 573795675, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93606282, 32.771957331, -79.93606282, 32.771957331], "geometry": {"coordinates": [-79.93606282, 32.771957331], "type": "Point"}, "id": "2212", "properties": {"Object ID": 573850065, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9370822, 32.780106517, -79.9370822, 32.780106517], "geometry": {"coordinates": [-79.9370822, 32.780106517], "type": "Point"}, "id": "2213", "properties": {"Object ID": 573850801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9387436, 32.775911933, -79.9387436, 32.775911933], "geometry": {"coordinates": [-79.9387436, 32.775911933], "type": "Point"}, "id": "2214", "properties": {"Object ID": 573856062, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9387436, 32.775911933, -79.9387436, 32.775911933], "geometry": {"coordinates": [-79.9387436, 32.775911933], "type": "Point"}, "id": "2215", "properties": {"Object ID": 573856064, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93891053, 32.775988911, -79.93891053, 32.775988911], "geometry": {"coordinates": [-79.93891053, 32.775988911], "type": "Point"}, "id": "2216", "properties": {"Object ID": 573856076, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93964812, 32.776292271, -79.93964812, 32.776292271], "geometry": {"coordinates": [-79.93964812, 32.776292271], "type": "Point"}, "id": "2217", "properties": {"Object ID": 573856085, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93994714, 32.773314038, -79.93994714, 32.773314038], "geometry": {"coordinates": [-79.93994714, 32.773314038], "type": "Point"}, "id": "2218", "properties": {"Object ID": 573860082, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94026264, 32.773438482, -79.94026264, 32.773438482], "geometry": {"coordinates": [-79.94026264, 32.773438482], "type": "Point"}, "id": "2219", "properties": {"Object ID": 573860096, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94090742, 32.775355776, -79.94090742, 32.775355776], "geometry": {"coordinates": [-79.94090742, 32.775355776], "type": "Point"}, "id": "2220", "properties": {"Object ID": 573860292, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93486489, 32.771597654, -79.93486489, 32.771597654], "geometry": {"coordinates": [-79.93486489, 32.771597654], "type": "Point"}, "id": "2221", "properties": {"Object ID": 574268690, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93608247, 32.776842925, -79.93608247, 32.776842925], "geometry": {"coordinates": [-79.93608247, 32.776842925], "type": "Point"}, "id": "2222", "properties": {"Object ID": 574268932, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93611542, 32.777133131, -79.93611542, 32.777133131], "geometry": {"coordinates": [-79.93611542, 32.777133131], "type": "Point"}, "id": "2223", "properties": {"Object ID": 574268948, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93707231, 32.777253427, -79.93707231, 32.777253427], "geometry": {"coordinates": [-79.93707231, 32.777253427], "type": "Point"}, "id": "2224", "properties": {"Object ID": 574268953, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93823689, 32.774591287, -79.93823689, 32.774591287], "geometry": {"coordinates": [-79.93823689, 32.774591287], "type": "Point"}, "id": "2225", "properties": {"Object ID": 574269161, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93644823, 32.775781712, -79.93644823, 32.775781712], "geometry": {"coordinates": [-79.93644823, 32.775781712], "type": "Point"}, "id": "2226", "properties": {"Object ID": 574269220, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93836411, 32.777383038, -79.93836411, 32.777383038], "geometry": {"coordinates": [-79.93836411, 32.777383038], "type": "Point"}, "id": "2227", "properties": {"Object ID": 574269272, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93778431, 32.777657906, -79.93778431, 32.777657906], "geometry": {"coordinates": [-79.93778431, 32.777657906], "type": "Point"}, "id": "2228", "properties": {"Object ID": 574269284, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9388738, 32.777679999, -79.9388738, 32.777679999], "geometry": {"coordinates": [-79.9388738, 32.777679999], "type": "Point"}, "id": "2229", "properties": {"Object ID": 574295720, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94091432, 32.772050211, -79.94091432, 32.772050211], "geometry": {"coordinates": [-79.94091432, 32.772050211], "type": "Point"}, "id": "2230", "properties": {"Object ID": 574296081, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9340377, 32.777812018, -79.9340377, 32.777812018], "geometry": {"coordinates": [-79.9340377, 32.777812018], "type": "Point"}, "id": "2231", "properties": {"Object ID": 574371658, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93987896, 32.772493933, -79.93987896, 32.772493933], "geometry": {"coordinates": [-79.93987896, 32.772493933], "type": "Point"}, "id": "2232", "properties": {"Object ID": 574372046, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94003803, 32.772985924, -79.94003803, 32.772985924], "geometry": {"coordinates": [-79.94003803, 32.772985924], "type": "Point"}, "id": "2233", "properties": {"Object ID": 574372068, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93657736, 32.772016191, -79.93657736, 32.772016191], "geometry": {"coordinates": [-79.93657736, 32.772016191], "type": "Point"}, "id": "2234", "properties": {"Object ID": 574371888, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93692284, 32.77330102, -79.93692284, 32.77330102], "geometry": {"coordinates": [-79.93692284, 32.77330102], "type": "Point"}, "id": "2235", "properties": {"Object ID": 574371912, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93659796, 32.773344327, -79.93659796, 32.773344327], "geometry": {"coordinates": [-79.93659796, 32.773344327], "type": "Point"}, "id": "2236", "properties": {"Object ID": 574371914, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93692533, 32.773515073, -79.93692533, 32.773515073], "geometry": {"coordinates": [-79.93692533, 32.773515073], "type": "Point"}, "id": "2237", "properties": {"Object ID": 574371918, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93540488, 32.776294861, -79.93540488, 32.776294861], "geometry": {"coordinates": [-79.93540488, 32.776294861], "type": "Point"}, "id": "2238", "properties": {"Object ID": 574372950, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93577778, 32.771690262, -79.93577778, 32.771690262], "geometry": {"coordinates": [-79.93577778, 32.771690262], "type": "Point"}, "id": "2239", "properties": {"Object ID": 574431715, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93385777, 32.779260347, -79.93385777, 32.779260347], "geometry": {"coordinates": [-79.93385777, 32.779260347], "type": "Point"}, "id": "2240", "properties": {"Object ID": 574446541, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93406237, 32.770313028, -79.93406237, 32.770313028], "geometry": {"coordinates": [-79.93406237, 32.770313028], "type": "Point"}, "id": "2241", "properties": {"Object ID": 574476702, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "2242", "properties": {"Object ID": 574485662, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94001548, 32.77870671, -79.94001548, 32.77870671], "geometry": {"coordinates": [-79.94001548, 32.77870671], "type": "Point"}, "id": "2243", "properties": {"Object ID": 574486712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93832432, 32.777450341, -79.93832432, 32.777450341], "geometry": {"coordinates": [-79.93832432, 32.777450341], "type": "Point"}, "id": "2244", "properties": {"Object ID": 574486804, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93892571, 32.776049265, -79.93892571, 32.776049265], "geometry": {"coordinates": [-79.93892571, 32.776049265], "type": "Point"}, "id": "2245", "properties": {"Object ID": 574486808, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94176671, 32.775167289, -79.94176671, 32.775167289], "geometry": {"coordinates": [-79.94176671, 32.775167289], "type": "Point"}, "id": "2246", "properties": {"Object ID": 574486812, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93445966, 32.774075291, -79.93445966, 32.774075291], "geometry": {"coordinates": [-79.93445966, 32.774075291], "type": "Point"}, "id": "2247", "properties": {"Object ID": 574486888, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93671193, 32.776893394, -79.93671193, 32.776893394], "geometry": {"coordinates": [-79.93671193, 32.776893394], "type": "Point"}, "id": "2248", "properties": {"Object ID": 574486965, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93777386, 32.776445317, -79.93777386, 32.776445317], "geometry": {"coordinates": [-79.93777386, 32.776445317], "type": "Point"}, "id": "2249", "properties": {"Object ID": 574486968, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93524174, 32.778131664, -79.93524174, 32.778131664], "geometry": {"coordinates": [-79.93524174, 32.778131664], "type": "Point"}, "id": "2250", "properties": {"Object ID": 574487002, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93555175, 32.778099147, -79.93555175, 32.778099147], "geometry": {"coordinates": [-79.93555175, 32.778099147], "type": "Point"}, "id": "2251", "properties": {"Object ID": 574487004, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93661724, 32.77791198, -79.93661724, 32.77791198], "geometry": {"coordinates": [-79.93661724, 32.77791198], "type": "Point"}, "id": "2252", "properties": {"Object ID": 574487033, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93655901, 32.777917317, -79.93655901, 32.777917317], "geometry": {"coordinates": [-79.93655901, 32.777917317], "type": "Point"}, "id": "2253", "properties": {"Object ID": 574487035, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93544331, 32.777633896, -79.93544331, 32.777633896], "geometry": {"coordinates": [-79.93544331, 32.777633896], "type": "Point"}, "id": "2254", "properties": {"Object ID": 574487042, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "2255", "properties": {"Object ID": 574487070, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93612508, 32.776604113, -79.93612508, 32.776604113], "geometry": {"coordinates": [-79.93612508, 32.776604113], "type": "Point"}, "id": "2256", "properties": {"Object ID": 574487086, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9360093, 32.776544542, -79.9360093, 32.776544542], "geometry": {"coordinates": [-79.9360093, 32.776544542], "type": "Point"}, "id": "2257", "properties": {"Object ID": 574487087, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146728, 32.77204895, -79.94146728, 32.77204895], "geometry": {"coordinates": [-79.94146728, 32.77204895], "type": "Point"}, "id": "2258", "properties": {"Object ID": 574507506, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92937745, 32.782355858, -79.92937745, 32.782355858], "geometry": {"coordinates": [-79.92937745, 32.782355858], "type": "Point"}, "id": "2259", "properties": {"Object ID": 573467949, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93045358, 32.782388363, -79.93045358, 32.782388363], "geometry": {"coordinates": [-79.93045358, 32.782388363], "type": "Point"}, "id": "2260", "properties": {"Object ID": 573467950, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92949886, 32.782506477, -79.92949886, 32.782506477], "geometry": {"coordinates": [-79.92949886, 32.782506477], "type": "Point"}, "id": "2261", "properties": {"Object ID": 573467953, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93034224, 32.782788355, -79.93034224, 32.782788355], "geometry": {"coordinates": [-79.93034224, 32.782788355], "type": "Point"}, "id": "2262", "properties": {"Object ID": 573467962, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93147255, 32.782216093, -79.93147255, 32.782216093], "geometry": {"coordinates": [-79.93147255, 32.782216093], "type": "Point"}, "id": "2263", "properties": {"Object ID": 573475696, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92900958, 32.782028317, -79.92900958, 32.782028317], "geometry": {"coordinates": [-79.92900958, 32.782028317], "type": "Point"}, "id": "2264", "properties": {"Object ID": 573782464, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93052608, 32.780812311, -79.93052608, 32.780812311], "geometry": {"coordinates": [-79.93052608, 32.780812311], "type": "Point"}, "id": "2265", "properties": {"Object ID": 573785536, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9282511, 32.782869981, -79.9282511, 32.782869981], "geometry": {"coordinates": [-79.9282511, 32.782869981], "type": "Point"}, "id": "2266", "properties": {"Object ID": 573827782, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92930076, 32.782982749, -79.92930076, 32.782982749], "geometry": {"coordinates": [-79.92930076, 32.782982749], "type": "Point"}, "id": "2267", "properties": {"Object ID": 573827786, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242442, 32.781970364, -79.93242442, 32.781970364], "geometry": {"coordinates": [-79.93242442, 32.781970364], "type": "Point"}, "id": "2268", "properties": {"Object ID": 574371535, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9326316, 32.781124507, -79.9326316, 32.781124507], "geometry": {"coordinates": [-79.9326316, 32.781124507], "type": "Point"}, "id": "2269", "properties": {"Object ID": 574371552, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93276684, 32.781806628, -79.93276684, 32.781806628], "geometry": {"coordinates": [-79.93276684, 32.781806628], "type": "Point"}, "id": "2270", "properties": {"Object ID": 574371569, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93258546, 32.781970217, -79.93258546, 32.781970217], "geometry": {"coordinates": [-79.93258546, 32.781970217], "type": "Point"}, "id": "2271", "properties": {"Object ID": 574371577, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92890689, 32.781738577, -79.92890689, 32.781738577], "geometry": {"coordinates": [-79.92890689, 32.781738577], "type": "Point"}, "id": "2272", "properties": {"Object ID": 574431308, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92857452, 32.78132147, -79.92857452, 32.78132147], "geometry": {"coordinates": [-79.92857452, 32.78132147], "type": "Point"}, "id": "2273", "properties": {"Object ID": 574431314, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93069936, 32.78185867, -79.93069936, 32.78185867], "geometry": {"coordinates": [-79.93069936, 32.78185867], "type": "Point"}, "id": "2274", "properties": {"Object ID": 574454473, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93392391, 32.781461064, -79.93392391, 32.781461064], "geometry": {"coordinates": [-79.93392391, 32.781461064], "type": "Point"}, "id": "2275", "properties": {"Object ID": 574460905, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93204842, 32.782216168, -79.93204842, 32.782216168], "geometry": {"coordinates": [-79.93204842, 32.782216168], "type": "Point"}, "id": "2276", "properties": {"Object ID": 574460921, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93204842, 32.782216168, -79.93204842, 32.782216168], "geometry": {"coordinates": [-79.93204842, 32.782216168], "type": "Point"}, "id": "2277", "properties": {"Object ID": 574460923, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93346098, 32.781210066, -79.93346098, 32.781210066], "geometry": {"coordinates": [-79.93346098, 32.781210066], "type": "Point"}, "id": "2278", "properties": {"Object ID": 574460933, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9337269, 32.780839519, -79.9337269, 32.780839519], "geometry": {"coordinates": [-79.9337269, 32.780839519], "type": "Point"}, "id": "2279", "properties": {"Object ID": 574460941, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92998156, 32.782075277, -79.92998156, 32.782075277], "geometry": {"coordinates": [-79.92998156, 32.782075277], "type": "Point"}, "id": "2280", "properties": {"Object ID": 574461009, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92844153, 32.782540836, -79.92844153, 32.782540836], "geometry": {"coordinates": [-79.92844153, 32.782540836], "type": "Point"}, "id": "2281", "properties": {"Object ID": 574461011, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93010382, 32.782773607, -79.93010382, 32.782773607], "geometry": {"coordinates": [-79.93010382, 32.782773607], "type": "Point"}, "id": "2282", "properties": {"Object ID": 574488419, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93010382, 32.782773607, -79.93010382, 32.782773607], "geometry": {"coordinates": [-79.93010382, 32.782773607], "type": "Point"}, "id": "2283", "properties": {"Object ID": 574488420, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "2284", "properties": {"Object ID": 574488431, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "2285", "properties": {"Object ID": 574488433, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92896625, 32.783318385, -79.92896625, 32.783318385], "geometry": {"coordinates": [-79.92896625, 32.783318385], "type": "Point"}, "id": "2286", "properties": {"Object ID": 574488650, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2287", "properties": {"Object ID": 574488659, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2288", "properties": {"Object ID": 574488664, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2289", "properties": {"Object ID": 574488675, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2290", "properties": {"Object ID": 574488677, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92961637, 32.782688667, -79.92961637, 32.782688667], "geometry": {"coordinates": [-79.92961637, 32.782688667], "type": "Point"}, "id": "2291", "properties": {"Object ID": 573467957, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93017823, 32.782916667, -79.93017823, 32.782916667], "geometry": {"coordinates": [-79.93017823, 32.782916667], "type": "Point"}, "id": "2292", "properties": {"Object ID": 573467965, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.928631, 32.782198516, -79.928631, 32.782198516], "geometry": {"coordinates": [-79.928631, 32.782198516], "type": "Point"}, "id": "2293", "properties": {"Object ID": 573782458, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93136773, 32.78120541, -79.93136773, 32.78120541], "geometry": {"coordinates": [-79.93136773, 32.78120541], "type": "Point"}, "id": "2294", "properties": {"Object ID": 573831823, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92797932, 32.78365938, -79.92797932, 32.78365938], "geometry": {"coordinates": [-79.92797932, 32.78365938], "type": "Point"}, "id": "2295", "properties": {"Object ID": 574267608, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9326316, 32.781124507, -79.9326316, 32.781124507], "geometry": {"coordinates": [-79.9326316, 32.781124507], "type": "Point"}, "id": "2296", "properties": {"Object ID": 574371548, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93201544, 32.781770845, -79.93201544, 32.781770845], "geometry": {"coordinates": [-79.93201544, 32.781770845], "type": "Point"}, "id": "2297", "properties": {"Object ID": 574371583, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93069936, 32.78185867, -79.93069936, 32.78185867], "geometry": {"coordinates": [-79.93069936, 32.78185867], "type": "Point"}, "id": "2298", "properties": {"Object ID": 574454474, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93355365, 32.781151732, -79.93355365, 32.781151732], "geometry": {"coordinates": [-79.93355365, 32.781151732], "type": "Point"}, "id": "2299", "properties": {"Object ID": 574460935, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "2300", "properties": {"Object ID": 574488425, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92896625, 32.783318385, -79.92896625, 32.783318385], "geometry": {"coordinates": [-79.92896625, 32.783318385], "type": "Point"}, "id": "2301", "properties": {"Object ID": 574488649, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92927955, 32.782692509, -79.92927955, 32.782692509], "geometry": {"coordinates": [-79.92927955, 32.782692509], "type": "Point"}, "id": "2302", "properties": {"Object ID": 574488652, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2303", "properties": {"Object ID": 574488674, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94308092, 32.775116486, -79.94308092, 32.775116486], "geometry": {"coordinates": [-79.94308092, 32.775116486], "type": "Point"}, "id": "2304", "properties": {"Object ID": 573800700, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94249296, 32.774997932, -79.94249296, 32.774997932], "geometry": {"coordinates": [-79.94249296, 32.774997932], "type": "Point"}, "id": "2305", "properties": {"Object ID": 573800702, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94252385, 32.772842073, -79.94252385, 32.772842073], "geometry": {"coordinates": [-79.94252385, 32.772842073], "type": "Point"}, "id": "2306", "properties": {"Object ID": 573800726, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94214278, 32.776888035, -79.94214278, 32.776888035], "geometry": {"coordinates": [-79.94214278, 32.776888035], "type": "Point"}, "id": "2307", "properties": {"Object ID": 573800803, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94242512, 32.77358757, -79.94242512, 32.77358757], "geometry": {"coordinates": [-79.94242512, 32.77358757], "type": "Point"}, "id": "2308", "properties": {"Object ID": 573800971, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94281263, 32.778037052, -79.94281263, 32.778037052], "geometry": {"coordinates": [-79.94281263, 32.778037052], "type": "Point"}, "id": "2309", "properties": {"Object ID": 573806322, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94217871, 32.778224817, -79.94217871, 32.778224817], "geometry": {"coordinates": [-79.94217871, 32.778224817], "type": "Point"}, "id": "2310", "properties": {"Object ID": 573860807, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94196008, 32.778349729, -79.94196008, 32.778349729], "geometry": {"coordinates": [-79.94196008, 32.778349729], "type": "Point"}, "id": "2311", "properties": {"Object ID": 573860817, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94165529, 32.773260587, -79.94165529, 32.773260587], "geometry": {"coordinates": [-79.94165529, 32.773260587], "type": "Point"}, "id": "2312", "properties": {"Object ID": 574270735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9412164, 32.773203632, -79.9412164, 32.773203632], "geometry": {"coordinates": [-79.9412164, 32.773203632], "type": "Point"}, "id": "2313", "properties": {"Object ID": 574270737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94459809, 32.777269989, -79.94459809, 32.777269989], "geometry": {"coordinates": [-79.94459809, 32.777269989], "type": "Point"}, "id": "2314", "properties": {"Object ID": 574348017, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94482689, 32.776602872, -79.94482689, 32.776602872], "geometry": {"coordinates": [-79.94482689, 32.776602872], "type": "Point"}, "id": "2315", "properties": {"Object ID": 574422152, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94175344, 32.773636803, -79.94175344, 32.773636803], "geometry": {"coordinates": [-79.94175344, 32.773636803], "type": "Point"}, "id": "2316", "properties": {"Object ID": 574431437, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94121158, 32.773901986, -79.94121158, 32.773901986], "geometry": {"coordinates": [-79.94121158, 32.773901986], "type": "Point"}, "id": "2317", "properties": {"Object ID": 574431447, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94403704, 32.777062866, -79.94403704, 32.777062866], "geometry": {"coordinates": [-79.94403704, 32.777062866], "type": "Point"}, "id": "2318", "properties": {"Object ID": 574431587, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94420298, 32.776505131, -79.94420298, 32.776505131], "geometry": {"coordinates": [-79.94420298, 32.776505131], "type": "Point"}, "id": "2319", "properties": {"Object ID": 574431589, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9437838, 32.776630645, -79.9437838, 32.776630645], "geometry": {"coordinates": [-79.9437838, 32.776630645], "type": "Point"}, "id": "2320", "properties": {"Object ID": 574431593, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94433842, 32.776978878, -79.94433842, 32.776978878], "geometry": {"coordinates": [-79.94433842, 32.776978878], "type": "Point"}, "id": "2321", "properties": {"Object ID": 574431601, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94417183, 32.776994682, -79.94417183, 32.776994682], "geometry": {"coordinates": [-79.94417183, 32.776994682], "type": "Point"}, "id": "2322", "properties": {"Object ID": 574431603, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "2323", "properties": {"Object ID": 574485653, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "2324", "properties": {"Object ID": 574485656, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "2325", "properties": {"Object ID": 574485665, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "2326", "properties": {"Object ID": 574486699, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "2327", "properties": {"Object ID": 574486705, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "2328", "properties": {"Object ID": 574486706, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94341468, 32.777162558, -79.94341468, 32.777162558], "geometry": {"coordinates": [-79.94341468, 32.777162558], "type": "Point"}, "id": "2329", "properties": {"Object ID": 574486735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "2330", "properties": {"Object ID": 574486738, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "2331", "properties": {"Object ID": 574486743, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "2332", "properties": {"Object ID": 574486744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "2333", "properties": {"Object ID": 574486756, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "2334", "properties": {"Object ID": 574486759, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2335", "properties": {"Object ID": 574486764, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2336", "properties": {"Object ID": 574486767, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2337", "properties": {"Object ID": 574486772, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2338", "properties": {"Object ID": 574486773, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2339", "properties": {"Object ID": 574486778, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2340", "properties": {"Object ID": 574486780, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2341", "properties": {"Object ID": 574486781, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2342", "properties": {"Object ID": 574486783, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2343", "properties": {"Object ID": 574486784, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2344", "properties": {"Object ID": 574486785, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2345", "properties": {"Object ID": 574486786, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94176671, 32.775167289, -79.94176671, 32.775167289], "geometry": {"coordinates": [-79.94176671, 32.775167289], "type": "Point"}, "id": "2346", "properties": {"Object ID": 574486813, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94176671, 32.775167289, -79.94176671, 32.775167289], "geometry": {"coordinates": [-79.94176671, 32.775167289], "type": "Point"}, "id": "2347", "properties": {"Object ID": 574486814, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "2348", "properties": {"Object ID": 574486824, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93156324, 32.77305763, -79.93156324, 32.77305763], "geometry": {"coordinates": [-79.93156324, 32.77305763], "type": "Point"}, "id": "2349", "properties": {"Object ID": 573785647, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93214602, 32.773223821, -79.93214602, 32.773223821], "geometry": {"coordinates": [-79.93214602, 32.773223821], "type": "Point"}, "id": "2350", "properties": {"Object ID": 573785655, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93212927, 32.773402315, -79.93212927, 32.773402315], "geometry": {"coordinates": [-79.93212927, 32.773402315], "type": "Point"}, "id": "2351", "properties": {"Object ID": 573785667, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93186254, 32.773103223, -79.93186254, 32.773103223], "geometry": {"coordinates": [-79.93186254, 32.773103223], "type": "Point"}, "id": "2352", "properties": {"Object ID": 573785685, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93202076, 32.772853535, -79.93202076, 32.772853535], "geometry": {"coordinates": [-79.93202076, 32.772853535], "type": "Point"}, "id": "2353", "properties": {"Object ID": 573785687, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93294367, 32.774517966, -79.93294367, 32.774517966], "geometry": {"coordinates": [-79.93294367, 32.774517966], "type": "Point"}, "id": "2354", "properties": {"Object ID": 573785804, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93268368, 32.774942759, -79.93268368, 32.774942759], "geometry": {"coordinates": [-79.93268368, 32.774942759], "type": "Point"}, "id": "2355", "properties": {"Object ID": 573785818, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93311344, 32.775004853, -79.93311344, 32.775004853], "geometry": {"coordinates": [-79.93311344, 32.775004853], "type": "Point"}, "id": "2356", "properties": {"Object ID": 573785822, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93272994, 32.775103143, -79.93272994, 32.775103143], "geometry": {"coordinates": [-79.93272994, 32.775103143], "type": "Point"}, "id": "2357", "properties": {"Object ID": 573785824, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93277277, 32.775330838, -79.93277277, 32.775330838], "geometry": {"coordinates": [-79.93277277, 32.775330838], "type": "Point"}, "id": "2358", "properties": {"Object ID": 573785829, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93319615, 32.775518126, -79.93319615, 32.775518126], "geometry": {"coordinates": [-79.93319615, 32.775518126], "type": "Point"}, "id": "2359", "properties": {"Object ID": 573785835, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93319429, 32.775289372, -79.93319429, 32.775289372], "geometry": {"coordinates": [-79.93319429, 32.775289372], "type": "Point"}, "id": "2360", "properties": {"Object ID": 573785862, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93276144, 32.771764566, -79.93276144, 32.771764566], "geometry": {"coordinates": [-79.93276144, 32.771764566], "type": "Point"}, "id": "2361", "properties": {"Object ID": 573785881, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93278038, 32.771943839, -79.93278038, 32.771943839], "geometry": {"coordinates": [-79.93278038, 32.771943839], "type": "Point"}, "id": "2362", "properties": {"Object ID": 573785893, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93250085, 32.772570233, -79.93250085, 32.772570233], "geometry": {"coordinates": [-79.93250085, 32.772570233], "type": "Point"}, "id": "2363", "properties": {"Object ID": 573785909, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93293189, 32.77302771, -79.93293189, 32.77302771], "geometry": {"coordinates": [-79.93293189, 32.77302771], "type": "Point"}, "id": "2364", "properties": {"Object ID": 573785923, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93264071, 32.773541761, -79.93264071, 32.773541761], "geometry": {"coordinates": [-79.93264071, 32.773541761], "type": "Point"}, "id": "2365", "properties": {"Object ID": 573785937, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93348458, 32.773706484, -79.93348458, 32.773706484], "geometry": {"coordinates": [-79.93348458, 32.773706484], "type": "Point"}, "id": "2366", "properties": {"Object ID": 573785943, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93290514, 32.773895802, -79.93290514, 32.773895802], "geometry": {"coordinates": [-79.93290514, 32.773895802], "type": "Point"}, "id": "2367", "properties": {"Object ID": 573785952, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93286039, 32.774008405, -79.93286039, 32.774008405], "geometry": {"coordinates": [-79.93286039, 32.774008405], "type": "Point"}, "id": "2368", "properties": {"Object ID": 573785960, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93320286, 32.774123107, -79.93320286, 32.774123107], "geometry": {"coordinates": [-79.93320286, 32.774123107], "type": "Point"}, "id": "2369", "properties": {"Object ID": 573785972, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93298733, 32.774283026, -79.93298733, 32.774283026], "geometry": {"coordinates": [-79.93298733, 32.774283026], "type": "Point"}, "id": "2370", "properties": {"Object ID": 573785978, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93290608, 32.774317505, -79.93290608, 32.774317505], "geometry": {"coordinates": [-79.93290608, 32.774317505], "type": "Point"}, "id": "2371", "properties": {"Object ID": 573785980, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93148619, 32.774760872, -79.93148619, 32.774760872], "geometry": {"coordinates": [-79.93148619, 32.774760872], "type": "Point"}, "id": "2372", "properties": {"Object ID": 573831672, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93148619, 32.774760872, -79.93148619, 32.774760872], "geometry": {"coordinates": [-79.93148619, 32.774760872], "type": "Point"}, "id": "2373", "properties": {"Object ID": 573831674, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93237436, 32.774817891, -79.93237436, 32.774817891], "geometry": {"coordinates": [-79.93237436, 32.774817891], "type": "Point"}, "id": "2374", "properties": {"Object ID": 573831676, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93184157, 32.774769794, -79.93184157, 32.774769794], "geometry": {"coordinates": [-79.93184157, 32.774769794], "type": "Point"}, "id": "2375", "properties": {"Object ID": 573831687, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93227468, 32.775209382, -79.93227468, 32.775209382], "geometry": {"coordinates": [-79.93227468, 32.775209382], "type": "Point"}, "id": "2376", "properties": {"Object ID": 573831705, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93185937, 32.775545192, -79.93185937, 32.775545192], "geometry": {"coordinates": [-79.93185937, 32.775545192], "type": "Point"}, "id": "2377", "properties": {"Object ID": 573831725, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9322801, 32.776149882, -79.9322801, 32.776149882], "geometry": {"coordinates": [-79.9322801, 32.776149882], "type": "Point"}, "id": "2378", "properties": {"Object ID": 573831742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93162921, 32.77607049, -79.93162921, 32.77607049], "geometry": {"coordinates": [-79.93162921, 32.77607049], "type": "Point"}, "id": "2379", "properties": {"Object ID": 573831748, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93162921, 32.77607049, -79.93162921, 32.77607049], "geometry": {"coordinates": [-79.93162921, 32.77607049], "type": "Point"}, "id": "2380", "properties": {"Object ID": 573831750, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93207714, 32.776214253, -79.93207714, 32.776214253], "geometry": {"coordinates": [-79.93207714, 32.776214253], "type": "Point"}, "id": "2381", "properties": {"Object ID": 573831754, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9324294, 32.777952992, -79.9324294, 32.777952992], "geometry": {"coordinates": [-79.9324294, 32.777952992], "type": "Point"}, "id": "2382", "properties": {"Object ID": 573831768, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93214434, 32.778087636, -79.93214434, 32.778087636], "geometry": {"coordinates": [-79.93214434, 32.778087636], "type": "Point"}, "id": "2383", "properties": {"Object ID": 573831772, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93196011, 32.778118245, -79.93196011, 32.778118245], "geometry": {"coordinates": [-79.93196011, 32.778118245], "type": "Point"}, "id": "2384", "properties": {"Object ID": 573831780, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93271625, 32.778164884, -79.93271625, 32.778164884], "geometry": {"coordinates": [-79.93271625, 32.778164884], "type": "Point"}, "id": "2385", "properties": {"Object ID": 573831788, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.931735, 32.778508926, -79.931735, 32.778508926], "geometry": {"coordinates": [-79.931735, 32.778508926], "type": "Point"}, "id": "2386", "properties": {"Object ID": 573831790, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93198568, 32.779136197, -79.93198568, 32.779136197], "geometry": {"coordinates": [-79.93198568, 32.779136197], "type": "Point"}, "id": "2387", "properties": {"Object ID": 573831801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.931676, 32.779163, -79.931676, 32.779163], "geometry": {"coordinates": [-79.931676, 32.779163], "type": "Point"}, "id": "2388", "properties": {"Object ID": 573831803, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93274537, 32.777927297, -79.93274537, 32.777927297], "geometry": {"coordinates": [-79.93274537, 32.777927297], "type": "Point"}, "id": "2389", "properties": {"Object ID": 573831809, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93136773, 32.78120541, -79.93136773, 32.78120541], "geometry": {"coordinates": [-79.93136773, 32.78120541], "type": "Point"}, "id": "2390", "properties": {"Object ID": 573831819, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93136773, 32.78120541, -79.93136773, 32.78120541], "geometry": {"coordinates": [-79.93136773, 32.78120541], "type": "Point"}, "id": "2391", "properties": {"Object ID": 573831825, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93215196, 32.770892097, -79.93215196, 32.770892097], "geometry": {"coordinates": [-79.93215196, 32.770892097], "type": "Point"}, "id": "2392", "properties": {"Object ID": 573841005, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93360475, 32.770837864, -79.93360475, 32.770837864], "geometry": {"coordinates": [-79.93360475, 32.770837864], "type": "Point"}, "id": "2393", "properties": {"Object ID": 573841008, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93271903, 32.771154785, -79.93271903, 32.771154785], "geometry": {"coordinates": [-79.93271903, 32.771154785], "type": "Point"}, "id": "2394", "properties": {"Object ID": 573841016, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93225783, 32.771210807, -79.93225783, 32.771210807], "geometry": {"coordinates": [-79.93225783, 32.771210807], "type": "Point"}, "id": "2395", "properties": {"Object ID": 573841019, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93336519, 32.771338226, -79.93336519, 32.771338226], "geometry": {"coordinates": [-79.93336519, 32.771338226], "type": "Point"}, "id": "2396", "properties": {"Object ID": 573841021, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93254517, 32.771333852, -79.93254517, 32.771333852], "geometry": {"coordinates": [-79.93254517, 32.771333852], "type": "Point"}, "id": "2397", "properties": {"Object ID": 573841023, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93301629, 32.771394898, -79.93301629, 32.771394898], "geometry": {"coordinates": [-79.93301629, 32.771394898], "type": "Point"}, "id": "2398", "properties": {"Object ID": 573841025, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93292011, 32.77142414, -79.93292011, 32.77142414], "geometry": {"coordinates": [-79.93292011, 32.77142414], "type": "Point"}, "id": "2399", "properties": {"Object ID": 573841026, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93176892, 32.771816573, -79.93176892, 32.771816573], "geometry": {"coordinates": [-79.93176892, 32.771816573], "type": "Point"}, "id": "2400", "properties": {"Object ID": 574268211, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93199416, 32.771922437, -79.93199416, 32.771922437], "geometry": {"coordinates": [-79.93199416, 32.771922437], "type": "Point"}, "id": "2401", "properties": {"Object ID": 574268213, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.933352, 32.769817861, -79.933352, 32.769817861], "geometry": {"coordinates": [-79.933352, 32.769817861], "type": "Point"}, "id": "2402", "properties": {"Object ID": 574268563, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93325055, 32.769822756, -79.93325055, 32.769822756], "geometry": {"coordinates": [-79.93325055, 32.769822756], "type": "Point"}, "id": "2403", "properties": {"Object ID": 574268565, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93415227, 32.769904901, -79.93415227, 32.769904901], "geometry": {"coordinates": [-79.93415227, 32.769904901], "type": "Point"}, "id": "2404", "properties": {"Object ID": 574268575, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93217351, 32.769910148, -79.93217351, 32.769910148], "geometry": {"coordinates": [-79.93217351, 32.769910148], "type": "Point"}, "id": "2405", "properties": {"Object ID": 574268581, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93384413, 32.770258701, -79.93384413, 32.770258701], "geometry": {"coordinates": [-79.93384413, 32.770258701], "type": "Point"}, "id": "2406", "properties": {"Object ID": 574268585, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9338643, 32.770498205, -79.9338643, 32.770498205], "geometry": {"coordinates": [-79.9338643, 32.770498205], "type": "Point"}, "id": "2407", "properties": {"Object ID": 574268608, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93355286, 32.7705268, -79.93355286, 32.7705268], "geometry": {"coordinates": [-79.93355286, 32.7705268], "type": "Point"}, "id": "2408", "properties": {"Object ID": 574268616, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9338696, 32.770513767, -79.9338696, 32.770513767], "geometry": {"coordinates": [-79.9338696, 32.770513767], "type": "Point"}, "id": "2409", "properties": {"Object ID": 574268622, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93394756, 32.771041741, -79.93394756, 32.771041741], "geometry": {"coordinates": [-79.93394756, 32.771041741], "type": "Point"}, "id": "2410", "properties": {"Object ID": 574268678, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93411191, 32.77135412, -79.93411191, 32.77135412], "geometry": {"coordinates": [-79.93411191, 32.77135412], "type": "Point"}, "id": "2411", "properties": {"Object ID": 574268684, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93220751, 32.773603483, -79.93220751, 32.773603483], "geometry": {"coordinates": [-79.93220751, 32.773603483], "type": "Point"}, "id": "2412", "properties": {"Object ID": 574293771, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93169283, 32.773642137, -79.93169283, 32.773642137], "geometry": {"coordinates": [-79.93169283, 32.773642137], "type": "Point"}, "id": "2413", "properties": {"Object ID": 574293773, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93184168, 32.773760501, -79.93184168, 32.773760501], "geometry": {"coordinates": [-79.93184168, 32.773760501], "type": "Point"}, "id": "2414", "properties": {"Object ID": 574293777, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93217545, 32.773779475, -79.93217545, 32.773779475], "geometry": {"coordinates": [-79.93217545, 32.773779475], "type": "Point"}, "id": "2415", "properties": {"Object ID": 574293779, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93224549, 32.77388842, -79.93224549, 32.77388842], "geometry": {"coordinates": [-79.93224549, 32.77388842], "type": "Point"}, "id": "2416", "properties": {"Object ID": 574293781, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9316909, 32.774317582, -79.9316909, 32.774317582], "geometry": {"coordinates": [-79.9316909, 32.774317582], "type": "Point"}, "id": "2417", "properties": {"Object ID": 574293789, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93230226, 32.774381701, -79.93230226, 32.774381701], "geometry": {"coordinates": [-79.93230226, 32.774381701], "type": "Point"}, "id": "2418", "properties": {"Object ID": 574293793, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242442, 32.781970364, -79.93242442, 32.781970364], "geometry": {"coordinates": [-79.93242442, 32.781970364], "type": "Point"}, "id": "2419", "properties": {"Object ID": 574371540, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9326316, 32.781124507, -79.9326316, 32.781124507], "geometry": {"coordinates": [-79.9326316, 32.781124507], "type": "Point"}, "id": "2420", "properties": {"Object ID": 574371558, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93276684, 32.781806628, -79.93276684, 32.781806628], "geometry": {"coordinates": [-79.93276684, 32.781806628], "type": "Point"}, "id": "2421", "properties": {"Object ID": 574371561, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93258546, 32.781970217, -79.93258546, 32.781970217], "geometry": {"coordinates": [-79.93258546, 32.781970217], "type": "Point"}, "id": "2422", "properties": {"Object ID": 574371573, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93258546, 32.781970217, -79.93258546, 32.781970217], "geometry": {"coordinates": [-79.93258546, 32.781970217], "type": "Point"}, "id": "2423", "properties": {"Object ID": 574371579, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93201544, 32.781770845, -79.93201544, 32.781770845], "geometry": {"coordinates": [-79.93201544, 32.781770845], "type": "Point"}, "id": "2424", "properties": {"Object ID": 574371587, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93201544, 32.781770845, -79.93201544, 32.781770845], "geometry": {"coordinates": [-79.93201544, 32.781770845], "type": "Point"}, "id": "2425", "properties": {"Object ID": 574371589, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93388844, 32.778057847, -79.93388844, 32.778057847], "geometry": {"coordinates": [-79.93388844, 32.778057847], "type": "Point"}, "id": "2426", "properties": {"Object ID": 574371649, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93312309, 32.777861464, -79.93312309, 32.777861464], "geometry": {"coordinates": [-79.93312309, 32.777861464], "type": "Point"}, "id": "2427", "properties": {"Object ID": 574371668, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93391977, 32.777859319, -79.93391977, 32.777859319], "geometry": {"coordinates": [-79.93391977, 32.777859319], "type": "Point"}, "id": "2428", "properties": {"Object ID": 574371671, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9336595, 32.7778835, -79.9336595, 32.7778835], "geometry": {"coordinates": [-79.9336595, 32.7778835], "type": "Point"}, "id": "2429", "properties": {"Object ID": 574371687, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93107316, 32.770696863, -79.93107316, 32.770696863], "geometry": {"coordinates": [-79.93107316, 32.770696863], "type": "Point"}, "id": "2430", "properties": {"Object ID": 574372686, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9316774, 32.770791503, -79.9316774, 32.770791503], "geometry": {"coordinates": [-79.9316774, 32.770791503], "type": "Point"}, "id": "2431", "properties": {"Object ID": 574372701, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93361407, 32.776416618, -79.93361407, 32.776416618], "geometry": {"coordinates": [-79.93361407, 32.776416618], "type": "Point"}, "id": "2432", "properties": {"Object ID": 574409642, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93373014, 32.776740174, -79.93373014, 32.776740174], "geometry": {"coordinates": [-79.93373014, 32.776740174], "type": "Point"}, "id": "2433", "properties": {"Object ID": 574409646, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93305761, 32.776982082, -79.93305761, 32.776982082], "geometry": {"coordinates": [-79.93305761, 32.776982082], "type": "Point"}, "id": "2434", "properties": {"Object ID": 574409652, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93364149, 32.777297619, -79.93364149, 32.777297619], "geometry": {"coordinates": [-79.93364149, 32.777297619], "type": "Point"}, "id": "2435", "properties": {"Object ID": 574409658, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93364149, 32.777297619, -79.93364149, 32.777297619], "geometry": {"coordinates": [-79.93364149, 32.777297619], "type": "Point"}, "id": "2436", "properties": {"Object ID": 574409659, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93307108, 32.77742516, -79.93307108, 32.77742516], "geometry": {"coordinates": [-79.93307108, 32.77742516], "type": "Point"}, "id": "2437", "properties": {"Object ID": 574409660, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93334161, 32.778622412, -79.93334161, 32.778622412], "geometry": {"coordinates": [-79.93334161, 32.778622412], "type": "Point"}, "id": "2438", "properties": {"Object ID": 574421801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93334161, 32.778622412, -79.93334161, 32.778622412], "geometry": {"coordinates": [-79.93334161, 32.778622412], "type": "Point"}, "id": "2439", "properties": {"Object ID": 574421803, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9332361, 32.778915174, -79.9332361, 32.778915174], "geometry": {"coordinates": [-79.9332361, 32.778915174], "type": "Point"}, "id": "2440", "properties": {"Object ID": 574421809, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9336979, 32.779879458, -79.9336979, 32.779879458], "geometry": {"coordinates": [-79.9336979, 32.779879458], "type": "Point"}, "id": "2441", "properties": {"Object ID": 574446505, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93355639, 32.779534253, -79.93355639, 32.779534253], "geometry": {"coordinates": [-79.93355639, 32.779534253], "type": "Point"}, "id": "2442", "properties": {"Object ID": 574446555, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93342151, 32.779442072, -79.93342151, 32.779442072], "geometry": {"coordinates": [-79.93342151, 32.779442072], "type": "Point"}, "id": "2443", "properties": {"Object ID": 574446563, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93364603, 32.781073771, -79.93364603, 32.781073771], "geometry": {"coordinates": [-79.93364603, 32.781073771], "type": "Point"}, "id": "2444", "properties": {"Object ID": 574447834, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93368836, 32.78091163, -79.93368836, 32.78091163], "geometry": {"coordinates": [-79.93368836, 32.78091163], "type": "Point"}, "id": "2445", "properties": {"Object ID": 574447838, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93401099, 32.780256033, -79.93401099, 32.780256033], "geometry": {"coordinates": [-79.93401099, 32.780256033], "type": "Point"}, "id": "2446", "properties": {"Object ID": 574455888, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93401099, 32.780256033, -79.93401099, 32.780256033], "geometry": {"coordinates": [-79.93401099, 32.780256033], "type": "Point"}, "id": "2447", "properties": {"Object ID": 574455892, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93355205, 32.781223407, -79.93355205, 32.781223407], "geometry": {"coordinates": [-79.93355205, 32.781223407], "type": "Point"}, "id": "2448", "properties": {"Object ID": 574460927, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93287932, 32.779660719, -79.93287932, 32.779660719], "geometry": {"coordinates": [-79.93287932, 32.779660719], "type": "Point"}, "id": "2449", "properties": {"Object ID": 574460959, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93264836, 32.778387641, -79.93264836, 32.778387641], "geometry": {"coordinates": [-79.93264836, 32.778387641], "type": "Point"}, "id": "2450", "properties": {"Object ID": 574460965, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "2451", "properties": {"Object ID": 574460975, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "2452", "properties": {"Object ID": 574460977, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "2453", "properties": {"Object ID": 574460981, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "2454", "properties": {"Object ID": 574460991, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93315753, 32.777901952, -79.93315753, 32.777901952], "geometry": {"coordinates": [-79.93315753, 32.777901952], "type": "Point"}, "id": "2455", "properties": {"Object ID": 574461039, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93323889, 32.77801247, -79.93323889, 32.77801247], "geometry": {"coordinates": [-79.93323889, 32.77801247], "type": "Point"}, "id": "2456", "properties": {"Object ID": 574461041, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93269937, 32.77799692, -79.93269937, 32.77799692], "geometry": {"coordinates": [-79.93269937, 32.77799692], "type": "Point"}, "id": "2457", "properties": {"Object ID": 574461047, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2458", "properties": {"Object ID": 574476704, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2459", "properties": {"Object ID": 574476714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2460", "properties": {"Object ID": 574476716, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2461", "properties": {"Object ID": 574476720, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2462", "properties": {"Object ID": 574476722, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2463", "properties": {"Object ID": 574476739, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2464", "properties": {"Object ID": 574476761, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2465", "properties": {"Object ID": 574476777, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2466", "properties": {"Object ID": 574476799, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2467", "properties": {"Object ID": 574476801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2468", "properties": {"Object ID": 574476805, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2469", "properties": {"Object ID": 574476810, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241459, 32.775817134, -79.93241459, 32.775817134], "geometry": {"coordinates": [-79.93241459, 32.775817134], "type": "Point"}, "id": "2470", "properties": {"Object ID": 574486860, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93218159, 32.775506556, -79.93218159, 32.775506556], "geometry": {"coordinates": [-79.93218159, 32.775506556], "type": "Point"}, "id": "2471", "properties": {"Object ID": 574486893, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93213015, 32.775116518, -79.93213015, 32.775116518], "geometry": {"coordinates": [-79.93213015, 32.775116518], "type": "Point"}, "id": "2472", "properties": {"Object ID": 574486894, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93152053, 32.773122119, -79.93152053, 32.773122119], "geometry": {"coordinates": [-79.93152053, 32.773122119], "type": "Point"}, "id": "2473", "properties": {"Object ID": 574486911, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93367633, 32.771775983, -79.93367633, 32.771775983], "geometry": {"coordinates": [-79.93367633, 32.771775983], "type": "Point"}, "id": "2474", "properties": {"Object ID": 574486912, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93337915, 32.770923728, -79.93337915, 32.770923728], "geometry": {"coordinates": [-79.93337915, 32.770923728], "type": "Point"}, "id": "2475", "properties": {"Object ID": 574486921, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93337915, 32.770923728, -79.93337915, 32.770923728], "geometry": {"coordinates": [-79.93337915, 32.770923728], "type": "Point"}, "id": "2476", "properties": {"Object ID": 574486925, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93114909, 32.770788259, -79.93114909, 32.770788259], "geometry": {"coordinates": [-79.93114909, 32.770788259], "type": "Point"}, "id": "2477", "properties": {"Object ID": 574486931, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93361562, 32.779523229, -79.93361562, 32.779523229], "geometry": {"coordinates": [-79.93361562, 32.779523229], "type": "Point"}, "id": "2478", "properties": {"Object ID": 574487006, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93392391, 32.781461064, -79.93392391, 32.781461064], "geometry": {"coordinates": [-79.93392391, 32.781461064], "type": "Point"}, "id": "2479", "properties": {"Object ID": 574488435, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93392391, 32.781461064, -79.93392391, 32.781461064], "geometry": {"coordinates": [-79.93392391, 32.781461064], "type": "Point"}, "id": "2480", "properties": {"Object ID": 574488436, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93392391, 32.781461064, -79.93392391, 32.781461064], "geometry": {"coordinates": [-79.93392391, 32.781461064], "type": "Point"}, "id": "2481", "properties": {"Object ID": 574488438, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94569164, 32.776789674, -79.94569164, 32.776789674], "geometry": {"coordinates": [-79.94569164, 32.776789674], "type": "Point"}, "id": "2482", "properties": {"Object ID": 573807478, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94559827, 32.776826045, -79.94559827, 32.776826045], "geometry": {"coordinates": [-79.94559827, 32.776826045], "type": "Point"}, "id": "2483", "properties": {"Object ID": 574486734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92777691, 32.772712041, -79.92777691, 32.772712041], "geometry": {"coordinates": [-79.92777691, 32.772712041], "type": "Point"}, "id": "2484", "properties": {"Object ID": 573779303, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92826814, 32.77291566, -79.92826814, 32.77291566], "geometry": {"coordinates": [-79.92826814, 32.77291566], "type": "Point"}, "id": "2485", "properties": {"Object ID": 573779307, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92764997, 32.77305777, -79.92764997, 32.77305777], "geometry": {"coordinates": [-79.92764997, 32.77305777], "type": "Point"}, "id": "2486", "properties": {"Object ID": 573779313, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92796409, 32.773452674, -79.92796409, 32.773452674], "geometry": {"coordinates": [-79.92796409, 32.773452674], "type": "Point"}, "id": "2487", "properties": {"Object ID": 573779333, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92876921, 32.773557141, -79.92876921, 32.773557141], "geometry": {"coordinates": [-79.92876921, 32.773557141], "type": "Point"}, "id": "2488", "properties": {"Object ID": 573779337, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92851868, 32.773602636, -79.92851868, 32.773602636], "geometry": {"coordinates": [-79.92851868, 32.773602636], "type": "Point"}, "id": "2489", "properties": {"Object ID": 573779339, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9275327, 32.773684646, -79.9275327, 32.773684646], "geometry": {"coordinates": [-79.9275327, 32.773684646], "type": "Point"}, "id": "2490", "properties": {"Object ID": 573779343, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92878871, 32.773797213, -79.92878871, 32.773797213], "geometry": {"coordinates": [-79.92878871, 32.773797213], "type": "Point"}, "id": "2491", "properties": {"Object ID": 573779347, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92881092, 32.77420289, -79.92881092, 32.77420289], "geometry": {"coordinates": [-79.92881092, 32.77420289], "type": "Point"}, "id": "2492", "properties": {"Object ID": 573779363, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92885668, 32.774381581, -79.92885668, 32.774381581], "geometry": {"coordinates": [-79.92885668, 32.774381581], "type": "Point"}, "id": "2493", "properties": {"Object ID": 573779371, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92837063, 32.774364097, -79.92837063, 32.774364097], "geometry": {"coordinates": [-79.92837063, 32.774364097], "type": "Point"}, "id": "2494", "properties": {"Object ID": 573779373, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92804538, 32.774406017, -79.92804538, 32.774406017], "geometry": {"coordinates": [-79.92804538, 32.774406017], "type": "Point"}, "id": "2495", "properties": {"Object ID": 573779377, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92818964, 32.774652162, -79.92818964, 32.774652162], "geometry": {"coordinates": [-79.92818964, 32.774652162], "type": "Point"}, "id": "2496", "properties": {"Object ID": 573779389, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92895577, 32.774688584, -79.92895577, 32.774688584], "geometry": {"coordinates": [-79.92895577, 32.774688584], "type": "Point"}, "id": "2497", "properties": {"Object ID": 573779395, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9287278, 32.774778834, -79.9287278, 32.774778834], "geometry": {"coordinates": [-79.9287278, 32.774778834], "type": "Point"}, "id": "2498", "properties": {"Object ID": 573779400, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92823428, 32.774875039, -79.92823428, 32.774875039], "geometry": {"coordinates": [-79.92823428, 32.774875039], "type": "Point"}, "id": "2499", "properties": {"Object ID": 573779409, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92807351, 32.774924516, -79.92807351, 32.774924516], "geometry": {"coordinates": [-79.92807351, 32.774924516], "type": "Point"}, "id": "2500", "properties": {"Object ID": 573779411, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92794544, 32.779117807, -79.92794544, 32.779117807], "geometry": {"coordinates": [-79.92794544, 32.779117807], "type": "Point"}, "id": "2501", "properties": {"Object ID": 573779439, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92774785, 32.779257139, -79.92774785, 32.779257139], "geometry": {"coordinates": [-79.92774785, 32.779257139], "type": "Point"}, "id": "2502", "properties": {"Object ID": 573781646, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92828742, 32.778875554, -79.92828742, 32.778875554], "geometry": {"coordinates": [-79.92828742, 32.778875554], "type": "Point"}, "id": "2503", "properties": {"Object ID": 573782389, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92863034, 32.778887381, -79.92863034, 32.778887381], "geometry": {"coordinates": [-79.92863034, 32.778887381], "type": "Point"}, "id": "2504", "properties": {"Object ID": 573782399, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93042563, 32.773373042, -79.93042563, 32.773373042], "geometry": {"coordinates": [-79.93042563, 32.773373042], "type": "Point"}, "id": "2505", "properties": {"Object ID": 573782602, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92902039, 32.772244664, -79.92902039, 32.772244664], "geometry": {"coordinates": [-79.92902039, 32.772244664], "type": "Point"}, "id": "2506", "properties": {"Object ID": 573782423, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92934543, 32.772475941, -79.92934543, 32.772475941], "geometry": {"coordinates": [-79.92934543, 32.772475941], "type": "Point"}, "id": "2507", "properties": {"Object ID": 573782429, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92880246, 32.772462962, -79.92880246, 32.772462962], "geometry": {"coordinates": [-79.92880246, 32.772462962], "type": "Point"}, "id": "2508", "properties": {"Object ID": 573782431, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92814677, 32.772596301, -79.92814677, 32.772596301], "geometry": {"coordinates": [-79.92814677, 32.772596301], "type": "Point"}, "id": "2509", "properties": {"Object ID": 573782441, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92898265, 32.772758478, -79.92898265, 32.772758478], "geometry": {"coordinates": [-79.92898265, 32.772758478], "type": "Point"}, "id": "2510", "properties": {"Object ID": 573782447, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92917171, 32.772843413, -79.92917171, 32.772843413], "geometry": {"coordinates": [-79.92917171, 32.772843413], "type": "Point"}, "id": "2511", "properties": {"Object ID": 573782451, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92786767, 32.782034478, -79.92786767, 32.782034478], "geometry": {"coordinates": [-79.92786767, 32.782034478], "type": "Point"}, "id": "2512", "properties": {"Object ID": 573782466, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92786767, 32.782034478, -79.92786767, 32.782034478], "geometry": {"coordinates": [-79.92786767, 32.782034478], "type": "Point"}, "id": "2513", "properties": {"Object ID": 573782468, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92908918, 32.777743575, -79.92908918, 32.777743575], "geometry": {"coordinates": [-79.92908918, 32.777743575], "type": "Point"}, "id": "2514", "properties": {"Object ID": 573782482, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92885392, 32.777765527, -79.92885392, 32.777765527], "geometry": {"coordinates": [-79.92885392, 32.777765527], "type": "Point"}, "id": "2515", "properties": {"Object ID": 573782484, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92809579, 32.777866624, -79.92809579, 32.777866624], "geometry": {"coordinates": [-79.92809579, 32.777866624], "type": "Point"}, "id": "2516", "properties": {"Object ID": 573782487, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92893254, 32.777895202, -79.92893254, 32.777895202], "geometry": {"coordinates": [-79.92893254, 32.777895202], "type": "Point"}, "id": "2517", "properties": {"Object ID": 573782489, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92868565, 32.778256887, -79.92868565, 32.778256887], "geometry": {"coordinates": [-79.92868565, 32.778256887], "type": "Point"}, "id": "2518", "properties": {"Object ID": 573782501, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92885565, 32.778295964, -79.92885565, 32.778295964], "geometry": {"coordinates": [-79.92885565, 32.778295964], "type": "Point"}, "id": "2519", "properties": {"Object ID": 573782504, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92830824, 32.775131023, -79.92830824, 32.775131023], "geometry": {"coordinates": [-79.92830824, 32.775131023], "type": "Point"}, "id": "2520", "properties": {"Object ID": 573782520, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92850464, 32.775123069, -79.92850464, 32.775123069], "geometry": {"coordinates": [-79.92850464, 32.775123069], "type": "Point"}, "id": "2521", "properties": {"Object ID": 573782522, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92889412, 32.775479003, -79.92889412, 32.775479003], "geometry": {"coordinates": [-79.92889412, 32.775479003], "type": "Point"}, "id": "2522", "properties": {"Object ID": 573782530, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92850842, 32.775514706, -79.92850842, 32.775514706], "geometry": {"coordinates": [-79.92850842, 32.775514706], "type": "Point"}, "id": "2523", "properties": {"Object ID": 573782534, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92864798, 32.775946597, -79.92864798, 32.775946597], "geometry": {"coordinates": [-79.92864798, 32.775946597], "type": "Point"}, "id": "2524", "properties": {"Object ID": 573782550, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93009086, 32.772101145, -79.93009086, 32.772101145], "geometry": {"coordinates": [-79.93009086, 32.772101145], "type": "Point"}, "id": "2525", "properties": {"Object ID": 573782560, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92975895, 32.772182602, -79.92975895, 32.772182602], "geometry": {"coordinates": [-79.92975895, 32.772182602], "type": "Point"}, "id": "2526", "properties": {"Object ID": 573782564, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93022107, 32.77233941, -79.93022107, 32.77233941], "geometry": {"coordinates": [-79.93022107, 32.77233941], "type": "Point"}, "id": "2527", "properties": {"Object ID": 573782568, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93031273, 32.772567543, -79.93031273, 32.772567543], "geometry": {"coordinates": [-79.93031273, 32.772567543], "type": "Point"}, "id": "2528", "properties": {"Object ID": 573782576, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92961548, 32.772615132, -79.92961548, 32.772615132], "geometry": {"coordinates": [-79.92961548, 32.772615132], "type": "Point"}, "id": "2529", "properties": {"Object ID": 573782578, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92966376, 32.772740459, -79.92966376, 32.772740459], "geometry": {"coordinates": [-79.92966376, 32.772740459], "type": "Point"}, "id": "2530", "properties": {"Object ID": 573782580, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92967998, 32.772877862, -79.92967998, 32.772877862], "geometry": {"coordinates": [-79.92967998, 32.772877862], "type": "Point"}, "id": "2531", "properties": {"Object ID": 573782584, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92967489, 32.773362242, -79.92967489, 32.773362242], "geometry": {"coordinates": [-79.92967489, 32.773362242], "type": "Point"}, "id": "2532", "properties": {"Object ID": 573783138, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92967496, 32.773955555, -79.92967496, 32.773955555], "geometry": {"coordinates": [-79.92967496, 32.773955555], "type": "Point"}, "id": "2533", "properties": {"Object ID": 573783154, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92992314, 32.774264923, -79.92992314, 32.774264923], "geometry": {"coordinates": [-79.92992314, 32.774264923], "type": "Point"}, "id": "2534", "properties": {"Object ID": 573783160, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938964, 32.774757143, -79.92938964, 32.774757143], "geometry": {"coordinates": [-79.92938964, 32.774757143], "type": "Point"}, "id": "2535", "properties": {"Object ID": 573783197, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93107155, 32.778137639, -79.93107155, 32.778137639], "geometry": {"coordinates": [-79.93107155, 32.778137639], "type": "Point"}, "id": "2536", "properties": {"Object ID": 573783272, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93055145, 32.778294283, -79.93055145, 32.778294283], "geometry": {"coordinates": [-79.93055145, 32.778294283], "type": "Point"}, "id": "2537", "properties": {"Object ID": 573783276, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92951427, 32.778608724, -79.92951427, 32.778608724], "geometry": {"coordinates": [-79.92951427, 32.778608724], "type": "Point"}, "id": "2538", "properties": {"Object ID": 573783292, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93101175, 32.778931506, -79.93101175, 32.778931506], "geometry": {"coordinates": [-79.93101175, 32.778931506], "type": "Point"}, "id": "2539", "properties": {"Object ID": 573783303, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92999323, 32.778058437, -79.92999323, 32.778058437], "geometry": {"coordinates": [-79.92999323, 32.778058437], "type": "Point"}, "id": "2540", "properties": {"Object ID": 573783329, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93066166, 32.777577515, -79.93066166, 32.777577515], "geometry": {"coordinates": [-79.93066166, 32.777577515], "type": "Point"}, "id": "2541", "properties": {"Object ID": 573783331, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92949167, 32.777748403, -79.92949167, 32.777748403], "geometry": {"coordinates": [-79.92949167, 32.777748403], "type": "Point"}, "id": "2542", "properties": {"Object ID": 573783337, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93049453, 32.777679672, -79.93049453, 32.777679672], "geometry": {"coordinates": [-79.93049453, 32.777679672], "type": "Point"}, "id": "2543", "properties": {"Object ID": 573783343, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93002946, 32.771528793, -79.93002946, 32.771528793], "geometry": {"coordinates": [-79.93002946, 32.771528793], "type": "Point"}, "id": "2544", "properties": {"Object ID": 573783439, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93095318, 32.773119101, -79.93095318, 32.773119101], "geometry": {"coordinates": [-79.93095318, 32.773119101], "type": "Point"}, "id": "2545", "properties": {"Object ID": 573785649, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93104315, 32.773317462, -79.93104315, 32.773317462], "geometry": {"coordinates": [-79.93104315, 32.773317462], "type": "Point"}, "id": "2546", "properties": {"Object ID": 573785661, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93087598, 32.773660655, -79.93087598, 32.773660655], "geometry": {"coordinates": [-79.93087598, 32.773660655], "type": "Point"}, "id": "2547", "properties": {"Object ID": 573785683, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92579081, 32.776179259, -79.92579081, 32.776179259], "geometry": {"coordinates": [-79.92579081, 32.776179259], "type": "Point"}, "id": "2548", "properties": {"Object ID": 573818741, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92647502, 32.776540668, -79.92647502, 32.776540668], "geometry": {"coordinates": [-79.92647502, 32.776540668], "type": "Point"}, "id": "2549", "properties": {"Object ID": 573818742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9269, 32.7765165, -79.9269, 32.7765165], "geometry": {"coordinates": [-79.9269, 32.7765165], "type": "Point"}, "id": "2550", "properties": {"Object ID": 573818744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92746902, 32.777122924, -79.92746902, 32.777122924], "geometry": {"coordinates": [-79.92746902, 32.777122924], "type": "Point"}, "id": "2551", "properties": {"Object ID": 573827134, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92780251, 32.777958909, -79.92780251, 32.777958909], "geometry": {"coordinates": [-79.92780251, 32.777958909], "type": "Point"}, "id": "2552", "properties": {"Object ID": 573827146, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92943087, 32.776830669, -79.92943087, 32.776830669], "geometry": {"coordinates": [-79.92943087, 32.776830669], "type": "Point"}, "id": "2553", "properties": {"Object ID": 573827737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92972682, 32.776806657, -79.92972682, 32.776806657], "geometry": {"coordinates": [-79.92972682, 32.776806657], "type": "Point"}, "id": "2554", "properties": {"Object ID": 573827742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92972682, 32.776806657, -79.92972682, 32.776806657], "geometry": {"coordinates": [-79.92972682, 32.776806657], "type": "Point"}, "id": "2555", "properties": {"Object ID": 573827746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93017988, 32.776819591, -79.93017988, 32.776819591], "geometry": {"coordinates": [-79.93017988, 32.776819591], "type": "Point"}, "id": "2556", "properties": {"Object ID": 573827752, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92969169, 32.777216102, -79.92969169, 32.777216102], "geometry": {"coordinates": [-79.92969169, 32.777216102], "type": "Point"}, "id": "2557", "properties": {"Object ID": 573827760, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92835611, 32.78254412, -79.92835611, 32.78254412], "geometry": {"coordinates": [-79.92835611, 32.78254412], "type": "Point"}, "id": "2558", "properties": {"Object ID": 573827778, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92919722, 32.782756168, -79.92919722, 32.782756168], "geometry": {"coordinates": [-79.92919722, 32.782756168], "type": "Point"}, "id": "2559", "properties": {"Object ID": 573827780, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9288933, 32.783423676, -79.9288933, 32.783423676], "geometry": {"coordinates": [-79.9288933, 32.783423676], "type": "Point"}, "id": "2560", "properties": {"Object ID": 573827802, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93040738, 32.781275186, -79.93040738, 32.781275186], "geometry": {"coordinates": [-79.93040738, 32.781275186], "type": "Point"}, "id": "2561", "properties": {"Object ID": 573831836, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93108959, 32.775201945, -79.93108959, 32.775201945], "geometry": {"coordinates": [-79.93108959, 32.775201945], "type": "Point"}, "id": "2562", "properties": {"Object ID": 573831707, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93110512, 32.775296725, -79.93110512, 32.775296725], "geometry": {"coordinates": [-79.93110512, 32.775296725], "type": "Point"}, "id": "2563", "properties": {"Object ID": 573831709, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93119518, 32.775488774, -79.93119518, 32.775488774], "geometry": {"coordinates": [-79.93119518, 32.775488774], "type": "Point"}, "id": "2564", "properties": {"Object ID": 573831721, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93119518, 32.775488774, -79.93119518, 32.775488774], "geometry": {"coordinates": [-79.93119518, 32.775488774], "type": "Point"}, "id": "2565", "properties": {"Object ID": 573831723, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93040738, 32.781275186, -79.93040738, 32.781275186], "geometry": {"coordinates": [-79.93040738, 32.781275186], "type": "Point"}, "id": "2566", "properties": {"Object ID": 573831827, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92682845, 32.782317397, -79.92682845, 32.782317397], "geometry": {"coordinates": [-79.92682845, 32.782317397], "type": "Point"}, "id": "2567", "properties": {"Object ID": 574267596, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92712901, 32.774181965, -79.92712901, 32.774181965], "geometry": {"coordinates": [-79.92712901, 32.774181965], "type": "Point"}, "id": "2568", "properties": {"Object ID": 574267658, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92712901, 32.774181965, -79.92712901, 32.774181965], "geometry": {"coordinates": [-79.92712901, 32.774181965], "type": "Point"}, "id": "2569", "properties": {"Object ID": 574267662, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92564955, 32.774510932, -79.92564955, 32.774510932], "geometry": {"coordinates": [-79.92564955, 32.774510932], "type": "Point"}, "id": "2570", "properties": {"Object ID": 574267664, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92671964, 32.774694393, -79.92671964, 32.774694393], "geometry": {"coordinates": [-79.92671964, 32.774694393], "type": "Point"}, "id": "2571", "properties": {"Object ID": 574267667, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92785069, 32.775176339, -79.92785069, 32.775176339], "geometry": {"coordinates": [-79.92785069, 32.775176339], "type": "Point"}, "id": "2572", "properties": {"Object ID": 574267733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92773388, 32.775366131, -79.92773388, 32.775366131], "geometry": {"coordinates": [-79.92773388, 32.775366131], "type": "Point"}, "id": "2573", "properties": {"Object ID": 574267741, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92746112, 32.775528974, -79.92746112, 32.775528974], "geometry": {"coordinates": [-79.92746112, 32.775528974], "type": "Point"}, "id": "2574", "properties": {"Object ID": 574268013, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92859461, 32.780244674, -79.92859461, 32.780244674], "geometry": {"coordinates": [-79.92859461, 32.780244674], "type": "Point"}, "id": "2575", "properties": {"Object ID": 574268035, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9291748, 32.780046684, -79.9291748, 32.780046684], "geometry": {"coordinates": [-79.9291748, 32.780046684], "type": "Point"}, "id": "2576", "properties": {"Object ID": 574268047, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93103707, 32.772525209, -79.93103707, 32.772525209], "geometry": {"coordinates": [-79.93103707, 32.772525209], "type": "Point"}, "id": "2577", "properties": {"Object ID": 574268245, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9256555, 32.7766865, -79.9256555, 32.7766865], "geometry": {"coordinates": [-79.9256555, 32.7766865], "type": "Point"}, "id": "2578", "properties": {"Object ID": 574346711, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92591323, 32.776513393, -79.92591323, 32.776513393], "geometry": {"coordinates": [-79.92591323, 32.776513393], "type": "Point"}, "id": "2579", "properties": {"Object ID": 574346712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92568075, 32.776557065, -79.92568075, 32.776557065], "geometry": {"coordinates": [-79.92568075, 32.776557065], "type": "Point"}, "id": "2580", "properties": {"Object ID": 574346715, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92869731, 32.780981693, -79.92869731, 32.780981693], "geometry": {"coordinates": [-79.92869731, 32.780981693], "type": "Point"}, "id": "2581", "properties": {"Object ID": 574346727, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92961524, 32.774941576, -79.92961524, 32.774941576], "geometry": {"coordinates": [-79.92961524, 32.774941576], "type": "Point"}, "id": "2582", "properties": {"Object ID": 574346730, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007543, 32.774921478, -79.93007543, 32.774921478], "geometry": {"coordinates": [-79.93007543, 32.774921478], "type": "Point"}, "id": "2583", "properties": {"Object ID": 574346731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93060147, 32.775136919, -79.93060147, 32.775136919], "geometry": {"coordinates": [-79.93060147, 32.775136919], "type": "Point"}, "id": "2584", "properties": {"Object ID": 574346739, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93054012, 32.775380171, -79.93054012, 32.775380171], "geometry": {"coordinates": [-79.93054012, 32.775380171], "type": "Point"}, "id": "2585", "properties": {"Object ID": 574346743, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9306795, 32.775520193, -79.9306795, 32.775520193], "geometry": {"coordinates": [-79.9306795, 32.775520193], "type": "Point"}, "id": "2586", "properties": {"Object ID": 574346746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92978274, 32.775564771, -79.92978274, 32.775564771], "geometry": {"coordinates": [-79.92978274, 32.775564771], "type": "Point"}, "id": "2587", "properties": {"Object ID": 574346747, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92993701, 32.775607128, -79.92993701, 32.775607128], "geometry": {"coordinates": [-79.92993701, 32.775607128], "type": "Point"}, "id": "2588", "properties": {"Object ID": 574346748, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92803347, 32.77943033, -79.92803347, 32.77943033], "geometry": {"coordinates": [-79.92803347, 32.77943033], "type": "Point"}, "id": "2589", "properties": {"Object ID": 574371448, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92803347, 32.77943033, -79.92803347, 32.77943033], "geometry": {"coordinates": [-79.92803347, 32.77943033], "type": "Point"}, "id": "2590", "properties": {"Object ID": 574371449, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9276305, 32.779852059, -79.9276305, 32.779852059], "geometry": {"coordinates": [-79.9276305, 32.779852059], "type": "Point"}, "id": "2591", "properties": {"Object ID": 574371450, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673038, 32.775795562, -79.92673038, 32.775795562], "geometry": {"coordinates": [-79.92673038, 32.775795562], "type": "Point"}, "id": "2592", "properties": {"Object ID": 574372379, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "2593", "properties": {"Object ID": 574372399, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "2594", "properties": {"Object ID": 574372400, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "2595", "properties": {"Object ID": 574372401, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "2596", "properties": {"Object ID": 574372404, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "2597", "properties": {"Object ID": 574372406, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92813633, 32.780414773, -79.92813633, 32.780414773], "geometry": {"coordinates": [-79.92813633, 32.780414773], "type": "Point"}, "id": "2598", "properties": {"Object ID": 574372407, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9282403, 32.780783377, -79.9282403, 32.780783377], "geometry": {"coordinates": [-79.9282403, 32.780783377], "type": "Point"}, "id": "2599", "properties": {"Object ID": 574372413, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9282403, 32.780783377, -79.9282403, 32.780783377], "geometry": {"coordinates": [-79.9282403, 32.780783377], "type": "Point"}, "id": "2600", "properties": {"Object ID": 574372415, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92902475, 32.776264226, -79.92902475, 32.776264226], "geometry": {"coordinates": [-79.92902475, 32.776264226], "type": "Point"}, "id": "2601", "properties": {"Object ID": 574372442, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92902475, 32.776264226, -79.92902475, 32.776264226], "geometry": {"coordinates": [-79.92902475, 32.776264226], "type": "Point"}, "id": "2602", "properties": {"Object ID": 574372443, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92900036, 32.776107722, -79.92900036, 32.776107722], "geometry": {"coordinates": [-79.92900036, 32.776107722], "type": "Point"}, "id": "2603", "properties": {"Object ID": 574372446, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92830278, 32.776202619, -79.92830278, 32.776202619], "geometry": {"coordinates": [-79.92830278, 32.776202619], "type": "Point"}, "id": "2604", "properties": {"Object ID": 574372452, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92849911, 32.776440239, -79.92849911, 32.776440239], "geometry": {"coordinates": [-79.92849911, 32.776440239], "type": "Point"}, "id": "2605", "properties": {"Object ID": 574372459, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92746316, 32.776524315, -79.92746316, 32.776524315], "geometry": {"coordinates": [-79.92746316, 32.776524315], "type": "Point"}, "id": "2606", "properties": {"Object ID": 574372462, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92834043, 32.776554351, -79.92834043, 32.776554351], "geometry": {"coordinates": [-79.92834043, 32.776554351], "type": "Point"}, "id": "2607", "properties": {"Object ID": 574372465, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92881546, 32.776447296, -79.92881546, 32.776447296], "geometry": {"coordinates": [-79.92881546, 32.776447296], "type": "Point"}, "id": "2608", "properties": {"Object ID": 574372472, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93005346, 32.77625511, -79.93005346, 32.77625511], "geometry": {"coordinates": [-79.93005346, 32.77625511], "type": "Point"}, "id": "2609", "properties": {"Object ID": 574372525, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92936348, 32.776171244, -79.92936348, 32.776171244], "geometry": {"coordinates": [-79.92936348, 32.776171244], "type": "Point"}, "id": "2610", "properties": {"Object ID": 574372539, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938805, 32.776236693, -79.92938805, 32.776236693], "geometry": {"coordinates": [-79.92938805, 32.776236693], "type": "Point"}, "id": "2611", "properties": {"Object ID": 574372545, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92979255, 32.776387148, -79.92979255, 32.776387148], "geometry": {"coordinates": [-79.92979255, 32.776387148], "type": "Point"}, "id": "2612", "properties": {"Object ID": 574372555, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92958905, 32.776381714, -79.92958905, 32.776381714], "geometry": {"coordinates": [-79.92958905, 32.776381714], "type": "Point"}, "id": "2613", "properties": {"Object ID": 574372565, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93056718, 32.770963873, -79.93056718, 32.770963873], "geometry": {"coordinates": [-79.93056718, 32.770963873], "type": "Point"}, "id": "2614", "properties": {"Object ID": 574372705, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92571397, 32.777693811, -79.92571397, 32.777693811], "geometry": {"coordinates": [-79.92571397, 32.777693811], "type": "Point"}, "id": "2615", "properties": {"Object ID": 574421605, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92661232, 32.775353353, -79.92661232, 32.775353353], "geometry": {"coordinates": [-79.92661232, 32.775353353], "type": "Point"}, "id": "2616", "properties": {"Object ID": 574421616, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92661232, 32.775353353, -79.92661232, 32.775353353], "geometry": {"coordinates": [-79.92661232, 32.775353353], "type": "Point"}, "id": "2617", "properties": {"Object ID": 574421618, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92627211, 32.775566685, -79.92627211, 32.775566685], "geometry": {"coordinates": [-79.92627211, 32.775566685], "type": "Point"}, "id": "2618", "properties": {"Object ID": 574421620, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92885302, 32.77702994, -79.92885302, 32.77702994], "geometry": {"coordinates": [-79.92885302, 32.77702994], "type": "Point"}, "id": "2619", "properties": {"Object ID": 574421665, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92846361, 32.776973025, -79.92846361, 32.776973025], "geometry": {"coordinates": [-79.92846361, 32.776973025], "type": "Point"}, "id": "2620", "properties": {"Object ID": 574421687, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9290929, 32.777519764, -79.9290929, 32.777519764], "geometry": {"coordinates": [-79.9290929, 32.777519764], "type": "Point"}, "id": "2621", "properties": {"Object ID": 574421696, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9290929, 32.777519764, -79.9290929, 32.777519764], "geometry": {"coordinates": [-79.9290929, 32.777519764], "type": "Point"}, "id": "2622", "properties": {"Object ID": 574421698, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92801597, 32.777036402, -79.92801597, 32.777036402], "geometry": {"coordinates": [-79.92801597, 32.777036402], "type": "Point"}, "id": "2623", "properties": {"Object ID": 574421706, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92801597, 32.777036402, -79.92801597, 32.777036402], "geometry": {"coordinates": [-79.92801597, 32.777036402], "type": "Point"}, "id": "2624", "properties": {"Object ID": 574421710, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9266425, 32.7772185, -79.9266425, 32.7772185], "geometry": {"coordinates": [-79.9266425, 32.7772185], "type": "Point"}, "id": "2625", "properties": {"Object ID": 574431296, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92646291, 32.77728981, -79.92646291, 32.77728981], "geometry": {"coordinates": [-79.92646291, 32.77728981], "type": "Point"}, "id": "2626", "properties": {"Object ID": 574431300, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92646291, 32.77728981, -79.92646291, 32.77728981], "geometry": {"coordinates": [-79.92646291, 32.77728981], "type": "Point"}, "id": "2627", "properties": {"Object ID": 574431302, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92857452, 32.78132147, -79.92857452, 32.78132147], "geometry": {"coordinates": [-79.92857452, 32.78132147], "type": "Point"}, "id": "2628", "properties": {"Object ID": 574431320, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92592791, 32.779129789, -79.92592791, 32.779129789], "geometry": {"coordinates": [-79.92592791, 32.779129789], "type": "Point"}, "id": "2629", "properties": {"Object ID": 574435919, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92692192, 32.77999463, -79.92692192, 32.77999463], "geometry": {"coordinates": [-79.92692192, 32.77999463], "type": "Point"}, "id": "2630", "properties": {"Object ID": 574435932, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92644898, 32.780051895, -79.92644898, 32.780051895], "geometry": {"coordinates": [-79.92644898, 32.780051895], "type": "Point"}, "id": "2631", "properties": {"Object ID": 574435936, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92644898, 32.780051895, -79.92644898, 32.780051895], "geometry": {"coordinates": [-79.92644898, 32.780051895], "type": "Point"}, "id": "2632", "properties": {"Object ID": 574435940, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92606469, 32.77972236, -79.92606469, 32.77972236], "geometry": {"coordinates": [-79.92606469, 32.77972236], "type": "Point"}, "id": "2633", "properties": {"Object ID": 574435942, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92606469, 32.77972236, -79.92606469, 32.77972236], "geometry": {"coordinates": [-79.92606469, 32.77972236], "type": "Point"}, "id": "2634", "properties": {"Object ID": 574435944, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92640322, 32.776823374, -79.92640322, 32.776823374], "geometry": {"coordinates": [-79.92640322, 32.776823374], "type": "Point"}, "id": "2635", "properties": {"Object ID": 574437145, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92686154, 32.776849372, -79.92686154, 32.776849372], "geometry": {"coordinates": [-79.92686154, 32.776849372], "type": "Point"}, "id": "2636", "properties": {"Object ID": 574437147, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92686154, 32.776849372, -79.92686154, 32.776849372], "geometry": {"coordinates": [-79.92686154, 32.776849372], "type": "Point"}, "id": "2637", "properties": {"Object ID": 574437149, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92912588, 32.779650912, -79.92912588, 32.779650912], "geometry": {"coordinates": [-79.92912588, 32.779650912], "type": "Point"}, "id": "2638", "properties": {"Object ID": 574446475, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92643612, 32.780279013, -79.92643612, 32.780279013], "geometry": {"coordinates": [-79.92643612, 32.780279013], "type": "Point"}, "id": "2639", "properties": {"Object ID": 574451294, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92643612, 32.780279013, -79.92643612, 32.780279013], "geometry": {"coordinates": [-79.92643612, 32.780279013], "type": "Point"}, "id": "2640", "properties": {"Object ID": 574451296, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "2641", "properties": {"Object ID": 574451476, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "2642", "properties": {"Object ID": 574451482, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93057458, 32.779847015, -79.93057458, 32.779847015], "geometry": {"coordinates": [-79.93057458, 32.779847015], "type": "Point"}, "id": "2643", "properties": {"Object ID": 574451484, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93057458, 32.779847015, -79.93057458, 32.779847015], "geometry": {"coordinates": [-79.93057458, 32.779847015], "type": "Point"}, "id": "2644", "properties": {"Object ID": 574451486, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93057458, 32.779847015, -79.93057458, 32.779847015], "geometry": {"coordinates": [-79.93057458, 32.779847015], "type": "Point"}, "id": "2645", "properties": {"Object ID": 574451488, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93057458, 32.779847015, -79.93057458, 32.779847015], "geometry": {"coordinates": [-79.93057458, 32.779847015], "type": "Point"}, "id": "2646", "properties": {"Object ID": 574451489, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93092389, 32.780416852, -79.93092389, 32.780416852], "geometry": {"coordinates": [-79.93092389, 32.780416852], "type": "Point"}, "id": "2647", "properties": {"Object ID": 574451497, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93087903, 32.780089433, -79.93087903, 32.780089433], "geometry": {"coordinates": [-79.93087903, 32.780089433], "type": "Point"}, "id": "2648", "properties": {"Object ID": 574451498, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9265575, 32.7779802, -79.9265575, 32.7779802], "geometry": {"coordinates": [-79.9265575, 32.7779802], "type": "Point"}, "id": "2649", "properties": {"Object ID": 574453712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9265575, 32.7779802, -79.9265575, 32.7779802], "geometry": {"coordinates": [-79.9265575, 32.7779802], "type": "Point"}, "id": "2650", "properties": {"Object ID": 574453720, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93069936, 32.78185867, -79.93069936, 32.78185867], "geometry": {"coordinates": [-79.93069936, 32.78185867], "type": "Point"}, "id": "2651", "properties": {"Object ID": 574454475, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93069936, 32.78185867, -79.93069936, 32.78185867], "geometry": {"coordinates": [-79.93069936, 32.78185867], "type": "Point"}, "id": "2652", "properties": {"Object ID": 574454477, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92675798, 32.779623429, -79.92675798, 32.779623429], "geometry": {"coordinates": [-79.92675798, 32.779623429], "type": "Point"}, "id": "2653", "properties": {"Object ID": 574455177, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92675798, 32.779623429, -79.92675798, 32.779623429], "geometry": {"coordinates": [-79.92675798, 32.779623429], "type": "Point"}, "id": "2654", "properties": {"Object ID": 574455180, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92452807, 32.775253585, -79.92452807, 32.775253585], "geometry": {"coordinates": [-79.92452807, 32.775253585], "type": "Point"}, "id": "2655", "properties": {"Object ID": 574457240, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92706811, 32.773498108, -79.92706811, 32.773498108], "geometry": {"coordinates": [-79.92706811, 32.773498108], "type": "Point"}, "id": "2656", "properties": {"Object ID": 574457618, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93014784, 32.782312749, -79.93014784, 32.782312749], "geometry": {"coordinates": [-79.93014784, 32.782312749], "type": "Point"}, "id": "2657", "properties": {"Object ID": 574461005, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93015454, 32.781828328, -79.93015454, 32.781828328], "geometry": {"coordinates": [-79.93015454, 32.781828328], "type": "Point"}, "id": "2658", "properties": {"Object ID": 574461007, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92996582, 32.778916309, -79.92996582, 32.778916309], "geometry": {"coordinates": [-79.92996582, 32.778916309], "type": "Point"}, "id": "2659", "properties": {"Object ID": 574461027, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92820274, 32.778662139, -79.92820274, 32.778662139], "geometry": {"coordinates": [-79.92820274, 32.778662139], "type": "Point"}, "id": "2660", "properties": {"Object ID": 574461035, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9297417, 32.776818232, -79.9297417, 32.776818232], "geometry": {"coordinates": [-79.9297417, 32.776818232], "type": "Point"}, "id": "2661", "properties": {"Object ID": 574461058, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9297417, 32.776818232, -79.9297417, 32.776818232], "geometry": {"coordinates": [-79.9297417, 32.776818232], "type": "Point"}, "id": "2662", "properties": {"Object ID": 574461060, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9297417, 32.776818232, -79.9297417, 32.776818232], "geometry": {"coordinates": [-79.9297417, 32.776818232], "type": "Point"}, "id": "2663", "properties": {"Object ID": 574461061, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9297417, 32.776818232, -79.9297417, 32.776818232], "geometry": {"coordinates": [-79.9297417, 32.776818232], "type": "Point"}, "id": "2664", "properties": {"Object ID": 574461067, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92799481, 32.777083557, -79.92799481, 32.777083557], "geometry": {"coordinates": [-79.92799481, 32.777083557], "type": "Point"}, "id": "2665", "properties": {"Object ID": 574461087, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92799481, 32.777083557, -79.92799481, 32.777083557], "geometry": {"coordinates": [-79.92799481, 32.777083557], "type": "Point"}, "id": "2666", "properties": {"Object ID": 574461089, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9260343, 32.781508757, -79.9260343, 32.781508757], "geometry": {"coordinates": [-79.9260343, 32.781508757], "type": "Point"}, "id": "2667", "properties": {"Object ID": 574461283, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681259, 32.780233741, -79.92681259, 32.780233741], "geometry": {"coordinates": [-79.92681259, 32.780233741], "type": "Point"}, "id": "2668", "properties": {"Object ID": 574461291, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673511, 32.779500111, -79.92673511, 32.779500111], "geometry": {"coordinates": [-79.92673511, 32.779500111], "type": "Point"}, "id": "2669", "properties": {"Object ID": 574461299, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673454, 32.779105389, -79.92673454, 32.779105389], "geometry": {"coordinates": [-79.92673454, 32.779105389], "type": "Point"}, "id": "2670", "properties": {"Object ID": 574461302, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673454, 32.779105389, -79.92673454, 32.779105389], "geometry": {"coordinates": [-79.92673454, 32.779105389], "type": "Point"}, "id": "2671", "properties": {"Object ID": 574461303, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92679108, 32.778909003, -79.92679108, 32.778909003], "geometry": {"coordinates": [-79.92679108, 32.778909003], "type": "Point"}, "id": "2672", "properties": {"Object ID": 574461304, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92639653, 32.779118318, -79.92639653, 32.779118318], "geometry": {"coordinates": [-79.92639653, 32.779118318], "type": "Point"}, "id": "2673", "properties": {"Object ID": 574461305, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92670704, 32.778289721, -79.92670704, 32.778289721], "geometry": {"coordinates": [-79.92670704, 32.778289721], "type": "Point"}, "id": "2674", "properties": {"Object ID": 574461307, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92639653, 32.779118318, -79.92639653, 32.779118318], "geometry": {"coordinates": [-79.92639653, 32.779118318], "type": "Point"}, "id": "2675", "properties": {"Object ID": 574461309, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92724476, 32.777075418, -79.92724476, 32.777075418], "geometry": {"coordinates": [-79.92724476, 32.777075418], "type": "Point"}, "id": "2676", "properties": {"Object ID": 574461310, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92732872, 32.776630152, -79.92732872, 32.776630152], "geometry": {"coordinates": [-79.92732872, 32.776630152], "type": "Point"}, "id": "2677", "properties": {"Object ID": 574461313, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93024242, 32.773552267, -79.93024242, 32.773552267], "geometry": {"coordinates": [-79.93024242, 32.773552267], "type": "Point"}, "id": "2678", "properties": {"Object ID": 574486905, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93004468, 32.771907241, -79.93004468, 32.771907241], "geometry": {"coordinates": [-79.93004468, 32.771907241], "type": "Point"}, "id": "2679", "properties": {"Object ID": 574486933, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93068697, 32.771232663, -79.93068697, 32.771232663], "geometry": {"coordinates": [-79.93068697, 32.771232663], "type": "Point"}, "id": "2680", "properties": {"Object ID": 574486935, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93068697, 32.771232663, -79.93068697, 32.771232663], "geometry": {"coordinates": [-79.93068697, 32.771232663], "type": "Point"}, "id": "2681", "properties": {"Object ID": 574486937, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "2682", "properties": {"Object ID": 574487017, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "2683", "properties": {"Object ID": 574487018, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "2684", "properties": {"Object ID": 574487024, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "2685", "properties": {"Object ID": 574487025, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "2686", "properties": {"Object ID": 574487029, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93065469, 32.777953032, -79.93065469, 32.777953032], "geometry": {"coordinates": [-79.93065469, 32.777953032], "type": "Point"}, "id": "2687", "properties": {"Object ID": 574487101, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93042173, 32.777686122, -79.93042173, 32.777686122], "geometry": {"coordinates": [-79.93042173, 32.777686122], "type": "Point"}, "id": "2688", "properties": {"Object ID": 574487102, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "2689", "properties": {"Object ID": 574488427, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "2690", "properties": {"Object ID": 574488429, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92918243, 32.782971324, -79.92918243, 32.782971324], "geometry": {"coordinates": [-79.92918243, 32.782971324], "type": "Point"}, "id": "2691", "properties": {"Object ID": 574488651, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2692", "properties": {"Object ID": 574488654, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2693", "properties": {"Object ID": 574488657, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2694", "properties": {"Object ID": 574488660, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2695", "properties": {"Object ID": 574488663, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2696", "properties": {"Object ID": 574488666, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2697", "properties": {"Object ID": 574488669, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2698", "properties": {"Object ID": 574488670, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2699", "properties": {"Object ID": 574488673, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92831985, 32.778797576, -79.92831985, 32.778797576], "geometry": {"coordinates": [-79.92831985, 32.778797576], "type": "Point"}, "id": "2700", "properties": {"Object ID": 574488681, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92879983, 32.778170178, -79.92879983, 32.778170178], "geometry": {"coordinates": [-79.92879983, 32.778170178], "type": "Point"}, "id": "2701", "properties": {"Object ID": 574488690, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92879983, 32.778170178, -79.92879983, 32.778170178], "geometry": {"coordinates": [-79.92879983, 32.778170178], "type": "Point"}, "id": "2702", "properties": {"Object ID": 574488692, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "2703", "properties": {"Object ID": 574488701, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "2704", "properties": {"Object ID": 574488702, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "2705", "properties": {"Object ID": 574488710, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "2706", "properties": {"Object ID": 574488712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "2707", "properties": {"Object ID": 574488713, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "2708", "properties": {"Object ID": 574488715, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "2709", "properties": {"Object ID": 574488717, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2710", "properties": {"Object ID": 574488733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2711", "properties": {"Object ID": 574488737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2712", "properties": {"Object ID": 574488738, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2713", "properties": {"Object ID": 574488747, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2714", "properties": {"Object ID": 574488748, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2715", "properties": {"Object ID": 574488757, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92829906, 32.777827577, -79.92829906, 32.777827577], "geometry": {"coordinates": [-79.92829906, 32.777827577], "type": "Point"}, "id": "2716", "properties": {"Object ID": 574488766, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92981063, 32.776090404, -79.92981063, 32.776090404], "geometry": {"coordinates": [-79.92981063, 32.776090404], "type": "Point"}, "id": "2717", "properties": {"Object ID": 574488767, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92903083, 32.776368402, -79.92903083, 32.776368402], "geometry": {"coordinates": [-79.92903083, 32.776368402], "type": "Point"}, "id": "2718", "properties": {"Object ID": 574488768, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "2719", "properties": {"Object ID": 574488794, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "2720", "properties": {"Object ID": 574488796, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "2721", "properties": {"Object ID": 574488801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "2722", "properties": {"Object ID": 574488803, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765607, 32.776056354, -79.92765607, 32.776056354], "geometry": {"coordinates": [-79.92765607, 32.776056354], "type": "Point"}, "id": "2723", "properties": {"Object ID": 574488807, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92740528, 32.776150334, -79.92740528, 32.776150334], "geometry": {"coordinates": [-79.92740528, 32.776150334], "type": "Point"}, "id": "2724", "properties": {"Object ID": 574488811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92600798, 32.776527728, -79.92600798, 32.776527728], "geometry": {"coordinates": [-79.92600798, 32.776527728], "type": "Point"}, "id": "2725", "properties": {"Object ID": 574488813, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9267068, 32.776164736, -79.9267068, 32.776164736], "geometry": {"coordinates": [-79.9267068, 32.776164736], "type": "Point"}, "id": "2726", "properties": {"Object ID": 574488820, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92926142, 32.774986386, -79.92926142, 32.774986386], "geometry": {"coordinates": [-79.92926142, 32.774986386], "type": "Point"}, "id": "2727", "properties": {"Object ID": 574488835, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9292151, 32.774636679, -79.9292151, 32.774636679], "geometry": {"coordinates": [-79.9292151, 32.774636679], "type": "Point"}, "id": "2728", "properties": {"Object ID": 574488836, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9275034, 32.775239754, -79.9275034, 32.775239754], "geometry": {"coordinates": [-79.9275034, 32.775239754], "type": "Point"}, "id": "2729", "properties": {"Object ID": 574488845, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92743993, 32.774961713, -79.92743993, 32.774961713], "geometry": {"coordinates": [-79.92743993, 32.774961713], "type": "Point"}, "id": "2730", "properties": {"Object ID": 574488849, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92676724, 32.775533547, -79.92676724, 32.775533547], "geometry": {"coordinates": [-79.92676724, 32.775533547], "type": "Point"}, "id": "2731", "properties": {"Object ID": 574488850, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92636297, 32.775405273, -79.92636297, 32.775405273], "geometry": {"coordinates": [-79.92636297, 32.775405273], "type": "Point"}, "id": "2732", "properties": {"Object ID": 574488858, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92689914, 32.774589085, -79.92689914, 32.774589085], "geometry": {"coordinates": [-79.92689914, 32.774589085], "type": "Point"}, "id": "2733", "properties": {"Object ID": 574488860, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92787671, 32.774030712, -79.92787671, 32.774030712], "geometry": {"coordinates": [-79.92787671, 32.774030712], "type": "Point"}, "id": "2734", "properties": {"Object ID": 574488863, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92766193, 32.773486846, -79.92766193, 32.773486846], "geometry": {"coordinates": [-79.92766193, 32.773486846], "type": "Point"}, "id": "2735", "properties": {"Object ID": 574488866, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92766193, 32.773486846, -79.92766193, 32.773486846], "geometry": {"coordinates": [-79.92766193, 32.773486846], "type": "Point"}, "id": "2736", "properties": {"Object ID": 574488868, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "2737", "properties": {"Object ID": 574447802, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "2738", "properties": {"Object ID": 574447806, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505067, 32.780686378, -79.93505067, 32.780686378], "geometry": {"coordinates": [-79.93505067, 32.780686378], "type": "Point"}, "id": "2739", "properties": {"Object ID": 574455489, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93410556, 32.774199976, -79.93410556, 32.774199976], "geometry": {"coordinates": [-79.93410556, 32.774199976], "type": "Point"}, "id": "2740", "properties": {"Object ID": 573785968, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93427154, 32.772868061, -79.93427154, 32.772868061], "geometry": {"coordinates": [-79.93427154, 32.772868061], "type": "Point"}, "id": "2741", "properties": {"Object ID": 573789001, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93728131, 32.773368692, -79.93728131, 32.773368692], "geometry": {"coordinates": [-79.93728131, 32.773368692], "type": "Point"}, "id": "2742", "properties": {"Object ID": 573789240, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93726916, 32.773460033, -79.93726916, 32.773460033], "geometry": {"coordinates": [-79.93726916, 32.773460033], "type": "Point"}, "id": "2743", "properties": {"Object ID": 573789242, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93791915, 32.773579223, -79.93791915, 32.773579223], "geometry": {"coordinates": [-79.93791915, 32.773579223], "type": "Point"}, "id": "2744", "properties": {"Object ID": 573789245, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93750664, 32.773792134, -79.93750664, 32.773792134], "geometry": {"coordinates": [-79.93750664, 32.773792134], "type": "Point"}, "id": "2745", "properties": {"Object ID": 573789249, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93739442, 32.77381008, -79.93739442, 32.77381008], "geometry": {"coordinates": [-79.93739442, 32.77381008], "type": "Point"}, "id": "2746", "properties": {"Object ID": 573789250, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93480568, 32.772235636, -79.93480568, 32.772235636], "geometry": {"coordinates": [-79.93480568, 32.772235636], "type": "Point"}, "id": "2747", "properties": {"Object ID": 573789011, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.934359, 32.772366814, -79.934359, 32.772366814], "geometry": {"coordinates": [-79.934359, 32.772366814], "type": "Point"}, "id": "2748", "properties": {"Object ID": 573789012, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542958, 32.772706991, -79.93542958, 32.772706991], "geometry": {"coordinates": [-79.93542958, 32.772706991], "type": "Point"}, "id": "2749", "properties": {"Object ID": 573789017, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93428666, 32.773286212, -79.93428666, 32.773286212], "geometry": {"coordinates": [-79.93428666, 32.773286212], "type": "Point"}, "id": "2750", "properties": {"Object ID": 573789024, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93546623, 32.773326708, -79.93546623, 32.773326708], "geometry": {"coordinates": [-79.93546623, 32.773326708], "type": "Point"}, "id": "2751", "properties": {"Object ID": 573789025, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.934381, 32.773483335, -79.934381, 32.773483335], "geometry": {"coordinates": [-79.934381, 32.773483335], "type": "Point"}, "id": "2752", "properties": {"Object ID": 573789027, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93552451, 32.773947831, -79.93552451, 32.773947831], "geometry": {"coordinates": [-79.93552451, 32.773947831], "type": "Point"}, "id": "2753", "properties": {"Object ID": 573789034, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93517765, 32.773957578, -79.93517765, 32.773957578], "geometry": {"coordinates": [-79.93517765, 32.773957578], "type": "Point"}, "id": "2754", "properties": {"Object ID": 573789035, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93486495, 32.774060405, -79.93486495, 32.774060405], "geometry": {"coordinates": [-79.93486495, 32.774060405], "type": "Point"}, "id": "2755", "properties": {"Object ID": 573789037, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.934612, 32.7728015, -79.934612, 32.7728015], "geometry": {"coordinates": [-79.934612, 32.7728015], "type": "Point"}, "id": "2756", "properties": {"Object ID": 573789039, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93599959, 32.778825028, -79.93599959, 32.778825028], "geometry": {"coordinates": [-79.93599959, 32.778825028], "type": "Point"}, "id": "2757", "properties": {"Object ID": 573789112, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93594528, 32.778971307, -79.93594528, 32.778971307], "geometry": {"coordinates": [-79.93594528, 32.778971307], "type": "Point"}, "id": "2758", "properties": {"Object ID": 573789113, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93495931, 32.779149163, -79.93495931, 32.779149163], "geometry": {"coordinates": [-79.93495931, 32.779149163], "type": "Point"}, "id": "2759", "properties": {"Object ID": 573789114, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93569002, 32.779163599, -79.93569002, 32.779163599], "geometry": {"coordinates": [-79.93569002, 32.779163599], "type": "Point"}, "id": "2760", "properties": {"Object ID": 573789115, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93610091, 32.779269803, -79.93610091, 32.779269803], "geometry": {"coordinates": [-79.93610091, 32.779269803], "type": "Point"}, "id": "2761", "properties": {"Object ID": 573789116, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93608185, 32.779395135, -79.93608185, 32.779395135], "geometry": {"coordinates": [-79.93608185, 32.779395135], "type": "Point"}, "id": "2762", "properties": {"Object ID": 573789119, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93491243, 32.779424451, -79.93491243, 32.779424451], "geometry": {"coordinates": [-79.93491243, 32.779424451], "type": "Point"}, "id": "2763", "properties": {"Object ID": 573789121, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93607746, 32.779476111, -79.93607746, 32.779476111], "geometry": {"coordinates": [-79.93607746, 32.779476111], "type": "Point"}, "id": "2764", "properties": {"Object ID": 573789122, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93490151, 32.77951704, -79.93490151, 32.77951704], "geometry": {"coordinates": [-79.93490151, 32.77951704], "type": "Point"}, "id": "2765", "properties": {"Object ID": 573789123, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93493907, 32.779697859, -79.93493907, 32.779697859], "geometry": {"coordinates": [-79.93493907, 32.779697859], "type": "Point"}, "id": "2766", "properties": {"Object ID": 573789132, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93479526, 32.775146744, -79.93479526, 32.775146744], "geometry": {"coordinates": [-79.93479526, 32.775146744], "type": "Point"}, "id": "2767", "properties": {"Object ID": 573789133, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93486183, 32.774375849, -79.93486183, 32.774375849], "geometry": {"coordinates": [-79.93486183, 32.774375849], "type": "Point"}, "id": "2768", "properties": {"Object ID": 573789136, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93474089, 32.77500809, -79.93474089, 32.77500809], "geometry": {"coordinates": [-79.93474089, 32.77500809], "type": "Point"}, "id": "2769", "properties": {"Object ID": 573789142, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93550454, 32.774951764, -79.93550454, 32.774951764], "geometry": {"coordinates": [-79.93550454, 32.774951764], "type": "Point"}, "id": "2770", "properties": {"Object ID": 573789143, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93557194, 32.775400191, -79.93557194, 32.775400191], "geometry": {"coordinates": [-79.93557194, 32.775400191], "type": "Point"}, "id": "2771", "properties": {"Object ID": 573789146, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93551867, 32.775538163, -79.93551867, 32.775538163], "geometry": {"coordinates": [-79.93551867, 32.775538163], "type": "Point"}, "id": "2772", "properties": {"Object ID": 573789150, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93547262, 32.775807437, -79.93547262, 32.775807437], "geometry": {"coordinates": [-79.93547262, 32.775807437], "type": "Point"}, "id": "2773", "properties": {"Object ID": 573789155, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93532795, 32.775847326, -79.93532795, 32.775847326], "geometry": {"coordinates": [-79.93532795, 32.775847326], "type": "Point"}, "id": "2774", "properties": {"Object ID": 573789156, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93695453, 32.776127894, -79.93695453, 32.776127894], "geometry": {"coordinates": [-79.93695453, 32.776127894], "type": "Point"}, "id": "2775", "properties": {"Object ID": 573789166, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93645648, 32.776602891, -79.93645648, 32.776602891], "geometry": {"coordinates": [-79.93645648, 32.776602891], "type": "Point"}, "id": "2776", "properties": {"Object ID": 573789179, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93689998, 32.777661765, -79.93689998, 32.777661765], "geometry": {"coordinates": [-79.93689998, 32.777661765], "type": "Point"}, "id": "2777", "properties": {"Object ID": 573789185, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93628375, 32.778058626, -79.93628375, 32.778058626], "geometry": {"coordinates": [-79.93628375, 32.778058626], "type": "Point"}, "id": "2778", "properties": {"Object ID": 573789190, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93625524, 32.778153138, -79.93625524, 32.778153138], "geometry": {"coordinates": [-79.93625524, 32.778153138], "type": "Point"}, "id": "2779", "properties": {"Object ID": 573789191, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93719537, 32.778470919, -79.93719537, 32.778470919], "geometry": {"coordinates": [-79.93719537, 32.778470919], "type": "Point"}, "id": "2780", "properties": {"Object ID": 573789198, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93705954, 32.772001285, -79.93705954, 32.772001285], "geometry": {"coordinates": [-79.93705954, 32.772001285], "type": "Point"}, "id": "2781", "properties": {"Object ID": 573789218, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93714695, 32.772324997, -79.93714695, 32.772324997], "geometry": {"coordinates": [-79.93714695, 32.772324997], "type": "Point"}, "id": "2782", "properties": {"Object ID": 573789224, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93770704, 32.772379834, -79.93770704, 32.772379834], "geometry": {"coordinates": [-79.93770704, 32.772379834], "type": "Point"}, "id": "2783", "properties": {"Object ID": 573789225, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93767228, 32.771514763, -79.93767228, 32.771514763], "geometry": {"coordinates": [-79.93767228, 32.771514763], "type": "Point"}, "id": "2784", "properties": {"Object ID": 573789300, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93781265, 32.77158661, -79.93781265, 32.77158661], "geometry": {"coordinates": [-79.93781265, 32.77158661], "type": "Point"}, "id": "2785", "properties": {"Object ID": 573789307, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93795641, 32.771647405, -79.93795641, 32.771647405], "geometry": {"coordinates": [-79.93795641, 32.771647405], "type": "Point"}, "id": "2786", "properties": {"Object ID": 573789308, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93810827, 32.771725111, -79.93810827, 32.771725111], "geometry": {"coordinates": [-79.93810827, 32.771725111], "type": "Point"}, "id": "2787", "properties": {"Object ID": 573789309, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93743937, 32.77180159, -79.93743937, 32.77180159], "geometry": {"coordinates": [-79.93743937, 32.77180159], "type": "Point"}, "id": "2788", "properties": {"Object ID": 573789311, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93779815, 32.771965651, -79.93779815, 32.771965651], "geometry": {"coordinates": [-79.93779815, 32.771965651], "type": "Point"}, "id": "2789", "properties": {"Object ID": 573789314, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93909215, 32.774140943, -79.93909215, 32.774140943], "geometry": {"coordinates": [-79.93909215, 32.774140943], "type": "Point"}, "id": "2790", "properties": {"Object ID": 573789329, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93911863, 32.774295847, -79.93911863, 32.774295847], "geometry": {"coordinates": [-79.93911863, 32.774295847], "type": "Point"}, "id": "2791", "properties": {"Object ID": 573789330, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93914327, 32.774462888, -79.93914327, 32.774462888], "geometry": {"coordinates": [-79.93914327, 32.774462888], "type": "Point"}, "id": "2792", "properties": {"Object ID": 573789331, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93876385, 32.774468109, -79.93876385, 32.774468109], "geometry": {"coordinates": [-79.93876385, 32.774468109], "type": "Point"}, "id": "2793", "properties": {"Object ID": 573789332, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93858944, 32.774695282, -79.93858944, 32.774695282], "geometry": {"coordinates": [-79.93858944, 32.774695282], "type": "Point"}, "id": "2794", "properties": {"Object ID": 573789337, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93849151, 32.77473476, -79.93849151, 32.77473476], "geometry": {"coordinates": [-79.93849151, 32.77473476], "type": "Point"}, "id": "2795", "properties": {"Object ID": 573789339, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93826838, 32.775035118, -79.93826838, 32.775035118], "geometry": {"coordinates": [-79.93826838, 32.775035118], "type": "Point"}, "id": "2796", "properties": {"Object ID": 573789345, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9392549, 32.775102818, -79.9392549, 32.775102818], "geometry": {"coordinates": [-79.9392549, 32.775102818], "type": "Point"}, "id": "2797", "properties": {"Object ID": 573789346, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93814779, 32.775123527, -79.93814779, 32.775123527], "geometry": {"coordinates": [-79.93814779, 32.775123527], "type": "Point"}, "id": "2798", "properties": {"Object ID": 573789347, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93857044, 32.775312304, -79.93857044, 32.775312304], "geometry": {"coordinates": [-79.93857044, 32.775312304], "type": "Point"}, "id": "2799", "properties": {"Object ID": 573789350, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93935975, 32.775437432, -79.93935975, 32.775437432], "geometry": {"coordinates": [-79.93935975, 32.775437432], "type": "Point"}, "id": "2800", "properties": {"Object ID": 573789353, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93860426, 32.775528926, -79.93860426, 32.775528926], "geometry": {"coordinates": [-79.93860426, 32.775528926], "type": "Point"}, "id": "2801", "properties": {"Object ID": 573789356, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93775721, 32.775629865, -79.93775721, 32.775629865], "geometry": {"coordinates": [-79.93775721, 32.775629865], "type": "Point"}, "id": "2802", "properties": {"Object ID": 573789362, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9377838, 32.776017166, -79.9377838, 32.776017166], "geometry": {"coordinates": [-79.9377838, 32.776017166], "type": "Point"}, "id": "2803", "properties": {"Object ID": 573789432, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93818988, 32.776007692, -79.93818988, 32.776007692], "geometry": {"coordinates": [-79.93818988, 32.776007692], "type": "Point"}, "id": "2804", "properties": {"Object ID": 573789433, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93799547, 32.776086354, -79.93799547, 32.776086354], "geometry": {"coordinates": [-79.93799547, 32.776086354], "type": "Point"}, "id": "2805", "properties": {"Object ID": 573789437, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93799547, 32.776086354, -79.93799547, 32.776086354], "geometry": {"coordinates": [-79.93799547, 32.776086354], "type": "Point"}, "id": "2806", "properties": {"Object ID": 573789438, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93825533, 32.776443083, -79.93825533, 32.776443083], "geometry": {"coordinates": [-79.93825533, 32.776443083], "type": "Point"}, "id": "2807", "properties": {"Object ID": 573789441, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93800281, 32.776645294, -79.93800281, 32.776645294], "geometry": {"coordinates": [-79.93800281, 32.776645294], "type": "Point"}, "id": "2808", "properties": {"Object ID": 573789445, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93833654, 32.776784583, -79.93833654, 32.776784583], "geometry": {"coordinates": [-79.93833654, 32.776784583], "type": "Point"}, "id": "2809", "properties": {"Object ID": 573789449, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93802, 32.776815167, -79.93802, 32.776815167], "geometry": {"coordinates": [-79.93802, 32.776815167], "type": "Point"}, "id": "2810", "properties": {"Object ID": 573789451, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93765151, 32.776940976, -79.93765151, 32.776940976], "geometry": {"coordinates": [-79.93765151, 32.776940976], "type": "Point"}, "id": "2811", "properties": {"Object ID": 573789453, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93792646, 32.777004465, -79.93792646, 32.777004465], "geometry": {"coordinates": [-79.93792646, 32.777004465], "type": "Point"}, "id": "2812", "properties": {"Object ID": 573789455, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9385729, 32.773623197, -79.9385729, 32.773623197], "geometry": {"coordinates": [-79.9385729, 32.773623197], "type": "Point"}, "id": "2813", "properties": {"Object ID": 573789683, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9389607, 32.772898501, -79.9389607, 32.772898501], "geometry": {"coordinates": [-79.9389607, 32.772898501], "type": "Point"}, "id": "2814", "properties": {"Object ID": 573789701, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93897976, 32.773626758, -79.93897976, 32.773626758], "geometry": {"coordinates": [-79.93897976, 32.773626758], "type": "Point"}, "id": "2815", "properties": {"Object ID": 573789727, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93936333, 32.77834763, -79.93936333, 32.77834763], "geometry": {"coordinates": [-79.93936333, 32.77834763], "type": "Point"}, "id": "2816", "properties": {"Object ID": 573794181, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93904394, 32.778373657, -79.93904394, 32.778373657], "geometry": {"coordinates": [-79.93904394, 32.778373657], "type": "Point"}, "id": "2817", "properties": {"Object ID": 573794183, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93877166, 32.778401304, -79.93877166, 32.778401304], "geometry": {"coordinates": [-79.93877166, 32.778401304], "type": "Point"}, "id": "2818", "properties": {"Object ID": 573794186, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9394604, 32.778941487, -79.9394604, 32.778941487], "geometry": {"coordinates": [-79.9394604, 32.778941487], "type": "Point"}, "id": "2819", "properties": {"Object ID": 573794206, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93772671, 32.779130812, -79.93772671, 32.779130812], "geometry": {"coordinates": [-79.93772671, 32.779130812], "type": "Point"}, "id": "2820", "properties": {"Object ID": 573794208, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93796561, 32.779471999, -79.93796561, 32.779471999], "geometry": {"coordinates": [-79.93796561, 32.779471999], "type": "Point"}, "id": "2821", "properties": {"Object ID": 573794216, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93888956, 32.77662038, -79.93888956, 32.77662038], "geometry": {"coordinates": [-79.93888956, 32.77662038], "type": "Point"}, "id": "2822", "properties": {"Object ID": 573794281, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93862068, 32.776620318, -79.93862068, 32.776620318], "geometry": {"coordinates": [-79.93862068, 32.776620318], "type": "Point"}, "id": "2823", "properties": {"Object ID": 573794283, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93985097, 32.776651061, -79.93985097, 32.776651061], "geometry": {"coordinates": [-79.93985097, 32.776651061], "type": "Point"}, "id": "2824", "properties": {"Object ID": 573794287, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9390366, 32.776834935, -79.9390366, 32.776834935], "geometry": {"coordinates": [-79.9390366, 32.776834935], "type": "Point"}, "id": "2825", "properties": {"Object ID": 573794289, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93993515, 32.77682093, -79.93993515, 32.77682093], "geometry": {"coordinates": [-79.93993515, 32.77682093], "type": "Point"}, "id": "2826", "properties": {"Object ID": 573794291, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93873501, 32.776889269, -79.93873501, 32.776889269], "geometry": {"coordinates": [-79.93873501, 32.776889269], "type": "Point"}, "id": "2827", "properties": {"Object ID": 573794295, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9386078, 32.777068874, -79.9386078, 32.777068874], "geometry": {"coordinates": [-79.9386078, 32.777068874], "type": "Point"}, "id": "2828", "properties": {"Object ID": 573794308, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94010722, 32.774273565, -79.94010722, 32.774273565], "geometry": {"coordinates": [-79.94010722, 32.774273565], "type": "Point"}, "id": "2829", "properties": {"Object ID": 573795550, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9396644, 32.7747146, -79.9396644, 32.7747146], "geometry": {"coordinates": [-79.9396644, 32.7747146], "type": "Point"}, "id": "2830", "properties": {"Object ID": 573795565, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94032741, 32.775329938, -79.94032741, 32.775329938], "geometry": {"coordinates": [-79.94032741, 32.775329938], "type": "Point"}, "id": "2831", "properties": {"Object ID": 573795581, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93987606, 32.775362948, -79.93987606, 32.775362948], "geometry": {"coordinates": [-79.93987606, 32.775362948], "type": "Point"}, "id": "2832", "properties": {"Object ID": 573795588, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93970862, 32.775458178, -79.93970862, 32.775458178], "geometry": {"coordinates": [-79.93970862, 32.775458178], "type": "Point"}, "id": "2833", "properties": {"Object ID": 573795590, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9405136, 32.777902234, -79.9405136, 32.777902234], "geometry": {"coordinates": [-79.9405136, 32.777902234], "type": "Point"}, "id": "2834", "properties": {"Object ID": 573795662, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94023737, 32.777431098, -79.94023737, 32.777431098], "geometry": {"coordinates": [-79.94023737, 32.777431098], "type": "Point"}, "id": "2835", "properties": {"Object ID": 573795673, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94012151, 32.778560154, -79.94012151, 32.778560154], "geometry": {"coordinates": [-79.94012151, 32.778560154], "type": "Point"}, "id": "2836", "properties": {"Object ID": 573795706, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94022306, 32.778543675, -79.94022306, 32.778543675], "geometry": {"coordinates": [-79.94022306, 32.778543675], "type": "Point"}, "id": "2837", "properties": {"Object ID": 573795708, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93984254, 32.778651725, -79.93984254, 32.778651725], "geometry": {"coordinates": [-79.93984254, 32.778651725], "type": "Point"}, "id": "2838", "properties": {"Object ID": 573795710, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94004053, 32.778712494, -79.94004053, 32.778712494], "geometry": {"coordinates": [-79.94004053, 32.778712494], "type": "Point"}, "id": "2839", "properties": {"Object ID": 573795712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93613749, 32.772171462, -79.93613749, 32.772171462], "geometry": {"coordinates": [-79.93613749, 32.772171462], "type": "Point"}, "id": "2840", "properties": {"Object ID": 573850069, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93616184, 32.772390265, -79.93616184, 32.772390265], "geometry": {"coordinates": [-79.93616184, 32.772390265], "type": "Point"}, "id": "2841", "properties": {"Object ID": 573850075, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93617373, 32.772505279, -79.93617373, 32.772505279], "geometry": {"coordinates": [-79.93617373, 32.772505279], "type": "Point"}, "id": "2842", "properties": {"Object ID": 573850078, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.936127, 32.773549355, -79.936127, 32.773549355], "geometry": {"coordinates": [-79.936127, 32.773549355], "type": "Point"}, "id": "2843", "properties": {"Object ID": 573850102, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93592579, 32.773644326, -79.93592579, 32.773644326], "geometry": {"coordinates": [-79.93592579, 32.773644326], "type": "Point"}, "id": "2844", "properties": {"Object ID": 573850104, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93598868, 32.773970034, -79.93598868, 32.773970034], "geometry": {"coordinates": [-79.93598868, 32.773970034], "type": "Point"}, "id": "2845", "properties": {"Object ID": 573850110, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93744826, 32.779999315, -79.93744826, 32.779999315], "geometry": {"coordinates": [-79.93744826, 32.779999315], "type": "Point"}, "id": "2846", "properties": {"Object ID": 573850803, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93759801, 32.780012327, -79.93759801, 32.780012327], "geometry": {"coordinates": [-79.93759801, 32.780012327], "type": "Point"}, "id": "2847", "properties": {"Object ID": 573850805, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93934913, 32.775867666, -79.93934913, 32.775867666], "geometry": {"coordinates": [-79.93934913, 32.775867666], "type": "Point"}, "id": "2848", "properties": {"Object ID": 573856060, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93908099, 32.775948353, -79.93908099, 32.775948353], "geometry": {"coordinates": [-79.93908099, 32.775948353], "type": "Point"}, "id": "2849", "properties": {"Object ID": 573856070, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93853988, 32.776342893, -79.93853988, 32.776342893], "geometry": {"coordinates": [-79.93853988, 32.776342893], "type": "Point"}, "id": "2850", "properties": {"Object ID": 573856089, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93981567, 32.773254149, -79.93981567, 32.773254149], "geometry": {"coordinates": [-79.93981567, 32.773254149], "type": "Point"}, "id": "2851", "properties": {"Object ID": 573860093, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93953393, 32.773458164, -79.93953393, 32.773458164], "geometry": {"coordinates": [-79.93953393, 32.773458164], "type": "Point"}, "id": "2852", "properties": {"Object ID": 573860100, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94055899, 32.774445675, -79.94055899, 32.774445675], "geometry": {"coordinates": [-79.94055899, 32.774445675], "type": "Point"}, "id": "2853", "properties": {"Object ID": 573860241, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94076421, 32.77396585, -79.94076421, 32.77396585], "geometry": {"coordinates": [-79.94076421, 32.77396585], "type": "Point"}, "id": "2854", "properties": {"Object ID": 573860248, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94078393, 32.77408935, -79.94078393, 32.77408935], "geometry": {"coordinates": [-79.94078393, 32.77408935], "type": "Point"}, "id": "2855", "properties": {"Object ID": 573860250, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94052662, 32.774338319, -79.94052662, 32.774338319], "geometry": {"coordinates": [-79.94052662, 32.774338319], "type": "Point"}, "id": "2856", "properties": {"Object ID": 573860260, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94083735, 32.774416463, -79.94083735, 32.774416463], "geometry": {"coordinates": [-79.94083735, 32.774416463], "type": "Point"}, "id": "2857", "properties": {"Object ID": 573860262, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94059205, 32.774662686, -79.94059205, 32.774662686], "geometry": {"coordinates": [-79.94059205, 32.774662686], "type": "Point"}, "id": "2858", "properties": {"Object ID": 573860271, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94089806, 32.774848988, -79.94089806, 32.774848988], "geometry": {"coordinates": [-79.94089806, 32.774848988], "type": "Point"}, "id": "2859", "properties": {"Object ID": 573860277, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94091999, 32.775063126, -79.94091999, 32.775063126], "geometry": {"coordinates": [-79.94091999, 32.775063126], "type": "Point"}, "id": "2860", "properties": {"Object ID": 573860285, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93523903, 32.770359233, -79.93523903, 32.770359233], "geometry": {"coordinates": [-79.93523903, 32.770359233], "type": "Point"}, "id": "2861", "properties": {"Object ID": 574268593, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93530999, 32.771302986, -79.93530999, 32.771302986], "geometry": {"coordinates": [-79.93530999, 32.771302986], "type": "Point"}, "id": "2862", "properties": {"Object ID": 574268666, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93513334, 32.771683946, -79.93513334, 32.771683946], "geometry": {"coordinates": [-79.93513334, 32.771683946], "type": "Point"}, "id": "2863", "properties": {"Object ID": 574268692, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9346324, 32.77173272, -79.9346324, 32.77173272], "geometry": {"coordinates": [-79.9346324, 32.77173272], "type": "Point"}, "id": "2864", "properties": {"Object ID": 574268700, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93721288, 32.774048952, -79.93721288, 32.774048952], "geometry": {"coordinates": [-79.93721288, 32.774048952], "type": "Point"}, "id": "2865", "properties": {"Object ID": 574268740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9364956, 32.774163152, -79.9364956, 32.774163152], "geometry": {"coordinates": [-79.9364956, 32.774163152], "type": "Point"}, "id": "2866", "properties": {"Object ID": 574268746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9373672, 32.774327987, -79.9373672, 32.774327987], "geometry": {"coordinates": [-79.9373672, 32.774327987], "type": "Point"}, "id": "2867", "properties": {"Object ID": 574268765, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93589059, 32.774537902, -79.93589059, 32.774537902], "geometry": {"coordinates": [-79.93589059, 32.774537902], "type": "Point"}, "id": "2868", "properties": {"Object ID": 574268771, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93702477, 32.774657563, -79.93702477, 32.774657563], "geometry": {"coordinates": [-79.93702477, 32.774657563], "type": "Point"}, "id": "2869", "properties": {"Object ID": 574268777, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93594747, 32.774901593, -79.93594747, 32.774901593], "geometry": {"coordinates": [-79.93594747, 32.774901593], "type": "Point"}, "id": "2870", "properties": {"Object ID": 574268783, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93662462, 32.77499479, -79.93662462, 32.77499479], "geometry": {"coordinates": [-79.93662462, 32.77499479], "type": "Point"}, "id": "2871", "properties": {"Object ID": 574268791, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93653572, 32.775103145, -79.93653572, 32.775103145], "geometry": {"coordinates": [-79.93653572, 32.775103145], "type": "Point"}, "id": "2872", "properties": {"Object ID": 574268796, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93588635, 32.775317329, -79.93588635, 32.775317329], "geometry": {"coordinates": [-79.93588635, 32.775317329], "type": "Point"}, "id": "2873", "properties": {"Object ID": 574268804, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93620056, 32.775531732, -79.93620056, 32.775531732], "geometry": {"coordinates": [-79.93620056, 32.775531732], "type": "Point"}, "id": "2874", "properties": {"Object ID": 574268810, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93636809, 32.770996914, -79.93636809, 32.770996914], "geometry": {"coordinates": [-79.93636809, 32.770996914], "type": "Point"}, "id": "2875", "properties": {"Object ID": 574268891, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93564242, 32.770984144, -79.93564242, 32.770984144], "geometry": {"coordinates": [-79.93564242, 32.770984144], "type": "Point"}, "id": "2876", "properties": {"Object ID": 574268893, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93655468, 32.771059497, -79.93655468, 32.771059497], "geometry": {"coordinates": [-79.93655468, 32.771059497], "type": "Point"}, "id": "2877", "properties": {"Object ID": 574268895, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93713291, 32.771246179, -79.93713291, 32.771246179], "geometry": {"coordinates": [-79.93713291, 32.771246179], "type": "Point"}, "id": "2878", "properties": {"Object ID": 574268899, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93691964, 32.771210445, -79.93691964, 32.771210445], "geometry": {"coordinates": [-79.93691964, 32.771210445], "type": "Point"}, "id": "2879", "properties": {"Object ID": 574268901, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93658092, 32.771436457, -79.93658092, 32.771436457], "geometry": {"coordinates": [-79.93658092, 32.771436457], "type": "Point"}, "id": "2880", "properties": {"Object ID": 574268909, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93684774, 32.77151887, -79.93684774, 32.77151887], "geometry": {"coordinates": [-79.93684774, 32.77151887], "type": "Point"}, "id": "2881", "properties": {"Object ID": 574268913, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93720419, 32.776959923, -79.93720419, 32.776959923], "geometry": {"coordinates": [-79.93720419, 32.776959923], "type": "Point"}, "id": "2882", "properties": {"Object ID": 574268938, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93637359, 32.777298206, -79.93637359, 32.777298206], "geometry": {"coordinates": [-79.93637359, 32.777298206], "type": "Point"}, "id": "2883", "properties": {"Object ID": 574268959, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93610554, 32.777320491, -79.93610554, 32.777320491], "geometry": {"coordinates": [-79.93610554, 32.777320491], "type": "Point"}, "id": "2884", "properties": {"Object ID": 574268963, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93846546, 32.773921009, -79.93846546, 32.773921009], "geometry": {"coordinates": [-79.93846546, 32.773921009], "type": "Point"}, "id": "2885", "properties": {"Object ID": 574269137, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93888507, 32.773949195, -79.93888507, 32.773949195], "geometry": {"coordinates": [-79.93888507, 32.773949195], "type": "Point"}, "id": "2886", "properties": {"Object ID": 574269139, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93858978, 32.774198964, -79.93858978, 32.774198964], "geometry": {"coordinates": [-79.93858978, 32.774198964], "type": "Point"}, "id": "2887", "properties": {"Object ID": 574269145, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93841673, 32.774390878, -79.93841673, 32.774390878], "geometry": {"coordinates": [-79.93841673, 32.774390878], "type": "Point"}, "id": "2888", "properties": {"Object ID": 574269151, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9380556, 32.77472305, -79.9380556, 32.77472305], "geometry": {"coordinates": [-79.9380556, 32.77472305], "type": "Point"}, "id": "2889", "properties": {"Object ID": 574269170, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9380556, 32.77472305, -79.9380556, 32.77472305], "geometry": {"coordinates": [-79.9380556, 32.77472305], "type": "Point"}, "id": "2890", "properties": {"Object ID": 574269172, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93800678, 32.774773559, -79.93800678, 32.774773559], "geometry": {"coordinates": [-79.93800678, 32.774773559], "type": "Point"}, "id": "2891", "properties": {"Object ID": 574269176, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93755569, 32.775134402, -79.93755569, 32.775134402], "geometry": {"coordinates": [-79.93755569, 32.775134402], "type": "Point"}, "id": "2892", "properties": {"Object ID": 574269193, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93755582, 32.775250281, -79.93755582, 32.775250281], "geometry": {"coordinates": [-79.93755582, 32.775250281], "type": "Point"}, "id": "2893", "properties": {"Object ID": 574269198, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93686428, 32.775408412, -79.93686428, 32.775408412], "geometry": {"coordinates": [-79.93686428, 32.775408412], "type": "Point"}, "id": "2894", "properties": {"Object ID": 574269204, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93763293, 32.777494224, -79.93763293, 32.777494224], "geometry": {"coordinates": [-79.93763293, 32.777494224], "type": "Point"}, "id": "2895", "properties": {"Object ID": 574269280, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93870935, 32.777989823, -79.93870935, 32.777989823], "geometry": {"coordinates": [-79.93870935, 32.777989823], "type": "Point"}, "id": "2896", "properties": {"Object ID": 574269309, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93672199, 32.778998465, -79.93672199, 32.778998465], "geometry": {"coordinates": [-79.93672199, 32.778998465], "type": "Point"}, "id": "2897", "properties": {"Object ID": 574294731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93640825, 32.779026495, -79.93640825, 32.779026495], "geometry": {"coordinates": [-79.93640825, 32.779026495], "type": "Point"}, "id": "2898", "properties": {"Object ID": 574294732, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93658207, 32.779297718, -79.93658207, 32.779297718], "geometry": {"coordinates": [-79.93658207, 32.779297718], "type": "Point"}, "id": "2899", "properties": {"Object ID": 574294733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93709096, 32.779758701, -79.93709096, 32.779758701], "geometry": {"coordinates": [-79.93709096, 32.779758701], "type": "Point"}, "id": "2900", "properties": {"Object ID": 574294736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93682373, 32.779826872, -79.93682373, 32.779826872], "geometry": {"coordinates": [-79.93682373, 32.779826872], "type": "Point"}, "id": "2901", "properties": {"Object ID": 574294738, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9358001, 32.770031213, -79.9358001, 32.770031213], "geometry": {"coordinates": [-79.9358001, 32.770031213], "type": "Point"}, "id": "2902", "properties": {"Object ID": 574294740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93610786, 32.770382494, -79.93610786, 32.770382494], "geometry": {"coordinates": [-79.93610786, 32.770382494], "type": "Point"}, "id": "2903", "properties": {"Object ID": 574294746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93663099, 32.770643894, -79.93663099, 32.770643894], "geometry": {"coordinates": [-79.93663099, 32.770643894], "type": "Point"}, "id": "2904", "properties": {"Object ID": 574294754, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93786388, 32.779880897, -79.93786388, 32.779880897], "geometry": {"coordinates": [-79.93786388, 32.779880897], "type": "Point"}, "id": "2905", "properties": {"Object ID": 574294814, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93924914, 32.777300489, -79.93924914, 32.777300489], "geometry": {"coordinates": [-79.93924914, 32.777300489], "type": "Point"}, "id": "2906", "properties": {"Object ID": 574295706, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93872689, 32.777450807, -79.93872689, 32.777450807], "geometry": {"coordinates": [-79.93872689, 32.777450807], "type": "Point"}, "id": "2907", "properties": {"Object ID": 574295712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93905446, 32.777505412, -79.93905446, 32.777505412], "geometry": {"coordinates": [-79.93905446, 32.777505412], "type": "Point"}, "id": "2908", "properties": {"Object ID": 574295714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9385833, 32.777461088, -79.9385833, 32.777461088], "geometry": {"coordinates": [-79.9385833, 32.777461088], "type": "Point"}, "id": "2909", "properties": {"Object ID": 574295716, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93796827, 32.777833528, -79.93796827, 32.777833528], "geometry": {"coordinates": [-79.93796827, 32.777833528], "type": "Point"}, "id": "2910", "properties": {"Object ID": 574295727, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94038034, 32.771802409, -79.94038034, 32.771802409], "geometry": {"coordinates": [-79.94038034, 32.771802409], "type": "Point"}, "id": "2911", "properties": {"Object ID": 574296077, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93673397, 32.771899161, -79.93673397, 32.771899161], "geometry": {"coordinates": [-79.93673397, 32.771899161], "type": "Point"}, "id": "2912", "properties": {"Object ID": 574371855, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93443957, 32.778024341, -79.93443957, 32.778024341], "geometry": {"coordinates": [-79.93443957, 32.778024341], "type": "Point"}, "id": "2913", "properties": {"Object ID": 574371677, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93430019, 32.778027112, -79.93430019, 32.778027112], "geometry": {"coordinates": [-79.93430019, 32.778027112], "type": "Point"}, "id": "2914", "properties": {"Object ID": 574371679, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9349401, 32.777720077, -79.9349401, 32.777720077], "geometry": {"coordinates": [-79.9349401, 32.777720077], "type": "Point"}, "id": "2915", "properties": {"Object ID": 574371753, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93463326, 32.777725487, -79.93463326, 32.777725487], "geometry": {"coordinates": [-79.93463326, 32.777725487], "type": "Point"}, "id": "2916", "properties": {"Object ID": 574371759, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93471226, 32.77796845, -79.93471226, 32.77796845], "geometry": {"coordinates": [-79.93471226, 32.77796845], "type": "Point"}, "id": "2917", "properties": {"Object ID": 574371765, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93594687, 32.778191438, -79.93594687, 32.778191438], "geometry": {"coordinates": [-79.93594687, 32.778191438], "type": "Point"}, "id": "2918", "properties": {"Object ID": 574371773, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93482348, 32.778616576, -79.93482348, 32.778616576], "geometry": {"coordinates": [-79.93482348, 32.778616576], "type": "Point"}, "id": "2919", "properties": {"Object ID": 574371781, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93601173, 32.778711944, -79.93601173, 32.778711944], "geometry": {"coordinates": [-79.93601173, 32.778711944], "type": "Point"}, "id": "2920", "properties": {"Object ID": 574371785, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93553151, 32.77868253, -79.93553151, 32.77868253], "geometry": {"coordinates": [-79.93553151, 32.77868253], "type": "Point"}, "id": "2921", "properties": {"Object ID": 574371789, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93483908, 32.778790868, -79.93483908, 32.778790868], "geometry": {"coordinates": [-79.93483908, 32.778790868], "type": "Point"}, "id": "2922", "properties": {"Object ID": 574371797, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93671014, 32.780304754, -79.93671014, 32.780304754], "geometry": {"coordinates": [-79.93671014, 32.780304754], "type": "Point"}, "id": "2923", "properties": {"Object ID": 574371801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93971373, 32.772450135, -79.93971373, 32.772450135], "geometry": {"coordinates": [-79.93971373, 32.772450135], "type": "Point"}, "id": "2924", "properties": {"Object ID": 574372044, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94013274, 32.772639426, -79.94013274, 32.772639426], "geometry": {"coordinates": [-79.94013274, 32.772639426], "type": "Point"}, "id": "2925", "properties": {"Object ID": 574372050, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93936289, 32.772702726, -79.93936289, 32.772702726], "geometry": {"coordinates": [-79.93936289, 32.772702726], "type": "Point"}, "id": "2926", "properties": {"Object ID": 574372052, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9395207, 32.77273047, -79.9395207, 32.77273047], "geometry": {"coordinates": [-79.9395207, 32.77273047], "type": "Point"}, "id": "2927", "properties": {"Object ID": 574372054, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93977891, 32.772844654, -79.93977891, 32.772844654], "geometry": {"coordinates": [-79.93977891, 32.772844654], "type": "Point"}, "id": "2928", "properties": {"Object ID": 574372062, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94092779, 32.773021518, -79.94092779, 32.773021518], "geometry": {"coordinates": [-79.94092779, 32.773021518], "type": "Point"}, "id": "2929", "properties": {"Object ID": 574372070, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94041931, 32.773133773, -79.94041931, 32.773133773], "geometry": {"coordinates": [-79.94041931, 32.773133773], "type": "Point"}, "id": "2930", "properties": {"Object ID": 574372076, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93678007, 32.772492416, -79.93678007, 32.772492416], "geometry": {"coordinates": [-79.93678007, 32.772492416], "type": "Point"}, "id": "2931", "properties": {"Object ID": 574371896, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93657196, 32.77270174, -79.93657196, 32.77270174], "geometry": {"coordinates": [-79.93657196, 32.77270174], "type": "Point"}, "id": "2932", "properties": {"Object ID": 574371902, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93682663, 32.772821705, -79.93682663, 32.772821705], "geometry": {"coordinates": [-79.93682663, 32.772821705], "type": "Point"}, "id": "2933", "properties": {"Object ID": 574371904, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93566501, 32.776833106, -79.93566501, 32.776833106], "geometry": {"coordinates": [-79.93566501, 32.776833106], "type": "Point"}, "id": "2934", "properties": {"Object ID": 574372968, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93533289, 32.776996942, -79.93533289, 32.776996942], "geometry": {"coordinates": [-79.93533289, 32.776996942], "type": "Point"}, "id": "2935", "properties": {"Object ID": 574372974, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93577201, 32.777085231, -79.93577201, 32.777085231], "geometry": {"coordinates": [-79.93577201, 32.777085231], "type": "Point"}, "id": "2936", "properties": {"Object ID": 574372977, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93582285, 32.777343062, -79.93582285, 32.777343062], "geometry": {"coordinates": [-79.93582285, 32.777343062], "type": "Point"}, "id": "2937", "properties": {"Object ID": 574372983, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93832712, 32.771999749, -79.93832712, 32.771999749], "geometry": {"coordinates": [-79.93832712, 32.771999749], "type": "Point"}, "id": "2938", "properties": {"Object ID": 574373108, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9383712, 32.772191922, -79.9383712, 32.772191922], "geometry": {"coordinates": [-79.9383712, 32.772191922], "type": "Point"}, "id": "2939", "properties": {"Object ID": 574373117, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93910118, 32.772536073, -79.93910118, 32.772536073], "geometry": {"coordinates": [-79.93910118, 32.772536073], "type": "Point"}, "id": "2940", "properties": {"Object ID": 574373125, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93446685, 32.777488167, -79.93446685, 32.777488167], "geometry": {"coordinates": [-79.93446685, 32.777488167], "type": "Point"}, "id": "2941", "properties": {"Object ID": 574409657, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93800348, 32.771163947, -79.93800348, 32.771163947], "geometry": {"coordinates": [-79.93800348, 32.771163947], "type": "Point"}, "id": "2942", "properties": {"Object ID": 574409961, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93442124, 32.778916322, -79.93442124, 32.778916322], "geometry": {"coordinates": [-79.93442124, 32.778916322], "type": "Point"}, "id": "2943", "properties": {"Object ID": 574421811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93906748, 32.771174496, -79.93906748, 32.771174496], "geometry": {"coordinates": [-79.93906748, 32.771174496], "type": "Point"}, "id": "2944", "properties": {"Object ID": 574421848, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93897655, 32.771600676, -79.93897655, 32.771600676], "geometry": {"coordinates": [-79.93897655, 32.771600676], "type": "Point"}, "id": "2945", "properties": {"Object ID": 574421865, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93595137, 32.779986363, -79.93595137, 32.779986363], "geometry": {"coordinates": [-79.93595137, 32.779986363], "type": "Point"}, "id": "2946", "properties": {"Object ID": 574421939, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93614378, 32.779728689, -79.93614378, 32.779728689], "geometry": {"coordinates": [-79.93614378, 32.779728689], "type": "Point"}, "id": "2947", "properties": {"Object ID": 574421945, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93528261, 32.780263613, -79.93528261, 32.780263613], "geometry": {"coordinates": [-79.93528261, 32.780263613], "type": "Point"}, "id": "2948", "properties": {"Object ID": 574421949, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93577778, 32.771690262, -79.93577778, 32.771690262], "geometry": {"coordinates": [-79.93577778, 32.771690262], "type": "Point"}, "id": "2949", "properties": {"Object ID": 574431717, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93463445, 32.779732623, -79.93463445, 32.779732623], "geometry": {"coordinates": [-79.93463445, 32.779732623], "type": "Point"}, "id": "2950", "properties": {"Object ID": 574446511, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9343812, 32.779761088, -79.9343812, 32.779761088], "geometry": {"coordinates": [-79.9343812, 32.779761088], "type": "Point"}, "id": "2951", "properties": {"Object ID": 574446513, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9343812, 32.779761088, -79.9343812, 32.779761088], "geometry": {"coordinates": [-79.9343812, 32.779761088], "type": "Point"}, "id": "2952", "properties": {"Object ID": 574446515, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93454321, 32.779150786, -79.93454321, 32.779150786], "geometry": {"coordinates": [-79.93454321, 32.779150786], "type": "Point"}, "id": "2953", "properties": {"Object ID": 574446527, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93455069, 32.779355163, -79.93455069, 32.779355163], "geometry": {"coordinates": [-79.93455069, 32.779355163], "type": "Point"}, "id": "2954", "properties": {"Object ID": 574446551, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93433258, 32.779755368, -79.93433258, 32.779755368], "geometry": {"coordinates": [-79.93433258, 32.779755368], "type": "Point"}, "id": "2955", "properties": {"Object ID": 574460951, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93444444, 32.770379855, -79.93444444, 32.770379855], "geometry": {"coordinates": [-79.93444444, 32.770379855], "type": "Point"}, "id": "2956", "properties": {"Object ID": 574476698, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94073764, 32.778398944, -79.94073764, 32.778398944], "geometry": {"coordinates": [-79.94073764, 32.778398944], "type": "Point"}, "id": "2957", "properties": {"Object ID": 574486708, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93882011, 32.779486699, -79.93882011, 32.779486699], "geometry": {"coordinates": [-79.93882011, 32.779486699], "type": "Point"}, "id": "2958", "properties": {"Object ID": 574486717, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9391611, 32.778882308, -79.9391611, 32.778882308], "geometry": {"coordinates": [-79.9391611, 32.778882308], "type": "Point"}, "id": "2959", "properties": {"Object ID": 574486718, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9391611, 32.778882308, -79.9391611, 32.778882308], "geometry": {"coordinates": [-79.9391611, 32.778882308], "type": "Point"}, "id": "2960", "properties": {"Object ID": 574486719, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93923474, 32.778607967, -79.93923474, 32.778607967], "geometry": {"coordinates": [-79.93923474, 32.778607967], "type": "Point"}, "id": "2961", "properties": {"Object ID": 574486721, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93958822, 32.777296978, -79.93958822, 32.777296978], "geometry": {"coordinates": [-79.93958822, 32.777296978], "type": "Point"}, "id": "2962", "properties": {"Object ID": 574486788, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93974089, 32.777342332, -79.93974089, 32.777342332], "geometry": {"coordinates": [-79.93974089, 32.777342332], "type": "Point"}, "id": "2963", "properties": {"Object ID": 574486789, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93963218, 32.777450672, -79.93963218, 32.777450672], "geometry": {"coordinates": [-79.93963218, 32.777450672], "type": "Point"}, "id": "2964", "properties": {"Object ID": 574486790, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93858642, 32.777573004, -79.93858642, 32.777573004], "geometry": {"coordinates": [-79.93858642, 32.777573004], "type": "Point"}, "id": "2965", "properties": {"Object ID": 574486792, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93827359, 32.777600319, -79.93827359, 32.777600319], "geometry": {"coordinates": [-79.93827359, 32.777600319], "type": "Point"}, "id": "2966", "properties": {"Object ID": 574486795, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93897988, 32.777340497, -79.93897988, 32.777340497], "geometry": {"coordinates": [-79.93897988, 32.777340497], "type": "Point"}, "id": "2967", "properties": {"Object ID": 574486798, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93856586, 32.777368893, -79.93856586, 32.777368893], "geometry": {"coordinates": [-79.93856586, 32.777368893], "type": "Point"}, "id": "2968", "properties": {"Object ID": 574486801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93816358, 32.777441916, -79.93816358, 32.777441916], "geometry": {"coordinates": [-79.93816358, 32.777441916], "type": "Point"}, "id": "2969", "properties": {"Object ID": 574486802, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93833407, 32.777109379, -79.93833407, 32.777109379], "geometry": {"coordinates": [-79.93833407, 32.777109379], "type": "Point"}, "id": "2970", "properties": {"Object ID": 574486805, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93892571, 32.776049265, -79.93892571, 32.776049265], "geometry": {"coordinates": [-79.93892571, 32.776049265], "type": "Point"}, "id": "2971", "properties": {"Object ID": 574486807, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93857046, 32.77627888, -79.93857046, 32.77627888], "geometry": {"coordinates": [-79.93857046, 32.77627888], "type": "Point"}, "id": "2972", "properties": {"Object ID": 574486811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9408639, 32.775053967, -79.9408639, 32.775053967], "geometry": {"coordinates": [-79.9408639, 32.775053967], "type": "Point"}, "id": "2973", "properties": {"Object ID": 574486825, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9397885, 32.775243083, -79.9397885, 32.775243083], "geometry": {"coordinates": [-79.9397885, 32.775243083], "type": "Point"}, "id": "2974", "properties": {"Object ID": 574486827, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93988545, 32.773901763, -79.93988545, 32.773901763], "geometry": {"coordinates": [-79.93988545, 32.773901763], "type": "Point"}, "id": "2975", "properties": {"Object ID": 574486833, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93911017, 32.774639014, -79.93911017, 32.774639014], "geometry": {"coordinates": [-79.93911017, 32.774639014], "type": "Point"}, "id": "2976", "properties": {"Object ID": 574486835, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93888976, 32.773642978, -79.93888976, 32.773642978], "geometry": {"coordinates": [-79.93888976, 32.773642978], "type": "Point"}, "id": "2977", "properties": {"Object ID": 574486840, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94093491, 32.773033556, -79.94093491, 32.773033556], "geometry": {"coordinates": [-79.94093491, 32.773033556], "type": "Point"}, "id": "2978", "properties": {"Object ID": 574486844, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93949742, 32.773071317, -79.93949742, 32.773071317], "geometry": {"coordinates": [-79.93949742, 32.773071317], "type": "Point"}, "id": "2979", "properties": {"Object ID": 574486847, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93999904, 32.772603221, -79.93999904, 32.772603221], "geometry": {"coordinates": [-79.93999904, 32.772603221], "type": "Point"}, "id": "2980", "properties": {"Object ID": 574486848, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93801926, 32.775587877, -79.93801926, 32.775587877], "geometry": {"coordinates": [-79.93801926, 32.775587877], "type": "Point"}, "id": "2981", "properties": {"Object ID": 574486850, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93763932, 32.774057164, -79.93763932, 32.774057164], "geometry": {"coordinates": [-79.93763932, 32.774057164], "type": "Point"}, "id": "2982", "properties": {"Object ID": 574486853, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93753207, 32.774015264, -79.93753207, 32.774015264], "geometry": {"coordinates": [-79.93753207, 32.774015264], "type": "Point"}, "id": "2983", "properties": {"Object ID": 574486854, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93750337, 32.773727627, -79.93750337, 32.773727627], "geometry": {"coordinates": [-79.93750337, 32.773727627], "type": "Point"}, "id": "2984", "properties": {"Object ID": 574486856, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93541956, 32.775403971, -79.93541956, 32.775403971], "geometry": {"coordinates": [-79.93541956, 32.775403971], "type": "Point"}, "id": "2985", "properties": {"Object ID": 574486865, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542766, 32.774993284, -79.93542766, 32.774993284], "geometry": {"coordinates": [-79.93542766, 32.774993284], "type": "Point"}, "id": "2986", "properties": {"Object ID": 574486872, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542766, 32.774993284, -79.93542766, 32.774993284], "geometry": {"coordinates": [-79.93542766, 32.774993284], "type": "Point"}, "id": "2987", "properties": {"Object ID": 574486875, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93651266, 32.774225118, -79.93651266, 32.774225118], "geometry": {"coordinates": [-79.93651266, 32.774225118], "type": "Point"}, "id": "2988", "properties": {"Object ID": 574486877, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93598957, 32.773950257, -79.93598957, 32.773950257], "geometry": {"coordinates": [-79.93598957, 32.773950257], "type": "Point"}, "id": "2989", "properties": {"Object ID": 574486881, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.934546, 32.774462493, -79.934546, 32.774462493], "geometry": {"coordinates": [-79.934546, 32.774462493], "type": "Point"}, "id": "2990", "properties": {"Object ID": 574486885, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93667556, 32.780268256, -79.93667556, 32.780268256], "geometry": {"coordinates": [-79.93667556, 32.780268256], "type": "Point"}, "id": "2991", "properties": {"Object ID": 574486952, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93676603, 32.77789835, -79.93676603, 32.77789835], "geometry": {"coordinates": [-79.93676603, 32.77789835], "type": "Point"}, "id": "2992", "properties": {"Object ID": 574486958, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93669002, 32.777905314, -79.93669002, 32.777905314], "geometry": {"coordinates": [-79.93669002, 32.777905314], "type": "Point"}, "id": "2993", "properties": {"Object ID": 574486959, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93727479, 32.777235676, -79.93727479, 32.777235676], "geometry": {"coordinates": [-79.93727479, 32.777235676], "type": "Point"}, "id": "2994", "properties": {"Object ID": 574486960, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93727479, 32.777235676, -79.93727479, 32.777235676], "geometry": {"coordinates": [-79.93727479, 32.777235676], "type": "Point"}, "id": "2995", "properties": {"Object ID": 574486961, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93668262, 32.777181096, -79.93668262, 32.777181096], "geometry": {"coordinates": [-79.93668262, 32.777181096], "type": "Point"}, "id": "2996", "properties": {"Object ID": 574486964, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93688982, 32.776876886, -79.93688982, 32.776876886], "geometry": {"coordinates": [-79.93688982, 32.776876886], "type": "Point"}, "id": "2997", "properties": {"Object ID": 574486972, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93675051, 32.776222616, -79.93675051, 32.776222616], "geometry": {"coordinates": [-79.93675051, 32.776222616], "type": "Point"}, "id": "2998", "properties": {"Object ID": 574486975, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93589449, 32.779555456, -79.93589449, 32.779555456], "geometry": {"coordinates": [-79.93589449, 32.779555456], "type": "Point"}, "id": "2999", "properties": {"Object ID": 574486978, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93582978, 32.779561131, -79.93582978, 32.779561131], "geometry": {"coordinates": [-79.93582978, 32.779561131], "type": "Point"}, "id": "3000", "properties": {"Object ID": 574486979, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9357483, 32.779531488, -79.9357483, 32.779531488], "geometry": {"coordinates": [-79.9357483, 32.779531488], "type": "Point"}, "id": "3001", "properties": {"Object ID": 574486983, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93565933, 32.77953797, -79.93565933, 32.77953797], "geometry": {"coordinates": [-79.93565933, 32.77953797], "type": "Point"}, "id": "3002", "properties": {"Object ID": 574486986, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93555431, 32.779513661, -79.93555431, 32.779513661], "geometry": {"coordinates": [-79.93555431, 32.779513661], "type": "Point"}, "id": "3003", "properties": {"Object ID": 574486989, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93594266, 32.778307479, -79.93594266, 32.778307479], "geometry": {"coordinates": [-79.93594266, 32.778307479], "type": "Point"}, "id": "3004", "properties": {"Object ID": 574486996, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9365008, 32.777922652, -79.9365008, 32.777922652], "geometry": {"coordinates": [-79.9365008, 32.777922652], "type": "Point"}, "id": "3005", "properties": {"Object ID": 574487034, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93587141, 32.777715355, -79.93587141, 32.777715355], "geometry": {"coordinates": [-79.93587141, 32.777715355], "type": "Point"}, "id": "3006", "properties": {"Object ID": 574487037, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93553165, 32.777636879, -79.93553165, 32.777636879], "geometry": {"coordinates": [-79.93553165, 32.777636879], "type": "Point"}, "id": "3007", "properties": {"Object ID": 574487043, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3008", "properties": {"Object ID": 574487048, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3009", "properties": {"Object ID": 574487049, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3010", "properties": {"Object ID": 574487051, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3011", "properties": {"Object ID": 574487054, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3012", "properties": {"Object ID": 574487056, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3013", "properties": {"Object ID": 574487057, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3014", "properties": {"Object ID": 574487062, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3015", "properties": {"Object ID": 574487067, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3016", "properties": {"Object ID": 574487071, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93466484, 32.77742362, -79.93466484, 32.77742362], "geometry": {"coordinates": [-79.93466484, 32.77742362], "type": "Point"}, "id": "3017", "properties": {"Object ID": 574487080, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93460986, 32.777125964, -79.93460986, 32.777125964], "geometry": {"coordinates": [-79.93460986, 32.777125964], "type": "Point"}, "id": "3018", "properties": {"Object ID": 574487083, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93615824, 32.776447461, -79.93615824, 32.776447461], "geometry": {"coordinates": [-79.93615824, 32.776447461], "type": "Point"}, "id": "3019", "properties": {"Object ID": 574487089, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93544376, 32.776459504, -79.93544376, 32.776459504], "geometry": {"coordinates": [-79.93544376, 32.776459504], "type": "Point"}, "id": "3020", "properties": {"Object ID": 574487092, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93602696, 32.776203231, -79.93602696, 32.776203231], "geometry": {"coordinates": [-79.93602696, 32.776203231], "type": "Point"}, "id": "3021", "properties": {"Object ID": 574487095, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94221862, 32.773550407, -79.94221862, 32.773550407], "geometry": {"coordinates": [-79.94221862, 32.773550407], "type": "Point"}, "id": "3022", "properties": {"Object ID": 573800692, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94320565, 32.77510739, -79.94320565, 32.77510739], "geometry": {"coordinates": [-79.94320565, 32.77510739], "type": "Point"}, "id": "3023", "properties": {"Object ID": 573800698, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94176831, 32.772408153, -79.94176831, 32.772408153], "geometry": {"coordinates": [-79.94176831, 32.772408153], "type": "Point"}, "id": "3024", "properties": {"Object ID": 573800714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94191753, 32.772502839, -79.94191753, 32.772502839], "geometry": {"coordinates": [-79.94191753, 32.772502839], "type": "Point"}, "id": "3025", "properties": {"Object ID": 573800716, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94171108, 32.772902534, -79.94171108, 32.772902534], "geometry": {"coordinates": [-79.94171108, 32.772902534], "type": "Point"}, "id": "3026", "properties": {"Object ID": 573800728, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94203934, 32.773043173, -79.94203934, 32.773043173], "geometry": {"coordinates": [-79.94203934, 32.773043173], "type": "Point"}, "id": "3027", "properties": {"Object ID": 573800732, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94360752, 32.775436262, -79.94360752, 32.775436262], "geometry": {"coordinates": [-79.94360752, 32.775436262], "type": "Point"}, "id": "3028", "properties": {"Object ID": 573800791, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94360752, 32.775436262, -79.94360752, 32.775436262], "geometry": {"coordinates": [-79.94360752, 32.775436262], "type": "Point"}, "id": "3029", "properties": {"Object ID": 573800793, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94304606, 32.775950202, -79.94304606, 32.775950202], "geometry": {"coordinates": [-79.94304606, 32.775950202], "type": "Point"}, "id": "3030", "properties": {"Object ID": 573800795, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94304606, 32.775950202, -79.94304606, 32.775950202], "geometry": {"coordinates": [-79.94304606, 32.775950202], "type": "Point"}, "id": "3031", "properties": {"Object ID": 573800797, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9431408, 32.776523032, -79.9431408, 32.776523032], "geometry": {"coordinates": [-79.9431408, 32.776523032], "type": "Point"}, "id": "3032", "properties": {"Object ID": 573800801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94356051, 32.77701734, -79.94356051, 32.77701734], "geometry": {"coordinates": [-79.94356051, 32.77701734], "type": "Point"}, "id": "3033", "properties": {"Object ID": 573800805, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94368712, 32.777222326, -79.94368712, 32.777222326], "geometry": {"coordinates": [-79.94368712, 32.777222326], "type": "Point"}, "id": "3034", "properties": {"Object ID": 573800809, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9433719, 32.777366401, -79.9433719, 32.777366401], "geometry": {"coordinates": [-79.9433719, 32.777366401], "type": "Point"}, "id": "3035", "properties": {"Object ID": 573800813, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94308681, 32.777419457, -79.94308681, 32.777419457], "geometry": {"coordinates": [-79.94308681, 32.777419457], "type": "Point"}, "id": "3036", "properties": {"Object ID": 573800817, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94253555, 32.777464761, -79.94253555, 32.777464761], "geometry": {"coordinates": [-79.94253555, 32.777464761], "type": "Point"}, "id": "3037", "properties": {"Object ID": 573800819, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94369184, 32.777227272, -79.94369184, 32.777227272], "geometry": {"coordinates": [-79.94369184, 32.777227272], "type": "Point"}, "id": "3038", "properties": {"Object ID": 573800823, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94356439, 32.777033379, -79.94356439, 32.777033379], "geometry": {"coordinates": [-79.94356439, 32.777033379], "type": "Point"}, "id": "3039", "properties": {"Object ID": 573800826, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94242512, 32.77358757, -79.94242512, 32.77358757], "geometry": {"coordinates": [-79.94242512, 32.77358757], "type": "Point"}, "id": "3040", "properties": {"Object ID": 573800969, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94320725, 32.777784572, -79.94320725, 32.777784572], "geometry": {"coordinates": [-79.94320725, 32.777784572], "type": "Point"}, "id": "3041", "properties": {"Object ID": 573806311, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94375884, 32.777573207, -79.94375884, 32.777573207], "geometry": {"coordinates": [-79.94375884, 32.777573207], "type": "Point"}, "id": "3042", "properties": {"Object ID": 573806312, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94170131, 32.778348266, -79.94170131, 32.778348266], "geometry": {"coordinates": [-79.94170131, 32.778348266], "type": "Point"}, "id": "3043", "properties": {"Object ID": 573860813, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94120099, 32.772665114, -79.94120099, 32.772665114], "geometry": {"coordinates": [-79.94120099, 32.772665114], "type": "Point"}, "id": "3044", "properties": {"Object ID": 574296105, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94551694, 32.776478611, -79.94551694, 32.776478611], "geometry": {"coordinates": [-79.94551694, 32.776478611], "type": "Point"}, "id": "3045", "properties": {"Object ID": 574422150, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94199805, 32.775231928, -79.94199805, 32.775231928], "geometry": {"coordinates": [-79.94199805, 32.775231928], "type": "Point"}, "id": "3046", "properties": {"Object ID": 574431435, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94126543, 32.773665544, -79.94126543, 32.773665544], "geometry": {"coordinates": [-79.94126543, 32.773665544], "type": "Point"}, "id": "3047", "properties": {"Object ID": 574431441, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94120491, 32.773905274, -79.94120491, 32.773905274], "geometry": {"coordinates": [-79.94120491, 32.773905274], "type": "Point"}, "id": "3048", "properties": {"Object ID": 574431459, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94445838, 32.776922222, -79.94445838, 32.776922222], "geometry": {"coordinates": [-79.94445838, 32.776922222], "type": "Point"}, "id": "3049", "properties": {"Object ID": 574431599, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94152807, 32.774410541, -79.94152807, 32.774410541], "geometry": {"coordinates": [-79.94152807, 32.774410541], "type": "Point"}, "id": "3050", "properties": {"Object ID": 574460772, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3051", "properties": {"Object ID": 574485649, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3052", "properties": {"Object ID": 574485650, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3053", "properties": {"Object ID": 574485655, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3054", "properties": {"Object ID": 574485659, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3055", "properties": {"Object ID": 574485661, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3056", "properties": {"Object ID": 574485666, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3057", "properties": {"Object ID": 574485667, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3058", "properties": {"Object ID": 574486695, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3059", "properties": {"Object ID": 574486696, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3060", "properties": {"Object ID": 574486698, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3061", "properties": {"Object ID": 574486701, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3062", "properties": {"Object ID": 574486704, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94519888, 32.77698147, -79.94519888, 32.77698147], "geometry": {"coordinates": [-79.94519888, 32.77698147], "type": "Point"}, "id": "3063", "properties": {"Object ID": 574486730, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94502746, 32.777048185, -79.94502746, 32.777048185], "geometry": {"coordinates": [-79.94502746, 32.777048185], "type": "Point"}, "id": "3064", "properties": {"Object ID": 574486732, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94338557, 32.777176344, -79.94338557, 32.777176344], "geometry": {"coordinates": [-79.94338557, 32.777176344], "type": "Point"}, "id": "3065", "properties": {"Object ID": 574486736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "3066", "properties": {"Object ID": 574486737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "3067", "properties": {"Object ID": 574486746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "3068", "properties": {"Object ID": 574486748, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "3069", "properties": {"Object ID": 574486750, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "3070", "properties": {"Object ID": 574486753, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "3071", "properties": {"Object ID": 574486755, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "3072", "properties": {"Object ID": 574486769, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "3073", "properties": {"Object ID": 574486774, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "3074", "properties": {"Object ID": 574486777, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "3075", "properties": {"Object ID": 574486815, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "3076", "properties": {"Object ID": 574486817, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "3077", "properties": {"Object ID": 574486819, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "3078", "properties": {"Object ID": 574486820, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "3079", "properties": {"Object ID": 574486821, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "3080", "properties": {"Object ID": 574486822, "__folium_color": "#FFFACD"}, "type": "Feature"}], "type": "FeatureCollection"});\n", + " geo_json_3115e8c8abe4b5978b36eaa9b6ede8ce_add({"bbox": [-79.94603104, 32.769791258, -79.92438222, 32.784158743], "features": [{"bbox": [-79.93000008, 32.770545239, -79.93000008, 32.770545239], "geometry": {"coordinates": [-79.93000008, 32.770545239], "type": "Point"}, "id": "0", "properties": {"Object ID": 573783417, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92968382, 32.771271301, -79.92968382, 32.771271301], "geometry": {"coordinates": [-79.92968382, 32.771271301], "type": "Point"}, "id": "1", "properties": {"Object ID": 573783433, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93179589, 32.773364727, -79.93179589, 32.773364727], "geometry": {"coordinates": [-79.93179589, 32.773364727], "type": "Point"}, "id": "2", "properties": {"Object ID": 573785665, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93064525, 32.774854333, -79.93064525, 32.774854333], "geometry": {"coordinates": [-79.93064525, 32.774854333], "type": "Point"}, "id": "3", "properties": {"Object ID": 574346729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187273, 32.770989143, -79.93187273, 32.770989143], "geometry": {"coordinates": [-79.93187273, 32.770989143], "type": "Point"}, "id": "4", "properties": {"Object ID": 574372707, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191719, 32.771641938, -79.93191719, 32.771641938], "geometry": {"coordinates": [-79.93191719, 32.771641938], "type": "Point"}, "id": "5", "properties": {"Object ID": 574372721, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "6", "properties": {"Object ID": 574476728, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "7", "properties": {"Object ID": 574476811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93027436, 32.775360757, -79.93027436, 32.775360757], "geometry": {"coordinates": [-79.93027436, 32.775360757], "type": "Point"}, "id": "8", "properties": {"Object ID": 574486899, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92998998, 32.773144664, -79.92998998, 32.773144664], "geometry": {"coordinates": [-79.92998998, 32.773144664], "type": "Point"}, "id": "9", "properties": {"Object ID": 574486932, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92697274, 32.77580358, -79.92697274, 32.77580358], "geometry": {"coordinates": [-79.92697274, 32.77580358], "type": "Point"}, "id": "10", "properties": {"Object ID": 574372378, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92477287, 32.775260615, -79.92477287, 32.775260615], "geometry": {"coordinates": [-79.92477287, 32.775260615], "type": "Point"}, "id": "11", "properties": {"Object ID": 574421614, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92640322, 32.776823374, -79.92640322, 32.776823374], "geometry": {"coordinates": [-79.92640322, 32.776823374], "type": "Point"}, "id": "12", "properties": {"Object ID": 574437143, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9250907, 32.774485627, -79.9250907, 32.774485627], "geometry": {"coordinates": [-79.9250907, 32.774485627], "type": "Point"}, "id": "13", "properties": {"Object ID": 574446459, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92766193, 32.773486846, -79.92766193, 32.773486846], "geometry": {"coordinates": [-79.92766193, 32.773486846], "type": "Point"}, "id": "14", "properties": {"Object ID": 574488867, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92740748, 32.778806247, -79.92740748, 32.778806247], "geometry": {"coordinates": [-79.92740748, 32.778806247], "type": "Point"}, "id": "15", "properties": {"Object ID": 573779435, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9304724, 32.778022319, -79.9304724, 32.778022319], "geometry": {"coordinates": [-79.9304724, 32.778022319], "type": "Point"}, "id": "16", "properties": {"Object ID": 573783353, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93080905, 32.776727923, -79.93080905, 32.776727923], "geometry": {"coordinates": [-79.93080905, 32.776727923], "type": "Point"}, "id": "17", "properties": {"Object ID": 573827729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92907633, 32.777112595, -79.92907633, 32.777112595], "geometry": {"coordinates": [-79.92907633, 32.777112595], "type": "Point"}, "id": "18", "properties": {"Object ID": 574421669, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "19", "properties": {"Object ID": 574451480, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92820274, 32.778662139, -79.92820274, 32.778662139], "geometry": {"coordinates": [-79.92820274, 32.778662139], "type": "Point"}, "id": "20", "properties": {"Object ID": 574461033, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "21", "properties": {"Object ID": 574488693, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92670704, 32.778289721, -79.92670704, 32.778289721], "geometry": {"coordinates": [-79.92670704, 32.778289721], "type": "Point"}, "id": "22", "properties": {"Object ID": 574488726, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92806298, 32.777600684, -79.92806298, 32.777600684], "geometry": {"coordinates": [-79.92806298, 32.777600684], "type": "Point"}, "id": "23", "properties": {"Object ID": 574488773, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "24", "properties": {"Object ID": 574488781, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187083, 32.779462015, -79.93187083, 32.779462015], "geometry": {"coordinates": [-79.93187083, 32.779462015], "type": "Point"}, "id": "25", "properties": {"Object ID": 573387882, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92942383, 32.782461503, -79.92942383, 32.782461503], "geometry": {"coordinates": [-79.92942383, 32.782461503], "type": "Point"}, "id": "26", "properties": {"Object ID": 573467952, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92952055, 32.782575733, -79.92952055, 32.782575733], "geometry": {"coordinates": [-79.92952055, 32.782575733], "type": "Point"}, "id": "27", "properties": {"Object ID": 573467954, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9300262, 32.782961292, -79.9300262, 32.782961292], "geometry": {"coordinates": [-79.9300262, 32.782961292], "type": "Point"}, "id": "28", "properties": {"Object ID": 573467966, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9296748, 32.772410417, -79.9296748, 32.772410417], "geometry": {"coordinates": [-79.9296748, 32.772410417], "type": "Point"}, "id": "29", "properties": {"Object ID": 573782570, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9295957, 32.774689891, -79.9295957, 32.774689891], "geometry": {"coordinates": [-79.9295957, 32.774689891], "type": "Point"}, "id": "30", "properties": {"Object ID": 573783130, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93049625, 32.774344859, -79.93049625, 32.774344859], "geometry": {"coordinates": [-79.93049625, 32.774344859], "type": "Point"}, "id": "31", "properties": {"Object ID": 573783164, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92949789, 32.777677463, -79.92949789, 32.777677463], "geometry": {"coordinates": [-79.92949789, 32.777677463], "type": "Point"}, "id": "32", "properties": {"Object ID": 573783333, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93010789, 32.771055204, -79.93010789, 32.771055204], "geometry": {"coordinates": [-79.93010789, 32.771055204], "type": "Point"}, "id": "33", "properties": {"Object ID": 573783427, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9295781, 32.771610827, -79.9295781, 32.771610827], "geometry": {"coordinates": [-79.9295781, 32.771610827], "type": "Point"}, "id": "34", "properties": {"Object ID": 573783441, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9295716, 32.77192977, -79.9295716, 32.77192977], "geometry": {"coordinates": [-79.9295716, 32.77192977], "type": "Point"}, "id": "35", "properties": {"Object ID": 573783447, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93178469, 32.776556116, -79.93178469, 32.776556116], "geometry": {"coordinates": [-79.93178469, 32.776556116], "type": "Point"}, "id": "36", "properties": {"Object ID": 573785448, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93316494, 32.774836158, -79.93316494, 32.774836158], "geometry": {"coordinates": [-79.93316494, 32.774836158], "type": "Point"}, "id": "37", "properties": {"Object ID": 573785816, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93294774, 32.776004938, -79.93294774, 32.776004938], "geometry": {"coordinates": [-79.93294774, 32.776004938], "type": "Point"}, "id": "38", "properties": {"Object ID": 573785864, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93359647, 32.773110601, -79.93359647, 32.773110601], "geometry": {"coordinates": [-79.93359647, 32.773110601], "type": "Point"}, "id": "39", "properties": {"Object ID": 573785925, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93269833, 32.774102068, -79.93269833, 32.774102068], "geometry": {"coordinates": [-79.93269833, 32.774102068], "type": "Point"}, "id": "40", "properties": {"Object ID": 573785962, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93414417, 32.77250666, -79.93414417, 32.77250666], "geometry": {"coordinates": [-79.93414417, 32.77250666], "type": "Point"}, "id": "41", "properties": {"Object ID": 573789014, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93546136, 32.772875167, -79.93546136, 32.772875167], "geometry": {"coordinates": [-79.93546136, 32.772875167], "type": "Point"}, "id": "42", "properties": {"Object ID": 573789019, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93555996, 32.773442523, -79.93555996, 32.773442523], "geometry": {"coordinates": [-79.93555996, 32.773442523], "type": "Point"}, "id": "43", "properties": {"Object ID": 573789026, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93504335, 32.775873827, -79.93504335, 32.775873827], "geometry": {"coordinates": [-79.93504335, 32.775873827], "type": "Point"}, "id": "44", "properties": {"Object ID": 573789160, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93721769, 32.776455767, -79.93721769, 32.776455767], "geometry": {"coordinates": [-79.93721769, 32.776455767], "type": "Point"}, "id": "45", "properties": {"Object ID": 573789173, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93621898, 32.776607519, -79.93621898, 32.776607519], "geometry": {"coordinates": [-79.93621898, 32.776607519], "type": "Point"}, "id": "46", "properties": {"Object ID": 573789181, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93747764, 32.778459962, -79.93747764, 32.778459962], "geometry": {"coordinates": [-79.93747764, 32.778459962], "type": "Point"}, "id": "47", "properties": {"Object ID": 573789195, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93840551, 32.774817257, -79.93840551, 32.774817257], "geometry": {"coordinates": [-79.93840551, 32.774817257], "type": "Point"}, "id": "48", "properties": {"Object ID": 573789340, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93801322, 32.775612877, -79.93801322, 32.775612877], "geometry": {"coordinates": [-79.93801322, 32.775612877], "type": "Point"}, "id": "49", "properties": {"Object ID": 573789361, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93959894, 32.77423144, -79.93959894, 32.77423144], "geometry": {"coordinates": [-79.93959894, 32.77423144], "type": "Point"}, "id": "50", "properties": {"Object ID": 573795548, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9407934, 32.778432824, -79.9407934, 32.778432824], "geometry": {"coordinates": [-79.9407934, 32.778432824], "type": "Point"}, "id": "51", "properties": {"Object ID": 573795699, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94320128, 32.777364436, -79.94320128, 32.777364436], "geometry": {"coordinates": [-79.94320128, 32.777364436], "type": "Point"}, "id": "52", "properties": {"Object ID": 573800815, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92911574, 32.783303914, -79.92911574, 32.783303914], "geometry": {"coordinates": [-79.92911574, 32.783303914], "type": "Point"}, "id": "53", "properties": {"Object ID": 573827798, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92897309, 32.783345307, -79.92897309, 32.783345307], "geometry": {"coordinates": [-79.92897309, 32.783345307], "type": "Point"}, "id": "54", "properties": {"Object ID": 573827800, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93231375, 32.775717083, -79.93231375, 32.775717083], "geometry": {"coordinates": [-79.93231375, 32.775717083], "type": "Point"}, "id": "55", "properties": {"Object ID": 573831730, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93136773, 32.78120541, -79.93136773, 32.78120541], "geometry": {"coordinates": [-79.93136773, 32.78120541], "type": "Point"}, "id": "56", "properties": {"Object ID": 573831821, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9370822, 32.780106517, -79.9370822, 32.780106517], "geometry": {"coordinates": [-79.9370822, 32.780106517], "type": "Point"}, "id": "57", "properties": {"Object ID": 573850799, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94073347, 32.773739974, -79.94073347, 32.773739974], "geometry": {"coordinates": [-79.94073347, 32.773739974], "type": "Point"}, "id": "58", "properties": {"Object ID": 573860243, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93066806, 32.772190687, -79.93066806, 32.772190687], "geometry": {"coordinates": [-79.93066806, 32.772190687], "type": "Point"}, "id": "59", "properties": {"Object ID": 574268207, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93104665, 32.771945208, -79.93104665, 32.771945208], "geometry": {"coordinates": [-79.93104665, 32.771945208], "type": "Point"}, "id": "60", "properties": {"Object ID": 574268219, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93307183, 32.770319309, -79.93307183, 32.770319309], "geometry": {"coordinates": [-79.93307183, 32.770319309], "type": "Point"}, "id": "61", "properties": {"Object ID": 574268595, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93287143, 32.770350664, -79.93287143, 32.770350664], "geometry": {"coordinates": [-79.93287143, 32.770350664], "type": "Point"}, "id": "62", "properties": {"Object ID": 574268597, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93405413, 32.771895369, -79.93405413, 32.771895369], "geometry": {"coordinates": [-79.93405413, 32.771895369], "type": "Point"}, "id": "63", "properties": {"Object ID": 574268706, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93643612, 32.771395477, -79.93643612, 32.771395477], "geometry": {"coordinates": [-79.93643612, 32.771395477], "type": "Point"}, "id": "64", "properties": {"Object ID": 574268907, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93722348, 32.776803473, -79.93722348, 32.776803473], "geometry": {"coordinates": [-79.93722348, 32.776803473], "type": "Point"}, "id": "65", "properties": {"Object ID": 574268926, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93826701, 32.773914061, -79.93826701, 32.773914061], "geometry": {"coordinates": [-79.93826701, 32.773914061], "type": "Point"}, "id": "66", "properties": {"Object ID": 574269135, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9371539, 32.775141232, -79.9371539, 32.775141232], "geometry": {"coordinates": [-79.9371539, 32.775141232], "type": "Point"}, "id": "67", "properties": {"Object ID": 574269195, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9376746, 32.779882371, -79.9376746, 32.779882371], "geometry": {"coordinates": [-79.9376746, 32.779882371], "type": "Point"}, "id": "68", "properties": {"Object ID": 574294815, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94051647, 32.778824337, -79.94051647, 32.778824337], "geometry": {"coordinates": [-79.94051647, 32.778824337], "type": "Point"}, "id": "69", "properties": {"Object ID": 574295941, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94069038, 32.772157079, -79.94069038, 32.772157079], "geometry": {"coordinates": [-79.94069038, 32.772157079], "type": "Point"}, "id": "70", "properties": {"Object ID": 574296073, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93008132, 32.775745364, -79.93008132, 32.775745364], "geometry": {"coordinates": [-79.93008132, 32.775745364], "type": "Point"}, "id": "71", "properties": {"Object ID": 574346751, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93276684, 32.781806628, -79.93276684, 32.781806628], "geometry": {"coordinates": [-79.93276684, 32.781806628], "type": "Point"}, "id": "72", "properties": {"Object ID": 574371565, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93258546, 32.781970217, -79.93258546, 32.781970217], "geometry": {"coordinates": [-79.93258546, 32.781970217], "type": "Point"}, "id": "73", "properties": {"Object ID": 574371581, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93201544, 32.781770845, -79.93201544, 32.781770845], "geometry": {"coordinates": [-79.93201544, 32.781770845], "type": "Point"}, "id": "74", "properties": {"Object ID": 574371591, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93575382, 32.778675453, -79.93575382, 32.778675453], "geometry": {"coordinates": [-79.93575382, 32.778675453], "type": "Point"}, "id": "75", "properties": {"Object ID": 574371783, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93667006, 32.773601944, -79.93667006, 32.773601944], "geometry": {"coordinates": [-79.93667006, 32.773601944], "type": "Point"}, "id": "76", "properties": {"Object ID": 574371920, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938979, 32.776111957, -79.92938979, 32.776111957], "geometry": {"coordinates": [-79.92938979, 32.776111957], "type": "Point"}, "id": "77", "properties": {"Object ID": 574372557, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93565177, 32.776908084, -79.93565177, 32.776908084], "geometry": {"coordinates": [-79.93565177, 32.776908084], "type": "Point"}, "id": "78", "properties": {"Object ID": 574372970, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93591088, 32.777347278, -79.93591088, 32.777347278], "geometry": {"coordinates": [-79.93591088, 32.777347278], "type": "Point"}, "id": "79", "properties": {"Object ID": 574372985, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93338057, 32.776663, -79.93338057, 32.776663], "geometry": {"coordinates": [-79.93338057, 32.776663], "type": "Point"}, "id": "80", "properties": {"Object ID": 574409645, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93305761, 32.776982082, -79.93305761, 32.776982082], "geometry": {"coordinates": [-79.93305761, 32.776982082], "type": "Point"}, "id": "81", "properties": {"Object ID": 574409651, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93775815, 32.770940705, -79.93775815, 32.770940705], "geometry": {"coordinates": [-79.93775815, 32.770940705], "type": "Point"}, "id": "82", "properties": {"Object ID": 574409955, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93765334, 32.771058635, -79.93765334, 32.771058635], "geometry": {"coordinates": [-79.93765334, 32.771058635], "type": "Point"}, "id": "83", "properties": {"Object ID": 574409957, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92907633, 32.777112595, -79.92907633, 32.777112595], "geometry": {"coordinates": [-79.92907633, 32.777112595], "type": "Point"}, "id": "84", "properties": {"Object ID": 574421673, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93595137, 32.779986363, -79.93595137, 32.779986363], "geometry": {"coordinates": [-79.93595137, 32.779986363], "type": "Point"}, "id": "85", "properties": {"Object ID": 574421941, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94106447, 32.773697132, -79.94106447, 32.773697132], "geometry": {"coordinates": [-79.94106447, 32.773697132], "type": "Point"}, "id": "86", "properties": {"Object ID": 574431443, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92923676, 32.778549824, -79.92923676, 32.778549824], "geometry": {"coordinates": [-79.92923676, 32.778549824], "type": "Point"}, "id": "87", "properties": {"Object ID": 574446469, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92888433, 32.779250513, -79.92888433, 32.779250513], "geometry": {"coordinates": [-79.92888433, 32.779250513], "type": "Point"}, "id": "88", "properties": {"Object ID": 574446473, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "89", "properties": {"Object ID": 574447808, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92995578, 32.780593928, -79.92995578, 32.780593928], "geometry": {"coordinates": [-79.92995578, 32.780593928], "type": "Point"}, "id": "90", "properties": {"Object ID": 574461015, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "91", "properties": {"Object ID": 574486752, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94238262, 32.777178526, -79.94238262, 32.777178526], "geometry": {"coordinates": [-79.94238262, 32.777178526], "type": "Point"}, "id": "92", "properties": {"Object ID": 574486758, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "93", "properties": {"Object ID": 574486770, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "94", "properties": {"Object ID": 574486776, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93592137, 32.775622979, -79.93592137, 32.775622979], "geometry": {"coordinates": [-79.93592137, 32.775622979], "type": "Point"}, "id": "95", "properties": {"Object ID": 574486861, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542766, 32.774993284, -79.93542766, 32.774993284], "geometry": {"coordinates": [-79.93542766, 32.774993284], "type": "Point"}, "id": "96", "properties": {"Object ID": 574486874, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93355832, 32.771708828, -79.93355832, 32.771708828], "geometry": {"coordinates": [-79.93355832, 32.771708828], "type": "Point"}, "id": "97", "properties": {"Object ID": 574486913, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93337915, 32.770923728, -79.93337915, 32.770923728], "geometry": {"coordinates": [-79.93337915, 32.770923728], "type": "Point"}, "id": "98", "properties": {"Object ID": 574486922, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93337915, 32.770923728, -79.93337915, 32.770923728], "geometry": {"coordinates": [-79.93337915, 32.770923728], "type": "Point"}, "id": "99", "properties": {"Object ID": 574486924, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93799754, 32.777475499, -79.93799754, 32.777475499], "geometry": {"coordinates": [-79.93799754, 32.777475499], "type": "Point"}, "id": "100", "properties": {"Object ID": 574486955, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93784205, 32.777169314, -79.93784205, 32.777169314], "geometry": {"coordinates": [-79.93784205, 32.777169314], "type": "Point"}, "id": "101", "properties": {"Object ID": 574486963, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505269, 32.780658666, -79.93505269, 32.780658666], "geometry": {"coordinates": [-79.93505269, 32.780658666], "type": "Point"}, "id": "102", "properties": {"Object ID": 574486977, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93341863, 32.778558501, -79.93341863, 32.778558501], "geometry": {"coordinates": [-79.93341863, 32.778558501], "type": "Point"}, "id": "103", "properties": {"Object ID": 574487012, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "104", "properties": {"Object ID": 574487065, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93463201, 32.777303647, -79.93463201, 32.777303647], "geometry": {"coordinates": [-79.93463201, 32.777303647], "type": "Point"}, "id": "105", "properties": {"Object ID": 574487081, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93315737, 32.777824742, -79.93315737, 32.777824742], "geometry": {"coordinates": [-79.93315737, 32.777824742], "type": "Point"}, "id": "106", "properties": {"Object ID": 574487097, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92893496, 32.776146937, -79.92893496, 32.776146937], "geometry": {"coordinates": [-79.92893496, 32.776146937], "type": "Point"}, "id": "107", "properties": {"Object ID": 574488769, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92831027, 32.773372134, -79.92831027, 32.773372134], "geometry": {"coordinates": [-79.92831027, 32.773372134], "type": "Point"}, "id": "108", "properties": {"Object ID": 573779329, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92817594, 32.773609057, -79.92817594, 32.773609057], "geometry": {"coordinates": [-79.92817594, 32.773609057], "type": "Point"}, "id": "109", "properties": {"Object ID": 573779341, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92750038, 32.774233574, -79.92750038, 32.774233574], "geometry": {"coordinates": [-79.92750038, 32.774233574], "type": "Point"}, "id": "110", "properties": {"Object ID": 573779365, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92875669, 32.774286101, -79.92875669, 32.774286101], "geometry": {"coordinates": [-79.92875669, 32.774286101], "type": "Point"}, "id": "111", "properties": {"Object ID": 573779367, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92871575, 32.774521312, -79.92871575, 32.774521312], "geometry": {"coordinates": [-79.92871575, 32.774521312], "type": "Point"}, "id": "112", "properties": {"Object ID": 573779381, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92745236, 32.774767971, -79.92745236, 32.774767971], "geometry": {"coordinates": [-79.92745236, 32.774767971], "type": "Point"}, "id": "113", "properties": {"Object ID": 573779398, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92750067, 32.774821471, -79.92750067, 32.774821471], "geometry": {"coordinates": [-79.92750067, 32.774821471], "type": "Point"}, "id": "114", "properties": {"Object ID": 573779402, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92841286, 32.774869589, -79.92841286, 32.774869589], "geometry": {"coordinates": [-79.92841286, 32.774869589], "type": "Point"}, "id": "115", "properties": {"Object ID": 573779407, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92799861, 32.778946379, -79.92799861, 32.778946379], "geometry": {"coordinates": [-79.92799861, 32.778946379], "type": "Point"}, "id": "116", "properties": {"Object ID": 573779433, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9280224, 32.77925801, -79.9280224, 32.77925801], "geometry": {"coordinates": [-79.9280224, 32.77925801], "type": "Point"}, "id": "117", "properties": {"Object ID": 573779441, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92845103, 32.779234726, -79.92845103, 32.779234726], "geometry": {"coordinates": [-79.92845103, 32.779234726], "type": "Point"}, "id": "118", "properties": {"Object ID": 573782397, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92988988, 32.7731489, -79.92988988, 32.7731489], "geometry": {"coordinates": [-79.92988988, 32.7731489], "type": "Point"}, "id": "119", "properties": {"Object ID": 573782598, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92854191, 32.77226441, -79.92854191, 32.77226441], "geometry": {"coordinates": [-79.92854191, 32.77226441], "type": "Point"}, "id": "120", "properties": {"Object ID": 573782409, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92935025, 32.772166019, -79.92935025, 32.772166019], "geometry": {"coordinates": [-79.92935025, 32.772166019], "type": "Point"}, "id": "121", "properties": {"Object ID": 573782411, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92797887, 32.772354604, -79.92797887, 32.772354604], "geometry": {"coordinates": [-79.92797887, 32.772354604], "type": "Point"}, "id": "122", "properties": {"Object ID": 573782427, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92862976, 32.781951428, -79.92862976, 32.781951428], "geometry": {"coordinates": [-79.92862976, 32.781951428], "type": "Point"}, "id": "123", "properties": {"Object ID": 573782462, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92897026, 32.782111377, -79.92897026, 32.782111377], "geometry": {"coordinates": [-79.92897026, 32.782111377], "type": "Point"}, "id": "124", "properties": {"Object ID": 573782470, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92797978, 32.782231327, -79.92797978, 32.782231327], "geometry": {"coordinates": [-79.92797978, 32.782231327], "type": "Point"}, "id": "125", "properties": {"Object ID": 573782478, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92866159, 32.777809893, -79.92866159, 32.777809893], "geometry": {"coordinates": [-79.92866159, 32.777809893], "type": "Point"}, "id": "126", "properties": {"Object ID": 573782480, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92883904, 32.778133922, -79.92883904, 32.778133922], "geometry": {"coordinates": [-79.92883904, 32.778133922], "type": "Point"}, "id": "127", "properties": {"Object ID": 573782497, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92820141, 32.77829234, -79.92820141, 32.77829234], "geometry": {"coordinates": [-79.92820141, 32.77829234], "type": "Point"}, "id": "128", "properties": {"Object ID": 573782510, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92882508, 32.775158799, -79.92882508, 32.775158799], "geometry": {"coordinates": [-79.92882508, 32.775158799], "type": "Point"}, "id": "129", "properties": {"Object ID": 573782514, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92840181, 32.775139393, -79.92840181, 32.775139393], "geometry": {"coordinates": [-79.92840181, 32.775139393], "type": "Point"}, "id": "130", "properties": {"Object ID": 573782524, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92838664, 32.775587207, -79.92838664, 32.775587207], "geometry": {"coordinates": [-79.92838664, 32.775587207], "type": "Point"}, "id": "131", "properties": {"Object ID": 573782536, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9285131, 32.775788861, -79.9285131, 32.775788861], "geometry": {"coordinates": [-79.9285131, 32.775788861], "type": "Point"}, "id": "132", "properties": {"Object ID": 573782544, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92957264, 32.772145758, -79.92957264, 32.772145758], "geometry": {"coordinates": [-79.92957264, 32.772145758], "type": "Point"}, "id": "133", "properties": {"Object ID": 573782558, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92964998, 32.772328339, -79.92964998, 32.772328339], "geometry": {"coordinates": [-79.92964998, 32.772328339], "type": "Point"}, "id": "134", "properties": {"Object ID": 573782566, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92960379, 32.772994753, -79.92960379, 32.772994753], "geometry": {"coordinates": [-79.92960379, 32.772994753], "type": "Point"}, "id": "135", "properties": {"Object ID": 573782588, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92951177, 32.773126709, -79.92951177, 32.773126709], "geometry": {"coordinates": [-79.92951177, 32.773126709], "type": "Point"}, "id": "136", "properties": {"Object ID": 573782592, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93012658, 32.774387509, -79.93012658, 32.774387509], "geometry": {"coordinates": [-79.93012658, 32.774387509], "type": "Point"}, "id": "137", "properties": {"Object ID": 573783166, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92939164, 32.774427484, -79.92939164, 32.774427484], "geometry": {"coordinates": [-79.92939164, 32.774427484], "type": "Point"}, "id": "138", "properties": {"Object ID": 573783171, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92998159, 32.774419791, -79.92998159, 32.774419791], "geometry": {"coordinates": [-79.92998159, 32.774419791], "type": "Point"}, "id": "139", "properties": {"Object ID": 573783173, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93062888, 32.774571123, -79.93062888, 32.774571123], "geometry": {"coordinates": [-79.93062888, 32.774571123], "type": "Point"}, "id": "140", "properties": {"Object ID": 573783183, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93061493, 32.778660238, -79.93061493, 32.778660238], "geometry": {"coordinates": [-79.93061493, 32.778660238], "type": "Point"}, "id": "141", "properties": {"Object ID": 573783299, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93008018, 32.779441212, -79.93008018, 32.779441212], "geometry": {"coordinates": [-79.93008018, 32.779441212], "type": "Point"}, "id": "142", "properties": {"Object ID": 573783315, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93027735, 32.779357218, -79.93027735, 32.779357218], "geometry": {"coordinates": [-79.93027735, 32.779357218], "type": "Point"}, "id": "143", "properties": {"Object ID": 573783323, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93097044, 32.777869364, -79.93097044, 32.777869364], "geometry": {"coordinates": [-79.93097044, 32.777869364], "type": "Point"}, "id": "144", "properties": {"Object ID": 573783345, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92964276, 32.771129193, -79.92964276, 32.771129193], "geometry": {"coordinates": [-79.92964276, 32.771129193], "type": "Point"}, "id": "145", "properties": {"Object ID": 573783429, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93011819, 32.771237151, -79.93011819, 32.771237151], "geometry": {"coordinates": [-79.93011819, 32.771237151], "type": "Point"}, "id": "146", "properties": {"Object ID": 573783431, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93185223, 32.776545415, -79.93185223, 32.776545415], "geometry": {"coordinates": [-79.93185223, 32.776545415], "type": "Point"}, "id": "147", "properties": {"Object ID": 573785441, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93212031, 32.773068617, -79.93212031, 32.773068617], "geometry": {"coordinates": [-79.93212031, 32.773068617], "type": "Point"}, "id": "148", "properties": {"Object ID": 573785643, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93091969, 32.773225942, -79.93091969, 32.773225942], "geometry": {"coordinates": [-79.93091969, 32.773225942], "type": "Point"}, "id": "149", "properties": {"Object ID": 573785657, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9322069, 32.773305104, -79.9322069, 32.773305104], "geometry": {"coordinates": [-79.9322069, 32.773305104], "type": "Point"}, "id": "150", "properties": {"Object ID": 573785659, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9328413, 32.774564598, -79.9328413, 32.774564598], "geometry": {"coordinates": [-79.9328413, 32.774564598], "type": "Point"}, "id": "151", "properties": {"Object ID": 573785810, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93265399, 32.77477142, -79.93265399, 32.77477142], "geometry": {"coordinates": [-79.93265399, 32.77477142], "type": "Point"}, "id": "152", "properties": {"Object ID": 573785812, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9329071, 32.775881966, -79.9329071, 32.775881966], "geometry": {"coordinates": [-79.9329071, 32.775881966], "type": "Point"}, "id": "153", "properties": {"Object ID": 573785849, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93315097, 32.776053979, -79.93315097, 32.776053979], "geometry": {"coordinates": [-79.93315097, 32.776053979], "type": "Point"}, "id": "154", "properties": {"Object ID": 573785853, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93289001, 32.776126537, -79.93289001, 32.776126537], "geometry": {"coordinates": [-79.93289001, 32.776126537], "type": "Point"}, "id": "155", "properties": {"Object ID": 573785857, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93317714, 32.77173931, -79.93317714, 32.77173931], "geometry": {"coordinates": [-79.93317714, 32.77173931], "type": "Point"}, "id": "156", "properties": {"Object ID": 573785887, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93261637, 32.771773692, -79.93261637, 32.771773692], "geometry": {"coordinates": [-79.93261637, 32.771773692], "type": "Point"}, "id": "157", "properties": {"Object ID": 573785889, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93292102, 32.771766614, -79.93292102, 32.771766614], "geometry": {"coordinates": [-79.93292102, 32.771766614], "type": "Point"}, "id": "158", "properties": {"Object ID": 573785891, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93353142, 32.77226628, -79.93353142, 32.77226628], "geometry": {"coordinates": [-79.93353142, 32.77226628], "type": "Point"}, "id": "159", "properties": {"Object ID": 573785901, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93371244, 32.772487911, -79.93371244, 32.772487911], "geometry": {"coordinates": [-79.93371244, 32.772487911], "type": "Point"}, "id": "160", "properties": {"Object ID": 573785905, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93359592, 32.773408579, -79.93359592, 32.773408579], "geometry": {"coordinates": [-79.93359592, 32.773408579], "type": "Point"}, "id": "161", "properties": {"Object ID": 573785933, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93379667, 32.773628558, -79.93379667, 32.773628558], "geometry": {"coordinates": [-79.93379667, 32.773628558], "type": "Point"}, "id": "162", "properties": {"Object ID": 573785941, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93260306, 32.773944765, -79.93260306, 32.773944765], "geometry": {"coordinates": [-79.93260306, 32.773944765], "type": "Point"}, "id": "163", "properties": {"Object ID": 573785954, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93368834, 32.774043825, -79.93368834, 32.774043825], "geometry": {"coordinates": [-79.93368834, 32.774043825], "type": "Point"}, "id": "164", "properties": {"Object ID": 573785964, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93335075, 32.774171168, -79.93335075, 32.774171168], "geometry": {"coordinates": [-79.93335075, 32.774171168], "type": "Point"}, "id": "165", "properties": {"Object ID": 573785966, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9258072, 32.776117446, -79.9258072, 32.776117446], "geometry": {"coordinates": [-79.9258072, 32.776117446], "type": "Point"}, "id": "166", "properties": {"Object ID": 573818739, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92675255, 32.776555258, -79.92675255, 32.776555258], "geometry": {"coordinates": [-79.92675255, 32.776555258], "type": "Point"}, "id": "167", "properties": {"Object ID": 573818746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772824, 32.777642211, -79.92772824, 32.777642211], "geometry": {"coordinates": [-79.92772824, 32.777642211], "type": "Point"}, "id": "168", "properties": {"Object ID": 573827132, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92730578, 32.777707213, -79.92730578, 32.777707213], "geometry": {"coordinates": [-79.92730578, 32.777707213], "type": "Point"}, "id": "169", "properties": {"Object ID": 573827144, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92787224, 32.781358849, -79.92787224, 32.781358849], "geometry": {"coordinates": [-79.92787224, 32.781358849], "type": "Point"}, "id": "170", "properties": {"Object ID": 573827360, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92972682, 32.776806657, -79.92972682, 32.776806657], "geometry": {"coordinates": [-79.92972682, 32.776806657], "type": "Point"}, "id": "171", "properties": {"Object ID": 573827748, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92932179, 32.783238162, -79.92932179, 32.783238162], "geometry": {"coordinates": [-79.92932179, 32.783238162], "type": "Point"}, "id": "172", "properties": {"Object ID": 573827796, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93040738, 32.781275186, -79.93040738, 32.781275186], "geometry": {"coordinates": [-79.93040738, 32.781275186], "type": "Point"}, "id": "173", "properties": {"Object ID": 573831834, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9307575, 32.7811525, -79.9307575, 32.7811525], "geometry": {"coordinates": [-79.9307575, 32.7811525], "type": "Point"}, "id": "174", "properties": {"Object ID": 573831838, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93238462, 32.774996083, -79.93238462, 32.774996083], "geometry": {"coordinates": [-79.93238462, 32.774996083], "type": "Point"}, "id": "175", "properties": {"Object ID": 573831693, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93178479, 32.778780081, -79.93178479, 32.778780081], "geometry": {"coordinates": [-79.93178479, 32.778780081], "type": "Point"}, "id": "176", "properties": {"Object ID": 573831764, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93143087, 32.778125781, -79.93143087, 32.778125781], "geometry": {"coordinates": [-79.93143087, 32.778125781], "type": "Point"}, "id": "177", "properties": {"Object ID": 573831776, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93271625, 32.778164884, -79.93271625, 32.778164884], "geometry": {"coordinates": [-79.93271625, 32.778164884], "type": "Point"}, "id": "178", "properties": {"Object ID": 573831786, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.931735, 32.778508926, -79.931735, 32.778508926], "geometry": {"coordinates": [-79.931735, 32.778508926], "type": "Point"}, "id": "179", "properties": {"Object ID": 573831792, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93261388, 32.779041775, -79.93261388, 32.779041775], "geometry": {"coordinates": [-79.93261388, 32.779041775], "type": "Point"}, "id": "180", "properties": {"Object ID": 573831799, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93136773, 32.78120541, -79.93136773, 32.78120541], "geometry": {"coordinates": [-79.93136773, 32.78120541], "type": "Point"}, "id": "181", "properties": {"Object ID": 573831817, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9321254, 32.77072847, -79.9321254, 32.77072847], "geometry": {"coordinates": [-79.9321254, 32.77072847], "type": "Point"}, "id": "182", "properties": {"Object ID": 573841002, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9322566, 32.770746347, -79.9322566, 32.770746347], "geometry": {"coordinates": [-79.9322566, 32.770746347], "type": "Point"}, "id": "183", "properties": {"Object ID": 573841003, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93286486, 32.770822724, -79.93286486, 32.770822724], "geometry": {"coordinates": [-79.93286486, 32.770822724], "type": "Point"}, "id": "184", "properties": {"Object ID": 573841007, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93228322, 32.771096832, -79.93228322, 32.771096832], "geometry": {"coordinates": [-79.93228322, 32.771096832], "type": "Point"}, "id": "185", "properties": {"Object ID": 573841015, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93356223, 32.771210236, -79.93356223, 32.771210236], "geometry": {"coordinates": [-79.93356223, 32.771210236], "type": "Point"}, "id": "186", "properties": {"Object ID": 573841018, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92617574, 32.781501592, -79.92617574, 32.781501592], "geometry": {"coordinates": [-79.92617574, 32.781501592], "type": "Point"}, "id": "187", "properties": {"Object ID": 574267592, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92797932, 32.78365938, -79.92797932, 32.78365938], "geometry": {"coordinates": [-79.92797932, 32.78365938], "type": "Point"}, "id": "188", "properties": {"Object ID": 574267610, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92661629, 32.773262881, -79.92661629, 32.773262881], "geometry": {"coordinates": [-79.92661629, 32.773262881], "type": "Point"}, "id": "189", "properties": {"Object ID": 574267656, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92771583, 32.775172679, -79.92771583, 32.775172679], "geometry": {"coordinates": [-79.92771583, 32.775172679], "type": "Point"}, "id": "190", "properties": {"Object ID": 574267731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9276191, 32.775675174, -79.9276191, 32.775675174], "geometry": {"coordinates": [-79.9276191, 32.775675174], "type": "Point"}, "id": "191", "properties": {"Object ID": 574267751, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92813757, 32.775784606, -79.92813757, 32.775784606], "geometry": {"coordinates": [-79.92813757, 32.775784606], "type": "Point"}, "id": "192", "properties": {"Object ID": 574267755, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93074187, 32.771994039, -79.93074187, 32.771994039], "geometry": {"coordinates": [-79.93074187, 32.771994039], "type": "Point"}, "id": "193", "properties": {"Object ID": 574268221, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93217351, 32.769910148, -79.93217351, 32.769910148], "geometry": {"coordinates": [-79.93217351, 32.769910148], "type": "Point"}, "id": "194", "properties": {"Object ID": 574268583, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93190648, 32.774318022, -79.93190648, 32.774318022], "geometry": {"coordinates": [-79.93190648, 32.774318022], "type": "Point"}, "id": "195", "properties": {"Object ID": 574293791, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93157595, 32.774493879, -79.93157595, 32.774493879], "geometry": {"coordinates": [-79.93157595, 32.774493879], "type": "Point"}, "id": "196", "properties": {"Object ID": 574293797, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9311826, 32.77445443, -79.9311826, 32.77445443], "geometry": {"coordinates": [-79.9311826, 32.77445443], "type": "Point"}, "id": "197", "properties": {"Object ID": 574293799, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92600584, 32.77666482, -79.92600584, 32.77666482], "geometry": {"coordinates": [-79.92600584, 32.77666482], "type": "Point"}, "id": "198", "properties": {"Object ID": 574346713, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92957774, 32.775185701, -79.92957774, 32.775185701], "geometry": {"coordinates": [-79.92957774, 32.775185701], "type": "Point"}, "id": "199", "properties": {"Object ID": 574346741, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93020163, 32.775736916, -79.93020163, 32.775736916], "geometry": {"coordinates": [-79.93020163, 32.775736916], "type": "Point"}, "id": "200", "properties": {"Object ID": 574346750, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9295125, 32.774947, -79.9295125, 32.774947], "geometry": {"coordinates": [-79.9295125, 32.774947], "type": "Point"}, "id": "201", "properties": {"Object ID": 574346756, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92739084, 32.779499094, -79.92739084, 32.779499094], "geometry": {"coordinates": [-79.92739084, 32.779499094], "type": "Point"}, "id": "202", "properties": {"Object ID": 574371443, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9276305, 32.779852059, -79.9276305, 32.779852059], "geometry": {"coordinates": [-79.9276305, 32.779852059], "type": "Point"}, "id": "203", "properties": {"Object ID": 574371451, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242442, 32.781970364, -79.93242442, 32.781970364], "geometry": {"coordinates": [-79.93242442, 32.781970364], "type": "Point"}, "id": "204", "properties": {"Object ID": 574371542, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93276684, 32.781806628, -79.93276684, 32.781806628], "geometry": {"coordinates": [-79.93276684, 32.781806628], "type": "Point"}, "id": "205", "properties": {"Object ID": 574371563, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93201544, 32.781770845, -79.93201544, 32.781770845], "geometry": {"coordinates": [-79.93201544, 32.781770845], "type": "Point"}, "id": "206", "properties": {"Object ID": 574371585, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93353543, 32.777907449, -79.93353543, 32.777907449], "geometry": {"coordinates": [-79.93353543, 32.777907449], "type": "Point"}, "id": "207", "properties": {"Object ID": 574371675, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92447946, 32.779202062, -79.92447946, 32.779202062], "geometry": {"coordinates": [-79.92447946, 32.779202062], "type": "Point"}, "id": "208", "properties": {"Object ID": 574372308, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "209", "properties": {"Object ID": 574372397, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9282403, 32.780783377, -79.9282403, 32.780783377], "geometry": {"coordinates": [-79.9282403, 32.780783377], "type": "Point"}, "id": "210", "properties": {"Object ID": 574372412, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92900036, 32.776107722, -79.92900036, 32.776107722], "geometry": {"coordinates": [-79.92900036, 32.776107722], "type": "Point"}, "id": "211", "properties": {"Object ID": 574372445, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92746316, 32.776524315, -79.92746316, 32.776524315], "geometry": {"coordinates": [-79.92746316, 32.776524315], "type": "Point"}, "id": "212", "properties": {"Object ID": 574372463, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9277285, 32.7764545, -79.9277285, 32.7764545], "geometry": {"coordinates": [-79.9277285, 32.7764545], "type": "Point"}, "id": "213", "properties": {"Object ID": 574372464, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92806552, 32.776605013, -79.92806552, 32.776605013], "geometry": {"coordinates": [-79.92806552, 32.776605013], "type": "Point"}, "id": "214", "properties": {"Object ID": 574372467, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938805, 32.776236693, -79.92938805, 32.776236693], "geometry": {"coordinates": [-79.92938805, 32.776236693], "type": "Point"}, "id": "215", "properties": {"Object ID": 574372547, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92979255, 32.776387148, -79.92979255, 32.776387148], "geometry": {"coordinates": [-79.92979255, 32.776387148], "type": "Point"}, "id": "216", "properties": {"Object ID": 574372553, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92937575, 32.776446635, -79.92937575, 32.776446635], "geometry": {"coordinates": [-79.92937575, 32.776446635], "type": "Point"}, "id": "217", "properties": {"Object ID": 574372571, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93107316, 32.770696863, -79.93107316, 32.770696863], "geometry": {"coordinates": [-79.93107316, 32.770696863], "type": "Point"}, "id": "218", "properties": {"Object ID": 574372689, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93055836, 32.770734997, -79.93055836, 32.770734997], "geometry": {"coordinates": [-79.93055836, 32.770734997], "type": "Point"}, "id": "219", "properties": {"Object ID": 574372693, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93086869, 32.77100272, -79.93086869, 32.77100272], "geometry": {"coordinates": [-79.93086869, 32.77100272], "type": "Point"}, "id": "220", "properties": {"Object ID": 574372709, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93166856, 32.771371807, -79.93166856, 32.771371807], "geometry": {"coordinates": [-79.93166856, 32.771371807], "type": "Point"}, "id": "221", "properties": {"Object ID": 574372715, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93065529, 32.771599188, -79.93065529, 32.771599188], "geometry": {"coordinates": [-79.93065529, 32.771599188], "type": "Point"}, "id": "222", "properties": {"Object ID": 574372725, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93317976, 32.776398119, -79.93317976, 32.776398119], "geometry": {"coordinates": [-79.93317976, 32.776398119], "type": "Point"}, "id": "223", "properties": {"Object ID": 574409639, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93286925, 32.776423337, -79.93286925, 32.776423337], "geometry": {"coordinates": [-79.93286925, 32.776423337], "type": "Point"}, "id": "224", "properties": {"Object ID": 574409640, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.933281, 32.7766405, -79.933281, 32.7766405], "geometry": {"coordinates": [-79.933281, 32.7766405], "type": "Point"}, "id": "225", "properties": {"Object ID": 574409897, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92691392, 32.775561673, -79.92691392, 32.775561673], "geometry": {"coordinates": [-79.92691392, 32.775561673], "type": "Point"}, "id": "226", "properties": {"Object ID": 574421622, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92885302, 32.77702994, -79.92885302, 32.77702994], "geometry": {"coordinates": [-79.92885302, 32.77702994], "type": "Point"}, "id": "227", "properties": {"Object ID": 574421663, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92885302, 32.77702994, -79.92885302, 32.77702994], "geometry": {"coordinates": [-79.92885302, 32.77702994], "type": "Point"}, "id": "228", "properties": {"Object ID": 574421667, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92907633, 32.777112595, -79.92907633, 32.777112595], "geometry": {"coordinates": [-79.92907633, 32.777112595], "type": "Point"}, "id": "229", "properties": {"Object ID": 574421671, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92804197, 32.777344437, -79.92804197, 32.777344437], "geometry": {"coordinates": [-79.92804197, 32.777344437], "type": "Point"}, "id": "230", "properties": {"Object ID": 574421692, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92910129, 32.777397915, -79.92910129, 32.777397915], "geometry": {"coordinates": [-79.92910129, 32.777397915], "type": "Point"}, "id": "231", "properties": {"Object ID": 574421693, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9290865, 32.7769105, -79.9290865, 32.7769105], "geometry": {"coordinates": [-79.9290865, 32.7769105], "type": "Point"}, "id": "232", "properties": {"Object ID": 574421716, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92644898, 32.780051895, -79.92644898, 32.780051895], "geometry": {"coordinates": [-79.92644898, 32.780051895], "type": "Point"}, "id": "233", "properties": {"Object ID": 574435938, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92783811, 32.778163155, -79.92783811, 32.778163155], "geometry": {"coordinates": [-79.92783811, 32.778163155], "type": "Point"}, "id": "234", "properties": {"Object ID": 574446483, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92783811, 32.778163155, -79.92783811, 32.778163155], "geometry": {"coordinates": [-79.92783811, 32.778163155], "type": "Point"}, "id": "235", "properties": {"Object ID": 574446484, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93370546, 32.780669368, -79.93370546, 32.780669368], "geometry": {"coordinates": [-79.93370546, 32.780669368], "type": "Point"}, "id": "236", "properties": {"Object ID": 574447814, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93364603, 32.781073771, -79.93364603, 32.781073771], "geometry": {"coordinates": [-79.93364603, 32.781073771], "type": "Point"}, "id": "237", "properties": {"Object ID": 574447830, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93364603, 32.781073771, -79.93364603, 32.781073771], "geometry": {"coordinates": [-79.93364603, 32.781073771], "type": "Point"}, "id": "238", "properties": {"Object ID": 574447832, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93368836, 32.78091163, -79.93368836, 32.78091163], "geometry": {"coordinates": [-79.93368836, 32.78091163], "type": "Point"}, "id": "239", "properties": {"Object ID": 574447840, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.926487, 32.780818198, -79.926487, 32.780818198], "geometry": {"coordinates": [-79.926487, 32.780818198], "type": "Point"}, "id": "240", "properties": {"Object ID": 574451291, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.926487, 32.780818198, -79.926487, 32.780818198], "geometry": {"coordinates": [-79.926487, 32.780818198], "type": "Point"}, "id": "241", "properties": {"Object ID": 574451292, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9265575, 32.7779802, -79.9265575, 32.7779802], "geometry": {"coordinates": [-79.9265575, 32.7779802], "type": "Point"}, "id": "242", "properties": {"Object ID": 574453708, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9265575, 32.7779802, -79.9265575, 32.7779802], "geometry": {"coordinates": [-79.9265575, 32.7779802], "type": "Point"}, "id": "243", "properties": {"Object ID": 574453716, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9265575, 32.7779802, -79.9265575, 32.7779802], "geometry": {"coordinates": [-79.9265575, 32.7779802], "type": "Point"}, "id": "244", "properties": {"Object ID": 574453718, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93069936, 32.78185867, -79.93069936, 32.78185867], "geometry": {"coordinates": [-79.93069936, 32.78185867], "type": "Point"}, "id": "245", "properties": {"Object ID": 574454476, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92675798, 32.779623429, -79.92675798, 32.779623429], "geometry": {"coordinates": [-79.92675798, 32.779623429], "type": "Point"}, "id": "246", "properties": {"Object ID": 574455176, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92675798, 32.779623429, -79.92675798, 32.779623429], "geometry": {"coordinates": [-79.92675798, 32.779623429], "type": "Point"}, "id": "247", "properties": {"Object ID": 574455179, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93204842, 32.782216168, -79.93204842, 32.782216168], "geometry": {"coordinates": [-79.93204842, 32.782216168], "type": "Point"}, "id": "248", "properties": {"Object ID": 574460919, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93185497, 32.781795259, -79.93185497, 32.781795259], "geometry": {"coordinates": [-79.93185497, 32.781795259], "type": "Point"}, "id": "249", "properties": {"Object ID": 574460925, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93355205, 32.781223407, -79.93355205, 32.781223407], "geometry": {"coordinates": [-79.93355205, 32.781223407], "type": "Point"}, "id": "250", "properties": {"Object ID": 574460929, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93319151, 32.778253452, -79.93319151, 32.778253452], "geometry": {"coordinates": [-79.93319151, 32.778253452], "type": "Point"}, "id": "251", "properties": {"Object ID": 574460963, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.928615, 32.780554416, -79.928615, 32.780554416], "geometry": {"coordinates": [-79.928615, 32.780554416], "type": "Point"}, "id": "252", "properties": {"Object ID": 574461017, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93269937, 32.77799692, -79.93269937, 32.77799692], "geometry": {"coordinates": [-79.93269937, 32.77799692], "type": "Point"}, "id": "253", "properties": {"Object ID": 574461045, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9297417, 32.776818232, -79.9297417, 32.776818232], "geometry": {"coordinates": [-79.9297417, 32.776818232], "type": "Point"}, "id": "254", "properties": {"Object ID": 574461063, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92738581, 32.77970087, -79.92738581, 32.77970087], "geometry": {"coordinates": [-79.92738581, 32.77970087], "type": "Point"}, "id": "255", "properties": {"Object ID": 574461286, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673802, 32.779726367, -79.92673802, 32.779726367], "geometry": {"coordinates": [-79.92673802, 32.779726367], "type": "Point"}, "id": "256", "properties": {"Object ID": 574461294, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673802, 32.779726367, -79.92673802, 32.779726367], "geometry": {"coordinates": [-79.92673802, 32.779726367], "type": "Point"}, "id": "257", "properties": {"Object ID": 574461297, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673511, 32.779500111, -79.92673511, 32.779500111], "geometry": {"coordinates": [-79.92673511, 32.779500111], "type": "Point"}, "id": "258", "properties": {"Object ID": 574461298, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92732872, 32.776630152, -79.92732872, 32.776630152], "geometry": {"coordinates": [-79.92732872, 32.776630152], "type": "Point"}, "id": "259", "properties": {"Object ID": 574461315, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93378521, 32.770261381, -79.93378521, 32.770261381], "geometry": {"coordinates": [-79.93378521, 32.770261381], "type": "Point"}, "id": "260", "properties": {"Object ID": 574476700, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "261", "properties": {"Object ID": 574476708, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "262", "properties": {"Object ID": 574476724, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "263", "properties": {"Object ID": 574476730, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "264", "properties": {"Object ID": 574476736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "265", "properties": {"Object ID": 574476741, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "266", "properties": {"Object ID": 574476745, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "267", "properties": {"Object ID": 574476747, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "268", "properties": {"Object ID": 574476751, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "269", "properties": {"Object ID": 574476773, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "270", "properties": {"Object ID": 574476798, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "271", "properties": {"Object ID": 574476802, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9303937, 32.774591616, -79.9303937, 32.774591616], "geometry": {"coordinates": [-79.9303937, 32.774591616], "type": "Point"}, "id": "272", "properties": {"Object ID": 574486902, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93189785, 32.773192121, -79.93189785, 32.773192121], "geometry": {"coordinates": [-79.93189785, 32.773192121], "type": "Point"}, "id": "273", "properties": {"Object ID": 574486910, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93327038, 32.771857448, -79.93327038, 32.771857448], "geometry": {"coordinates": [-79.93327038, 32.771857448], "type": "Point"}, "id": "274", "properties": {"Object ID": 574486914, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93341863, 32.778558501, -79.93341863, 32.778558501], "geometry": {"coordinates": [-79.93341863, 32.778558501], "type": "Point"}, "id": "275", "properties": {"Object ID": 574487010, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "276", "properties": {"Object ID": 574487020, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "277", "properties": {"Object ID": 574487022, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "278", "properties": {"Object ID": 574487026, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93099298, 32.777963075, -79.93099298, 32.777963075], "geometry": {"coordinates": [-79.93099298, 32.777963075], "type": "Point"}, "id": "279", "properties": {"Object ID": 574487100, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93010382, 32.782773607, -79.93010382, 32.782773607], "geometry": {"coordinates": [-79.93010382, 32.782773607], "type": "Point"}, "id": "280", "properties": {"Object ID": 574488422, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "281", "properties": {"Object ID": 574488428, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "282", "properties": {"Object ID": 574488655, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "283", "properties": {"Object ID": 574488668, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92873624, 32.7785858, -79.92873624, 32.7785858], "geometry": {"coordinates": [-79.92873624, 32.7785858], "type": "Point"}, "id": "284", "properties": {"Object ID": 574488688, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92879983, 32.778170178, -79.92879983, 32.778170178], "geometry": {"coordinates": [-79.92879983, 32.778170178], "type": "Point"}, "id": "285", "properties": {"Object ID": 574488691, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92792729, 32.779113403, -79.92792729, 32.779113403], "geometry": {"coordinates": [-79.92792729, 32.779113403], "type": "Point"}, "id": "286", "properties": {"Object ID": 574488703, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92820274, 32.778662139, -79.92820274, 32.778662139], "geometry": {"coordinates": [-79.92820274, 32.778662139], "type": "Point"}, "id": "287", "properties": {"Object ID": 574488706, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92679108, 32.778909003, -79.92679108, 32.778909003], "geometry": {"coordinates": [-79.92679108, 32.778909003], "type": "Point"}, "id": "288", "properties": {"Object ID": 574488721, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "289", "properties": {"Object ID": 574488728, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "290", "properties": {"Object ID": 574488730, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "291", "properties": {"Object ID": 574488731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "292", "properties": {"Object ID": 574488755, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "293", "properties": {"Object ID": 574488758, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "294", "properties": {"Object ID": 574488760, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92839366, 32.776254187, -79.92839366, 32.776254187], "geometry": {"coordinates": [-79.92839366, 32.776254187], "type": "Point"}, "id": "295", "properties": {"Object ID": 574488770, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92657086, 32.77801074, -79.92657086, 32.77801074], "geometry": {"coordinates": [-79.92657086, 32.77801074], "type": "Point"}, "id": "296", "properties": {"Object ID": 574488776, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92621897, 32.777241248, -79.92621897, 32.777241248], "geometry": {"coordinates": [-79.92621897, 32.777241248], "type": "Point"}, "id": "297", "properties": {"Object ID": 574488779, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "298", "properties": {"Object ID": 574488782, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "299", "properties": {"Object ID": 574488785, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "300", "properties": {"Object ID": 574488787, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "301", "properties": {"Object ID": 574488788, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92564707, 32.776897949, -79.92564707, 32.776897949], "geometry": {"coordinates": [-79.92564707, 32.776897949], "type": "Point"}, "id": "302", "properties": {"Object ID": 574488789, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9278244, 32.776520526, -79.9278244, 32.776520526], "geometry": {"coordinates": [-79.9278244, 32.776520526], "type": "Point"}, "id": "303", "properties": {"Object ID": 574488790, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "304", "properties": {"Object ID": 574488797, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92747743, 32.775444399, -79.92747743, 32.775444399], "geometry": {"coordinates": [-79.92747743, 32.775444399], "type": "Point"}, "id": "305", "properties": {"Object ID": 574488843, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92787671, 32.774030712, -79.92787671, 32.774030712], "geometry": {"coordinates": [-79.92787671, 32.774030712], "type": "Point"}, "id": "306", "properties": {"Object ID": 574488864, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92983764, 32.771915503, -79.92983764, 32.771915503], "geometry": {"coordinates": [-79.92983764, 32.771915503], "type": "Point"}, "id": "307", "properties": {"Object ID": 574488871, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94535006, 32.776922657, -79.94535006, 32.776922657], "geometry": {"coordinates": [-79.94535006, 32.776922657], "type": "Point"}, "id": "308", "properties": {"Object ID": 574486731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94576754, 32.776757269, -79.94576754, 32.776757269], "geometry": {"coordinates": [-79.94576754, 32.776757269], "type": "Point"}, "id": "309", "properties": {"Object ID": 574486733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93448657, 32.772126133, -79.93448657, 32.772126133], "geometry": {"coordinates": [-79.93448657, 32.772126133], "type": "Point"}, "id": "310", "properties": {"Object ID": 573789007, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93734922, 32.773559648, -79.93734922, 32.773559648], "geometry": {"coordinates": [-79.93734922, 32.773559648], "type": "Point"}, "id": "311", "properties": {"Object ID": 573789244, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93538896, 32.772554222, -79.93538896, 32.772554222], "geometry": {"coordinates": [-79.93538896, 32.772554222], "type": "Point"}, "id": "312", "properties": {"Object ID": 573789015, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93416321, 32.772727135, -79.93416321, 32.772727135], "geometry": {"coordinates": [-79.93416321, 32.772727135], "type": "Point"}, "id": "313", "properties": {"Object ID": 573789018, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9350509, 32.772964392, -79.9350509, 32.772964392], "geometry": {"coordinates": [-79.9350509, 32.772964392], "type": "Point"}, "id": "314", "properties": {"Object ID": 573789020, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93457154, 32.774125594, -79.93457154, 32.774125594], "geometry": {"coordinates": [-79.93457154, 32.774125594], "type": "Point"}, "id": "315", "properties": {"Object ID": 573789038, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93598329, 32.779587071, -79.93598329, 32.779587071], "geometry": {"coordinates": [-79.93598329, 32.779587071], "type": "Point"}, "id": "316", "properties": {"Object ID": 573789125, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93556626, 32.779617714, -79.93556626, 32.779617714], "geometry": {"coordinates": [-79.93556626, 32.779617714], "type": "Point"}, "id": "317", "properties": {"Object ID": 573789128, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93545543, 32.779653107, -79.93545543, 32.779653107], "geometry": {"coordinates": [-79.93545543, 32.779653107], "type": "Point"}, "id": "318", "properties": {"Object ID": 573789129, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93460795, 32.77444064, -79.93460795, 32.77444064], "geometry": {"coordinates": [-79.93460795, 32.77444064], "type": "Point"}, "id": "319", "properties": {"Object ID": 573789137, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93502228, 32.775581217, -79.93502228, 32.775581217], "geometry": {"coordinates": [-79.93502228, 32.775581217], "type": "Point"}, "id": "320", "properties": {"Object ID": 573789151, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93473706, 32.775669235, -79.93473706, 32.775669235], "geometry": {"coordinates": [-79.93473706, 32.775669235], "type": "Point"}, "id": "321", "properties": {"Object ID": 573789153, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93565778, 32.775855588, -79.93565778, 32.775855588], "geometry": {"coordinates": [-79.93565778, 32.775855588], "type": "Point"}, "id": "322", "properties": {"Object ID": 573789157, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93519799, 32.775873131, -79.93519799, 32.775873131], "geometry": {"coordinates": [-79.93519799, 32.775873131], "type": "Point"}, "id": "323", "properties": {"Object ID": 573789158, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93490138, 32.775887122, -79.93490138, 32.775887122], "geometry": {"coordinates": [-79.93490138, 32.775887122], "type": "Point"}, "id": "324", "properties": {"Object ID": 573789159, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93693849, 32.777955157, -79.93693849, 32.777955157], "geometry": {"coordinates": [-79.93693849, 32.777955157], "type": "Point"}, "id": "325", "properties": {"Object ID": 573789189, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9362999, 32.778362141, -79.9362999, 32.778362141], "geometry": {"coordinates": [-79.9362999, 32.778362141], "type": "Point"}, "id": "326", "properties": {"Object ID": 573789194, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93628486, 32.778578677, -79.93628486, 32.778578677], "geometry": {"coordinates": [-79.93628486, 32.778578677], "type": "Point"}, "id": "327", "properties": {"Object ID": 573789197, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93714449, 32.772463145, -79.93714449, 32.772463145], "geometry": {"coordinates": [-79.93714449, 32.772463145], "type": "Point"}, "id": "328", "properties": {"Object ID": 573789217, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93718391, 32.772062331, -79.93718391, 32.772062331], "geometry": {"coordinates": [-79.93718391, 32.772062331], "type": "Point"}, "id": "329", "properties": {"Object ID": 573789219, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93726913, 32.773261342, -79.93726913, 32.773261342], "geometry": {"coordinates": [-79.93726913, 32.773261342], "type": "Point"}, "id": "330", "properties": {"Object ID": 573789238, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93916423, 32.774556754, -79.93916423, 32.774556754], "geometry": {"coordinates": [-79.93916423, 32.774556754], "type": "Point"}, "id": "331", "properties": {"Object ID": 573789333, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93766094, 32.775523076, -79.93766094, 32.775523076], "geometry": {"coordinates": [-79.93766094, 32.775523076], "type": "Point"}, "id": "332", "properties": {"Object ID": 573789354, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9381655, 32.775585135, -79.9381655, 32.775585135], "geometry": {"coordinates": [-79.9381655, 32.775585135], "type": "Point"}, "id": "333", "properties": {"Object ID": 573789359, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93803255, 32.777139819, -79.93803255, 32.777139819], "geometry": {"coordinates": [-79.93803255, 32.777139819], "type": "Point"}, "id": "334", "properties": {"Object ID": 573789431, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93835293, 32.777096821, -79.93835293, 32.777096821], "geometry": {"coordinates": [-79.93835293, 32.777096821], "type": "Point"}, "id": "335", "properties": {"Object ID": 573789457, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93771746, 32.777206323, -79.93771746, 32.777206323], "geometry": {"coordinates": [-79.93771746, 32.777206323], "type": "Point"}, "id": "336", "properties": {"Object ID": 573789460, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93827119, 32.773608704, -79.93827119, 32.773608704], "geometry": {"coordinates": [-79.93827119, 32.773608704], "type": "Point"}, "id": "337", "properties": {"Object ID": 573789725, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9388745, 32.778951101, -79.9388745, 32.778951101], "geometry": {"coordinates": [-79.9388745, 32.778951101], "type": "Point"}, "id": "338", "properties": {"Object ID": 573794204, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93856829, 32.779083084, -79.93856829, 32.779083084], "geometry": {"coordinates": [-79.93856829, 32.779083084], "type": "Point"}, "id": "339", "properties": {"Object ID": 573794210, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93856829, 32.779083084, -79.93856829, 32.779083084], "geometry": {"coordinates": [-79.93856829, 32.779083084], "type": "Point"}, "id": "340", "properties": {"Object ID": 573794212, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93830633, 32.779336481, -79.93830633, 32.779336481], "geometry": {"coordinates": [-79.93830633, 32.779336481], "type": "Point"}, "id": "341", "properties": {"Object ID": 573794214, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93888854, 32.77700303, -79.93888854, 32.77700303], "geometry": {"coordinates": [-79.93888854, 32.77700303], "type": "Point"}, "id": "342", "properties": {"Object ID": 573794265, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93913879, 32.776592723, -79.93913879, 32.776592723], "geometry": {"coordinates": [-79.93913879, 32.776592723], "type": "Point"}, "id": "343", "properties": {"Object ID": 573794273, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93870903, 32.776619225, -79.93870903, 32.776619225], "geometry": {"coordinates": [-79.93870903, 32.776619225], "type": "Point"}, "id": "344", "properties": {"Object ID": 573794277, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93879261, 32.776621581, -79.93879261, 32.776621581], "geometry": {"coordinates": [-79.93879261, 32.776621581], "type": "Point"}, "id": "345", "properties": {"Object ID": 573794279, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93967326, 32.776949978, -79.93967326, 32.776949978], "geometry": {"coordinates": [-79.93967326, 32.776949978], "type": "Point"}, "id": "346", "properties": {"Object ID": 573794300, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93939249, 32.777006969, -79.93939249, 32.777006969], "geometry": {"coordinates": [-79.93939249, 32.777006969], "type": "Point"}, "id": "347", "properties": {"Object ID": 573794306, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93957266, 32.773937837, -79.93957266, 32.773937837], "geometry": {"coordinates": [-79.93957266, 32.773937837], "type": "Point"}, "id": "348", "properties": {"Object ID": 573795542, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94017754, 32.774703917, -79.94017754, 32.774703917], "geometry": {"coordinates": [-79.94017754, 32.774703917], "type": "Point"}, "id": "349", "properties": {"Object ID": 573795563, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94018872, 32.774815879, -79.94018872, 32.774815879], "geometry": {"coordinates": [-79.94018872, 32.774815879], "type": "Point"}, "id": "350", "properties": {"Object ID": 573795567, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94035902, 32.778525286, -79.94035902, 32.778525286], "geometry": {"coordinates": [-79.94035902, 32.778525286], "type": "Point"}, "id": "351", "properties": {"Object ID": 573795703, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93983414, 32.778812195, -79.93983414, 32.778812195], "geometry": {"coordinates": [-79.93983414, 32.778812195], "type": "Point"}, "id": "352", "properties": {"Object ID": 573795714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94208958, 32.772577279, -79.94208958, 32.772577279], "geometry": {"coordinates": [-79.94208958, 32.772577279], "type": "Point"}, "id": "353", "properties": {"Object ID": 573800718, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94307847, 32.777749378, -79.94307847, 32.777749378], "geometry": {"coordinates": [-79.94307847, 32.777749378], "type": "Point"}, "id": "354", "properties": {"Object ID": 573806314, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9429624, 32.777888243, -79.9429624, 32.777888243], "geometry": {"coordinates": [-79.9429624, 32.777888243], "type": "Point"}, "id": "355", "properties": {"Object ID": 573806319, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93592489, 32.771966616, -79.93592489, 32.771966616], "geometry": {"coordinates": [-79.93592489, 32.771966616], "type": "Point"}, "id": "356", "properties": {"Object ID": 573850063, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93578585, 32.772650967, -79.93578585, 32.772650967], "geometry": {"coordinates": [-79.93578585, 32.772650967], "type": "Point"}, "id": "357", "properties": {"Object ID": 573850082, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93585322, 32.772777781, -79.93585322, 32.772777781], "geometry": {"coordinates": [-79.93585322, 32.772777781], "type": "Point"}, "id": "358", "properties": {"Object ID": 573850084, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9359242, 32.773795148, -79.9359242, 32.773795148], "geometry": {"coordinates": [-79.9359242, 32.773795148], "type": "Point"}, "id": "359", "properties": {"Object ID": 573850106, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93759801, 32.780012327, -79.93759801, 32.780012327], "geometry": {"coordinates": [-79.93759801, 32.780012327], "type": "Point"}, "id": "360", "properties": {"Object ID": 573850807, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93847335, 32.775944388, -79.93847335, 32.775944388], "geometry": {"coordinates": [-79.93847335, 32.775944388], "type": "Point"}, "id": "361", "properties": {"Object ID": 573856066, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93847335, 32.775944388, -79.93847335, 32.775944388], "geometry": {"coordinates": [-79.93847335, 32.775944388], "type": "Point"}, "id": "362", "properties": {"Object ID": 573856068, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93948176, 32.773068006, -79.93948176, 32.773068006], "geometry": {"coordinates": [-79.93948176, 32.773068006], "type": "Point"}, "id": "363", "properties": {"Object ID": 573860087, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94051176, 32.77412515, -79.94051176, 32.77412515], "geometry": {"coordinates": [-79.94051176, 32.77412515], "type": "Point"}, "id": "364", "properties": {"Object ID": 573860252, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94081369, 32.77419362, -79.94081369, 32.77419362], "geometry": {"coordinates": [-79.94081369, 32.77419362], "type": "Point"}, "id": "365", "properties": {"Object ID": 573860254, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94051699, 32.774229963, -79.94051699, 32.774229963], "geometry": {"coordinates": [-79.94051699, 32.774229963], "type": "Point"}, "id": "366", "properties": {"Object ID": 573860256, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94061347, 32.774886557, -79.94061347, 32.774886557], "geometry": {"coordinates": [-79.94061347, 32.774886557], "type": "Point"}, "id": "367", "properties": {"Object ID": 573860279, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94066901, 32.775345254, -79.94066901, 32.775345254], "geometry": {"coordinates": [-79.94066901, 32.775345254], "type": "Point"}, "id": "368", "properties": {"Object ID": 573860296, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94240692, 32.778108071, -79.94240692, 32.778108071], "geometry": {"coordinates": [-79.94240692, 32.778108071], "type": "Point"}, "id": "369", "properties": {"Object ID": 573860809, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93506524, 32.770285125, -79.93506524, 32.770285125], "geometry": {"coordinates": [-79.93506524, 32.770285125], "type": "Point"}, "id": "370", "properties": {"Object ID": 574268589, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93479209, 32.770882299, -79.93479209, 32.770882299], "geometry": {"coordinates": [-79.93479209, 32.770882299], "type": "Point"}, "id": "371", "properties": {"Object ID": 574268676, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93507803, 32.771379107, -79.93507803, 32.771379107], "geometry": {"coordinates": [-79.93507803, 32.771379107], "type": "Point"}, "id": "372", "properties": {"Object ID": 574268686, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93433723, 32.771866244, -79.93433723, 32.771866244], "geometry": {"coordinates": [-79.93433723, 32.771866244], "type": "Point"}, "id": "373", "properties": {"Object ID": 574268704, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93767162, 32.774014875, -79.93767162, 32.774014875], "geometry": {"coordinates": [-79.93767162, 32.774014875], "type": "Point"}, "id": "374", "properties": {"Object ID": 574268738, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93710509, 32.774072701, -79.93710509, 32.774072701], "geometry": {"coordinates": [-79.93710509, 32.774072701], "type": "Point"}, "id": "375", "properties": {"Object ID": 574268742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93596651, 32.774228269, -79.93596651, 32.774228269], "geometry": {"coordinates": [-79.93596651, 32.774228269], "type": "Point"}, "id": "376", "properties": {"Object ID": 574268752, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9363641, 32.774219989, -79.9363641, 32.774219989], "geometry": {"coordinates": [-79.9363641, 32.774219989], "type": "Point"}, "id": "377", "properties": {"Object ID": 574268759, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93575925, 32.774255824, -79.93575925, 32.774255824], "geometry": {"coordinates": [-79.93575925, 32.774255824], "type": "Point"}, "id": "378", "properties": {"Object ID": 574268761, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93612078, 32.774644753, -79.93612078, 32.774644753], "geometry": {"coordinates": [-79.93612078, 32.774644753], "type": "Point"}, "id": "379", "properties": {"Object ID": 574268775, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93649777, 32.775185967, -79.93649777, 32.775185967], "geometry": {"coordinates": [-79.93649777, 32.775185967], "type": "Point"}, "id": "380", "properties": {"Object ID": 574268800, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93645231, 32.775264486, -79.93645231, 32.775264486], "geometry": {"coordinates": [-79.93645231, 32.775264486], "type": "Point"}, "id": "381", "properties": {"Object ID": 574268802, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93629706, 32.77537191, -79.93629706, 32.77537191], "geometry": {"coordinates": [-79.93629706, 32.77537191], "type": "Point"}, "id": "382", "properties": {"Object ID": 574268806, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93590704, 32.775733091, -79.93590704, 32.775733091], "geometry": {"coordinates": [-79.93590704, 32.775733091], "type": "Point"}, "id": "383", "properties": {"Object ID": 574268814, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93611015, 32.771372386, -79.93611015, 32.771372386], "geometry": {"coordinates": [-79.93611015, 32.771372386], "type": "Point"}, "id": "384", "properties": {"Object ID": 574268905, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93607679, 32.776939396, -79.93607679, 32.776939396], "geometry": {"coordinates": [-79.93607679, 32.776939396], "type": "Point"}, "id": "385", "properties": {"Object ID": 574268936, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93647865, 32.776956527, -79.93647865, 32.776956527], "geometry": {"coordinates": [-79.93647865, 32.776956527], "type": "Point"}, "id": "386", "properties": {"Object ID": 574268940, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93731747, 32.777240698, -79.93731747, 32.777240698], "geometry": {"coordinates": [-79.93731747, 32.777240698], "type": "Point"}, "id": "387", "properties": {"Object ID": 574268950, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93620043, 32.777318712, -79.93620043, 32.777318712], "geometry": {"coordinates": [-79.93620043, 32.777318712], "type": "Point"}, "id": "388", "properties": {"Object ID": 574268961, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93872273, 32.774082603, -79.93872273, 32.774082603], "geometry": {"coordinates": [-79.93872273, 32.774082603], "type": "Point"}, "id": "389", "properties": {"Object ID": 574269143, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93852213, 32.774303023, -79.93852213, 32.774303023], "geometry": {"coordinates": [-79.93852213, 32.774303023], "type": "Point"}, "id": "390", "properties": {"Object ID": 574269149, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9377773, 32.774460142, -79.9377773, 32.774460142], "geometry": {"coordinates": [-79.9377773, 32.774460142], "type": "Point"}, "id": "391", "properties": {"Object ID": 574269155, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93770351, 32.774559847, -79.93770351, 32.774559847], "geometry": {"coordinates": [-79.93770351, 32.774559847], "type": "Point"}, "id": "392", "properties": {"Object ID": 574269159, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93787827, 32.774937546, -79.93787827, 32.774937546], "geometry": {"coordinates": [-79.93787827, 32.774937546], "type": "Point"}, "id": "393", "properties": {"Object ID": 574269182, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93740152, 32.774916492, -79.93740152, 32.774916492], "geometry": {"coordinates": [-79.93740152, 32.774916492], "type": "Point"}, "id": "394", "properties": {"Object ID": 574269184, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93703665, 32.775231071, -79.93703665, 32.775231071], "geometry": {"coordinates": [-79.93703665, 32.775231071], "type": "Point"}, "id": "395", "properties": {"Object ID": 574269197, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9367818, 32.775544505, -79.9367818, 32.775544505], "geometry": {"coordinates": [-79.9367818, 32.775544505], "type": "Point"}, "id": "396", "properties": {"Object ID": 574269210, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93662489, 32.775600043, -79.93662489, 32.775600043], "geometry": {"coordinates": [-79.93662489, 32.775600043], "type": "Point"}, "id": "397", "properties": {"Object ID": 574269214, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93819354, 32.777429077, -79.93819354, 32.777429077], "geometry": {"coordinates": [-79.93819354, 32.777429077], "type": "Point"}, "id": "398", "properties": {"Object ID": 574269288, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93812086, 32.778053709, -79.93812086, 32.778053709], "geometry": {"coordinates": [-79.93812086, 32.778053709], "type": "Point"}, "id": "399", "properties": {"Object ID": 574269311, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93661628, 32.779542963, -79.93661628, 32.779542963], "geometry": {"coordinates": [-79.93661628, 32.779542963], "type": "Point"}, "id": "400", "properties": {"Object ID": 574294734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93616824, 32.770574015, -79.93616824, 32.770574015], "geometry": {"coordinates": [-79.93616824, 32.770574015], "type": "Point"}, "id": "401", "properties": {"Object ID": 574294751, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93647511, 32.770608002, -79.93647511, 32.770608002], "geometry": {"coordinates": [-79.93647511, 32.770608002], "type": "Point"}, "id": "402", "properties": {"Object ID": 574294753, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93680363, 32.770686806, -79.93680363, 32.770686806], "geometry": {"coordinates": [-79.93680363, 32.770686806], "type": "Point"}, "id": "403", "properties": {"Object ID": 574294755, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93794348, 32.779846323, -79.93794348, 32.779846323], "geometry": {"coordinates": [-79.93794348, 32.779846323], "type": "Point"}, "id": "404", "properties": {"Object ID": 574294828, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93930365, 32.777467101, -79.93930365, 32.777467101], "geometry": {"coordinates": [-79.93930365, 32.777467101], "type": "Point"}, "id": "405", "properties": {"Object ID": 574295710, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93773589, 32.777865692, -79.93773589, 32.777865692], "geometry": {"coordinates": [-79.93773589, 32.777865692], "type": "Point"}, "id": "406", "properties": {"Object ID": 574295729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93861426, 32.777766057, -79.93861426, 32.777766057], "geometry": {"coordinates": [-79.93861426, 32.777766057], "type": "Point"}, "id": "407", "properties": {"Object ID": 574295731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94097343, 32.778702238, -79.94097343, 32.778702238], "geometry": {"coordinates": [-79.94097343, 32.778702238], "type": "Point"}, "id": "408", "properties": {"Object ID": 574295937, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94008986, 32.771695182, -79.94008986, 32.771695182], "geometry": {"coordinates": [-79.94008986, 32.771695182], "type": "Point"}, "id": "409", "properties": {"Object ID": 574296075, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94073507, 32.771969909, -79.94073507, 32.771969909], "geometry": {"coordinates": [-79.94073507, 32.771969909], "type": "Point"}, "id": "410", "properties": {"Object ID": 574296071, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93650435, 32.772355831, -79.93650435, 32.772355831], "geometry": {"coordinates": [-79.93650435, 32.772355831], "type": "Point"}, "id": "411", "properties": {"Object ID": 574371853, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9340377, 32.777812018, -79.9340377, 32.777812018], "geometry": {"coordinates": [-79.9340377, 32.777812018], "type": "Point"}, "id": "412", "properties": {"Object ID": 574371660, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93417268, 32.777810727, -79.93417268, 32.777810727], "geometry": {"coordinates": [-79.93417268, 32.777810727], "type": "Point"}, "id": "413", "properties": {"Object ID": 574371664, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93418554, 32.778027576, -79.93418554, 32.778027576], "geometry": {"coordinates": [-79.93418554, 32.778027576], "type": "Point"}, "id": "414", "properties": {"Object ID": 574371681, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93572033, 32.778549364, -79.93572033, 32.778549364], "geometry": {"coordinates": [-79.93572033, 32.778549364], "type": "Point"}, "id": "415", "properties": {"Object ID": 574371779, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93967324, 32.772787928, -79.93967324, 32.772787928], "geometry": {"coordinates": [-79.93967324, 32.772787928], "type": "Point"}, "id": "416", "properties": {"Object ID": 574372038, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94027533, 32.772711727, -79.94027533, 32.772711727], "geometry": {"coordinates": [-79.94027533, 32.772711727], "type": "Point"}, "id": "417", "properties": {"Object ID": 574372056, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94080978, 32.773305397, -79.94080978, 32.773305397], "geometry": {"coordinates": [-79.94080978, 32.773305397], "type": "Point"}, "id": "418", "properties": {"Object ID": 574372080, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93698483, 32.773741413, -79.93698483, 32.773741413], "geometry": {"coordinates": [-79.93698483, 32.773741413], "type": "Point"}, "id": "419", "properties": {"Object ID": 574371926, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93561315, 32.776247585, -79.93561315, 32.776247585], "geometry": {"coordinates": [-79.93561315, 32.776247585], "type": "Point"}, "id": "420", "properties": {"Object ID": 574372948, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542452, 32.776442332, -79.93542452, 32.776442332], "geometry": {"coordinates": [-79.93542452, 32.776442332], "type": "Point"}, "id": "421", "properties": {"Object ID": 574372959, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93493554, 32.776655945, -79.93493554, 32.776655945], "geometry": {"coordinates": [-79.93493554, 32.776655945], "type": "Point"}, "id": "422", "properties": {"Object ID": 574372963, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93566118, 32.776727236, -79.93566118, 32.776727236], "geometry": {"coordinates": [-79.93566118, 32.776727236], "type": "Point"}, "id": "423", "properties": {"Object ID": 574372964, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9356845, 32.77735098, -79.9356845, 32.77735098], "geometry": {"coordinates": [-79.9356845, 32.77735098], "type": "Point"}, "id": "424", "properties": {"Object ID": 574372987, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93467942, 32.777360598, -79.93467942, 32.777360598], "geometry": {"coordinates": [-79.93467942, 32.777360598], "type": "Point"}, "id": "425", "properties": {"Object ID": 574409655, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9339938, 32.777484322, -79.9339938, 32.777484322], "geometry": {"coordinates": [-79.9339938, 32.777484322], "type": "Point"}, "id": "426", "properties": {"Object ID": 574409656, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93858876, 32.770981389, -79.93858876, 32.770981389], "geometry": {"coordinates": [-79.93858876, 32.770981389], "type": "Point"}, "id": "427", "properties": {"Object ID": 574409949, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93888674, 32.771096386, -79.93888674, 32.771096386], "geometry": {"coordinates": [-79.93888674, 32.771096386], "type": "Point"}, "id": "428", "properties": {"Object ID": 574421846, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93944399, 32.771416594, -79.93944399, 32.771416594], "geometry": {"coordinates": [-79.93944399, 32.771416594], "type": "Point"}, "id": "429", "properties": {"Object ID": 574421853, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93864922, 32.771481104, -79.93864922, 32.771481104], "geometry": {"coordinates": [-79.93864922, 32.771481104], "type": "Point"}, "id": "430", "properties": {"Object ID": 574421857, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93882755, 32.771527681, -79.93882755, 32.771527681], "geometry": {"coordinates": [-79.93882755, 32.771527681], "type": "Point"}, "id": "431", "properties": {"Object ID": 574421863, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93908385, 32.771694623, -79.93908385, 32.771694623], "geometry": {"coordinates": [-79.93908385, 32.771694623], "type": "Point"}, "id": "432", "properties": {"Object ID": 574421867, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94377195, 32.776775025, -79.94377195, 32.776775025], "geometry": {"coordinates": [-79.94377195, 32.776775025], "type": "Point"}, "id": "433", "properties": {"Object ID": 574431595, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93454869, 32.779269657, -79.93454869, 32.779269657], "geometry": {"coordinates": [-79.93454869, 32.779269657], "type": "Point"}, "id": "434", "properties": {"Object ID": 574446535, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93455069, 32.779355163, -79.93455069, 32.779355163], "geometry": {"coordinates": [-79.93455069, 32.779355163], "type": "Point"}, "id": "435", "properties": {"Object ID": 574446549, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "436", "properties": {"Object ID": 574447804, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505067, 32.780686378, -79.93505067, 32.780686378], "geometry": {"coordinates": [-79.93505067, 32.780686378], "type": "Point"}, "id": "437", "properties": {"Object ID": 574455488, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93401099, 32.780256033, -79.93401099, 32.780256033], "geometry": {"coordinates": [-79.93401099, 32.780256033], "type": "Point"}, "id": "438", "properties": {"Object ID": 574455891, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93401099, 32.780256033, -79.93401099, 32.780256033], "geometry": {"coordinates": [-79.93401099, 32.780256033], "type": "Point"}, "id": "439", "properties": {"Object ID": 574455893, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93420524, 32.779937346, -79.93420524, 32.779937346], "geometry": {"coordinates": [-79.93420524, 32.779937346], "type": "Point"}, "id": "440", "properties": {"Object ID": 574460947, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93530803, 32.774862095, -79.93530803, 32.774862095], "geometry": {"coordinates": [-79.93530803, 32.774862095], "type": "Point"}, "id": "441", "properties": {"Object ID": 574461049, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94242933, 32.778108219, -79.94242933, 32.778108219], "geometry": {"coordinates": [-79.94242933, 32.778108219], "type": "Point"}, "id": "442", "properties": {"Object ID": 574485619, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "443", "properties": {"Object ID": 574485652, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "444", "properties": {"Object ID": 574485654, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "445", "properties": {"Object ID": 574485663, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "446", "properties": {"Object ID": 574485664, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "447", "properties": {"Object ID": 574486700, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "448", "properties": {"Object ID": 574486702, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "449", "properties": {"Object ID": 574486745, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "450", "properties": {"Object ID": 574486747, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "451", "properties": {"Object ID": 574486760, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "452", "properties": {"Object ID": 574486761, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93822265, 32.777639314, -79.93822265, 32.777639314], "geometry": {"coordinates": [-79.93822265, 32.777639314], "type": "Point"}, "id": "453", "properties": {"Object ID": 574486796, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93921764, 32.776949441, -79.93921764, 32.776949441], "geometry": {"coordinates": [-79.93921764, 32.776949441], "type": "Point"}, "id": "454", "properties": {"Object ID": 574486799, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93892571, 32.776049265, -79.93892571, 32.776049265], "geometry": {"coordinates": [-79.93892571, 32.776049265], "type": "Point"}, "id": "455", "properties": {"Object ID": 574486810, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94120829, 32.773686968, -79.94120829, 32.773686968], "geometry": {"coordinates": [-79.94120829, 32.773686968], "type": "Point"}, "id": "456", "properties": {"Object ID": 574486829, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93911017, 32.774639014, -79.93911017, 32.774639014], "geometry": {"coordinates": [-79.93911017, 32.774639014], "type": "Point"}, "id": "457", "properties": {"Object ID": 574486834, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93842612, 32.773930758, -79.93842612, 32.773930758], "geometry": {"coordinates": [-79.93842612, 32.773930758], "type": "Point"}, "id": "458", "properties": {"Object ID": 574486841, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9388671, 32.773329276, -79.9388671, 32.773329276], "geometry": {"coordinates": [-79.9388671, 32.773329276], "type": "Point"}, "id": "459", "properties": {"Object ID": 574486849, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93622307, 32.774620925, -79.93622307, 32.774620925], "geometry": {"coordinates": [-79.93622307, 32.774620925], "type": "Point"}, "id": "460", "properties": {"Object ID": 574486866, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93622307, 32.774620925, -79.93622307, 32.774620925], "geometry": {"coordinates": [-79.93622307, 32.774620925], "type": "Point"}, "id": "461", "properties": {"Object ID": 574486867, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93622307, 32.774620925, -79.93622307, 32.774620925], "geometry": {"coordinates": [-79.93622307, 32.774620925], "type": "Point"}, "id": "462", "properties": {"Object ID": 574486870, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93479539, 32.775596363, -79.93479539, 32.775596363], "geometry": {"coordinates": [-79.93479539, 32.775596363], "type": "Point"}, "id": "463", "properties": {"Object ID": 574486876, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93790402, 32.777827605, -79.93790402, 32.777827605], "geometry": {"coordinates": [-79.93790402, 32.777827605], "type": "Point"}, "id": "464", "properties": {"Object ID": 574486953, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9376776, 32.77784901, -79.9376776, 32.77784901], "geometry": {"coordinates": [-79.9376776, 32.77784901], "type": "Point"}, "id": "465", "properties": {"Object ID": 574486956, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93777386, 32.776445317, -79.93777386, 32.776445317], "geometry": {"coordinates": [-79.93777386, 32.776445317], "type": "Point"}, "id": "466", "properties": {"Object ID": 574486970, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9357483, 32.779531488, -79.9357483, 32.779531488], "geometry": {"coordinates": [-79.9357483, 32.779531488], "type": "Point"}, "id": "467", "properties": {"Object ID": 574486980, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93461369, 32.779668035, -79.93461369, 32.779668035], "geometry": {"coordinates": [-79.93461369, 32.779668035], "type": "Point"}, "id": "468", "properties": {"Object ID": 574486993, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93562925, 32.778091018, -79.93562925, 32.778091018], "geometry": {"coordinates": [-79.93562925, 32.778091018], "type": "Point"}, "id": "469", "properties": {"Object ID": 574487000, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93538148, 32.777985729, -79.93538148, 32.777985729], "geometry": {"coordinates": [-79.93538148, 32.777985729], "type": "Point"}, "id": "470", "properties": {"Object ID": 574487039, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "471", "properties": {"Object ID": 574487052, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "472", "properties": {"Object ID": 574487068, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93430262, 32.777822901, -79.93430262, 32.777822901], "geometry": {"coordinates": [-79.93430262, 32.777822901], "type": "Point"}, "id": "473", "properties": {"Object ID": 574487075, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93595261, 32.776210444, -79.93595261, 32.776210444], "geometry": {"coordinates": [-79.93595261, 32.776210444], "type": "Point"}, "id": "474", "properties": {"Object ID": 574487096, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9333705, 32.774557773, -79.9333705, 32.774557773], "geometry": {"coordinates": [-79.9333705, 32.774557773], "type": "Point"}, "id": "475", "properties": {"Object ID": 573475702, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92879208, 32.772589616, -79.92879208, 32.772589616], "geometry": {"coordinates": [-79.92879208, 32.772589616], "type": "Point"}, "id": "476", "properties": {"Object ID": 573782435, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92967136, 32.772517063, -79.92967136, 32.772517063], "geometry": {"coordinates": [-79.92967136, 32.772517063], "type": "Point"}, "id": "477", "properties": {"Object ID": 573782574, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93028792, 32.773039913, -79.93028792, 32.773039913], "geometry": {"coordinates": [-79.93028792, 32.773039913], "type": "Point"}, "id": "478", "properties": {"Object ID": 573782590, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92936358, 32.773541539, -79.92936358, 32.773541539], "geometry": {"coordinates": [-79.92936358, 32.773541539], "type": "Point"}, "id": "479", "properties": {"Object ID": 573783144, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92978985, 32.770699308, -79.92978985, 32.770699308], "geometry": {"coordinates": [-79.92978985, 32.770699308], "type": "Point"}, "id": "480", "properties": {"Object ID": 573783421, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93407396, 32.772290752, -79.93407396, 32.772290752], "geometry": {"coordinates": [-79.93407396, 32.772290752], "type": "Point"}, "id": "481", "properties": {"Object ID": 573789010, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93483794, 32.772949924, -79.93483794, 32.772949924], "geometry": {"coordinates": [-79.93483794, 32.772949924], "type": "Point"}, "id": "482", "properties": {"Object ID": 573789021, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9384498, 32.775574641, -79.9384498, 32.775574641], "geometry": {"coordinates": [-79.9384498, 32.775574641], "type": "Point"}, "id": "483", "properties": {"Object ID": 573789357, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94042078, 32.777638216, -79.94042078, 32.777638216], "geometry": {"coordinates": [-79.94042078, 32.777638216], "type": "Point"}, "id": "484", "properties": {"Object ID": 573795679, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92787224, 32.781358849, -79.92787224, 32.781358849], "geometry": {"coordinates": [-79.92787224, 32.781358849], "type": "Point"}, "id": "485", "properties": {"Object ID": 573827362, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9339263, 32.771234697, -79.9339263, 32.771234697], "geometry": {"coordinates": [-79.9339263, 32.771234697], "type": "Point"}, "id": "486", "properties": {"Object ID": 574268682, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93810941, 32.774114166, -79.93810941, 32.774114166], "geometry": {"coordinates": [-79.93810941, 32.774114166], "type": "Point"}, "id": "487", "properties": {"Object ID": 574269222, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9309973, 32.771647637, -79.9309973, 32.771647637], "geometry": {"coordinates": [-79.9309973, 32.771647637], "type": "Point"}, "id": "488", "properties": {"Object ID": 574372729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9385834, 32.77234976, -79.9385834, 32.77234976], "geometry": {"coordinates": [-79.9385834, 32.77234976], "type": "Point"}, "id": "489", "properties": {"Object ID": 574373121, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9378298, 32.771098061, -79.9378298, 32.771098061], "geometry": {"coordinates": [-79.9378298, 32.771098061], "type": "Point"}, "id": "490", "properties": {"Object ID": 574409959, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "491", "properties": {"Object ID": 574451483, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92810725, 32.776948576, -79.92810725, 32.776948576], "geometry": {"coordinates": [-79.92810725, 32.776948576], "type": "Point"}, "id": "492", "properties": {"Object ID": 574461091, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "493", "properties": {"Object ID": 574486304, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "494", "properties": {"Object ID": 574486754, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "495", "properties": {"Object ID": 574486763, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93484603, 32.771753102, -79.93484603, 32.771753102], "geometry": {"coordinates": [-79.93484603, 32.771753102], "type": "Point"}, "id": "496", "properties": {"Object ID": 574486906, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93405994, 32.771469521, -79.93405994, 32.771469521], "geometry": {"coordinates": [-79.93405994, 32.771469521], "type": "Point"}, "id": "497", "properties": {"Object ID": 574486907, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "498", "properties": {"Object ID": 574488665, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "499", "properties": {"Object ID": 574488699, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "500", "properties": {"Object ID": 574488784, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92769608, 32.774939907, -79.92769608, 32.774939907], "geometry": {"coordinates": [-79.92769608, 32.774939907], "type": "Point"}, "id": "501", "properties": {"Object ID": 573779413, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92799861, 32.778946379, -79.92799861, 32.778946379], "geometry": {"coordinates": [-79.92799861, 32.778946379], "type": "Point"}, "id": "502", "properties": {"Object ID": 573779431, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9289689, 32.782217096, -79.9289689, 32.782217096], "geometry": {"coordinates": [-79.9289689, 32.782217096], "type": "Point"}, "id": "503", "properties": {"Object ID": 573782472, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92979056, 32.774550683, -79.92979056, 32.774550683], "geometry": {"coordinates": [-79.92979056, 32.774550683], "type": "Point"}, "id": "504", "properties": {"Object ID": 573783181, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93055145, 32.778294283, -79.93055145, 32.778294283], "geometry": {"coordinates": [-79.93055145, 32.778294283], "type": "Point"}, "id": "505", "properties": {"Object ID": 573783274, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92978267, 32.777695288, -79.92978267, 32.777695288], "geometry": {"coordinates": [-79.92978267, 32.777695288], "type": "Point"}, "id": "506", "properties": {"Object ID": 573783339, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93326406, 32.773720865, -79.93326406, 32.773720865], "geometry": {"coordinates": [-79.93326406, 32.773720865], "type": "Point"}, "id": "507", "properties": {"Object ID": 573785945, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9356649, 32.779559153, -79.9356649, 32.779559153], "geometry": {"coordinates": [-79.9356649, 32.779559153], "type": "Point"}, "id": "508", "properties": {"Object ID": 573789127, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93635742, 32.776213477, -79.93635742, 32.776213477], "geometry": {"coordinates": [-79.93635742, 32.776213477], "type": "Point"}, "id": "509", "properties": {"Object ID": 573789163, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93632697, 32.776586814, -79.93632697, 32.776586814], "geometry": {"coordinates": [-79.93632697, 32.776586814], "type": "Point"}, "id": "510", "properties": {"Object ID": 573789180, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93646103, 32.773817225, -79.93646103, 32.773817225], "geometry": {"coordinates": [-79.93646103, 32.773817225], "type": "Point"}, "id": "511", "properties": {"Object ID": 573850108, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9392596, 32.777705003, -79.9392596, 32.777705003], "geometry": {"coordinates": [-79.9392596, 32.777705003], "type": "Point"}, "id": "512", "properties": {"Object ID": 574295704, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93258546, 32.781970217, -79.93258546, 32.781970217], "geometry": {"coordinates": [-79.93258546, 32.781970217], "type": "Point"}, "id": "513", "properties": {"Object ID": 574371571, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92971409, 32.776056935, -79.92971409, 32.776056935], "geometry": {"coordinates": [-79.92971409, 32.776056935], "type": "Point"}, "id": "514", "properties": {"Object ID": 574372561, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9287642, 32.777334067, -79.9287642, 32.777334067], "geometry": {"coordinates": [-79.9287642, 32.777334067], "type": "Point"}, "id": "515", "properties": {"Object ID": 574421659, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9445626, 32.776857362, -79.9445626, 32.776857362], "geometry": {"coordinates": [-79.9445626, 32.776857362], "type": "Point"}, "id": "516", "properties": {"Object ID": 574431597, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92592791, 32.779129789, -79.92592791, 32.779129789], "geometry": {"coordinates": [-79.92592791, 32.779129789], "type": "Point"}, "id": "517", "properties": {"Object ID": 574435917, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681259, 32.780233741, -79.92681259, 32.780233741], "geometry": {"coordinates": [-79.92681259, 32.780233741], "type": "Point"}, "id": "518", "properties": {"Object ID": 574461290, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93834227, 32.777786172, -79.93834227, 32.777786172], "geometry": {"coordinates": [-79.93834227, 32.777786172], "type": "Point"}, "id": "519", "properties": {"Object ID": 574486794, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "520", "properties": {"Object ID": 574487028, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "521", "properties": {"Object ID": 574487055, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93458576, 32.776932543, -79.93458576, 32.776932543], "geometry": {"coordinates": [-79.93458576, 32.776932543], "type": "Point"}, "id": "522", "properties": {"Object ID": 574487085, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92752096, 32.775522281, -79.92752096, 32.775522281], "geometry": {"coordinates": [-79.92752096, 32.775522281], "type": "Point"}, "id": "523", "properties": {"Object ID": 574488842, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93208953, 32.780330062, -79.93208953, 32.780330062], "geometry": {"coordinates": [-79.93208953, 32.780330062], "type": "Point"}, "id": "524", "properties": {"Object ID": 573387904, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681104, 32.778289954, -79.92681104, 32.778289954], "geometry": {"coordinates": [-79.92681104, 32.778289954], "type": "Point"}, "id": "525", "properties": {"Object ID": 573407533, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92637322, 32.778336562, -79.92637322, 32.778336562], "geometry": {"coordinates": [-79.92637322, 32.778336562], "type": "Point"}, "id": "526", "properties": {"Object ID": 573407536, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92750378, 32.774105961, -79.92750378, 32.774105961], "geometry": {"coordinates": [-79.92750378, 32.774105961], "type": "Point"}, "id": "527", "properties": {"Object ID": 573779361, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92843115, 32.777839639, -79.92843115, 32.777839639], "geometry": {"coordinates": [-79.92843115, 32.777839639], "type": "Point"}, "id": "528", "properties": {"Object ID": 573782491, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92917523, 32.773740483, -79.92917523, 32.773740483], "geometry": {"coordinates": [-79.92917523, 32.773740483], "type": "Point"}, "id": "529", "properties": {"Object ID": 573783150, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93005637, 32.774272094, -79.93005637, 32.774272094], "geometry": {"coordinates": [-79.93005637, 32.774272094], "type": "Point"}, "id": "530", "properties": {"Object ID": 573783162, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92959328, 32.771352309, -79.92959328, 32.771352309], "geometry": {"coordinates": [-79.92959328, 32.771352309], "type": "Point"}, "id": "531", "properties": {"Object ID": 573783435, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93217246, 32.776521687, -79.93217246, 32.776521687], "geometry": {"coordinates": [-79.93217246, 32.776521687], "type": "Point"}, "id": "532", "properties": {"Object ID": 573785437, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93144562, 32.773161086, -79.93144562, 32.773161086], "geometry": {"coordinates": [-79.93144562, 32.773161086], "type": "Point"}, "id": "533", "properties": {"Object ID": 573785651, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93185801, 32.773447896, -79.93185801, 32.773447896], "geometry": {"coordinates": [-79.93185801, 32.773447896], "type": "Point"}, "id": "534", "properties": {"Object ID": 573785669, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93158177, 32.773420504, -79.93158177, 32.773420504], "geometry": {"coordinates": [-79.93158177, 32.773420504], "type": "Point"}, "id": "535", "properties": {"Object ID": 573785673, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93132241, 32.773522266, -79.93132241, 32.773522266], "geometry": {"coordinates": [-79.93132241, 32.773522266], "type": "Point"}, "id": "536", "properties": {"Object ID": 573785675, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9328019, 32.774852212, -79.9328019, 32.774852212], "geometry": {"coordinates": [-79.9328019, 32.774852212], "type": "Point"}, "id": "537", "properties": {"Object ID": 573785814, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93233748, 32.771791945, -79.93233748, 32.771791945], "geometry": {"coordinates": [-79.93233748, 32.771791945], "type": "Point"}, "id": "538", "properties": {"Object ID": 573785885, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93477358, 32.775591585, -79.93477358, 32.775591585], "geometry": {"coordinates": [-79.93477358, 32.775591585], "type": "Point"}, "id": "539", "properties": {"Object ID": 573789152, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93807295, 32.775217709, -79.93807295, 32.775217709], "geometry": {"coordinates": [-79.93807295, 32.775217709], "type": "Point"}, "id": "540", "properties": {"Object ID": 573789349, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9378936, 32.775650462, -79.9378936, 32.775650462], "geometry": {"coordinates": [-79.9378936, 32.775650462], "type": "Point"}, "id": "541", "properties": {"Object ID": 573789360, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93837331, 32.772599033, -79.93837331, 32.772599033], "geometry": {"coordinates": [-79.93837331, 32.772599033], "type": "Point"}, "id": "542", "properties": {"Object ID": 573789689, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93855791, 32.772719119, -79.93855791, 32.772719119], "geometry": {"coordinates": [-79.93855791, 32.772719119], "type": "Point"}, "id": "543", "properties": {"Object ID": 573789693, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9401507, 32.77534358, -79.9401507, 32.77534358], "geometry": {"coordinates": [-79.9401507, 32.77534358], "type": "Point"}, "id": "544", "properties": {"Object ID": 573795586, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93960418, 32.777373408, -79.93960418, 32.777373408], "geometry": {"coordinates": [-79.93960418, 32.777373408], "type": "Point"}, "id": "545", "properties": {"Object ID": 573795671, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92972682, 32.776806657, -79.92972682, 32.776806657], "geometry": {"coordinates": [-79.92972682, 32.776806657], "type": "Point"}, "id": "546", "properties": {"Object ID": 573827750, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9299812, 32.777132109, -79.9299812, 32.777132109], "geometry": {"coordinates": [-79.9299812, 32.777132109], "type": "Point"}, "id": "547", "properties": {"Object ID": 573827766, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9282511, 32.782869981, -79.9282511, 32.782869981], "geometry": {"coordinates": [-79.9282511, 32.782869981], "type": "Point"}, "id": "548", "properties": {"Object ID": 573827784, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93099317, 32.774783956, -79.93099317, 32.774783956], "geometry": {"coordinates": [-79.93099317, 32.774783956], "type": "Point"}, "id": "549", "properties": {"Object ID": 573831685, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93181846, 32.774972758, -79.93181846, 32.774972758], "geometry": {"coordinates": [-79.93181846, 32.774972758], "type": "Point"}, "id": "550", "properties": {"Object ID": 573831758, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93230431, 32.771323454, -79.93230431, 32.771323454], "geometry": {"coordinates": [-79.93230431, 32.771323454], "type": "Point"}, "id": "551", "properties": {"Object ID": 573841020, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93236844, 32.770764112, -79.93236844, 32.770764112], "geometry": {"coordinates": [-79.93236844, 32.770764112], "type": "Point"}, "id": "552", "properties": {"Object ID": 573841028, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94063884, 32.775115733, -79.94063884, 32.775115733], "geometry": {"coordinates": [-79.94063884, 32.775115733], "type": "Point"}, "id": "553", "properties": {"Object ID": 573860287, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92692669, 32.78147486, -79.92692669, 32.78147486], "geometry": {"coordinates": [-79.92692669, 32.78147486], "type": "Point"}, "id": "554", "properties": {"Object ID": 574267584, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93197281, 32.772352818, -79.93197281, 32.772352818], "geometry": {"coordinates": [-79.93197281, 32.772352818], "type": "Point"}, "id": "555", "properties": {"Object ID": 574268235, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9324734, 32.770385335, -79.9324734, 32.770385335], "geometry": {"coordinates": [-79.9324734, 32.770385335], "type": "Point"}, "id": "556", "properties": {"Object ID": 574268604, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93747767, 32.774232104, -79.93747767, 32.774232104], "geometry": {"coordinates": [-79.93747767, 32.774232104], "type": "Point"}, "id": "557", "properties": {"Object ID": 574268755, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93572505, 32.771292746, -79.93572505, 32.771292746], "geometry": {"coordinates": [-79.93572505, 32.771292746], "type": "Point"}, "id": "558", "properties": {"Object ID": 574268917, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93613698, 32.777025927, -79.93613698, 32.777025927], "geometry": {"coordinates": [-79.93613698, 32.777025927], "type": "Point"}, "id": "559", "properties": {"Object ID": 574268944, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93746303, 32.775362634, -79.93746303, 32.775362634], "geometry": {"coordinates": [-79.93746303, 32.775362634], "type": "Point"}, "id": "560", "properties": {"Object ID": 574269202, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93664764, 32.775804194, -79.93664764, 32.775804194], "geometry": {"coordinates": [-79.93664764, 32.775804194], "type": "Point"}, "id": "561", "properties": {"Object ID": 574269218, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93219068, 32.773524381, -79.93219068, 32.773524381], "geometry": {"coordinates": [-79.93219068, 32.773524381], "type": "Point"}, "id": "562", "properties": {"Object ID": 574293769, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93206727, 32.774434528, -79.93206727, 32.774434528], "geometry": {"coordinates": [-79.93206727, 32.774434528], "type": "Point"}, "id": "563", "properties": {"Object ID": 574293795, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93312309, 32.777861464, -79.93312309, 32.777861464], "geometry": {"coordinates": [-79.93312309, 32.777861464], "type": "Point"}, "id": "564", "properties": {"Object ID": 574371666, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92813633, 32.780414773, -79.92813633, 32.780414773], "geometry": {"coordinates": [-79.92813633, 32.780414773], "type": "Point"}, "id": "565", "properties": {"Object ID": 574372409, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92849911, 32.776440239, -79.92849911, 32.776440239], "geometry": {"coordinates": [-79.92849911, 32.776440239], "type": "Point"}, "id": "566", "properties": {"Object ID": 574372457, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92966224, 32.77604809, -79.92966224, 32.77604809], "geometry": {"coordinates": [-79.92966224, 32.77604809], "type": "Point"}, "id": "567", "properties": {"Object ID": 574372529, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93051865, 32.770587558, -79.93051865, 32.770587558], "geometry": {"coordinates": [-79.93051865, 32.770587558], "type": "Point"}, "id": "568", "properties": {"Object ID": 574372691, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505684, 32.7763231, -79.93505684, 32.7763231], "geometry": {"coordinates": [-79.93505684, 32.7763231], "type": "Point"}, "id": "569", "properties": {"Object ID": 574372954, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94196237, 32.77505852, -79.94196237, 32.77505852], "geometry": {"coordinates": [-79.94196237, 32.77505852], "type": "Point"}, "id": "570", "properties": {"Object ID": 574431453, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92664858, 32.779055723, -79.92664858, 32.779055723], "geometry": {"coordinates": [-79.92664858, 32.779055723], "type": "Point"}, "id": "571", "properties": {"Object ID": 574435923, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92664858, 32.779055723, -79.92664858, 32.779055723], "geometry": {"coordinates": [-79.92664858, 32.779055723], "type": "Point"}, "id": "572", "properties": {"Object ID": 574435927, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9290221, 32.778559412, -79.9290221, 32.778559412], "geometry": {"coordinates": [-79.9290221, 32.778559412], "type": "Point"}, "id": "573", "properties": {"Object ID": 574446467, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9342548, 32.779930537, -79.9342548, 32.779930537], "geometry": {"coordinates": [-79.9342548, 32.779930537], "type": "Point"}, "id": "574", "properties": {"Object ID": 574446519, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.926487, 32.780818198, -79.926487, 32.780818198], "geometry": {"coordinates": [-79.926487, 32.780818198], "type": "Point"}, "id": "575", "properties": {"Object ID": 574451293, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92864836, 32.779234877, -79.92864836, 32.779234877], "geometry": {"coordinates": [-79.92864836, 32.779234877], "type": "Point"}, "id": "576", "properties": {"Object ID": 574461025, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "577", "properties": {"Object ID": 574476749, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "578", "properties": {"Object ID": 574476779, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93840036, 32.774878623, -79.93840036, 32.774878623], "geometry": {"coordinates": [-79.93840036, 32.774878623], "type": "Point"}, "id": "579", "properties": {"Object ID": 574486836, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94160737, 32.773273112, -79.94160737, 32.773273112], "geometry": {"coordinates": [-79.94160737, 32.773273112], "type": "Point"}, "id": "580", "properties": {"Object ID": 574486843, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93784122, 32.77398576, -79.93784122, 32.77398576], "geometry": {"coordinates": [-79.93784122, 32.77398576], "type": "Point"}, "id": "581", "properties": {"Object ID": 574486855, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93043341, 32.77534059, -79.93043341, 32.77534059], "geometry": {"coordinates": [-79.93043341, 32.77534059], "type": "Point"}, "id": "582", "properties": {"Object ID": 574486901, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92996702, 32.774587518, -79.92996702, 32.774587518], "geometry": {"coordinates": [-79.92996702, 32.774587518], "type": "Point"}, "id": "583", "properties": {"Object ID": 574486903, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93133148, 32.771521871, -79.93133148, 32.771521871], "geometry": {"coordinates": [-79.93133148, 32.771521871], "type": "Point"}, "id": "584", "properties": {"Object ID": 574486919, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93068697, 32.771232663, -79.93068697, 32.771232663], "geometry": {"coordinates": [-79.93068697, 32.771232663], "type": "Point"}, "id": "585", "properties": {"Object ID": 574486934, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9357483, 32.779531488, -79.9357483, 32.779531488], "geometry": {"coordinates": [-79.9357483, 32.779531488], "type": "Point"}, "id": "586", "properties": {"Object ID": 574486982, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93536504, 32.77764065, -79.93536504, 32.77764065], "geometry": {"coordinates": [-79.93536504, 32.77764065], "type": "Point"}, "id": "587", "properties": {"Object ID": 574487046, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93378854, 32.777872673, -79.93378854, 32.777872673], "geometry": {"coordinates": [-79.93378854, 32.777872673], "type": "Point"}, "id": "588", "properties": {"Object ID": 574487079, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92836807, 32.779106044, -79.92836807, 32.779106044], "geometry": {"coordinates": [-79.92836807, 32.779106044], "type": "Point"}, "id": "589", "properties": {"Object ID": 574488680, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "590", "properties": {"Object ID": 574488742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "591", "properties": {"Object ID": 574488802, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9267068, 32.776164736, -79.9267068, 32.776164736], "geometry": {"coordinates": [-79.9267068, 32.776164736], "type": "Point"}, "id": "592", "properties": {"Object ID": 574488817, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938167, 32.775139478, -79.92938167, 32.775139478], "geometry": {"coordinates": [-79.92938167, 32.775139478], "type": "Point"}, "id": "593", "properties": {"Object ID": 574488831, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92956131, 32.77340052, -79.92956131, 32.77340052], "geometry": {"coordinates": [-79.92956131, 32.77340052], "type": "Point"}, "id": "594", "properties": {"Object ID": 574488869, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93102303, 32.781120425, -79.93102303, 32.781120425], "geometry": {"coordinates": [-79.93102303, 32.781120425], "type": "Point"}, "id": "595", "properties": {"Object ID": 573831840, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92692669, 32.78147486, -79.92692669, 32.78147486], "geometry": {"coordinates": [-79.92692669, 32.78147486], "type": "Point"}, "id": "596", "properties": {"Object ID": 574267590, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92857452, 32.78132147, -79.92857452, 32.78132147], "geometry": {"coordinates": [-79.92857452, 32.78132147], "type": "Point"}, "id": "597", "properties": {"Object ID": 574431316, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93010382, 32.782773607, -79.93010382, 32.782773607], "geometry": {"coordinates": [-79.93010382, 32.782773607], "type": "Point"}, "id": "598", "properties": {"Object ID": 574488423, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "599", "properties": {"Object ID": 574488424, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "600", "properties": {"Object ID": 574488662, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92848337, 32.773018263, -79.92848337, 32.773018263], "geometry": {"coordinates": [-79.92848337, 32.773018263], "type": "Point"}, "id": "601", "properties": {"Object ID": 573779315, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92933467, 32.772737024, -79.92933467, 32.772737024], "geometry": {"coordinates": [-79.92933467, 32.772737024], "type": "Point"}, "id": "602", "properties": {"Object ID": 573782445, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92991604, 32.772163112, -79.92991604, 32.772163112], "geometry": {"coordinates": [-79.92991604, 32.772163112], "type": "Point"}, "id": "603", "properties": {"Object ID": 573782562, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92915473, 32.773637584, -79.92915473, 32.773637584], "geometry": {"coordinates": [-79.92915473, 32.773637584], "type": "Point"}, "id": "604", "properties": {"Object ID": 573783148, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93083678, 32.773332097, -79.93083678, 32.773332097], "geometry": {"coordinates": [-79.93083678, 32.773332097], "type": "Point"}, "id": "605", "properties": {"Object ID": 573785663, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93279414, 32.775415461, -79.93279414, 32.775415461], "geometry": {"coordinates": [-79.93279414, 32.775415461], "type": "Point"}, "id": "606", "properties": {"Object ID": 573785802, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93287592, 32.775610735, -79.93287592, 32.775610735], "geometry": {"coordinates": [-79.93287592, 32.775610735], "type": "Point"}, "id": "607", "properties": {"Object ID": 573785837, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93032633, 32.775998298, -79.93032633, 32.775998298], "geometry": {"coordinates": [-79.93032633, 32.775998298], "type": "Point"}, "id": "608", "properties": {"Object ID": 574372535, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93327038, 32.771857448, -79.93327038, 32.771857448], "geometry": {"coordinates": [-79.93327038, 32.771857448], "type": "Point"}, "id": "609", "properties": {"Object ID": 574486915, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93337915, 32.770923728, -79.93337915, 32.770923728], "geometry": {"coordinates": [-79.93337915, 32.770923728], "type": "Point"}, "id": "610", "properties": {"Object ID": 574486923, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92813581, 32.772327859, -79.92813581, 32.772327859], "geometry": {"coordinates": [-79.92813581, 32.772327859], "type": "Point"}, "id": "611", "properties": {"Object ID": 574488875, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93036329, 32.782270155, -79.93036329, 32.782270155], "geometry": {"coordinates": [-79.93036329, 32.782270155], "type": "Point"}, "id": "612", "properties": {"Object ID": 573467947, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "613", "properties": {"Object ID": 574488430, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93226152, 32.778060838, -79.93226152, 32.778060838], "geometry": {"coordinates": [-79.93226152, 32.778060838], "type": "Point"}, "id": "614", "properties": {"Object ID": 573831778, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93357708, 32.778422236, -79.93357708, 32.778422236], "geometry": {"coordinates": [-79.93357708, 32.778422236], "type": "Point"}, "id": "615", "properties": {"Object ID": 574421795, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93317162, 32.778454651, -79.93317162, 32.778454651], "geometry": {"coordinates": [-79.93317162, 32.778454651], "type": "Point"}, "id": "616", "properties": {"Object ID": 574421797, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93351639, 32.778826923, -79.93351639, 32.778826923], "geometry": {"coordinates": [-79.93351639, 32.778826923], "type": "Point"}, "id": "617", "properties": {"Object ID": 574421805, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93261131, 32.779045122, -79.93261131, 32.779045122], "geometry": {"coordinates": [-79.93261131, 32.779045122], "type": "Point"}, "id": "618", "properties": {"Object ID": 574487007, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92680082, 32.776102704, -79.92680082, 32.776102704], "geometry": {"coordinates": [-79.92680082, 32.776102704], "type": "Point"}, "id": "619", "properties": {"Object ID": 573818740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92716263, 32.773225239, -79.92716263, 32.773225239], "geometry": {"coordinates": [-79.92716263, 32.773225239], "type": "Point"}, "id": "620", "properties": {"Object ID": 574267652, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93523879, 32.77004074, -79.93523879, 32.77004074], "geometry": {"coordinates": [-79.93523879, 32.77004074], "type": "Point"}, "id": "621", "properties": {"Object ID": 574268559, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93662462, 32.77499479, -79.93662462, 32.77499479], "geometry": {"coordinates": [-79.93662462, 32.77499479], "type": "Point"}, "id": "622", "properties": {"Object ID": 574268789, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93668375, 32.773904989, -79.93668375, 32.773904989], "geometry": {"coordinates": [-79.93668375, 32.773904989], "type": "Point"}, "id": "623", "properties": {"Object ID": 574371932, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "624", "properties": {"Object ID": 574372403, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92830278, 32.776202619, -79.92830278, 32.776202619], "geometry": {"coordinates": [-79.92830278, 32.776202619], "type": "Point"}, "id": "625", "properties": {"Object ID": 574372449, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93831937, 32.771336188, -79.93831937, 32.771336188], "geometry": {"coordinates": [-79.93831937, 32.771336188], "type": "Point"}, "id": "626", "properties": {"Object ID": 574409965, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94143723, 32.77365876, -79.94143723, 32.77365876], "geometry": {"coordinates": [-79.94143723, 32.77365876], "type": "Point"}, "id": "627", "properties": {"Object ID": 574431439, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9355996, 32.77158305, -79.9355996, 32.77158305], "geometry": {"coordinates": [-79.9355996, 32.77158305], "type": "Point"}, "id": "628", "properties": {"Object ID": 574431711, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92857452, 32.78132147, -79.92857452, 32.78132147], "geometry": {"coordinates": [-79.92857452, 32.78132147], "type": "Point"}, "id": "629", "properties": {"Object ID": 574431318, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92783811, 32.778163155, -79.92783811, 32.778163155], "geometry": {"coordinates": [-79.92783811, 32.778163155], "type": "Point"}, "id": "630", "properties": {"Object ID": 574446485, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92783811, 32.778163155, -79.92783811, 32.778163155], "geometry": {"coordinates": [-79.92783811, 32.778163155], "type": "Point"}, "id": "631", "properties": {"Object ID": 574446487, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93454321, 32.779150786, -79.93454321, 32.779150786], "geometry": {"coordinates": [-79.93454321, 32.779150786], "type": "Point"}, "id": "632", "properties": {"Object ID": 574446530, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "633", "properties": {"Object ID": 574451481, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9278853, 32.779870634, -79.9278853, 32.779870634], "geometry": {"coordinates": [-79.9278853, 32.779870634], "type": "Point"}, "id": "634", "properties": {"Object ID": 574461031, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92903083, 32.776368402, -79.92903083, 32.776368402], "geometry": {"coordinates": [-79.92903083, 32.776368402], "type": "Point"}, "id": "635", "properties": {"Object ID": 574461075, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92653372, 32.77762264, -79.92653372, 32.77762264], "geometry": {"coordinates": [-79.92653372, 32.77762264], "type": "Point"}, "id": "636", "properties": {"Object ID": 574461311, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93469895, 32.773907663, -79.93469895, 32.773907663], "geometry": {"coordinates": [-79.93469895, 32.773907663], "type": "Point"}, "id": "637", "properties": {"Object ID": 574486889, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92820274, 32.778662139, -79.92820274, 32.778662139], "geometry": {"coordinates": [-79.92820274, 32.778662139], "type": "Point"}, "id": "638", "properties": {"Object ID": 574488707, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92787671, 32.774030712, -79.92787671, 32.774030712], "geometry": {"coordinates": [-79.92787671, 32.774030712], "type": "Point"}, "id": "639", "properties": {"Object ID": 574488862, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92970963, 32.771767424, -79.92970963, 32.771767424], "geometry": {"coordinates": [-79.92970963, 32.771767424], "type": "Point"}, "id": "640", "properties": {"Object ID": 574488872, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93201312, 32.780098957, -79.93201312, 32.780098957], "geometry": {"coordinates": [-79.93201312, 32.780098957], "type": "Point"}, "id": "641", "properties": {"Object ID": 573387902, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9287439, 32.773182583, -79.9287439, 32.773182583], "geometry": {"coordinates": [-79.9287439, 32.773182583], "type": "Point"}, "id": "642", "properties": {"Object ID": 573779317, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92987574, 32.772444946, -79.92987574, 32.772444946], "geometry": {"coordinates": [-79.92987574, 32.772444946], "type": "Point"}, "id": "643", "properties": {"Object ID": 573782572, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191169, 32.773184427, -79.93191169, 32.773184427], "geometry": {"coordinates": [-79.93191169, 32.773184427], "type": "Point"}, "id": "644", "properties": {"Object ID": 573785653, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93324946, 32.775619435, -79.93324946, 32.775619435], "geometry": {"coordinates": [-79.93324946, 32.775619435], "type": "Point"}, "id": "645", "properties": {"Object ID": 573785839, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93236015, 32.772141633, -79.93236015, 32.772141633], "geometry": {"coordinates": [-79.93236015, 32.772141633], "type": "Point"}, "id": "646", "properties": {"Object ID": 573785899, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93899668, 32.773525213, -79.93899668, 32.773525213], "geometry": {"coordinates": [-79.93899668, 32.773525213], "type": "Point"}, "id": "647", "properties": {"Object ID": 573789723, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93958966, 32.774360446, -79.93958966, 32.774360446], "geometry": {"coordinates": [-79.93958966, 32.774360446], "type": "Point"}, "id": "648", "properties": {"Object ID": 573795552, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93997171, 32.777265081, -79.93997171, 32.777265081], "geometry": {"coordinates": [-79.93997171, 32.777265081], "type": "Point"}, "id": "649", "properties": {"Object ID": 573795664, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93978301, 32.777964217, -79.93978301, 32.777964217], "geometry": {"coordinates": [-79.93978301, 32.777964217], "type": "Point"}, "id": "650", "properties": {"Object ID": 573795687, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94603081, 32.776689581, -79.94603081, 32.776689581], "geometry": {"coordinates": [-79.94603081, 32.776689581], "type": "Point"}, "id": "651", "properties": {"Object ID": 573807503, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93276684, 32.781806628, -79.93276684, 32.781806628], "geometry": {"coordinates": [-79.93276684, 32.781806628], "type": "Point"}, "id": "652", "properties": {"Object ID": 574371567, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94054419, 32.772812341, -79.94054419, 32.772812341], "geometry": {"coordinates": [-79.94054419, 32.772812341], "type": "Point"}, "id": "653", "properties": {"Object ID": 574372060, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94018291, 32.773010452, -79.94018291, 32.773010452], "geometry": {"coordinates": [-79.94018291, 32.773010452], "type": "Point"}, "id": "654", "properties": {"Object ID": 574372072, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93666954, 32.773115876, -79.93666954, 32.773115876], "geometry": {"coordinates": [-79.93666954, 32.773115876], "type": "Point"}, "id": "655", "properties": {"Object ID": 574371910, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93528261, 32.780263613, -79.93528261, 32.780263613], "geometry": {"coordinates": [-79.93528261, 32.780263613], "type": "Point"}, "id": "656", "properties": {"Object ID": 574421947, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93411816, 32.780945961, -79.93411816, 32.780945961], "geometry": {"coordinates": [-79.93411816, 32.780945961], "type": "Point"}, "id": "657", "properties": {"Object ID": 574447824, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93622307, 32.774620925, -79.93622307, 32.774620925], "geometry": {"coordinates": [-79.93622307, 32.774620925], "type": "Point"}, "id": "658", "properties": {"Object ID": 574486868, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93218159, 32.775506556, -79.93218159, 32.775506556], "geometry": {"coordinates": [-79.93218159, 32.775506556], "type": "Point"}, "id": "659", "properties": {"Object ID": 574486892, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93570616, 32.778083429, -79.93570616, 32.778083429], "geometry": {"coordinates": [-79.93570616, 32.778083429], "type": "Point"}, "id": "660", "properties": {"Object ID": 574486999, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93392391, 32.781461064, -79.93392391, 32.781461064], "geometry": {"coordinates": [-79.93392391, 32.781461064], "type": "Point"}, "id": "661", "properties": {"Object ID": 574488437, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92950695, 32.77844283, -79.92950695, 32.77844283], "geometry": {"coordinates": [-79.92950695, 32.77844283], "type": "Point"}, "id": "662", "properties": {"Object ID": 573783284, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93094355, 32.778464521, -79.93094355, 32.778464521], "geometry": {"coordinates": [-79.93094355, 32.778464521], "type": "Point"}, "id": "663", "properties": {"Object ID": 573783297, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9291748, 32.780046684, -79.9291748, 32.780046684], "geometry": {"coordinates": [-79.9291748, 32.780046684], "type": "Point"}, "id": "664", "properties": {"Object ID": 574268055, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92536003, 32.779720867, -79.92536003, 32.779720867], "geometry": {"coordinates": [-79.92536003, 32.779720867], "type": "Point"}, "id": "665", "properties": {"Object ID": 574372310, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92893785, 32.778623909, -79.92893785, 32.778623909], "geometry": {"coordinates": [-79.92893785, 32.778623909], "type": "Point"}, "id": "666", "properties": {"Object ID": 574446465, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "667", "properties": {"Object ID": 574460989, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92738581, 32.77970087, -79.92738581, 32.77970087], "geometry": {"coordinates": [-79.92738581, 32.77970087], "type": "Point"}, "id": "668", "properties": {"Object ID": 574461288, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92947662, 32.778394904, -79.92947662, 32.778394904], "geometry": {"coordinates": [-79.92947662, 32.778394904], "type": "Point"}, "id": "669", "properties": {"Object ID": 574488685, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93288729, 32.78040061, -79.93288729, 32.78040061], "geometry": {"coordinates": [-79.93288729, 32.78040061], "type": "Point"}, "id": "670", "properties": {"Object ID": 573387916, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191667, 32.780486772, -79.93191667, 32.780486772], "geometry": {"coordinates": [-79.93191667, 32.780486772], "type": "Point"}, "id": "671", "properties": {"Object ID": 573387920, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9326316, 32.781124507, -79.9326316, 32.781124507], "geometry": {"coordinates": [-79.9326316, 32.781124507], "type": "Point"}, "id": "672", "properties": {"Object ID": 574371550, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "673", "properties": {"Object ID": 574447798, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "674", "properties": {"Object ID": 574447810, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "675", "properties": {"Object ID": 574447812, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93370546, 32.780669368, -79.93370546, 32.780669368], "geometry": {"coordinates": [-79.93370546, 32.780669368], "type": "Point"}, "id": "676", "properties": {"Object ID": 574447816, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93411816, 32.780945961, -79.93411816, 32.780945961], "geometry": {"coordinates": [-79.93411816, 32.780945961], "type": "Point"}, "id": "677", "properties": {"Object ID": 574447826, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93368836, 32.78091163, -79.93368836, 32.78091163], "geometry": {"coordinates": [-79.93368836, 32.78091163], "type": "Point"}, "id": "678", "properties": {"Object ID": 574447836, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505067, 32.780686378, -79.93505067, 32.780686378], "geometry": {"coordinates": [-79.93505067, 32.780686378], "type": "Point"}, "id": "679", "properties": {"Object ID": 574455485, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505067, 32.780686378, -79.93505067, 32.780686378], "geometry": {"coordinates": [-79.93505067, 32.780686378], "type": "Point"}, "id": "680", "properties": {"Object ID": 574455486, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93289652, 32.780858639, -79.93289652, 32.780858639], "geometry": {"coordinates": [-79.93289652, 32.780858639], "type": "Point"}, "id": "681", "properties": {"Object ID": 574460943, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681104, 32.778289954, -79.92681104, 32.778289954], "geometry": {"coordinates": [-79.92681104, 32.778289954], "type": "Point"}, "id": "682", "properties": {"Object ID": 573407532, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92913919, 32.780523417, -79.92913919, 32.780523417], "geometry": {"coordinates": [-79.92913919, 32.780523417], "type": "Point"}, "id": "683", "properties": {"Object ID": 573463562, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92839527, 32.77175843, -79.92839527, 32.77175843], "geometry": {"coordinates": [-79.92839527, 32.77175843], "type": "Point"}, "id": "684", "properties": {"Object ID": 573467723, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92922584, 32.770686687, -79.92922584, 32.770686687], "geometry": {"coordinates": [-79.92922584, 32.770686687], "type": "Point"}, "id": "685", "properties": {"Object ID": 573467726, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92868859, 32.770611556, -79.92868859, 32.770611556], "geometry": {"coordinates": [-79.92868859, 32.770611556], "type": "Point"}, "id": "686", "properties": {"Object ID": 573467727, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92929336, 32.770856818, -79.92929336, 32.770856818], "geometry": {"coordinates": [-79.92929336, 32.770856818], "type": "Point"}, "id": "687", "properties": {"Object ID": 573467728, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92860345, 32.770856816, -79.92860345, 32.770856816], "geometry": {"coordinates": [-79.92860345, 32.770856816], "type": "Point"}, "id": "688", "properties": {"Object ID": 573467729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.928633, 32.771059561, -79.928633, 32.771059561], "geometry": {"coordinates": [-79.928633, 32.771059561], "type": "Point"}, "id": "689", "properties": {"Object ID": 573467730, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92924984, 32.77110611, -79.92924984, 32.77110611], "geometry": {"coordinates": [-79.92924984, 32.77110611], "type": "Point"}, "id": "690", "properties": {"Object ID": 573467731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92905401, 32.77139283, -79.92905401, 32.77139283], "geometry": {"coordinates": [-79.92905401, 32.77139283], "type": "Point"}, "id": "691", "properties": {"Object ID": 573467735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92926183, 32.771492098, -79.92926183, 32.771492098], "geometry": {"coordinates": [-79.92926183, 32.771492098], "type": "Point"}, "id": "692", "properties": {"Object ID": 573467737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92890022, 32.771928889, -79.92890022, 32.771928889], "geometry": {"coordinates": [-79.92890022, 32.771928889], "type": "Point"}, "id": "693", "properties": {"Object ID": 573467741, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92805491, 32.771993839, -79.92805491, 32.771993839], "geometry": {"coordinates": [-79.92805491, 32.771993839], "type": "Point"}, "id": "694", "properties": {"Object ID": 573467746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.929019, 32.770324, -79.929019, 32.770324], "geometry": {"coordinates": [-79.929019, 32.770324], "type": "Point"}, "id": "695", "properties": {"Object ID": 573467747, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92998203, 32.782339142, -79.92998203, 32.782339142], "geometry": {"coordinates": [-79.92998203, 32.782339142], "type": "Point"}, "id": "696", "properties": {"Object ID": 573467946, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9296311, 32.782353895, -79.9296311, 32.782353895], "geometry": {"coordinates": [-79.9296311, 32.782353895], "type": "Point"}, "id": "697", "properties": {"Object ID": 573467948, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92954539, 32.782384969, -79.92954539, 32.782384969], "geometry": {"coordinates": [-79.92954539, 32.782384969], "type": "Point"}, "id": "698", "properties": {"Object ID": 573467951, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93034224, 32.782788355, -79.93034224, 32.782788355], "geometry": {"coordinates": [-79.93034224, 32.782788355], "type": "Point"}, "id": "699", "properties": {"Object ID": 573467963, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92878222, 32.773090161, -79.92878222, 32.773090161], "geometry": {"coordinates": [-79.92878222, 32.773090161], "type": "Point"}, "id": "700", "properties": {"Object ID": 573779311, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765306, 32.773234724, -79.92765306, 32.773234724], "geometry": {"coordinates": [-79.92765306, 32.773234724], "type": "Point"}, "id": "701", "properties": {"Object ID": 573779319, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92764858, 32.773515572, -79.92764858, 32.773515572], "geometry": {"coordinates": [-79.92764858, 32.773515572], "type": "Point"}, "id": "702", "properties": {"Object ID": 573779335, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92840483, 32.774112545, -79.92840483, 32.774112545], "geometry": {"coordinates": [-79.92840483, 32.774112545], "type": "Point"}, "id": "703", "properties": {"Object ID": 573779357, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92751869, 32.77433957, -79.92751869, 32.77433957], "geometry": {"coordinates": [-79.92751869, 32.77433957], "type": "Point"}, "id": "704", "properties": {"Object ID": 573779369, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92749568, 32.774537733, -79.92749568, 32.774537733], "geometry": {"coordinates": [-79.92749568, 32.774537733], "type": "Point"}, "id": "705", "properties": {"Object ID": 573779385, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92743299, 32.775021932, -79.92743299, 32.775021932], "geometry": {"coordinates": [-79.92743299, 32.775021932], "type": "Point"}, "id": "706", "properties": {"Object ID": 573779415, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92796935, 32.778662763, -79.92796935, 32.778662763], "geometry": {"coordinates": [-79.92796935, 32.778662763], "type": "Point"}, "id": "707", "properties": {"Object ID": 573779425, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92842468, 32.778619655, -79.92842468, 32.778619655], "geometry": {"coordinates": [-79.92842468, 32.778619655], "type": "Point"}, "id": "708", "properties": {"Object ID": 573782393, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92842468, 32.778619655, -79.92842468, 32.778619655], "geometry": {"coordinates": [-79.92842468, 32.778619655], "type": "Point"}, "id": "709", "properties": {"Object ID": 573782395, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92836098, 32.779305088, -79.92836098, 32.779305088], "geometry": {"coordinates": [-79.92836098, 32.779305088], "type": "Point"}, "id": "710", "properties": {"Object ID": 573782403, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9285359, 32.779643027, -79.9285359, 32.779643027], "geometry": {"coordinates": [-79.9285359, 32.779643027], "type": "Point"}, "id": "711", "properties": {"Object ID": 573782407, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92933255, 32.772267939, -79.92933255, 32.772267939], "geometry": {"coordinates": [-79.92933255, 32.772267939], "type": "Point"}, "id": "712", "properties": {"Object ID": 573782417, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92929796, 32.772372007, -79.92929796, 32.772372007], "geometry": {"coordinates": [-79.92929796, 32.772372007], "type": "Point"}, "id": "713", "properties": {"Object ID": 573782425, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92831106, 32.772640619, -79.92831106, 32.772640619], "geometry": {"coordinates": [-79.92831106, 32.772640619], "type": "Point"}, "id": "714", "properties": {"Object ID": 573782443, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92864422, 32.77279569, -79.92864422, 32.77279569], "geometry": {"coordinates": [-79.92864422, 32.77279569], "type": "Point"}, "id": "715", "properties": {"Object ID": 573782449, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92910961, 32.777958283, -79.92910961, 32.777958283], "geometry": {"coordinates": [-79.92910961, 32.777958283], "type": "Point"}, "id": "716", "properties": {"Object ID": 573782493, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92813575, 32.778079241, -79.92813575, 32.778079241], "geometry": {"coordinates": [-79.92813575, 32.778079241], "type": "Point"}, "id": "717", "properties": {"Object ID": 573782495, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92891453, 32.777767176, -79.92891453, 32.777767176], "geometry": {"coordinates": [-79.92891453, 32.777767176], "type": "Point"}, "id": "718", "properties": {"Object ID": 573782512, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92865918, 32.7750572, -79.92865918, 32.7750572], "geometry": {"coordinates": [-79.92865918, 32.7750572], "type": "Point"}, "id": "719", "properties": {"Object ID": 573782516, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9284404, 32.775666181, -79.9284404, 32.775666181], "geometry": {"coordinates": [-79.9284404, 32.775666181], "type": "Point"}, "id": "720", "properties": {"Object ID": 573782540, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92852646, 32.775996194, -79.92852646, 32.775996194], "geometry": {"coordinates": [-79.92852646, 32.775996194], "type": "Point"}, "id": "721", "properties": {"Object ID": 573782554, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93017261, 32.772909565, -79.93017261, 32.772909565], "geometry": {"coordinates": [-79.93017261, 32.772909565], "type": "Point"}, "id": "722", "properties": {"Object ID": 573782586, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92919073, 32.77440531, -79.92919073, 32.77440531], "geometry": {"coordinates": [-79.92919073, 32.77440531], "type": "Point"}, "id": "723", "properties": {"Object ID": 573783169, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92928354, 32.774527291, -79.92928354, 32.774527291], "geometry": {"coordinates": [-79.92928354, 32.774527291], "type": "Point"}, "id": "724", "properties": {"Object ID": 573783179, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93016895, 32.774630317, -79.93016895, 32.774630317], "geometry": {"coordinates": [-79.93016895, 32.774630317], "type": "Point"}, "id": "725", "properties": {"Object ID": 573783187, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93028267, 32.774664403, -79.93028267, 32.774664403], "geometry": {"coordinates": [-79.93028267, 32.774664403], "type": "Point"}, "id": "726", "properties": {"Object ID": 573783189, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92921208, 32.774721509, -79.92921208, 32.774721509], "geometry": {"coordinates": [-79.92921208, 32.774721509], "type": "Point"}, "id": "727", "properties": {"Object ID": 573783199, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93004161, 32.778371848, -79.93004161, 32.778371848], "geometry": {"coordinates": [-79.93004161, 32.778371848], "type": "Point"}, "id": "728", "properties": {"Object ID": 573783278, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92950695, 32.77844283, -79.92950695, 32.77844283], "geometry": {"coordinates": [-79.92950695, 32.77844283], "type": "Point"}, "id": "729", "properties": {"Object ID": 573783282, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92970399, 32.778582016, -79.92970399, 32.778582016], "geometry": {"coordinates": [-79.92970399, 32.778582016], "type": "Point"}, "id": "730", "properties": {"Object ID": 573783290, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93027735, 32.779357218, -79.93027735, 32.779357218], "geometry": {"coordinates": [-79.93027735, 32.779357218], "type": "Point"}, "id": "731", "properties": {"Object ID": 573783321, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997355, 32.777842066, -79.92997355, 32.777842066], "geometry": {"coordinates": [-79.92997355, 32.777842066], "type": "Point"}, "id": "732", "properties": {"Object ID": 573783327, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93015806, 32.771913194, -79.93015806, 32.771913194], "geometry": {"coordinates": [-79.93015806, 32.771913194], "type": "Point"}, "id": "733", "properties": {"Object ID": 573783443, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92996727, 32.771829327, -79.92996727, 32.771829327], "geometry": {"coordinates": [-79.92996727, 32.771829327], "type": "Point"}, "id": "734", "properties": {"Object ID": 573783445, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92746902, 32.777122924, -79.92746902, 32.777122924], "geometry": {"coordinates": [-79.92746902, 32.777122924], "type": "Point"}, "id": "735", "properties": {"Object ID": 573827136, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92730578, 32.777707213, -79.92730578, 32.777707213], "geometry": {"coordinates": [-79.92730578, 32.777707213], "type": "Point"}, "id": "736", "properties": {"Object ID": 573827142, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92780251, 32.777958909, -79.92780251, 32.777958909], "geometry": {"coordinates": [-79.92780251, 32.777958909], "type": "Point"}, "id": "737", "properties": {"Object ID": 573827148, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92787224, 32.781358849, -79.92787224, 32.781358849], "geometry": {"coordinates": [-79.92787224, 32.781358849], "type": "Point"}, "id": "738", "properties": {"Object ID": 573827364, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92777195, 32.781674281, -79.92777195, 32.781674281], "geometry": {"coordinates": [-79.92777195, 32.781674281], "type": "Point"}, "id": "739", "properties": {"Object ID": 573827366, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92959283, 32.776794111, -79.92959283, 32.776794111], "geometry": {"coordinates": [-79.92959283, 32.776794111], "type": "Point"}, "id": "740", "properties": {"Object ID": 573827731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92959283, 32.776794111, -79.92959283, 32.776794111], "geometry": {"coordinates": [-79.92959283, 32.776794111], "type": "Point"}, "id": "741", "properties": {"Object ID": 573827733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92959283, 32.776794111, -79.92959283, 32.776794111], "geometry": {"coordinates": [-79.92959283, 32.776794111], "type": "Point"}, "id": "742", "properties": {"Object ID": 573827735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93017988, 32.776819591, -79.93017988, 32.776819591], "geometry": {"coordinates": [-79.93017988, 32.776819591], "type": "Point"}, "id": "743", "properties": {"Object ID": 573827754, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92951778, 32.777494394, -79.92951778, 32.777494394], "geometry": {"coordinates": [-79.92951778, 32.777494394], "type": "Point"}, "id": "744", "properties": {"Object ID": 573827769, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92920715, 32.78276068, -79.92920715, 32.78276068], "geometry": {"coordinates": [-79.92920715, 32.78276068], "type": "Point"}, "id": "745", "properties": {"Object ID": 573827771, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9294362, 32.783137529, -79.9294362, 32.783137529], "geometry": {"coordinates": [-79.9294362, 32.783137529], "type": "Point"}, "id": "746", "properties": {"Object ID": 573827794, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93040738, 32.781275186, -79.93040738, 32.781275186], "geometry": {"coordinates": [-79.93040738, 32.781275186], "type": "Point"}, "id": "747", "properties": {"Object ID": 573831831, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92692669, 32.78147486, -79.92692669, 32.78147486], "geometry": {"coordinates": [-79.92692669, 32.78147486], "type": "Point"}, "id": "748", "properties": {"Object ID": 574267586, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92617574, 32.781501592, -79.92617574, 32.781501592], "geometry": {"coordinates": [-79.92617574, 32.781501592], "type": "Point"}, "id": "749", "properties": {"Object ID": 574267594, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92682845, 32.782317397, -79.92682845, 32.782317397], "geometry": {"coordinates": [-79.92682845, 32.782317397], "type": "Point"}, "id": "750", "properties": {"Object ID": 574267598, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92744398, 32.775221138, -79.92744398, 32.775221138], "geometry": {"coordinates": [-79.92744398, 32.775221138], "type": "Point"}, "id": "751", "properties": {"Object ID": 574267735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92811401, 32.775152887, -79.92811401, 32.775152887], "geometry": {"coordinates": [-79.92811401, 32.775152887], "type": "Point"}, "id": "752", "properties": {"Object ID": 574267737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92800828, 32.77526518, -79.92800828, 32.77526518], "geometry": {"coordinates": [-79.92800828, 32.77526518], "type": "Point"}, "id": "753", "properties": {"Object ID": 574267739, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92788864, 32.77557876, -79.92788864, 32.77557876], "geometry": {"coordinates": [-79.92788864, 32.77557876], "type": "Point"}, "id": "754", "properties": {"Object ID": 574267749, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92794047, 32.776035788, -79.92794047, 32.776035788], "geometry": {"coordinates": [-79.92794047, 32.776035788], "type": "Point"}, "id": "755", "properties": {"Object ID": 574267976, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772127, 32.776048279, -79.92772127, 32.776048279], "geometry": {"coordinates": [-79.92772127, 32.776048279], "type": "Point"}, "id": "756", "properties": {"Object ID": 574268005, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9291748, 32.780046684, -79.9291748, 32.780046684], "geometry": {"coordinates": [-79.9291748, 32.780046684], "type": "Point"}, "id": "757", "properties": {"Object ID": 574268049, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92987341, 32.774975591, -79.92987341, 32.774975591], "geometry": {"coordinates": [-79.92987341, 32.774975591], "type": "Point"}, "id": "758", "properties": {"Object ID": 574346733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92934753, 32.774969361, -79.92934753, 32.774969361], "geometry": {"coordinates": [-79.92934753, 32.774969361], "type": "Point"}, "id": "759", "properties": {"Object ID": 574346737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997655, 32.774978291, -79.92997655, 32.774978291], "geometry": {"coordinates": [-79.92997655, 32.774978291], "type": "Point"}, "id": "760", "properties": {"Object ID": 574346738, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92924438, 32.775144793, -79.92924438, 32.775144793], "geometry": {"coordinates": [-79.92924438, 32.775144793], "type": "Point"}, "id": "761", "properties": {"Object ID": 574346740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92929333, 32.775337089, -79.92929333, 32.775337089], "geometry": {"coordinates": [-79.92929333, 32.775337089], "type": "Point"}, "id": "762", "properties": {"Object ID": 574346744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92981335, 32.775770066, -79.92981335, 32.775770066], "geometry": {"coordinates": [-79.92981335, 32.775770066], "type": "Point"}, "id": "763", "properties": {"Object ID": 574346753, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92476988, 32.780379241, -79.92476988, 32.780379241], "geometry": {"coordinates": [-79.92476988, 32.780379241], "type": "Point"}, "id": "764", "properties": {"Object ID": 574372314, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92900036, 32.776107722, -79.92900036, 32.776107722], "geometry": {"coordinates": [-79.92900036, 32.776107722], "type": "Point"}, "id": "765", "properties": {"Object ID": 574372447, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92900036, 32.776107722, -79.92900036, 32.776107722], "geometry": {"coordinates": [-79.92900036, 32.776107722], "type": "Point"}, "id": "766", "properties": {"Object ID": 574372448, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92881546, 32.776447296, -79.92881546, 32.776447296], "geometry": {"coordinates": [-79.92881546, 32.776447296], "type": "Point"}, "id": "767", "properties": {"Object ID": 574372473, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93032633, 32.775998298, -79.93032633, 32.775998298], "geometry": {"coordinates": [-79.93032633, 32.775998298], "type": "Point"}, "id": "768", "properties": {"Object ID": 574372533, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938805, 32.776236693, -79.92938805, 32.776236693], "geometry": {"coordinates": [-79.92938805, 32.776236693], "type": "Point"}, "id": "769", "properties": {"Object ID": 574372543, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92958905, 32.776381714, -79.92958905, 32.776381714], "geometry": {"coordinates": [-79.92958905, 32.776381714], "type": "Point"}, "id": "770", "properties": {"Object ID": 574372567, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92846361, 32.776973025, -79.92846361, 32.776973025], "geometry": {"coordinates": [-79.92846361, 32.776973025], "type": "Point"}, "id": "771", "properties": {"Object ID": 574421681, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92846361, 32.776973025, -79.92846361, 32.776973025], "geometry": {"coordinates": [-79.92846361, 32.776973025], "type": "Point"}, "id": "772", "properties": {"Object ID": 574421683, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92646291, 32.77728981, -79.92646291, 32.77728981], "geometry": {"coordinates": [-79.92646291, 32.77728981], "type": "Point"}, "id": "773", "properties": {"Object ID": 574431298, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92664858, 32.779055723, -79.92664858, 32.779055723], "geometry": {"coordinates": [-79.92664858, 32.779055723], "type": "Point"}, "id": "774", "properties": {"Object ID": 574435925, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92692192, 32.77999463, -79.92692192, 32.77999463], "geometry": {"coordinates": [-79.92692192, 32.77999463], "type": "Point"}, "id": "775", "properties": {"Object ID": 574435929, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92643612, 32.780279013, -79.92643612, 32.780279013], "geometry": {"coordinates": [-79.92643612, 32.780279013], "type": "Point"}, "id": "776", "properties": {"Object ID": 574451295, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9265575, 32.7779802, -79.9265575, 32.7779802], "geometry": {"coordinates": [-79.9265575, 32.7779802], "type": "Point"}, "id": "777", "properties": {"Object ID": 574453714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9265575, 32.7779802, -79.9265575, 32.7779802], "geometry": {"coordinates": [-79.9265575, 32.7779802], "type": "Point"}, "id": "778", "properties": {"Object ID": 574453719, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92653241, 32.777628862, -79.92653241, 32.777628862], "geometry": {"coordinates": [-79.92653241, 32.777628862], "type": "Point"}, "id": "779", "properties": {"Object ID": 574455174, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92656424, 32.778612183, -79.92656424, 32.778612183], "geometry": {"coordinates": [-79.92656424, 32.778612183], "type": "Point"}, "id": "780", "properties": {"Object ID": 574457056, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93005522, 32.780237264, -79.93005522, 32.780237264], "geometry": {"coordinates": [-79.93005522, 32.780237264], "type": "Point"}, "id": "781", "properties": {"Object ID": 574461023, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9297417, 32.776818232, -79.9297417, 32.776818232], "geometry": {"coordinates": [-79.9297417, 32.776818232], "type": "Point"}, "id": "782", "properties": {"Object ID": 574461065, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92950828, 32.776424893, -79.92950828, 32.776424893], "geometry": {"coordinates": [-79.92950828, 32.776424893], "type": "Point"}, "id": "783", "properties": {"Object ID": 574461073, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92903083, 32.776368402, -79.92903083, 32.776368402], "geometry": {"coordinates": [-79.92903083, 32.776368402], "type": "Point"}, "id": "784", "properties": {"Object ID": 574461077, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92860499, 32.776487427, -79.92860499, 32.776487427], "geometry": {"coordinates": [-79.92860499, 32.776487427], "type": "Point"}, "id": "785", "properties": {"Object ID": 574461079, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9268905, 32.782767342, -79.9268905, 32.782767342], "geometry": {"coordinates": [-79.9268905, 32.782767342], "type": "Point"}, "id": "786", "properties": {"Object ID": 574461282, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92749926, 32.780354163, -79.92749926, 32.780354163], "geometry": {"coordinates": [-79.92749926, 32.780354163], "type": "Point"}, "id": "787", "properties": {"Object ID": 574461285, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681259, 32.780233741, -79.92681259, 32.780233741], "geometry": {"coordinates": [-79.92681259, 32.780233741], "type": "Point"}, "id": "788", "properties": {"Object ID": 574461293, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93010382, 32.782773607, -79.93010382, 32.782773607], "geometry": {"coordinates": [-79.93010382, 32.782773607], "type": "Point"}, "id": "789", "properties": {"Object ID": 574488421, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "790", "properties": {"Object ID": 574488653, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "791", "properties": {"Object ID": 574488658, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "792", "properties": {"Object ID": 574488661, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92833261, 32.779168837, -79.92833261, 32.779168837], "geometry": {"coordinates": [-79.92833261, 32.779168837], "type": "Point"}, "id": "793", "properties": {"Object ID": 574488679, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92948115, 32.77847685, -79.92948115, 32.77847685], "geometry": {"coordinates": [-79.92948115, 32.77847685], "type": "Point"}, "id": "794", "properties": {"Object ID": 574488684, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "795", "properties": {"Object ID": 574488711, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92679108, 32.778909003, -79.92679108, 32.778909003], "geometry": {"coordinates": [-79.92679108, 32.778909003], "type": "Point"}, "id": "796", "properties": {"Object ID": 574488723, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92670704, 32.778289721, -79.92670704, 32.778289721], "geometry": {"coordinates": [-79.92670704, 32.778289721], "type": "Point"}, "id": "797", "properties": {"Object ID": 574488724, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "798", "properties": {"Object ID": 574488736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "799", "properties": {"Object ID": 574488743, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "800", "properties": {"Object ID": 574488744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "801", "properties": {"Object ID": 574488745, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "802", "properties": {"Object ID": 574488750, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92896336, 32.775975959, -79.92896336, 32.775975959], "geometry": {"coordinates": [-79.92896336, 32.775975959], "type": "Point"}, "id": "803", "properties": {"Object ID": 574488771, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "804", "properties": {"Object ID": 574488793, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92816916, 32.776277427, -79.92816916, 32.776277427], "geometry": {"coordinates": [-79.92816916, 32.776277427], "type": "Point"}, "id": "805", "properties": {"Object ID": 574488804, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92824222, 32.776275418, -79.92824222, 32.776275418], "geometry": {"coordinates": [-79.92824222, 32.776275418], "type": "Point"}, "id": "806", "properties": {"Object ID": 574488806, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92574958, 32.776331873, -79.92574958, 32.776331873], "geometry": {"coordinates": [-79.92574958, 32.776331873], "type": "Point"}, "id": "807", "properties": {"Object ID": 574488816, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9267068, 32.776164736, -79.9267068, 32.776164736], "geometry": {"coordinates": [-79.9267068, 32.776164736], "type": "Point"}, "id": "808", "properties": {"Object ID": 574488819, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92898379, 32.775180586, -79.92898379, 32.775180586], "geometry": {"coordinates": [-79.92898379, 32.775180586], "type": "Point"}, "id": "809", "properties": {"Object ID": 574488830, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92951787, 32.774706172, -79.92951787, 32.774706172], "geometry": {"coordinates": [-79.92951787, 32.774706172], "type": "Point"}, "id": "810", "properties": {"Object ID": 574488834, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92891, 32.77509288, -79.92891, 32.77509288], "geometry": {"coordinates": [-79.92891, 32.77509288], "type": "Point"}, "id": "811", "properties": {"Object ID": 574488837, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92763108, 32.774978951, -79.92763108, 32.774978951], "geometry": {"coordinates": [-79.92763108, 32.774978951], "type": "Point"}, "id": "812", "properties": {"Object ID": 574488848, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92671547, 32.775554202, -79.92671547, 32.775554202], "geometry": {"coordinates": [-79.92671547, 32.775554202], "type": "Point"}, "id": "813", "properties": {"Object ID": 574488851, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92914469, 32.77176507, -79.92914469, 32.77176507], "geometry": {"coordinates": [-79.92914469, 32.77176507], "type": "Point"}, "id": "814", "properties": {"Object ID": 574488874, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "815", "properties": {"Object ID": 574461003, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191116, 32.779781997, -79.93191116, 32.779781997], "geometry": {"coordinates": [-79.93191116, 32.779781997], "type": "Point"}, "id": "816", "properties": {"Object ID": 573387866, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191116, 32.779781997, -79.93191116, 32.779781997], "geometry": {"coordinates": [-79.93191116, 32.779781997], "type": "Point"}, "id": "817", "properties": {"Object ID": 573387870, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187083, 32.779462015, -79.93187083, 32.779462015], "geometry": {"coordinates": [-79.93187083, 32.779462015], "type": "Point"}, "id": "818", "properties": {"Object ID": 573387884, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187083, 32.779462015, -79.93187083, 32.779462015], "geometry": {"coordinates": [-79.93187083, 32.779462015], "type": "Point"}, "id": "819", "properties": {"Object ID": 573387886, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187083, 32.779462015, -79.93187083, 32.779462015], "geometry": {"coordinates": [-79.93187083, 32.779462015], "type": "Point"}, "id": "820", "properties": {"Object ID": 573387892, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93360899, 32.776033664, -79.93360899, 32.776033664], "geometry": {"coordinates": [-79.93360899, 32.776033664], "type": "Point"}, "id": "821", "properties": {"Object ID": 573475698, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93350694, 32.774931654, -79.93350694, 32.774931654], "geometry": {"coordinates": [-79.93350694, 32.774931654], "type": "Point"}, "id": "822", "properties": {"Object ID": 573475708, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93413964, 32.77496308, -79.93413964, 32.77496308], "geometry": {"coordinates": [-79.93413964, 32.77496308], "type": "Point"}, "id": "823", "properties": {"Object ID": 573475709, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93436789, 32.775053947, -79.93436789, 32.775053947], "geometry": {"coordinates": [-79.93436789, 32.775053947], "type": "Point"}, "id": "824", "properties": {"Object ID": 573475711, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93346705, 32.775369223, -79.93346705, 32.775369223], "geometry": {"coordinates": [-79.93346705, 32.775369223], "type": "Point"}, "id": "825", "properties": {"Object ID": 573475714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93438944, 32.775567239, -79.93438944, 32.775567239], "geometry": {"coordinates": [-79.93438944, 32.775567239], "type": "Point"}, "id": "826", "properties": {"Object ID": 573475717, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93378306, 32.775606407, -79.93378306, 32.775606407], "geometry": {"coordinates": [-79.93378306, 32.775606407], "type": "Point"}, "id": "827", "properties": {"Object ID": 573475718, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93355151, 32.775633988, -79.93355151, 32.775633988], "geometry": {"coordinates": [-79.93355151, 32.775633988], "type": "Point"}, "id": "828", "properties": {"Object ID": 573475719, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9344114, 32.775932355, -79.9344114, 32.775932355], "geometry": {"coordinates": [-79.9344114, 32.775932355], "type": "Point"}, "id": "829", "properties": {"Object ID": 573475722, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.933893, 32.775928348, -79.933893, 32.775928348], "geometry": {"coordinates": [-79.933893, 32.775928348], "type": "Point"}, "id": "830", "properties": {"Object ID": 573475723, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9338145, 32.775785, -79.9338145, 32.775785], "geometry": {"coordinates": [-79.9338145, 32.775785], "type": "Point"}, "id": "831", "properties": {"Object ID": 573475724, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93079852, 32.777638171, -79.93079852, 32.777638171], "geometry": {"coordinates": [-79.93079852, 32.777638171], "type": "Point"}, "id": "832", "properties": {"Object ID": 573783335, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93214152, 32.777204905, -79.93214152, 32.777204905], "geometry": {"coordinates": [-79.93214152, 32.777204905], "type": "Point"}, "id": "833", "properties": {"Object ID": 573785443, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93214152, 32.777204905, -79.93214152, 32.777204905], "geometry": {"coordinates": [-79.93214152, 32.777204905], "type": "Point"}, "id": "834", "properties": {"Object ID": 573785444, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93161064, 32.772703802, -79.93161064, 32.772703802], "geometry": {"coordinates": [-79.93161064, 32.772703802], "type": "Point"}, "id": "835", "properties": {"Object ID": 573785627, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93114084, 32.772836375, -79.93114084, 32.772836375], "geometry": {"coordinates": [-79.93114084, 32.772836375], "type": "Point"}, "id": "836", "properties": {"Object ID": 573785633, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93180744, 32.77302667, -79.93180744, 32.77302667], "geometry": {"coordinates": [-79.93180744, 32.77302667], "type": "Point"}, "id": "837", "properties": {"Object ID": 573785645, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9331389, 32.775167154, -79.9331389, 32.775167154], "geometry": {"coordinates": [-79.9331389, 32.775167154], "type": "Point"}, "id": "838", "properties": {"Object ID": 573785826, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93282842, 32.775506882, -79.93282842, 32.775506882], "geometry": {"coordinates": [-79.93282842, 32.775506882], "type": "Point"}, "id": "839", "properties": {"Object ID": 573785833, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93363477, 32.771683017, -79.93363477, 32.771683017], "geometry": {"coordinates": [-79.93363477, 32.771683017], "type": "Point"}, "id": "840", "properties": {"Object ID": 573785879, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93366622, 32.772009247, -79.93366622, 32.772009247], "geometry": {"coordinates": [-79.93366622, 32.772009247], "type": "Point"}, "id": "841", "properties": {"Object ID": 573785895, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93256642, 32.772005755, -79.93256642, 32.772005755], "geometry": {"coordinates": [-79.93256642, 32.772005755], "type": "Point"}, "id": "842", "properties": {"Object ID": 573785897, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93372203, 32.772786731, -79.93372203, 32.772786731], "geometry": {"coordinates": [-79.93372203, 32.772786731], "type": "Point"}, "id": "843", "properties": {"Object ID": 573785913, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9333603, 32.772834737, -79.9333603, 32.772834737], "geometry": {"coordinates": [-79.9333603, 32.772834737], "type": "Point"}, "id": "844", "properties": {"Object ID": 573785915, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93248569, 32.773119952, -79.93248569, 32.773119952], "geometry": {"coordinates": [-79.93248569, 32.773119952], "type": "Point"}, "id": "845", "properties": {"Object ID": 573785927, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93385672, 32.773355253, -79.93385672, 32.773355253], "geometry": {"coordinates": [-79.93385672, 32.773355253], "type": "Point"}, "id": "846", "properties": {"Object ID": 573785931, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93257043, 32.773796019, -79.93257043, 32.773796019], "geometry": {"coordinates": [-79.93257043, 32.773796019], "type": "Point"}, "id": "847", "properties": {"Object ID": 573785948, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93440146, 32.773777543, -79.93440146, 32.773777543], "geometry": {"coordinates": [-79.93440146, 32.773777543], "type": "Point"}, "id": "848", "properties": {"Object ID": 573789030, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542728, 32.7746297, -79.93542728, 32.7746297], "geometry": {"coordinates": [-79.93542728, 32.7746297], "type": "Point"}, "id": "849", "properties": {"Object ID": 573789138, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93525106, 32.775418782, -79.93525106, 32.775418782], "geometry": {"coordinates": [-79.93525106, 32.775418782], "type": "Point"}, "id": "850", "properties": {"Object ID": 573789147, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93667741, 32.776584619, -79.93667741, 32.776584619], "geometry": {"coordinates": [-79.93667741, 32.776584619], "type": "Point"}, "id": "851", "properties": {"Object ID": 573789178, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242602, 32.774634875, -79.93242602, 32.774634875], "geometry": {"coordinates": [-79.93242602, 32.774634875], "type": "Point"}, "id": "852", "properties": {"Object ID": 573831664, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93163876, 32.77495676, -79.93163876, 32.77495676], "geometry": {"coordinates": [-79.93163876, 32.77495676], "type": "Point"}, "id": "853", "properties": {"Object ID": 573831695, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9322801, 32.776149882, -79.9322801, 32.776149882], "geometry": {"coordinates": [-79.9322801, 32.776149882], "type": "Point"}, "id": "854", "properties": {"Object ID": 573831740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93162921, 32.77607049, -79.93162921, 32.77607049], "geometry": {"coordinates": [-79.93162921, 32.77607049], "type": "Point"}, "id": "855", "properties": {"Object ID": 573831752, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93223243, 32.776189875, -79.93223243, 32.776189875], "geometry": {"coordinates": [-79.93223243, 32.776189875], "type": "Point"}, "id": "856", "properties": {"Object ID": 573831756, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93153616, 32.774791501, -79.93153616, 32.774791501], "geometry": {"coordinates": [-79.93153616, 32.774791501], "type": "Point"}, "id": "857", "properties": {"Object ID": 573831760, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9328372, 32.778732752, -79.9328372, 32.778732752], "geometry": {"coordinates": [-79.9328372, 32.778732752], "type": "Point"}, "id": "858", "properties": {"Object ID": 573831762, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93214434, 32.778087636, -79.93214434, 32.778087636], "geometry": {"coordinates": [-79.93214434, 32.778087636], "type": "Point"}, "id": "859", "properties": {"Object ID": 573831774, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93286677, 32.778913318, -79.93286677, 32.778913318], "geometry": {"coordinates": [-79.93286677, 32.778913318], "type": "Point"}, "id": "860", "properties": {"Object ID": 573831794, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93286337, 32.778922257, -79.93286337, 32.778922257], "geometry": {"coordinates": [-79.93286337, 32.778922257], "type": "Point"}, "id": "861", "properties": {"Object ID": 573831811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93339798, 32.770887763, -79.93339798, 32.770887763], "geometry": {"coordinates": [-79.93339798, 32.770887763], "type": "Point"}, "id": "862", "properties": {"Object ID": 573841010, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93291882, 32.771096194, -79.93291882, 32.771096194], "geometry": {"coordinates": [-79.93291882, 32.771096194], "type": "Point"}, "id": "863", "properties": {"Object ID": 573841014, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93364348, 32.77140757, -79.93364348, 32.77140757], "geometry": {"coordinates": [-79.93364348, 32.77140757], "type": "Point"}, "id": "864", "properties": {"Object ID": 573841022, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93572727, 32.772035734, -79.93572727, 32.772035734], "geometry": {"coordinates": [-79.93572727, 32.772035734], "type": "Point"}, "id": "865", "properties": {"Object ID": 573850067, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93617873, 32.772287908, -79.93617873, 32.772287908], "geometry": {"coordinates": [-79.93617873, 32.772287908], "type": "Point"}, "id": "866", "properties": {"Object ID": 573850071, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93577462, 32.772317111, -79.93577462, 32.772317111], "geometry": {"coordinates": [-79.93577462, 32.772317111], "type": "Point"}, "id": "867", "properties": {"Object ID": 573850073, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93579285, 32.772520263, -79.93579285, 32.772520263], "geometry": {"coordinates": [-79.93579285, 32.772520263], "type": "Point"}, "id": "868", "properties": {"Object ID": 573850080, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93583814, 32.773007524, -79.93583814, 32.773007524], "geometry": {"coordinates": [-79.93583814, 32.773007524], "type": "Point"}, "id": "869", "properties": {"Object ID": 573850090, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93590682, 32.773253196, -79.93590682, 32.773253196], "geometry": {"coordinates": [-79.93590682, 32.773253196], "type": "Point"}, "id": "870", "properties": {"Object ID": 573850096, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93140677, 32.771893335, -79.93140677, 32.771893335], "geometry": {"coordinates": [-79.93140677, 32.771893335], "type": "Point"}, "id": "871", "properties": {"Object ID": 574268217, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93128147, 32.772442711, -79.93128147, 32.772442711], "geometry": {"coordinates": [-79.93128147, 32.772442711], "type": "Point"}, "id": "872", "properties": {"Object ID": 574268243, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93349048, 32.769855029, -79.93349048, 32.769855029], "geometry": {"coordinates": [-79.93349048, 32.769855029], "type": "Point"}, "id": "873", "properties": {"Object ID": 574268569, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93413876, 32.770269086, -79.93413876, 32.770269086], "geometry": {"coordinates": [-79.93413876, 32.770269086], "type": "Point"}, "id": "874", "properties": {"Object ID": 574268587, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93329024, 32.770458633, -79.93329024, 32.770458633], "geometry": {"coordinates": [-79.93329024, 32.770458633], "type": "Point"}, "id": "875", "properties": {"Object ID": 574268610, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93487211, 32.771806515, -79.93487211, 32.771806515], "geometry": {"coordinates": [-79.93487211, 32.771806515], "type": "Point"}, "id": "876", "properties": {"Object ID": 574268702, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9359361, 32.775221257, -79.9359361, 32.775221257], "geometry": {"coordinates": [-79.9359361, 32.775221257], "type": "Point"}, "id": "877", "properties": {"Object ID": 574268798, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93588042, 32.775509244, -79.93588042, 32.775509244], "geometry": {"coordinates": [-79.93588042, 32.775509244], "type": "Point"}, "id": "878", "properties": {"Object ID": 574268808, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93638706, 32.776937652, -79.93638706, 32.776937652], "geometry": {"coordinates": [-79.93638706, 32.776937652], "type": "Point"}, "id": "879", "properties": {"Object ID": 574268942, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93671244, 32.777244439, -79.93671244, 32.777244439], "geometry": {"coordinates": [-79.93671244, 32.777244439], "type": "Point"}, "id": "880", "properties": {"Object ID": 574268955, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93151186, 32.774118231, -79.93151186, 32.774118231], "geometry": {"coordinates": [-79.93151186, 32.774118231], "type": "Point"}, "id": "881", "properties": {"Object ID": 574293787, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93236964, 32.774375972, -79.93236964, 32.774375972], "geometry": {"coordinates": [-79.93236964, 32.774375972], "type": "Point"}, "id": "882", "properties": {"Object ID": 574293803, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93619081, 32.770083745, -79.93619081, 32.770083745], "geometry": {"coordinates": [-79.93619081, 32.770083745], "type": "Point"}, "id": "883", "properties": {"Object ID": 574294741, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93574513, 32.770557858, -79.93574513, 32.770557858], "geometry": {"coordinates": [-79.93574513, 32.770557858], "type": "Point"}, "id": "884", "properties": {"Object ID": 574294747, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93592786, 32.770507557, -79.93592786, 32.770507557], "geometry": {"coordinates": [-79.93592786, 32.770507557], "type": "Point"}, "id": "885", "properties": {"Object ID": 574294749, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93315148, 32.778091191, -79.93315148, 32.778091191], "geometry": {"coordinates": [-79.93315148, 32.778091191], "type": "Point"}, "id": "886", "properties": {"Object ID": 574371685, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9334065, 32.777989, -79.9334065, 32.777989], "geometry": {"coordinates": [-79.9334065, 32.777989], "type": "Point"}, "id": "887", "properties": {"Object ID": 574371689, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505033, 32.77773103, -79.93505033, 32.77773103], "geometry": {"coordinates": [-79.93505033, 32.77773103], "type": "Point"}, "id": "888", "properties": {"Object ID": 574371757, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93590816, 32.777795982, -79.93590816, 32.777795982], "geometry": {"coordinates": [-79.93590816, 32.777795982], "type": "Point"}, "id": "889", "properties": {"Object ID": 574371763, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93537559, 32.777868024, -79.93537559, 32.777868024], "geometry": {"coordinates": [-79.93537559, 32.777868024], "type": "Point"}, "id": "890", "properties": {"Object ID": 574371767, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93524323, 32.778317105, -79.93524323, 32.778317105], "geometry": {"coordinates": [-79.93524323, 32.778317105], "type": "Point"}, "id": "891", "properties": {"Object ID": 574371775, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93074816, 32.77631412, -79.93074816, 32.77631412], "geometry": {"coordinates": [-79.93074816, 32.77631412], "type": "Point"}, "id": "892", "properties": {"Object ID": 574372549, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93155486, 32.770746994, -79.93155486, 32.770746994], "geometry": {"coordinates": [-79.93155486, 32.770746994], "type": "Point"}, "id": "893", "properties": {"Object ID": 574372697, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93147052, 32.771614819, -79.93147052, 32.771614819], "geometry": {"coordinates": [-79.93147052, 32.771614819], "type": "Point"}, "id": "894", "properties": {"Object ID": 574372723, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93065646, 32.771764304, -79.93065646, 32.771764304], "geometry": {"coordinates": [-79.93065646, 32.771764304], "type": "Point"}, "id": "895", "properties": {"Object ID": 574372733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505947, 32.777107924, -79.93505947, 32.777107924], "geometry": {"coordinates": [-79.93505947, 32.777107924], "type": "Point"}, "id": "896", "properties": {"Object ID": 574372981, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93390382, 32.776978556, -79.93390382, 32.776978556], "geometry": {"coordinates": [-79.93390382, 32.776978556], "type": "Point"}, "id": "897", "properties": {"Object ID": 574409638, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93286925, 32.776423337, -79.93286925, 32.776423337], "geometry": {"coordinates": [-79.93286925, 32.776423337], "type": "Point"}, "id": "898", "properties": {"Object ID": 574409641, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93340489, 32.776451748, -79.93340489, 32.776451748], "geometry": {"coordinates": [-79.93340489, 32.776451748], "type": "Point"}, "id": "899", "properties": {"Object ID": 574409643, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93296787, 32.776879729, -79.93296787, 32.776879729], "geometry": {"coordinates": [-79.93296787, 32.776879729], "type": "Point"}, "id": "900", "properties": {"Object ID": 574409647, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93463591, 32.777016773, -79.93463591, 32.777016773], "geometry": {"coordinates": [-79.93463591, 32.777016773], "type": "Point"}, "id": "901", "properties": {"Object ID": 574409653, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93305299, 32.777086839, -79.93305299, 32.777086839], "geometry": {"coordinates": [-79.93305299, 32.777086839], "type": "Point"}, "id": "902", "properties": {"Object ID": 574409654, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9344145, 32.777479, -79.9344145, 32.777479], "geometry": {"coordinates": [-79.9344145, 32.777479], "type": "Point"}, "id": "903", "properties": {"Object ID": 574409898, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93405956, 32.778165872, -79.93405956, 32.778165872], "geometry": {"coordinates": [-79.93405956, 32.778165872], "type": "Point"}, "id": "904", "properties": {"Object ID": 574421788, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93319144, 32.778464297, -79.93319144, 32.778464297], "geometry": {"coordinates": [-79.93319144, 32.778464297], "type": "Point"}, "id": "905", "properties": {"Object ID": 574421819, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93614378, 32.779728689, -79.93614378, 32.779728689], "geometry": {"coordinates": [-79.93614378, 32.779728689], "type": "Point"}, "id": "906", "properties": {"Object ID": 574421943, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93130933, 32.776599053, -79.93130933, 32.776599053], "geometry": {"coordinates": [-79.93130933, 32.776599053], "type": "Point"}, "id": "907", "properties": {"Object ID": 574431322, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93396619, 32.779526363, -79.93396619, 32.779526363], "geometry": {"coordinates": [-79.93396619, 32.779526363], "type": "Point"}, "id": "908", "properties": {"Object ID": 574446523, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9340138, 32.779235573, -79.9340138, 32.779235573], "geometry": {"coordinates": [-79.9340138, 32.779235573], "type": "Point"}, "id": "909", "properties": {"Object ID": 574446531, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9340138, 32.779235573, -79.9340138, 32.779235573], "geometry": {"coordinates": [-79.9340138, 32.779235573], "type": "Point"}, "id": "910", "properties": {"Object ID": 574446533, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93338378, 32.779406072, -79.93338378, 32.779406072], "geometry": {"coordinates": [-79.93338378, 32.779406072], "type": "Point"}, "id": "911", "properties": {"Object ID": 574446559, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "912", "properties": {"Object ID": 574460969, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "913", "properties": {"Object ID": 574460979, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "914", "properties": {"Object ID": 574460999, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93323889, 32.77801247, -79.93323889, 32.77801247], "geometry": {"coordinates": [-79.93323889, 32.77801247], "type": "Point"}, "id": "915", "properties": {"Object ID": 574461043, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93474766, 32.774476107, -79.93474766, 32.774476107], "geometry": {"coordinates": [-79.93474766, 32.774476107], "type": "Point"}, "id": "916", "properties": {"Object ID": 574461051, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "917", "properties": {"Object ID": 574476706, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "918", "properties": {"Object ID": 574476763, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "919", "properties": {"Object ID": 574476769, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "920", "properties": {"Object ID": 574476797, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "921", "properties": {"Object ID": 574476803, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93541956, 32.775403971, -79.93541956, 32.775403971], "geometry": {"coordinates": [-79.93541956, 32.775403971], "type": "Point"}, "id": "922", "properties": {"Object ID": 574486863, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542766, 32.774993284, -79.93542766, 32.774993284], "geometry": {"coordinates": [-79.93542766, 32.774993284], "type": "Point"}, "id": "923", "properties": {"Object ID": 574486871, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.934546, 32.774462493, -79.934546, 32.774462493], "geometry": {"coordinates": [-79.934546, 32.774462493], "type": "Point"}, "id": "924", "properties": {"Object ID": 574486886, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93422128, 32.774488499, -79.93422128, 32.774488499], "geometry": {"coordinates": [-79.93422128, 32.774488499], "type": "Point"}, "id": "925", "properties": {"Object ID": 574486887, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93213015, 32.775116518, -79.93213015, 32.775116518], "geometry": {"coordinates": [-79.93213015, 32.775116518], "type": "Point"}, "id": "926", "properties": {"Object ID": 574486895, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9316641, 32.774929808, -79.9316641, 32.774929808], "geometry": {"coordinates": [-79.9316641, 32.774929808], "type": "Point"}, "id": "927", "properties": {"Object ID": 574486896, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93202975, 32.77342594, -79.93202975, 32.77342594], "geometry": {"coordinates": [-79.93202975, 32.77342594], "type": "Point"}, "id": "928", "properties": {"Object ID": 574486897, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93405994, 32.771469521, -79.93405994, 32.771469521], "geometry": {"coordinates": [-79.93405994, 32.771469521], "type": "Point"}, "id": "929", "properties": {"Object ID": 574486908, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93133148, 32.771521871, -79.93133148, 32.771521871], "geometry": {"coordinates": [-79.93133148, 32.771521871], "type": "Point"}, "id": "930", "properties": {"Object ID": 574486920, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93318093, 32.770926003, -79.93318093, 32.770926003], "geometry": {"coordinates": [-79.93318093, 32.770926003], "type": "Point"}, "id": "931", "properties": {"Object ID": 574486926, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93318093, 32.770926003, -79.93318093, 32.770926003], "geometry": {"coordinates": [-79.93318093, 32.770926003], "type": "Point"}, "id": "932", "properties": {"Object ID": 574486928, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93132077, 32.770922951, -79.93132077, 32.770922951], "geometry": {"coordinates": [-79.93132077, 32.770922951], "type": "Point"}, "id": "933", "properties": {"Object ID": 574486930, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93663915, 32.776900157, -79.93663915, 32.776900157], "geometry": {"coordinates": [-79.93663915, 32.776900157], "type": "Point"}, "id": "934", "properties": {"Object ID": 574486966, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93565933, 32.77953797, -79.93565933, 32.77953797], "geometry": {"coordinates": [-79.93565933, 32.77953797], "type": "Point"}, "id": "935", "properties": {"Object ID": 574486985, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93555431, 32.779513661, -79.93555431, 32.779513661], "geometry": {"coordinates": [-79.93555431, 32.779513661], "type": "Point"}, "id": "936", "properties": {"Object ID": 574486987, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93565933, 32.77953797, -79.93565933, 32.77953797], "geometry": {"coordinates": [-79.93565933, 32.77953797], "type": "Point"}, "id": "937", "properties": {"Object ID": 574486988, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93503717, 32.779666462, -79.93503717, 32.779666462], "geometry": {"coordinates": [-79.93503717, 32.779666462], "type": "Point"}, "id": "938", "properties": {"Object ID": 574486992, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93590791, 32.778044034, -79.93590791, 32.778044034], "geometry": {"coordinates": [-79.93590791, 32.778044034], "type": "Point"}, "id": "939", "properties": {"Object ID": 574486998, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516426, 32.778139791, -79.93516426, 32.778139791], "geometry": {"coordinates": [-79.93516426, 32.778139791], "type": "Point"}, "id": "940", "properties": {"Object ID": 574487001, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93547424, 32.778107277, -79.93547424, 32.778107277], "geometry": {"coordinates": [-79.93547424, 32.778107277], "type": "Point"}, "id": "941", "properties": {"Object ID": 574487003, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93341863, 32.778558501, -79.93341863, 32.778558501], "geometry": {"coordinates": [-79.93341863, 32.778558501], "type": "Point"}, "id": "942", "properties": {"Object ID": 574487013, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93335111, 32.778447628, -79.93335111, 32.778447628], "geometry": {"coordinates": [-79.93335111, 32.778447628], "type": "Point"}, "id": "943", "properties": {"Object ID": 574487014, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93589727, 32.777913662, -79.93589727, 32.777913662], "geometry": {"coordinates": [-79.93589727, 32.777913662], "type": "Point"}, "id": "944", "properties": {"Object ID": 574487031, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93588859, 32.777847933, -79.93588859, 32.777847933], "geometry": {"coordinates": [-79.93588859, 32.777847933], "type": "Point"}, "id": "945", "properties": {"Object ID": 574487032, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93571463, 32.777605998, -79.93571463, 32.777605998], "geometry": {"coordinates": [-79.93571463, 32.777605998], "type": "Point"}, "id": "946", "properties": {"Object ID": 574487041, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93465995, 32.777498525, -79.93465995, 32.777498525], "geometry": {"coordinates": [-79.93465995, 32.777498525], "type": "Point"}, "id": "947", "properties": {"Object ID": 574487074, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93442144, 32.777811398, -79.93442144, 32.777811398], "geometry": {"coordinates": [-79.93442144, 32.777811398], "type": "Point"}, "id": "948", "properties": {"Object ID": 574487076, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93417652, 32.777835117, -79.93417652, 32.777835117], "geometry": {"coordinates": [-79.93417652, 32.777835117], "type": "Point"}, "id": "949", "properties": {"Object ID": 574487077, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93460219, 32.777064456, -79.93460219, 32.777064456], "geometry": {"coordinates": [-79.93460219, 32.777064456], "type": "Point"}, "id": "950", "properties": {"Object ID": 574487084, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93544376, 32.776459504, -79.93544376, 32.776459504], "geometry": {"coordinates": [-79.93544376, 32.776459504], "type": "Point"}, "id": "951", "properties": {"Object ID": 574487093, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93617751, 32.776188702, -79.93617751, 32.776188702], "geometry": {"coordinates": [-79.93617751, 32.776188702], "type": "Point"}, "id": "952", "properties": {"Object ID": 574487094, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93790448, 32.773475926, -79.93790448, 32.773475926], "geometry": {"coordinates": [-79.93790448, 32.773475926], "type": "Point"}, "id": "953", "properties": {"Object ID": 573789243, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93793205, 32.773780667, -79.93793205, 32.773780667], "geometry": {"coordinates": [-79.93793205, 32.773780667], "type": "Point"}, "id": "954", "properties": {"Object ID": 573789247, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93728257, 32.773814709, -79.93728257, 32.773814709], "geometry": {"coordinates": [-79.93728257, 32.773814709], "type": "Point"}, "id": "955", "properties": {"Object ID": 573789251, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93719372, 32.776331026, -79.93719372, 32.776331026], "geometry": {"coordinates": [-79.93719372, 32.776331026], "type": "Point"}, "id": "956", "properties": {"Object ID": 573789170, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93724426, 32.776572277, -79.93724426, 32.776572277], "geometry": {"coordinates": [-79.93724426, 32.776572277], "type": "Point"}, "id": "957", "properties": {"Object ID": 573789175, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93733943, 32.772132174, -79.93733943, 32.772132174], "geometry": {"coordinates": [-79.93733943, 32.772132174], "type": "Point"}, "id": "958", "properties": {"Object ID": 573789221, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93767787, 32.772248937, -79.93767787, 32.772248937], "geometry": {"coordinates": [-79.93767787, 32.772248937], "type": "Point"}, "id": "959", "properties": {"Object ID": 573789222, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93750956, 32.772215363, -79.93750956, 32.772215363], "geometry": {"coordinates": [-79.93750956, 32.772215363], "type": "Point"}, "id": "960", "properties": {"Object ID": 573789223, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93774926, 32.772785619, -79.93774926, 32.772785619], "geometry": {"coordinates": [-79.93774926, 32.772785619], "type": "Point"}, "id": "961", "properties": {"Object ID": 573789231, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93724447, 32.773129957, -79.93724447, 32.773129957], "geometry": {"coordinates": [-79.93724447, 32.773129957], "type": "Point"}, "id": "962", "properties": {"Object ID": 573789235, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93733809, 32.771558726, -79.93733809, 32.771558726], "geometry": {"coordinates": [-79.93733809, 32.771558726], "type": "Point"}, "id": "963", "properties": {"Object ID": 573789298, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9379042, 32.772046896, -79.9379042, 32.772046896], "geometry": {"coordinates": [-79.9379042, 32.772046896], "type": "Point"}, "id": "964", "properties": {"Object ID": 573789315, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93920776, 32.774979165, -79.93920776, 32.774979165], "geometry": {"coordinates": [-79.93920776, 32.774979165], "type": "Point"}, "id": "965", "properties": {"Object ID": 573789343, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93889075, 32.774356039, -79.93889075, 32.774356039], "geometry": {"coordinates": [-79.93889075, 32.774356039], "type": "Point"}, "id": "966", "properties": {"Object ID": 573789364, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93766712, 32.776069164, -79.93766712, 32.776069164], "geometry": {"coordinates": [-79.93766712, 32.776069164], "type": "Point"}, "id": "967", "properties": {"Object ID": 573789435, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93758682, 32.776280781, -79.93758682, 32.776280781], "geometry": {"coordinates": [-79.93758682, 32.776280781], "type": "Point"}, "id": "968", "properties": {"Object ID": 573789439, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93819563, 32.776338634, -79.93819563, 32.776338634], "geometry": {"coordinates": [-79.93819563, 32.776338634], "type": "Point"}, "id": "969", "properties": {"Object ID": 573789440, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9376077, 32.776502687, -79.9376077, 32.776502687], "geometry": {"coordinates": [-79.9376077, 32.776502687], "type": "Point"}, "id": "970", "properties": {"Object ID": 573789442, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93830366, 32.776560399, -79.93830366, 32.776560399], "geometry": {"coordinates": [-79.93830366, 32.776560399], "type": "Point"}, "id": "971", "properties": {"Object ID": 573789443, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93896071, 32.773212784, -79.93896071, 32.773212784], "geometry": {"coordinates": [-79.93896071, 32.773212784], "type": "Point"}, "id": "972", "properties": {"Object ID": 573789711, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9382641, 32.773318644, -79.9382641, 32.773318644], "geometry": {"coordinates": [-79.9382641, 32.773318644], "type": "Point"}, "id": "973", "properties": {"Object ID": 573789715, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93895953, 32.773319279, -79.93895953, 32.773319279], "geometry": {"coordinates": [-79.93895953, 32.773319279], "type": "Point"}, "id": "974", "properties": {"Object ID": 573789717, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93830338, 32.773709544, -79.93830338, 32.773709544], "geometry": {"coordinates": [-79.93830338, 32.773709544], "type": "Point"}, "id": "975", "properties": {"Object ID": 573789733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93844929, 32.778429673, -79.93844929, 32.778429673], "geometry": {"coordinates": [-79.93844929, 32.778429673], "type": "Point"}, "id": "976", "properties": {"Object ID": 573794188, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93947433, 32.778713874, -79.93947433, 32.778713874], "geometry": {"coordinates": [-79.93947433, 32.778713874], "type": "Point"}, "id": "977", "properties": {"Object ID": 573794196, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93771389, 32.778821369, -79.93771389, 32.778821369], "geometry": {"coordinates": [-79.93771389, 32.778821369], "type": "Point"}, "id": "978", "properties": {"Object ID": 573794202, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93978995, 32.77651546, -79.93978995, 32.77651546], "geometry": {"coordinates": [-79.93978995, 32.77651546], "type": "Point"}, "id": "979", "properties": {"Object ID": 573794267, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93951861, 32.776552919, -79.93951861, 32.776552919], "geometry": {"coordinates": [-79.93951861, 32.776552919], "type": "Point"}, "id": "980", "properties": {"Object ID": 573794271, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9385364, 32.776632552, -79.9385364, 32.776632552], "geometry": {"coordinates": [-79.9385364, 32.776632552], "type": "Point"}, "id": "981", "properties": {"Object ID": 573794285, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94004055, 32.776992299, -79.94004055, 32.776992299], "geometry": {"coordinates": [-79.94004055, 32.776992299], "type": "Point"}, "id": "982", "properties": {"Object ID": 573794302, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93961593, 32.774488156, -79.93961593, 32.774488156], "geometry": {"coordinates": [-79.93961593, 32.774488156], "type": "Point"}, "id": "983", "properties": {"Object ID": 573795536, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9401197, 32.774167927, -79.9401197, 32.774167927], "geometry": {"coordinates": [-79.9401197, 32.774167927], "type": "Point"}, "id": "984", "properties": {"Object ID": 573795546, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94012605, 32.774379512, -79.94012605, 32.774379512], "geometry": {"coordinates": [-79.94012605, 32.774379512], "type": "Point"}, "id": "985", "properties": {"Object ID": 573795554, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93971605, 32.775311298, -79.93971605, 32.775311298], "geometry": {"coordinates": [-79.93971605, 32.775311298], "type": "Point"}, "id": "986", "properties": {"Object ID": 573795579, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93972569, 32.775469182, -79.93972569, 32.775469182], "geometry": {"coordinates": [-79.93972569, 32.775469182], "type": "Point"}, "id": "987", "properties": {"Object ID": 573795592, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93983204, 32.777830457, -79.93983204, 32.777830457], "geometry": {"coordinates": [-79.93983204, 32.777830457], "type": "Point"}, "id": "988", "properties": {"Object ID": 573795685, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94347788, 32.775072097, -79.94347788, 32.775072097], "geometry": {"coordinates": [-79.94347788, 32.775072097], "type": "Point"}, "id": "989", "properties": {"Object ID": 573800696, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94228272, 32.773154225, -79.94228272, 32.773154225], "geometry": {"coordinates": [-79.94228272, 32.773154225], "type": "Point"}, "id": "990", "properties": {"Object ID": 573800712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9422464, 32.772653694, -79.9422464, 32.772653694], "geometry": {"coordinates": [-79.9422464, 32.772653694], "type": "Point"}, "id": "991", "properties": {"Object ID": 573800720, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94239952, 32.772744995, -79.94239952, 32.772744995], "geometry": {"coordinates": [-79.94239952, 32.772744995], "type": "Point"}, "id": "992", "properties": {"Object ID": 573800722, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94265223, 32.772951797, -79.94265223, 32.772951797], "geometry": {"coordinates": [-79.94265223, 32.772951797], "type": "Point"}, "id": "993", "properties": {"Object ID": 573800730, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94244646, 32.77728956, -79.94244646, 32.77728956], "geometry": {"coordinates": [-79.94244646, 32.77728956], "type": "Point"}, "id": "994", "properties": {"Object ID": 573800789, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94375075, 32.774456513, -79.94375075, 32.774456513], "geometry": {"coordinates": [-79.94375075, 32.774456513], "type": "Point"}, "id": "995", "properties": {"Object ID": 573800967, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94349179, 32.777766883, -79.94349179, 32.777766883], "geometry": {"coordinates": [-79.94349179, 32.777766883], "type": "Point"}, "id": "996", "properties": {"Object ID": 573806316, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94541169, 32.776914122, -79.94541169, 32.776914122], "geometry": {"coordinates": [-79.94541169, 32.776914122], "type": "Point"}, "id": "997", "properties": {"Object ID": 573807482, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93721568, 32.780100557, -79.93721568, 32.780100557], "geometry": {"coordinates": [-79.93721568, 32.780100557], "type": "Point"}, "id": "998", "properties": {"Object ID": 573854165, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93878284, 32.77632334, -79.93878284, 32.77632334], "geometry": {"coordinates": [-79.93878284, 32.77632334], "type": "Point"}, "id": "999", "properties": {"Object ID": 573856087, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93931502, 32.773027274, -79.93931502, 32.773027274], "geometry": {"coordinates": [-79.93931502, 32.773027274], "type": "Point"}, "id": "1000", "properties": {"Object ID": 573860086, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94043882, 32.773791803, -79.94043882, 32.773791803], "geometry": {"coordinates": [-79.94043882, 32.773791803], "type": "Point"}, "id": "1001", "properties": {"Object ID": 573860245, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94082046, 32.774309368, -79.94082046, 32.774309368], "geometry": {"coordinates": [-79.94082046, 32.774309368], "type": "Point"}, "id": "1002", "properties": {"Object ID": 573860258, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94083872, 32.774521669, -79.94083872, 32.774521669], "geometry": {"coordinates": [-79.94083872, 32.774521669], "type": "Point"}, "id": "1003", "properties": {"Object ID": 573860265, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94060195, 32.774775293, -79.94060195, 32.774775293], "geometry": {"coordinates": [-79.94060195, 32.774775293], "type": "Point"}, "id": "1004", "properties": {"Object ID": 573860275, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9407972, 32.77536125, -79.9407972, 32.77536125], "geometry": {"coordinates": [-79.9407972, 32.77536125], "type": "Point"}, "id": "1005", "properties": {"Object ID": 573860294, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93731496, 32.774424834, -79.93731496, 32.774424834], "geometry": {"coordinates": [-79.93731496, 32.774424834], "type": "Point"}, "id": "1006", "properties": {"Object ID": 574268769, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93902851, 32.773844363, -79.93902851, 32.773844363], "geometry": {"coordinates": [-79.93902851, 32.773844363], "type": "Point"}, "id": "1007", "properties": {"Object ID": 574269131, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9387764, 32.773854455, -79.9387764, 32.773854455], "geometry": {"coordinates": [-79.9387764, 32.773854455], "type": "Point"}, "id": "1008", "properties": {"Object ID": 574269133, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93879442, 32.774027033, -79.93879442, 32.774027033], "geometry": {"coordinates": [-79.93879442, 32.774027033], "type": "Point"}, "id": "1009", "properties": {"Object ID": 574269141, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9380263, 32.774222479, -79.9380263, 32.774222479], "geometry": {"coordinates": [-79.9380263, 32.774222479], "type": "Point"}, "id": "1010", "properties": {"Object ID": 574269147, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93827832, 32.774501177, -79.93827832, 32.774501177], "geometry": {"coordinates": [-79.93827832, 32.774501177], "type": "Point"}, "id": "1011", "properties": {"Object ID": 574269157, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93819474, 32.774642053, -79.93819474, 32.774642053], "geometry": {"coordinates": [-79.93819474, 32.774642053], "type": "Point"}, "id": "1012", "properties": {"Object ID": 574269163, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93747328, 32.774789678, -79.93747328, 32.774789678], "geometry": {"coordinates": [-79.93747328, 32.774789678], "type": "Point"}, "id": "1013", "properties": {"Object ID": 574269178, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9372582, 32.775023238, -79.9372582, 32.775023238], "geometry": {"coordinates": [-79.9372582, 32.775023238], "type": "Point"}, "id": "1014", "properties": {"Object ID": 574269188, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93694112, 32.775312756, -79.93694112, 32.775312756], "geometry": {"coordinates": [-79.93694112, 32.775312756], "type": "Point"}, "id": "1015", "properties": {"Object ID": 574269200, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93730022, 32.775544898, -79.93730022, 32.775544898], "geometry": {"coordinates": [-79.93730022, 32.775544898], "type": "Point"}, "id": "1016", "properties": {"Object ID": 574269208, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9412164, 32.773203632, -79.9412164, 32.773203632], "geometry": {"coordinates": [-79.9412164, 32.773203632], "type": "Point"}, "id": "1017", "properties": {"Object ID": 574270738, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93903767, 32.777334498, -79.93903767, 32.777334498], "geometry": {"coordinates": [-79.93903767, 32.777334498], "type": "Point"}, "id": "1018", "properties": {"Object ID": 574295708, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94064393, 32.778776275, -79.94064393, 32.778776275], "geometry": {"coordinates": [-79.94064393, 32.778776275], "type": "Point"}, "id": "1019", "properties": {"Object ID": 574295939, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94057589, 32.771899434, -79.94057589, 32.771899434], "geometry": {"coordinates": [-79.94057589, 32.771899434], "type": "Point"}, "id": "1020", "properties": {"Object ID": 574296079, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94012734, 32.772187048, -79.94012734, 32.772187048], "geometry": {"coordinates": [-79.94012734, 32.772187048], "type": "Point"}, "id": "1021", "properties": {"Object ID": 574296087, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94124728, 32.772224293, -79.94124728, 32.772224293], "geometry": {"coordinates": [-79.94124728, 32.772224293], "type": "Point"}, "id": "1022", "properties": {"Object ID": 574296089, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94144284, 32.772270044, -79.94144284, 32.772270044], "geometry": {"coordinates": [-79.94144284, 32.772270044], "type": "Point"}, "id": "1023", "properties": {"Object ID": 574296091, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94077452, 32.772434881, -79.94077452, 32.772434881], "geometry": {"coordinates": [-79.94077452, 32.772434881], "type": "Point"}, "id": "1024", "properties": {"Object ID": 574296099, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94124616, 32.772522382, -79.94124616, 32.772522382], "geometry": {"coordinates": [-79.94124616, 32.772522382], "type": "Point"}, "id": "1025", "properties": {"Object ID": 574296101, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94471824, 32.777201345, -79.94471824, 32.777201345], "geometry": {"coordinates": [-79.94471824, 32.777201345], "type": "Point"}, "id": "1026", "properties": {"Object ID": 574348016, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93989683, 32.772889519, -79.93989683, 32.772889519], "geometry": {"coordinates": [-79.93989683, 32.772889519], "type": "Point"}, "id": "1027", "properties": {"Object ID": 574372066, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94028232, 32.77307384, -79.94028232, 32.77307384], "geometry": {"coordinates": [-79.94028232, 32.77307384], "type": "Point"}, "id": "1028", "properties": {"Object ID": 574372074, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93687935, 32.772994266, -79.93687935, 32.772994266], "geometry": {"coordinates": [-79.93687935, 32.772994266], "type": "Point"}, "id": "1029", "properties": {"Object ID": 574371908, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93690444, 32.773417841, -79.93690444, 32.773417841], "geometry": {"coordinates": [-79.93690444, 32.773417841], "type": "Point"}, "id": "1030", "properties": {"Object ID": 574371916, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93693362, 32.773609989, -79.93693362, 32.773609989], "geometry": {"coordinates": [-79.93693362, 32.773609989], "type": "Point"}, "id": "1031", "properties": {"Object ID": 574371922, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93837643, 32.771857528, -79.93837643, 32.771857528], "geometry": {"coordinates": [-79.93837643, 32.771857528], "type": "Point"}, "id": "1032", "properties": {"Object ID": 574373106, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93859094, 32.779624813, -79.93859094, 32.779624813], "geometry": {"coordinates": [-79.93859094, 32.779624813], "type": "Point"}, "id": "1033", "properties": {"Object ID": 574409905, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93859094, 32.779624813, -79.93859094, 32.779624813], "geometry": {"coordinates": [-79.93859094, 32.779624813], "type": "Point"}, "id": "1034", "properties": {"Object ID": 574409907, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93882755, 32.771527681, -79.93882755, 32.771527681], "geometry": {"coordinates": [-79.93882755, 32.771527681], "type": "Point"}, "id": "1035", "properties": {"Object ID": 574421861, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94477888, 32.776377681, -79.94477888, 32.776377681], "geometry": {"coordinates": [-79.94477888, 32.776377681], "type": "Point"}, "id": "1036", "properties": {"Object ID": 574422147, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94121158, 32.773901986, -79.94121158, 32.773901986], "geometry": {"coordinates": [-79.94121158, 32.773901986], "type": "Point"}, "id": "1037", "properties": {"Object ID": 574431445, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94184372, 32.774924203, -79.94184372, 32.774924203], "geometry": {"coordinates": [-79.94184372, 32.774924203], "type": "Point"}, "id": "1038", "properties": {"Object ID": 574431449, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9410735, 32.773705, -79.9410735, 32.773705], "geometry": {"coordinates": [-79.9410735, 32.773705], "type": "Point"}, "id": "1039", "properties": {"Object ID": 574431457, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9439818, 32.776817126, -79.9439818, 32.776817126], "geometry": {"coordinates": [-79.9439818, 32.776817126], "type": "Point"}, "id": "1040", "properties": {"Object ID": 574431607, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94242933, 32.778108219, -79.94242933, 32.778108219], "geometry": {"coordinates": [-79.94242933, 32.778108219], "type": "Point"}, "id": "1041", "properties": {"Object ID": 574485618, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94242933, 32.778108219, -79.94242933, 32.778108219], "geometry": {"coordinates": [-79.94242933, 32.778108219], "type": "Point"}, "id": "1042", "properties": {"Object ID": 574485620, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94242933, 32.778108219, -79.94242933, 32.778108219], "geometry": {"coordinates": [-79.94242933, 32.778108219], "type": "Point"}, "id": "1043", "properties": {"Object ID": 574485621, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "1044", "properties": {"Object ID": 574485658, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "1045", "properties": {"Object ID": 574485660, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "1046", "properties": {"Object ID": 574486697, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "1047", "properties": {"Object ID": 574486739, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "1048", "properties": {"Object ID": 574486740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "1049", "properties": {"Object ID": 574486741, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "1050", "properties": {"Object ID": 574486749, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "1051", "properties": {"Object ID": 574486762, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "1052", "properties": {"Object ID": 574486766, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "1053", "properties": {"Object ID": 574486771, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93871033, 32.777371745, -79.93871033, 32.777371745], "geometry": {"coordinates": [-79.93871033, 32.777371745], "type": "Point"}, "id": "1054", "properties": {"Object ID": 574486800, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "1055", "properties": {"Object ID": 574486823, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9408639, 32.775053967, -79.9408639, 32.775053967], "geometry": {"coordinates": [-79.9408639, 32.775053967], "type": "Point"}, "id": "1056", "properties": {"Object ID": 574486826, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94010269, 32.773919714, -79.94010269, 32.773919714], "geometry": {"coordinates": [-79.94010269, 32.773919714], "type": "Point"}, "id": "1057", "properties": {"Object ID": 574486830, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93988545, 32.773901763, -79.93988545, 32.773901763], "geometry": {"coordinates": [-79.93988545, 32.773901763], "type": "Point"}, "id": "1058", "properties": {"Object ID": 574486832, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93872965, 32.773556377, -79.93872965, 32.773556377], "geometry": {"coordinates": [-79.93872965, 32.773556377], "type": "Point"}, "id": "1059", "properties": {"Object ID": 574486842, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93801926, 32.775587877, -79.93801926, 32.775587877], "geometry": {"coordinates": [-79.93801926, 32.775587877], "type": "Point"}, "id": "1060", "properties": {"Object ID": 574486851, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93785469, 32.777499843, -79.93785469, 32.777499843], "geometry": {"coordinates": [-79.93785469, 32.777499843], "type": "Point"}, "id": "1061", "properties": {"Object ID": 574486957, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93777386, 32.776445317, -79.93777386, 32.776445317], "geometry": {"coordinates": [-79.93777386, 32.776445317], "type": "Point"}, "id": "1062", "properties": {"Object ID": 574486971, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93716135, 32.776559813, -79.93716135, 32.776559813], "geometry": {"coordinates": [-79.93716135, 32.776559813], "type": "Point"}, "id": "1063", "properties": {"Object ID": 574486974, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93392255, 32.774543245, -79.93392255, 32.774543245], "geometry": {"coordinates": [-79.93392255, 32.774543245], "type": "Point"}, "id": "1064", "properties": {"Object ID": 573475701, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93353068, 32.775133449, -79.93353068, 32.775133449], "geometry": {"coordinates": [-79.93353068, 32.775133449], "type": "Point"}, "id": "1065", "properties": {"Object ID": 573475712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93780143, 32.773427301, -79.93780143, 32.773427301], "geometry": {"coordinates": [-79.93780143, 32.773427301], "type": "Point"}, "id": "1066", "properties": {"Object ID": 573789241, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93676377, 32.776128349, -79.93676377, 32.776128349], "geometry": {"coordinates": [-79.93676377, 32.776128349], "type": "Point"}, "id": "1067", "properties": {"Object ID": 573789165, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93898076, 32.773420021, -79.93898076, 32.773420021], "geometry": {"coordinates": [-79.93898076, 32.773420021], "type": "Point"}, "id": "1068", "properties": {"Object ID": 573789719, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93785265, 32.778492033, -79.93785265, 32.778492033], "geometry": {"coordinates": [-79.93785265, 32.778492033], "type": "Point"}, "id": "1069", "properties": {"Object ID": 573794192, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93304805, 32.769791258, -79.93304805, 32.769791258], "geometry": {"coordinates": [-79.93304805, 32.769791258], "type": "Point"}, "id": "1070", "properties": {"Object ID": 574268561, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93435682, 32.770544643, -79.93435682, 32.770544643], "geometry": {"coordinates": [-79.93435682, 32.770544643], "type": "Point"}, "id": "1071", "properties": {"Object ID": 574268618, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9362661, 32.776793297, -79.9362661, 32.776793297], "geometry": {"coordinates": [-79.9362661, 32.776793297], "type": "Point"}, "id": "1072", "properties": {"Object ID": 574268923, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93819474, 32.774642053, -79.93819474, 32.774642053], "geometry": {"coordinates": [-79.93819474, 32.774642053], "type": "Point"}, "id": "1073", "properties": {"Object ID": 574269166, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94113564, 32.772450975, -79.94113564, 32.772450975], "geometry": {"coordinates": [-79.94113564, 32.772450975], "type": "Point"}, "id": "1074", "properties": {"Object ID": 574296097, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93559899, 32.777602365, -79.93559899, 32.777602365], "geometry": {"coordinates": [-79.93559899, 32.777602365], "type": "Point"}, "id": "1075", "properties": {"Object ID": 574371751, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9348458, 32.777735178, -79.9348458, 32.777735178], "geometry": {"coordinates": [-79.9348458, 32.777735178], "type": "Point"}, "id": "1076", "properties": {"Object ID": 574371755, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93642432, 32.771931076, -79.93642432, 32.771931076], "geometry": {"coordinates": [-79.93642432, 32.771931076], "type": "Point"}, "id": "1077", "properties": {"Object ID": 574371857, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93928608, 32.772254657, -79.93928608, 32.772254657], "geometry": {"coordinates": [-79.93928608, 32.772254657], "type": "Point"}, "id": "1078", "properties": {"Object ID": 574373119, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93446534, 32.776518504, -79.93446534, 32.776518504], "geometry": {"coordinates": [-79.93446534, 32.776518504], "type": "Point"}, "id": "1079", "properties": {"Object ID": 574409637, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93305513, 32.776608666, -79.93305513, 32.776608666], "geometry": {"coordinates": [-79.93305513, 32.776608666], "type": "Point"}, "id": "1080", "properties": {"Object ID": 574409644, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94183799, 32.775161736, -79.94183799, 32.775161736], "geometry": {"coordinates": [-79.94183799, 32.775161736], "type": "Point"}, "id": "1081", "properties": {"Object ID": 574431455, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94434665, 32.776643873, -79.94434665, 32.776643873], "geometry": {"coordinates": [-79.94434665, 32.776643873], "type": "Point"}, "id": "1082", "properties": {"Object ID": 574431591, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "1083", "properties": {"Object ID": 574486765, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "1084", "properties": {"Object ID": 574486768, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93777386, 32.776445317, -79.93777386, 32.776445317], "geometry": {"coordinates": [-79.93777386, 32.776445317], "type": "Point"}, "id": "1085", "properties": {"Object ID": 574486969, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93537183, 32.77791889, -79.93537183, 32.77791889], "geometry": {"coordinates": [-79.93537183, 32.77791889], "type": "Point"}, "id": "1086", "properties": {"Object ID": 574487036, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93579376, 32.777596444, -79.93579376, 32.777596444], "geometry": {"coordinates": [-79.93579376, 32.777596444], "type": "Point"}, "id": "1087", "properties": {"Object ID": 574487044, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1088", "properties": {"Object ID": 574487063, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681104, 32.778289954, -79.92681104, 32.778289954], "geometry": {"coordinates": [-79.92681104, 32.778289954], "type": "Point"}, "id": "1089", "properties": {"Object ID": 573407535, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92913919, 32.780523417, -79.92913919, 32.780523417], "geometry": {"coordinates": [-79.92913919, 32.780523417], "type": "Point"}, "id": "1090", "properties": {"Object ID": 573463563, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92962481, 32.782751918, -79.92962481, 32.782751918], "geometry": {"coordinates": [-79.92962481, 32.782751918], "type": "Point"}, "id": "1091", "properties": {"Object ID": 573467958, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92815908, 32.772919817, -79.92815908, 32.772919817], "geometry": {"coordinates": [-79.92815908, 32.772919817], "type": "Point"}, "id": "1092", "properties": {"Object ID": 573779309, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92845507, 32.773445045, -79.92845507, 32.773445045], "geometry": {"coordinates": [-79.92845507, 32.773445045], "type": "Point"}, "id": "1093", "properties": {"Object ID": 573779331, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92874417, 32.77370954, -79.92874417, 32.77370954], "geometry": {"coordinates": [-79.92874417, 32.77370954], "type": "Point"}, "id": "1094", "properties": {"Object ID": 573779345, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92853821, 32.774582905, -79.92853821, 32.774582905], "geometry": {"coordinates": [-79.92853821, 32.774582905], "type": "Point"}, "id": "1095", "properties": {"Object ID": 573779387, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92791241, 32.774675817, -79.92791241, 32.774675817], "geometry": {"coordinates": [-79.92791241, 32.774675817], "type": "Point"}, "id": "1096", "properties": {"Object ID": 573779391, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92741433, 32.77931362, -79.92741433, 32.77931362], "geometry": {"coordinates": [-79.92741433, 32.77931362], "type": "Point"}, "id": "1097", "properties": {"Object ID": 573782385, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92741436, 32.778811463, -79.92741436, 32.778811463], "geometry": {"coordinates": [-79.92741436, 32.778811463], "type": "Point"}, "id": "1098", "properties": {"Object ID": 573782387, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9285359, 32.779643027, -79.9285359, 32.779643027], "geometry": {"coordinates": [-79.9285359, 32.779643027], "type": "Point"}, "id": "1099", "properties": {"Object ID": 573782405, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92875099, 32.782205177, -79.92875099, 32.782205177], "geometry": {"coordinates": [-79.92875099, 32.782205177], "type": "Point"}, "id": "1100", "properties": {"Object ID": 573782476, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92820141, 32.77829234, -79.92820141, 32.77829234], "geometry": {"coordinates": [-79.92820141, 32.77829234], "type": "Point"}, "id": "1101", "properties": {"Object ID": 573782508, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92889412, 32.775479003, -79.92889412, 32.775479003], "geometry": {"coordinates": [-79.92889412, 32.775479003], "type": "Point"}, "id": "1102", "properties": {"Object ID": 573782532, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92901056, 32.775913829, -79.92901056, 32.775913829], "geometry": {"coordinates": [-79.92901056, 32.775913829], "type": "Point"}, "id": "1103", "properties": {"Object ID": 573782548, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92927399, 32.773426703, -79.92927399, 32.773426703], "geometry": {"coordinates": [-79.92927399, 32.773426703], "type": "Point"}, "id": "1104", "properties": {"Object ID": 573783140, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93002133, 32.779324182, -79.93002133, 32.779324182], "geometry": {"coordinates": [-79.93002133, 32.779324182], "type": "Point"}, "id": "1105", "properties": {"Object ID": 573783307, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93112351, 32.779280644, -79.93112351, 32.779280644], "geometry": {"coordinates": [-79.93112351, 32.779280644], "type": "Point"}, "id": "1106", "properties": {"Object ID": 573783311, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93206633, 32.776539325, -79.93206633, 32.776539325], "geometry": {"coordinates": [-79.93206633, 32.776539325], "type": "Point"}, "id": "1107", "properties": {"Object ID": 573785452, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93343889, 32.771793801, -79.93343889, 32.771793801], "geometry": {"coordinates": [-79.93343889, 32.771793801], "type": "Point"}, "id": "1108", "properties": {"Object ID": 573785883, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93251053, 32.77281289, -79.93251053, 32.77281289], "geometry": {"coordinates": [-79.93251053, 32.77281289], "type": "Point"}, "id": "1109", "properties": {"Object ID": 573785917, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93761682, 32.773771677, -79.93761682, 32.773771677], "geometry": {"coordinates": [-79.93761682, 32.773771677], "type": "Point"}, "id": "1110", "properties": {"Object ID": 573789248, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93500732, 32.779001874, -79.93500732, 32.779001874], "geometry": {"coordinates": [-79.93500732, 32.779001874], "type": "Point"}, "id": "1111", "properties": {"Object ID": 573789111, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93677075, 32.776509311, -79.93677075, 32.776509311], "geometry": {"coordinates": [-79.93677075, 32.776509311], "type": "Point"}, "id": "1112", "properties": {"Object ID": 573789174, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93758824, 32.77268194, -79.93758824, 32.77268194], "geometry": {"coordinates": [-79.93758824, 32.77268194], "type": "Point"}, "id": "1113", "properties": {"Object ID": 573789229, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93892889, 32.77475913, -79.93892889, 32.77475913], "geometry": {"coordinates": [-79.93892889, 32.77475913], "type": "Point"}, "id": "1114", "properties": {"Object ID": 573789338, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93828502, 32.773000626, -79.93828502, 32.773000626], "geometry": {"coordinates": [-79.93828502, 32.773000626], "type": "Point"}, "id": "1115", "properties": {"Object ID": 573789703, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93971208, 32.774966193, -79.93971208, 32.774966193], "geometry": {"coordinates": [-79.93971208, 32.774966193], "type": "Point"}, "id": "1116", "properties": {"Object ID": 573795573, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94000052, 32.775354477, -79.94000052, 32.775354477], "geometry": {"coordinates": [-79.94000052, 32.775354477], "type": "Point"}, "id": "1117", "properties": {"Object ID": 573795584, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93977192, 32.777724528, -79.93977192, 32.777724528], "geometry": {"coordinates": [-79.93977192, 32.777724528], "type": "Point"}, "id": "1118", "properties": {"Object ID": 573795681, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9431408, 32.776523032, -79.9431408, 32.776523032], "geometry": {"coordinates": [-79.9431408, 32.776523032], "type": "Point"}, "id": "1119", "properties": {"Object ID": 573800799, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92774466, 32.777705241, -79.92774466, 32.777705241], "geometry": {"coordinates": [-79.92774466, 32.777705241], "type": "Point"}, "id": "1120", "properties": {"Object ID": 573827140, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92950468, 32.777282449, -79.92950468, 32.777282449], "geometry": {"coordinates": [-79.92950468, 32.777282449], "type": "Point"}, "id": "1121", "properties": {"Object ID": 573827762, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283487, 32.783341755, -79.9283487, 32.783341755], "geometry": {"coordinates": [-79.9283487, 32.783341755], "type": "Point"}, "id": "1122", "properties": {"Object ID": 573827805, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93253579, 32.775843272, -79.93253579, 32.775843272], "geometry": {"coordinates": [-79.93253579, 32.775843272], "type": "Point"}, "id": "1123", "properties": {"Object ID": 573831732, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93948096, 32.776016515, -79.93948096, 32.776016515], "geometry": {"coordinates": [-79.93948096, 32.776016515], "type": "Point"}, "id": "1124", "properties": {"Object ID": 573856074, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92821535, 32.775841025, -79.92821535, 32.775841025], "geometry": {"coordinates": [-79.92821535, 32.775841025], "type": "Point"}, "id": "1125", "properties": {"Object ID": 574267729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92859461, 32.780244674, -79.92859461, 32.780244674], "geometry": {"coordinates": [-79.92859461, 32.780244674], "type": "Point"}, "id": "1126", "properties": {"Object ID": 574268037, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93789908, 32.774403738, -79.93789908, 32.774403738], "geometry": {"coordinates": [-79.93789908, 32.774403738], "type": "Point"}, "id": "1127", "properties": {"Object ID": 574269153, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93733677, 32.775455194, -79.93733677, 32.775455194], "geometry": {"coordinates": [-79.93733677, 32.775455194], "type": "Point"}, "id": "1128", "properties": {"Object ID": 574269206, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9316132, 32.77376274, -79.9316132, 32.77376274], "geometry": {"coordinates": [-79.9316132, 32.77376274], "type": "Point"}, "id": "1129", "properties": {"Object ID": 574293775, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9326316, 32.781124507, -79.9326316, 32.781124507], "geometry": {"coordinates": [-79.9326316, 32.781124507], "type": "Point"}, "id": "1130", "properties": {"Object ID": 574371556, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92438222, 32.783062593, -79.92438222, 32.783062593], "geometry": {"coordinates": [-79.92438222, 32.783062593], "type": "Point"}, "id": "1131", "properties": {"Object ID": 574372304, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92684347, 32.783582589, -79.92684347, 32.783582589], "geometry": {"coordinates": [-79.92684347, 32.783582589], "type": "Point"}, "id": "1132", "properties": {"Object ID": 574372316, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92560022, 32.776892399, -79.92560022, 32.776892399], "geometry": {"coordinates": [-79.92560022, 32.776892399], "type": "Point"}, "id": "1133", "properties": {"Object ID": 574372326, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9367562, 32.772173076, -79.9367562, 32.772173076], "geometry": {"coordinates": [-79.9367562, 32.772173076], "type": "Point"}, "id": "1134", "properties": {"Object ID": 574371890, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9282403, 32.780783377, -79.9282403, 32.780783377], "geometry": {"coordinates": [-79.9282403, 32.780783377], "type": "Point"}, "id": "1135", "properties": {"Object ID": 574372414, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92780897, 32.776260517, -79.92780897, 32.776260517], "geometry": {"coordinates": [-79.92780897, 32.776260517], "type": "Point"}, "id": "1136", "properties": {"Object ID": 574372455, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92846361, 32.776973025, -79.92846361, 32.776973025], "geometry": {"coordinates": [-79.92846361, 32.776973025], "type": "Point"}, "id": "1137", "properties": {"Object ID": 574421677, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92804197, 32.777344437, -79.92804197, 32.777344437], "geometry": {"coordinates": [-79.92804197, 32.777344437], "type": "Point"}, "id": "1138", "properties": {"Object ID": 574421689, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93317357, 32.778282489, -79.93317357, 32.778282489], "geometry": {"coordinates": [-79.93317357, 32.778282489], "type": "Point"}, "id": "1139", "properties": {"Object ID": 574421786, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94135288, 32.774987805, -79.94135288, 32.774987805], "geometry": {"coordinates": [-79.94135288, 32.774987805], "type": "Point"}, "id": "1140", "properties": {"Object ID": 574431451, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92890689, 32.781738577, -79.92890689, 32.781738577], "geometry": {"coordinates": [-79.92890689, 32.781738577], "type": "Point"}, "id": "1141", "properties": {"Object ID": 574431310, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93370546, 32.780669368, -79.93370546, 32.780669368], "geometry": {"coordinates": [-79.93370546, 32.780669368], "type": "Point"}, "id": "1142", "properties": {"Object ID": 574447818, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92653241, 32.777628862, -79.92653241, 32.777628862], "geometry": {"coordinates": [-79.92653241, 32.777628862], "type": "Point"}, "id": "1143", "properties": {"Object ID": 574455173, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92792463, 32.776347843, -79.92792463, 32.776347843], "geometry": {"coordinates": [-79.92792463, 32.776347843], "type": "Point"}, "id": "1144", "properties": {"Object ID": 574461097, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673802, 32.779726367, -79.92673802, 32.779726367], "geometry": {"coordinates": [-79.92673802, 32.779726367], "type": "Point"}, "id": "1145", "properties": {"Object ID": 574461295, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "1146", "properties": {"Object ID": 574485651, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94238262, 32.777178526, -79.94238262, 32.777178526], "geometry": {"coordinates": [-79.94238262, 32.777178526], "type": "Point"}, "id": "1147", "properties": {"Object ID": 574486757, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93941203, 32.773249683, -79.93941203, 32.773249683], "geometry": {"coordinates": [-79.93941203, 32.773249683], "type": "Point"}, "id": "1148", "properties": {"Object ID": 574486845, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93594431, 32.775383833, -79.93594431, 32.775383833], "geometry": {"coordinates": [-79.93594431, 32.775383833], "type": "Point"}, "id": "1149", "properties": {"Object ID": 574486862, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93598957, 32.773950257, -79.93598957, 32.773950257], "geometry": {"coordinates": [-79.93598957, 32.773950257], "type": "Point"}, "id": "1150", "properties": {"Object ID": 574486882, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93653136, 32.776173731, -79.93653136, 32.776173731], "geometry": {"coordinates": [-79.93653136, 32.776173731], "type": "Point"}, "id": "1151", "properties": {"Object ID": 574486976, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1152", "properties": {"Object ID": 574487050, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "1153", "properties": {"Object ID": 574488432, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "1154", "properties": {"Object ID": 574488700, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92792729, 32.779113403, -79.92792729, 32.779113403], "geometry": {"coordinates": [-79.92792729, 32.779113403], "type": "Point"}, "id": "1155", "properties": {"Object ID": 574488704, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "1156", "properties": {"Object ID": 574488714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1157", "properties": {"Object ID": 574488729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1158", "properties": {"Object ID": 574488732, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1159", "properties": {"Object ID": 574488740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1160", "properties": {"Object ID": 574488741, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1161", "properties": {"Object ID": 574488756, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "1162", "properties": {"Object ID": 574488792, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "1163", "properties": {"Object ID": 574488800, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9267068, 32.776164736, -79.9267068, 32.776164736], "geometry": {"coordinates": [-79.9267068, 32.776164736], "type": "Point"}, "id": "1164", "properties": {"Object ID": 574488818, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92658659, 32.77583613, -79.92658659, 32.77583613], "geometry": {"coordinates": [-79.92658659, 32.77583613], "type": "Point"}, "id": "1165", "properties": {"Object ID": 574488826, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92584038, 32.776023966, -79.92584038, 32.776023966], "geometry": {"coordinates": [-79.92584038, 32.776023966], "type": "Point"}, "id": "1166", "properties": {"Object ID": 574488828, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92647587, 32.775452184, -79.92647587, 32.775452184], "geometry": {"coordinates": [-79.92647587, 32.775452184], "type": "Point"}, "id": "1167", "properties": {"Object ID": 574488853, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9277608, 32.774429346, -79.9277608, 32.774429346], "geometry": {"coordinates": [-79.9277608, 32.774429346], "type": "Point"}, "id": "1168", "properties": {"Object ID": 574488861, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93065525, 32.777943181, -79.93065525, 32.777943181], "geometry": {"coordinates": [-79.93065525, 32.777943181], "type": "Point"}, "id": "1169", "properties": {"Object ID": 573783351, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93165656, 32.77805851, -79.93165656, 32.77805851], "geometry": {"coordinates": [-79.93165656, 32.77805851], "type": "Point"}, "id": "1170", "properties": {"Object ID": 573831770, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93350976, 32.777834982, -79.93350976, 32.777834982], "geometry": {"coordinates": [-79.93350976, 32.777834982], "type": "Point"}, "id": "1171", "properties": {"Object ID": 574371662, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92813633, 32.780414773, -79.92813633, 32.780414773], "geometry": {"coordinates": [-79.92813633, 32.780414773], "type": "Point"}, "id": "1172", "properties": {"Object ID": 574372411, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92783811, 32.778163155, -79.92783811, 32.778163155], "geometry": {"coordinates": [-79.92783811, 32.778163155], "type": "Point"}, "id": "1173", "properties": {"Object ID": 574446489, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93092389, 32.780416852, -79.93092389, 32.780416852], "geometry": {"coordinates": [-79.93092389, 32.780416852], "type": "Point"}, "id": "1174", "properties": {"Object ID": 574451494, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93092389, 32.780416852, -79.93092389, 32.780416852], "geometry": {"coordinates": [-79.93092389, 32.780416852], "type": "Point"}, "id": "1175", "properties": {"Object ID": 574451496, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "1176", "properties": {"Object ID": 574485657, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "1177", "properties": {"Object ID": 574486703, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93682513, 32.776882893, -79.93682513, 32.776882893], "geometry": {"coordinates": [-79.93682513, 32.776882893], "type": "Point"}, "id": "1178", "properties": {"Object ID": 574486973, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "1179", "properties": {"Object ID": 574487015, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "1180", "properties": {"Object ID": 574488672, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92821141, 32.778169161, -79.92821141, 32.778169161], "geometry": {"coordinates": [-79.92821141, 32.778169161], "type": "Point"}, "id": "1181", "properties": {"Object ID": 574488719, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92885762, 32.770297964, -79.92885762, 32.770297964], "geometry": {"coordinates": [-79.92885762, 32.770297964], "type": "Point"}, "id": "1182", "properties": {"Object ID": 573467724, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92928728, 32.770430113, -79.92928728, 32.770430113], "geometry": {"coordinates": [-79.92928728, 32.770430113], "type": "Point"}, "id": "1183", "properties": {"Object ID": 573467725, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9343763, 32.77528917, -79.9343763, 32.77528917], "geometry": {"coordinates": [-79.9343763, 32.77528917], "type": "Point"}, "id": "1184", "properties": {"Object ID": 573475713, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92822267, 32.774440015, -79.92822267, 32.774440015], "geometry": {"coordinates": [-79.92822267, 32.774440015], "type": "Point"}, "id": "1185", "properties": {"Object ID": 573779379, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92785603, 32.772534319, -79.92785603, 32.772534319], "geometry": {"coordinates": [-79.92785603, 32.772534319], "type": "Point"}, "id": "1186", "properties": {"Object ID": 573782437, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93024669, 32.774493376, -79.93024669, 32.774493376], "geometry": {"coordinates": [-79.93024669, 32.774493376], "type": "Point"}, "id": "1187", "properties": {"Object ID": 573783177, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93324451, 32.775745585, -79.93324451, 32.775745585], "geometry": {"coordinates": [-79.93324451, 32.775745585], "type": "Point"}, "id": "1188", "properties": {"Object ID": 573785843, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93297858, 32.773632398, -79.93297858, 32.773632398], "geometry": {"coordinates": [-79.93297858, 32.773632398], "type": "Point"}, "id": "1189", "properties": {"Object ID": 573785939, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93474089, 32.77500809, -79.93474089, 32.77500809], "geometry": {"coordinates": [-79.93474089, 32.77500809], "type": "Point"}, "id": "1190", "properties": {"Object ID": 573789141, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93713911, 32.772556192, -79.93713911, 32.772556192], "geometry": {"coordinates": [-79.93713911, 32.772556192], "type": "Point"}, "id": "1191", "properties": {"Object ID": 573789227, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93862172, 32.774610886, -79.93862172, 32.774610886], "geometry": {"coordinates": [-79.93862172, 32.774610886], "type": "Point"}, "id": "1192", "properties": {"Object ID": 573789335, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93982498, 32.773850911, -79.93982498, 32.773850911], "geometry": {"coordinates": [-79.93982498, 32.773850911], "type": "Point"}, "id": "1193", "properties": {"Object ID": 573795540, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94204363, 32.773525316, -79.94204363, 32.773525316], "geometry": {"coordinates": [-79.94204363, 32.773525316], "type": "Point"}, "id": "1194", "properties": {"Object ID": 573800694, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92814765, 32.775553137, -79.92814765, 32.775553137], "geometry": {"coordinates": [-79.92814765, 32.775553137], "type": "Point"}, "id": "1195", "properties": {"Object ID": 574267747, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93377141, 32.769843821, -79.93377141, 32.769843821], "geometry": {"coordinates": [-79.93377141, 32.769843821], "type": "Point"}, "id": "1196", "properties": {"Object ID": 574268567, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93436966, 32.770291893, -79.93436966, 32.770291893], "geometry": {"coordinates": [-79.93436966, 32.770291893], "type": "Point"}, "id": "1197", "properties": {"Object ID": 574268591, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93481976, 32.77115796, -79.93481976, 32.77115796], "geometry": {"coordinates": [-79.93481976, 32.77115796], "type": "Point"}, "id": "1198", "properties": {"Object ID": 574268680, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93608043, 32.774289088, -79.93608043, 32.774289088], "geometry": {"coordinates": [-79.93608043, 32.774289088], "type": "Point"}, "id": "1199", "properties": {"Object ID": 574268736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93683644, 32.774149522, -79.93683644, 32.774149522], "geometry": {"coordinates": [-79.93683644, 32.774149522], "type": "Point"}, "id": "1200", "properties": {"Object ID": 574268748, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93617157, 32.770989293, -79.93617157, 32.770989293], "geometry": {"coordinates": [-79.93617157, 32.770989293], "type": "Point"}, "id": "1201", "properties": {"Object ID": 574268889, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93668804, 32.771101372, -79.93668804, 32.771101372], "geometry": {"coordinates": [-79.93668804, 32.771101372], "type": "Point"}, "id": "1202", "properties": {"Object ID": 574268897, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93703657, 32.770780147, -79.93703657, 32.770780147], "geometry": {"coordinates": [-79.93703657, 32.770780147], "type": "Point"}, "id": "1203", "properties": {"Object ID": 574294756, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92941497, 32.775830294, -79.92941497, 32.775830294], "geometry": {"coordinates": [-79.92941497, 32.775830294], "type": "Point"}, "id": "1204", "properties": {"Object ID": 574346755, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92780897, 32.776260517, -79.92780897, 32.776260517], "geometry": {"coordinates": [-79.92780897, 32.776260517], "type": "Point"}, "id": "1205", "properties": {"Object ID": 574372453, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92958905, 32.776381714, -79.92958905, 32.776381714], "geometry": {"coordinates": [-79.92958905, 32.776381714], "type": "Point"}, "id": "1206", "properties": {"Object ID": 574372569, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93131293, 32.771566947, -79.93131293, 32.771566947], "geometry": {"coordinates": [-79.93131293, 32.771566947], "type": "Point"}, "id": "1207", "properties": {"Object ID": 574372737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1208", "properties": {"Object ID": 574476759, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1209", "properties": {"Object ID": 574476807, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92881418, 32.770269817, -79.92881418, 32.770269817], "geometry": {"coordinates": [-79.92881418, 32.770269817], "type": "Point"}, "id": "1210", "properties": {"Object ID": 574476812, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92759289, 32.776314875, -79.92759289, 32.776314875], "geometry": {"coordinates": [-79.92759289, 32.776314875], "type": "Point"}, "id": "1211", "properties": {"Object ID": 574488791, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92802582, 32.776264948, -79.92802582, 32.776264948], "geometry": {"coordinates": [-79.92802582, 32.776264948], "type": "Point"}, "id": "1212", "properties": {"Object ID": 574488805, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92858397, 32.775119787, -79.92858397, 32.775119787], "geometry": {"coordinates": [-79.92858397, 32.775119787], "type": "Point"}, "id": "1213", "properties": {"Object ID": 574488838, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93056057, 32.782797349, -79.93056057, 32.782797349], "geometry": {"coordinates": [-79.93056057, 32.782797349], "type": "Point"}, "id": "1214", "properties": {"Object ID": 573467959, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93341205, 32.774822277, -79.93341205, 32.774822277], "geometry": {"coordinates": [-79.93341205, 32.774822277], "type": "Point"}, "id": "1215", "properties": {"Object ID": 573475705, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93155196, 32.777449246, -79.93155196, 32.777449246], "geometry": {"coordinates": [-79.93155196, 32.777449246], "type": "Point"}, "id": "1216", "properties": {"Object ID": 573785433, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93217246, 32.776521687, -79.93217246, 32.776521687], "geometry": {"coordinates": [-79.93217246, 32.776521687], "type": "Point"}, "id": "1217", "properties": {"Object ID": 573785439, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9320575, 32.777626, -79.9320575, 32.777626], "geometry": {"coordinates": [-79.9320575, 32.777626], "type": "Point"}, "id": "1218", "properties": {"Object ID": 573785446, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93212526, 32.772653578, -79.93212526, 32.772653578], "geometry": {"coordinates": [-79.93212526, 32.772653578], "type": "Point"}, "id": "1219", "properties": {"Object ID": 573785629, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93149855, 32.772900084, -79.93149855, 32.772900084], "geometry": {"coordinates": [-79.93149855, 32.772900084], "type": "Point"}, "id": "1220", "properties": {"Object ID": 573785637, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93211193, 32.772955814, -79.93211193, 32.772955814], "geometry": {"coordinates": [-79.93211193, 32.772955814], "type": "Point"}, "id": "1221", "properties": {"Object ID": 573785639, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93265221, 32.774553154, -79.93265221, 32.774553154], "geometry": {"coordinates": [-79.93265221, 32.774553154], "type": "Point"}, "id": "1222", "properties": {"Object ID": 573785806, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9331634, 32.774554734, -79.9331634, 32.774554734], "geometry": {"coordinates": [-79.9331634, 32.774554734], "type": "Point"}, "id": "1223", "properties": {"Object ID": 573785808, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93272357, 32.775012546, -79.93272357, 32.775012546], "geometry": {"coordinates": [-79.93272357, 32.775012546], "type": "Point"}, "id": "1224", "properties": {"Object ID": 573785820, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93319265, 32.775344823, -79.93319265, 32.775344823], "geometry": {"coordinates": [-79.93319265, 32.775344823], "type": "Point"}, "id": "1225", "properties": {"Object ID": 573785831, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93289056, 32.775679154, -79.93289056, 32.775679154], "geometry": {"coordinates": [-79.93289056, 32.775679154], "type": "Point"}, "id": "1226", "properties": {"Object ID": 573785841, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93287745, 32.775781486, -79.93287745, 32.775781486], "geometry": {"coordinates": [-79.93287745, 32.775781486], "type": "Point"}, "id": "1227", "properties": {"Object ID": 573785845, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93326482, 32.775832553, -79.93326482, 32.775832553], "geometry": {"coordinates": [-79.93326482, 32.775832553], "type": "Point"}, "id": "1228", "properties": {"Object ID": 573785847, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93332341, 32.776036678, -79.93332341, 32.776036678], "geometry": {"coordinates": [-79.93332341, 32.776036678], "type": "Point"}, "id": "1229", "properties": {"Object ID": 573785851, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93315097, 32.776053979, -79.93315097, 32.776053979], "geometry": {"coordinates": [-79.93315097, 32.776053979], "type": "Point"}, "id": "1230", "properties": {"Object ID": 573785855, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93289001, 32.776126537, -79.93289001, 32.776126537], "geometry": {"coordinates": [-79.93289001, 32.776126537], "type": "Point"}, "id": "1231", "properties": {"Object ID": 573785860, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.932894, 32.776134, -79.932894, 32.776134], "geometry": {"coordinates": [-79.932894, 32.776134], "type": "Point"}, "id": "1232", "properties": {"Object ID": 573785866, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93279297, 32.774349755, -79.93279297, 32.774349755], "geometry": {"coordinates": [-79.93279297, 32.774349755], "type": "Point"}, "id": "1233", "properties": {"Object ID": 573785877, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93248491, 32.772379968, -79.93248491, 32.772379968], "geometry": {"coordinates": [-79.93248491, 32.772379968], "type": "Point"}, "id": "1234", "properties": {"Object ID": 573785903, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93341532, 32.772540302, -79.93341532, 32.772540302], "geometry": {"coordinates": [-79.93341532, 32.772540302], "type": "Point"}, "id": "1235", "properties": {"Object ID": 573785907, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9324951, 32.772675445, -79.9324951, 32.772675445], "geometry": {"coordinates": [-79.9324951, 32.772675445], "type": "Point"}, "id": "1236", "properties": {"Object ID": 573785911, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93249332, 32.77297829, -79.93249332, 32.77297829], "geometry": {"coordinates": [-79.93249332, 32.77297829], "type": "Point"}, "id": "1237", "properties": {"Object ID": 573785921, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93264403, 32.773252508, -79.93264403, 32.773252508], "geometry": {"coordinates": [-79.93264403, 32.773252508], "type": "Point"}, "id": "1238", "properties": {"Object ID": 573785929, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93291731, 32.773515169, -79.93291731, 32.773515169], "geometry": {"coordinates": [-79.93291731, 32.773515169], "type": "Point"}, "id": "1239", "properties": {"Object ID": 573785935, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93328816, 32.773945646, -79.93328816, 32.773945646], "geometry": {"coordinates": [-79.93328816, 32.773945646], "type": "Point"}, "id": "1240", "properties": {"Object ID": 573785956, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93346091, 32.773917177, -79.93346091, 32.773917177], "geometry": {"coordinates": [-79.93346091, 32.773917177], "type": "Point"}, "id": "1241", "properties": {"Object ID": 573785958, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93265327, 32.774223123, -79.93265327, 32.774223123], "geometry": {"coordinates": [-79.93265327, 32.774223123], "type": "Point"}, "id": "1242", "properties": {"Object ID": 573785970, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93309834, 32.774256592, -79.93309834, 32.774256592], "geometry": {"coordinates": [-79.93309834, 32.774256592], "type": "Point"}, "id": "1243", "properties": {"Object ID": 573785976, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93276125, 32.771949088, -79.93276125, 32.771949088], "geometry": {"coordinates": [-79.93276125, 32.771949088], "type": "Point"}, "id": "1244", "properties": {"Object ID": 573785984, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93213834, 32.774695077, -79.93213834, 32.774695077], "geometry": {"coordinates": [-79.93213834, 32.774695077], "type": "Point"}, "id": "1245", "properties": {"Object ID": 573831666, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93201278, 32.774722221, -79.93201278, 32.774722221], "geometry": {"coordinates": [-79.93201278, 32.774722221], "type": "Point"}, "id": "1246", "properties": {"Object ID": 573831668, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93201278, 32.774722221, -79.93201278, 32.774722221], "geometry": {"coordinates": [-79.93201278, 32.774722221], "type": "Point"}, "id": "1247", "properties": {"Object ID": 573831670, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93172229, 32.774753116, -79.93172229, 32.774753116], "geometry": {"coordinates": [-79.93172229, 32.774753116], "type": "Point"}, "id": "1248", "properties": {"Object ID": 573831682, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93184157, 32.774769794, -79.93184157, 32.774769794], "geometry": {"coordinates": [-79.93184157, 32.774769794], "type": "Point"}, "id": "1249", "properties": {"Object ID": 573831689, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241209, 32.774880914, -79.93241209, 32.774880914], "geometry": {"coordinates": [-79.93241209, 32.774880914], "type": "Point"}, "id": "1250", "properties": {"Object ID": 573831691, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242062, 32.775087666, -79.93242062, 32.775087666], "geometry": {"coordinates": [-79.93242062, 32.775087666], "type": "Point"}, "id": "1251", "properties": {"Object ID": 573831697, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93193054, 32.775284203, -79.93193054, 32.775284203], "geometry": {"coordinates": [-79.93193054, 32.775284203], "type": "Point"}, "id": "1252", "properties": {"Object ID": 573831711, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93165798, 32.775393375, -79.93165798, 32.775393375], "geometry": {"coordinates": [-79.93165798, 32.775393375], "type": "Point"}, "id": "1253", "properties": {"Object ID": 573831717, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242972, 32.775481669, -79.93242972, 32.775481669], "geometry": {"coordinates": [-79.93242972, 32.775481669], "type": "Point"}, "id": "1254", "properties": {"Object ID": 573831719, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93249662, 32.775623078, -79.93249662, 32.775623078], "geometry": {"coordinates": [-79.93249662, 32.775623078], "type": "Point"}, "id": "1255", "properties": {"Object ID": 573831727, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93256952, 32.776031415, -79.93256952, 32.776031415], "geometry": {"coordinates": [-79.93256952, 32.776031415], "type": "Point"}, "id": "1256", "properties": {"Object ID": 573831734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93256952, 32.776031415, -79.93256952, 32.776031415], "geometry": {"coordinates": [-79.93256952, 32.776031415], "type": "Point"}, "id": "1257", "properties": {"Object ID": 573831736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93162921, 32.77607049, -79.93162921, 32.77607049], "geometry": {"coordinates": [-79.93162921, 32.77607049], "type": "Point"}, "id": "1258", "properties": {"Object ID": 573831744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93162921, 32.77607049, -79.93162921, 32.77607049], "geometry": {"coordinates": [-79.93162921, 32.77607049], "type": "Point"}, "id": "1259", "properties": {"Object ID": 573831746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93250064, 32.777942599, -79.93250064, 32.777942599], "geometry": {"coordinates": [-79.93250064, 32.777942599], "type": "Point"}, "id": "1260", "properties": {"Object ID": 573831766, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93150848, 32.778259346, -79.93150848, 32.778259346], "geometry": {"coordinates": [-79.93150848, 32.778259346], "type": "Point"}, "id": "1261", "properties": {"Object ID": 573831782, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93271625, 32.778164884, -79.93271625, 32.778164884], "geometry": {"coordinates": [-79.93271625, 32.778164884], "type": "Point"}, "id": "1262", "properties": {"Object ID": 573831784, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93286915, 32.779143341, -79.93286915, 32.779143341], "geometry": {"coordinates": [-79.93286915, 32.779143341], "type": "Point"}, "id": "1263", "properties": {"Object ID": 573831797, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93152646, 32.77827288, -79.93152646, 32.77827288], "geometry": {"coordinates": [-79.93152646, 32.77827288], "type": "Point"}, "id": "1264", "properties": {"Object ID": 573831813, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93317944, 32.771383771, -79.93317944, 32.771383771], "geometry": {"coordinates": [-79.93317944, 32.771383771], "type": "Point"}, "id": "1265", "properties": {"Object ID": 573841024, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9322612, 32.771474667, -79.9322612, 32.771474667], "geometry": {"coordinates": [-79.9322612, 32.771474667], "type": "Point"}, "id": "1266", "properties": {"Object ID": 573841027, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93199343, 32.771806729, -79.93199343, 32.771806729], "geometry": {"coordinates": [-79.93199343, 32.771806729], "type": "Point"}, "id": "1267", "properties": {"Object ID": 574268209, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93202989, 32.77216751, -79.93202989, 32.77216751], "geometry": {"coordinates": [-79.93202989, 32.77216751], "type": "Point"}, "id": "1268", "properties": {"Object ID": 574268231, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93145158, 32.772374505, -79.93145158, 32.772374505], "geometry": {"coordinates": [-79.93145158, 32.772374505], "type": "Point"}, "id": "1269", "properties": {"Object ID": 574268237, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93145158, 32.772374505, -79.93145158, 32.772374505], "geometry": {"coordinates": [-79.93145158, 32.772374505], "type": "Point"}, "id": "1270", "properties": {"Object ID": 574268239, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93164132, 32.772368363, -79.93164132, 32.772368363], "geometry": {"coordinates": [-79.93164132, 32.772368363], "type": "Point"}, "id": "1271", "properties": {"Object ID": 574268241, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93195291, 32.774025626, -79.93195291, 32.774025626], "geometry": {"coordinates": [-79.93195291, 32.774025626], "type": "Point"}, "id": "1272", "properties": {"Object ID": 574293767, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93225749, 32.774175235, -79.93225749, 32.774175235], "geometry": {"coordinates": [-79.93225749, 32.774175235], "type": "Point"}, "id": "1273", "properties": {"Object ID": 574293785, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93338296, 32.777843775, -79.93338296, 32.777843775], "geometry": {"coordinates": [-79.93338296, 32.777843775], "type": "Point"}, "id": "1274", "properties": {"Object ID": 574371691, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191397, 32.771436685, -79.93191397, 32.771436685], "geometry": {"coordinates": [-79.93191397, 32.771436685], "type": "Point"}, "id": "1275", "properties": {"Object ID": 574372717, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93179919, 32.771590688, -79.93179919, 32.771590688], "geometry": {"coordinates": [-79.93179919, 32.771590688], "type": "Point"}, "id": "1276", "properties": {"Object ID": 574372727, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93167344, 32.771639475, -79.93167344, 32.771639475], "geometry": {"coordinates": [-79.93167344, 32.771639475], "type": "Point"}, "id": "1277", "properties": {"Object ID": 574372735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93296787, 32.776879729, -79.93296787, 32.776879729], "geometry": {"coordinates": [-79.93296787, 32.776879729], "type": "Point"}, "id": "1278", "properties": {"Object ID": 574409648, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93305761, 32.776982082, -79.93305761, 32.776982082], "geometry": {"coordinates": [-79.93305761, 32.776982082], "type": "Point"}, "id": "1279", "properties": {"Object ID": 574409650, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93307108, 32.77742516, -79.93307108, 32.77742516], "geometry": {"coordinates": [-79.93307108, 32.77742516], "type": "Point"}, "id": "1280", "properties": {"Object ID": 574409661, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93325105, 32.778823121, -79.93325105, 32.778823121], "geometry": {"coordinates": [-79.93325105, 32.778823121], "type": "Point"}, "id": "1281", "properties": {"Object ID": 574421807, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93319144, 32.778464297, -79.93319144, 32.778464297], "geometry": {"coordinates": [-79.93319144, 32.778464297], "type": "Point"}, "id": "1282", "properties": {"Object ID": 574421817, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93338378, 32.779406072, -79.93338378, 32.779406072], "geometry": {"coordinates": [-79.93338378, 32.779406072], "type": "Point"}, "id": "1283", "properties": {"Object ID": 574446557, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93342151, 32.779442072, -79.93342151, 32.779442072], "geometry": {"coordinates": [-79.93342151, 32.779442072], "type": "Point"}, "id": "1284", "properties": {"Object ID": 574446561, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93295129, 32.780329582, -79.93295129, 32.780329582], "geometry": {"coordinates": [-79.93295129, 32.780329582], "type": "Point"}, "id": "1285", "properties": {"Object ID": 574460955, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "1286", "properties": {"Object ID": 574460971, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "1287", "properties": {"Object ID": 574460983, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "1288", "properties": {"Object ID": 574460985, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "1289", "properties": {"Object ID": 574460993, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "1290", "properties": {"Object ID": 574460995, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "1291", "properties": {"Object ID": 574460997, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "1292", "properties": {"Object ID": 574461001, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93315753, 32.777901952, -79.93315753, 32.777901952], "geometry": {"coordinates": [-79.93315753, 32.777901952], "type": "Point"}, "id": "1293", "properties": {"Object ID": 574461037, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93247947, 32.775920061, -79.93247947, 32.775920061], "geometry": {"coordinates": [-79.93247947, 32.775920061], "type": "Point"}, "id": "1294", "properties": {"Object ID": 574486859, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93218159, 32.775506556, -79.93218159, 32.775506556], "geometry": {"coordinates": [-79.93218159, 32.775506556], "type": "Point"}, "id": "1295", "properties": {"Object ID": 574486891, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9317424, 32.771649042, -79.9317424, 32.771649042], "geometry": {"coordinates": [-79.9317424, 32.771649042], "type": "Point"}, "id": "1296", "properties": {"Object ID": 574486917, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93269937, 32.77799692, -79.93269937, 32.77799692], "geometry": {"coordinates": [-79.93269937, 32.77799692], "type": "Point"}, "id": "1297", "properties": {"Object ID": 574487098, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191116, 32.779781997, -79.93191116, 32.779781997], "geometry": {"coordinates": [-79.93191116, 32.779781997], "type": "Point"}, "id": "1298", "properties": {"Object ID": 573387868, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191116, 32.779781997, -79.93191116, 32.779781997], "geometry": {"coordinates": [-79.93191116, 32.779781997], "type": "Point"}, "id": "1299", "properties": {"Object ID": 573387872, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191116, 32.779781997, -79.93191116, 32.779781997], "geometry": {"coordinates": [-79.93191116, 32.779781997], "type": "Point"}, "id": "1300", "properties": {"Object ID": 573387874, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191116, 32.779781997, -79.93191116, 32.779781997], "geometry": {"coordinates": [-79.93191116, 32.779781997], "type": "Point"}, "id": "1301", "properties": {"Object ID": 573387876, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191116, 32.779781997, -79.93191116, 32.779781997], "geometry": {"coordinates": [-79.93191116, 32.779781997], "type": "Point"}, "id": "1302", "properties": {"Object ID": 573387878, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187083, 32.779462015, -79.93187083, 32.779462015], "geometry": {"coordinates": [-79.93187083, 32.779462015], "type": "Point"}, "id": "1303", "properties": {"Object ID": 573387880, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187083, 32.779462015, -79.93187083, 32.779462015], "geometry": {"coordinates": [-79.93187083, 32.779462015], "type": "Point"}, "id": "1304", "properties": {"Object ID": 573387885, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187083, 32.779462015, -79.93187083, 32.779462015], "geometry": {"coordinates": [-79.93187083, 32.779462015], "type": "Point"}, "id": "1305", "properties": {"Object ID": 573387888, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93187083, 32.779462015, -79.93187083, 32.779462015], "geometry": {"coordinates": [-79.93187083, 32.779462015], "type": "Point"}, "id": "1306", "properties": {"Object ID": 573387894, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93293388, 32.779311996, -79.93293388, 32.779311996], "geometry": {"coordinates": [-79.93293388, 32.779311996], "type": "Point"}, "id": "1307", "properties": {"Object ID": 573387898, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93288339, 32.779521837, -79.93288339, 32.779521837], "geometry": {"coordinates": [-79.93288339, 32.779521837], "type": "Point"}, "id": "1308", "properties": {"Object ID": 573387900, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93208953, 32.780330062, -79.93208953, 32.780330062], "geometry": {"coordinates": [-79.93208953, 32.780330062], "type": "Point"}, "id": "1309", "properties": {"Object ID": 573387906, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93208953, 32.780330062, -79.93208953, 32.780330062], "geometry": {"coordinates": [-79.93208953, 32.780330062], "type": "Point"}, "id": "1310", "properties": {"Object ID": 573387908, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93208953, 32.780330062, -79.93208953, 32.780330062], "geometry": {"coordinates": [-79.93208953, 32.780330062], "type": "Point"}, "id": "1311", "properties": {"Object ID": 573387910, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93208953, 32.780330062, -79.93208953, 32.780330062], "geometry": {"coordinates": [-79.93208953, 32.780330062], "type": "Point"}, "id": "1312", "properties": {"Object ID": 573387912, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191667, 32.780486772, -79.93191667, 32.780486772], "geometry": {"coordinates": [-79.93191667, 32.780486772], "type": "Point"}, "id": "1313", "properties": {"Object ID": 573387918, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191667, 32.780486772, -79.93191667, 32.780486772], "geometry": {"coordinates": [-79.93191667, 32.780486772], "type": "Point"}, "id": "1314", "properties": {"Object ID": 573387922, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191667, 32.780486772, -79.93191667, 32.780486772], "geometry": {"coordinates": [-79.93191667, 32.780486772], "type": "Point"}, "id": "1315", "properties": {"Object ID": 573387924, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191667, 32.780486772, -79.93191667, 32.780486772], "geometry": {"coordinates": [-79.93191667, 32.780486772], "type": "Point"}, "id": "1316", "properties": {"Object ID": 573387926, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93147255, 32.782216093, -79.93147255, 32.782216093], "geometry": {"coordinates": [-79.93147255, 32.782216093], "type": "Point"}, "id": "1317", "properties": {"Object ID": 573475695, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029658, 32.778403404, -79.93029658, 32.778403404], "geometry": {"coordinates": [-79.93029658, 32.778403404], "type": "Point"}, "id": "1318", "properties": {"Object ID": 573783286, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.930667, 32.77875707, -79.930667, 32.77875707], "geometry": {"coordinates": [-79.930667, 32.77875707], "type": "Point"}, "id": "1319", "properties": {"Object ID": 573783301, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93112351, 32.779280644, -79.93112351, 32.779280644], "geometry": {"coordinates": [-79.93112351, 32.779280644], "type": "Point"}, "id": "1320", "properties": {"Object ID": 573783313, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93598329, 32.779587071, -79.93598329, 32.779587071], "geometry": {"coordinates": [-79.93598329, 32.779587071], "type": "Point"}, "id": "1321", "properties": {"Object ID": 573789126, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93136773, 32.78120541, -79.93136773, 32.78120541], "geometry": {"coordinates": [-79.93136773, 32.78120541], "type": "Point"}, "id": "1322", "properties": {"Object ID": 573831815, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93704671, 32.780246604, -79.93704671, 32.780246604], "geometry": {"coordinates": [-79.93704671, 32.780246604], "type": "Point"}, "id": "1323", "properties": {"Object ID": 573850811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93735004, 32.779713226, -79.93735004, 32.779713226], "geometry": {"coordinates": [-79.93735004, 32.779713226], "type": "Point"}, "id": "1324", "properties": {"Object ID": 574294735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93656366, 32.779805929, -79.93656366, 32.779805929], "geometry": {"coordinates": [-79.93656366, 32.779805929], "type": "Point"}, "id": "1325", "properties": {"Object ID": 574294737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93801118, 32.779802144, -79.93801118, 32.779802144], "geometry": {"coordinates": [-79.93801118, 32.779802144], "type": "Point"}, "id": "1326", "properties": {"Object ID": 574294813, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242442, 32.781970364, -79.93242442, 32.781970364], "geometry": {"coordinates": [-79.93242442, 32.781970364], "type": "Point"}, "id": "1327", "properties": {"Object ID": 574371538, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242442, 32.781970364, -79.93242442, 32.781970364], "geometry": {"coordinates": [-79.93242442, 32.781970364], "type": "Point"}, "id": "1328", "properties": {"Object ID": 574371544, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242442, 32.781970364, -79.93242442, 32.781970364], "geometry": {"coordinates": [-79.93242442, 32.781970364], "type": "Point"}, "id": "1329", "properties": {"Object ID": 574371546, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9326316, 32.781124507, -79.9326316, 32.781124507], "geometry": {"coordinates": [-79.9326316, 32.781124507], "type": "Point"}, "id": "1330", "properties": {"Object ID": 574371554, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93276684, 32.781806628, -79.93276684, 32.781806628], "geometry": {"coordinates": [-79.93276684, 32.781806628], "type": "Point"}, "id": "1331", "properties": {"Object ID": 574371559, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93258546, 32.781970217, -79.93258546, 32.781970217], "geometry": {"coordinates": [-79.93258546, 32.781970217], "type": "Point"}, "id": "1332", "properties": {"Object ID": 574371575, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93600432, 32.778566182, -79.93600432, 32.778566182], "geometry": {"coordinates": [-79.93600432, 32.778566182], "type": "Point"}, "id": "1333", "properties": {"Object ID": 574371777, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93586242, 32.778678371, -79.93586242, 32.778678371], "geometry": {"coordinates": [-79.93586242, 32.778678371], "type": "Point"}, "id": "1334", "properties": {"Object ID": 574371787, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93543226, 32.778704167, -79.93543226, 32.778704167], "geometry": {"coordinates": [-79.93543226, 32.778704167], "type": "Point"}, "id": "1335", "properties": {"Object ID": 574371791, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93327766, 32.779045709, -79.93327766, 32.779045709], "geometry": {"coordinates": [-79.93327766, 32.779045709], "type": "Point"}, "id": "1336", "properties": {"Object ID": 574421815, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93463445, 32.779732623, -79.93463445, 32.779732623], "geometry": {"coordinates": [-79.93463445, 32.779732623], "type": "Point"}, "id": "1337", "properties": {"Object ID": 574446509, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9342548, 32.779930537, -79.9342548, 32.779930537], "geometry": {"coordinates": [-79.9342548, 32.779930537], "type": "Point"}, "id": "1338", "properties": {"Object ID": 574446517, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93396619, 32.779526363, -79.93396619, 32.779526363], "geometry": {"coordinates": [-79.93396619, 32.779526363], "type": "Point"}, "id": "1339", "properties": {"Object ID": 574446525, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93385777, 32.779260347, -79.93385777, 32.779260347], "geometry": {"coordinates": [-79.93385777, 32.779260347], "type": "Point"}, "id": "1340", "properties": {"Object ID": 574446539, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93378849, 32.779266023, -79.93378849, 32.779266023], "geometry": {"coordinates": [-79.93378849, 32.779266023], "type": "Point"}, "id": "1341", "properties": {"Object ID": 574446545, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "1342", "properties": {"Object ID": 574447800, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "1343", "properties": {"Object ID": 574447811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93370546, 32.780669368, -79.93370546, 32.780669368], "geometry": {"coordinates": [-79.93370546, 32.780669368], "type": "Point"}, "id": "1344", "properties": {"Object ID": 574447822, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93411816, 32.780945961, -79.93411816, 32.780945961], "geometry": {"coordinates": [-79.93411816, 32.780945961], "type": "Point"}, "id": "1345", "properties": {"Object ID": 574447828, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93057458, 32.779847015, -79.93057458, 32.779847015], "geometry": {"coordinates": [-79.93057458, 32.779847015], "type": "Point"}, "id": "1346", "properties": {"Object ID": 574451487, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93092389, 32.780416852, -79.93092389, 32.780416852], "geometry": {"coordinates": [-79.93092389, 32.780416852], "type": "Point"}, "id": "1347", "properties": {"Object ID": 574451491, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93092389, 32.780416852, -79.93092389, 32.780416852], "geometry": {"coordinates": [-79.93092389, 32.780416852], "type": "Point"}, "id": "1348", "properties": {"Object ID": 574451492, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93092389, 32.780416852, -79.93092389, 32.780416852], "geometry": {"coordinates": [-79.93092389, 32.780416852], "type": "Point"}, "id": "1349", "properties": {"Object ID": 574451495, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93087903, 32.780089433, -79.93087903, 32.780089433], "geometry": {"coordinates": [-79.93087903, 32.780089433], "type": "Point"}, "id": "1350", "properties": {"Object ID": 574451499, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93087903, 32.780089433, -79.93087903, 32.780089433], "geometry": {"coordinates": [-79.93087903, 32.780089433], "type": "Point"}, "id": "1351", "properties": {"Object ID": 574451500, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93401099, 32.780256033, -79.93401099, 32.780256033], "geometry": {"coordinates": [-79.93401099, 32.780256033], "type": "Point"}, "id": "1352", "properties": {"Object ID": 574455889, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93401099, 32.780256033, -79.93401099, 32.780256033], "geometry": {"coordinates": [-79.93401099, 32.780256033], "type": "Point"}, "id": "1353", "properties": {"Object ID": 574455890, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93355205, 32.781223407, -79.93355205, 32.781223407], "geometry": {"coordinates": [-79.93355205, 32.781223407], "type": "Point"}, "id": "1354", "properties": {"Object ID": 574460931, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93305405, 32.781484465, -79.93305405, 32.781484465], "geometry": {"coordinates": [-79.93305405, 32.781484465], "type": "Point"}, "id": "1355", "properties": {"Object ID": 574460937, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93285367, 32.781098819, -79.93285367, 32.781098819], "geometry": {"coordinates": [-79.93285367, 32.781098819], "type": "Point"}, "id": "1356", "properties": {"Object ID": 574460939, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93420524, 32.779937346, -79.93420524, 32.779937346], "geometry": {"coordinates": [-79.93420524, 32.779937346], "type": "Point"}, "id": "1357", "properties": {"Object ID": 574460945, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93395183, 32.779269382, -79.93395183, 32.779269382], "geometry": {"coordinates": [-79.93395183, 32.779269382], "type": "Point"}, "id": "1358", "properties": {"Object ID": 574460953, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93289545, 32.779879272, -79.93289545, 32.779879272], "geometry": {"coordinates": [-79.93289545, 32.779879272], "type": "Point"}, "id": "1359", "properties": {"Object ID": 574460957, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9357483, 32.779531488, -79.9357483, 32.779531488], "geometry": {"coordinates": [-79.9357483, 32.779531488], "type": "Point"}, "id": "1360", "properties": {"Object ID": 574486981, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93503717, 32.779666462, -79.93503717, 32.779666462], "geometry": {"coordinates": [-79.93503717, 32.779666462], "type": "Point"}, "id": "1361", "properties": {"Object ID": 574486991, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93341863, 32.778558501, -79.93341863, 32.778558501], "geometry": {"coordinates": [-79.93341863, 32.778558501], "type": "Point"}, "id": "1362", "properties": {"Object ID": 574487008, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "1363", "properties": {"Object ID": 574487016, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "1364", "properties": {"Object ID": 574487023, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681104, 32.778289954, -79.92681104, 32.778289954], "geometry": {"coordinates": [-79.92681104, 32.778289954], "type": "Point"}, "id": "1365", "properties": {"Object ID": 573407534, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92913919, 32.780523417, -79.92913919, 32.780523417], "geometry": {"coordinates": [-79.92913919, 32.780523417], "type": "Point"}, "id": "1366", "properties": {"Object ID": 573463564, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92975035, 32.782570197, -79.92975035, 32.782570197], "geometry": {"coordinates": [-79.92975035, 32.782570197], "type": "Point"}, "id": "1367", "properties": {"Object ID": 573467955, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92968011, 32.782808334, -79.92968011, 32.782808334], "geometry": {"coordinates": [-79.92968011, 32.782808334], "type": "Point"}, "id": "1368", "properties": {"Object ID": 573467960, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92971968, 32.782868734, -79.92971968, 32.782868734], "geometry": {"coordinates": [-79.92971968, 32.782868734], "type": "Point"}, "id": "1369", "properties": {"Object ID": 573467961, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92976628, 32.7829352, -79.92976628, 32.7829352], "geometry": {"coordinates": [-79.92976628, 32.7829352], "type": "Point"}, "id": "1370", "properties": {"Object ID": 573467964, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92828742, 32.778875554, -79.92828742, 32.778875554], "geometry": {"coordinates": [-79.92828742, 32.778875554], "type": "Point"}, "id": "1371", "properties": {"Object ID": 573782391, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92887058, 32.78191093, -79.92887058, 32.78191093], "geometry": {"coordinates": [-79.92887058, 32.78191093], "type": "Point"}, "id": "1372", "properties": {"Object ID": 573782460, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.928426, 32.782048005, -79.928426, 32.782048005], "geometry": {"coordinates": [-79.928426, 32.782048005], "type": "Point"}, "id": "1373", "properties": {"Object ID": 573782474, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92981909, 32.778397581, -79.92981909, 32.778397581], "geometry": {"coordinates": [-79.92981909, 32.778397581], "type": "Point"}, "id": "1374", "properties": {"Object ID": 573783280, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93002133, 32.779324182, -79.93002133, 32.779324182], "geometry": {"coordinates": [-79.93002133, 32.779324182], "type": "Point"}, "id": "1375", "properties": {"Object ID": 573783305, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92868467, 32.782475631, -79.92868467, 32.782475631], "geometry": {"coordinates": [-79.92868467, 32.782475631], "type": "Point"}, "id": "1376", "properties": {"Object ID": 573827774, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92855501, 32.78251713, -79.92855501, 32.78251713], "geometry": {"coordinates": [-79.92855501, 32.78251713], "type": "Point"}, "id": "1377", "properties": {"Object ID": 573827776, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92888718, 32.783025097, -79.92888718, 32.783025097], "geometry": {"coordinates": [-79.92888718, 32.783025097], "type": "Point"}, "id": "1378", "properties": {"Object ID": 573827788, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92692669, 32.78147486, -79.92692669, 32.78147486], "geometry": {"coordinates": [-79.92692669, 32.78147486], "type": "Point"}, "id": "1379", "properties": {"Object ID": 574267588, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92682845, 32.782317397, -79.92682845, 32.782317397], "geometry": {"coordinates": [-79.92682845, 32.782317397], "type": "Point"}, "id": "1380", "properties": {"Object ID": 574267600, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92682845, 32.782317397, -79.92682845, 32.782317397], "geometry": {"coordinates": [-79.92682845, 32.782317397], "type": "Point"}, "id": "1381", "properties": {"Object ID": 574267602, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92682845, 32.782317397, -79.92682845, 32.782317397], "geometry": {"coordinates": [-79.92682845, 32.782317397], "type": "Point"}, "id": "1382", "properties": {"Object ID": 574267604, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92682845, 32.782317397, -79.92682845, 32.782317397], "geometry": {"coordinates": [-79.92682845, 32.782317397], "type": "Point"}, "id": "1383", "properties": {"Object ID": 574267606, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92859461, 32.780244674, -79.92859461, 32.780244674], "geometry": {"coordinates": [-79.92859461, 32.780244674], "type": "Point"}, "id": "1384", "properties": {"Object ID": 574268039, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92859461, 32.780244674, -79.92859461, 32.780244674], "geometry": {"coordinates": [-79.92859461, 32.780244674], "type": "Point"}, "id": "1385", "properties": {"Object ID": 574268041, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92859461, 32.780244674, -79.92859461, 32.780244674], "geometry": {"coordinates": [-79.92859461, 32.780244674], "type": "Point"}, "id": "1386", "properties": {"Object ID": 574268045, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9291748, 32.780046684, -79.9291748, 32.780046684], "geometry": {"coordinates": [-79.9291748, 32.780046684], "type": "Point"}, "id": "1387", "properties": {"Object ID": 574268051, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9291748, 32.780046684, -79.9291748, 32.780046684], "geometry": {"coordinates": [-79.9291748, 32.780046684], "type": "Point"}, "id": "1388", "properties": {"Object ID": 574268053, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9291748, 32.780046684, -79.9291748, 32.780046684], "geometry": {"coordinates": [-79.9291748, 32.780046684], "type": "Point"}, "id": "1389", "properties": {"Object ID": 574268057, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92739084, 32.779499094, -79.92739084, 32.779499094], "geometry": {"coordinates": [-79.92739084, 32.779499094], "type": "Point"}, "id": "1390", "properties": {"Object ID": 574371445, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92803347, 32.77943033, -79.92803347, 32.77943033], "geometry": {"coordinates": [-79.92803347, 32.77943033], "type": "Point"}, "id": "1391", "properties": {"Object ID": 574371447, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92476988, 32.780379241, -79.92476988, 32.780379241], "geometry": {"coordinates": [-79.92476988, 32.780379241], "type": "Point"}, "id": "1392", "properties": {"Object ID": 574372312, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "1393", "properties": {"Object ID": 574372402, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587587, 32.778685767, -79.92587587, 32.778685767], "geometry": {"coordinates": [-79.92587587, 32.778685767], "type": "Point"}, "id": "1394", "properties": {"Object ID": 574421612, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92883682, 32.778518011, -79.92883682, 32.778518011], "geometry": {"coordinates": [-79.92883682, 32.778518011], "type": "Point"}, "id": "1395", "properties": {"Object ID": 574446463, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92744911, 32.778311544, -79.92744911, 32.778311544], "geometry": {"coordinates": [-79.92744911, 32.778311544], "type": "Point"}, "id": "1396", "properties": {"Object ID": 574446477, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92643612, 32.780279013, -79.92643612, 32.780279013], "geometry": {"coordinates": [-79.92643612, 32.780279013], "type": "Point"}, "id": "1397", "properties": {"Object ID": 574451297, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92927368, 32.780925182, -79.92927368, 32.780925182], "geometry": {"coordinates": [-79.92927368, 32.780925182], "type": "Point"}, "id": "1398", "properties": {"Object ID": 574451456, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "1399", "properties": {"Object ID": 574451478, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "1400", "properties": {"Object ID": 574451479, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92789056, 32.781058865, -79.92789056, 32.781058865], "geometry": {"coordinates": [-79.92789056, 32.781058865], "type": "Point"}, "id": "1401", "properties": {"Object ID": 574451869, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92656424, 32.778612183, -79.92656424, 32.778612183], "geometry": {"coordinates": [-79.92656424, 32.778612183], "type": "Point"}, "id": "1402", "properties": {"Object ID": 574457057, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92995578, 32.780593928, -79.92995578, 32.780593928], "geometry": {"coordinates": [-79.92995578, 32.780593928], "type": "Point"}, "id": "1403", "properties": {"Object ID": 574461013, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93005522, 32.780237264, -79.93005522, 32.780237264], "geometry": {"coordinates": [-79.93005522, 32.780237264], "type": "Point"}, "id": "1404", "properties": {"Object ID": 574461021, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9278853, 32.779870634, -79.9278853, 32.779870634], "geometry": {"coordinates": [-79.9278853, 32.779870634], "type": "Point"}, "id": "1405", "properties": {"Object ID": 574461029, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92738581, 32.77970087, -79.92738581, 32.77970087], "geometry": {"coordinates": [-79.92738581, 32.77970087], "type": "Point"}, "id": "1406", "properties": {"Object ID": 574461287, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "1407", "properties": {"Object ID": 574488426, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92839272, 32.779026569, -79.92839272, 32.779026569], "geometry": {"coordinates": [-79.92839272, 32.779026569], "type": "Point"}, "id": "1408", "properties": {"Object ID": 574488678, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92954131, 32.778528978, -79.92954131, 32.778528978], "geometry": {"coordinates": [-79.92954131, 32.778528978], "type": "Point"}, "id": "1409", "properties": {"Object ID": 574488683, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92828968, 32.778609691, -79.92828968, 32.778609691], "geometry": {"coordinates": [-79.92828968, 32.778609691], "type": "Point"}, "id": "1410", "properties": {"Object ID": 574488687, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "1411", "properties": {"Object ID": 574488695, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "1412", "properties": {"Object ID": 574488697, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "1413", "properties": {"Object ID": 574488698, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92820274, 32.778662139, -79.92820274, 32.778662139], "geometry": {"coordinates": [-79.92820274, 32.778662139], "type": "Point"}, "id": "1414", "properties": {"Object ID": 574488708, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "1415", "properties": {"Object ID": 574488718, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93005403, 32.77324804, -79.93005403, 32.77324804], "geometry": {"coordinates": [-79.93005403, 32.77324804], "type": "Point"}, "id": "1416", "properties": {"Object ID": 573782600, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.929988, 32.7731275, -79.929988, 32.7731275], "geometry": {"coordinates": [-79.929988, 32.7731275], "type": "Point"}, "id": "1417", "properties": {"Object ID": 573782604, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93035753, 32.772832711, -79.93035753, 32.772832711], "geometry": {"coordinates": [-79.93035753, 32.772832711], "type": "Point"}, "id": "1418", "properties": {"Object ID": 573782582, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92968705, 32.773486552, -79.92968705, 32.773486552], "geometry": {"coordinates": [-79.92968705, 32.773486552], "type": "Point"}, "id": "1419", "properties": {"Object ID": 573783142, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93035212, 32.77359656, -79.93035212, 32.77359656], "geometry": {"coordinates": [-79.93035212, 32.77359656], "type": "Point"}, "id": "1420", "properties": {"Object ID": 573783146, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9304745, 32.774210317, -79.9304745, 32.774210317], "geometry": {"coordinates": [-79.9304745, 32.774210317], "type": "Point"}, "id": "1421", "properties": {"Object ID": 573783156, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92999374, 32.774658193, -79.92999374, 32.774658193], "geometry": {"coordinates": [-79.92999374, 32.774658193], "type": "Point"}, "id": "1422", "properties": {"Object ID": 573783191, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92985915, 32.774718141, -79.92985915, 32.774718141], "geometry": {"coordinates": [-79.92985915, 32.774718141], "type": "Point"}, "id": "1423", "properties": {"Object ID": 573783193, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92972636, 32.77472706, -79.92972636, 32.77472706], "geometry": {"coordinates": [-79.92972636, 32.77472706], "type": "Point"}, "id": "1424", "properties": {"Object ID": 573783195, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92999255, 32.778560384, -79.92999255, 32.778560384], "geometry": {"coordinates": [-79.92999255, 32.778560384], "type": "Point"}, "id": "1425", "properties": {"Object ID": 573783288, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93094355, 32.778464521, -79.93094355, 32.778464521], "geometry": {"coordinates": [-79.93094355, 32.778464521], "type": "Point"}, "id": "1426", "properties": {"Object ID": 573783295, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93008018, 32.779441212, -79.93008018, 32.779441212], "geometry": {"coordinates": [-79.93008018, 32.779441212], "type": "Point"}, "id": "1427", "properties": {"Object ID": 573783317, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93049453, 32.777679672, -79.93049453, 32.777679672], "geometry": {"coordinates": [-79.93049453, 32.777679672], "type": "Point"}, "id": "1428", "properties": {"Object ID": 573783341, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93097044, 32.777869364, -79.93097044, 32.777869364], "geometry": {"coordinates": [-79.93097044, 32.777869364], "type": "Point"}, "id": "1429", "properties": {"Object ID": 573783347, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93065525, 32.777943181, -79.93065525, 32.777943181], "geometry": {"coordinates": [-79.93065525, 32.777943181], "type": "Point"}, "id": "1430", "properties": {"Object ID": 573783349, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92960926, 32.778025075, -79.92960926, 32.778025075], "geometry": {"coordinates": [-79.92960926, 32.778025075], "type": "Point"}, "id": "1431", "properties": {"Object ID": 573783355, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92983308, 32.777886226, -79.92983308, 32.777886226], "geometry": {"coordinates": [-79.92983308, 32.777886226], "type": "Point"}, "id": "1432", "properties": {"Object ID": 573783357, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92991341, 32.770870666, -79.92991341, 32.770870666], "geometry": {"coordinates": [-79.92991341, 32.770870666], "type": "Point"}, "id": "1433", "properties": {"Object ID": 573783411, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93010077, 32.770889895, -79.93010077, 32.770889895], "geometry": {"coordinates": [-79.93010077, 32.770889895], "type": "Point"}, "id": "1434", "properties": {"Object ID": 573783413, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92960692, 32.770433827, -79.92960692, 32.770433827], "geometry": {"coordinates": [-79.92960692, 32.770433827], "type": "Point"}, "id": "1435", "properties": {"Object ID": 573783415, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93002946, 32.771528793, -79.93002946, 32.771528793], "geometry": {"coordinates": [-79.93002946, 32.771528793], "type": "Point"}, "id": "1436", "properties": {"Object ID": 573783437, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9309266, 32.772982975, -79.9309266, 32.772982975], "geometry": {"coordinates": [-79.9309266, 32.772982975], "type": "Point"}, "id": "1437", "properties": {"Object ID": 573785641, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93094521, 32.773453754, -79.93094521, 32.773453754], "geometry": {"coordinates": [-79.93094521, 32.773453754], "type": "Point"}, "id": "1438", "properties": {"Object ID": 573785671, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93113756, 32.773595724, -79.93113756, 32.773595724], "geometry": {"coordinates": [-79.93113756, 32.773595724], "type": "Point"}, "id": "1439", "properties": {"Object ID": 573785681, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92972682, 32.776806657, -79.92972682, 32.776806657], "geometry": {"coordinates": [-79.92972682, 32.776806657], "type": "Point"}, "id": "1440", "properties": {"Object ID": 573827744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93090297, 32.777247689, -79.93090297, 32.777247689], "geometry": {"coordinates": [-79.93090297, 32.777247689], "type": "Point"}, "id": "1441", "properties": {"Object ID": 573827764, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9299812, 32.777132109, -79.9299812, 32.777132109], "geometry": {"coordinates": [-79.9299812, 32.777132109], "type": "Point"}, "id": "1442", "properties": {"Object ID": 573827767, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93101707, 32.774974017, -79.93101707, 32.774974017], "geometry": {"coordinates": [-79.93101707, 32.774974017], "type": "Point"}, "id": "1443", "properties": {"Object ID": 573831660, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93099317, 32.774783956, -79.93099317, 32.774783956], "geometry": {"coordinates": [-79.93099317, 32.774783956], "type": "Point"}, "id": "1444", "properties": {"Object ID": 573831683, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93123444, 32.774908892, -79.93123444, 32.774908892], "geometry": {"coordinates": [-79.93123444, 32.774908892], "type": "Point"}, "id": "1445", "properties": {"Object ID": 573831701, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93123444, 32.774908892, -79.93123444, 32.774908892], "geometry": {"coordinates": [-79.93123444, 32.774908892], "type": "Point"}, "id": "1446", "properties": {"Object ID": 573831703, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93120313, 32.771908318, -79.93120313, 32.771908318], "geometry": {"coordinates": [-79.93120313, 32.771908318], "type": "Point"}, "id": "1447", "properties": {"Object ID": 574268215, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93069143, 32.772115719, -79.93069143, 32.772115719], "geometry": {"coordinates": [-79.93069143, 32.772115719], "type": "Point"}, "id": "1448", "properties": {"Object ID": 574268227, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93077705, 32.77226974, -79.93077705, 32.77226974], "geometry": {"coordinates": [-79.93077705, 32.77226974], "type": "Point"}, "id": "1449", "properties": {"Object ID": 574268233, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93116856, 32.7739649, -79.93116856, 32.7739649], "geometry": {"coordinates": [-79.93116856, 32.7739649], "type": "Point"}, "id": "1450", "properties": {"Object ID": 574293783, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93018554, 32.774930128, -79.93018554, 32.774930128], "geometry": {"coordinates": [-79.93018554, 32.774930128], "type": "Point"}, "id": "1451", "properties": {"Object ID": 574346732, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93028654, 32.774926278, -79.93028654, 32.774926278], "geometry": {"coordinates": [-79.93028654, 32.774926278], "type": "Point"}, "id": "1452", "properties": {"Object ID": 574346734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93042833, 32.774908289, -79.93042833, 32.774908289], "geometry": {"coordinates": [-79.93042833, 32.774908289], "type": "Point"}, "id": "1453", "properties": {"Object ID": 574346735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93033564, 32.775791754, -79.93033564, 32.775791754], "geometry": {"coordinates": [-79.93033564, 32.775791754], "type": "Point"}, "id": "1454", "properties": {"Object ID": 574346754, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93005346, 32.77625511, -79.93005346, 32.77625511], "geometry": {"coordinates": [-79.93005346, 32.77625511], "type": "Point"}, "id": "1455", "properties": {"Object ID": 574372523, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92966224, 32.77604809, -79.92966224, 32.77604809], "geometry": {"coordinates": [-79.92966224, 32.77604809], "type": "Point"}, "id": "1456", "properties": {"Object ID": 574372527, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92966224, 32.77604809, -79.92966224, 32.77604809], "geometry": {"coordinates": [-79.92966224, 32.77604809], "type": "Point"}, "id": "1457", "properties": {"Object ID": 574372531, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93074816, 32.77631412, -79.93074816, 32.77631412], "geometry": {"coordinates": [-79.93074816, 32.77631412], "type": "Point"}, "id": "1458", "properties": {"Object ID": 574372551, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93119192, 32.771465967, -79.93119192, 32.771465967], "geometry": {"coordinates": [-79.93119192, 32.771465967], "type": "Point"}, "id": "1459", "properties": {"Object ID": 574372719, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93126436, 32.771596841, -79.93126436, 32.771596841], "geometry": {"coordinates": [-79.93126436, 32.771596841], "type": "Point"}, "id": "1460", "properties": {"Object ID": 574372731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9299647, 32.777106362, -79.9299647, 32.777106362], "geometry": {"coordinates": [-79.9299647, 32.777106362], "type": "Point"}, "id": "1461", "properties": {"Object ID": 574461054, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9297417, 32.776818232, -79.9297417, 32.776818232], "geometry": {"coordinates": [-79.9297417, 32.776818232], "type": "Point"}, "id": "1462", "properties": {"Object ID": 574461069, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92984364, 32.776348356, -79.92984364, 32.776348356], "geometry": {"coordinates": [-79.92984364, 32.776348356], "type": "Point"}, "id": "1463", "properties": {"Object ID": 574461071, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93118436, 32.773859045, -79.93118436, 32.773859045], "geometry": {"coordinates": [-79.93118436, 32.773859045], "type": "Point"}, "id": "1464", "properties": {"Object ID": 574486898, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93057638, 32.77489169, -79.93057638, 32.77489169], "geometry": {"coordinates": [-79.93057638, 32.77489169], "type": "Point"}, "id": "1465", "properties": {"Object ID": 574486900, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93054043, 32.774049999, -79.93054043, 32.774049999], "geometry": {"coordinates": [-79.93054043, 32.774049999], "type": "Point"}, "id": "1466", "properties": {"Object ID": 574486904, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "1467", "properties": {"Object ID": 574487019, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "1468", "properties": {"Object ID": 574487021, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "1469", "properties": {"Object ID": 574487027, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93099298, 32.777963075, -79.93099298, 32.777963075], "geometry": {"coordinates": [-79.93099298, 32.777963075], "type": "Point"}, "id": "1470", "properties": {"Object ID": 574487099, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92998285, 32.777991927, -79.92998285, 32.777991927], "geometry": {"coordinates": [-79.92998285, 32.777991927], "type": "Point"}, "id": "1471", "properties": {"Object ID": 574487103, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9295985, 32.777773831, -79.9295985, 32.777773831], "geometry": {"coordinates": [-79.9295985, 32.777773831], "type": "Point"}, "id": "1472", "properties": {"Object ID": 574488765, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93825076, 32.772566349, -79.93825076, 32.772566349], "geometry": {"coordinates": [-79.93825076, 32.772566349], "type": "Point"}, "id": "1473", "properties": {"Object ID": 573789687, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94279517, 32.773094927, -79.94279517, 32.773094927], "geometry": {"coordinates": [-79.94279517, 32.773094927], "type": "Point"}, "id": "1474", "properties": {"Object ID": 573800734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93621845, 32.771937653, -79.93621845, 32.771937653], "geometry": {"coordinates": [-79.93621845, 32.771937653], "type": "Point"}, "id": "1475", "properties": {"Object ID": 573850061, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9340731, 32.771696531, -79.9340731, 32.771696531], "geometry": {"coordinates": [-79.9340731, 32.771696531], "type": "Point"}, "id": "1476", "properties": {"Object ID": 574268694, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93718549, 32.770551431, -79.93718549, 32.770551431], "geometry": {"coordinates": [-79.93718549, 32.770551431], "type": "Point"}, "id": "1477", "properties": {"Object ID": 574294750, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9409813, 32.7725674, -79.9409813, 32.7725674], "geometry": {"coordinates": [-79.9409813, 32.7725674], "type": "Point"}, "id": "1478", "properties": {"Object ID": 574296103, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93967324, 32.772787928, -79.93967324, 32.772787928], "geometry": {"coordinates": [-79.93967324, 32.772787928], "type": "Point"}, "id": "1479", "properties": {"Object ID": 574372040, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93956678, 32.772372292, -79.93956678, 32.772372292], "geometry": {"coordinates": [-79.93956678, 32.772372292], "type": "Point"}, "id": "1480", "properties": {"Object ID": 574372042, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93677602, 32.772289822, -79.93677602, 32.772289822], "geometry": {"coordinates": [-79.93677602, 32.772289822], "type": "Point"}, "id": "1481", "properties": {"Object ID": 574371894, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93818311, 32.772170113, -79.93818311, 32.772170113], "geometry": {"coordinates": [-79.93818311, 32.772170113], "type": "Point"}, "id": "1482", "properties": {"Object ID": 574373115, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93971856, 32.771505285, -79.93971856, 32.771505285], "geometry": {"coordinates": [-79.93971856, 32.771505285], "type": "Point"}, "id": "1483", "properties": {"Object ID": 574421859, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1484", "properties": {"Object ID": 574476734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1485", "properties": {"Object ID": 574476800, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1486", "properties": {"Object ID": 574476808, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93133148, 32.771521871, -79.93133148, 32.771521871], "geometry": {"coordinates": [-79.93133148, 32.771521871], "type": "Point"}, "id": "1487", "properties": {"Object ID": 574486918, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93438481, 32.775443603, -79.93438481, 32.775443603], "geometry": {"coordinates": [-79.93438481, 32.775443603], "type": "Point"}, "id": "1488", "properties": {"Object ID": 573475716, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92792634, 32.773819458, -79.92792634, 32.773819458], "geometry": {"coordinates": [-79.92792634, 32.773819458], "type": "Point"}, "id": "1489", "properties": {"Object ID": 573779299, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92876632, 32.773883945, -79.92876632, 32.773883945], "geometry": {"coordinates": [-79.92876632, 32.773883945], "type": "Point"}, "id": "1490", "properties": {"Object ID": 573779349, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93123631, 32.772723921, -79.93123631, 32.772723921], "geometry": {"coordinates": [-79.93123631, 32.772723921], "type": "Point"}, "id": "1491", "properties": {"Object ID": 573785631, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93080597, 32.772842451, -79.93080597, 32.772842451], "geometry": {"coordinates": [-79.93080597, 32.772842451], "type": "Point"}, "id": "1492", "properties": {"Object ID": 573785635, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93373462, 32.774283442, -79.93373462, 32.774283442], "geometry": {"coordinates": [-79.93373462, 32.774283442], "type": "Point"}, "id": "1493", "properties": {"Object ID": 573785974, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93433877, 32.773026799, -79.93433877, 32.773026799], "geometry": {"coordinates": [-79.93433877, 32.773026799], "type": "Point"}, "id": "1494", "properties": {"Object ID": 573789022, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93565769, 32.773961659, -79.93565769, 32.773961659], "geometry": {"coordinates": [-79.93565769, 32.773961659], "type": "Point"}, "id": "1495", "properties": {"Object ID": 573789036, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93828855, 32.773444779, -79.93828855, 32.773444779], "geometry": {"coordinates": [-79.93828855, 32.773444779], "type": "Point"}, "id": "1496", "properties": {"Object ID": 573789721, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94006169, 32.773782417, -79.94006169, 32.773782417], "geometry": {"coordinates": [-79.94006169, 32.773782417], "type": "Point"}, "id": "1497", "properties": {"Object ID": 573795538, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9414963, 32.772793567, -79.9414963, 32.772793567], "geometry": {"coordinates": [-79.9414963, 32.772793567], "type": "Point"}, "id": "1498", "properties": {"Object ID": 573800724, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93230155, 32.774620289, -79.93230155, 32.774620289], "geometry": {"coordinates": [-79.93230155, 32.774620289], "type": "Point"}, "id": "1499", "properties": {"Object ID": 573831662, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93641555, 32.773269442, -79.93641555, 32.773269442], "geometry": {"coordinates": [-79.93641555, 32.773269442], "type": "Point"}, "id": "1500", "properties": {"Object ID": 573850094, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94006266, 32.773440656, -79.94006266, 32.773440656], "geometry": {"coordinates": [-79.94006266, 32.773440656], "type": "Point"}, "id": "1501", "properties": {"Object ID": 573860098, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93777101, 32.775010988, -79.93777101, 32.775010988], "geometry": {"coordinates": [-79.93777101, 32.775010988], "type": "Point"}, "id": "1502", "properties": {"Object ID": 574269186, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141633, 32.773180776, -79.94141633, 32.773180776], "geometry": {"coordinates": [-79.94141633, 32.773180776], "type": "Point"}, "id": "1503", "properties": {"Object ID": 574270734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938979, 32.776111957, -79.92938979, 32.776111957], "geometry": {"coordinates": [-79.92938979, 32.776111957], "type": "Point"}, "id": "1504", "properties": {"Object ID": 574372559, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "1505", "properties": {"Object ID": 574486775, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "1506", "properties": {"Object ID": 574486816, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93218159, 32.775506556, -79.93218159, 32.775506556], "geometry": {"coordinates": [-79.93218159, 32.775506556], "type": "Point"}, "id": "1507", "properties": {"Object ID": 574486890, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9275034, 32.775239754, -79.9275034, 32.775239754], "geometry": {"coordinates": [-79.9275034, 32.775239754], "type": "Point"}, "id": "1508", "properties": {"Object ID": 574488846, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92683952, 32.77534394, -79.92683952, 32.77534394], "geometry": {"coordinates": [-79.92683952, 32.77534394], "type": "Point"}, "id": "1509", "properties": {"Object ID": 574488857, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92820141, 32.77829234, -79.92820141, 32.77829234], "geometry": {"coordinates": [-79.92820141, 32.77829234], "type": "Point"}, "id": "1510", "properties": {"Object ID": 573782506, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93725354, 32.777128648, -79.93725354, 32.777128648], "geometry": {"coordinates": [-79.93725354, 32.777128648], "type": "Point"}, "id": "1511", "properties": {"Object ID": 574268946, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9389859, 32.777964172, -79.9389859, 32.777964172], "geometry": {"coordinates": [-79.9389859, 32.777964172], "type": "Point"}, "id": "1512", "properties": {"Object ID": 574269307, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93474207, 32.777751789, -79.93474207, 32.777751789], "geometry": {"coordinates": [-79.93474207, 32.777751789], "type": "Point"}, "id": "1513", "properties": {"Object ID": 574371761, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542686, 32.778094108, -79.93542686, 32.778094108], "geometry": {"coordinates": [-79.93542686, 32.778094108], "type": "Point"}, "id": "1514", "properties": {"Object ID": 574371771, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93270804, 32.778062275, -79.93270804, 32.778062275], "geometry": {"coordinates": [-79.93270804, 32.778062275], "type": "Point"}, "id": "1515", "properties": {"Object ID": 574460967, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92894188, 32.777506624, -79.92894188, 32.777506624], "geometry": {"coordinates": [-79.92894188, 32.777506624], "type": "Point"}, "id": "1516", "properties": {"Object ID": 574461056, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92722124, 32.778240325, -79.92722124, 32.778240325], "geometry": {"coordinates": [-79.92722124, 32.778240325], "type": "Point"}, "id": "1517", "properties": {"Object ID": 574461301, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.945115, 32.777017559, -79.945115, 32.777017559], "geometry": {"coordinates": [-79.945115, 32.777017559], "type": "Point"}, "id": "1518", "properties": {"Object ID": 573807484, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94498354, 32.776730046, -79.94498354, 32.776730046], "geometry": {"coordinates": [-79.94498354, 32.776730046], "type": "Point"}, "id": "1519", "properties": {"Object ID": 574422154, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "1520", "properties": {"Object ID": 574488676, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93370953, 32.774604353, -79.93370953, 32.774604353], "geometry": {"coordinates": [-79.93370953, 32.774604353], "type": "Point"}, "id": "1521", "properties": {"Object ID": 573475703, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93431994, 32.774694143, -79.93431994, 32.774694143], "geometry": {"coordinates": [-79.93431994, 32.774694143], "type": "Point"}, "id": "1522", "properties": {"Object ID": 573475704, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93433075, 32.774823148, -79.93433075, 32.774823148], "geometry": {"coordinates": [-79.93433075, 32.774823148], "type": "Point"}, "id": "1523", "properties": {"Object ID": 573475706, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93435745, 32.774935229, -79.93435745, 32.774935229], "geometry": {"coordinates": [-79.93435745, 32.774935229], "type": "Point"}, "id": "1524", "properties": {"Object ID": 573475707, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93416017, 32.775455442, -79.93416017, 32.775455442], "geometry": {"coordinates": [-79.93416017, 32.775455442], "type": "Point"}, "id": "1525", "properties": {"Object ID": 573475715, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93440606, 32.775688852, -79.93440606, 32.775688852], "geometry": {"coordinates": [-79.93440606, 32.775688852], "type": "Point"}, "id": "1526", "properties": {"Object ID": 573475720, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93440606, 32.775688852, -79.93440606, 32.775688852], "geometry": {"coordinates": [-79.93440606, 32.775688852], "type": "Point"}, "id": "1527", "properties": {"Object ID": 573475721, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93378161, 32.77292716, -79.93378161, 32.77292716], "geometry": {"coordinates": [-79.93378161, 32.77292716], "type": "Point"}, "id": "1528", "properties": {"Object ID": 573785919, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93537271, 32.772004267, -79.93537271, 32.772004267], "geometry": {"coordinates": [-79.93537271, 32.772004267], "type": "Point"}, "id": "1529", "properties": {"Object ID": 573789003, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93408022, 32.772094735, -79.93408022, 32.772094735], "geometry": {"coordinates": [-79.93408022, 32.772094735], "type": "Point"}, "id": "1530", "properties": {"Object ID": 573789005, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93523778, 32.772259994, -79.93523778, 32.772259994], "geometry": {"coordinates": [-79.93523778, 32.772259994], "type": "Point"}, "id": "1531", "properties": {"Object ID": 573789008, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93781728, 32.773331009, -79.93781728, 32.773331009], "geometry": {"coordinates": [-79.93781728, 32.773331009], "type": "Point"}, "id": "1532", "properties": {"Object ID": 573789239, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93793231, 32.773675936, -79.93793231, 32.773675936], "geometry": {"coordinates": [-79.93793231, 32.773675936], "type": "Point"}, "id": "1533", "properties": {"Object ID": 573789246, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93504046, 32.772231457, -79.93504046, 32.772231457], "geometry": {"coordinates": [-79.93504046, 32.772231457], "type": "Point"}, "id": "1534", "properties": {"Object ID": 573789009, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93460458, 32.772566938, -79.93460458, 32.772566938], "geometry": {"coordinates": [-79.93460458, 32.772566938], "type": "Point"}, "id": "1535", "properties": {"Object ID": 573789016, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93453715, 32.773622948, -79.93453715, 32.773622948], "geometry": {"coordinates": [-79.93453715, 32.773622948], "type": "Point"}, "id": "1536", "properties": {"Object ID": 573789028, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93511044, 32.773671495, -79.93511044, 32.773671495], "geometry": {"coordinates": [-79.93511044, 32.773671495], "type": "Point"}, "id": "1537", "properties": {"Object ID": 573789029, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93440146, 32.773777543, -79.93440146, 32.773777543], "geometry": {"coordinates": [-79.93440146, 32.773777543], "type": "Point"}, "id": "1538", "properties": {"Object ID": 573789031, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93539216, 32.77392293, -79.93539216, 32.77392293], "geometry": {"coordinates": [-79.93539216, 32.77392293], "type": "Point"}, "id": "1539", "properties": {"Object ID": 573789033, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9349111, 32.779304384, -79.9349111, 32.779304384], "geometry": {"coordinates": [-79.9349111, 32.779304384], "type": "Point"}, "id": "1540", "properties": {"Object ID": 573789117, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93611956, 32.779335274, -79.93611956, 32.779335274], "geometry": {"coordinates": [-79.93611956, 32.779335274], "type": "Point"}, "id": "1541", "properties": {"Object ID": 573789118, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93614984, 32.77955311, -79.93614984, 32.77955311], "geometry": {"coordinates": [-79.93614984, 32.77955311], "type": "Point"}, "id": "1542", "properties": {"Object ID": 573789124, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93529618, 32.779606624, -79.93529618, 32.779606624], "geometry": {"coordinates": [-79.93529618, 32.779606624], "type": "Point"}, "id": "1543", "properties": {"Object ID": 573789131, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93523634, 32.774303366, -79.93523634, 32.774303366], "geometry": {"coordinates": [-79.93523634, 32.774303366], "type": "Point"}, "id": "1544", "properties": {"Object ID": 573789134, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9346991, 32.77475771, -79.9346991, 32.77475771], "geometry": {"coordinates": [-79.9346991, 32.77475771], "type": "Point"}, "id": "1545", "properties": {"Object ID": 573789139, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93475988, 32.774854654, -79.93475988, 32.774854654], "geometry": {"coordinates": [-79.93475988, 32.774854654], "type": "Point"}, "id": "1546", "properties": {"Object ID": 573789140, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93548515, 32.775252082, -79.93548515, 32.775252082], "geometry": {"coordinates": [-79.93548515, 32.775252082], "type": "Point"}, "id": "1547", "properties": {"Object ID": 573789144, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93475801, 32.775493881, -79.93475801, 32.775493881], "geometry": {"coordinates": [-79.93475801, 32.775493881], "type": "Point"}, "id": "1548", "properties": {"Object ID": 573789149, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93562931, 32.775669566, -79.93562931, 32.775669566], "geometry": {"coordinates": [-79.93562931, 32.775669566], "type": "Point"}, "id": "1549", "properties": {"Object ID": 573789154, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93609282, 32.776160355, -79.93609282, 32.776160355], "geometry": {"coordinates": [-79.93609282, 32.776160355], "type": "Point"}, "id": "1550", "properties": {"Object ID": 573789167, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93609282, 32.776160355, -79.93609282, 32.776160355], "geometry": {"coordinates": [-79.93609282, 32.776160355], "type": "Point"}, "id": "1551", "properties": {"Object ID": 573789168, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93648499, 32.776168474, -79.93648499, 32.776168474], "geometry": {"coordinates": [-79.93648499, 32.776168474], "type": "Point"}, "id": "1552", "properties": {"Object ID": 573789169, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93734491, 32.777615599, -79.93734491, 32.777615599], "geometry": {"coordinates": [-79.93734491, 32.777615599], "type": "Point"}, "id": "1553", "properties": {"Object ID": 573789184, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93623861, 32.777941604, -79.93623861, 32.777941604], "geometry": {"coordinates": [-79.93623861, 32.777941604], "type": "Point"}, "id": "1554", "properties": {"Object ID": 573789186, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93737953, 32.777914047, -79.93737953, 32.777914047], "geometry": {"coordinates": [-79.93737953, 32.777914047], "type": "Point"}, "id": "1555", "properties": {"Object ID": 573789187, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93653742, 32.778016123, -79.93653742, 32.778016123], "geometry": {"coordinates": [-79.93653742, 32.778016123], "type": "Point"}, "id": "1556", "properties": {"Object ID": 573789188, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93625524, 32.778153138, -79.93625524, 32.778153138], "geometry": {"coordinates": [-79.93625524, 32.778153138], "type": "Point"}, "id": "1557", "properties": {"Object ID": 573789192, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9362763, 32.778253113, -79.9362763, 32.778253113], "geometry": {"coordinates": [-79.9362763, 32.778253113], "type": "Point"}, "id": "1558", "properties": {"Object ID": 573789193, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93633458, 32.778472228, -79.93633458, 32.778472228], "geometry": {"coordinates": [-79.93633458, 32.778472228], "type": "Point"}, "id": "1559", "properties": {"Object ID": 573789196, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9366804, 32.778584811, -79.9366804, 32.778584811], "geometry": {"coordinates": [-79.9366804, 32.778584811], "type": "Point"}, "id": "1560", "properties": {"Object ID": 573789199, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93634563, 32.778674696, -79.93634563, 32.778674696], "geometry": {"coordinates": [-79.93634563, 32.778674696], "type": "Point"}, "id": "1561", "properties": {"Object ID": 573789200, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93718391, 32.772062331, -79.93718391, 32.772062331], "geometry": {"coordinates": [-79.93718391, 32.772062331], "type": "Point"}, "id": "1562", "properties": {"Object ID": 573789220, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93778308, 32.772542105, -79.93778308, 32.772542105], "geometry": {"coordinates": [-79.93778308, 32.772542105], "type": "Point"}, "id": "1563", "properties": {"Object ID": 573789226, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93777473, 32.772956385, -79.93777473, 32.772956385], "geometry": {"coordinates": [-79.93777473, 32.772956385], "type": "Point"}, "id": "1564", "properties": {"Object ID": 573789233, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93769368, 32.773062639, -79.93769368, 32.773062639], "geometry": {"coordinates": [-79.93769368, 32.773062639], "type": "Point"}, "id": "1565", "properties": {"Object ID": 573789234, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93782264, 32.773160388, -79.93782264, 32.773160388], "geometry": {"coordinates": [-79.93782264, 32.773160388], "type": "Point"}, "id": "1566", "properties": {"Object ID": 573789236, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93739608, 32.771383523, -79.93739608, 32.771383523], "geometry": {"coordinates": [-79.93739608, 32.771383523], "type": "Point"}, "id": "1567", "properties": {"Object ID": 573789297, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93752697, 32.771468138, -79.93752697, 32.771468138], "geometry": {"coordinates": [-79.93752697, 32.771468138], "type": "Point"}, "id": "1568", "properties": {"Object ID": 573789299, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93718705, 32.771715953, -79.93718705, 32.771715953], "geometry": {"coordinates": [-79.93718705, 32.771715953], "type": "Point"}, "id": "1569", "properties": {"Object ID": 573789310, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.937703, 32.771885698, -79.937703, 32.771885698], "geometry": {"coordinates": [-79.937703, 32.771885698], "type": "Point"}, "id": "1570", "properties": {"Object ID": 573789313, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93746248, 32.775702903, -79.93746248, 32.775702903], "geometry": {"coordinates": [-79.93746248, 32.775702903], "type": "Point"}, "id": "1571", "properties": {"Object ID": 573789328, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93868974, 32.774538661, -79.93868974, 32.774538661], "geometry": {"coordinates": [-79.93868974, 32.774538661], "type": "Point"}, "id": "1572", "properties": {"Object ID": 573789334, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93917071, 32.774845088, -79.93917071, 32.774845088], "geometry": {"coordinates": [-79.93917071, 32.774845088], "type": "Point"}, "id": "1573", "properties": {"Object ID": 573789341, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93917071, 32.774845088, -79.93917071, 32.774845088], "geometry": {"coordinates": [-79.93917071, 32.774845088], "type": "Point"}, "id": "1574", "properties": {"Object ID": 573789342, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93837185, 32.774970542, -79.93837185, 32.774970542], "geometry": {"coordinates": [-79.93837185, 32.774970542], "type": "Point"}, "id": "1575", "properties": {"Object ID": 573789344, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93831938, 32.775569158, -79.93831938, 32.775569158], "geometry": {"coordinates": [-79.93831938, 32.775569158], "type": "Point"}, "id": "1576", "properties": {"Object ID": 573789358, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93765526, 32.775658099, -79.93765526, 32.775658099], "geometry": {"coordinates": [-79.93765526, 32.775658099], "type": "Point"}, "id": "1577", "properties": {"Object ID": 573789363, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93749841, 32.776049816, -79.93749841, 32.776049816], "geometry": {"coordinates": [-79.93749841, 32.776049816], "type": "Point"}, "id": "1578", "properties": {"Object ID": 573789434, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93751029, 32.776176005, -79.93751029, 32.776176005], "geometry": {"coordinates": [-79.93751029, 32.776176005], "type": "Point"}, "id": "1579", "properties": {"Object ID": 573789436, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93831947, 32.776628992, -79.93831947, 32.776628992], "geometry": {"coordinates": [-79.93831947, 32.776628992], "type": "Point"}, "id": "1580", "properties": {"Object ID": 573789444, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93759531, 32.77667411, -79.93759531, 32.77667411], "geometry": {"coordinates": [-79.93759531, 32.77667411], "type": "Point"}, "id": "1581", "properties": {"Object ID": 573789447, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93832342, 32.776711131, -79.93832342, 32.776711131], "geometry": {"coordinates": [-79.93832342, 32.776711131], "type": "Point"}, "id": "1582", "properties": {"Object ID": 573789448, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93818535, 32.776790341, -79.93818535, 32.776790341], "geometry": {"coordinates": [-79.93818535, 32.776790341], "type": "Point"}, "id": "1583", "properties": {"Object ID": 573789450, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93767106, 32.776809693, -79.93767106, 32.776809693], "geometry": {"coordinates": [-79.93767106, 32.776809693], "type": "Point"}, "id": "1584", "properties": {"Object ID": 573789452, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93833687, 32.776969485, -79.93833687, 32.776969485], "geometry": {"coordinates": [-79.93833687, 32.776969485], "type": "Point"}, "id": "1585", "properties": {"Object ID": 573789454, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93770666, 32.777076795, -79.93770666, 32.777076795], "geometry": {"coordinates": [-79.93770666, 32.777076795], "type": "Point"}, "id": "1586", "properties": {"Object ID": 573789456, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93819619, 32.777099656, -79.93819619, 32.777099656], "geometry": {"coordinates": [-79.93819619, 32.777099656], "type": "Point"}, "id": "1587", "properties": {"Object ID": 573789458, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93813707, 32.772478655, -79.93813707, 32.772478655], "geometry": {"coordinates": [-79.93813707, 32.772478655], "type": "Point"}, "id": "1588", "properties": {"Object ID": 573789685, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93816719, 32.772752536, -79.93816719, 32.772752536], "geometry": {"coordinates": [-79.93816719, 32.772752536], "type": "Point"}, "id": "1589", "properties": {"Object ID": 573789695, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93879792, 32.772805162, -79.93879792, 32.772805162], "geometry": {"coordinates": [-79.93879792, 32.772805162], "type": "Point"}, "id": "1590", "properties": {"Object ID": 573789697, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93823187, 32.772896944, -79.93823187, 32.772896944], "geometry": {"coordinates": [-79.93823187, 32.772896944], "type": "Point"}, "id": "1591", "properties": {"Object ID": 573789699, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93828502, 32.773000626, -79.93828502, 32.773000626], "geometry": {"coordinates": [-79.93828502, 32.773000626], "type": "Point"}, "id": "1592", "properties": {"Object ID": 573789705, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93886252, 32.773075873, -79.93886252, 32.773075873], "geometry": {"coordinates": [-79.93886252, 32.773075873], "type": "Point"}, "id": "1593", "properties": {"Object ID": 573789707, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93827245, 32.773216691, -79.93827245, 32.773216691], "geometry": {"coordinates": [-79.93827245, 32.773216691], "type": "Point"}, "id": "1594", "properties": {"Object ID": 573789713, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93873172, 32.773606916, -79.93873172, 32.773606916], "geometry": {"coordinates": [-79.93873172, 32.773606916], "type": "Point"}, "id": "1595", "properties": {"Object ID": 573789729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93863202, 32.778861265, -79.93863202, 32.778861265], "geometry": {"coordinates": [-79.93863202, 32.778861265], "type": "Point"}, "id": "1596", "properties": {"Object ID": 573794177, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93880209, 32.779148001, -79.93880209, 32.779148001], "geometry": {"coordinates": [-79.93880209, 32.779148001], "type": "Point"}, "id": "1597", "properties": {"Object ID": 573794179, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9393743, 32.778607709, -79.9393743, 32.778607709], "geometry": {"coordinates": [-79.9393743, 32.778607709], "type": "Point"}, "id": "1598", "properties": {"Object ID": 573794194, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93806316, 32.778729252, -79.93806316, 32.778729252], "geometry": {"coordinates": [-79.93806316, 32.778729252], "type": "Point"}, "id": "1599", "properties": {"Object ID": 573794198, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93914735, 32.778785585, -79.93914735, 32.778785585], "geometry": {"coordinates": [-79.93914735, 32.778785585], "type": "Point"}, "id": "1600", "properties": {"Object ID": 573794200, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93899147, 32.776604057, -79.93899147, 32.776604057], "geometry": {"coordinates": [-79.93899147, 32.776604057], "type": "Point"}, "id": "1601", "properties": {"Object ID": 573794275, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93997455, 32.776925363, -79.93997455, 32.776925363], "geometry": {"coordinates": [-79.93997455, 32.776925363], "type": "Point"}, "id": "1602", "properties": {"Object ID": 573794297, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93952515, 32.776952112, -79.93952515, 32.776952112], "geometry": {"coordinates": [-79.93952515, 32.776952112], "type": "Point"}, "id": "1603", "properties": {"Object ID": 573794304, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94011101, 32.773982601, -79.94011101, 32.773982601], "geometry": {"coordinates": [-79.94011101, 32.773982601], "type": "Point"}, "id": "1604", "properties": {"Object ID": 573795544, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94017163, 32.77459815, -79.94017163, 32.77459815], "geometry": {"coordinates": [-79.94017163, 32.77459815], "type": "Point"}, "id": "1605", "properties": {"Object ID": 573795559, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94022349, 32.774935408, -79.94022349, 32.774935408], "geometry": {"coordinates": [-79.94022349, 32.774935408], "type": "Point"}, "id": "1606", "properties": {"Object ID": 573795571, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94025227, 32.775029053, -79.94025227, 32.775029053], "geometry": {"coordinates": [-79.94025227, 32.775029053], "type": "Point"}, "id": "1607", "properties": {"Object ID": 573795575, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93974614, 32.775086642, -79.93974614, 32.775086642], "geometry": {"coordinates": [-79.93974614, 32.775086642], "type": "Point"}, "id": "1608", "properties": {"Object ID": 573795577, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94016477, 32.777275962, -79.94016477, 32.777275962], "geometry": {"coordinates": [-79.94016477, 32.777275962], "type": "Point"}, "id": "1609", "properties": {"Object ID": 573795667, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93973969, 32.777601819, -79.93973969, 32.777601819], "geometry": {"coordinates": [-79.93973969, 32.777601819], "type": "Point"}, "id": "1610", "properties": {"Object ID": 573795677, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.940458, 32.777760235, -79.940458, 32.777760235], "geometry": {"coordinates": [-79.940458, 32.777760235], "type": "Point"}, "id": "1611", "properties": {"Object ID": 573795683, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93980324, 32.778122815, -79.93980324, 32.778122815], "geometry": {"coordinates": [-79.93980324, 32.778122815], "type": "Point"}, "id": "1612", "properties": {"Object ID": 573795691, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94071972, 32.77826953, -79.94071972, 32.77826953], "geometry": {"coordinates": [-79.94071972, 32.77826953], "type": "Point"}, "id": "1613", "properties": {"Object ID": 573795695, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93983763, 32.77838185, -79.93983763, 32.77838185], "geometry": {"coordinates": [-79.93983763, 32.77838185], "type": "Point"}, "id": "1614", "properties": {"Object ID": 573795697, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93976601, 32.77853983, -79.93976601, 32.77853983], "geometry": {"coordinates": [-79.93976601, 32.77853983], "type": "Point"}, "id": "1615", "properties": {"Object ID": 573795701, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93621063, 32.772729507, -79.93621063, 32.772729507], "geometry": {"coordinates": [-79.93621063, 32.772729507], "type": "Point"}, "id": "1616", "properties": {"Object ID": 573850059, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93583216, 32.772890334, -79.93583216, 32.772890334], "geometry": {"coordinates": [-79.93583216, 32.772890334], "type": "Point"}, "id": "1617", "properties": {"Object ID": 573850086, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93623978, 32.772899881, -79.93623978, 32.772899881], "geometry": {"coordinates": [-79.93623978, 32.772899881], "type": "Point"}, "id": "1618", "properties": {"Object ID": 573850088, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93627811, 32.773075553, -79.93627811, 32.773075553], "geometry": {"coordinates": [-79.93627811, 32.773075553], "type": "Point"}, "id": "1619", "properties": {"Object ID": 573850092, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93606006, 32.773310199, -79.93606006, 32.773310199], "geometry": {"coordinates": [-79.93606006, 32.773310199], "type": "Point"}, "id": "1620", "properties": {"Object ID": 573850098, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93961406, 32.776193756, -79.93961406, 32.776193756], "geometry": {"coordinates": [-79.93961406, 32.776193756], "type": "Point"}, "id": "1621", "properties": {"Object ID": 573856058, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93861559, 32.775932066, -79.93861559, 32.775932066], "geometry": {"coordinates": [-79.93861559, 32.775932066], "type": "Point"}, "id": "1622", "properties": {"Object ID": 573856072, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93932045, 32.776242016, -79.93932045, 32.776242016], "geometry": {"coordinates": [-79.93932045, 32.776242016], "type": "Point"}, "id": "1623", "properties": {"Object ID": 573856080, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93905036, 32.776267163, -79.93905036, 32.776267163], "geometry": {"coordinates": [-79.93905036, 32.776267163], "type": "Point"}, "id": "1624", "properties": {"Object ID": 573856082, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93969172, 32.773176769, -79.93969172, 32.773176769], "geometry": {"coordinates": [-79.93969172, 32.773176769], "type": "Point"}, "id": "1625", "properties": {"Object ID": 573860089, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9393708, 32.7732589, -79.9393708, 32.7732589], "geometry": {"coordinates": [-79.9393708, 32.7732589], "type": "Point"}, "id": "1626", "properties": {"Object ID": 573860091, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93938891, 32.773467217, -79.93938891, 32.773467217], "geometry": {"coordinates": [-79.93938891, 32.773467217], "type": "Point"}, "id": "1627", "properties": {"Object ID": 573860102, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93971781, 32.77349768, -79.93971781, 32.77349768], "geometry": {"coordinates": [-79.93971781, 32.77349768], "type": "Point"}, "id": "1628", "properties": {"Object ID": 573860104, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94088067, 32.774744066, -79.94088067, 32.774744066], "geometry": {"coordinates": [-79.94088067, 32.774744066], "type": "Point"}, "id": "1629", "properties": {"Object ID": 573860273, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94100801, 32.775296708, -79.94100801, 32.775296708], "geometry": {"coordinates": [-79.94100801, 32.775296708], "type": "Point"}, "id": "1630", "properties": {"Object ID": 573860290, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93404348, 32.77150084, -79.93404348, 32.77150084], "geometry": {"coordinates": [-79.93404348, 32.77150084], "type": "Point"}, "id": "1631", "properties": {"Object ID": 574268688, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93532674, 32.77173108, -79.93532674, 32.77173108], "geometry": {"coordinates": [-79.93532674, 32.77173108], "type": "Point"}, "id": "1632", "properties": {"Object ID": 574268696, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93451041, 32.77172831, -79.93451041, 32.77172831], "geometry": {"coordinates": [-79.93451041, 32.77172831], "type": "Point"}, "id": "1633", "properties": {"Object ID": 574268698, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93695233, 32.774108396, -79.93695233, 32.774108396], "geometry": {"coordinates": [-79.93695233, 32.774108396], "type": "Point"}, "id": "1634", "properties": {"Object ID": 574268744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93670898, 32.774170108, -79.93670898, 32.774170108], "geometry": {"coordinates": [-79.93670898, 32.774170108], "type": "Point"}, "id": "1635", "properties": {"Object ID": 574268750, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93661223, 32.774204262, -79.93661223, 32.774204262], "geometry": {"coordinates": [-79.93661223, 32.774204262], "type": "Point"}, "id": "1636", "properties": {"Object ID": 574268757, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93584872, 32.774393986, -79.93584872, 32.774393986], "geometry": {"coordinates": [-79.93584872, 32.774393986], "type": "Point"}, "id": "1637", "properties": {"Object ID": 574268767, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93714697, 32.774576472, -79.93714697, 32.774576472], "geometry": {"coordinates": [-79.93714697, 32.774576472], "type": "Point"}, "id": "1638", "properties": {"Object ID": 574268773, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93685084, 32.774808474, -79.93685084, 32.774808474], "geometry": {"coordinates": [-79.93685084, 32.774808474], "type": "Point"}, "id": "1639", "properties": {"Object ID": 574268781, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93678465, 32.774911101, -79.93678465, 32.774911101], "geometry": {"coordinates": [-79.93678465, 32.774911101], "type": "Point"}, "id": "1640", "properties": {"Object ID": 574268785, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93595544, 32.775013407, -79.93595544, 32.775013407], "geometry": {"coordinates": [-79.93595544, 32.775013407], "type": "Point"}, "id": "1641", "properties": {"Object ID": 574268787, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9359729, 32.775120997, -79.9359729, 32.775120997], "geometry": {"coordinates": [-79.9359729, 32.775120997], "type": "Point"}, "id": "1642", "properties": {"Object ID": 574268793, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93612841, 32.775619051, -79.93612841, 32.775619051], "geometry": {"coordinates": [-79.93612841, 32.775619051], "type": "Point"}, "id": "1643", "properties": {"Object ID": 574268812, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9373155, 32.7740415, -79.9373155, 32.7740415], "geometry": {"coordinates": [-79.9373155, 32.7740415], "type": "Point"}, "id": "1644", "properties": {"Object ID": 574268819, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93671012, 32.771501891, -79.93671012, 32.771501891], "geometry": {"coordinates": [-79.93671012, 32.771501891], "type": "Point"}, "id": "1645", "properties": {"Object ID": 574268911, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93697776, 32.771577676, -79.93697776, 32.771577676], "geometry": {"coordinates": [-79.93697776, 32.771577676], "type": "Point"}, "id": "1646", "properties": {"Object ID": 574268915, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93660609, 32.777306644, -79.93660609, 32.777306644], "geometry": {"coordinates": [-79.93660609, 32.777306644], "type": "Point"}, "id": "1647", "properties": {"Object ID": 574268919, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93660609, 32.777306644, -79.93660609, 32.777306644], "geometry": {"coordinates": [-79.93660609, 32.777306644], "type": "Point"}, "id": "1648", "properties": {"Object ID": 574268921, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93695026, 32.776765158, -79.93695026, 32.776765158], "geometry": {"coordinates": [-79.93695026, 32.776765158], "type": "Point"}, "id": "1649", "properties": {"Object ID": 574268924, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93676979, 32.776807622, -79.93676979, 32.776807622], "geometry": {"coordinates": [-79.93676979, 32.776807622], "type": "Point"}, "id": "1650", "properties": {"Object ID": 574268930, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93655873, 32.776860422, -79.93655873, 32.776860422], "geometry": {"coordinates": [-79.93655873, 32.776860422], "type": "Point"}, "id": "1651", "properties": {"Object ID": 574268934, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93762425, 32.774645189, -79.93762425, 32.774645189], "geometry": {"coordinates": [-79.93762425, 32.774645189], "type": "Point"}, "id": "1652", "properties": {"Object ID": 574269129, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93813552, 32.774685044, -79.93813552, 32.774685044], "geometry": {"coordinates": [-79.93813552, 32.774685044], "type": "Point"}, "id": "1653", "properties": {"Object ID": 574269168, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93754883, 32.774725395, -79.93754883, 32.774725395], "geometry": {"coordinates": [-79.93754883, 32.774725395], "type": "Point"}, "id": "1654", "properties": {"Object ID": 574269174, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93793417, 32.774851052, -79.93793417, 32.774851052], "geometry": {"coordinates": [-79.93793417, 32.774851052], "type": "Point"}, "id": "1655", "properties": {"Object ID": 574269180, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93768012, 32.775093368, -79.93768012, 32.775093368], "geometry": {"coordinates": [-79.93768012, 32.775093368], "type": "Point"}, "id": "1656", "properties": {"Object ID": 574269191, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9367818, 32.775544505, -79.9367818, 32.775544505], "geometry": {"coordinates": [-79.9367818, 32.775544505], "type": "Point"}, "id": "1657", "properties": {"Object ID": 574269212, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93698741, 32.775693274, -79.93698741, 32.775693274], "geometry": {"coordinates": [-79.93698741, 32.775693274], "type": "Point"}, "id": "1658", "properties": {"Object ID": 574269216, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93809154, 32.777433619, -79.93809154, 32.777433619], "geometry": {"coordinates": [-79.93809154, 32.777433619], "type": "Point"}, "id": "1659", "properties": {"Object ID": 574269274, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93789222, 32.777492563, -79.93789222, 32.777492563], "geometry": {"coordinates": [-79.93789222, 32.777492563], "type": "Point"}, "id": "1660", "properties": {"Object ID": 574269276, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93773008, 32.777478878, -79.93773008, 32.777478878], "geometry": {"coordinates": [-79.93773008, 32.777478878], "type": "Point"}, "id": "1661", "properties": {"Object ID": 574269278, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93807513, 32.777624664, -79.93807513, 32.777624664], "geometry": {"coordinates": [-79.93807513, 32.777624664], "type": "Point"}, "id": "1662", "properties": {"Object ID": 574269282, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93777773, 32.777671048, -79.93777773, 32.777671048], "geometry": {"coordinates": [-79.93777773, 32.777671048], "type": "Point"}, "id": "1663", "properties": {"Object ID": 574269286, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93930677, 32.777937619, -79.93930677, 32.777937619], "geometry": {"coordinates": [-79.93930677, 32.777937619], "type": "Point"}, "id": "1664", "properties": {"Object ID": 574269305, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93779719, 32.778083571, -79.93779719, 32.778083571], "geometry": {"coordinates": [-79.93779719, 32.778083571], "type": "Point"}, "id": "1665", "properties": {"Object ID": 574269313, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9373179, 32.778946903, -79.9373179, 32.778946903], "geometry": {"coordinates": [-79.9373179, 32.778946903], "type": "Point"}, "id": "1666", "properties": {"Object ID": 574294729, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93819205, 32.779692506, -79.93819205, 32.779692506], "geometry": {"coordinates": [-79.93819205, 32.779692506], "type": "Point"}, "id": "1667", "properties": {"Object ID": 574294811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93822413, 32.779787326, -79.93822413, 32.779787326], "geometry": {"coordinates": [-79.93822413, 32.779787326], "type": "Point"}, "id": "1668", "properties": {"Object ID": 574294812, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94000387, 32.779025358, -79.94000387, 32.779025358], "geometry": {"coordinates": [-79.94000387, 32.779025358], "type": "Point"}, "id": "1669", "properties": {"Object ID": 574295953, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93921587, 32.777599349, -79.93921587, 32.777599349], "geometry": {"coordinates": [-79.93921587, 32.777599349], "type": "Point"}, "id": "1670", "properties": {"Object ID": 574295718, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93839824, 32.777793826, -79.93839824, 32.777793826], "geometry": {"coordinates": [-79.93839824, 32.777793826], "type": "Point"}, "id": "1671", "properties": {"Object ID": 574295725, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93808469, 32.777829012, -79.93808469, 32.777829012], "geometry": {"coordinates": [-79.93808469, 32.777829012], "type": "Point"}, "id": "1672", "properties": {"Object ID": 574295733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93874983, 32.777755829, -79.93874983, 32.777755829], "geometry": {"coordinates": [-79.93874983, 32.777755829], "type": "Point"}, "id": "1673", "properties": {"Object ID": 574295735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94041869, 32.778907851, -79.94041869, 32.778907851], "geometry": {"coordinates": [-79.94041869, 32.778907851], "type": "Point"}, "id": "1674", "properties": {"Object ID": 574295943, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93983264, 32.772065591, -79.93983264, 32.772065591], "geometry": {"coordinates": [-79.93983264, 32.772065591], "type": "Point"}, "id": "1675", "properties": {"Object ID": 574296083, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94108104, 32.772146762, -79.94108104, 32.772146762], "geometry": {"coordinates": [-79.94108104, 32.772146762], "type": "Point"}, "id": "1676", "properties": {"Object ID": 574296085, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94034008, 32.772263073, -79.94034008, 32.772263073], "geometry": {"coordinates": [-79.94034008, 32.772263073], "type": "Point"}, "id": "1677", "properties": {"Object ID": 574296093, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94057186, 32.77229336, -79.94057186, 32.77229336], "geometry": {"coordinates": [-79.94057186, 32.77229336], "type": "Point"}, "id": "1678", "properties": {"Object ID": 574296095, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93443657, 32.77777957, -79.93443657, 32.77777957], "geometry": {"coordinates": [-79.93443657, 32.77777957], "type": "Point"}, "id": "1679", "properties": {"Object ID": 574371652, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93430103, 32.777786816, -79.93430103, 32.777786816], "geometry": {"coordinates": [-79.93430103, 32.777786816], "type": "Point"}, "id": "1680", "properties": {"Object ID": 574371654, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93391977, 32.777859319, -79.93391977, 32.777859319], "geometry": {"coordinates": [-79.93391977, 32.777859319], "type": "Point"}, "id": "1681", "properties": {"Object ID": 574371673, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93401476, 32.778046036, -79.93401476, 32.778046036], "geometry": {"coordinates": [-79.93401476, 32.778046036], "type": "Point"}, "id": "1682", "properties": {"Object ID": 574371683, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9351499, 32.777726955, -79.9351499, 32.777726955], "geometry": {"coordinates": [-79.9351499, 32.777726955], "type": "Point"}, "id": "1683", "properties": {"Object ID": 574371749, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93472814, 32.778071559, -79.93472814, 32.778071559], "geometry": {"coordinates": [-79.93472814, 32.778071559], "type": "Point"}, "id": "1684", "properties": {"Object ID": 574371769, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94000969, 32.772560114, -79.94000969, 32.772560114], "geometry": {"coordinates": [-79.94000969, 32.772560114], "type": "Point"}, "id": "1685", "properties": {"Object ID": 574372048, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94071309, 32.772861632, -79.94071309, 32.772861632], "geometry": {"coordinates": [-79.94071309, 32.772861632], "type": "Point"}, "id": "1686", "properties": {"Object ID": 574372064, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9406681, 32.773227775, -79.9406681, 32.773227775], "geometry": {"coordinates": [-79.9406681, 32.773227775], "type": "Point"}, "id": "1687", "properties": {"Object ID": 574372078, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93651865, 32.772195261, -79.93651865, 32.772195261], "geometry": {"coordinates": [-79.93651865, 32.772195261], "type": "Point"}, "id": "1688", "properties": {"Object ID": 574371892, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93685673, 32.772685101, -79.93685673, 32.772685101], "geometry": {"coordinates": [-79.93685673, 32.772685101], "type": "Point"}, "id": "1689", "properties": {"Object ID": 574371900, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93657663, 32.772968201, -79.93657663, 32.772968201], "geometry": {"coordinates": [-79.93657663, 32.772968201], "type": "Point"}, "id": "1690", "properties": {"Object ID": 574371906, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93668643, 32.773707716, -79.93668643, 32.773707716], "geometry": {"coordinates": [-79.93668643, 32.773707716], "type": "Point"}, "id": "1691", "properties": {"Object ID": 574371924, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93680738, 32.773854201, -79.93680738, 32.773854201], "geometry": {"coordinates": [-79.93680738, 32.773854201], "type": "Point"}, "id": "1692", "properties": {"Object ID": 574371928, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93699713, 32.773878589, -79.93699713, 32.773878589], "geometry": {"coordinates": [-79.93699713, 32.773878589], "type": "Point"}, "id": "1693", "properties": {"Object ID": 574371930, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93549282, 32.777354814, -79.93549282, 32.777354814], "geometry": {"coordinates": [-79.93549282, 32.777354814], "type": "Point"}, "id": "1694", "properties": {"Object ID": 574372946, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93525023, 32.776302921, -79.93525023, 32.776302921], "geometry": {"coordinates": [-79.93525023, 32.776302921], "type": "Point"}, "id": "1695", "properties": {"Object ID": 574372952, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93480139, 32.776356808, -79.93480139, 32.776356808], "geometry": {"coordinates": [-79.93480139, 32.776356808], "type": "Point"}, "id": "1696", "properties": {"Object ID": 574372956, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93578413, 32.776495483, -79.93578413, 32.776495483], "geometry": {"coordinates": [-79.93578413, 32.776495483], "type": "Point"}, "id": "1697", "properties": {"Object ID": 574372961, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93497674, 32.776770163, -79.93497674, 32.776770163], "geometry": {"coordinates": [-79.93497674, 32.776770163], "type": "Point"}, "id": "1698", "properties": {"Object ID": 574372966, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93576923, 32.777181596, -79.93576923, 32.777181596], "geometry": {"coordinates": [-79.93576923, 32.777181596], "type": "Point"}, "id": "1699", "properties": {"Object ID": 574372979, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93537325, 32.77739054, -79.93537325, 32.77739054], "geometry": {"coordinates": [-79.93537325, 32.77739054], "type": "Point"}, "id": "1700", "properties": {"Object ID": 574372989, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93870515, 32.772382261, -79.93870515, 32.772382261], "geometry": {"coordinates": [-79.93870515, 32.772382261], "type": "Point"}, "id": "1701", "properties": {"Object ID": 574373104, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9387488, 32.772018395, -79.9387488, 32.772018395], "geometry": {"coordinates": [-79.9387488, 32.772018395], "type": "Point"}, "id": "1702", "properties": {"Object ID": 574373110, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9390071, 32.77213281, -79.9390071, 32.77213281], "geometry": {"coordinates": [-79.9390071, 32.77213281], "type": "Point"}, "id": "1703", "properties": {"Object ID": 574373113, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93883955, 32.772444734, -79.93883955, 32.772444734], "geometry": {"coordinates": [-79.93883955, 32.772444734], "type": "Point"}, "id": "1704", "properties": {"Object ID": 574373123, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93958613, 32.779332357, -79.93958613, 32.779332357], "geometry": {"coordinates": [-79.93958613, 32.779332357], "type": "Point"}, "id": "1705", "properties": {"Object ID": 574409909, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93880584, 32.779479519, -79.93880584, 32.779479519], "geometry": {"coordinates": [-79.93880584, 32.779479519], "type": "Point"}, "id": "1706", "properties": {"Object ID": 574409913, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93435092, 32.778161771, -79.93435092, 32.778161771], "geometry": {"coordinates": [-79.93435092, 32.778161771], "type": "Point"}, "id": "1707", "properties": {"Object ID": 574421790, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93367716, 32.778948121, -79.93367716, 32.778948121], "geometry": {"coordinates": [-79.93367716, 32.778948121], "type": "Point"}, "id": "1708", "properties": {"Object ID": 574421813, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93923788, 32.771723338, -79.93923788, 32.771723338], "geometry": {"coordinates": [-79.93923788, 32.771723338], "type": "Point"}, "id": "1709", "properties": {"Object ID": 574421844, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93925836, 32.77125494, -79.93925836, 32.77125494], "geometry": {"coordinates": [-79.93925836, 32.77125494], "type": "Point"}, "id": "1710", "properties": {"Object ID": 574421850, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93907638, 32.771448138, -79.93907638, 32.771448138], "geometry": {"coordinates": [-79.93907638, 32.771448138], "type": "Point"}, "id": "1711", "properties": {"Object ID": 574421855, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93946262, 32.77192598, -79.93946262, 32.77192598], "geometry": {"coordinates": [-79.93946262, 32.77192598], "type": "Point"}, "id": "1712", "properties": {"Object ID": 574421869, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93619061, 32.771648107, -79.93619061, 32.771648107], "geometry": {"coordinates": [-79.93619061, 32.771648107], "type": "Point"}, "id": "1713", "properties": {"Object ID": 574431709, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93596509, 32.771624237, -79.93596509, 32.771624237], "geometry": {"coordinates": [-79.93596509, 32.771624237], "type": "Point"}, "id": "1714", "properties": {"Object ID": 574431713, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9336979, 32.779879458, -79.9336979, 32.779879458], "geometry": {"coordinates": [-79.9336979, 32.779879458], "type": "Point"}, "id": "1715", "properties": {"Object ID": 574446507, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93454321, 32.779150786, -79.93454321, 32.779150786], "geometry": {"coordinates": [-79.93454321, 32.779150786], "type": "Point"}, "id": "1716", "properties": {"Object ID": 574446529, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93454869, 32.779269657, -79.93454869, 32.779269657], "geometry": {"coordinates": [-79.93454869, 32.779269657], "type": "Point"}, "id": "1717", "properties": {"Object ID": 574446537, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93378849, 32.779266023, -79.93378849, 32.779266023], "geometry": {"coordinates": [-79.93378849, 32.779266023], "type": "Point"}, "id": "1718", "properties": {"Object ID": 574446547, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93458081, 32.779415342, -79.93458081, 32.779415342], "geometry": {"coordinates": [-79.93458081, 32.779415342], "type": "Point"}, "id": "1719", "properties": {"Object ID": 574446553, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94073764, 32.778398944, -79.94073764, 32.778398944], "geometry": {"coordinates": [-79.94073764, 32.778398944], "type": "Point"}, "id": "1720", "properties": {"Object ID": 574486707, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94073764, 32.778398944, -79.94073764, 32.778398944], "geometry": {"coordinates": [-79.94073764, 32.778398944], "type": "Point"}, "id": "1721", "properties": {"Object ID": 574486709, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94041454, 32.778985705, -79.94041454, 32.778985705], "geometry": {"coordinates": [-79.94041454, 32.778985705], "type": "Point"}, "id": "1722", "properties": {"Object ID": 574486710, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94073764, 32.778398944, -79.94073764, 32.778398944], "geometry": {"coordinates": [-79.94073764, 32.778398944], "type": "Point"}, "id": "1723", "properties": {"Object ID": 574486711, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93923474, 32.778607967, -79.93923474, 32.778607967], "geometry": {"coordinates": [-79.93923474, 32.778607967], "type": "Point"}, "id": "1724", "properties": {"Object ID": 574486722, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93987278, 32.777321676, -79.93987278, 32.777321676], "geometry": {"coordinates": [-79.93987278, 32.777321676], "type": "Point"}, "id": "1725", "properties": {"Object ID": 574486787, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93887089, 32.777536819, -79.93887089, 32.777536819], "geometry": {"coordinates": [-79.93887089, 32.777536819], "type": "Point"}, "id": "1726", "properties": {"Object ID": 574486791, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93823393, 32.777796414, -79.93823393, 32.777796414], "geometry": {"coordinates": [-79.93823393, 32.777796414], "type": "Point"}, "id": "1727", "properties": {"Object ID": 574486793, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93833407, 32.777109379, -79.93833407, 32.777109379], "geometry": {"coordinates": [-79.93833407, 32.777109379], "type": "Point"}, "id": "1728", "properties": {"Object ID": 574486803, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93892571, 32.776049265, -79.93892571, 32.776049265], "geometry": {"coordinates": [-79.93892571, 32.776049265], "type": "Point"}, "id": "1729", "properties": {"Object ID": 574486809, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93970129, 32.775274844, -79.93970129, 32.775274844], "geometry": {"coordinates": [-79.93970129, 32.775274844], "type": "Point"}, "id": "1730", "properties": {"Object ID": 574486828, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94012077, 32.773764515, -79.94012077, 32.773764515], "geometry": {"coordinates": [-79.94012077, 32.773764515], "type": "Point"}, "id": "1731", "properties": {"Object ID": 574486831, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93838114, 32.774335868, -79.93838114, 32.774335868], "geometry": {"coordinates": [-79.93838114, 32.774335868], "type": "Point"}, "id": "1732", "properties": {"Object ID": 574486837, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93838114, 32.774335868, -79.93838114, 32.774335868], "geometry": {"coordinates": [-79.93838114, 32.774335868], "type": "Point"}, "id": "1733", "properties": {"Object ID": 574486838, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9389617, 32.773529048, -79.9389617, 32.773529048], "geometry": {"coordinates": [-79.9389617, 32.773529048], "type": "Point"}, "id": "1734", "properties": {"Object ID": 574486839, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93949742, 32.773071317, -79.93949742, 32.773071317], "geometry": {"coordinates": [-79.93949742, 32.773071317], "type": "Point"}, "id": "1735", "properties": {"Object ID": 574486846, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93775971, 32.774029491, -79.93775971, 32.774029491], "geometry": {"coordinates": [-79.93775971, 32.774029491], "type": "Point"}, "id": "1736", "properties": {"Object ID": 574486852, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93693074, 32.773862018, -79.93693074, 32.773862018], "geometry": {"coordinates": [-79.93693074, 32.773862018], "type": "Point"}, "id": "1737", "properties": {"Object ID": 574486857, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93767257, 32.77278843, -79.93767257, 32.77278843], "geometry": {"coordinates": [-79.93767257, 32.77278843], "type": "Point"}, "id": "1738", "properties": {"Object ID": 574486858, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93541956, 32.775403971, -79.93541956, 32.775403971], "geometry": {"coordinates": [-79.93541956, 32.775403971], "type": "Point"}, "id": "1739", "properties": {"Object ID": 574486864, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93622307, 32.774620925, -79.93622307, 32.774620925], "geometry": {"coordinates": [-79.93622307, 32.774620925], "type": "Point"}, "id": "1740", "properties": {"Object ID": 574486869, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542766, 32.774993284, -79.93542766, 32.774993284], "geometry": {"coordinates": [-79.93542766, 32.774993284], "type": "Point"}, "id": "1741", "properties": {"Object ID": 574486873, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93651266, 32.774225118, -79.93651266, 32.774225118], "geometry": {"coordinates": [-79.93651266, 32.774225118], "type": "Point"}, "id": "1742", "properties": {"Object ID": 574486878, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93598957, 32.773950257, -79.93598957, 32.773950257], "geometry": {"coordinates": [-79.93598957, 32.773950257], "type": "Point"}, "id": "1743", "properties": {"Object ID": 574486879, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93598957, 32.773950257, -79.93598957, 32.773950257], "geometry": {"coordinates": [-79.93598957, 32.773950257], "type": "Point"}, "id": "1744", "properties": {"Object ID": 574486880, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.934546, 32.774462493, -79.934546, 32.774462493], "geometry": {"coordinates": [-79.934546, 32.774462493], "type": "Point"}, "id": "1745", "properties": {"Object ID": 574486884, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93405994, 32.771469521, -79.93405994, 32.771469521], "geometry": {"coordinates": [-79.93405994, 32.771469521], "type": "Point"}, "id": "1746", "properties": {"Object ID": 574486909, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93818709, 32.777642703, -79.93818709, 32.777642703], "geometry": {"coordinates": [-79.93818709, 32.777642703], "type": "Point"}, "id": "1747", "properties": {"Object ID": 574486954, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93727479, 32.777235676, -79.93727479, 32.777235676], "geometry": {"coordinates": [-79.93727479, 32.777235676], "type": "Point"}, "id": "1748", "properties": {"Object ID": 574486962, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93777386, 32.776445317, -79.93777386, 32.776445317], "geometry": {"coordinates": [-79.93777386, 32.776445317], "type": "Point"}, "id": "1749", "properties": {"Object ID": 574486967, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93565933, 32.77953797, -79.93565933, 32.77953797], "geometry": {"coordinates": [-79.93565933, 32.77953797], "type": "Point"}, "id": "1750", "properties": {"Object ID": 574486984, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93565933, 32.77953797, -79.93565933, 32.77953797], "geometry": {"coordinates": [-79.93565933, 32.77953797], "type": "Point"}, "id": "1751", "properties": {"Object ID": 574486990, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93595317, 32.77838712, -79.93595317, 32.77838712], "geometry": {"coordinates": [-79.93595317, 32.77838712], "type": "Point"}, "id": "1752", "properties": {"Object ID": 574486994, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93593404, 32.778242086, -79.93593404, 32.778242086], "geometry": {"coordinates": [-79.93593404, 32.778242086], "type": "Point"}, "id": "1753", "properties": {"Object ID": 574486995, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93591665, 32.778110287, -79.93591665, 32.778110287], "geometry": {"coordinates": [-79.93591665, 32.778110287], "type": "Point"}, "id": "1754", "properties": {"Object ID": 574486997, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93531925, 32.778123533, -79.93531925, 32.778123533], "geometry": {"coordinates": [-79.93531925, 32.778123533], "type": "Point"}, "id": "1755", "properties": {"Object ID": 574487005, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9358843, 32.777586927, -79.9358843, 32.777586927], "geometry": {"coordinates": [-79.9358843, 32.777586927], "type": "Point"}, "id": "1756", "properties": {"Object ID": 574487038, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93535116, 32.777775663, -79.93535116, 32.777775663], "geometry": {"coordinates": [-79.93535116, 32.777775663], "type": "Point"}, "id": "1757", "properties": {"Object ID": 574487040, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93528915, 32.777648469, -79.93528915, 32.777648469], "geometry": {"coordinates": [-79.93528915, 32.777648469], "type": "Point"}, "id": "1758", "properties": {"Object ID": 574487045, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1759", "properties": {"Object ID": 574487047, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1760", "properties": {"Object ID": 574487059, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1761", "properties": {"Object ID": 574487060, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1762", "properties": {"Object ID": 574487061, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1763", "properties": {"Object ID": 574487064, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1764", "properties": {"Object ID": 574487066, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1765", "properties": {"Object ID": 574487069, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "1766", "properties": {"Object ID": 574487072, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93452382, 32.77746979, -79.93452382, 32.77746979], "geometry": {"coordinates": [-79.93452382, 32.77746979], "type": "Point"}, "id": "1767", "properties": {"Object ID": 574487073, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93378854, 32.777872673, -79.93378854, 32.777872673], "geometry": {"coordinates": [-79.93378854, 32.777872673], "type": "Point"}, "id": "1768", "properties": {"Object ID": 574487078, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.934624, 32.777239407, -79.934624, 32.777239407], "geometry": {"coordinates": [-79.934624, 32.777239407], "type": "Point"}, "id": "1769", "properties": {"Object ID": 574487082, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93608199, 32.776339796, -79.93608199, 32.776339796], "geometry": {"coordinates": [-79.93608199, 32.776339796], "type": "Point"}, "id": "1770", "properties": {"Object ID": 574487088, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93544376, 32.776459504, -79.93544376, 32.776459504], "geometry": {"coordinates": [-79.93544376, 32.776459504], "type": "Point"}, "id": "1771", "properties": {"Object ID": 574487090, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9352781, 32.77651496, -79.9352781, 32.77651496], "geometry": {"coordinates": [-79.9352781, 32.77651496], "type": "Point"}, "id": "1772", "properties": {"Object ID": 574487091, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93240946, 32.770748295, -79.93240946, 32.770748295], "geometry": {"coordinates": [-79.93240946, 32.770748295], "type": "Point"}, "id": "1773", "properties": {"Object ID": 573841001, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93300495, 32.770797186, -79.93300495, 32.770797186], "geometry": {"coordinates": [-79.93300495, 32.770797186], "type": "Point"}, "id": "1774", "properties": {"Object ID": 573841004, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93263882, 32.770808827, -79.93263882, 32.770808827], "geometry": {"coordinates": [-79.93263882, 32.770808827], "type": "Point"}, "id": "1775", "properties": {"Object ID": 573841006, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93339798, 32.770887763, -79.93339798, 32.770887763], "geometry": {"coordinates": [-79.93339798, 32.770887763], "type": "Point"}, "id": "1776", "properties": {"Object ID": 573841009, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93224796, 32.770977933, -79.93224796, 32.770977933], "geometry": {"coordinates": [-79.93224796, 32.770977933], "type": "Point"}, "id": "1777", "properties": {"Object ID": 573841011, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93317999, 32.770889867, -79.93317999, 32.770889867], "geometry": {"coordinates": [-79.93317999, 32.770889867], "type": "Point"}, "id": "1778", "properties": {"Object ID": 573841012, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93307387, 32.771037166, -79.93307387, 32.771037166], "geometry": {"coordinates": [-79.93307387, 32.771037166], "type": "Point"}, "id": "1779", "properties": {"Object ID": 573841013, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93285747, 32.771197675, -79.93285747, 32.771197675], "geometry": {"coordinates": [-79.93285747, 32.771197675], "type": "Point"}, "id": "1780", "properties": {"Object ID": 573841017, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93439284, 32.769931874, -79.93439284, 32.769931874], "geometry": {"coordinates": [-79.93439284, 32.769931874], "type": "Point"}, "id": "1781", "properties": {"Object ID": 574268571, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93464987, 32.769935012, -79.93464987, 32.769935012], "geometry": {"coordinates": [-79.93464987, 32.769935012], "type": "Point"}, "id": "1782", "properties": {"Object ID": 574268573, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93488696, 32.769956775, -79.93488696, 32.769956775], "geometry": {"coordinates": [-79.93488696, 32.769956775], "type": "Point"}, "id": "1783", "properties": {"Object ID": 574268577, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93367723, 32.770158324, -79.93367723, 32.770158324], "geometry": {"coordinates": [-79.93367723, 32.770158324], "type": "Point"}, "id": "1784", "properties": {"Object ID": 574268579, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93271119, 32.770319213, -79.93271119, 32.770319213], "geometry": {"coordinates": [-79.93271119, 32.770319213], "type": "Point"}, "id": "1785", "properties": {"Object ID": 574268600, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93459117, 32.7704236, -79.93459117, 32.7704236], "geometry": {"coordinates": [-79.93459117, 32.7704236], "type": "Point"}, "id": "1786", "properties": {"Object ID": 574268602, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93371775, 32.770503078, -79.93371775, 32.770503078], "geometry": {"coordinates": [-79.93371775, 32.770503078], "type": "Point"}, "id": "1787", "properties": {"Object ID": 574268612, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93410271, 32.770514797, -79.93410271, 32.770514797], "geometry": {"coordinates": [-79.93410271, 32.770514797], "type": "Point"}, "id": "1788", "properties": {"Object ID": 574268614, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93521992, 32.770550235, -79.93521992, 32.770550235], "geometry": {"coordinates": [-79.93521992, 32.770550235], "type": "Point"}, "id": "1789", "properties": {"Object ID": 574268620, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9341155, 32.770523, -79.9341155, 32.770523], "geometry": {"coordinates": [-79.9341155, 32.770523], "type": "Point"}, "id": "1790", "properties": {"Object ID": 574268624, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9338813, 32.770824729, -79.9338813, 32.770824729], "geometry": {"coordinates": [-79.9338813, 32.770824729], "type": "Point"}, "id": "1791", "properties": {"Object ID": 574268668, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93454819, 32.770877524, -79.93454819, 32.770877524], "geometry": {"coordinates": [-79.93454819, 32.770877524], "type": "Point"}, "id": "1792", "properties": {"Object ID": 574268670, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93392783, 32.770953083, -79.93392783, 32.770953083], "geometry": {"coordinates": [-79.93392783, 32.770953083], "type": "Point"}, "id": "1793", "properties": {"Object ID": 574268672, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93418237, 32.770892902, -79.93418237, 32.770892902], "geometry": {"coordinates": [-79.93418237, 32.770892902], "type": "Point"}, "id": "1794", "properties": {"Object ID": 574268674, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93617157, 32.770989293, -79.93617157, 32.770989293], "geometry": {"coordinates": [-79.93617157, 32.770989293], "type": "Point"}, "id": "1795", "properties": {"Object ID": 574268887, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93735071, 32.770882479, -79.93735071, 32.770882479], "geometry": {"coordinates": [-79.93735071, 32.770882479], "type": "Point"}, "id": "1796", "properties": {"Object ID": 574294739, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93659095, 32.770183291, -79.93659095, 32.770183291], "geometry": {"coordinates": [-79.93659095, 32.770183291], "type": "Point"}, "id": "1797", "properties": {"Object ID": 574294742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9363766, 32.770164995, -79.9363766, 32.770164995], "geometry": {"coordinates": [-79.9363766, 32.770164995], "type": "Point"}, "id": "1798", "properties": {"Object ID": 574294743, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93696293, 32.770279971, -79.93696293, 32.770279971], "geometry": {"coordinates": [-79.93696293, 32.770279971], "type": "Point"}, "id": "1799", "properties": {"Object ID": 574294744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93715494, 32.770315545, -79.93715494, 32.770315545], "geometry": {"coordinates": [-79.93715494, 32.770315545], "type": "Point"}, "id": "1800", "properties": {"Object ID": 574294745, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93557849, 32.770569252, -79.93557849, 32.770569252], "geometry": {"coordinates": [-79.93557849, 32.770569252], "type": "Point"}, "id": "1801", "properties": {"Object ID": 574294752, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191241, 32.770725118, -79.93191241, 32.770725118], "geometry": {"coordinates": [-79.93191241, 32.770725118], "type": "Point"}, "id": "1802", "properties": {"Object ID": 574372695, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93144243, 32.770732137, -79.93144243, 32.770732137], "geometry": {"coordinates": [-79.93144243, 32.770732137], "type": "Point"}, "id": "1803", "properties": {"Object ID": 574372699, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93178436, 32.770928248, -79.93178436, 32.770928248], "geometry": {"coordinates": [-79.93178436, 32.770928248], "type": "Point"}, "id": "1804", "properties": {"Object ID": 574372703, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93803994, 32.770742535, -79.93803994, 32.770742535], "geometry": {"coordinates": [-79.93803994, 32.770742535], "type": "Point"}, "id": "1805", "properties": {"Object ID": 574409951, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93818981, 32.770817699, -79.93818981, 32.770817699], "geometry": {"coordinates": [-79.93818981, 32.770817699], "type": "Point"}, "id": "1806", "properties": {"Object ID": 574409953, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93816717, 32.771254553, -79.93816717, 32.771254553], "geometry": {"coordinates": [-79.93816717, 32.771254553], "type": "Point"}, "id": "1807", "properties": {"Object ID": 574409963, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93439626, 32.770505466, -79.93439626, 32.770505466], "geometry": {"coordinates": [-79.93439626, 32.770505466], "type": "Point"}, "id": "1808", "properties": {"Object ID": 574476696, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1809", "properties": {"Object ID": 574476712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1810", "properties": {"Object ID": 574476726, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1811", "properties": {"Object ID": 574476732, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1812", "properties": {"Object ID": 574476743, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1813", "properties": {"Object ID": 574476753, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1814", "properties": {"Object ID": 574476755, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1815", "properties": {"Object ID": 574476757, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1816", "properties": {"Object ID": 574476765, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1817", "properties": {"Object ID": 574476771, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1818", "properties": {"Object ID": 574476796, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "1819", "properties": {"Object ID": 574476809, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92881418, 32.770269817, -79.92881418, 32.770269817], "geometry": {"coordinates": [-79.92881418, 32.770269817], "type": "Point"}, "id": "1820", "properties": {"Object ID": 574476813, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93337915, 32.770923728, -79.93337915, 32.770923728], "geometry": {"coordinates": [-79.93337915, 32.770923728], "type": "Point"}, "id": "1821", "properties": {"Object ID": 574486927, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93318093, 32.770926003, -79.93318093, 32.770926003], "geometry": {"coordinates": [-79.93318093, 32.770926003], "type": "Point"}, "id": "1822", "properties": {"Object ID": 574486929, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93665313, 32.769943237, -79.93665313, 32.769943237], "geometry": {"coordinates": [-79.93665313, 32.769943237], "type": "Point"}, "id": "1823", "properties": {"Object ID": 574507806, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93293388, 32.779311996, -79.93293388, 32.779311996], "geometry": {"coordinates": [-79.93293388, 32.779311996], "type": "Point"}, "id": "1824", "properties": {"Object ID": 573387896, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93530052, 32.779386435, -79.93530052, 32.779386435], "geometry": {"coordinates": [-79.93530052, 32.779386435], "type": "Point"}, "id": "1825", "properties": {"Object ID": 573789120, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93692948, 32.776556451, -79.93692948, 32.776556451], "geometry": {"coordinates": [-79.93692948, 32.776556451], "type": "Point"}, "id": "1826", "properties": {"Object ID": 573789176, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93817055, 32.776638893, -79.93817055, 32.776638893], "geometry": {"coordinates": [-79.93817055, 32.776638893], "type": "Point"}, "id": "1827", "properties": {"Object ID": 573789446, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93979767, 32.777307076, -79.93979767, 32.777307076], "geometry": {"coordinates": [-79.93979767, 32.777307076], "type": "Point"}, "id": "1828", "properties": {"Object ID": 573795669, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94056852, 32.778051788, -79.94056852, 32.778051788], "geometry": {"coordinates": [-79.94056852, 32.778051788], "type": "Point"}, "id": "1829", "properties": {"Object ID": 573795689, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93980207, 32.77824427, -79.93980207, 32.77824427], "geometry": {"coordinates": [-79.93980207, 32.77824427], "type": "Point"}, "id": "1830", "properties": {"Object ID": 573795693, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94331842, 32.777717081, -79.94331842, 32.777717081], "geometry": {"coordinates": [-79.94331842, 32.777717081], "type": "Point"}, "id": "1831", "properties": {"Object ID": 573806315, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93651901, 32.77729427, -79.93651901, 32.77729427], "geometry": {"coordinates": [-79.93651901, 32.77729427], "type": "Point"}, "id": "1832", "properties": {"Object ID": 574268957, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9369969, 32.778972482, -79.9369969, 32.778972482], "geometry": {"coordinates": [-79.9369969, 32.778972482], "type": "Point"}, "id": "1833", "properties": {"Object ID": 574294730, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94000387, 32.779025358, -79.94000387, 32.779025358], "geometry": {"coordinates": [-79.94000387, 32.779025358], "type": "Point"}, "id": "1834", "properties": {"Object ID": 574295951, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93377103, 32.777801582, -79.93377103, 32.777801582], "geometry": {"coordinates": [-79.93377103, 32.777801582], "type": "Point"}, "id": "1835", "properties": {"Object ID": 574371656, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93563199, 32.778725566, -79.93563199, 32.778725566], "geometry": {"coordinates": [-79.93563199, 32.778725566], "type": "Point"}, "id": "1836", "properties": {"Object ID": 574371793, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93531382, 32.778704309, -79.93531382, 32.778704309], "geometry": {"coordinates": [-79.93531382, 32.778704309], "type": "Point"}, "id": "1837", "properties": {"Object ID": 574371795, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93894709, 32.779440076, -79.93894709, 32.779440076], "geometry": {"coordinates": [-79.93894709, 32.779440076], "type": "Point"}, "id": "1838", "properties": {"Object ID": 574409911, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9332883, 32.779098746, -79.9332883, 32.779098746], "geometry": {"coordinates": [-79.9332883, 32.779098746], "type": "Point"}, "id": "1839", "properties": {"Object ID": 574460961, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92619257, 32.779171671, -79.92619257, 32.779171671], "geometry": {"coordinates": [-79.92619257, 32.779171671], "type": "Point"}, "id": "1840", "properties": {"Object ID": 574461306, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9391611, 32.778882308, -79.9391611, 32.778882308], "geometry": {"coordinates": [-79.9391611, 32.778882308], "type": "Point"}, "id": "1841", "properties": {"Object ID": 574486720, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92679108, 32.778909003, -79.92679108, 32.778909003], "geometry": {"coordinates": [-79.92679108, 32.778909003], "type": "Point"}, "id": "1842", "properties": {"Object ID": 574488722, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1843", "properties": {"Object ID": 574488739, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92647017, 32.778019617, -79.92647017, 32.778019617], "geometry": {"coordinates": [-79.92647017, 32.778019617], "type": "Point"}, "id": "1844", "properties": {"Object ID": 574488777, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "1845", "properties": {"Object ID": 574488783, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92585281, 32.776543046, -79.92585281, 32.776543046], "geometry": {"coordinates": [-79.92585281, 32.776543046], "type": "Point"}, "id": "1846", "properties": {"Object ID": 574488814, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92855347, 32.780772815, -79.92855347, 32.780772815], "geometry": {"coordinates": [-79.92855347, 32.780772815], "type": "Point"}, "id": "1847", "properties": {"Object ID": 573463565, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9373317, 32.780090392, -79.9373317, 32.780090392], "geometry": {"coordinates": [-79.9373317, 32.780090392], "type": "Point"}, "id": "1848", "properties": {"Object ID": 573850809, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9342548, 32.779930537, -79.9342548, 32.779930537], "geometry": {"coordinates": [-79.9342548, 32.779930537], "type": "Point"}, "id": "1849", "properties": {"Object ID": 574446521, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92839527, 32.77175843, -79.92839527, 32.77175843], "geometry": {"coordinates": [-79.92839527, 32.77175843], "type": "Point"}, "id": "1850", "properties": {"Object ID": 573467722, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92886798, 32.771255592, -79.92886798, 32.771255592], "geometry": {"coordinates": [-79.92886798, 32.771255592], "type": "Point"}, "id": "1851", "properties": {"Object ID": 573467732, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92932936, 32.771292152, -79.92932936, 32.771292152], "geometry": {"coordinates": [-79.92932936, 32.771292152], "type": "Point"}, "id": "1852", "properties": {"Object ID": 573467733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92848113, 32.771312249, -79.92848113, 32.771312249], "geometry": {"coordinates": [-79.92848113, 32.771312249], "type": "Point"}, "id": "1853", "properties": {"Object ID": 573467734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92894471, 32.771386915, -79.92894471, 32.771386915], "geometry": {"coordinates": [-79.92894471, 32.771386915], "type": "Point"}, "id": "1854", "properties": {"Object ID": 573467736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92832596, 32.771470143, -79.92832596, 32.771470143], "geometry": {"coordinates": [-79.92832596, 32.771470143], "type": "Point"}, "id": "1855", "properties": {"Object ID": 573467738, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9292999, 32.771727703, -79.9292999, 32.771727703], "geometry": {"coordinates": [-79.9292999, 32.771727703], "type": "Point"}, "id": "1856", "properties": {"Object ID": 573467739, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92859359, 32.771977228, -79.92859359, 32.771977228], "geometry": {"coordinates": [-79.92859359, 32.771977228], "type": "Point"}, "id": "1857", "properties": {"Object ID": 573467742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92932355, 32.771940541, -79.92932355, 32.771940541], "geometry": {"coordinates": [-79.92932355, 32.771940541], "type": "Point"}, "id": "1858", "properties": {"Object ID": 573467743, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92846362, 32.771931572, -79.92846362, 32.771931572], "geometry": {"coordinates": [-79.92846362, 32.771931572], "type": "Point"}, "id": "1859", "properties": {"Object ID": 573467744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92782068, 32.773933524, -79.92782068, 32.773933524], "geometry": {"coordinates": [-79.92782068, 32.773933524], "type": "Point"}, "id": "1860", "properties": {"Object ID": 573779301, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92787285, 32.772877067, -79.92787285, 32.772877067], "geometry": {"coordinates": [-79.92787285, 32.772877067], "type": "Point"}, "id": "1861", "properties": {"Object ID": 573779305, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92841825, 32.773283159, -79.92841825, 32.773283159], "geometry": {"coordinates": [-79.92841825, 32.773283159], "type": "Point"}, "id": "1862", "properties": {"Object ID": 573779321, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92756653, 32.773396037, -79.92756653, 32.773396037], "geometry": {"coordinates": [-79.92756653, 32.773396037], "type": "Point"}, "id": "1863", "properties": {"Object ID": 573779325, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92875409, 32.773430464, -79.92875409, 32.773430464], "geometry": {"coordinates": [-79.92875409, 32.773430464], "type": "Point"}, "id": "1864", "properties": {"Object ID": 573779327, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92869197, 32.773984497, -79.92869197, 32.773984497], "geometry": {"coordinates": [-79.92869197, 32.773984497], "type": "Point"}, "id": "1865", "properties": {"Object ID": 573779351, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92784061, 32.774047305, -79.92784061, 32.774047305], "geometry": {"coordinates": [-79.92784061, 32.774047305], "type": "Point"}, "id": "1866", "properties": {"Object ID": 573779353, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92877971, 32.77408881, -79.92877971, 32.77408881], "geometry": {"coordinates": [-79.92877971, 32.77408881], "type": "Point"}, "id": "1867", "properties": {"Object ID": 573779355, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9277353, 32.774140817, -79.9277353, 32.774140817], "geometry": {"coordinates": [-79.9277353, 32.774140817], "type": "Point"}, "id": "1868", "properties": {"Object ID": 573779359, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92891834, 32.774557236, -79.92891834, 32.774557236], "geometry": {"coordinates": [-79.92891834, 32.774557236], "type": "Point"}, "id": "1869", "properties": {"Object ID": 573779383, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92888873, 32.774850575, -79.92888873, 32.774850575], "geometry": {"coordinates": [-79.92888873, 32.774850575], "type": "Point"}, "id": "1870", "properties": {"Object ID": 573779403, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92757123, 32.774902404, -79.92757123, 32.774902404], "geometry": {"coordinates": [-79.92757123, 32.774902404], "type": "Point"}, "id": "1871", "properties": {"Object ID": 573779417, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92837271, 32.774865757, -79.92837271, 32.774865757], "geometry": {"coordinates": [-79.92837271, 32.774865757], "type": "Point"}, "id": "1872", "properties": {"Object ID": 573779419, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92778363, 32.774850814, -79.92778363, 32.774850814], "geometry": {"coordinates": [-79.92778363, 32.774850814], "type": "Point"}, "id": "1873", "properties": {"Object ID": 573779421, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92786915, 32.77868531, -79.92786915, 32.77868531], "geometry": {"coordinates": [-79.92786915, 32.77868531], "type": "Point"}, "id": "1874", "properties": {"Object ID": 573779428, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92795311, 32.778779648, -79.92795311, 32.778779648], "geometry": {"coordinates": [-79.92795311, 32.778779648], "type": "Point"}, "id": "1875", "properties": {"Object ID": 573779429, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92774785, 32.779257139, -79.92774785, 32.779257139], "geometry": {"coordinates": [-79.92774785, 32.779257139], "type": "Point"}, "id": "1876", "properties": {"Object ID": 573782384, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92915151, 32.772201636, -79.92915151, 32.772201636], "geometry": {"coordinates": [-79.92915151, 32.772201636], "type": "Point"}, "id": "1877", "properties": {"Object ID": 573782421, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92853749, 32.772504844, -79.92853749, 32.772504844], "geometry": {"coordinates": [-79.92853749, 32.772504844], "type": "Point"}, "id": "1878", "properties": {"Object ID": 573782433, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92914102, 32.773005501, -79.92914102, 32.773005501], "geometry": {"coordinates": [-79.92914102, 32.773005501], "type": "Point"}, "id": "1879", "properties": {"Object ID": 573782455, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92912196, 32.77820043, -79.92912196, 32.77820043], "geometry": {"coordinates": [-79.92912196, 32.77820043], "type": "Point"}, "id": "1880", "properties": {"Object ID": 573782499, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92896674, 32.7750519, -79.92896674, 32.7750519], "geometry": {"coordinates": [-79.92896674, 32.7750519], "type": "Point"}, "id": "1881", "properties": {"Object ID": 573782518, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92895295, 32.77527119, -79.92895295, 32.77527119], "geometry": {"coordinates": [-79.92895295, 32.77527119], "type": "Point"}, "id": "1882", "properties": {"Object ID": 573782526, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92890484, 32.775611061, -79.92890484, 32.775611061], "geometry": {"coordinates": [-79.92890484, 32.775611061], "type": "Point"}, "id": "1883", "properties": {"Object ID": 573782538, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92892324, 32.775748633, -79.92892324, 32.775748633], "geometry": {"coordinates": [-79.92892324, 32.775748633], "type": "Point"}, "id": "1884", "properties": {"Object ID": 573782542, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92901056, 32.775913829, -79.92901056, 32.775913829], "geometry": {"coordinates": [-79.92901056, 32.775913829], "type": "Point"}, "id": "1885", "properties": {"Object ID": 573782546, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92852646, 32.775996194, -79.92852646, 32.775996194], "geometry": {"coordinates": [-79.92852646, 32.775996194], "type": "Point"}, "id": "1886", "properties": {"Object ID": 573782552, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92842969, 32.775998919, -79.92842969, 32.775998919], "geometry": {"coordinates": [-79.92842969, 32.775998919], "type": "Point"}, "id": "1887", "properties": {"Object ID": 573782556, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92919661, 32.773246526, -79.92919661, 32.773246526], "geometry": {"coordinates": [-79.92919661, 32.773246526], "type": "Point"}, "id": "1888", "properties": {"Object ID": 573783132, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92915162, 32.773339051, -79.92915162, 32.773339051], "geometry": {"coordinates": [-79.92915162, 32.773339051], "type": "Point"}, "id": "1889", "properties": {"Object ID": 573783134, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92919826, 32.773991919, -79.92919826, 32.773991919], "geometry": {"coordinates": [-79.92919826, 32.773991919], "type": "Point"}, "id": "1890", "properties": {"Object ID": 573783153, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9269, 32.7765165, -79.9269, 32.7765165], "geometry": {"coordinates": [-79.9269, 32.7765165], "type": "Point"}, "id": "1891", "properties": {"Object ID": 573818745, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92774466, 32.777705241, -79.92774466, 32.777705241], "geometry": {"coordinates": [-79.92774466, 32.777705241], "type": "Point"}, "id": "1892", "properties": {"Object ID": 573827138, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92666523, 32.773779002, -79.92666523, 32.773779002], "geometry": {"coordinates": [-79.92666523, 32.773779002], "type": "Point"}, "id": "1893", "properties": {"Object ID": 574267648, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92562107, 32.773965888, -79.92562107, 32.773965888], "geometry": {"coordinates": [-79.92562107, 32.773965888], "type": "Point"}, "id": "1894", "properties": {"Object ID": 574267650, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92716263, 32.773225239, -79.92716263, 32.773225239], "geometry": {"coordinates": [-79.92716263, 32.773225239], "type": "Point"}, "id": "1895", "properties": {"Object ID": 574267654, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92737716, 32.775389231, -79.92737716, 32.775389231], "geometry": {"coordinates": [-79.92737716, 32.775389231], "type": "Point"}, "id": "1896", "properties": {"Object ID": 574267745, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9278474, 32.776061698, -79.9278474, 32.776061698], "geometry": {"coordinates": [-79.9278474, 32.776061698], "type": "Point"}, "id": "1897", "properties": {"Object ID": 574268003, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92734544, 32.775819117, -79.92734544, 32.775819117], "geometry": {"coordinates": [-79.92734544, 32.775819117], "type": "Point"}, "id": "1898", "properties": {"Object ID": 574268007, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92783782, 32.775810255, -79.92783782, 32.775810255], "geometry": {"coordinates": [-79.92783782, 32.775810255], "type": "Point"}, "id": "1899", "properties": {"Object ID": 574268009, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92732289, 32.775916661, -79.92732289, 32.775916661], "geometry": {"coordinates": [-79.92732289, 32.775916661], "type": "Point"}, "id": "1900", "properties": {"Object ID": 574268011, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92940177, 32.775627813, -79.92940177, 32.775627813], "geometry": {"coordinates": [-79.92940177, 32.775627813], "type": "Point"}, "id": "1901", "properties": {"Object ID": 574346728, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92934753, 32.774969361, -79.92934753, 32.774969361], "geometry": {"coordinates": [-79.92934753, 32.774969361], "type": "Point"}, "id": "1902", "properties": {"Object ID": 574346736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9294061, 32.775727513, -79.9294061, 32.775727513], "geometry": {"coordinates": [-79.9294061, 32.775727513], "type": "Point"}, "id": "1903", "properties": {"Object ID": 574346749, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92929411, 32.775350895, -79.92929411, 32.775350895], "geometry": {"coordinates": [-79.92929411, 32.775350895], "type": "Point"}, "id": "1904", "properties": {"Object ID": 574346757, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92694287, 32.784158743, -79.92694287, 32.784158743], "geometry": {"coordinates": [-79.92694287, 32.784158743], "type": "Point"}, "id": "1905", "properties": {"Object ID": 574372318, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92577921, 32.777325014, -79.92577921, 32.777325014], "geometry": {"coordinates": [-79.92577921, 32.777325014], "type": "Point"}, "id": "1906", "properties": {"Object ID": 574372322, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92592834, 32.776862369, -79.92592834, 32.776862369], "geometry": {"coordinates": [-79.92592834, 32.776862369], "type": "Point"}, "id": "1907", "properties": {"Object ID": 574372324, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92607839, 32.775803443, -79.92607839, 32.775803443], "geometry": {"coordinates": [-79.92607839, 32.775803443], "type": "Point"}, "id": "1908", "properties": {"Object ID": 574372380, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92668835, 32.775800728, -79.92668835, 32.775800728], "geometry": {"coordinates": [-79.92668835, 32.775800728], "type": "Point"}, "id": "1909", "properties": {"Object ID": 574372381, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "1910", "properties": {"Object ID": 574372396, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "1911", "properties": {"Object ID": 574372398, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "1912", "properties": {"Object ID": 574372405, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92902475, 32.776264226, -79.92902475, 32.776264226], "geometry": {"coordinates": [-79.92902475, 32.776264226], "type": "Point"}, "id": "1913", "properties": {"Object ID": 574372444, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92830278, 32.776202619, -79.92830278, 32.776202619], "geometry": {"coordinates": [-79.92830278, 32.776202619], "type": "Point"}, "id": "1914", "properties": {"Object ID": 574372450, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92830278, 32.776202619, -79.92830278, 32.776202619], "geometry": {"coordinates": [-79.92830278, 32.776202619], "type": "Point"}, "id": "1915", "properties": {"Object ID": 574372451, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92780897, 32.776260517, -79.92780897, 32.776260517], "geometry": {"coordinates": [-79.92780897, 32.776260517], "type": "Point"}, "id": "1916", "properties": {"Object ID": 574372454, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92849911, 32.776440239, -79.92849911, 32.776440239], "geometry": {"coordinates": [-79.92849911, 32.776440239], "type": "Point"}, "id": "1917", "properties": {"Object ID": 574372460, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92861993, 32.776165771, -79.92861993, 32.776165771], "geometry": {"coordinates": [-79.92861993, 32.776165771], "type": "Point"}, "id": "1918", "properties": {"Object ID": 574372468, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92799631, 32.776307158, -79.92799631, 32.776307158], "geometry": {"coordinates": [-79.92799631, 32.776307158], "type": "Point"}, "id": "1919", "properties": {"Object ID": 574372469, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92881546, 32.776447296, -79.92881546, 32.776447296], "geometry": {"coordinates": [-79.92881546, 32.776447296], "type": "Point"}, "id": "1920", "properties": {"Object ID": 574372470, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92881546, 32.776447296, -79.92881546, 32.776447296], "geometry": {"coordinates": [-79.92881546, 32.776447296], "type": "Point"}, "id": "1921", "properties": {"Object ID": 574372471, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92936348, 32.776171244, -79.92936348, 32.776171244], "geometry": {"coordinates": [-79.92936348, 32.776171244], "type": "Point"}, "id": "1922", "properties": {"Object ID": 574372537, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92936348, 32.776171244, -79.92936348, 32.776171244], "geometry": {"coordinates": [-79.92936348, 32.776171244], "type": "Point"}, "id": "1923", "properties": {"Object ID": 574372541, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92577065, 32.7783565, -79.92577065, 32.7783565], "geometry": {"coordinates": [-79.92577065, 32.7783565], "type": "Point"}, "id": "1924", "properties": {"Object ID": 574421609, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92691392, 32.775561673, -79.92691392, 32.775561673], "geometry": {"coordinates": [-79.92691392, 32.775561673], "type": "Point"}, "id": "1925", "properties": {"Object ID": 574421624, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9287642, 32.777334067, -79.9287642, 32.777334067], "geometry": {"coordinates": [-79.9287642, 32.777334067], "type": "Point"}, "id": "1926", "properties": {"Object ID": 574421661, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92846361, 32.776973025, -79.92846361, 32.776973025], "geometry": {"coordinates": [-79.92846361, 32.776973025], "type": "Point"}, "id": "1927", "properties": {"Object ID": 574421675, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92846361, 32.776973025, -79.92846361, 32.776973025], "geometry": {"coordinates": [-79.92846361, 32.776973025], "type": "Point"}, "id": "1928", "properties": {"Object ID": 574421685, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92910129, 32.777397915, -79.92910129, 32.777397915], "geometry": {"coordinates": [-79.92910129, 32.777397915], "type": "Point"}, "id": "1929", "properties": {"Object ID": 574421694, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92806239, 32.777533498, -79.92806239, 32.777533498], "geometry": {"coordinates": [-79.92806239, 32.777533498], "type": "Point"}, "id": "1930", "properties": {"Object ID": 574421702, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92805585, 32.777391231, -79.92805585, 32.777391231], "geometry": {"coordinates": [-79.92805585, 32.777391231], "type": "Point"}, "id": "1931", "properties": {"Object ID": 574421704, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92801597, 32.777036402, -79.92801597, 32.777036402], "geometry": {"coordinates": [-79.92801597, 32.777036402], "type": "Point"}, "id": "1932", "properties": {"Object ID": 574421708, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92801597, 32.777036402, -79.92801597, 32.777036402], "geometry": {"coordinates": [-79.92801597, 32.777036402], "type": "Point"}, "id": "1933", "properties": {"Object ID": 574421712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92801597, 32.777036402, -79.92801597, 32.777036402], "geometry": {"coordinates": [-79.92801597, 32.777036402], "type": "Point"}, "id": "1934", "properties": {"Object ID": 574421714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92857452, 32.78132147, -79.92857452, 32.78132147], "geometry": {"coordinates": [-79.92857452, 32.78132147], "type": "Point"}, "id": "1935", "properties": {"Object ID": 574431312, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92664858, 32.779055723, -79.92664858, 32.779055723], "geometry": {"coordinates": [-79.92664858, 32.779055723], "type": "Point"}, "id": "1936", "properties": {"Object ID": 574435921, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92692192, 32.77999463, -79.92692192, 32.77999463], "geometry": {"coordinates": [-79.92692192, 32.77999463], "type": "Point"}, "id": "1937", "properties": {"Object ID": 574435934, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92640322, 32.776823374, -79.92640322, 32.776823374], "geometry": {"coordinates": [-79.92640322, 32.776823374], "type": "Point"}, "id": "1938", "properties": {"Object ID": 574437141, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92922092, 32.779011193, -79.92922092, 32.779011193], "geometry": {"coordinates": [-79.92922092, 32.779011193], "type": "Point"}, "id": "1939", "properties": {"Object ID": 574446471, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92744911, 32.778311544, -79.92744911, 32.778311544], "geometry": {"coordinates": [-79.92744911, 32.778311544], "type": "Point"}, "id": "1940", "properties": {"Object ID": 574446479, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92744911, 32.778311544, -79.92744911, 32.778311544], "geometry": {"coordinates": [-79.92744911, 32.778311544], "type": "Point"}, "id": "1941", "properties": {"Object ID": 574446481, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9265575, 32.7779802, -79.9265575, 32.7779802], "geometry": {"coordinates": [-79.9265575, 32.7779802], "type": "Point"}, "id": "1942", "properties": {"Object ID": 574453710, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92653241, 32.777628862, -79.92653241, 32.777628862], "geometry": {"coordinates": [-79.92653241, 32.777628862], "type": "Point"}, "id": "1943", "properties": {"Object ID": 574455175, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92792712, 32.782317497, -79.92792712, 32.782317497], "geometry": {"coordinates": [-79.92792712, 32.782317497], "type": "Point"}, "id": "1944", "properties": {"Object ID": 574461019, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92896336, 32.775975959, -79.92896336, 32.775975959], "geometry": {"coordinates": [-79.92896336, 32.775975959], "type": "Point"}, "id": "1945", "properties": {"Object ID": 574461081, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92806298, 32.777600684, -79.92806298, 32.777600684], "geometry": {"coordinates": [-79.92806298, 32.777600684], "type": "Point"}, "id": "1946", "properties": {"Object ID": 574461083, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92764633, 32.776580021, -79.92764633, 32.776580021], "geometry": {"coordinates": [-79.92764633, 32.776580021], "type": "Point"}, "id": "1947", "properties": {"Object ID": 574461095, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92700615, 32.781478363, -79.92700615, 32.781478363], "geometry": {"coordinates": [-79.92700615, 32.781478363], "type": "Point"}, "id": "1948", "properties": {"Object ID": 574461284, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681259, 32.780233741, -79.92681259, 32.780233741], "geometry": {"coordinates": [-79.92681259, 32.780233741], "type": "Point"}, "id": "1949", "properties": {"Object ID": 574461289, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681259, 32.780233741, -79.92681259, 32.780233741], "geometry": {"coordinates": [-79.92681259, 32.780233741], "type": "Point"}, "id": "1950", "properties": {"Object ID": 574461292, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92756366, 32.778200602, -79.92756366, 32.778200602], "geometry": {"coordinates": [-79.92756366, 32.778200602], "type": "Point"}, "id": "1951", "properties": {"Object ID": 574461300, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92670704, 32.778289721, -79.92670704, 32.778289721], "geometry": {"coordinates": [-79.92670704, 32.778289721], "type": "Point"}, "id": "1952", "properties": {"Object ID": 574461308, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92653372, 32.77762264, -79.92653372, 32.77762264], "geometry": {"coordinates": [-79.92653372, 32.77762264], "type": "Point"}, "id": "1953", "properties": {"Object ID": 574461312, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92724016, 32.776689036, -79.92724016, 32.776689036], "geometry": {"coordinates": [-79.92724016, 32.776689036], "type": "Point"}, "id": "1954", "properties": {"Object ID": 574461314, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "1955", "properties": {"Object ID": 574488656, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "1956", "properties": {"Object ID": 574488667, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "1957", "properties": {"Object ID": 574488671, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92848388, 32.778727006, -79.92848388, 32.778727006], "geometry": {"coordinates": [-79.92848388, 32.778727006], "type": "Point"}, "id": "1958", "properties": {"Object ID": 574488682, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92879983, 32.778170178, -79.92879983, 32.778170178], "geometry": {"coordinates": [-79.92879983, 32.778170178], "type": "Point"}, "id": "1959", "properties": {"Object ID": 574488689, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "1960", "properties": {"Object ID": 574488709, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "1961", "properties": {"Object ID": 574488716, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92777941, 32.778286286, -79.92777941, 32.778286286], "geometry": {"coordinates": [-79.92777941, 32.778286286], "type": "Point"}, "id": "1962", "properties": {"Object ID": 574488720, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92670704, 32.778289721, -79.92670704, 32.778289721], "geometry": {"coordinates": [-79.92670704, 32.778289721], "type": "Point"}, "id": "1963", "properties": {"Object ID": 574488725, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1964", "properties": {"Object ID": 574488735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1965", "properties": {"Object ID": 574488749, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1966", "properties": {"Object ID": 574488752, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1967", "properties": {"Object ID": 574488754, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1968", "properties": {"Object ID": 574488759, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1969", "properties": {"Object ID": 574488762, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1970", "properties": {"Object ID": 574488763, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "1971", "properties": {"Object ID": 574488764, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92896336, 32.775975959, -79.92896336, 32.775975959], "geometry": {"coordinates": [-79.92896336, 32.775975959], "type": "Point"}, "id": "1972", "properties": {"Object ID": 574488772, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92799481, 32.777083557, -79.92799481, 32.777083557], "geometry": {"coordinates": [-79.92799481, 32.777083557], "type": "Point"}, "id": "1973", "properties": {"Object ID": 574488774, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92799481, 32.777083557, -79.92799481, 32.777083557], "geometry": {"coordinates": [-79.92799481, 32.777083557], "type": "Point"}, "id": "1974", "properties": {"Object ID": 574488775, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "1975", "properties": {"Object ID": 574488780, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578441, 32.77724701, -79.92578441, 32.77724701], "geometry": {"coordinates": [-79.92578441, 32.77724701], "type": "Point"}, "id": "1976", "properties": {"Object ID": 574488786, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "1977", "properties": {"Object ID": 574488795, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "1978", "properties": {"Object ID": 574488799, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92734658, 32.77619729, -79.92734658, 32.77619729], "geometry": {"coordinates": [-79.92734658, 32.77619729], "type": "Point"}, "id": "1979", "properties": {"Object ID": 574488808, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92742942, 32.776022606, -79.92742942, 32.776022606], "geometry": {"coordinates": [-79.92742942, 32.776022606], "type": "Point"}, "id": "1980", "properties": {"Object ID": 574488809, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92738736, 32.776097531, -79.92738736, 32.776097531], "geometry": {"coordinates": [-79.92738736, 32.776097531], "type": "Point"}, "id": "1981", "properties": {"Object ID": 574488810, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9256622, 32.776723864, -79.9256622, 32.776723864], "geometry": {"coordinates": [-79.9256622, 32.776723864], "type": "Point"}, "id": "1982", "properties": {"Object ID": 574488812, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92571506, 32.7763831, -79.92571506, 32.7763831], "geometry": {"coordinates": [-79.92571506, 32.7763831], "type": "Point"}, "id": "1983", "properties": {"Object ID": 574488815, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9267068, 32.776164736, -79.9267068, 32.776164736], "geometry": {"coordinates": [-79.9267068, 32.776164736], "type": "Point"}, "id": "1984", "properties": {"Object ID": 574488821, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9267068, 32.776164736, -79.9267068, 32.776164736], "geometry": {"coordinates": [-79.9267068, 32.776164736], "type": "Point"}, "id": "1985", "properties": {"Object ID": 574488822, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9267068, 32.776164736, -79.9267068, 32.776164736], "geometry": {"coordinates": [-79.9267068, 32.776164736], "type": "Point"}, "id": "1986", "properties": {"Object ID": 574488823, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9267068, 32.776164736, -79.9267068, 32.776164736], "geometry": {"coordinates": [-79.9267068, 32.776164736], "type": "Point"}, "id": "1987", "properties": {"Object ID": 574488824, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92685983, 32.775842692, -79.92685983, 32.775842692], "geometry": {"coordinates": [-79.92685983, 32.775842692], "type": "Point"}, "id": "1988", "properties": {"Object ID": 574488825, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92649226, 32.775833863, -79.92649226, 32.775833863], "geometry": {"coordinates": [-79.92649226, 32.775833863], "type": "Point"}, "id": "1989", "properties": {"Object ID": 574488827, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92578214, 32.776215491, -79.92578214, 32.776215491], "geometry": {"coordinates": [-79.92578214, 32.776215491], "type": "Point"}, "id": "1990", "properties": {"Object ID": 574488829, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92814562, 32.775228597, -79.92814562, 32.775228597], "geometry": {"coordinates": [-79.92814562, 32.775228597], "type": "Point"}, "id": "1991", "properties": {"Object ID": 574488840, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92700922, 32.775346997, -79.92700922, 32.775346997], "geometry": {"coordinates": [-79.92700922, 32.775346997], "type": "Point"}, "id": "1992", "properties": {"Object ID": 574488847, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92683941, 32.775533158, -79.92683941, 32.775533158], "geometry": {"coordinates": [-79.92683941, 32.775533158], "type": "Point"}, "id": "1993", "properties": {"Object ID": 574488852, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92636701, 32.775569886, -79.92636701, 32.775569886], "geometry": {"coordinates": [-79.92636701, 32.775569886], "type": "Point"}, "id": "1994", "properties": {"Object ID": 574488854, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92690681, 32.775344252, -79.92690681, 32.775344252], "geometry": {"coordinates": [-79.92690681, 32.775344252], "type": "Point"}, "id": "1995", "properties": {"Object ID": 574488855, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92628827, 32.775415889, -79.92628827, 32.775415889], "geometry": {"coordinates": [-79.92628827, 32.775415889], "type": "Point"}, "id": "1996", "properties": {"Object ID": 574488856, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.926143, 32.775422751, -79.926143, 32.775422751], "geometry": {"coordinates": [-79.926143, 32.775422751], "type": "Point"}, "id": "1997", "properties": {"Object ID": 574488859, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92766193, 32.773486846, -79.92766193, 32.773486846], "geometry": {"coordinates": [-79.92766193, 32.773486846], "type": "Point"}, "id": "1998", "properties": {"Object ID": 574488865, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283837, 32.772998391, -79.9283837, 32.772998391], "geometry": {"coordinates": [-79.9283837, 32.772998391], "type": "Point"}, "id": "1999", "properties": {"Object ID": 574488870, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92794778, 32.772289916, -79.92794778, 32.772289916], "geometry": {"coordinates": [-79.92794778, 32.772289916], "type": "Point"}, "id": "2000", "properties": {"Object ID": 574488876, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93659774, 32.776592992, -79.93659774, 32.776592992], "geometry": {"coordinates": [-79.93659774, 32.776592992], "type": "Point"}, "id": "2001", "properties": {"Object ID": 573789177, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93605361, 32.776611861, -79.93605361, 32.776611861], "geometry": {"coordinates": [-79.93605361, 32.776611861], "type": "Point"}, "id": "2002", "properties": {"Object ID": 573789182, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9373959, 32.772732826, -79.9373959, 32.772732826], "geometry": {"coordinates": [-79.9373959, 32.772732826], "type": "Point"}, "id": "2003", "properties": {"Object ID": 573789230, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93783418, 32.77538463, -79.93783418, 32.77538463], "geometry": {"coordinates": [-79.93783418, 32.77538463], "type": "Point"}, "id": "2004", "properties": {"Object ID": 573789352, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93592765, 32.773472617, -79.93592765, 32.773472617], "geometry": {"coordinates": [-79.93592765, 32.773472617], "type": "Point"}, "id": "2005", "properties": {"Object ID": 573850100, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93621765, 32.77424536, -79.93621765, 32.77424536], "geometry": {"coordinates": [-79.93621765, 32.77424536], "type": "Point"}, "id": "2006", "properties": {"Object ID": 574268763, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93592034, 32.771328781, -79.93592034, 32.771328781], "geometry": {"coordinates": [-79.93592034, 32.771328781], "type": "Point"}, "id": "2007", "properties": {"Object ID": 574268903, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93750411, 32.770496187, -79.93750411, 32.770496187], "geometry": {"coordinates": [-79.93750411, 32.770496187], "type": "Point"}, "id": "2008", "properties": {"Object ID": 574294748, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93651909, 32.772544069, -79.93651909, 32.772544069], "geometry": {"coordinates": [-79.93651909, 32.772544069], "type": "Point"}, "id": "2009", "properties": {"Object ID": 574371898, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93598957, 32.773950257, -79.93598957, 32.773950257], "geometry": {"coordinates": [-79.93598957, 32.773950257], "type": "Point"}, "id": "2010", "properties": {"Object ID": 574486883, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93256952, 32.776031415, -79.93256952, 32.776031415], "geometry": {"coordinates": [-79.93256952, 32.776031415], "type": "Point"}, "id": "2011", "properties": {"Object ID": 573831738, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92873639, 32.771904013, -79.92873639, 32.771904013], "geometry": {"coordinates": [-79.92873639, 32.771904013], "type": "Point"}, "id": "2012", "properties": {"Object ID": 573467740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92930477, 32.772638939, -79.92930477, 32.772638939], "geometry": {"coordinates": [-79.92930477, 32.772638939], "type": "Point"}, "id": "2013", "properties": {"Object ID": 573782439, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92966834, 32.770848671, -79.92966834, 32.770848671], "geometry": {"coordinates": [-79.92966834, 32.770848671], "type": "Point"}, "id": "2014", "properties": {"Object ID": 573783423, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93484331, 32.770478466, -79.93484331, 32.770478466], "geometry": {"coordinates": [-79.93484331, 32.770478466], "type": "Point"}, "id": "2015", "properties": {"Object ID": 574268606, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93064204, 32.771294373, -79.93064204, 32.771294373], "geometry": {"coordinates": [-79.93064204, 32.771294373], "type": "Point"}, "id": "2016", "properties": {"Object ID": 574372713, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2017", "properties": {"Object ID": 574476718, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93327038, 32.771857448, -79.93327038, 32.771857448], "geometry": {"coordinates": [-79.93327038, 32.771857448], "type": "Point"}, "id": "2018", "properties": {"Object ID": 574486916, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93068979, 32.770710613, -79.93068979, 32.770710613], "geometry": {"coordinates": [-79.93068979, 32.770710613], "type": "Point"}, "id": "2019", "properties": {"Object ID": 574486938, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93288729, 32.78040061, -79.93288729, 32.78040061], "geometry": {"coordinates": [-79.93288729, 32.78040061], "type": "Point"}, "id": "2020", "properties": {"Object ID": 573387914, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191667, 32.780486772, -79.93191667, 32.780486772], "geometry": {"coordinates": [-79.93191667, 32.780486772], "type": "Point"}, "id": "2021", "properties": {"Object ID": 573387928, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92956619, 32.782624172, -79.92956619, 32.782624172], "geometry": {"coordinates": [-79.92956619, 32.782624172], "type": "Point"}, "id": "2022", "properties": {"Object ID": 573467956, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93040738, 32.781275186, -79.93040738, 32.781275186], "geometry": {"coordinates": [-79.93040738, 32.781275186], "type": "Point"}, "id": "2023", "properties": {"Object ID": 573831829, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "2024", "properties": {"Object ID": 574451475, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93406996, 32.780618992, -79.93406996, 32.780618992], "geometry": {"coordinates": [-79.93406996, 32.780618992], "type": "Point"}, "id": "2025", "properties": {"Object ID": 574460907, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9341309, 32.774423321, -79.9341309, 32.774423321], "geometry": {"coordinates": [-79.9341309, 32.774423321], "type": "Point"}, "id": "2026", "properties": {"Object ID": 573475699, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93471872, 32.775317612, -79.93471872, 32.775317612], "geometry": {"coordinates": [-79.93471872, 32.775317612], "type": "Point"}, "id": "2027", "properties": {"Object ID": 573789145, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93473542, 32.775905342, -79.93473542, 32.775905342], "geometry": {"coordinates": [-79.93473542, 32.775905342], "type": "Point"}, "id": "2028", "properties": {"Object ID": 573789161, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93597249, 32.774791206, -79.93597249, 32.774791206], "geometry": {"coordinates": [-79.93597249, 32.774791206], "type": "Point"}, "id": "2029", "properties": {"Object ID": 574268779, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93896268, 32.775483022, -79.93896268, 32.775483022], "geometry": {"coordinates": [-79.93896268, 32.775483022], "type": "Point"}, "id": "2030", "properties": {"Object ID": 573789355, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93854163, 32.776191824, -79.93854163, 32.776191824], "geometry": {"coordinates": [-79.93854163, 32.776191824], "type": "Point"}, "id": "2031", "properties": {"Object ID": 573856078, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93779661, 32.779910747, -79.93779661, 32.779910747], "geometry": {"coordinates": [-79.93779661, 32.779910747], "type": "Point"}, "id": "2032", "properties": {"Object ID": 574294817, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93860483, 32.777758109, -79.93860483, 32.777758109], "geometry": {"coordinates": [-79.93860483, 32.777758109], "type": "Point"}, "id": "2033", "properties": {"Object ID": 574295723, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93918923, 32.777320035, -79.93918923, 32.777320035], "geometry": {"coordinates": [-79.93918923, 32.777320035], "type": "Point"}, "id": "2034", "properties": {"Object ID": 574486797, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9385842, 32.776408744, -79.9385842, 32.776408744], "geometry": {"coordinates": [-79.9385842, 32.776408744], "type": "Point"}, "id": "2035", "properties": {"Object ID": 574486806, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "2036", "properties": {"Object ID": 574486818, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92863034, 32.778887381, -79.92863034, 32.778887381], "geometry": {"coordinates": [-79.92863034, 32.778887381], "type": "Point"}, "id": "2037", "properties": {"Object ID": 573782401, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92964116, 32.778401737, -79.92964116, 32.778401737], "geometry": {"coordinates": [-79.92964116, 32.778401737], "type": "Point"}, "id": "2038", "properties": {"Object ID": 573783270, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93545543, 32.779653107, -79.93545543, 32.779653107], "geometry": {"coordinates": [-79.93545543, 32.779653107], "type": "Point"}, "id": "2039", "properties": {"Object ID": 573789130, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92947989, 32.777028121, -79.92947989, 32.777028121], "geometry": {"coordinates": [-79.92947989, 32.777028121], "type": "Point"}, "id": "2040", "properties": {"Object ID": 573827756, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.931676, 32.779163, -79.931676, 32.779163], "geometry": {"coordinates": [-79.931676, 32.779163], "type": "Point"}, "id": "2041", "properties": {"Object ID": 573831805, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93703989, 32.776788689, -79.93703989, 32.776788689], "geometry": {"coordinates": [-79.93703989, 32.776788689], "type": "Point"}, "id": "2042", "properties": {"Object ID": 574268928, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92739084, 32.779499094, -79.92739084, 32.779499094], "geometry": {"coordinates": [-79.92739084, 32.779499094], "type": "Point"}, "id": "2043", "properties": {"Object ID": 574371446, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93443657, 32.77777957, -79.93443657, 32.77777957], "geometry": {"coordinates": [-79.93443657, 32.77777957], "type": "Point"}, "id": "2044", "properties": {"Object ID": 574371651, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92813633, 32.780414773, -79.92813633, 32.780414773], "geometry": {"coordinates": [-79.92813633, 32.780414773], "type": "Point"}, "id": "2045", "properties": {"Object ID": 574372408, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92849911, 32.776440239, -79.92849911, 32.776440239], "geometry": {"coordinates": [-79.92849911, 32.776440239], "type": "Point"}, "id": "2046", "properties": {"Object ID": 574372458, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92746316, 32.776524315, -79.92746316, 32.776524315], "geometry": {"coordinates": [-79.92746316, 32.776524315], "type": "Point"}, "id": "2047", "properties": {"Object ID": 574372461, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93576441, 32.776991384, -79.93576441, 32.776991384], "geometry": {"coordinates": [-79.93576441, 32.776991384], "type": "Point"}, "id": "2048", "properties": {"Object ID": 574372972, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93435995, 32.778563419, -79.93435995, 32.778563419], "geometry": {"coordinates": [-79.93435995, 32.778563419], "type": "Point"}, "id": "2049", "properties": {"Object ID": 574421799, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9258767, 32.779600257, -79.9258767, 32.779600257], "geometry": {"coordinates": [-79.9258767, 32.779600257], "type": "Point"}, "id": "2050", "properties": {"Object ID": 574435946, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92675798, 32.779623429, -79.92675798, 32.779623429], "geometry": {"coordinates": [-79.92675798, 32.779623429], "type": "Point"}, "id": "2051", "properties": {"Object ID": 574455182, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505067, 32.780686378, -79.93505067, 32.780686378], "geometry": {"coordinates": [-79.93505067, 32.780686378], "type": "Point"}, "id": "2052", "properties": {"Object ID": 574455487, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93447747, 32.779742739, -79.93447747, 32.779742739], "geometry": {"coordinates": [-79.93447747, 32.779742739], "type": "Point"}, "id": "2053", "properties": {"Object ID": 574460949, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "2054", "properties": {"Object ID": 574487053, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "2055", "properties": {"Object ID": 574487058, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "2056", "properties": {"Object ID": 574488696, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2057", "properties": {"Object ID": 574488761, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93928382, 32.775223153, -79.93928382, 32.775223153], "geometry": {"coordinates": [-79.93928382, 32.775223153], "type": "Point"}, "id": "2058", "properties": {"Object ID": 573789348, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93823357, 32.773109229, -79.93823357, 32.773109229], "geometry": {"coordinates": [-79.93823357, 32.773109229], "type": "Point"}, "id": "2059", "properties": {"Object ID": 573789709, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.940148, 32.774488111, -79.940148, 32.774488111], "geometry": {"coordinates": [-79.940148, 32.774488111], "type": "Point"}, "id": "2060", "properties": {"Object ID": 573795556, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9396445, 32.774597005, -79.9396445, 32.774597005], "geometry": {"coordinates": [-79.9396445, 32.774597005], "type": "Point"}, "id": "2061", "properties": {"Object ID": 573795561, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93971747, 32.774851675, -79.93971747, 32.774851675], "geometry": {"coordinates": [-79.93971747, 32.774851675], "type": "Point"}, "id": "2062", "properties": {"Object ID": 573795569, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94056439, 32.774559418, -79.94056439, 32.774559418], "geometry": {"coordinates": [-79.94056439, 32.774559418], "type": "Point"}, "id": "2063", "properties": {"Object ID": 573860267, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94087048, 32.774635646, -79.94087048, 32.774635646], "geometry": {"coordinates": [-79.94087048, 32.774635646], "type": "Point"}, "id": "2064", "properties": {"Object ID": 573860269, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94093141, 32.774953177, -79.94093141, 32.774953177], "geometry": {"coordinates": [-79.94093141, 32.774953177], "type": "Point"}, "id": "2065", "properties": {"Object ID": 573860281, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94062597, 32.774995077, -79.94062597, 32.774995077], "geometry": {"coordinates": [-79.94062597, 32.774995077], "type": "Point"}, "id": "2066", "properties": {"Object ID": 573860283, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9412164, 32.773203632, -79.9412164, 32.773203632], "geometry": {"coordinates": [-79.9412164, 32.773203632], "type": "Point"}, "id": "2067", "properties": {"Object ID": 574270736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94040588, 32.772766804, -79.94040588, 32.772766804], "geometry": {"coordinates": [-79.94040588, 32.772766804], "type": "Point"}, "id": "2068", "properties": {"Object ID": 574372058, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93191116, 32.779781997, -79.93191116, 32.779781997], "geometry": {"coordinates": [-79.93191116, 32.779781997], "type": "Point"}, "id": "2069", "properties": {"Object ID": 573387864, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92827685, 32.772006634, -79.92827685, 32.772006634], "geometry": {"coordinates": [-79.92827685, 32.772006634], "type": "Point"}, "id": "2070", "properties": {"Object ID": 573467745, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92874432, 32.77330072, -79.92874432, 32.77330072], "geometry": {"coordinates": [-79.92874432, 32.77330072], "type": "Point"}, "id": "2071", "properties": {"Object ID": 573779323, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92780556, 32.7743702, -79.92780556, 32.7743702], "geometry": {"coordinates": [-79.92780556, 32.7743702], "type": "Point"}, "id": "2072", "properties": {"Object ID": 573779375, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92811631, 32.774730033, -79.92811631, 32.774730033], "geometry": {"coordinates": [-79.92811631, 32.774730033], "type": "Point"}, "id": "2073", "properties": {"Object ID": 573779393, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92862217, 32.774811231, -79.92862217, 32.774811231], "geometry": {"coordinates": [-79.92862217, 32.774811231], "type": "Point"}, "id": "2074", "properties": {"Object ID": 573779405, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92800806, 32.778884243, -79.92800806, 32.778884243], "geometry": {"coordinates": [-79.92800806, 32.778884243], "type": "Point"}, "id": "2075", "properties": {"Object ID": 573779423, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92794544, 32.779117807, -79.92794544, 32.779117807], "geometry": {"coordinates": [-79.92794544, 32.779117807], "type": "Point"}, "id": "2076", "properties": {"Object ID": 573779437, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92975812, 32.773115965, -79.92975812, 32.773115965], "geometry": {"coordinates": [-79.92975812, 32.773115965], "type": "Point"}, "id": "2077", "properties": {"Object ID": 573782594, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93036119, 32.773184386, -79.93036119, 32.773184386], "geometry": {"coordinates": [-79.93036119, 32.773184386], "type": "Point"}, "id": "2078", "properties": {"Object ID": 573782596, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92871845, 32.772191724, -79.92871845, 32.772191724], "geometry": {"coordinates": [-79.92871845, 32.772191724], "type": "Point"}, "id": "2079", "properties": {"Object ID": 573782413, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92887994, 32.772190428, -79.92887994, 32.772190428], "geometry": {"coordinates": [-79.92887994, 32.772190428], "type": "Point"}, "id": "2080", "properties": {"Object ID": 573782415, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92834819, 32.772232759, -79.92834819, 32.772232759], "geometry": {"coordinates": [-79.92834819, 32.772232759], "type": "Point"}, "id": "2081", "properties": {"Object ID": 573782419, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.928964, 32.772909407, -79.928964, 32.772909407], "geometry": {"coordinates": [-79.928964, 32.772909407], "type": "Point"}, "id": "2082", "properties": {"Object ID": 573782453, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92914283, 32.777854438, -79.92914283, 32.777854438], "geometry": {"coordinates": [-79.92914283, 32.777854438], "type": "Point"}, "id": "2083", "properties": {"Object ID": 573782485, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9284514, 32.775421312, -79.9284514, 32.775421312], "geometry": {"coordinates": [-79.9284514, 32.775421312], "type": "Point"}, "id": "2084", "properties": {"Object ID": 573782528, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92955844, 32.773337104, -79.92955844, 32.773337104], "geometry": {"coordinates": [-79.92955844, 32.773337104], "type": "Point"}, "id": "2085", "properties": {"Object ID": 573783136, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92936283, 32.774169335, -79.92936283, 32.774169335], "geometry": {"coordinates": [-79.92936283, 32.774169335], "type": "Point"}, "id": "2086", "properties": {"Object ID": 573783158, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93046822, 32.774471714, -79.93046822, 32.774471714], "geometry": {"coordinates": [-79.93046822, 32.774471714], "type": "Point"}, "id": "2087", "properties": {"Object ID": 573783175, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93039775, 32.77458916, -79.93039775, 32.77458916], "geometry": {"coordinates": [-79.93039775, 32.77458916], "type": "Point"}, "id": "2088", "properties": {"Object ID": 573783185, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93094355, 32.778464521, -79.93094355, 32.778464521], "geometry": {"coordinates": [-79.93094355, 32.778464521], "type": "Point"}, "id": "2089", "properties": {"Object ID": 573783294, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93112351, 32.779280644, -79.93112351, 32.779280644], "geometry": {"coordinates": [-79.93112351, 32.779280644], "type": "Point"}, "id": "2090", "properties": {"Object ID": 573783309, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93027735, 32.779357218, -79.93027735, 32.779357218], "geometry": {"coordinates": [-79.93027735, 32.779357218], "type": "Point"}, "id": "2091", "properties": {"Object ID": 573783319, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9301985, 32.778408, -79.9301985, 32.778408], "geometry": {"coordinates": [-79.9301985, 32.778408], "type": "Point"}, "id": "2092", "properties": {"Object ID": 573783325, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92958184, 32.77059715, -79.92958184, 32.77059715], "geometry": {"coordinates": [-79.92958184, 32.77059715], "type": "Point"}, "id": "2093", "properties": {"Object ID": 573783419, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92967987, 32.770989749, -79.92967987, 32.770989749], "geometry": {"coordinates": [-79.92967987, 32.770989749], "type": "Point"}, "id": "2094", "properties": {"Object ID": 573783425, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93155196, 32.777449246, -79.93155196, 32.777449246], "geometry": {"coordinates": [-79.93155196, 32.777449246], "type": "Point"}, "id": "2095", "properties": {"Object ID": 573785435, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93170101, 32.777807059, -79.93170101, 32.777807059], "geometry": {"coordinates": [-79.93170101, 32.777807059], "type": "Point"}, "id": "2096", "properties": {"Object ID": 573785450, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93273414, 32.775209529, -79.93273414, 32.775209529], "geometry": {"coordinates": [-79.93273414, 32.775209529], "type": "Point"}, "id": "2097", "properties": {"Object ID": 573785827, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93278733, 32.773839298, -79.93278733, 32.773839298], "geometry": {"coordinates": [-79.93278733, 32.773839298], "type": "Point"}, "id": "2098", "properties": {"Object ID": 573785950, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93262251, 32.77438286, -79.93262251, 32.77438286], "geometry": {"coordinates": [-79.93262251, 32.77438286], "type": "Point"}, "id": "2099", "properties": {"Object ID": 573785982, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93332761, 32.772338527, -79.93332761, 32.772338527], "geometry": {"coordinates": [-79.93332761, 32.772338527], "type": "Point"}, "id": "2100", "properties": {"Object ID": 573785986, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587104, 32.776016439, -79.92587104, 32.776016439], "geometry": {"coordinates": [-79.92587104, 32.776016439], "type": "Point"}, "id": "2101", "properties": {"Object ID": 573818743, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9257632, 32.776298411, -79.9257632, 32.776298411], "geometry": {"coordinates": [-79.9257632, 32.776298411], "type": "Point"}, "id": "2102", "properties": {"Object ID": 573818747, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.929484, 32.777288, -79.929484, 32.777288], "geometry": {"coordinates": [-79.929484, 32.777288], "type": "Point"}, "id": "2103", "properties": {"Object ID": 573827725, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93080905, 32.776727923, -79.93080905, 32.776727923], "geometry": {"coordinates": [-79.93080905, 32.776727923], "type": "Point"}, "id": "2104", "properties": {"Object ID": 573827727, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92972682, 32.776806657, -79.92972682, 32.776806657], "geometry": {"coordinates": [-79.92972682, 32.776806657], "type": "Point"}, "id": "2105", "properties": {"Object ID": 573827740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92947989, 32.777028121, -79.92947989, 32.777028121], "geometry": {"coordinates": [-79.92947989, 32.777028121], "type": "Point"}, "id": "2106", "properties": {"Object ID": 573827758, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93245507, 32.775189806, -79.93245507, 32.775189806], "geometry": {"coordinates": [-79.93245507, 32.775189806], "type": "Point"}, "id": "2107", "properties": {"Object ID": 573831699, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93193054, 32.775284203, -79.93193054, 32.775284203], "geometry": {"coordinates": [-79.93193054, 32.775284203], "type": "Point"}, "id": "2108", "properties": {"Object ID": 573831713, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93244164, 32.775333645, -79.93244164, 32.775333645], "geometry": {"coordinates": [-79.93244164, 32.775333645], "type": "Point"}, "id": "2109", "properties": {"Object ID": 573831715, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.931676, 32.779163, -79.931676, 32.779163], "geometry": {"coordinates": [-79.931676, 32.779163], "type": "Point"}, "id": "2110", "properties": {"Object ID": 573831807, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92712901, 32.774181965, -79.92712901, 32.774181965], "geometry": {"coordinates": [-79.92712901, 32.774181965], "type": "Point"}, "id": "2111", "properties": {"Object ID": 574267660, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9270412, 32.774650345, -79.9270412, 32.774650345], "geometry": {"coordinates": [-79.9270412, 32.774650345], "type": "Point"}, "id": "2112", "properties": {"Object ID": 574267669, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92810606, 32.775413772, -79.92810606, 32.775413772], "geometry": {"coordinates": [-79.92810606, 32.775413772], "type": "Point"}, "id": "2113", "properties": {"Object ID": 574267743, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92802961, 32.775707528, -79.92802961, 32.775707528], "geometry": {"coordinates": [-79.92802961, 32.775707528], "type": "Point"}, "id": "2114", "properties": {"Object ID": 574267753, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92859461, 32.780244674, -79.92859461, 32.780244674], "geometry": {"coordinates": [-79.92859461, 32.780244674], "type": "Point"}, "id": "2115", "properties": {"Object ID": 574268043, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9320608, 32.772056543, -79.9320608, 32.772056543], "geometry": {"coordinates": [-79.9320608, 32.772056543], "type": "Point"}, "id": "2116", "properties": {"Object ID": 574268223, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93161077, 32.772049306, -79.93161077, 32.772049306], "geometry": {"coordinates": [-79.93161077, 32.772049306], "type": "Point"}, "id": "2117", "properties": {"Object ID": 574268225, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93134554, 32.772086136, -79.93134554, 32.772086136], "geometry": {"coordinates": [-79.93134554, 32.772086136], "type": "Point"}, "id": "2118", "properties": {"Object ID": 574268229, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93220346, 32.774400506, -79.93220346, 32.774400506], "geometry": {"coordinates": [-79.93220346, 32.774400506], "type": "Point"}, "id": "2119", "properties": {"Object ID": 574293801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92566411, 32.776611185, -79.92566411, 32.776611185], "geometry": {"coordinates": [-79.92566411, 32.776611185], "type": "Point"}, "id": "2120", "properties": {"Object ID": 574346714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93054012, 32.775380171, -79.93054012, 32.775380171], "geometry": {"coordinates": [-79.93054012, 32.775380171], "type": "Point"}, "id": "2121", "properties": {"Object ID": 574346742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938432, 32.775529007, -79.92938432, 32.775529007], "geometry": {"coordinates": [-79.92938432, 32.775529007], "type": "Point"}, "id": "2122", "properties": {"Object ID": 574346745, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93066427, 32.775793669, -79.93066427, 32.775793669], "geometry": {"coordinates": [-79.93066427, 32.775793669], "type": "Point"}, "id": "2123", "properties": {"Object ID": 574346752, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92739084, 32.779499094, -79.92739084, 32.779499094], "geometry": {"coordinates": [-79.92739084, 32.779499094], "type": "Point"}, "id": "2124", "properties": {"Object ID": 574371444, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92813633, 32.780414773, -79.92813633, 32.780414773], "geometry": {"coordinates": [-79.92813633, 32.780414773], "type": "Point"}, "id": "2125", "properties": {"Object ID": 574372410, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9282403, 32.780783377, -79.9282403, 32.780783377], "geometry": {"coordinates": [-79.9282403, 32.780783377], "type": "Point"}, "id": "2126", "properties": {"Object ID": 574372416, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92780897, 32.776260517, -79.92780897, 32.776260517], "geometry": {"coordinates": [-79.92780897, 32.776260517], "type": "Point"}, "id": "2127", "properties": {"Object ID": 574372456, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92834043, 32.776554351, -79.92834043, 32.776554351], "geometry": {"coordinates": [-79.92834043, 32.776554351], "type": "Point"}, "id": "2128", "properties": {"Object ID": 574372466, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93005346, 32.77625511, -79.93005346, 32.77625511], "geometry": {"coordinates": [-79.93005346, 32.77625511], "type": "Point"}, "id": "2129", "properties": {"Object ID": 574372521, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92989155, 32.776352934, -79.92989155, 32.776352934], "geometry": {"coordinates": [-79.92989155, 32.776352934], "type": "Point"}, "id": "2130", "properties": {"Object ID": 574372563, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93193579, 32.771215032, -79.93193579, 32.771215032], "geometry": {"coordinates": [-79.93193579, 32.771215032], "type": "Point"}, "id": "2131", "properties": {"Object ID": 574372711, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93305761, 32.776982082, -79.93305761, 32.776982082], "geometry": {"coordinates": [-79.93305761, 32.776982082], "type": "Point"}, "id": "2132", "properties": {"Object ID": 574409649, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92846361, 32.776973025, -79.92846361, 32.776973025], "geometry": {"coordinates": [-79.92846361, 32.776973025], "type": "Point"}, "id": "2133", "properties": {"Object ID": 574421679, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92592791, 32.779129789, -79.92592791, 32.779129789], "geometry": {"coordinates": [-79.92592791, 32.779129789], "type": "Point"}, "id": "2134", "properties": {"Object ID": 574435915, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9258767, 32.779600257, -79.9258767, 32.779600257], "geometry": {"coordinates": [-79.9258767, 32.779600257], "type": "Point"}, "id": "2135", "properties": {"Object ID": 574435948, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92686154, 32.776849372, -79.92686154, 32.776849372], "geometry": {"coordinates": [-79.92686154, 32.776849372], "type": "Point"}, "id": "2136", "properties": {"Object ID": 574437151, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92881402, 32.77874176, -79.92881402, 32.77874176], "geometry": {"coordinates": [-79.92881402, 32.77874176], "type": "Point"}, "id": "2137", "properties": {"Object ID": 574446461, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "2138", "properties": {"Object ID": 574451477, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93057458, 32.779847015, -79.93057458, 32.779847015], "geometry": {"coordinates": [-79.93057458, 32.779847015], "type": "Point"}, "id": "2139", "properties": {"Object ID": 574451485, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93057458, 32.779847015, -79.93057458, 32.779847015], "geometry": {"coordinates": [-79.93057458, 32.779847015], "type": "Point"}, "id": "2140", "properties": {"Object ID": 574451490, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93092389, 32.780416852, -79.93092389, 32.780416852], "geometry": {"coordinates": [-79.93092389, 32.780416852], "type": "Point"}, "id": "2141", "properties": {"Object ID": 574451493, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92675798, 32.779623429, -79.92675798, 32.779623429], "geometry": {"coordinates": [-79.92675798, 32.779623429], "type": "Point"}, "id": "2142", "properties": {"Object ID": 574455178, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92675798, 32.779623429, -79.92675798, 32.779623429], "geometry": {"coordinates": [-79.92675798, 32.779623429], "type": "Point"}, "id": "2143", "properties": {"Object ID": 574455181, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92656424, 32.778612183, -79.92656424, 32.778612183], "geometry": {"coordinates": [-79.92656424, 32.778612183], "type": "Point"}, "id": "2144", "properties": {"Object ID": 574457058, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "2145", "properties": {"Object ID": 574460973, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "2146", "properties": {"Object ID": 574460987, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92799481, 32.777083557, -79.92799481, 32.777083557], "geometry": {"coordinates": [-79.92799481, 32.777083557], "type": "Point"}, "id": "2147", "properties": {"Object ID": 574461085, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92826226, 32.776519314, -79.92826226, 32.776519314], "geometry": {"coordinates": [-79.92826226, 32.776519314], "type": "Point"}, "id": "2148", "properties": {"Object ID": 574461093, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673802, 32.779726367, -79.92673802, 32.779726367], "geometry": {"coordinates": [-79.92673802, 32.779726367], "type": "Point"}, "id": "2149", "properties": {"Object ID": 574461296, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2150", "properties": {"Object ID": 574476710, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2151", "properties": {"Object ID": 574476767, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2152", "properties": {"Object ID": 574476775, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2153", "properties": {"Object ID": 574476781, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2154", "properties": {"Object ID": 574476804, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2155", "properties": {"Object ID": 574476806, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93068697, 32.771232663, -79.93068697, 32.771232663], "geometry": {"coordinates": [-79.93068697, 32.771232663], "type": "Point"}, "id": "2156", "properties": {"Object ID": 574486936, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93341863, 32.778558501, -79.93341863, 32.778558501], "geometry": {"coordinates": [-79.93341863, 32.778558501], "type": "Point"}, "id": "2157", "properties": {"Object ID": 574487009, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93341863, 32.778558501, -79.93341863, 32.778558501], "geometry": {"coordinates": [-79.93341863, 32.778558501], "type": "Point"}, "id": "2158", "properties": {"Object ID": 574487011, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93016513, 32.77936776, -79.93016513, 32.77936776], "geometry": {"coordinates": [-79.93016513, 32.77936776], "type": "Point"}, "id": "2159", "properties": {"Object ID": 574487030, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92879721, 32.778559702, -79.92879721, 32.778559702], "geometry": {"coordinates": [-79.92879721, 32.778559702], "type": "Point"}, "id": "2160", "properties": {"Object ID": 574488686, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "2161", "properties": {"Object ID": 574488694, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92823571, 32.778833709, -79.92823571, 32.778833709], "geometry": {"coordinates": [-79.92823571, 32.778833709], "type": "Point"}, "id": "2162", "properties": {"Object ID": 574488705, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2163", "properties": {"Object ID": 574488727, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2164", "properties": {"Object ID": 574488734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2165", "properties": {"Object ID": 574488746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2166", "properties": {"Object ID": 574488751, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2167", "properties": {"Object ID": 574488753, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92621897, 32.777241248, -79.92621897, 32.777241248], "geometry": {"coordinates": [-79.92621897, 32.777241248], "type": "Point"}, "id": "2168", "properties": {"Object ID": 574488778, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "2169", "properties": {"Object ID": 574488798, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92933268, 32.775041993, -79.92933268, 32.775041993], "geometry": {"coordinates": [-79.92933268, 32.775041993], "type": "Point"}, "id": "2170", "properties": {"Object ID": 574488832, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938167, 32.775139478, -79.92938167, 32.775139478], "geometry": {"coordinates": [-79.92938167, 32.775139478], "type": "Point"}, "id": "2171", "properties": {"Object ID": 574488833, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92884854, 32.774434661, -79.92884854, 32.774434661], "geometry": {"coordinates": [-79.92884854, 32.774434661], "type": "Point"}, "id": "2172", "properties": {"Object ID": 574488839, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92753232, 32.775619891, -79.92753232, 32.775619891], "geometry": {"coordinates": [-79.92753232, 32.775619891], "type": "Point"}, "id": "2173", "properties": {"Object ID": 574488841, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9269903, 32.775504683, -79.9269903, 32.775504683], "geometry": {"coordinates": [-79.9269903, 32.775504683], "type": "Point"}, "id": "2174", "properties": {"Object ID": 574488844, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92919442, 32.771849439, -79.92919442, 32.771849439], "geometry": {"coordinates": [-79.92919442, 32.771849439], "type": "Point"}, "id": "2175", "properties": {"Object ID": 574488873, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94241985, 32.777173173, -79.94241985, 32.777173173], "geometry": {"coordinates": [-79.94241985, 32.777173173], "type": "Point"}, "id": "2176", "properties": {"Object ID": 573800807, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9435405, 32.777304554, -79.9435405, 32.777304554], "geometry": {"coordinates": [-79.9435405, 32.777304554], "type": "Point"}, "id": "2177", "properties": {"Object ID": 573800811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94269541, 32.777619258, -79.94269541, 32.777619258], "geometry": {"coordinates": [-79.94269541, 32.777619258], "type": "Point"}, "id": "2178", "properties": {"Object ID": 573800821, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94230703, 32.774140084, -79.94230703, 32.774140084], "geometry": {"coordinates": [-79.94230703, 32.774140084], "type": "Point"}, "id": "2179", "properties": {"Object ID": 573800973, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94603104, 32.776676418, -79.94603104, 32.776676418], "geometry": {"coordinates": [-79.94603104, 32.776676418], "type": "Point"}, "id": "2180", "properties": {"Object ID": 573807476, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94417646, 32.777349111, -79.94417646, 32.777349111], "geometry": {"coordinates": [-79.94417646, 32.777349111], "type": "Point"}, "id": "2181", "properties": {"Object ID": 574348018, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94420161, 32.77748615, -79.94420161, 32.77748615], "geometry": {"coordinates": [-79.94420161, 32.77748615], "type": "Point"}, "id": "2182", "properties": {"Object ID": 574348020, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9439425, 32.777143809, -79.9439425, 32.777143809], "geometry": {"coordinates": [-79.9439425, 32.777143809], "type": "Point"}, "id": "2183", "properties": {"Object ID": 574431605, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "2184", "properties": {"Object ID": 574486742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "2185", "properties": {"Object ID": 574486751, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2186", "properties": {"Object ID": 574486779, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2187", "properties": {"Object ID": 574486782, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93428365, 32.774439413, -79.93428365, 32.774439413], "geometry": {"coordinates": [-79.93428365, 32.774439413], "type": "Point"}, "id": "2188", "properties": {"Object ID": 573475700, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93399074, 32.775033421, -79.93399074, 32.775033421], "geometry": {"coordinates": [-79.93399074, 32.775033421], "type": "Point"}, "id": "2189", "properties": {"Object ID": 573475710, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93539976, 32.772380183, -79.93539976, 32.772380183], "geometry": {"coordinates": [-79.93539976, 32.772380183], "type": "Point"}, "id": "2190", "properties": {"Object ID": 573789013, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9347198, 32.773271604, -79.9347198, 32.773271604], "geometry": {"coordinates": [-79.9347198, 32.773271604], "type": "Point"}, "id": "2191", "properties": {"Object ID": 573789023, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93438451, 32.773903594, -79.93438451, 32.773903594], "geometry": {"coordinates": [-79.93438451, 32.773903594], "type": "Point"}, "id": "2192", "properties": {"Object ID": 573789032, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93502173, 32.774331734, -79.93502173, 32.774331734], "geometry": {"coordinates": [-79.93502173, 32.774331734], "type": "Point"}, "id": "2193", "properties": {"Object ID": 573789135, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93512059, 32.775466775, -79.93512059, 32.775466775], "geometry": {"coordinates": [-79.93512059, 32.775466775], "type": "Point"}, "id": "2194", "properties": {"Object ID": 573789148, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93717378, 32.776095307, -79.93717378, 32.776095307], "geometry": {"coordinates": [-79.93717378, 32.776095307], "type": "Point"}, "id": "2195", "properties": {"Object ID": 573789164, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93659501, 32.776436549, -79.93659501, 32.776436549], "geometry": {"coordinates": [-79.93659501, 32.776436549], "type": "Point"}, "id": "2196", "properties": {"Object ID": 573789171, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93609038, 32.776386865, -79.93609038, 32.776386865], "geometry": {"coordinates": [-79.93609038, 32.776386865], "type": "Point"}, "id": "2197", "properties": {"Object ID": 573789172, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9362525, 32.776181, -79.9362525, 32.776181], "geometry": {"coordinates": [-79.9362525, 32.776181], "type": "Point"}, "id": "2198", "properties": {"Object ID": 573789183, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93718607, 32.772660027, -79.93718607, 32.772660027], "geometry": {"coordinates": [-79.93718607, 32.772660027], "type": "Point"}, "id": "2199", "properties": {"Object ID": 573789228, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93776485, 32.772881263, -79.93776485, 32.772881263], "geometry": {"coordinates": [-79.93776485, 32.772881263], "type": "Point"}, "id": "2200", "properties": {"Object ID": 573789232, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93759388, 32.773226578, -79.93759388, 32.773226578], "geometry": {"coordinates": [-79.93759388, 32.773226578], "type": "Point"}, "id": "2201", "properties": {"Object ID": 573789237, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93756021, 32.7718473, -79.93756021, 32.7718473], "geometry": {"coordinates": [-79.93756021, 32.7718473], "type": "Point"}, "id": "2202", "properties": {"Object ID": 573789312, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93918259, 32.774666558, -79.93918259, 32.774666558], "geometry": {"coordinates": [-79.93918259, 32.774666558], "type": "Point"}, "id": "2203", "properties": {"Object ID": 573789336, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.937993, 32.775313812, -79.937993, 32.775313812], "geometry": {"coordinates": [-79.937993, 32.775313812], "type": "Point"}, "id": "2204", "properties": {"Object ID": 573789351, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9379172, 32.777179279, -79.9379172, 32.777179279], "geometry": {"coordinates": [-79.9379172, 32.777179279], "type": "Point"}, "id": "2205", "properties": {"Object ID": 573789459, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93868916, 32.772740818, -79.93868916, 32.772740818], "geometry": {"coordinates": [-79.93868916, 32.772740818], "type": "Point"}, "id": "2206", "properties": {"Object ID": 573789691, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93845498, 32.773656866, -79.93845498, 32.773656866], "geometry": {"coordinates": [-79.93845498, 32.773656866], "type": "Point"}, "id": "2207", "properties": {"Object ID": 573789731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93817891, 32.778456407, -79.93817891, 32.778456407], "geometry": {"coordinates": [-79.93817891, 32.778456407], "type": "Point"}, "id": "2208", "properties": {"Object ID": 573794190, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93932232, 32.776556312, -79.93932232, 32.776556312], "geometry": {"coordinates": [-79.93932232, 32.776556312], "type": "Point"}, "id": "2209", "properties": {"Object ID": 573794269, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93918309, 32.776871181, -79.93918309, 32.776871181], "geometry": {"coordinates": [-79.93918309, 32.776871181], "type": "Point"}, "id": "2210", "properties": {"Object ID": 573794293, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94034745, 32.77755386, -79.94034745, 32.77755386], "geometry": {"coordinates": [-79.94034745, 32.77755386], "type": "Point"}, "id": "2211", "properties": {"Object ID": 573795675, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93606282, 32.771957331, -79.93606282, 32.771957331], "geometry": {"coordinates": [-79.93606282, 32.771957331], "type": "Point"}, "id": "2212", "properties": {"Object ID": 573850065, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9370822, 32.780106517, -79.9370822, 32.780106517], "geometry": {"coordinates": [-79.9370822, 32.780106517], "type": "Point"}, "id": "2213", "properties": {"Object ID": 573850801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9387436, 32.775911933, -79.9387436, 32.775911933], "geometry": {"coordinates": [-79.9387436, 32.775911933], "type": "Point"}, "id": "2214", "properties": {"Object ID": 573856062, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9387436, 32.775911933, -79.9387436, 32.775911933], "geometry": {"coordinates": [-79.9387436, 32.775911933], "type": "Point"}, "id": "2215", "properties": {"Object ID": 573856064, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93891053, 32.775988911, -79.93891053, 32.775988911], "geometry": {"coordinates": [-79.93891053, 32.775988911], "type": "Point"}, "id": "2216", "properties": {"Object ID": 573856076, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93964812, 32.776292271, -79.93964812, 32.776292271], "geometry": {"coordinates": [-79.93964812, 32.776292271], "type": "Point"}, "id": "2217", "properties": {"Object ID": 573856085, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93994714, 32.773314038, -79.93994714, 32.773314038], "geometry": {"coordinates": [-79.93994714, 32.773314038], "type": "Point"}, "id": "2218", "properties": {"Object ID": 573860082, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94026264, 32.773438482, -79.94026264, 32.773438482], "geometry": {"coordinates": [-79.94026264, 32.773438482], "type": "Point"}, "id": "2219", "properties": {"Object ID": 573860096, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94090742, 32.775355776, -79.94090742, 32.775355776], "geometry": {"coordinates": [-79.94090742, 32.775355776], "type": "Point"}, "id": "2220", "properties": {"Object ID": 573860292, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93486489, 32.771597654, -79.93486489, 32.771597654], "geometry": {"coordinates": [-79.93486489, 32.771597654], "type": "Point"}, "id": "2221", "properties": {"Object ID": 574268690, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93608247, 32.776842925, -79.93608247, 32.776842925], "geometry": {"coordinates": [-79.93608247, 32.776842925], "type": "Point"}, "id": "2222", "properties": {"Object ID": 574268932, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93611542, 32.777133131, -79.93611542, 32.777133131], "geometry": {"coordinates": [-79.93611542, 32.777133131], "type": "Point"}, "id": "2223", "properties": {"Object ID": 574268948, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93707231, 32.777253427, -79.93707231, 32.777253427], "geometry": {"coordinates": [-79.93707231, 32.777253427], "type": "Point"}, "id": "2224", "properties": {"Object ID": 574268953, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93823689, 32.774591287, -79.93823689, 32.774591287], "geometry": {"coordinates": [-79.93823689, 32.774591287], "type": "Point"}, "id": "2225", "properties": {"Object ID": 574269161, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93644823, 32.775781712, -79.93644823, 32.775781712], "geometry": {"coordinates": [-79.93644823, 32.775781712], "type": "Point"}, "id": "2226", "properties": {"Object ID": 574269220, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93836411, 32.777383038, -79.93836411, 32.777383038], "geometry": {"coordinates": [-79.93836411, 32.777383038], "type": "Point"}, "id": "2227", "properties": {"Object ID": 574269272, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93778431, 32.777657906, -79.93778431, 32.777657906], "geometry": {"coordinates": [-79.93778431, 32.777657906], "type": "Point"}, "id": "2228", "properties": {"Object ID": 574269284, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9388738, 32.777679999, -79.9388738, 32.777679999], "geometry": {"coordinates": [-79.9388738, 32.777679999], "type": "Point"}, "id": "2229", "properties": {"Object ID": 574295720, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94091432, 32.772050211, -79.94091432, 32.772050211], "geometry": {"coordinates": [-79.94091432, 32.772050211], "type": "Point"}, "id": "2230", "properties": {"Object ID": 574296081, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9340377, 32.777812018, -79.9340377, 32.777812018], "geometry": {"coordinates": [-79.9340377, 32.777812018], "type": "Point"}, "id": "2231", "properties": {"Object ID": 574371658, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93987896, 32.772493933, -79.93987896, 32.772493933], "geometry": {"coordinates": [-79.93987896, 32.772493933], "type": "Point"}, "id": "2232", "properties": {"Object ID": 574372046, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94003803, 32.772985924, -79.94003803, 32.772985924], "geometry": {"coordinates": [-79.94003803, 32.772985924], "type": "Point"}, "id": "2233", "properties": {"Object ID": 574372068, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93657736, 32.772016191, -79.93657736, 32.772016191], "geometry": {"coordinates": [-79.93657736, 32.772016191], "type": "Point"}, "id": "2234", "properties": {"Object ID": 574371888, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93692284, 32.77330102, -79.93692284, 32.77330102], "geometry": {"coordinates": [-79.93692284, 32.77330102], "type": "Point"}, "id": "2235", "properties": {"Object ID": 574371912, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93659796, 32.773344327, -79.93659796, 32.773344327], "geometry": {"coordinates": [-79.93659796, 32.773344327], "type": "Point"}, "id": "2236", "properties": {"Object ID": 574371914, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93692533, 32.773515073, -79.93692533, 32.773515073], "geometry": {"coordinates": [-79.93692533, 32.773515073], "type": "Point"}, "id": "2237", "properties": {"Object ID": 574371918, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93540488, 32.776294861, -79.93540488, 32.776294861], "geometry": {"coordinates": [-79.93540488, 32.776294861], "type": "Point"}, "id": "2238", "properties": {"Object ID": 574372950, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93577778, 32.771690262, -79.93577778, 32.771690262], "geometry": {"coordinates": [-79.93577778, 32.771690262], "type": "Point"}, "id": "2239", "properties": {"Object ID": 574431715, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93385777, 32.779260347, -79.93385777, 32.779260347], "geometry": {"coordinates": [-79.93385777, 32.779260347], "type": "Point"}, "id": "2240", "properties": {"Object ID": 574446541, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93406237, 32.770313028, -79.93406237, 32.770313028], "geometry": {"coordinates": [-79.93406237, 32.770313028], "type": "Point"}, "id": "2241", "properties": {"Object ID": 574476702, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "2242", "properties": {"Object ID": 574485662, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94001548, 32.77870671, -79.94001548, 32.77870671], "geometry": {"coordinates": [-79.94001548, 32.77870671], "type": "Point"}, "id": "2243", "properties": {"Object ID": 574486712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93832432, 32.777450341, -79.93832432, 32.777450341], "geometry": {"coordinates": [-79.93832432, 32.777450341], "type": "Point"}, "id": "2244", "properties": {"Object ID": 574486804, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93892571, 32.776049265, -79.93892571, 32.776049265], "geometry": {"coordinates": [-79.93892571, 32.776049265], "type": "Point"}, "id": "2245", "properties": {"Object ID": 574486808, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94176671, 32.775167289, -79.94176671, 32.775167289], "geometry": {"coordinates": [-79.94176671, 32.775167289], "type": "Point"}, "id": "2246", "properties": {"Object ID": 574486812, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93445966, 32.774075291, -79.93445966, 32.774075291], "geometry": {"coordinates": [-79.93445966, 32.774075291], "type": "Point"}, "id": "2247", "properties": {"Object ID": 574486888, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93671193, 32.776893394, -79.93671193, 32.776893394], "geometry": {"coordinates": [-79.93671193, 32.776893394], "type": "Point"}, "id": "2248", "properties": {"Object ID": 574486965, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93777386, 32.776445317, -79.93777386, 32.776445317], "geometry": {"coordinates": [-79.93777386, 32.776445317], "type": "Point"}, "id": "2249", "properties": {"Object ID": 574486968, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93524174, 32.778131664, -79.93524174, 32.778131664], "geometry": {"coordinates": [-79.93524174, 32.778131664], "type": "Point"}, "id": "2250", "properties": {"Object ID": 574487002, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93555175, 32.778099147, -79.93555175, 32.778099147], "geometry": {"coordinates": [-79.93555175, 32.778099147], "type": "Point"}, "id": "2251", "properties": {"Object ID": 574487004, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93661724, 32.77791198, -79.93661724, 32.77791198], "geometry": {"coordinates": [-79.93661724, 32.77791198], "type": "Point"}, "id": "2252", "properties": {"Object ID": 574487033, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93655901, 32.777917317, -79.93655901, 32.777917317], "geometry": {"coordinates": [-79.93655901, 32.777917317], "type": "Point"}, "id": "2253", "properties": {"Object ID": 574487035, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93544331, 32.777633896, -79.93544331, 32.777633896], "geometry": {"coordinates": [-79.93544331, 32.777633896], "type": "Point"}, "id": "2254", "properties": {"Object ID": 574487042, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "2255", "properties": {"Object ID": 574487070, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93612508, 32.776604113, -79.93612508, 32.776604113], "geometry": {"coordinates": [-79.93612508, 32.776604113], "type": "Point"}, "id": "2256", "properties": {"Object ID": 574487086, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9360093, 32.776544542, -79.9360093, 32.776544542], "geometry": {"coordinates": [-79.9360093, 32.776544542], "type": "Point"}, "id": "2257", "properties": {"Object ID": 574487087, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146728, 32.77204895, -79.94146728, 32.77204895], "geometry": {"coordinates": [-79.94146728, 32.77204895], "type": "Point"}, "id": "2258", "properties": {"Object ID": 574507506, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92937745, 32.782355858, -79.92937745, 32.782355858], "geometry": {"coordinates": [-79.92937745, 32.782355858], "type": "Point"}, "id": "2259", "properties": {"Object ID": 573467949, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93045358, 32.782388363, -79.93045358, 32.782388363], "geometry": {"coordinates": [-79.93045358, 32.782388363], "type": "Point"}, "id": "2260", "properties": {"Object ID": 573467950, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92949886, 32.782506477, -79.92949886, 32.782506477], "geometry": {"coordinates": [-79.92949886, 32.782506477], "type": "Point"}, "id": "2261", "properties": {"Object ID": 573467953, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93034224, 32.782788355, -79.93034224, 32.782788355], "geometry": {"coordinates": [-79.93034224, 32.782788355], "type": "Point"}, "id": "2262", "properties": {"Object ID": 573467962, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93147255, 32.782216093, -79.93147255, 32.782216093], "geometry": {"coordinates": [-79.93147255, 32.782216093], "type": "Point"}, "id": "2263", "properties": {"Object ID": 573475696, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92900958, 32.782028317, -79.92900958, 32.782028317], "geometry": {"coordinates": [-79.92900958, 32.782028317], "type": "Point"}, "id": "2264", "properties": {"Object ID": 573782464, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93052608, 32.780812311, -79.93052608, 32.780812311], "geometry": {"coordinates": [-79.93052608, 32.780812311], "type": "Point"}, "id": "2265", "properties": {"Object ID": 573785536, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9282511, 32.782869981, -79.9282511, 32.782869981], "geometry": {"coordinates": [-79.9282511, 32.782869981], "type": "Point"}, "id": "2266", "properties": {"Object ID": 573827782, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92930076, 32.782982749, -79.92930076, 32.782982749], "geometry": {"coordinates": [-79.92930076, 32.782982749], "type": "Point"}, "id": "2267", "properties": {"Object ID": 573827786, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242442, 32.781970364, -79.93242442, 32.781970364], "geometry": {"coordinates": [-79.93242442, 32.781970364], "type": "Point"}, "id": "2268", "properties": {"Object ID": 574371535, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9326316, 32.781124507, -79.9326316, 32.781124507], "geometry": {"coordinates": [-79.9326316, 32.781124507], "type": "Point"}, "id": "2269", "properties": {"Object ID": 574371552, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93276684, 32.781806628, -79.93276684, 32.781806628], "geometry": {"coordinates": [-79.93276684, 32.781806628], "type": "Point"}, "id": "2270", "properties": {"Object ID": 574371569, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93258546, 32.781970217, -79.93258546, 32.781970217], "geometry": {"coordinates": [-79.93258546, 32.781970217], "type": "Point"}, "id": "2271", "properties": {"Object ID": 574371577, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92890689, 32.781738577, -79.92890689, 32.781738577], "geometry": {"coordinates": [-79.92890689, 32.781738577], "type": "Point"}, "id": "2272", "properties": {"Object ID": 574431308, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92857452, 32.78132147, -79.92857452, 32.78132147], "geometry": {"coordinates": [-79.92857452, 32.78132147], "type": "Point"}, "id": "2273", "properties": {"Object ID": 574431314, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93069936, 32.78185867, -79.93069936, 32.78185867], "geometry": {"coordinates": [-79.93069936, 32.78185867], "type": "Point"}, "id": "2274", "properties": {"Object ID": 574454473, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93392391, 32.781461064, -79.93392391, 32.781461064], "geometry": {"coordinates": [-79.93392391, 32.781461064], "type": "Point"}, "id": "2275", "properties": {"Object ID": 574460905, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93204842, 32.782216168, -79.93204842, 32.782216168], "geometry": {"coordinates": [-79.93204842, 32.782216168], "type": "Point"}, "id": "2276", "properties": {"Object ID": 574460921, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93204842, 32.782216168, -79.93204842, 32.782216168], "geometry": {"coordinates": [-79.93204842, 32.782216168], "type": "Point"}, "id": "2277", "properties": {"Object ID": 574460923, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93346098, 32.781210066, -79.93346098, 32.781210066], "geometry": {"coordinates": [-79.93346098, 32.781210066], "type": "Point"}, "id": "2278", "properties": {"Object ID": 574460933, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9337269, 32.780839519, -79.9337269, 32.780839519], "geometry": {"coordinates": [-79.9337269, 32.780839519], "type": "Point"}, "id": "2279", "properties": {"Object ID": 574460941, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92998156, 32.782075277, -79.92998156, 32.782075277], "geometry": {"coordinates": [-79.92998156, 32.782075277], "type": "Point"}, "id": "2280", "properties": {"Object ID": 574461009, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92844153, 32.782540836, -79.92844153, 32.782540836], "geometry": {"coordinates": [-79.92844153, 32.782540836], "type": "Point"}, "id": "2281", "properties": {"Object ID": 574461011, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93010382, 32.782773607, -79.93010382, 32.782773607], "geometry": {"coordinates": [-79.93010382, 32.782773607], "type": "Point"}, "id": "2282", "properties": {"Object ID": 574488419, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93010382, 32.782773607, -79.93010382, 32.782773607], "geometry": {"coordinates": [-79.93010382, 32.782773607], "type": "Point"}, "id": "2283", "properties": {"Object ID": 574488420, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "2284", "properties": {"Object ID": 574488431, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "2285", "properties": {"Object ID": 574488433, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92896625, 32.783318385, -79.92896625, 32.783318385], "geometry": {"coordinates": [-79.92896625, 32.783318385], "type": "Point"}, "id": "2286", "properties": {"Object ID": 574488650, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2287", "properties": {"Object ID": 574488659, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2288", "properties": {"Object ID": 574488664, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2289", "properties": {"Object ID": 574488675, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2290", "properties": {"Object ID": 574488677, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92961637, 32.782688667, -79.92961637, 32.782688667], "geometry": {"coordinates": [-79.92961637, 32.782688667], "type": "Point"}, "id": "2291", "properties": {"Object ID": 573467957, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93017823, 32.782916667, -79.93017823, 32.782916667], "geometry": {"coordinates": [-79.93017823, 32.782916667], "type": "Point"}, "id": "2292", "properties": {"Object ID": 573467965, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.928631, 32.782198516, -79.928631, 32.782198516], "geometry": {"coordinates": [-79.928631, 32.782198516], "type": "Point"}, "id": "2293", "properties": {"Object ID": 573782458, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93136773, 32.78120541, -79.93136773, 32.78120541], "geometry": {"coordinates": [-79.93136773, 32.78120541], "type": "Point"}, "id": "2294", "properties": {"Object ID": 573831823, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92797932, 32.78365938, -79.92797932, 32.78365938], "geometry": {"coordinates": [-79.92797932, 32.78365938], "type": "Point"}, "id": "2295", "properties": {"Object ID": 574267608, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9326316, 32.781124507, -79.9326316, 32.781124507], "geometry": {"coordinates": [-79.9326316, 32.781124507], "type": "Point"}, "id": "2296", "properties": {"Object ID": 574371548, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93201544, 32.781770845, -79.93201544, 32.781770845], "geometry": {"coordinates": [-79.93201544, 32.781770845], "type": "Point"}, "id": "2297", "properties": {"Object ID": 574371583, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93069936, 32.78185867, -79.93069936, 32.78185867], "geometry": {"coordinates": [-79.93069936, 32.78185867], "type": "Point"}, "id": "2298", "properties": {"Object ID": 574454474, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93355365, 32.781151732, -79.93355365, 32.781151732], "geometry": {"coordinates": [-79.93355365, 32.781151732], "type": "Point"}, "id": "2299", "properties": {"Object ID": 574460935, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "2300", "properties": {"Object ID": 574488425, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92896625, 32.783318385, -79.92896625, 32.783318385], "geometry": {"coordinates": [-79.92896625, 32.783318385], "type": "Point"}, "id": "2301", "properties": {"Object ID": 574488649, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92927955, 32.782692509, -79.92927955, 32.782692509], "geometry": {"coordinates": [-79.92927955, 32.782692509], "type": "Point"}, "id": "2302", "properties": {"Object ID": 574488652, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2303", "properties": {"Object ID": 574488674, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94308092, 32.775116486, -79.94308092, 32.775116486], "geometry": {"coordinates": [-79.94308092, 32.775116486], "type": "Point"}, "id": "2304", "properties": {"Object ID": 573800700, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94249296, 32.774997932, -79.94249296, 32.774997932], "geometry": {"coordinates": [-79.94249296, 32.774997932], "type": "Point"}, "id": "2305", "properties": {"Object ID": 573800702, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94252385, 32.772842073, -79.94252385, 32.772842073], "geometry": {"coordinates": [-79.94252385, 32.772842073], "type": "Point"}, "id": "2306", "properties": {"Object ID": 573800726, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94214278, 32.776888035, -79.94214278, 32.776888035], "geometry": {"coordinates": [-79.94214278, 32.776888035], "type": "Point"}, "id": "2307", "properties": {"Object ID": 573800803, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94242512, 32.77358757, -79.94242512, 32.77358757], "geometry": {"coordinates": [-79.94242512, 32.77358757], "type": "Point"}, "id": "2308", "properties": {"Object ID": 573800971, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94281263, 32.778037052, -79.94281263, 32.778037052], "geometry": {"coordinates": [-79.94281263, 32.778037052], "type": "Point"}, "id": "2309", "properties": {"Object ID": 573806322, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94217871, 32.778224817, -79.94217871, 32.778224817], "geometry": {"coordinates": [-79.94217871, 32.778224817], "type": "Point"}, "id": "2310", "properties": {"Object ID": 573860807, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94196008, 32.778349729, -79.94196008, 32.778349729], "geometry": {"coordinates": [-79.94196008, 32.778349729], "type": "Point"}, "id": "2311", "properties": {"Object ID": 573860817, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94165529, 32.773260587, -79.94165529, 32.773260587], "geometry": {"coordinates": [-79.94165529, 32.773260587], "type": "Point"}, "id": "2312", "properties": {"Object ID": 574270735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9412164, 32.773203632, -79.9412164, 32.773203632], "geometry": {"coordinates": [-79.9412164, 32.773203632], "type": "Point"}, "id": "2313", "properties": {"Object ID": 574270737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94459809, 32.777269989, -79.94459809, 32.777269989], "geometry": {"coordinates": [-79.94459809, 32.777269989], "type": "Point"}, "id": "2314", "properties": {"Object ID": 574348017, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94482689, 32.776602872, -79.94482689, 32.776602872], "geometry": {"coordinates": [-79.94482689, 32.776602872], "type": "Point"}, "id": "2315", "properties": {"Object ID": 574422152, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94175344, 32.773636803, -79.94175344, 32.773636803], "geometry": {"coordinates": [-79.94175344, 32.773636803], "type": "Point"}, "id": "2316", "properties": {"Object ID": 574431437, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94121158, 32.773901986, -79.94121158, 32.773901986], "geometry": {"coordinates": [-79.94121158, 32.773901986], "type": "Point"}, "id": "2317", "properties": {"Object ID": 574431447, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94403704, 32.777062866, -79.94403704, 32.777062866], "geometry": {"coordinates": [-79.94403704, 32.777062866], "type": "Point"}, "id": "2318", "properties": {"Object ID": 574431587, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94420298, 32.776505131, -79.94420298, 32.776505131], "geometry": {"coordinates": [-79.94420298, 32.776505131], "type": "Point"}, "id": "2319", "properties": {"Object ID": 574431589, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9437838, 32.776630645, -79.9437838, 32.776630645], "geometry": {"coordinates": [-79.9437838, 32.776630645], "type": "Point"}, "id": "2320", "properties": {"Object ID": 574431593, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94433842, 32.776978878, -79.94433842, 32.776978878], "geometry": {"coordinates": [-79.94433842, 32.776978878], "type": "Point"}, "id": "2321", "properties": {"Object ID": 574431601, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94417183, 32.776994682, -79.94417183, 32.776994682], "geometry": {"coordinates": [-79.94417183, 32.776994682], "type": "Point"}, "id": "2322", "properties": {"Object ID": 574431603, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "2323", "properties": {"Object ID": 574485653, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "2324", "properties": {"Object ID": 574485656, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "2325", "properties": {"Object ID": 574485665, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "2326", "properties": {"Object ID": 574486699, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "2327", "properties": {"Object ID": 574486705, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "2328", "properties": {"Object ID": 574486706, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94341468, 32.777162558, -79.94341468, 32.777162558], "geometry": {"coordinates": [-79.94341468, 32.777162558], "type": "Point"}, "id": "2329", "properties": {"Object ID": 574486735, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "2330", "properties": {"Object ID": 574486738, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "2331", "properties": {"Object ID": 574486743, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "2332", "properties": {"Object ID": 574486744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "2333", "properties": {"Object ID": 574486756, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "2334", "properties": {"Object ID": 574486759, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2335", "properties": {"Object ID": 574486764, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2336", "properties": {"Object ID": 574486767, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2337", "properties": {"Object ID": 574486772, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2338", "properties": {"Object ID": 574486773, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2339", "properties": {"Object ID": 574486778, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2340", "properties": {"Object ID": 574486780, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2341", "properties": {"Object ID": 574486781, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2342", "properties": {"Object ID": 574486783, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2343", "properties": {"Object ID": 574486784, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2344", "properties": {"Object ID": 574486785, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "2345", "properties": {"Object ID": 574486786, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94176671, 32.775167289, -79.94176671, 32.775167289], "geometry": {"coordinates": [-79.94176671, 32.775167289], "type": "Point"}, "id": "2346", "properties": {"Object ID": 574486813, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94176671, 32.775167289, -79.94176671, 32.775167289], "geometry": {"coordinates": [-79.94176671, 32.775167289], "type": "Point"}, "id": "2347", "properties": {"Object ID": 574486814, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "2348", "properties": {"Object ID": 574486824, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93156324, 32.77305763, -79.93156324, 32.77305763], "geometry": {"coordinates": [-79.93156324, 32.77305763], "type": "Point"}, "id": "2349", "properties": {"Object ID": 573785647, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93214602, 32.773223821, -79.93214602, 32.773223821], "geometry": {"coordinates": [-79.93214602, 32.773223821], "type": "Point"}, "id": "2350", "properties": {"Object ID": 573785655, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93212927, 32.773402315, -79.93212927, 32.773402315], "geometry": {"coordinates": [-79.93212927, 32.773402315], "type": "Point"}, "id": "2351", "properties": {"Object ID": 573785667, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93186254, 32.773103223, -79.93186254, 32.773103223], "geometry": {"coordinates": [-79.93186254, 32.773103223], "type": "Point"}, "id": "2352", "properties": {"Object ID": 573785685, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93202076, 32.772853535, -79.93202076, 32.772853535], "geometry": {"coordinates": [-79.93202076, 32.772853535], "type": "Point"}, "id": "2353", "properties": {"Object ID": 573785687, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93294367, 32.774517966, -79.93294367, 32.774517966], "geometry": {"coordinates": [-79.93294367, 32.774517966], "type": "Point"}, "id": "2354", "properties": {"Object ID": 573785804, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93268368, 32.774942759, -79.93268368, 32.774942759], "geometry": {"coordinates": [-79.93268368, 32.774942759], "type": "Point"}, "id": "2355", "properties": {"Object ID": 573785818, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93311344, 32.775004853, -79.93311344, 32.775004853], "geometry": {"coordinates": [-79.93311344, 32.775004853], "type": "Point"}, "id": "2356", "properties": {"Object ID": 573785822, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93272994, 32.775103143, -79.93272994, 32.775103143], "geometry": {"coordinates": [-79.93272994, 32.775103143], "type": "Point"}, "id": "2357", "properties": {"Object ID": 573785824, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93277277, 32.775330838, -79.93277277, 32.775330838], "geometry": {"coordinates": [-79.93277277, 32.775330838], "type": "Point"}, "id": "2358", "properties": {"Object ID": 573785829, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93319615, 32.775518126, -79.93319615, 32.775518126], "geometry": {"coordinates": [-79.93319615, 32.775518126], "type": "Point"}, "id": "2359", "properties": {"Object ID": 573785835, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93319429, 32.775289372, -79.93319429, 32.775289372], "geometry": {"coordinates": [-79.93319429, 32.775289372], "type": "Point"}, "id": "2360", "properties": {"Object ID": 573785862, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93276144, 32.771764566, -79.93276144, 32.771764566], "geometry": {"coordinates": [-79.93276144, 32.771764566], "type": "Point"}, "id": "2361", "properties": {"Object ID": 573785881, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93278038, 32.771943839, -79.93278038, 32.771943839], "geometry": {"coordinates": [-79.93278038, 32.771943839], "type": "Point"}, "id": "2362", "properties": {"Object ID": 573785893, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93250085, 32.772570233, -79.93250085, 32.772570233], "geometry": {"coordinates": [-79.93250085, 32.772570233], "type": "Point"}, "id": "2363", "properties": {"Object ID": 573785909, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93293189, 32.77302771, -79.93293189, 32.77302771], "geometry": {"coordinates": [-79.93293189, 32.77302771], "type": "Point"}, "id": "2364", "properties": {"Object ID": 573785923, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93264071, 32.773541761, -79.93264071, 32.773541761], "geometry": {"coordinates": [-79.93264071, 32.773541761], "type": "Point"}, "id": "2365", "properties": {"Object ID": 573785937, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93348458, 32.773706484, -79.93348458, 32.773706484], "geometry": {"coordinates": [-79.93348458, 32.773706484], "type": "Point"}, "id": "2366", "properties": {"Object ID": 573785943, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93290514, 32.773895802, -79.93290514, 32.773895802], "geometry": {"coordinates": [-79.93290514, 32.773895802], "type": "Point"}, "id": "2367", "properties": {"Object ID": 573785952, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93286039, 32.774008405, -79.93286039, 32.774008405], "geometry": {"coordinates": [-79.93286039, 32.774008405], "type": "Point"}, "id": "2368", "properties": {"Object ID": 573785960, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93320286, 32.774123107, -79.93320286, 32.774123107], "geometry": {"coordinates": [-79.93320286, 32.774123107], "type": "Point"}, "id": "2369", "properties": {"Object ID": 573785972, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93298733, 32.774283026, -79.93298733, 32.774283026], "geometry": {"coordinates": [-79.93298733, 32.774283026], "type": "Point"}, "id": "2370", "properties": {"Object ID": 573785978, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93290608, 32.774317505, -79.93290608, 32.774317505], "geometry": {"coordinates": [-79.93290608, 32.774317505], "type": "Point"}, "id": "2371", "properties": {"Object ID": 573785980, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93148619, 32.774760872, -79.93148619, 32.774760872], "geometry": {"coordinates": [-79.93148619, 32.774760872], "type": "Point"}, "id": "2372", "properties": {"Object ID": 573831672, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93148619, 32.774760872, -79.93148619, 32.774760872], "geometry": {"coordinates": [-79.93148619, 32.774760872], "type": "Point"}, "id": "2373", "properties": {"Object ID": 573831674, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93237436, 32.774817891, -79.93237436, 32.774817891], "geometry": {"coordinates": [-79.93237436, 32.774817891], "type": "Point"}, "id": "2374", "properties": {"Object ID": 573831676, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93184157, 32.774769794, -79.93184157, 32.774769794], "geometry": {"coordinates": [-79.93184157, 32.774769794], "type": "Point"}, "id": "2375", "properties": {"Object ID": 573831687, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93227468, 32.775209382, -79.93227468, 32.775209382], "geometry": {"coordinates": [-79.93227468, 32.775209382], "type": "Point"}, "id": "2376", "properties": {"Object ID": 573831705, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93185937, 32.775545192, -79.93185937, 32.775545192], "geometry": {"coordinates": [-79.93185937, 32.775545192], "type": "Point"}, "id": "2377", "properties": {"Object ID": 573831725, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9322801, 32.776149882, -79.9322801, 32.776149882], "geometry": {"coordinates": [-79.9322801, 32.776149882], "type": "Point"}, "id": "2378", "properties": {"Object ID": 573831742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93162921, 32.77607049, -79.93162921, 32.77607049], "geometry": {"coordinates": [-79.93162921, 32.77607049], "type": "Point"}, "id": "2379", "properties": {"Object ID": 573831748, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93162921, 32.77607049, -79.93162921, 32.77607049], "geometry": {"coordinates": [-79.93162921, 32.77607049], "type": "Point"}, "id": "2380", "properties": {"Object ID": 573831750, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93207714, 32.776214253, -79.93207714, 32.776214253], "geometry": {"coordinates": [-79.93207714, 32.776214253], "type": "Point"}, "id": "2381", "properties": {"Object ID": 573831754, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9324294, 32.777952992, -79.9324294, 32.777952992], "geometry": {"coordinates": [-79.9324294, 32.777952992], "type": "Point"}, "id": "2382", "properties": {"Object ID": 573831768, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93214434, 32.778087636, -79.93214434, 32.778087636], "geometry": {"coordinates": [-79.93214434, 32.778087636], "type": "Point"}, "id": "2383", "properties": {"Object ID": 573831772, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93196011, 32.778118245, -79.93196011, 32.778118245], "geometry": {"coordinates": [-79.93196011, 32.778118245], "type": "Point"}, "id": "2384", "properties": {"Object ID": 573831780, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93271625, 32.778164884, -79.93271625, 32.778164884], "geometry": {"coordinates": [-79.93271625, 32.778164884], "type": "Point"}, "id": "2385", "properties": {"Object ID": 573831788, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.931735, 32.778508926, -79.931735, 32.778508926], "geometry": {"coordinates": [-79.931735, 32.778508926], "type": "Point"}, "id": "2386", "properties": {"Object ID": 573831790, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93198568, 32.779136197, -79.93198568, 32.779136197], "geometry": {"coordinates": [-79.93198568, 32.779136197], "type": "Point"}, "id": "2387", "properties": {"Object ID": 573831801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.931676, 32.779163, -79.931676, 32.779163], "geometry": {"coordinates": [-79.931676, 32.779163], "type": "Point"}, "id": "2388", "properties": {"Object ID": 573831803, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93274537, 32.777927297, -79.93274537, 32.777927297], "geometry": {"coordinates": [-79.93274537, 32.777927297], "type": "Point"}, "id": "2389", "properties": {"Object ID": 573831809, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93136773, 32.78120541, -79.93136773, 32.78120541], "geometry": {"coordinates": [-79.93136773, 32.78120541], "type": "Point"}, "id": "2390", "properties": {"Object ID": 573831819, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93136773, 32.78120541, -79.93136773, 32.78120541], "geometry": {"coordinates": [-79.93136773, 32.78120541], "type": "Point"}, "id": "2391", "properties": {"Object ID": 573831825, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93215196, 32.770892097, -79.93215196, 32.770892097], "geometry": {"coordinates": [-79.93215196, 32.770892097], "type": "Point"}, "id": "2392", "properties": {"Object ID": 573841005, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93360475, 32.770837864, -79.93360475, 32.770837864], "geometry": {"coordinates": [-79.93360475, 32.770837864], "type": "Point"}, "id": "2393", "properties": {"Object ID": 573841008, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93271903, 32.771154785, -79.93271903, 32.771154785], "geometry": {"coordinates": [-79.93271903, 32.771154785], "type": "Point"}, "id": "2394", "properties": {"Object ID": 573841016, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93225783, 32.771210807, -79.93225783, 32.771210807], "geometry": {"coordinates": [-79.93225783, 32.771210807], "type": "Point"}, "id": "2395", "properties": {"Object ID": 573841019, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93336519, 32.771338226, -79.93336519, 32.771338226], "geometry": {"coordinates": [-79.93336519, 32.771338226], "type": "Point"}, "id": "2396", "properties": {"Object ID": 573841021, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93254517, 32.771333852, -79.93254517, 32.771333852], "geometry": {"coordinates": [-79.93254517, 32.771333852], "type": "Point"}, "id": "2397", "properties": {"Object ID": 573841023, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93301629, 32.771394898, -79.93301629, 32.771394898], "geometry": {"coordinates": [-79.93301629, 32.771394898], "type": "Point"}, "id": "2398", "properties": {"Object ID": 573841025, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93292011, 32.77142414, -79.93292011, 32.77142414], "geometry": {"coordinates": [-79.93292011, 32.77142414], "type": "Point"}, "id": "2399", "properties": {"Object ID": 573841026, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93176892, 32.771816573, -79.93176892, 32.771816573], "geometry": {"coordinates": [-79.93176892, 32.771816573], "type": "Point"}, "id": "2400", "properties": {"Object ID": 574268211, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93199416, 32.771922437, -79.93199416, 32.771922437], "geometry": {"coordinates": [-79.93199416, 32.771922437], "type": "Point"}, "id": "2401", "properties": {"Object ID": 574268213, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.933352, 32.769817861, -79.933352, 32.769817861], "geometry": {"coordinates": [-79.933352, 32.769817861], "type": "Point"}, "id": "2402", "properties": {"Object ID": 574268563, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93325055, 32.769822756, -79.93325055, 32.769822756], "geometry": {"coordinates": [-79.93325055, 32.769822756], "type": "Point"}, "id": "2403", "properties": {"Object ID": 574268565, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93415227, 32.769904901, -79.93415227, 32.769904901], "geometry": {"coordinates": [-79.93415227, 32.769904901], "type": "Point"}, "id": "2404", "properties": {"Object ID": 574268575, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93217351, 32.769910148, -79.93217351, 32.769910148], "geometry": {"coordinates": [-79.93217351, 32.769910148], "type": "Point"}, "id": "2405", "properties": {"Object ID": 574268581, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93384413, 32.770258701, -79.93384413, 32.770258701], "geometry": {"coordinates": [-79.93384413, 32.770258701], "type": "Point"}, "id": "2406", "properties": {"Object ID": 574268585, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9338643, 32.770498205, -79.9338643, 32.770498205], "geometry": {"coordinates": [-79.9338643, 32.770498205], "type": "Point"}, "id": "2407", "properties": {"Object ID": 574268608, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93355286, 32.7705268, -79.93355286, 32.7705268], "geometry": {"coordinates": [-79.93355286, 32.7705268], "type": "Point"}, "id": "2408", "properties": {"Object ID": 574268616, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9338696, 32.770513767, -79.9338696, 32.770513767], "geometry": {"coordinates": [-79.9338696, 32.770513767], "type": "Point"}, "id": "2409", "properties": {"Object ID": 574268622, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93394756, 32.771041741, -79.93394756, 32.771041741], "geometry": {"coordinates": [-79.93394756, 32.771041741], "type": "Point"}, "id": "2410", "properties": {"Object ID": 574268678, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93411191, 32.77135412, -79.93411191, 32.77135412], "geometry": {"coordinates": [-79.93411191, 32.77135412], "type": "Point"}, "id": "2411", "properties": {"Object ID": 574268684, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93220751, 32.773603483, -79.93220751, 32.773603483], "geometry": {"coordinates": [-79.93220751, 32.773603483], "type": "Point"}, "id": "2412", "properties": {"Object ID": 574293771, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93169283, 32.773642137, -79.93169283, 32.773642137], "geometry": {"coordinates": [-79.93169283, 32.773642137], "type": "Point"}, "id": "2413", "properties": {"Object ID": 574293773, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93184168, 32.773760501, -79.93184168, 32.773760501], "geometry": {"coordinates": [-79.93184168, 32.773760501], "type": "Point"}, "id": "2414", "properties": {"Object ID": 574293777, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93217545, 32.773779475, -79.93217545, 32.773779475], "geometry": {"coordinates": [-79.93217545, 32.773779475], "type": "Point"}, "id": "2415", "properties": {"Object ID": 574293779, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93224549, 32.77388842, -79.93224549, 32.77388842], "geometry": {"coordinates": [-79.93224549, 32.77388842], "type": "Point"}, "id": "2416", "properties": {"Object ID": 574293781, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9316909, 32.774317582, -79.9316909, 32.774317582], "geometry": {"coordinates": [-79.9316909, 32.774317582], "type": "Point"}, "id": "2417", "properties": {"Object ID": 574293789, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93230226, 32.774381701, -79.93230226, 32.774381701], "geometry": {"coordinates": [-79.93230226, 32.774381701], "type": "Point"}, "id": "2418", "properties": {"Object ID": 574293793, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93242442, 32.781970364, -79.93242442, 32.781970364], "geometry": {"coordinates": [-79.93242442, 32.781970364], "type": "Point"}, "id": "2419", "properties": {"Object ID": 574371540, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9326316, 32.781124507, -79.9326316, 32.781124507], "geometry": {"coordinates": [-79.9326316, 32.781124507], "type": "Point"}, "id": "2420", "properties": {"Object ID": 574371558, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93276684, 32.781806628, -79.93276684, 32.781806628], "geometry": {"coordinates": [-79.93276684, 32.781806628], "type": "Point"}, "id": "2421", "properties": {"Object ID": 574371561, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93258546, 32.781970217, -79.93258546, 32.781970217], "geometry": {"coordinates": [-79.93258546, 32.781970217], "type": "Point"}, "id": "2422", "properties": {"Object ID": 574371573, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93258546, 32.781970217, -79.93258546, 32.781970217], "geometry": {"coordinates": [-79.93258546, 32.781970217], "type": "Point"}, "id": "2423", "properties": {"Object ID": 574371579, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93201544, 32.781770845, -79.93201544, 32.781770845], "geometry": {"coordinates": [-79.93201544, 32.781770845], "type": "Point"}, "id": "2424", "properties": {"Object ID": 574371587, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93201544, 32.781770845, -79.93201544, 32.781770845], "geometry": {"coordinates": [-79.93201544, 32.781770845], "type": "Point"}, "id": "2425", "properties": {"Object ID": 574371589, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93388844, 32.778057847, -79.93388844, 32.778057847], "geometry": {"coordinates": [-79.93388844, 32.778057847], "type": "Point"}, "id": "2426", "properties": {"Object ID": 574371649, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93312309, 32.777861464, -79.93312309, 32.777861464], "geometry": {"coordinates": [-79.93312309, 32.777861464], "type": "Point"}, "id": "2427", "properties": {"Object ID": 574371668, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93391977, 32.777859319, -79.93391977, 32.777859319], "geometry": {"coordinates": [-79.93391977, 32.777859319], "type": "Point"}, "id": "2428", "properties": {"Object ID": 574371671, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9336595, 32.7778835, -79.9336595, 32.7778835], "geometry": {"coordinates": [-79.9336595, 32.7778835], "type": "Point"}, "id": "2429", "properties": {"Object ID": 574371687, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93107316, 32.770696863, -79.93107316, 32.770696863], "geometry": {"coordinates": [-79.93107316, 32.770696863], "type": "Point"}, "id": "2430", "properties": {"Object ID": 574372686, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9316774, 32.770791503, -79.9316774, 32.770791503], "geometry": {"coordinates": [-79.9316774, 32.770791503], "type": "Point"}, "id": "2431", "properties": {"Object ID": 574372701, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93361407, 32.776416618, -79.93361407, 32.776416618], "geometry": {"coordinates": [-79.93361407, 32.776416618], "type": "Point"}, "id": "2432", "properties": {"Object ID": 574409642, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93373014, 32.776740174, -79.93373014, 32.776740174], "geometry": {"coordinates": [-79.93373014, 32.776740174], "type": "Point"}, "id": "2433", "properties": {"Object ID": 574409646, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93305761, 32.776982082, -79.93305761, 32.776982082], "geometry": {"coordinates": [-79.93305761, 32.776982082], "type": "Point"}, "id": "2434", "properties": {"Object ID": 574409652, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93364149, 32.777297619, -79.93364149, 32.777297619], "geometry": {"coordinates": [-79.93364149, 32.777297619], "type": "Point"}, "id": "2435", "properties": {"Object ID": 574409658, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93364149, 32.777297619, -79.93364149, 32.777297619], "geometry": {"coordinates": [-79.93364149, 32.777297619], "type": "Point"}, "id": "2436", "properties": {"Object ID": 574409659, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93307108, 32.77742516, -79.93307108, 32.77742516], "geometry": {"coordinates": [-79.93307108, 32.77742516], "type": "Point"}, "id": "2437", "properties": {"Object ID": 574409660, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93334161, 32.778622412, -79.93334161, 32.778622412], "geometry": {"coordinates": [-79.93334161, 32.778622412], "type": "Point"}, "id": "2438", "properties": {"Object ID": 574421801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93334161, 32.778622412, -79.93334161, 32.778622412], "geometry": {"coordinates": [-79.93334161, 32.778622412], "type": "Point"}, "id": "2439", "properties": {"Object ID": 574421803, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9332361, 32.778915174, -79.9332361, 32.778915174], "geometry": {"coordinates": [-79.9332361, 32.778915174], "type": "Point"}, "id": "2440", "properties": {"Object ID": 574421809, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9336979, 32.779879458, -79.9336979, 32.779879458], "geometry": {"coordinates": [-79.9336979, 32.779879458], "type": "Point"}, "id": "2441", "properties": {"Object ID": 574446505, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93355639, 32.779534253, -79.93355639, 32.779534253], "geometry": {"coordinates": [-79.93355639, 32.779534253], "type": "Point"}, "id": "2442", "properties": {"Object ID": 574446555, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93342151, 32.779442072, -79.93342151, 32.779442072], "geometry": {"coordinates": [-79.93342151, 32.779442072], "type": "Point"}, "id": "2443", "properties": {"Object ID": 574446563, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93364603, 32.781073771, -79.93364603, 32.781073771], "geometry": {"coordinates": [-79.93364603, 32.781073771], "type": "Point"}, "id": "2444", "properties": {"Object ID": 574447834, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93368836, 32.78091163, -79.93368836, 32.78091163], "geometry": {"coordinates": [-79.93368836, 32.78091163], "type": "Point"}, "id": "2445", "properties": {"Object ID": 574447838, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93401099, 32.780256033, -79.93401099, 32.780256033], "geometry": {"coordinates": [-79.93401099, 32.780256033], "type": "Point"}, "id": "2446", "properties": {"Object ID": 574455888, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93401099, 32.780256033, -79.93401099, 32.780256033], "geometry": {"coordinates": [-79.93401099, 32.780256033], "type": "Point"}, "id": "2447", "properties": {"Object ID": 574455892, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93355205, 32.781223407, -79.93355205, 32.781223407], "geometry": {"coordinates": [-79.93355205, 32.781223407], "type": "Point"}, "id": "2448", "properties": {"Object ID": 574460927, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93287932, 32.779660719, -79.93287932, 32.779660719], "geometry": {"coordinates": [-79.93287932, 32.779660719], "type": "Point"}, "id": "2449", "properties": {"Object ID": 574460959, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93264836, 32.778387641, -79.93264836, 32.778387641], "geometry": {"coordinates": [-79.93264836, 32.778387641], "type": "Point"}, "id": "2450", "properties": {"Object ID": 574460965, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "2451", "properties": {"Object ID": 574460975, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "2452", "properties": {"Object ID": 574460977, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "2453", "properties": {"Object ID": 574460981, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93232572, 32.778119861, -79.93232572, 32.778119861], "geometry": {"coordinates": [-79.93232572, 32.778119861], "type": "Point"}, "id": "2454", "properties": {"Object ID": 574460991, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93315753, 32.777901952, -79.93315753, 32.777901952], "geometry": {"coordinates": [-79.93315753, 32.777901952], "type": "Point"}, "id": "2455", "properties": {"Object ID": 574461039, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93323889, 32.77801247, -79.93323889, 32.77801247], "geometry": {"coordinates": [-79.93323889, 32.77801247], "type": "Point"}, "id": "2456", "properties": {"Object ID": 574461041, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93269937, 32.77799692, -79.93269937, 32.77799692], "geometry": {"coordinates": [-79.93269937, 32.77799692], "type": "Point"}, "id": "2457", "properties": {"Object ID": 574461047, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2458", "properties": {"Object ID": 574476704, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2459", "properties": {"Object ID": 574476714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2460", "properties": {"Object ID": 574476716, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2461", "properties": {"Object ID": 574476720, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2462", "properties": {"Object ID": 574476722, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2463", "properties": {"Object ID": 574476739, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2464", "properties": {"Object ID": 574476761, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2465", "properties": {"Object ID": 574476777, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2466", "properties": {"Object ID": 574476799, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2467", "properties": {"Object ID": 574476801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2468", "properties": {"Object ID": 574476805, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241085, 32.769968112, -79.93241085, 32.769968112], "geometry": {"coordinates": [-79.93241085, 32.769968112], "type": "Point"}, "id": "2469", "properties": {"Object ID": 574476810, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93241459, 32.775817134, -79.93241459, 32.775817134], "geometry": {"coordinates": [-79.93241459, 32.775817134], "type": "Point"}, "id": "2470", "properties": {"Object ID": 574486860, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93218159, 32.775506556, -79.93218159, 32.775506556], "geometry": {"coordinates": [-79.93218159, 32.775506556], "type": "Point"}, "id": "2471", "properties": {"Object ID": 574486893, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93213015, 32.775116518, -79.93213015, 32.775116518], "geometry": {"coordinates": [-79.93213015, 32.775116518], "type": "Point"}, "id": "2472", "properties": {"Object ID": 574486894, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93152053, 32.773122119, -79.93152053, 32.773122119], "geometry": {"coordinates": [-79.93152053, 32.773122119], "type": "Point"}, "id": "2473", "properties": {"Object ID": 574486911, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93367633, 32.771775983, -79.93367633, 32.771775983], "geometry": {"coordinates": [-79.93367633, 32.771775983], "type": "Point"}, "id": "2474", "properties": {"Object ID": 574486912, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93337915, 32.770923728, -79.93337915, 32.770923728], "geometry": {"coordinates": [-79.93337915, 32.770923728], "type": "Point"}, "id": "2475", "properties": {"Object ID": 574486921, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93337915, 32.770923728, -79.93337915, 32.770923728], "geometry": {"coordinates": [-79.93337915, 32.770923728], "type": "Point"}, "id": "2476", "properties": {"Object ID": 574486925, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93114909, 32.770788259, -79.93114909, 32.770788259], "geometry": {"coordinates": [-79.93114909, 32.770788259], "type": "Point"}, "id": "2477", "properties": {"Object ID": 574486931, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93361562, 32.779523229, -79.93361562, 32.779523229], "geometry": {"coordinates": [-79.93361562, 32.779523229], "type": "Point"}, "id": "2478", "properties": {"Object ID": 574487006, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93392391, 32.781461064, -79.93392391, 32.781461064], "geometry": {"coordinates": [-79.93392391, 32.781461064], "type": "Point"}, "id": "2479", "properties": {"Object ID": 574488435, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93392391, 32.781461064, -79.93392391, 32.781461064], "geometry": {"coordinates": [-79.93392391, 32.781461064], "type": "Point"}, "id": "2480", "properties": {"Object ID": 574488436, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93392391, 32.781461064, -79.93392391, 32.781461064], "geometry": {"coordinates": [-79.93392391, 32.781461064], "type": "Point"}, "id": "2481", "properties": {"Object ID": 574488438, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94569164, 32.776789674, -79.94569164, 32.776789674], "geometry": {"coordinates": [-79.94569164, 32.776789674], "type": "Point"}, "id": "2482", "properties": {"Object ID": 573807478, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94559827, 32.776826045, -79.94559827, 32.776826045], "geometry": {"coordinates": [-79.94559827, 32.776826045], "type": "Point"}, "id": "2483", "properties": {"Object ID": 574486734, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92777691, 32.772712041, -79.92777691, 32.772712041], "geometry": {"coordinates": [-79.92777691, 32.772712041], "type": "Point"}, "id": "2484", "properties": {"Object ID": 573779303, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92826814, 32.77291566, -79.92826814, 32.77291566], "geometry": {"coordinates": [-79.92826814, 32.77291566], "type": "Point"}, "id": "2485", "properties": {"Object ID": 573779307, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92764997, 32.77305777, -79.92764997, 32.77305777], "geometry": {"coordinates": [-79.92764997, 32.77305777], "type": "Point"}, "id": "2486", "properties": {"Object ID": 573779313, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92796409, 32.773452674, -79.92796409, 32.773452674], "geometry": {"coordinates": [-79.92796409, 32.773452674], "type": "Point"}, "id": "2487", "properties": {"Object ID": 573779333, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92876921, 32.773557141, -79.92876921, 32.773557141], "geometry": {"coordinates": [-79.92876921, 32.773557141], "type": "Point"}, "id": "2488", "properties": {"Object ID": 573779337, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92851868, 32.773602636, -79.92851868, 32.773602636], "geometry": {"coordinates": [-79.92851868, 32.773602636], "type": "Point"}, "id": "2489", "properties": {"Object ID": 573779339, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9275327, 32.773684646, -79.9275327, 32.773684646], "geometry": {"coordinates": [-79.9275327, 32.773684646], "type": "Point"}, "id": "2490", "properties": {"Object ID": 573779343, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92878871, 32.773797213, -79.92878871, 32.773797213], "geometry": {"coordinates": [-79.92878871, 32.773797213], "type": "Point"}, "id": "2491", "properties": {"Object ID": 573779347, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92881092, 32.77420289, -79.92881092, 32.77420289], "geometry": {"coordinates": [-79.92881092, 32.77420289], "type": "Point"}, "id": "2492", "properties": {"Object ID": 573779363, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92885668, 32.774381581, -79.92885668, 32.774381581], "geometry": {"coordinates": [-79.92885668, 32.774381581], "type": "Point"}, "id": "2493", "properties": {"Object ID": 573779371, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92837063, 32.774364097, -79.92837063, 32.774364097], "geometry": {"coordinates": [-79.92837063, 32.774364097], "type": "Point"}, "id": "2494", "properties": {"Object ID": 573779373, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92804538, 32.774406017, -79.92804538, 32.774406017], "geometry": {"coordinates": [-79.92804538, 32.774406017], "type": "Point"}, "id": "2495", "properties": {"Object ID": 573779377, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92818964, 32.774652162, -79.92818964, 32.774652162], "geometry": {"coordinates": [-79.92818964, 32.774652162], "type": "Point"}, "id": "2496", "properties": {"Object ID": 573779389, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92895577, 32.774688584, -79.92895577, 32.774688584], "geometry": {"coordinates": [-79.92895577, 32.774688584], "type": "Point"}, "id": "2497", "properties": {"Object ID": 573779395, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9287278, 32.774778834, -79.9287278, 32.774778834], "geometry": {"coordinates": [-79.9287278, 32.774778834], "type": "Point"}, "id": "2498", "properties": {"Object ID": 573779400, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92823428, 32.774875039, -79.92823428, 32.774875039], "geometry": {"coordinates": [-79.92823428, 32.774875039], "type": "Point"}, "id": "2499", "properties": {"Object ID": 573779409, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92807351, 32.774924516, -79.92807351, 32.774924516], "geometry": {"coordinates": [-79.92807351, 32.774924516], "type": "Point"}, "id": "2500", "properties": {"Object ID": 573779411, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92794544, 32.779117807, -79.92794544, 32.779117807], "geometry": {"coordinates": [-79.92794544, 32.779117807], "type": "Point"}, "id": "2501", "properties": {"Object ID": 573779439, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92774785, 32.779257139, -79.92774785, 32.779257139], "geometry": {"coordinates": [-79.92774785, 32.779257139], "type": "Point"}, "id": "2502", "properties": {"Object ID": 573781646, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92828742, 32.778875554, -79.92828742, 32.778875554], "geometry": {"coordinates": [-79.92828742, 32.778875554], "type": "Point"}, "id": "2503", "properties": {"Object ID": 573782389, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92863034, 32.778887381, -79.92863034, 32.778887381], "geometry": {"coordinates": [-79.92863034, 32.778887381], "type": "Point"}, "id": "2504", "properties": {"Object ID": 573782399, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93042563, 32.773373042, -79.93042563, 32.773373042], "geometry": {"coordinates": [-79.93042563, 32.773373042], "type": "Point"}, "id": "2505", "properties": {"Object ID": 573782602, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92902039, 32.772244664, -79.92902039, 32.772244664], "geometry": {"coordinates": [-79.92902039, 32.772244664], "type": "Point"}, "id": "2506", "properties": {"Object ID": 573782423, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92934543, 32.772475941, -79.92934543, 32.772475941], "geometry": {"coordinates": [-79.92934543, 32.772475941], "type": "Point"}, "id": "2507", "properties": {"Object ID": 573782429, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92880246, 32.772462962, -79.92880246, 32.772462962], "geometry": {"coordinates": [-79.92880246, 32.772462962], "type": "Point"}, "id": "2508", "properties": {"Object ID": 573782431, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92814677, 32.772596301, -79.92814677, 32.772596301], "geometry": {"coordinates": [-79.92814677, 32.772596301], "type": "Point"}, "id": "2509", "properties": {"Object ID": 573782441, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92898265, 32.772758478, -79.92898265, 32.772758478], "geometry": {"coordinates": [-79.92898265, 32.772758478], "type": "Point"}, "id": "2510", "properties": {"Object ID": 573782447, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92917171, 32.772843413, -79.92917171, 32.772843413], "geometry": {"coordinates": [-79.92917171, 32.772843413], "type": "Point"}, "id": "2511", "properties": {"Object ID": 573782451, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92786767, 32.782034478, -79.92786767, 32.782034478], "geometry": {"coordinates": [-79.92786767, 32.782034478], "type": "Point"}, "id": "2512", "properties": {"Object ID": 573782466, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92786767, 32.782034478, -79.92786767, 32.782034478], "geometry": {"coordinates": [-79.92786767, 32.782034478], "type": "Point"}, "id": "2513", "properties": {"Object ID": 573782468, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92908918, 32.777743575, -79.92908918, 32.777743575], "geometry": {"coordinates": [-79.92908918, 32.777743575], "type": "Point"}, "id": "2514", "properties": {"Object ID": 573782482, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92885392, 32.777765527, -79.92885392, 32.777765527], "geometry": {"coordinates": [-79.92885392, 32.777765527], "type": "Point"}, "id": "2515", "properties": {"Object ID": 573782484, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92809579, 32.777866624, -79.92809579, 32.777866624], "geometry": {"coordinates": [-79.92809579, 32.777866624], "type": "Point"}, "id": "2516", "properties": {"Object ID": 573782487, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92893254, 32.777895202, -79.92893254, 32.777895202], "geometry": {"coordinates": [-79.92893254, 32.777895202], "type": "Point"}, "id": "2517", "properties": {"Object ID": 573782489, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92868565, 32.778256887, -79.92868565, 32.778256887], "geometry": {"coordinates": [-79.92868565, 32.778256887], "type": "Point"}, "id": "2518", "properties": {"Object ID": 573782501, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92885565, 32.778295964, -79.92885565, 32.778295964], "geometry": {"coordinates": [-79.92885565, 32.778295964], "type": "Point"}, "id": "2519", "properties": {"Object ID": 573782504, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92830824, 32.775131023, -79.92830824, 32.775131023], "geometry": {"coordinates": [-79.92830824, 32.775131023], "type": "Point"}, "id": "2520", "properties": {"Object ID": 573782520, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92850464, 32.775123069, -79.92850464, 32.775123069], "geometry": {"coordinates": [-79.92850464, 32.775123069], "type": "Point"}, "id": "2521", "properties": {"Object ID": 573782522, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92889412, 32.775479003, -79.92889412, 32.775479003], "geometry": {"coordinates": [-79.92889412, 32.775479003], "type": "Point"}, "id": "2522", "properties": {"Object ID": 573782530, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92850842, 32.775514706, -79.92850842, 32.775514706], "geometry": {"coordinates": [-79.92850842, 32.775514706], "type": "Point"}, "id": "2523", "properties": {"Object ID": 573782534, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92864798, 32.775946597, -79.92864798, 32.775946597], "geometry": {"coordinates": [-79.92864798, 32.775946597], "type": "Point"}, "id": "2524", "properties": {"Object ID": 573782550, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93009086, 32.772101145, -79.93009086, 32.772101145], "geometry": {"coordinates": [-79.93009086, 32.772101145], "type": "Point"}, "id": "2525", "properties": {"Object ID": 573782560, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92975895, 32.772182602, -79.92975895, 32.772182602], "geometry": {"coordinates": [-79.92975895, 32.772182602], "type": "Point"}, "id": "2526", "properties": {"Object ID": 573782564, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93022107, 32.77233941, -79.93022107, 32.77233941], "geometry": {"coordinates": [-79.93022107, 32.77233941], "type": "Point"}, "id": "2527", "properties": {"Object ID": 573782568, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93031273, 32.772567543, -79.93031273, 32.772567543], "geometry": {"coordinates": [-79.93031273, 32.772567543], "type": "Point"}, "id": "2528", "properties": {"Object ID": 573782576, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92961548, 32.772615132, -79.92961548, 32.772615132], "geometry": {"coordinates": [-79.92961548, 32.772615132], "type": "Point"}, "id": "2529", "properties": {"Object ID": 573782578, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92966376, 32.772740459, -79.92966376, 32.772740459], "geometry": {"coordinates": [-79.92966376, 32.772740459], "type": "Point"}, "id": "2530", "properties": {"Object ID": 573782580, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92967998, 32.772877862, -79.92967998, 32.772877862], "geometry": {"coordinates": [-79.92967998, 32.772877862], "type": "Point"}, "id": "2531", "properties": {"Object ID": 573782584, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92967489, 32.773362242, -79.92967489, 32.773362242], "geometry": {"coordinates": [-79.92967489, 32.773362242], "type": "Point"}, "id": "2532", "properties": {"Object ID": 573783138, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92967496, 32.773955555, -79.92967496, 32.773955555], "geometry": {"coordinates": [-79.92967496, 32.773955555], "type": "Point"}, "id": "2533", "properties": {"Object ID": 573783154, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92992314, 32.774264923, -79.92992314, 32.774264923], "geometry": {"coordinates": [-79.92992314, 32.774264923], "type": "Point"}, "id": "2534", "properties": {"Object ID": 573783160, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938964, 32.774757143, -79.92938964, 32.774757143], "geometry": {"coordinates": [-79.92938964, 32.774757143], "type": "Point"}, "id": "2535", "properties": {"Object ID": 573783197, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93107155, 32.778137639, -79.93107155, 32.778137639], "geometry": {"coordinates": [-79.93107155, 32.778137639], "type": "Point"}, "id": "2536", "properties": {"Object ID": 573783272, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93055145, 32.778294283, -79.93055145, 32.778294283], "geometry": {"coordinates": [-79.93055145, 32.778294283], "type": "Point"}, "id": "2537", "properties": {"Object ID": 573783276, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92951427, 32.778608724, -79.92951427, 32.778608724], "geometry": {"coordinates": [-79.92951427, 32.778608724], "type": "Point"}, "id": "2538", "properties": {"Object ID": 573783292, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93101175, 32.778931506, -79.93101175, 32.778931506], "geometry": {"coordinates": [-79.93101175, 32.778931506], "type": "Point"}, "id": "2539", "properties": {"Object ID": 573783303, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92999323, 32.778058437, -79.92999323, 32.778058437], "geometry": {"coordinates": [-79.92999323, 32.778058437], "type": "Point"}, "id": "2540", "properties": {"Object ID": 573783329, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93066166, 32.777577515, -79.93066166, 32.777577515], "geometry": {"coordinates": [-79.93066166, 32.777577515], "type": "Point"}, "id": "2541", "properties": {"Object ID": 573783331, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92949167, 32.777748403, -79.92949167, 32.777748403], "geometry": {"coordinates": [-79.92949167, 32.777748403], "type": "Point"}, "id": "2542", "properties": {"Object ID": 573783337, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93049453, 32.777679672, -79.93049453, 32.777679672], "geometry": {"coordinates": [-79.93049453, 32.777679672], "type": "Point"}, "id": "2543", "properties": {"Object ID": 573783343, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93002946, 32.771528793, -79.93002946, 32.771528793], "geometry": {"coordinates": [-79.93002946, 32.771528793], "type": "Point"}, "id": "2544", "properties": {"Object ID": 573783439, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93095318, 32.773119101, -79.93095318, 32.773119101], "geometry": {"coordinates": [-79.93095318, 32.773119101], "type": "Point"}, "id": "2545", "properties": {"Object ID": 573785649, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93104315, 32.773317462, -79.93104315, 32.773317462], "geometry": {"coordinates": [-79.93104315, 32.773317462], "type": "Point"}, "id": "2546", "properties": {"Object ID": 573785661, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93087598, 32.773660655, -79.93087598, 32.773660655], "geometry": {"coordinates": [-79.93087598, 32.773660655], "type": "Point"}, "id": "2547", "properties": {"Object ID": 573785683, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92579081, 32.776179259, -79.92579081, 32.776179259], "geometry": {"coordinates": [-79.92579081, 32.776179259], "type": "Point"}, "id": "2548", "properties": {"Object ID": 573818741, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92647502, 32.776540668, -79.92647502, 32.776540668], "geometry": {"coordinates": [-79.92647502, 32.776540668], "type": "Point"}, "id": "2549", "properties": {"Object ID": 573818742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9269, 32.7765165, -79.9269, 32.7765165], "geometry": {"coordinates": [-79.9269, 32.7765165], "type": "Point"}, "id": "2550", "properties": {"Object ID": 573818744, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92746902, 32.777122924, -79.92746902, 32.777122924], "geometry": {"coordinates": [-79.92746902, 32.777122924], "type": "Point"}, "id": "2551", "properties": {"Object ID": 573827134, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92780251, 32.777958909, -79.92780251, 32.777958909], "geometry": {"coordinates": [-79.92780251, 32.777958909], "type": "Point"}, "id": "2552", "properties": {"Object ID": 573827146, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92943087, 32.776830669, -79.92943087, 32.776830669], "geometry": {"coordinates": [-79.92943087, 32.776830669], "type": "Point"}, "id": "2553", "properties": {"Object ID": 573827737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92972682, 32.776806657, -79.92972682, 32.776806657], "geometry": {"coordinates": [-79.92972682, 32.776806657], "type": "Point"}, "id": "2554", "properties": {"Object ID": 573827742, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92972682, 32.776806657, -79.92972682, 32.776806657], "geometry": {"coordinates": [-79.92972682, 32.776806657], "type": "Point"}, "id": "2555", "properties": {"Object ID": 573827746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93017988, 32.776819591, -79.93017988, 32.776819591], "geometry": {"coordinates": [-79.93017988, 32.776819591], "type": "Point"}, "id": "2556", "properties": {"Object ID": 573827752, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92969169, 32.777216102, -79.92969169, 32.777216102], "geometry": {"coordinates": [-79.92969169, 32.777216102], "type": "Point"}, "id": "2557", "properties": {"Object ID": 573827760, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92835611, 32.78254412, -79.92835611, 32.78254412], "geometry": {"coordinates": [-79.92835611, 32.78254412], "type": "Point"}, "id": "2558", "properties": {"Object ID": 573827778, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92919722, 32.782756168, -79.92919722, 32.782756168], "geometry": {"coordinates": [-79.92919722, 32.782756168], "type": "Point"}, "id": "2559", "properties": {"Object ID": 573827780, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9288933, 32.783423676, -79.9288933, 32.783423676], "geometry": {"coordinates": [-79.9288933, 32.783423676], "type": "Point"}, "id": "2560", "properties": {"Object ID": 573827802, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93040738, 32.781275186, -79.93040738, 32.781275186], "geometry": {"coordinates": [-79.93040738, 32.781275186], "type": "Point"}, "id": "2561", "properties": {"Object ID": 573831836, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93108959, 32.775201945, -79.93108959, 32.775201945], "geometry": {"coordinates": [-79.93108959, 32.775201945], "type": "Point"}, "id": "2562", "properties": {"Object ID": 573831707, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93110512, 32.775296725, -79.93110512, 32.775296725], "geometry": {"coordinates": [-79.93110512, 32.775296725], "type": "Point"}, "id": "2563", "properties": {"Object ID": 573831709, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93119518, 32.775488774, -79.93119518, 32.775488774], "geometry": {"coordinates": [-79.93119518, 32.775488774], "type": "Point"}, "id": "2564", "properties": {"Object ID": 573831721, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93119518, 32.775488774, -79.93119518, 32.775488774], "geometry": {"coordinates": [-79.93119518, 32.775488774], "type": "Point"}, "id": "2565", "properties": {"Object ID": 573831723, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93040738, 32.781275186, -79.93040738, 32.781275186], "geometry": {"coordinates": [-79.93040738, 32.781275186], "type": "Point"}, "id": "2566", "properties": {"Object ID": 573831827, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92682845, 32.782317397, -79.92682845, 32.782317397], "geometry": {"coordinates": [-79.92682845, 32.782317397], "type": "Point"}, "id": "2567", "properties": {"Object ID": 574267596, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92712901, 32.774181965, -79.92712901, 32.774181965], "geometry": {"coordinates": [-79.92712901, 32.774181965], "type": "Point"}, "id": "2568", "properties": {"Object ID": 574267658, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92712901, 32.774181965, -79.92712901, 32.774181965], "geometry": {"coordinates": [-79.92712901, 32.774181965], "type": "Point"}, "id": "2569", "properties": {"Object ID": 574267662, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92564955, 32.774510932, -79.92564955, 32.774510932], "geometry": {"coordinates": [-79.92564955, 32.774510932], "type": "Point"}, "id": "2570", "properties": {"Object ID": 574267664, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92671964, 32.774694393, -79.92671964, 32.774694393], "geometry": {"coordinates": [-79.92671964, 32.774694393], "type": "Point"}, "id": "2571", "properties": {"Object ID": 574267667, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92785069, 32.775176339, -79.92785069, 32.775176339], "geometry": {"coordinates": [-79.92785069, 32.775176339], "type": "Point"}, "id": "2572", "properties": {"Object ID": 574267733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92773388, 32.775366131, -79.92773388, 32.775366131], "geometry": {"coordinates": [-79.92773388, 32.775366131], "type": "Point"}, "id": "2573", "properties": {"Object ID": 574267741, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92746112, 32.775528974, -79.92746112, 32.775528974], "geometry": {"coordinates": [-79.92746112, 32.775528974], "type": "Point"}, "id": "2574", "properties": {"Object ID": 574268013, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92859461, 32.780244674, -79.92859461, 32.780244674], "geometry": {"coordinates": [-79.92859461, 32.780244674], "type": "Point"}, "id": "2575", "properties": {"Object ID": 574268035, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9291748, 32.780046684, -79.9291748, 32.780046684], "geometry": {"coordinates": [-79.9291748, 32.780046684], "type": "Point"}, "id": "2576", "properties": {"Object ID": 574268047, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93103707, 32.772525209, -79.93103707, 32.772525209], "geometry": {"coordinates": [-79.93103707, 32.772525209], "type": "Point"}, "id": "2577", "properties": {"Object ID": 574268245, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9256555, 32.7766865, -79.9256555, 32.7766865], "geometry": {"coordinates": [-79.9256555, 32.7766865], "type": "Point"}, "id": "2578", "properties": {"Object ID": 574346711, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92591323, 32.776513393, -79.92591323, 32.776513393], "geometry": {"coordinates": [-79.92591323, 32.776513393], "type": "Point"}, "id": "2579", "properties": {"Object ID": 574346712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92568075, 32.776557065, -79.92568075, 32.776557065], "geometry": {"coordinates": [-79.92568075, 32.776557065], "type": "Point"}, "id": "2580", "properties": {"Object ID": 574346715, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92869731, 32.780981693, -79.92869731, 32.780981693], "geometry": {"coordinates": [-79.92869731, 32.780981693], "type": "Point"}, "id": "2581", "properties": {"Object ID": 574346727, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92961524, 32.774941576, -79.92961524, 32.774941576], "geometry": {"coordinates": [-79.92961524, 32.774941576], "type": "Point"}, "id": "2582", "properties": {"Object ID": 574346730, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007543, 32.774921478, -79.93007543, 32.774921478], "geometry": {"coordinates": [-79.93007543, 32.774921478], "type": "Point"}, "id": "2583", "properties": {"Object ID": 574346731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93060147, 32.775136919, -79.93060147, 32.775136919], "geometry": {"coordinates": [-79.93060147, 32.775136919], "type": "Point"}, "id": "2584", "properties": {"Object ID": 574346739, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93054012, 32.775380171, -79.93054012, 32.775380171], "geometry": {"coordinates": [-79.93054012, 32.775380171], "type": "Point"}, "id": "2585", "properties": {"Object ID": 574346743, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9306795, 32.775520193, -79.9306795, 32.775520193], "geometry": {"coordinates": [-79.9306795, 32.775520193], "type": "Point"}, "id": "2586", "properties": {"Object ID": 574346746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92978274, 32.775564771, -79.92978274, 32.775564771], "geometry": {"coordinates": [-79.92978274, 32.775564771], "type": "Point"}, "id": "2587", "properties": {"Object ID": 574346747, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92993701, 32.775607128, -79.92993701, 32.775607128], "geometry": {"coordinates": [-79.92993701, 32.775607128], "type": "Point"}, "id": "2588", "properties": {"Object ID": 574346748, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92803347, 32.77943033, -79.92803347, 32.77943033], "geometry": {"coordinates": [-79.92803347, 32.77943033], "type": "Point"}, "id": "2589", "properties": {"Object ID": 574371448, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92803347, 32.77943033, -79.92803347, 32.77943033], "geometry": {"coordinates": [-79.92803347, 32.77943033], "type": "Point"}, "id": "2590", "properties": {"Object ID": 574371449, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9276305, 32.779852059, -79.9276305, 32.779852059], "geometry": {"coordinates": [-79.9276305, 32.779852059], "type": "Point"}, "id": "2591", "properties": {"Object ID": 574371450, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673038, 32.775795562, -79.92673038, 32.775795562], "geometry": {"coordinates": [-79.92673038, 32.775795562], "type": "Point"}, "id": "2592", "properties": {"Object ID": 574372379, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "2593", "properties": {"Object ID": 574372399, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "2594", "properties": {"Object ID": 574372400, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "2595", "properties": {"Object ID": 574372401, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "2596", "properties": {"Object ID": 574372404, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92772042, 32.780506281, -79.92772042, 32.780506281], "geometry": {"coordinates": [-79.92772042, 32.780506281], "type": "Point"}, "id": "2597", "properties": {"Object ID": 574372406, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92813633, 32.780414773, -79.92813633, 32.780414773], "geometry": {"coordinates": [-79.92813633, 32.780414773], "type": "Point"}, "id": "2598", "properties": {"Object ID": 574372407, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9282403, 32.780783377, -79.9282403, 32.780783377], "geometry": {"coordinates": [-79.9282403, 32.780783377], "type": "Point"}, "id": "2599", "properties": {"Object ID": 574372413, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9282403, 32.780783377, -79.9282403, 32.780783377], "geometry": {"coordinates": [-79.9282403, 32.780783377], "type": "Point"}, "id": "2600", "properties": {"Object ID": 574372415, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92902475, 32.776264226, -79.92902475, 32.776264226], "geometry": {"coordinates": [-79.92902475, 32.776264226], "type": "Point"}, "id": "2601", "properties": {"Object ID": 574372442, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92902475, 32.776264226, -79.92902475, 32.776264226], "geometry": {"coordinates": [-79.92902475, 32.776264226], "type": "Point"}, "id": "2602", "properties": {"Object ID": 574372443, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92900036, 32.776107722, -79.92900036, 32.776107722], "geometry": {"coordinates": [-79.92900036, 32.776107722], "type": "Point"}, "id": "2603", "properties": {"Object ID": 574372446, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92830278, 32.776202619, -79.92830278, 32.776202619], "geometry": {"coordinates": [-79.92830278, 32.776202619], "type": "Point"}, "id": "2604", "properties": {"Object ID": 574372452, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92849911, 32.776440239, -79.92849911, 32.776440239], "geometry": {"coordinates": [-79.92849911, 32.776440239], "type": "Point"}, "id": "2605", "properties": {"Object ID": 574372459, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92746316, 32.776524315, -79.92746316, 32.776524315], "geometry": {"coordinates": [-79.92746316, 32.776524315], "type": "Point"}, "id": "2606", "properties": {"Object ID": 574372462, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92834043, 32.776554351, -79.92834043, 32.776554351], "geometry": {"coordinates": [-79.92834043, 32.776554351], "type": "Point"}, "id": "2607", "properties": {"Object ID": 574372465, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92881546, 32.776447296, -79.92881546, 32.776447296], "geometry": {"coordinates": [-79.92881546, 32.776447296], "type": "Point"}, "id": "2608", "properties": {"Object ID": 574372472, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93005346, 32.77625511, -79.93005346, 32.77625511], "geometry": {"coordinates": [-79.93005346, 32.77625511], "type": "Point"}, "id": "2609", "properties": {"Object ID": 574372525, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92936348, 32.776171244, -79.92936348, 32.776171244], "geometry": {"coordinates": [-79.92936348, 32.776171244], "type": "Point"}, "id": "2610", "properties": {"Object ID": 574372539, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92938805, 32.776236693, -79.92938805, 32.776236693], "geometry": {"coordinates": [-79.92938805, 32.776236693], "type": "Point"}, "id": "2611", "properties": {"Object ID": 574372545, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92979255, 32.776387148, -79.92979255, 32.776387148], "geometry": {"coordinates": [-79.92979255, 32.776387148], "type": "Point"}, "id": "2612", "properties": {"Object ID": 574372555, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92958905, 32.776381714, -79.92958905, 32.776381714], "geometry": {"coordinates": [-79.92958905, 32.776381714], "type": "Point"}, "id": "2613", "properties": {"Object ID": 574372565, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93056718, 32.770963873, -79.93056718, 32.770963873], "geometry": {"coordinates": [-79.93056718, 32.770963873], "type": "Point"}, "id": "2614", "properties": {"Object ID": 574372705, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92571397, 32.777693811, -79.92571397, 32.777693811], "geometry": {"coordinates": [-79.92571397, 32.777693811], "type": "Point"}, "id": "2615", "properties": {"Object ID": 574421605, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92661232, 32.775353353, -79.92661232, 32.775353353], "geometry": {"coordinates": [-79.92661232, 32.775353353], "type": "Point"}, "id": "2616", "properties": {"Object ID": 574421616, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92661232, 32.775353353, -79.92661232, 32.775353353], "geometry": {"coordinates": [-79.92661232, 32.775353353], "type": "Point"}, "id": "2617", "properties": {"Object ID": 574421618, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92627211, 32.775566685, -79.92627211, 32.775566685], "geometry": {"coordinates": [-79.92627211, 32.775566685], "type": "Point"}, "id": "2618", "properties": {"Object ID": 574421620, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92885302, 32.77702994, -79.92885302, 32.77702994], "geometry": {"coordinates": [-79.92885302, 32.77702994], "type": "Point"}, "id": "2619", "properties": {"Object ID": 574421665, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92846361, 32.776973025, -79.92846361, 32.776973025], "geometry": {"coordinates": [-79.92846361, 32.776973025], "type": "Point"}, "id": "2620", "properties": {"Object ID": 574421687, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9290929, 32.777519764, -79.9290929, 32.777519764], "geometry": {"coordinates": [-79.9290929, 32.777519764], "type": "Point"}, "id": "2621", "properties": {"Object ID": 574421696, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9290929, 32.777519764, -79.9290929, 32.777519764], "geometry": {"coordinates": [-79.9290929, 32.777519764], "type": "Point"}, "id": "2622", "properties": {"Object ID": 574421698, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92801597, 32.777036402, -79.92801597, 32.777036402], "geometry": {"coordinates": [-79.92801597, 32.777036402], "type": "Point"}, "id": "2623", "properties": {"Object ID": 574421706, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92801597, 32.777036402, -79.92801597, 32.777036402], "geometry": {"coordinates": [-79.92801597, 32.777036402], "type": "Point"}, "id": "2624", "properties": {"Object ID": 574421710, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9266425, 32.7772185, -79.9266425, 32.7772185], "geometry": {"coordinates": [-79.9266425, 32.7772185], "type": "Point"}, "id": "2625", "properties": {"Object ID": 574431296, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92646291, 32.77728981, -79.92646291, 32.77728981], "geometry": {"coordinates": [-79.92646291, 32.77728981], "type": "Point"}, "id": "2626", "properties": {"Object ID": 574431300, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92646291, 32.77728981, -79.92646291, 32.77728981], "geometry": {"coordinates": [-79.92646291, 32.77728981], "type": "Point"}, "id": "2627", "properties": {"Object ID": 574431302, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92857452, 32.78132147, -79.92857452, 32.78132147], "geometry": {"coordinates": [-79.92857452, 32.78132147], "type": "Point"}, "id": "2628", "properties": {"Object ID": 574431320, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92592791, 32.779129789, -79.92592791, 32.779129789], "geometry": {"coordinates": [-79.92592791, 32.779129789], "type": "Point"}, "id": "2629", "properties": {"Object ID": 574435919, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92692192, 32.77999463, -79.92692192, 32.77999463], "geometry": {"coordinates": [-79.92692192, 32.77999463], "type": "Point"}, "id": "2630", "properties": {"Object ID": 574435932, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92644898, 32.780051895, -79.92644898, 32.780051895], "geometry": {"coordinates": [-79.92644898, 32.780051895], "type": "Point"}, "id": "2631", "properties": {"Object ID": 574435936, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92644898, 32.780051895, -79.92644898, 32.780051895], "geometry": {"coordinates": [-79.92644898, 32.780051895], "type": "Point"}, "id": "2632", "properties": {"Object ID": 574435940, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92606469, 32.77972236, -79.92606469, 32.77972236], "geometry": {"coordinates": [-79.92606469, 32.77972236], "type": "Point"}, "id": "2633", "properties": {"Object ID": 574435942, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92606469, 32.77972236, -79.92606469, 32.77972236], "geometry": {"coordinates": [-79.92606469, 32.77972236], "type": "Point"}, "id": "2634", "properties": {"Object ID": 574435944, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92640322, 32.776823374, -79.92640322, 32.776823374], "geometry": {"coordinates": [-79.92640322, 32.776823374], "type": "Point"}, "id": "2635", "properties": {"Object ID": 574437145, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92686154, 32.776849372, -79.92686154, 32.776849372], "geometry": {"coordinates": [-79.92686154, 32.776849372], "type": "Point"}, "id": "2636", "properties": {"Object ID": 574437147, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92686154, 32.776849372, -79.92686154, 32.776849372], "geometry": {"coordinates": [-79.92686154, 32.776849372], "type": "Point"}, "id": "2637", "properties": {"Object ID": 574437149, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92912588, 32.779650912, -79.92912588, 32.779650912], "geometry": {"coordinates": [-79.92912588, 32.779650912], "type": "Point"}, "id": "2638", "properties": {"Object ID": 574446475, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92643612, 32.780279013, -79.92643612, 32.780279013], "geometry": {"coordinates": [-79.92643612, 32.780279013], "type": "Point"}, "id": "2639", "properties": {"Object ID": 574451294, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92643612, 32.780279013, -79.92643612, 32.780279013], "geometry": {"coordinates": [-79.92643612, 32.780279013], "type": "Point"}, "id": "2640", "properties": {"Object ID": 574451296, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "2641", "properties": {"Object ID": 574451476, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93007513, 32.780377243, -79.93007513, 32.780377243], "geometry": {"coordinates": [-79.93007513, 32.780377243], "type": "Point"}, "id": "2642", "properties": {"Object ID": 574451482, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93057458, 32.779847015, -79.93057458, 32.779847015], "geometry": {"coordinates": [-79.93057458, 32.779847015], "type": "Point"}, "id": "2643", "properties": {"Object ID": 574451484, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93057458, 32.779847015, -79.93057458, 32.779847015], "geometry": {"coordinates": [-79.93057458, 32.779847015], "type": "Point"}, "id": "2644", "properties": {"Object ID": 574451486, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93057458, 32.779847015, -79.93057458, 32.779847015], "geometry": {"coordinates": [-79.93057458, 32.779847015], "type": "Point"}, "id": "2645", "properties": {"Object ID": 574451488, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93057458, 32.779847015, -79.93057458, 32.779847015], "geometry": {"coordinates": [-79.93057458, 32.779847015], "type": "Point"}, "id": "2646", "properties": {"Object ID": 574451489, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93092389, 32.780416852, -79.93092389, 32.780416852], "geometry": {"coordinates": [-79.93092389, 32.780416852], "type": "Point"}, "id": "2647", "properties": {"Object ID": 574451497, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93087903, 32.780089433, -79.93087903, 32.780089433], "geometry": {"coordinates": [-79.93087903, 32.780089433], "type": "Point"}, "id": "2648", "properties": {"Object ID": 574451498, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9265575, 32.7779802, -79.9265575, 32.7779802], "geometry": {"coordinates": [-79.9265575, 32.7779802], "type": "Point"}, "id": "2649", "properties": {"Object ID": 574453712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9265575, 32.7779802, -79.9265575, 32.7779802], "geometry": {"coordinates": [-79.9265575, 32.7779802], "type": "Point"}, "id": "2650", "properties": {"Object ID": 574453720, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93069936, 32.78185867, -79.93069936, 32.78185867], "geometry": {"coordinates": [-79.93069936, 32.78185867], "type": "Point"}, "id": "2651", "properties": {"Object ID": 574454475, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93069936, 32.78185867, -79.93069936, 32.78185867], "geometry": {"coordinates": [-79.93069936, 32.78185867], "type": "Point"}, "id": "2652", "properties": {"Object ID": 574454477, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92675798, 32.779623429, -79.92675798, 32.779623429], "geometry": {"coordinates": [-79.92675798, 32.779623429], "type": "Point"}, "id": "2653", "properties": {"Object ID": 574455177, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92675798, 32.779623429, -79.92675798, 32.779623429], "geometry": {"coordinates": [-79.92675798, 32.779623429], "type": "Point"}, "id": "2654", "properties": {"Object ID": 574455180, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92452807, 32.775253585, -79.92452807, 32.775253585], "geometry": {"coordinates": [-79.92452807, 32.775253585], "type": "Point"}, "id": "2655", "properties": {"Object ID": 574457240, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92706811, 32.773498108, -79.92706811, 32.773498108], "geometry": {"coordinates": [-79.92706811, 32.773498108], "type": "Point"}, "id": "2656", "properties": {"Object ID": 574457618, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93014784, 32.782312749, -79.93014784, 32.782312749], "geometry": {"coordinates": [-79.93014784, 32.782312749], "type": "Point"}, "id": "2657", "properties": {"Object ID": 574461005, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93015454, 32.781828328, -79.93015454, 32.781828328], "geometry": {"coordinates": [-79.93015454, 32.781828328], "type": "Point"}, "id": "2658", "properties": {"Object ID": 574461007, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92996582, 32.778916309, -79.92996582, 32.778916309], "geometry": {"coordinates": [-79.92996582, 32.778916309], "type": "Point"}, "id": "2659", "properties": {"Object ID": 574461027, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92820274, 32.778662139, -79.92820274, 32.778662139], "geometry": {"coordinates": [-79.92820274, 32.778662139], "type": "Point"}, "id": "2660", "properties": {"Object ID": 574461035, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9297417, 32.776818232, -79.9297417, 32.776818232], "geometry": {"coordinates": [-79.9297417, 32.776818232], "type": "Point"}, "id": "2661", "properties": {"Object ID": 574461058, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9297417, 32.776818232, -79.9297417, 32.776818232], "geometry": {"coordinates": [-79.9297417, 32.776818232], "type": "Point"}, "id": "2662", "properties": {"Object ID": 574461060, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9297417, 32.776818232, -79.9297417, 32.776818232], "geometry": {"coordinates": [-79.9297417, 32.776818232], "type": "Point"}, "id": "2663", "properties": {"Object ID": 574461061, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9297417, 32.776818232, -79.9297417, 32.776818232], "geometry": {"coordinates": [-79.9297417, 32.776818232], "type": "Point"}, "id": "2664", "properties": {"Object ID": 574461067, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92799481, 32.777083557, -79.92799481, 32.777083557], "geometry": {"coordinates": [-79.92799481, 32.777083557], "type": "Point"}, "id": "2665", "properties": {"Object ID": 574461087, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92799481, 32.777083557, -79.92799481, 32.777083557], "geometry": {"coordinates": [-79.92799481, 32.777083557], "type": "Point"}, "id": "2666", "properties": {"Object ID": 574461089, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9260343, 32.781508757, -79.9260343, 32.781508757], "geometry": {"coordinates": [-79.9260343, 32.781508757], "type": "Point"}, "id": "2667", "properties": {"Object ID": 574461283, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92681259, 32.780233741, -79.92681259, 32.780233741], "geometry": {"coordinates": [-79.92681259, 32.780233741], "type": "Point"}, "id": "2668", "properties": {"Object ID": 574461291, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673511, 32.779500111, -79.92673511, 32.779500111], "geometry": {"coordinates": [-79.92673511, 32.779500111], "type": "Point"}, "id": "2669", "properties": {"Object ID": 574461299, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673454, 32.779105389, -79.92673454, 32.779105389], "geometry": {"coordinates": [-79.92673454, 32.779105389], "type": "Point"}, "id": "2670", "properties": {"Object ID": 574461302, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92673454, 32.779105389, -79.92673454, 32.779105389], "geometry": {"coordinates": [-79.92673454, 32.779105389], "type": "Point"}, "id": "2671", "properties": {"Object ID": 574461303, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92679108, 32.778909003, -79.92679108, 32.778909003], "geometry": {"coordinates": [-79.92679108, 32.778909003], "type": "Point"}, "id": "2672", "properties": {"Object ID": 574461304, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92639653, 32.779118318, -79.92639653, 32.779118318], "geometry": {"coordinates": [-79.92639653, 32.779118318], "type": "Point"}, "id": "2673", "properties": {"Object ID": 574461305, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92670704, 32.778289721, -79.92670704, 32.778289721], "geometry": {"coordinates": [-79.92670704, 32.778289721], "type": "Point"}, "id": "2674", "properties": {"Object ID": 574461307, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92639653, 32.779118318, -79.92639653, 32.779118318], "geometry": {"coordinates": [-79.92639653, 32.779118318], "type": "Point"}, "id": "2675", "properties": {"Object ID": 574461309, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92724476, 32.777075418, -79.92724476, 32.777075418], "geometry": {"coordinates": [-79.92724476, 32.777075418], "type": "Point"}, "id": "2676", "properties": {"Object ID": 574461310, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92732872, 32.776630152, -79.92732872, 32.776630152], "geometry": {"coordinates": [-79.92732872, 32.776630152], "type": "Point"}, "id": "2677", "properties": {"Object ID": 574461313, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93024242, 32.773552267, -79.93024242, 32.773552267], "geometry": {"coordinates": [-79.93024242, 32.773552267], "type": "Point"}, "id": "2678", "properties": {"Object ID": 574486905, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93004468, 32.771907241, -79.93004468, 32.771907241], "geometry": {"coordinates": [-79.93004468, 32.771907241], "type": "Point"}, "id": "2679", "properties": {"Object ID": 574486933, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93068697, 32.771232663, -79.93068697, 32.771232663], "geometry": {"coordinates": [-79.93068697, 32.771232663], "type": "Point"}, "id": "2680", "properties": {"Object ID": 574486935, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93068697, 32.771232663, -79.93068697, 32.771232663], "geometry": {"coordinates": [-79.93068697, 32.771232663], "type": "Point"}, "id": "2681", "properties": {"Object ID": 574486937, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "2682", "properties": {"Object ID": 574487017, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "2683", "properties": {"Object ID": 574487018, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "2684", "properties": {"Object ID": 574487024, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "2685", "properties": {"Object ID": 574487025, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93029798, 32.779364989, -79.93029798, 32.779364989], "geometry": {"coordinates": [-79.93029798, 32.779364989], "type": "Point"}, "id": "2686", "properties": {"Object ID": 574487029, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93065469, 32.777953032, -79.93065469, 32.777953032], "geometry": {"coordinates": [-79.93065469, 32.777953032], "type": "Point"}, "id": "2687", "properties": {"Object ID": 574487101, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93042173, 32.777686122, -79.93042173, 32.777686122], "geometry": {"coordinates": [-79.93042173, 32.777686122], "type": "Point"}, "id": "2688", "properties": {"Object ID": 574487102, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "2689", "properties": {"Object ID": 574488427, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92997893, 32.782866752, -79.92997893, 32.782866752], "geometry": {"coordinates": [-79.92997893, 32.782866752], "type": "Point"}, "id": "2690", "properties": {"Object ID": 574488429, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92918243, 32.782971324, -79.92918243, 32.782971324], "geometry": {"coordinates": [-79.92918243, 32.782971324], "type": "Point"}, "id": "2691", "properties": {"Object ID": 574488651, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2692", "properties": {"Object ID": 574488654, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2693", "properties": {"Object ID": 574488657, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2694", "properties": {"Object ID": 574488660, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2695", "properties": {"Object ID": 574488663, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2696", "properties": {"Object ID": 574488666, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2697", "properties": {"Object ID": 574488669, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2698", "properties": {"Object ID": 574488670, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9283649, 32.782859211, -79.9283649, 32.782859211], "geometry": {"coordinates": [-79.9283649, 32.782859211], "type": "Point"}, "id": "2699", "properties": {"Object ID": 574488673, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92831985, 32.778797576, -79.92831985, 32.778797576], "geometry": {"coordinates": [-79.92831985, 32.778797576], "type": "Point"}, "id": "2700", "properties": {"Object ID": 574488681, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92879983, 32.778170178, -79.92879983, 32.778170178], "geometry": {"coordinates": [-79.92879983, 32.778170178], "type": "Point"}, "id": "2701", "properties": {"Object ID": 574488690, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92879983, 32.778170178, -79.92879983, 32.778170178], "geometry": {"coordinates": [-79.92879983, 32.778170178], "type": "Point"}, "id": "2702", "properties": {"Object ID": 574488692, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "2703", "properties": {"Object ID": 574488701, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92587144, 32.779767241, -79.92587144, 32.779767241], "geometry": {"coordinates": [-79.92587144, 32.779767241], "type": "Point"}, "id": "2704", "properties": {"Object ID": 574488702, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "2705", "properties": {"Object ID": 574488710, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "2706", "properties": {"Object ID": 574488712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "2707", "properties": {"Object ID": 574488713, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "2708", "properties": {"Object ID": 574488715, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765713, 32.77843687, -79.92765713, 32.77843687], "geometry": {"coordinates": [-79.92765713, 32.77843687], "type": "Point"}, "id": "2709", "properties": {"Object ID": 574488717, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2710", "properties": {"Object ID": 574488733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2711", "properties": {"Object ID": 574488737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2712", "properties": {"Object ID": 574488738, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2713", "properties": {"Object ID": 574488747, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2714", "properties": {"Object ID": 574488748, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92582625, 32.778141818, -79.92582625, 32.778141818], "geometry": {"coordinates": [-79.92582625, 32.778141818], "type": "Point"}, "id": "2715", "properties": {"Object ID": 574488757, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92829906, 32.777827577, -79.92829906, 32.777827577], "geometry": {"coordinates": [-79.92829906, 32.777827577], "type": "Point"}, "id": "2716", "properties": {"Object ID": 574488766, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92981063, 32.776090404, -79.92981063, 32.776090404], "geometry": {"coordinates": [-79.92981063, 32.776090404], "type": "Point"}, "id": "2717", "properties": {"Object ID": 574488767, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92903083, 32.776368402, -79.92903083, 32.776368402], "geometry": {"coordinates": [-79.92903083, 32.776368402], "type": "Point"}, "id": "2718", "properties": {"Object ID": 574488768, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "2719", "properties": {"Object ID": 574488794, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "2720", "properties": {"Object ID": 574488796, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "2721", "properties": {"Object ID": 574488801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92736548, 32.776407318, -79.92736548, 32.776407318], "geometry": {"coordinates": [-79.92736548, 32.776407318], "type": "Point"}, "id": "2722", "properties": {"Object ID": 574488803, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92765607, 32.776056354, -79.92765607, 32.776056354], "geometry": {"coordinates": [-79.92765607, 32.776056354], "type": "Point"}, "id": "2723", "properties": {"Object ID": 574488807, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92740528, 32.776150334, -79.92740528, 32.776150334], "geometry": {"coordinates": [-79.92740528, 32.776150334], "type": "Point"}, "id": "2724", "properties": {"Object ID": 574488811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92600798, 32.776527728, -79.92600798, 32.776527728], "geometry": {"coordinates": [-79.92600798, 32.776527728], "type": "Point"}, "id": "2725", "properties": {"Object ID": 574488813, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9267068, 32.776164736, -79.9267068, 32.776164736], "geometry": {"coordinates": [-79.9267068, 32.776164736], "type": "Point"}, "id": "2726", "properties": {"Object ID": 574488820, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92926142, 32.774986386, -79.92926142, 32.774986386], "geometry": {"coordinates": [-79.92926142, 32.774986386], "type": "Point"}, "id": "2727", "properties": {"Object ID": 574488835, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9292151, 32.774636679, -79.9292151, 32.774636679], "geometry": {"coordinates": [-79.9292151, 32.774636679], "type": "Point"}, "id": "2728", "properties": {"Object ID": 574488836, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9275034, 32.775239754, -79.9275034, 32.775239754], "geometry": {"coordinates": [-79.9275034, 32.775239754], "type": "Point"}, "id": "2729", "properties": {"Object ID": 574488845, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92743993, 32.774961713, -79.92743993, 32.774961713], "geometry": {"coordinates": [-79.92743993, 32.774961713], "type": "Point"}, "id": "2730", "properties": {"Object ID": 574488849, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92676724, 32.775533547, -79.92676724, 32.775533547], "geometry": {"coordinates": [-79.92676724, 32.775533547], "type": "Point"}, "id": "2731", "properties": {"Object ID": 574488850, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92636297, 32.775405273, -79.92636297, 32.775405273], "geometry": {"coordinates": [-79.92636297, 32.775405273], "type": "Point"}, "id": "2732", "properties": {"Object ID": 574488858, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92689914, 32.774589085, -79.92689914, 32.774589085], "geometry": {"coordinates": [-79.92689914, 32.774589085], "type": "Point"}, "id": "2733", "properties": {"Object ID": 574488860, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92787671, 32.774030712, -79.92787671, 32.774030712], "geometry": {"coordinates": [-79.92787671, 32.774030712], "type": "Point"}, "id": "2734", "properties": {"Object ID": 574488863, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92766193, 32.773486846, -79.92766193, 32.773486846], "geometry": {"coordinates": [-79.92766193, 32.773486846], "type": "Point"}, "id": "2735", "properties": {"Object ID": 574488866, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.92766193, 32.773486846, -79.92766193, 32.773486846], "geometry": {"coordinates": [-79.92766193, 32.773486846], "type": "Point"}, "id": "2736", "properties": {"Object ID": 574488868, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "2737", "properties": {"Object ID": 574447802, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93434929, 32.780741534, -79.93434929, 32.780741534], "geometry": {"coordinates": [-79.93434929, 32.780741534], "type": "Point"}, "id": "2738", "properties": {"Object ID": 574447806, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93505067, 32.780686378, -79.93505067, 32.780686378], "geometry": {"coordinates": [-79.93505067, 32.780686378], "type": "Point"}, "id": "2739", "properties": {"Object ID": 574455489, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93410556, 32.774199976, -79.93410556, 32.774199976], "geometry": {"coordinates": [-79.93410556, 32.774199976], "type": "Point"}, "id": "2740", "properties": {"Object ID": 573785968, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93427154, 32.772868061, -79.93427154, 32.772868061], "geometry": {"coordinates": [-79.93427154, 32.772868061], "type": "Point"}, "id": "2741", "properties": {"Object ID": 573789001, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93728131, 32.773368692, -79.93728131, 32.773368692], "geometry": {"coordinates": [-79.93728131, 32.773368692], "type": "Point"}, "id": "2742", "properties": {"Object ID": 573789240, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93726916, 32.773460033, -79.93726916, 32.773460033], "geometry": {"coordinates": [-79.93726916, 32.773460033], "type": "Point"}, "id": "2743", "properties": {"Object ID": 573789242, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93791915, 32.773579223, -79.93791915, 32.773579223], "geometry": {"coordinates": [-79.93791915, 32.773579223], "type": "Point"}, "id": "2744", "properties": {"Object ID": 573789245, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93750664, 32.773792134, -79.93750664, 32.773792134], "geometry": {"coordinates": [-79.93750664, 32.773792134], "type": "Point"}, "id": "2745", "properties": {"Object ID": 573789249, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93739442, 32.77381008, -79.93739442, 32.77381008], "geometry": {"coordinates": [-79.93739442, 32.77381008], "type": "Point"}, "id": "2746", "properties": {"Object ID": 573789250, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93480568, 32.772235636, -79.93480568, 32.772235636], "geometry": {"coordinates": [-79.93480568, 32.772235636], "type": "Point"}, "id": "2747", "properties": {"Object ID": 573789011, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.934359, 32.772366814, -79.934359, 32.772366814], "geometry": {"coordinates": [-79.934359, 32.772366814], "type": "Point"}, "id": "2748", "properties": {"Object ID": 573789012, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542958, 32.772706991, -79.93542958, 32.772706991], "geometry": {"coordinates": [-79.93542958, 32.772706991], "type": "Point"}, "id": "2749", "properties": {"Object ID": 573789017, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93428666, 32.773286212, -79.93428666, 32.773286212], "geometry": {"coordinates": [-79.93428666, 32.773286212], "type": "Point"}, "id": "2750", "properties": {"Object ID": 573789024, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93546623, 32.773326708, -79.93546623, 32.773326708], "geometry": {"coordinates": [-79.93546623, 32.773326708], "type": "Point"}, "id": "2751", "properties": {"Object ID": 573789025, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.934381, 32.773483335, -79.934381, 32.773483335], "geometry": {"coordinates": [-79.934381, 32.773483335], "type": "Point"}, "id": "2752", "properties": {"Object ID": 573789027, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93552451, 32.773947831, -79.93552451, 32.773947831], "geometry": {"coordinates": [-79.93552451, 32.773947831], "type": "Point"}, "id": "2753", "properties": {"Object ID": 573789034, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93517765, 32.773957578, -79.93517765, 32.773957578], "geometry": {"coordinates": [-79.93517765, 32.773957578], "type": "Point"}, "id": "2754", "properties": {"Object ID": 573789035, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93486495, 32.774060405, -79.93486495, 32.774060405], "geometry": {"coordinates": [-79.93486495, 32.774060405], "type": "Point"}, "id": "2755", "properties": {"Object ID": 573789037, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.934612, 32.7728015, -79.934612, 32.7728015], "geometry": {"coordinates": [-79.934612, 32.7728015], "type": "Point"}, "id": "2756", "properties": {"Object ID": 573789039, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93599959, 32.778825028, -79.93599959, 32.778825028], "geometry": {"coordinates": [-79.93599959, 32.778825028], "type": "Point"}, "id": "2757", "properties": {"Object ID": 573789112, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93594528, 32.778971307, -79.93594528, 32.778971307], "geometry": {"coordinates": [-79.93594528, 32.778971307], "type": "Point"}, "id": "2758", "properties": {"Object ID": 573789113, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93495931, 32.779149163, -79.93495931, 32.779149163], "geometry": {"coordinates": [-79.93495931, 32.779149163], "type": "Point"}, "id": "2759", "properties": {"Object ID": 573789114, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93569002, 32.779163599, -79.93569002, 32.779163599], "geometry": {"coordinates": [-79.93569002, 32.779163599], "type": "Point"}, "id": "2760", "properties": {"Object ID": 573789115, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93610091, 32.779269803, -79.93610091, 32.779269803], "geometry": {"coordinates": [-79.93610091, 32.779269803], "type": "Point"}, "id": "2761", "properties": {"Object ID": 573789116, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93608185, 32.779395135, -79.93608185, 32.779395135], "geometry": {"coordinates": [-79.93608185, 32.779395135], "type": "Point"}, "id": "2762", "properties": {"Object ID": 573789119, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93491243, 32.779424451, -79.93491243, 32.779424451], "geometry": {"coordinates": [-79.93491243, 32.779424451], "type": "Point"}, "id": "2763", "properties": {"Object ID": 573789121, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93607746, 32.779476111, -79.93607746, 32.779476111], "geometry": {"coordinates": [-79.93607746, 32.779476111], "type": "Point"}, "id": "2764", "properties": {"Object ID": 573789122, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93490151, 32.77951704, -79.93490151, 32.77951704], "geometry": {"coordinates": [-79.93490151, 32.77951704], "type": "Point"}, "id": "2765", "properties": {"Object ID": 573789123, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93493907, 32.779697859, -79.93493907, 32.779697859], "geometry": {"coordinates": [-79.93493907, 32.779697859], "type": "Point"}, "id": "2766", "properties": {"Object ID": 573789132, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93479526, 32.775146744, -79.93479526, 32.775146744], "geometry": {"coordinates": [-79.93479526, 32.775146744], "type": "Point"}, "id": "2767", "properties": {"Object ID": 573789133, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93486183, 32.774375849, -79.93486183, 32.774375849], "geometry": {"coordinates": [-79.93486183, 32.774375849], "type": "Point"}, "id": "2768", "properties": {"Object ID": 573789136, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93474089, 32.77500809, -79.93474089, 32.77500809], "geometry": {"coordinates": [-79.93474089, 32.77500809], "type": "Point"}, "id": "2769", "properties": {"Object ID": 573789142, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93550454, 32.774951764, -79.93550454, 32.774951764], "geometry": {"coordinates": [-79.93550454, 32.774951764], "type": "Point"}, "id": "2770", "properties": {"Object ID": 573789143, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93557194, 32.775400191, -79.93557194, 32.775400191], "geometry": {"coordinates": [-79.93557194, 32.775400191], "type": "Point"}, "id": "2771", "properties": {"Object ID": 573789146, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93551867, 32.775538163, -79.93551867, 32.775538163], "geometry": {"coordinates": [-79.93551867, 32.775538163], "type": "Point"}, "id": "2772", "properties": {"Object ID": 573789150, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93547262, 32.775807437, -79.93547262, 32.775807437], "geometry": {"coordinates": [-79.93547262, 32.775807437], "type": "Point"}, "id": "2773", "properties": {"Object ID": 573789155, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93532795, 32.775847326, -79.93532795, 32.775847326], "geometry": {"coordinates": [-79.93532795, 32.775847326], "type": "Point"}, "id": "2774", "properties": {"Object ID": 573789156, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93695453, 32.776127894, -79.93695453, 32.776127894], "geometry": {"coordinates": [-79.93695453, 32.776127894], "type": "Point"}, "id": "2775", "properties": {"Object ID": 573789166, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93645648, 32.776602891, -79.93645648, 32.776602891], "geometry": {"coordinates": [-79.93645648, 32.776602891], "type": "Point"}, "id": "2776", "properties": {"Object ID": 573789179, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93689998, 32.777661765, -79.93689998, 32.777661765], "geometry": {"coordinates": [-79.93689998, 32.777661765], "type": "Point"}, "id": "2777", "properties": {"Object ID": 573789185, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93628375, 32.778058626, -79.93628375, 32.778058626], "geometry": {"coordinates": [-79.93628375, 32.778058626], "type": "Point"}, "id": "2778", "properties": {"Object ID": 573789190, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93625524, 32.778153138, -79.93625524, 32.778153138], "geometry": {"coordinates": [-79.93625524, 32.778153138], "type": "Point"}, "id": "2779", "properties": {"Object ID": 573789191, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93719537, 32.778470919, -79.93719537, 32.778470919], "geometry": {"coordinates": [-79.93719537, 32.778470919], "type": "Point"}, "id": "2780", "properties": {"Object ID": 573789198, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93705954, 32.772001285, -79.93705954, 32.772001285], "geometry": {"coordinates": [-79.93705954, 32.772001285], "type": "Point"}, "id": "2781", "properties": {"Object ID": 573789218, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93714695, 32.772324997, -79.93714695, 32.772324997], "geometry": {"coordinates": [-79.93714695, 32.772324997], "type": "Point"}, "id": "2782", "properties": {"Object ID": 573789224, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93770704, 32.772379834, -79.93770704, 32.772379834], "geometry": {"coordinates": [-79.93770704, 32.772379834], "type": "Point"}, "id": "2783", "properties": {"Object ID": 573789225, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93767228, 32.771514763, -79.93767228, 32.771514763], "geometry": {"coordinates": [-79.93767228, 32.771514763], "type": "Point"}, "id": "2784", "properties": {"Object ID": 573789300, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93781265, 32.77158661, -79.93781265, 32.77158661], "geometry": {"coordinates": [-79.93781265, 32.77158661], "type": "Point"}, "id": "2785", "properties": {"Object ID": 573789307, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93795641, 32.771647405, -79.93795641, 32.771647405], "geometry": {"coordinates": [-79.93795641, 32.771647405], "type": "Point"}, "id": "2786", "properties": {"Object ID": 573789308, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93810827, 32.771725111, -79.93810827, 32.771725111], "geometry": {"coordinates": [-79.93810827, 32.771725111], "type": "Point"}, "id": "2787", "properties": {"Object ID": 573789309, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93743937, 32.77180159, -79.93743937, 32.77180159], "geometry": {"coordinates": [-79.93743937, 32.77180159], "type": "Point"}, "id": "2788", "properties": {"Object ID": 573789311, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93779815, 32.771965651, -79.93779815, 32.771965651], "geometry": {"coordinates": [-79.93779815, 32.771965651], "type": "Point"}, "id": "2789", "properties": {"Object ID": 573789314, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93909215, 32.774140943, -79.93909215, 32.774140943], "geometry": {"coordinates": [-79.93909215, 32.774140943], "type": "Point"}, "id": "2790", "properties": {"Object ID": 573789329, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93911863, 32.774295847, -79.93911863, 32.774295847], "geometry": {"coordinates": [-79.93911863, 32.774295847], "type": "Point"}, "id": "2791", "properties": {"Object ID": 573789330, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93914327, 32.774462888, -79.93914327, 32.774462888], "geometry": {"coordinates": [-79.93914327, 32.774462888], "type": "Point"}, "id": "2792", "properties": {"Object ID": 573789331, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93876385, 32.774468109, -79.93876385, 32.774468109], "geometry": {"coordinates": [-79.93876385, 32.774468109], "type": "Point"}, "id": "2793", "properties": {"Object ID": 573789332, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93858944, 32.774695282, -79.93858944, 32.774695282], "geometry": {"coordinates": [-79.93858944, 32.774695282], "type": "Point"}, "id": "2794", "properties": {"Object ID": 573789337, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93849151, 32.77473476, -79.93849151, 32.77473476], "geometry": {"coordinates": [-79.93849151, 32.77473476], "type": "Point"}, "id": "2795", "properties": {"Object ID": 573789339, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93826838, 32.775035118, -79.93826838, 32.775035118], "geometry": {"coordinates": [-79.93826838, 32.775035118], "type": "Point"}, "id": "2796", "properties": {"Object ID": 573789345, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9392549, 32.775102818, -79.9392549, 32.775102818], "geometry": {"coordinates": [-79.9392549, 32.775102818], "type": "Point"}, "id": "2797", "properties": {"Object ID": 573789346, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93814779, 32.775123527, -79.93814779, 32.775123527], "geometry": {"coordinates": [-79.93814779, 32.775123527], "type": "Point"}, "id": "2798", "properties": {"Object ID": 573789347, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93857044, 32.775312304, -79.93857044, 32.775312304], "geometry": {"coordinates": [-79.93857044, 32.775312304], "type": "Point"}, "id": "2799", "properties": {"Object ID": 573789350, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93935975, 32.775437432, -79.93935975, 32.775437432], "geometry": {"coordinates": [-79.93935975, 32.775437432], "type": "Point"}, "id": "2800", "properties": {"Object ID": 573789353, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93860426, 32.775528926, -79.93860426, 32.775528926], "geometry": {"coordinates": [-79.93860426, 32.775528926], "type": "Point"}, "id": "2801", "properties": {"Object ID": 573789356, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93775721, 32.775629865, -79.93775721, 32.775629865], "geometry": {"coordinates": [-79.93775721, 32.775629865], "type": "Point"}, "id": "2802", "properties": {"Object ID": 573789362, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9377838, 32.776017166, -79.9377838, 32.776017166], "geometry": {"coordinates": [-79.9377838, 32.776017166], "type": "Point"}, "id": "2803", "properties": {"Object ID": 573789432, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93818988, 32.776007692, -79.93818988, 32.776007692], "geometry": {"coordinates": [-79.93818988, 32.776007692], "type": "Point"}, "id": "2804", "properties": {"Object ID": 573789433, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93799547, 32.776086354, -79.93799547, 32.776086354], "geometry": {"coordinates": [-79.93799547, 32.776086354], "type": "Point"}, "id": "2805", "properties": {"Object ID": 573789437, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93799547, 32.776086354, -79.93799547, 32.776086354], "geometry": {"coordinates": [-79.93799547, 32.776086354], "type": "Point"}, "id": "2806", "properties": {"Object ID": 573789438, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93825533, 32.776443083, -79.93825533, 32.776443083], "geometry": {"coordinates": [-79.93825533, 32.776443083], "type": "Point"}, "id": "2807", "properties": {"Object ID": 573789441, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93800281, 32.776645294, -79.93800281, 32.776645294], "geometry": {"coordinates": [-79.93800281, 32.776645294], "type": "Point"}, "id": "2808", "properties": {"Object ID": 573789445, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93833654, 32.776784583, -79.93833654, 32.776784583], "geometry": {"coordinates": [-79.93833654, 32.776784583], "type": "Point"}, "id": "2809", "properties": {"Object ID": 573789449, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93802, 32.776815167, -79.93802, 32.776815167], "geometry": {"coordinates": [-79.93802, 32.776815167], "type": "Point"}, "id": "2810", "properties": {"Object ID": 573789451, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93765151, 32.776940976, -79.93765151, 32.776940976], "geometry": {"coordinates": [-79.93765151, 32.776940976], "type": "Point"}, "id": "2811", "properties": {"Object ID": 573789453, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93792646, 32.777004465, -79.93792646, 32.777004465], "geometry": {"coordinates": [-79.93792646, 32.777004465], "type": "Point"}, "id": "2812", "properties": {"Object ID": 573789455, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9385729, 32.773623197, -79.9385729, 32.773623197], "geometry": {"coordinates": [-79.9385729, 32.773623197], "type": "Point"}, "id": "2813", "properties": {"Object ID": 573789683, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9389607, 32.772898501, -79.9389607, 32.772898501], "geometry": {"coordinates": [-79.9389607, 32.772898501], "type": "Point"}, "id": "2814", "properties": {"Object ID": 573789701, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93897976, 32.773626758, -79.93897976, 32.773626758], "geometry": {"coordinates": [-79.93897976, 32.773626758], "type": "Point"}, "id": "2815", "properties": {"Object ID": 573789727, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93936333, 32.77834763, -79.93936333, 32.77834763], "geometry": {"coordinates": [-79.93936333, 32.77834763], "type": "Point"}, "id": "2816", "properties": {"Object ID": 573794181, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93904394, 32.778373657, -79.93904394, 32.778373657], "geometry": {"coordinates": [-79.93904394, 32.778373657], "type": "Point"}, "id": "2817", "properties": {"Object ID": 573794183, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93877166, 32.778401304, -79.93877166, 32.778401304], "geometry": {"coordinates": [-79.93877166, 32.778401304], "type": "Point"}, "id": "2818", "properties": {"Object ID": 573794186, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9394604, 32.778941487, -79.9394604, 32.778941487], "geometry": {"coordinates": [-79.9394604, 32.778941487], "type": "Point"}, "id": "2819", "properties": {"Object ID": 573794206, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93772671, 32.779130812, -79.93772671, 32.779130812], "geometry": {"coordinates": [-79.93772671, 32.779130812], "type": "Point"}, "id": "2820", "properties": {"Object ID": 573794208, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93796561, 32.779471999, -79.93796561, 32.779471999], "geometry": {"coordinates": [-79.93796561, 32.779471999], "type": "Point"}, "id": "2821", "properties": {"Object ID": 573794216, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93888956, 32.77662038, -79.93888956, 32.77662038], "geometry": {"coordinates": [-79.93888956, 32.77662038], "type": "Point"}, "id": "2822", "properties": {"Object ID": 573794281, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93862068, 32.776620318, -79.93862068, 32.776620318], "geometry": {"coordinates": [-79.93862068, 32.776620318], "type": "Point"}, "id": "2823", "properties": {"Object ID": 573794283, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93985097, 32.776651061, -79.93985097, 32.776651061], "geometry": {"coordinates": [-79.93985097, 32.776651061], "type": "Point"}, "id": "2824", "properties": {"Object ID": 573794287, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9390366, 32.776834935, -79.9390366, 32.776834935], "geometry": {"coordinates": [-79.9390366, 32.776834935], "type": "Point"}, "id": "2825", "properties": {"Object ID": 573794289, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93993515, 32.77682093, -79.93993515, 32.77682093], "geometry": {"coordinates": [-79.93993515, 32.77682093], "type": "Point"}, "id": "2826", "properties": {"Object ID": 573794291, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93873501, 32.776889269, -79.93873501, 32.776889269], "geometry": {"coordinates": [-79.93873501, 32.776889269], "type": "Point"}, "id": "2827", "properties": {"Object ID": 573794295, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9386078, 32.777068874, -79.9386078, 32.777068874], "geometry": {"coordinates": [-79.9386078, 32.777068874], "type": "Point"}, "id": "2828", "properties": {"Object ID": 573794308, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94010722, 32.774273565, -79.94010722, 32.774273565], "geometry": {"coordinates": [-79.94010722, 32.774273565], "type": "Point"}, "id": "2829", "properties": {"Object ID": 573795550, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9396644, 32.7747146, -79.9396644, 32.7747146], "geometry": {"coordinates": [-79.9396644, 32.7747146], "type": "Point"}, "id": "2830", "properties": {"Object ID": 573795565, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94032741, 32.775329938, -79.94032741, 32.775329938], "geometry": {"coordinates": [-79.94032741, 32.775329938], "type": "Point"}, "id": "2831", "properties": {"Object ID": 573795581, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93987606, 32.775362948, -79.93987606, 32.775362948], "geometry": {"coordinates": [-79.93987606, 32.775362948], "type": "Point"}, "id": "2832", "properties": {"Object ID": 573795588, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93970862, 32.775458178, -79.93970862, 32.775458178], "geometry": {"coordinates": [-79.93970862, 32.775458178], "type": "Point"}, "id": "2833", "properties": {"Object ID": 573795590, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9405136, 32.777902234, -79.9405136, 32.777902234], "geometry": {"coordinates": [-79.9405136, 32.777902234], "type": "Point"}, "id": "2834", "properties": {"Object ID": 573795662, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94023737, 32.777431098, -79.94023737, 32.777431098], "geometry": {"coordinates": [-79.94023737, 32.777431098], "type": "Point"}, "id": "2835", "properties": {"Object ID": 573795673, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94012151, 32.778560154, -79.94012151, 32.778560154], "geometry": {"coordinates": [-79.94012151, 32.778560154], "type": "Point"}, "id": "2836", "properties": {"Object ID": 573795706, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94022306, 32.778543675, -79.94022306, 32.778543675], "geometry": {"coordinates": [-79.94022306, 32.778543675], "type": "Point"}, "id": "2837", "properties": {"Object ID": 573795708, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93984254, 32.778651725, -79.93984254, 32.778651725], "geometry": {"coordinates": [-79.93984254, 32.778651725], "type": "Point"}, "id": "2838", "properties": {"Object ID": 573795710, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94004053, 32.778712494, -79.94004053, 32.778712494], "geometry": {"coordinates": [-79.94004053, 32.778712494], "type": "Point"}, "id": "2839", "properties": {"Object ID": 573795712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93613749, 32.772171462, -79.93613749, 32.772171462], "geometry": {"coordinates": [-79.93613749, 32.772171462], "type": "Point"}, "id": "2840", "properties": {"Object ID": 573850069, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93616184, 32.772390265, -79.93616184, 32.772390265], "geometry": {"coordinates": [-79.93616184, 32.772390265], "type": "Point"}, "id": "2841", "properties": {"Object ID": 573850075, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93617373, 32.772505279, -79.93617373, 32.772505279], "geometry": {"coordinates": [-79.93617373, 32.772505279], "type": "Point"}, "id": "2842", "properties": {"Object ID": 573850078, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.936127, 32.773549355, -79.936127, 32.773549355], "geometry": {"coordinates": [-79.936127, 32.773549355], "type": "Point"}, "id": "2843", "properties": {"Object ID": 573850102, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93592579, 32.773644326, -79.93592579, 32.773644326], "geometry": {"coordinates": [-79.93592579, 32.773644326], "type": "Point"}, "id": "2844", "properties": {"Object ID": 573850104, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93598868, 32.773970034, -79.93598868, 32.773970034], "geometry": {"coordinates": [-79.93598868, 32.773970034], "type": "Point"}, "id": "2845", "properties": {"Object ID": 573850110, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93744826, 32.779999315, -79.93744826, 32.779999315], "geometry": {"coordinates": [-79.93744826, 32.779999315], "type": "Point"}, "id": "2846", "properties": {"Object ID": 573850803, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93759801, 32.780012327, -79.93759801, 32.780012327], "geometry": {"coordinates": [-79.93759801, 32.780012327], "type": "Point"}, "id": "2847", "properties": {"Object ID": 573850805, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93934913, 32.775867666, -79.93934913, 32.775867666], "geometry": {"coordinates": [-79.93934913, 32.775867666], "type": "Point"}, "id": "2848", "properties": {"Object ID": 573856060, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93908099, 32.775948353, -79.93908099, 32.775948353], "geometry": {"coordinates": [-79.93908099, 32.775948353], "type": "Point"}, "id": "2849", "properties": {"Object ID": 573856070, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93853988, 32.776342893, -79.93853988, 32.776342893], "geometry": {"coordinates": [-79.93853988, 32.776342893], "type": "Point"}, "id": "2850", "properties": {"Object ID": 573856089, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93981567, 32.773254149, -79.93981567, 32.773254149], "geometry": {"coordinates": [-79.93981567, 32.773254149], "type": "Point"}, "id": "2851", "properties": {"Object ID": 573860093, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93953393, 32.773458164, -79.93953393, 32.773458164], "geometry": {"coordinates": [-79.93953393, 32.773458164], "type": "Point"}, "id": "2852", "properties": {"Object ID": 573860100, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94055899, 32.774445675, -79.94055899, 32.774445675], "geometry": {"coordinates": [-79.94055899, 32.774445675], "type": "Point"}, "id": "2853", "properties": {"Object ID": 573860241, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94076421, 32.77396585, -79.94076421, 32.77396585], "geometry": {"coordinates": [-79.94076421, 32.77396585], "type": "Point"}, "id": "2854", "properties": {"Object ID": 573860248, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94078393, 32.77408935, -79.94078393, 32.77408935], "geometry": {"coordinates": [-79.94078393, 32.77408935], "type": "Point"}, "id": "2855", "properties": {"Object ID": 573860250, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94052662, 32.774338319, -79.94052662, 32.774338319], "geometry": {"coordinates": [-79.94052662, 32.774338319], "type": "Point"}, "id": "2856", "properties": {"Object ID": 573860260, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94083735, 32.774416463, -79.94083735, 32.774416463], "geometry": {"coordinates": [-79.94083735, 32.774416463], "type": "Point"}, "id": "2857", "properties": {"Object ID": 573860262, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94059205, 32.774662686, -79.94059205, 32.774662686], "geometry": {"coordinates": [-79.94059205, 32.774662686], "type": "Point"}, "id": "2858", "properties": {"Object ID": 573860271, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94089806, 32.774848988, -79.94089806, 32.774848988], "geometry": {"coordinates": [-79.94089806, 32.774848988], "type": "Point"}, "id": "2859", "properties": {"Object ID": 573860277, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94091999, 32.775063126, -79.94091999, 32.775063126], "geometry": {"coordinates": [-79.94091999, 32.775063126], "type": "Point"}, "id": "2860", "properties": {"Object ID": 573860285, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93523903, 32.770359233, -79.93523903, 32.770359233], "geometry": {"coordinates": [-79.93523903, 32.770359233], "type": "Point"}, "id": "2861", "properties": {"Object ID": 574268593, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93530999, 32.771302986, -79.93530999, 32.771302986], "geometry": {"coordinates": [-79.93530999, 32.771302986], "type": "Point"}, "id": "2862", "properties": {"Object ID": 574268666, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93513334, 32.771683946, -79.93513334, 32.771683946], "geometry": {"coordinates": [-79.93513334, 32.771683946], "type": "Point"}, "id": "2863", "properties": {"Object ID": 574268692, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9346324, 32.77173272, -79.9346324, 32.77173272], "geometry": {"coordinates": [-79.9346324, 32.77173272], "type": "Point"}, "id": "2864", "properties": {"Object ID": 574268700, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93721288, 32.774048952, -79.93721288, 32.774048952], "geometry": {"coordinates": [-79.93721288, 32.774048952], "type": "Point"}, "id": "2865", "properties": {"Object ID": 574268740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9364956, 32.774163152, -79.9364956, 32.774163152], "geometry": {"coordinates": [-79.9364956, 32.774163152], "type": "Point"}, "id": "2866", "properties": {"Object ID": 574268746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9373672, 32.774327987, -79.9373672, 32.774327987], "geometry": {"coordinates": [-79.9373672, 32.774327987], "type": "Point"}, "id": "2867", "properties": {"Object ID": 574268765, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93589059, 32.774537902, -79.93589059, 32.774537902], "geometry": {"coordinates": [-79.93589059, 32.774537902], "type": "Point"}, "id": "2868", "properties": {"Object ID": 574268771, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93702477, 32.774657563, -79.93702477, 32.774657563], "geometry": {"coordinates": [-79.93702477, 32.774657563], "type": "Point"}, "id": "2869", "properties": {"Object ID": 574268777, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93594747, 32.774901593, -79.93594747, 32.774901593], "geometry": {"coordinates": [-79.93594747, 32.774901593], "type": "Point"}, "id": "2870", "properties": {"Object ID": 574268783, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93662462, 32.77499479, -79.93662462, 32.77499479], "geometry": {"coordinates": [-79.93662462, 32.77499479], "type": "Point"}, "id": "2871", "properties": {"Object ID": 574268791, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93653572, 32.775103145, -79.93653572, 32.775103145], "geometry": {"coordinates": [-79.93653572, 32.775103145], "type": "Point"}, "id": "2872", "properties": {"Object ID": 574268796, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93588635, 32.775317329, -79.93588635, 32.775317329], "geometry": {"coordinates": [-79.93588635, 32.775317329], "type": "Point"}, "id": "2873", "properties": {"Object ID": 574268804, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93620056, 32.775531732, -79.93620056, 32.775531732], "geometry": {"coordinates": [-79.93620056, 32.775531732], "type": "Point"}, "id": "2874", "properties": {"Object ID": 574268810, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93636809, 32.770996914, -79.93636809, 32.770996914], "geometry": {"coordinates": [-79.93636809, 32.770996914], "type": "Point"}, "id": "2875", "properties": {"Object ID": 574268891, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93564242, 32.770984144, -79.93564242, 32.770984144], "geometry": {"coordinates": [-79.93564242, 32.770984144], "type": "Point"}, "id": "2876", "properties": {"Object ID": 574268893, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93655468, 32.771059497, -79.93655468, 32.771059497], "geometry": {"coordinates": [-79.93655468, 32.771059497], "type": "Point"}, "id": "2877", "properties": {"Object ID": 574268895, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93713291, 32.771246179, -79.93713291, 32.771246179], "geometry": {"coordinates": [-79.93713291, 32.771246179], "type": "Point"}, "id": "2878", "properties": {"Object ID": 574268899, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93691964, 32.771210445, -79.93691964, 32.771210445], "geometry": {"coordinates": [-79.93691964, 32.771210445], "type": "Point"}, "id": "2879", "properties": {"Object ID": 574268901, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93658092, 32.771436457, -79.93658092, 32.771436457], "geometry": {"coordinates": [-79.93658092, 32.771436457], "type": "Point"}, "id": "2880", "properties": {"Object ID": 574268909, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93684774, 32.77151887, -79.93684774, 32.77151887], "geometry": {"coordinates": [-79.93684774, 32.77151887], "type": "Point"}, "id": "2881", "properties": {"Object ID": 574268913, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93720419, 32.776959923, -79.93720419, 32.776959923], "geometry": {"coordinates": [-79.93720419, 32.776959923], "type": "Point"}, "id": "2882", "properties": {"Object ID": 574268938, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93637359, 32.777298206, -79.93637359, 32.777298206], "geometry": {"coordinates": [-79.93637359, 32.777298206], "type": "Point"}, "id": "2883", "properties": {"Object ID": 574268959, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93610554, 32.777320491, -79.93610554, 32.777320491], "geometry": {"coordinates": [-79.93610554, 32.777320491], "type": "Point"}, "id": "2884", "properties": {"Object ID": 574268963, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93846546, 32.773921009, -79.93846546, 32.773921009], "geometry": {"coordinates": [-79.93846546, 32.773921009], "type": "Point"}, "id": "2885", "properties": {"Object ID": 574269137, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93888507, 32.773949195, -79.93888507, 32.773949195], "geometry": {"coordinates": [-79.93888507, 32.773949195], "type": "Point"}, "id": "2886", "properties": {"Object ID": 574269139, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93858978, 32.774198964, -79.93858978, 32.774198964], "geometry": {"coordinates": [-79.93858978, 32.774198964], "type": "Point"}, "id": "2887", "properties": {"Object ID": 574269145, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93841673, 32.774390878, -79.93841673, 32.774390878], "geometry": {"coordinates": [-79.93841673, 32.774390878], "type": "Point"}, "id": "2888", "properties": {"Object ID": 574269151, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9380556, 32.77472305, -79.9380556, 32.77472305], "geometry": {"coordinates": [-79.9380556, 32.77472305], "type": "Point"}, "id": "2889", "properties": {"Object ID": 574269170, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9380556, 32.77472305, -79.9380556, 32.77472305], "geometry": {"coordinates": [-79.9380556, 32.77472305], "type": "Point"}, "id": "2890", "properties": {"Object ID": 574269172, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93800678, 32.774773559, -79.93800678, 32.774773559], "geometry": {"coordinates": [-79.93800678, 32.774773559], "type": "Point"}, "id": "2891", "properties": {"Object ID": 574269176, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93755569, 32.775134402, -79.93755569, 32.775134402], "geometry": {"coordinates": [-79.93755569, 32.775134402], "type": "Point"}, "id": "2892", "properties": {"Object ID": 574269193, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93755582, 32.775250281, -79.93755582, 32.775250281], "geometry": {"coordinates": [-79.93755582, 32.775250281], "type": "Point"}, "id": "2893", "properties": {"Object ID": 574269198, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93686428, 32.775408412, -79.93686428, 32.775408412], "geometry": {"coordinates": [-79.93686428, 32.775408412], "type": "Point"}, "id": "2894", "properties": {"Object ID": 574269204, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93763293, 32.777494224, -79.93763293, 32.777494224], "geometry": {"coordinates": [-79.93763293, 32.777494224], "type": "Point"}, "id": "2895", "properties": {"Object ID": 574269280, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93870935, 32.777989823, -79.93870935, 32.777989823], "geometry": {"coordinates": [-79.93870935, 32.777989823], "type": "Point"}, "id": "2896", "properties": {"Object ID": 574269309, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93672199, 32.778998465, -79.93672199, 32.778998465], "geometry": {"coordinates": [-79.93672199, 32.778998465], "type": "Point"}, "id": "2897", "properties": {"Object ID": 574294731, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93640825, 32.779026495, -79.93640825, 32.779026495], "geometry": {"coordinates": [-79.93640825, 32.779026495], "type": "Point"}, "id": "2898", "properties": {"Object ID": 574294732, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93658207, 32.779297718, -79.93658207, 32.779297718], "geometry": {"coordinates": [-79.93658207, 32.779297718], "type": "Point"}, "id": "2899", "properties": {"Object ID": 574294733, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93709096, 32.779758701, -79.93709096, 32.779758701], "geometry": {"coordinates": [-79.93709096, 32.779758701], "type": "Point"}, "id": "2900", "properties": {"Object ID": 574294736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93682373, 32.779826872, -79.93682373, 32.779826872], "geometry": {"coordinates": [-79.93682373, 32.779826872], "type": "Point"}, "id": "2901", "properties": {"Object ID": 574294738, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9358001, 32.770031213, -79.9358001, 32.770031213], "geometry": {"coordinates": [-79.9358001, 32.770031213], "type": "Point"}, "id": "2902", "properties": {"Object ID": 574294740, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93610786, 32.770382494, -79.93610786, 32.770382494], "geometry": {"coordinates": [-79.93610786, 32.770382494], "type": "Point"}, "id": "2903", "properties": {"Object ID": 574294746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93663099, 32.770643894, -79.93663099, 32.770643894], "geometry": {"coordinates": [-79.93663099, 32.770643894], "type": "Point"}, "id": "2904", "properties": {"Object ID": 574294754, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93786388, 32.779880897, -79.93786388, 32.779880897], "geometry": {"coordinates": [-79.93786388, 32.779880897], "type": "Point"}, "id": "2905", "properties": {"Object ID": 574294814, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93924914, 32.777300489, -79.93924914, 32.777300489], "geometry": {"coordinates": [-79.93924914, 32.777300489], "type": "Point"}, "id": "2906", "properties": {"Object ID": 574295706, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93872689, 32.777450807, -79.93872689, 32.777450807], "geometry": {"coordinates": [-79.93872689, 32.777450807], "type": "Point"}, "id": "2907", "properties": {"Object ID": 574295712, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93905446, 32.777505412, -79.93905446, 32.777505412], "geometry": {"coordinates": [-79.93905446, 32.777505412], "type": "Point"}, "id": "2908", "properties": {"Object ID": 574295714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9385833, 32.777461088, -79.9385833, 32.777461088], "geometry": {"coordinates": [-79.9385833, 32.777461088], "type": "Point"}, "id": "2909", "properties": {"Object ID": 574295716, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93796827, 32.777833528, -79.93796827, 32.777833528], "geometry": {"coordinates": [-79.93796827, 32.777833528], "type": "Point"}, "id": "2910", "properties": {"Object ID": 574295727, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94038034, 32.771802409, -79.94038034, 32.771802409], "geometry": {"coordinates": [-79.94038034, 32.771802409], "type": "Point"}, "id": "2911", "properties": {"Object ID": 574296077, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93673397, 32.771899161, -79.93673397, 32.771899161], "geometry": {"coordinates": [-79.93673397, 32.771899161], "type": "Point"}, "id": "2912", "properties": {"Object ID": 574371855, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93443957, 32.778024341, -79.93443957, 32.778024341], "geometry": {"coordinates": [-79.93443957, 32.778024341], "type": "Point"}, "id": "2913", "properties": {"Object ID": 574371677, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93430019, 32.778027112, -79.93430019, 32.778027112], "geometry": {"coordinates": [-79.93430019, 32.778027112], "type": "Point"}, "id": "2914", "properties": {"Object ID": 574371679, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9349401, 32.777720077, -79.9349401, 32.777720077], "geometry": {"coordinates": [-79.9349401, 32.777720077], "type": "Point"}, "id": "2915", "properties": {"Object ID": 574371753, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93463326, 32.777725487, -79.93463326, 32.777725487], "geometry": {"coordinates": [-79.93463326, 32.777725487], "type": "Point"}, "id": "2916", "properties": {"Object ID": 574371759, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93471226, 32.77796845, -79.93471226, 32.77796845], "geometry": {"coordinates": [-79.93471226, 32.77796845], "type": "Point"}, "id": "2917", "properties": {"Object ID": 574371765, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93594687, 32.778191438, -79.93594687, 32.778191438], "geometry": {"coordinates": [-79.93594687, 32.778191438], "type": "Point"}, "id": "2918", "properties": {"Object ID": 574371773, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93482348, 32.778616576, -79.93482348, 32.778616576], "geometry": {"coordinates": [-79.93482348, 32.778616576], "type": "Point"}, "id": "2919", "properties": {"Object ID": 574371781, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93601173, 32.778711944, -79.93601173, 32.778711944], "geometry": {"coordinates": [-79.93601173, 32.778711944], "type": "Point"}, "id": "2920", "properties": {"Object ID": 574371785, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93553151, 32.77868253, -79.93553151, 32.77868253], "geometry": {"coordinates": [-79.93553151, 32.77868253], "type": "Point"}, "id": "2921", "properties": {"Object ID": 574371789, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93483908, 32.778790868, -79.93483908, 32.778790868], "geometry": {"coordinates": [-79.93483908, 32.778790868], "type": "Point"}, "id": "2922", "properties": {"Object ID": 574371797, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93671014, 32.780304754, -79.93671014, 32.780304754], "geometry": {"coordinates": [-79.93671014, 32.780304754], "type": "Point"}, "id": "2923", "properties": {"Object ID": 574371801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93971373, 32.772450135, -79.93971373, 32.772450135], "geometry": {"coordinates": [-79.93971373, 32.772450135], "type": "Point"}, "id": "2924", "properties": {"Object ID": 574372044, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94013274, 32.772639426, -79.94013274, 32.772639426], "geometry": {"coordinates": [-79.94013274, 32.772639426], "type": "Point"}, "id": "2925", "properties": {"Object ID": 574372050, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93936289, 32.772702726, -79.93936289, 32.772702726], "geometry": {"coordinates": [-79.93936289, 32.772702726], "type": "Point"}, "id": "2926", "properties": {"Object ID": 574372052, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9395207, 32.77273047, -79.9395207, 32.77273047], "geometry": {"coordinates": [-79.9395207, 32.77273047], "type": "Point"}, "id": "2927", "properties": {"Object ID": 574372054, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93977891, 32.772844654, -79.93977891, 32.772844654], "geometry": {"coordinates": [-79.93977891, 32.772844654], "type": "Point"}, "id": "2928", "properties": {"Object ID": 574372062, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94092779, 32.773021518, -79.94092779, 32.773021518], "geometry": {"coordinates": [-79.94092779, 32.773021518], "type": "Point"}, "id": "2929", "properties": {"Object ID": 574372070, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94041931, 32.773133773, -79.94041931, 32.773133773], "geometry": {"coordinates": [-79.94041931, 32.773133773], "type": "Point"}, "id": "2930", "properties": {"Object ID": 574372076, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93678007, 32.772492416, -79.93678007, 32.772492416], "geometry": {"coordinates": [-79.93678007, 32.772492416], "type": "Point"}, "id": "2931", "properties": {"Object ID": 574371896, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93657196, 32.77270174, -79.93657196, 32.77270174], "geometry": {"coordinates": [-79.93657196, 32.77270174], "type": "Point"}, "id": "2932", "properties": {"Object ID": 574371902, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93682663, 32.772821705, -79.93682663, 32.772821705], "geometry": {"coordinates": [-79.93682663, 32.772821705], "type": "Point"}, "id": "2933", "properties": {"Object ID": 574371904, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93566501, 32.776833106, -79.93566501, 32.776833106], "geometry": {"coordinates": [-79.93566501, 32.776833106], "type": "Point"}, "id": "2934", "properties": {"Object ID": 574372968, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93533289, 32.776996942, -79.93533289, 32.776996942], "geometry": {"coordinates": [-79.93533289, 32.776996942], "type": "Point"}, "id": "2935", "properties": {"Object ID": 574372974, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93577201, 32.777085231, -79.93577201, 32.777085231], "geometry": {"coordinates": [-79.93577201, 32.777085231], "type": "Point"}, "id": "2936", "properties": {"Object ID": 574372977, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93582285, 32.777343062, -79.93582285, 32.777343062], "geometry": {"coordinates": [-79.93582285, 32.777343062], "type": "Point"}, "id": "2937", "properties": {"Object ID": 574372983, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93832712, 32.771999749, -79.93832712, 32.771999749], "geometry": {"coordinates": [-79.93832712, 32.771999749], "type": "Point"}, "id": "2938", "properties": {"Object ID": 574373108, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9383712, 32.772191922, -79.9383712, 32.772191922], "geometry": {"coordinates": [-79.9383712, 32.772191922], "type": "Point"}, "id": "2939", "properties": {"Object ID": 574373117, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93910118, 32.772536073, -79.93910118, 32.772536073], "geometry": {"coordinates": [-79.93910118, 32.772536073], "type": "Point"}, "id": "2940", "properties": {"Object ID": 574373125, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93446685, 32.777488167, -79.93446685, 32.777488167], "geometry": {"coordinates": [-79.93446685, 32.777488167], "type": "Point"}, "id": "2941", "properties": {"Object ID": 574409657, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93800348, 32.771163947, -79.93800348, 32.771163947], "geometry": {"coordinates": [-79.93800348, 32.771163947], "type": "Point"}, "id": "2942", "properties": {"Object ID": 574409961, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93442124, 32.778916322, -79.93442124, 32.778916322], "geometry": {"coordinates": [-79.93442124, 32.778916322], "type": "Point"}, "id": "2943", "properties": {"Object ID": 574421811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93906748, 32.771174496, -79.93906748, 32.771174496], "geometry": {"coordinates": [-79.93906748, 32.771174496], "type": "Point"}, "id": "2944", "properties": {"Object ID": 574421848, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93897655, 32.771600676, -79.93897655, 32.771600676], "geometry": {"coordinates": [-79.93897655, 32.771600676], "type": "Point"}, "id": "2945", "properties": {"Object ID": 574421865, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93595137, 32.779986363, -79.93595137, 32.779986363], "geometry": {"coordinates": [-79.93595137, 32.779986363], "type": "Point"}, "id": "2946", "properties": {"Object ID": 574421939, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93614378, 32.779728689, -79.93614378, 32.779728689], "geometry": {"coordinates": [-79.93614378, 32.779728689], "type": "Point"}, "id": "2947", "properties": {"Object ID": 574421945, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93528261, 32.780263613, -79.93528261, 32.780263613], "geometry": {"coordinates": [-79.93528261, 32.780263613], "type": "Point"}, "id": "2948", "properties": {"Object ID": 574421949, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93577778, 32.771690262, -79.93577778, 32.771690262], "geometry": {"coordinates": [-79.93577778, 32.771690262], "type": "Point"}, "id": "2949", "properties": {"Object ID": 574431717, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93463445, 32.779732623, -79.93463445, 32.779732623], "geometry": {"coordinates": [-79.93463445, 32.779732623], "type": "Point"}, "id": "2950", "properties": {"Object ID": 574446511, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9343812, 32.779761088, -79.9343812, 32.779761088], "geometry": {"coordinates": [-79.9343812, 32.779761088], "type": "Point"}, "id": "2951", "properties": {"Object ID": 574446513, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9343812, 32.779761088, -79.9343812, 32.779761088], "geometry": {"coordinates": [-79.9343812, 32.779761088], "type": "Point"}, "id": "2952", "properties": {"Object ID": 574446515, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93454321, 32.779150786, -79.93454321, 32.779150786], "geometry": {"coordinates": [-79.93454321, 32.779150786], "type": "Point"}, "id": "2953", "properties": {"Object ID": 574446527, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93455069, 32.779355163, -79.93455069, 32.779355163], "geometry": {"coordinates": [-79.93455069, 32.779355163], "type": "Point"}, "id": "2954", "properties": {"Object ID": 574446551, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93433258, 32.779755368, -79.93433258, 32.779755368], "geometry": {"coordinates": [-79.93433258, 32.779755368], "type": "Point"}, "id": "2955", "properties": {"Object ID": 574460951, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93444444, 32.770379855, -79.93444444, 32.770379855], "geometry": {"coordinates": [-79.93444444, 32.770379855], "type": "Point"}, "id": "2956", "properties": {"Object ID": 574476698, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94073764, 32.778398944, -79.94073764, 32.778398944], "geometry": {"coordinates": [-79.94073764, 32.778398944], "type": "Point"}, "id": "2957", "properties": {"Object ID": 574486708, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93882011, 32.779486699, -79.93882011, 32.779486699], "geometry": {"coordinates": [-79.93882011, 32.779486699], "type": "Point"}, "id": "2958", "properties": {"Object ID": 574486717, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9391611, 32.778882308, -79.9391611, 32.778882308], "geometry": {"coordinates": [-79.9391611, 32.778882308], "type": "Point"}, "id": "2959", "properties": {"Object ID": 574486718, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9391611, 32.778882308, -79.9391611, 32.778882308], "geometry": {"coordinates": [-79.9391611, 32.778882308], "type": "Point"}, "id": "2960", "properties": {"Object ID": 574486719, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93923474, 32.778607967, -79.93923474, 32.778607967], "geometry": {"coordinates": [-79.93923474, 32.778607967], "type": "Point"}, "id": "2961", "properties": {"Object ID": 574486721, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93958822, 32.777296978, -79.93958822, 32.777296978], "geometry": {"coordinates": [-79.93958822, 32.777296978], "type": "Point"}, "id": "2962", "properties": {"Object ID": 574486788, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93974089, 32.777342332, -79.93974089, 32.777342332], "geometry": {"coordinates": [-79.93974089, 32.777342332], "type": "Point"}, "id": "2963", "properties": {"Object ID": 574486789, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93963218, 32.777450672, -79.93963218, 32.777450672], "geometry": {"coordinates": [-79.93963218, 32.777450672], "type": "Point"}, "id": "2964", "properties": {"Object ID": 574486790, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93858642, 32.777573004, -79.93858642, 32.777573004], "geometry": {"coordinates": [-79.93858642, 32.777573004], "type": "Point"}, "id": "2965", "properties": {"Object ID": 574486792, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93827359, 32.777600319, -79.93827359, 32.777600319], "geometry": {"coordinates": [-79.93827359, 32.777600319], "type": "Point"}, "id": "2966", "properties": {"Object ID": 574486795, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93897988, 32.777340497, -79.93897988, 32.777340497], "geometry": {"coordinates": [-79.93897988, 32.777340497], "type": "Point"}, "id": "2967", "properties": {"Object ID": 574486798, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93856586, 32.777368893, -79.93856586, 32.777368893], "geometry": {"coordinates": [-79.93856586, 32.777368893], "type": "Point"}, "id": "2968", "properties": {"Object ID": 574486801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93816358, 32.777441916, -79.93816358, 32.777441916], "geometry": {"coordinates": [-79.93816358, 32.777441916], "type": "Point"}, "id": "2969", "properties": {"Object ID": 574486802, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93833407, 32.777109379, -79.93833407, 32.777109379], "geometry": {"coordinates": [-79.93833407, 32.777109379], "type": "Point"}, "id": "2970", "properties": {"Object ID": 574486805, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93892571, 32.776049265, -79.93892571, 32.776049265], "geometry": {"coordinates": [-79.93892571, 32.776049265], "type": "Point"}, "id": "2971", "properties": {"Object ID": 574486807, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93857046, 32.77627888, -79.93857046, 32.77627888], "geometry": {"coordinates": [-79.93857046, 32.77627888], "type": "Point"}, "id": "2972", "properties": {"Object ID": 574486811, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9408639, 32.775053967, -79.9408639, 32.775053967], "geometry": {"coordinates": [-79.9408639, 32.775053967], "type": "Point"}, "id": "2973", "properties": {"Object ID": 574486825, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9397885, 32.775243083, -79.9397885, 32.775243083], "geometry": {"coordinates": [-79.9397885, 32.775243083], "type": "Point"}, "id": "2974", "properties": {"Object ID": 574486827, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93988545, 32.773901763, -79.93988545, 32.773901763], "geometry": {"coordinates": [-79.93988545, 32.773901763], "type": "Point"}, "id": "2975", "properties": {"Object ID": 574486833, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93911017, 32.774639014, -79.93911017, 32.774639014], "geometry": {"coordinates": [-79.93911017, 32.774639014], "type": "Point"}, "id": "2976", "properties": {"Object ID": 574486835, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93888976, 32.773642978, -79.93888976, 32.773642978], "geometry": {"coordinates": [-79.93888976, 32.773642978], "type": "Point"}, "id": "2977", "properties": {"Object ID": 574486840, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94093491, 32.773033556, -79.94093491, 32.773033556], "geometry": {"coordinates": [-79.94093491, 32.773033556], "type": "Point"}, "id": "2978", "properties": {"Object ID": 574486844, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93949742, 32.773071317, -79.93949742, 32.773071317], "geometry": {"coordinates": [-79.93949742, 32.773071317], "type": "Point"}, "id": "2979", "properties": {"Object ID": 574486847, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93999904, 32.772603221, -79.93999904, 32.772603221], "geometry": {"coordinates": [-79.93999904, 32.772603221], "type": "Point"}, "id": "2980", "properties": {"Object ID": 574486848, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93801926, 32.775587877, -79.93801926, 32.775587877], "geometry": {"coordinates": [-79.93801926, 32.775587877], "type": "Point"}, "id": "2981", "properties": {"Object ID": 574486850, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93763932, 32.774057164, -79.93763932, 32.774057164], "geometry": {"coordinates": [-79.93763932, 32.774057164], "type": "Point"}, "id": "2982", "properties": {"Object ID": 574486853, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93753207, 32.774015264, -79.93753207, 32.774015264], "geometry": {"coordinates": [-79.93753207, 32.774015264], "type": "Point"}, "id": "2983", "properties": {"Object ID": 574486854, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93750337, 32.773727627, -79.93750337, 32.773727627], "geometry": {"coordinates": [-79.93750337, 32.773727627], "type": "Point"}, "id": "2984", "properties": {"Object ID": 574486856, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93541956, 32.775403971, -79.93541956, 32.775403971], "geometry": {"coordinates": [-79.93541956, 32.775403971], "type": "Point"}, "id": "2985", "properties": {"Object ID": 574486865, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542766, 32.774993284, -79.93542766, 32.774993284], "geometry": {"coordinates": [-79.93542766, 32.774993284], "type": "Point"}, "id": "2986", "properties": {"Object ID": 574486872, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93542766, 32.774993284, -79.93542766, 32.774993284], "geometry": {"coordinates": [-79.93542766, 32.774993284], "type": "Point"}, "id": "2987", "properties": {"Object ID": 574486875, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93651266, 32.774225118, -79.93651266, 32.774225118], "geometry": {"coordinates": [-79.93651266, 32.774225118], "type": "Point"}, "id": "2988", "properties": {"Object ID": 574486877, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93598957, 32.773950257, -79.93598957, 32.773950257], "geometry": {"coordinates": [-79.93598957, 32.773950257], "type": "Point"}, "id": "2989", "properties": {"Object ID": 574486881, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.934546, 32.774462493, -79.934546, 32.774462493], "geometry": {"coordinates": [-79.934546, 32.774462493], "type": "Point"}, "id": "2990", "properties": {"Object ID": 574486885, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93667556, 32.780268256, -79.93667556, 32.780268256], "geometry": {"coordinates": [-79.93667556, 32.780268256], "type": "Point"}, "id": "2991", "properties": {"Object ID": 574486952, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93676603, 32.77789835, -79.93676603, 32.77789835], "geometry": {"coordinates": [-79.93676603, 32.77789835], "type": "Point"}, "id": "2992", "properties": {"Object ID": 574486958, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93669002, 32.777905314, -79.93669002, 32.777905314], "geometry": {"coordinates": [-79.93669002, 32.777905314], "type": "Point"}, "id": "2993", "properties": {"Object ID": 574486959, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93727479, 32.777235676, -79.93727479, 32.777235676], "geometry": {"coordinates": [-79.93727479, 32.777235676], "type": "Point"}, "id": "2994", "properties": {"Object ID": 574486960, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93727479, 32.777235676, -79.93727479, 32.777235676], "geometry": {"coordinates": [-79.93727479, 32.777235676], "type": "Point"}, "id": "2995", "properties": {"Object ID": 574486961, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93668262, 32.777181096, -79.93668262, 32.777181096], "geometry": {"coordinates": [-79.93668262, 32.777181096], "type": "Point"}, "id": "2996", "properties": {"Object ID": 574486964, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93688982, 32.776876886, -79.93688982, 32.776876886], "geometry": {"coordinates": [-79.93688982, 32.776876886], "type": "Point"}, "id": "2997", "properties": {"Object ID": 574486972, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93675051, 32.776222616, -79.93675051, 32.776222616], "geometry": {"coordinates": [-79.93675051, 32.776222616], "type": "Point"}, "id": "2998", "properties": {"Object ID": 574486975, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93589449, 32.779555456, -79.93589449, 32.779555456], "geometry": {"coordinates": [-79.93589449, 32.779555456], "type": "Point"}, "id": "2999", "properties": {"Object ID": 574486978, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93582978, 32.779561131, -79.93582978, 32.779561131], "geometry": {"coordinates": [-79.93582978, 32.779561131], "type": "Point"}, "id": "3000", "properties": {"Object ID": 574486979, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9357483, 32.779531488, -79.9357483, 32.779531488], "geometry": {"coordinates": [-79.9357483, 32.779531488], "type": "Point"}, "id": "3001", "properties": {"Object ID": 574486983, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93565933, 32.77953797, -79.93565933, 32.77953797], "geometry": {"coordinates": [-79.93565933, 32.77953797], "type": "Point"}, "id": "3002", "properties": {"Object ID": 574486986, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93555431, 32.779513661, -79.93555431, 32.779513661], "geometry": {"coordinates": [-79.93555431, 32.779513661], "type": "Point"}, "id": "3003", "properties": {"Object ID": 574486989, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93594266, 32.778307479, -79.93594266, 32.778307479], "geometry": {"coordinates": [-79.93594266, 32.778307479], "type": "Point"}, "id": "3004", "properties": {"Object ID": 574486996, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9365008, 32.777922652, -79.9365008, 32.777922652], "geometry": {"coordinates": [-79.9365008, 32.777922652], "type": "Point"}, "id": "3005", "properties": {"Object ID": 574487034, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93587141, 32.777715355, -79.93587141, 32.777715355], "geometry": {"coordinates": [-79.93587141, 32.777715355], "type": "Point"}, "id": "3006", "properties": {"Object ID": 574487037, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93553165, 32.777636879, -79.93553165, 32.777636879], "geometry": {"coordinates": [-79.93553165, 32.777636879], "type": "Point"}, "id": "3007", "properties": {"Object ID": 574487043, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3008", "properties": {"Object ID": 574487048, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3009", "properties": {"Object ID": 574487049, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3010", "properties": {"Object ID": 574487051, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3011", "properties": {"Object ID": 574487054, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3012", "properties": {"Object ID": 574487056, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3013", "properties": {"Object ID": 574487057, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3014", "properties": {"Object ID": 574487062, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3015", "properties": {"Object ID": 574487067, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93516687, 32.777103356, -79.93516687, 32.777103356], "geometry": {"coordinates": [-79.93516687, 32.777103356], "type": "Point"}, "id": "3016", "properties": {"Object ID": 574487071, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93466484, 32.77742362, -79.93466484, 32.77742362], "geometry": {"coordinates": [-79.93466484, 32.77742362], "type": "Point"}, "id": "3017", "properties": {"Object ID": 574487080, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93460986, 32.777125964, -79.93460986, 32.777125964], "geometry": {"coordinates": [-79.93460986, 32.777125964], "type": "Point"}, "id": "3018", "properties": {"Object ID": 574487083, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93615824, 32.776447461, -79.93615824, 32.776447461], "geometry": {"coordinates": [-79.93615824, 32.776447461], "type": "Point"}, "id": "3019", "properties": {"Object ID": 574487089, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93544376, 32.776459504, -79.93544376, 32.776459504], "geometry": {"coordinates": [-79.93544376, 32.776459504], "type": "Point"}, "id": "3020", "properties": {"Object ID": 574487092, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.93602696, 32.776203231, -79.93602696, 32.776203231], "geometry": {"coordinates": [-79.93602696, 32.776203231], "type": "Point"}, "id": "3021", "properties": {"Object ID": 574487095, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94221862, 32.773550407, -79.94221862, 32.773550407], "geometry": {"coordinates": [-79.94221862, 32.773550407], "type": "Point"}, "id": "3022", "properties": {"Object ID": 573800692, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94320565, 32.77510739, -79.94320565, 32.77510739], "geometry": {"coordinates": [-79.94320565, 32.77510739], "type": "Point"}, "id": "3023", "properties": {"Object ID": 573800698, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94176831, 32.772408153, -79.94176831, 32.772408153], "geometry": {"coordinates": [-79.94176831, 32.772408153], "type": "Point"}, "id": "3024", "properties": {"Object ID": 573800714, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94191753, 32.772502839, -79.94191753, 32.772502839], "geometry": {"coordinates": [-79.94191753, 32.772502839], "type": "Point"}, "id": "3025", "properties": {"Object ID": 573800716, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94171108, 32.772902534, -79.94171108, 32.772902534], "geometry": {"coordinates": [-79.94171108, 32.772902534], "type": "Point"}, "id": "3026", "properties": {"Object ID": 573800728, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94203934, 32.773043173, -79.94203934, 32.773043173], "geometry": {"coordinates": [-79.94203934, 32.773043173], "type": "Point"}, "id": "3027", "properties": {"Object ID": 573800732, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94360752, 32.775436262, -79.94360752, 32.775436262], "geometry": {"coordinates": [-79.94360752, 32.775436262], "type": "Point"}, "id": "3028", "properties": {"Object ID": 573800791, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94360752, 32.775436262, -79.94360752, 32.775436262], "geometry": {"coordinates": [-79.94360752, 32.775436262], "type": "Point"}, "id": "3029", "properties": {"Object ID": 573800793, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94304606, 32.775950202, -79.94304606, 32.775950202], "geometry": {"coordinates": [-79.94304606, 32.775950202], "type": "Point"}, "id": "3030", "properties": {"Object ID": 573800795, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94304606, 32.775950202, -79.94304606, 32.775950202], "geometry": {"coordinates": [-79.94304606, 32.775950202], "type": "Point"}, "id": "3031", "properties": {"Object ID": 573800797, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9431408, 32.776523032, -79.9431408, 32.776523032], "geometry": {"coordinates": [-79.9431408, 32.776523032], "type": "Point"}, "id": "3032", "properties": {"Object ID": 573800801, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94356051, 32.77701734, -79.94356051, 32.77701734], "geometry": {"coordinates": [-79.94356051, 32.77701734], "type": "Point"}, "id": "3033", "properties": {"Object ID": 573800805, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94368712, 32.777222326, -79.94368712, 32.777222326], "geometry": {"coordinates": [-79.94368712, 32.777222326], "type": "Point"}, "id": "3034", "properties": {"Object ID": 573800809, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9433719, 32.777366401, -79.9433719, 32.777366401], "geometry": {"coordinates": [-79.9433719, 32.777366401], "type": "Point"}, "id": "3035", "properties": {"Object ID": 573800813, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94308681, 32.777419457, -79.94308681, 32.777419457], "geometry": {"coordinates": [-79.94308681, 32.777419457], "type": "Point"}, "id": "3036", "properties": {"Object ID": 573800817, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94253555, 32.777464761, -79.94253555, 32.777464761], "geometry": {"coordinates": [-79.94253555, 32.777464761], "type": "Point"}, "id": "3037", "properties": {"Object ID": 573800819, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94369184, 32.777227272, -79.94369184, 32.777227272], "geometry": {"coordinates": [-79.94369184, 32.777227272], "type": "Point"}, "id": "3038", "properties": {"Object ID": 573800823, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94356439, 32.777033379, -79.94356439, 32.777033379], "geometry": {"coordinates": [-79.94356439, 32.777033379], "type": "Point"}, "id": "3039", "properties": {"Object ID": 573800826, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94242512, 32.77358757, -79.94242512, 32.77358757], "geometry": {"coordinates": [-79.94242512, 32.77358757], "type": "Point"}, "id": "3040", "properties": {"Object ID": 573800969, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94320725, 32.777784572, -79.94320725, 32.777784572], "geometry": {"coordinates": [-79.94320725, 32.777784572], "type": "Point"}, "id": "3041", "properties": {"Object ID": 573806311, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94375884, 32.777573207, -79.94375884, 32.777573207], "geometry": {"coordinates": [-79.94375884, 32.777573207], "type": "Point"}, "id": "3042", "properties": {"Object ID": 573806312, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94170131, 32.778348266, -79.94170131, 32.778348266], "geometry": {"coordinates": [-79.94170131, 32.778348266], "type": "Point"}, "id": "3043", "properties": {"Object ID": 573860813, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94120099, 32.772665114, -79.94120099, 32.772665114], "geometry": {"coordinates": [-79.94120099, 32.772665114], "type": "Point"}, "id": "3044", "properties": {"Object ID": 574296105, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94551694, 32.776478611, -79.94551694, 32.776478611], "geometry": {"coordinates": [-79.94551694, 32.776478611], "type": "Point"}, "id": "3045", "properties": {"Object ID": 574422150, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94199805, 32.775231928, -79.94199805, 32.775231928], "geometry": {"coordinates": [-79.94199805, 32.775231928], "type": "Point"}, "id": "3046", "properties": {"Object ID": 574431435, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94126543, 32.773665544, -79.94126543, 32.773665544], "geometry": {"coordinates": [-79.94126543, 32.773665544], "type": "Point"}, "id": "3047", "properties": {"Object ID": 574431441, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94120491, 32.773905274, -79.94120491, 32.773905274], "geometry": {"coordinates": [-79.94120491, 32.773905274], "type": "Point"}, "id": "3048", "properties": {"Object ID": 574431459, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94445838, 32.776922222, -79.94445838, 32.776922222], "geometry": {"coordinates": [-79.94445838, 32.776922222], "type": "Point"}, "id": "3049", "properties": {"Object ID": 574431599, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94152807, 32.774410541, -79.94152807, 32.774410541], "geometry": {"coordinates": [-79.94152807, 32.774410541], "type": "Point"}, "id": "3050", "properties": {"Object ID": 574460772, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3051", "properties": {"Object ID": 574485649, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3052", "properties": {"Object ID": 574485650, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3053", "properties": {"Object ID": 574485655, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3054", "properties": {"Object ID": 574485659, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3055", "properties": {"Object ID": 574485661, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3056", "properties": {"Object ID": 574485666, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3057", "properties": {"Object ID": 574485667, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3058", "properties": {"Object ID": 574486695, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3059", "properties": {"Object ID": 574486696, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3060", "properties": {"Object ID": 574486698, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3061", "properties": {"Object ID": 574486701, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94146718, 32.778522856, -79.94146718, 32.778522856], "geometry": {"coordinates": [-79.94146718, 32.778522856], "type": "Point"}, "id": "3062", "properties": {"Object ID": 574486704, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94519888, 32.77698147, -79.94519888, 32.77698147], "geometry": {"coordinates": [-79.94519888, 32.77698147], "type": "Point"}, "id": "3063", "properties": {"Object ID": 574486730, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94502746, 32.777048185, -79.94502746, 32.777048185], "geometry": {"coordinates": [-79.94502746, 32.777048185], "type": "Point"}, "id": "3064", "properties": {"Object ID": 574486732, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94338557, 32.777176344, -79.94338557, 32.777176344], "geometry": {"coordinates": [-79.94338557, 32.777176344], "type": "Point"}, "id": "3065", "properties": {"Object ID": 574486736, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "3066", "properties": {"Object ID": 574486737, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "3067", "properties": {"Object ID": 574486746, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "3068", "properties": {"Object ID": 574486748, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "3069", "properties": {"Object ID": 574486750, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "3070", "properties": {"Object ID": 574486753, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.9427401, 32.777416396, -79.9427401, 32.777416396], "geometry": {"coordinates": [-79.9427401, 32.777416396], "type": "Point"}, "id": "3071", "properties": {"Object ID": 574486755, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "3072", "properties": {"Object ID": 574486769, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "3073", "properties": {"Object ID": 574486774, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94233945, 32.774283067, -79.94233945, 32.774283067], "geometry": {"coordinates": [-79.94233945, 32.774283067], "type": "Point"}, "id": "3074", "properties": {"Object ID": 574486777, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "3075", "properties": {"Object ID": 574486815, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "3076", "properties": {"Object ID": 574486817, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "3077", "properties": {"Object ID": 574486819, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "3078", "properties": {"Object ID": 574486820, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "3079", "properties": {"Object ID": 574486821, "__folium_color": "#FFFACD"}, "type": "Feature"}, {"bbox": [-79.94141607, 32.775137429, -79.94141607, 32.775137429], "geometry": {"coordinates": [-79.94141607, 32.775137429], "type": "Point"}, "id": "3080", "properties": {"Object ID": 574486822, "__folium_color": "#FFFACD"}, "type": "Feature"}], "type": "FeatureCollection"});\n", "\n", " \n", " \n", - " geo_json_3c0140304d9ef4c017f2a17d988059e5.bindTooltip(\n", + " geo_json_3115e8c8abe4b5978b36eaa9b6ede8ce.bindTooltip(\n", " function(layer){\n", " let div = L.DomUtil.create('div');\n", " \n", @@ -451,25 +491,24 @@ "</html>\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen>" ], "text/plain": [ - "" + "" ] }, - "execution_count": 1, + "execution_count": 18, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "import geopandas as gpd\n", - "from pathlib import Path\n", - "import os \n", "#Load aggregation zones as GeoDataFrames\n", "exposure=gpd.read_file(Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"fiat_model\" / \"exposure\" / \"buildings.gpkg\")\n", "base_zone=gpd.read_file(Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"aggregation_zones\" / \"base_zones.gpkg\")\n", "\n", + "# Create interactive map\n", "m = base_zone.explore(column = 'ZONE_BASE')\n", "m = exposure.explore(m=m, color = '#FFFACD')\n", "\n", + "# Display map\n", "m" ] }, @@ -477,59 +516,24 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "# **Step 0**: Create and activate the FIAT environment \n", - "Using the / \"hydromt_fiat\" / \"envs\" / \"hydromt-fiat-dev.yml\" - file , the neccessary environment is created and activated to run this notebook. A detailed description can be found in the **User Guide**.\n" + "# **Step 1**: Configure and initialize the FIAT model" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "# **Step 1**: Import required packages" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now we can import the neccessary python packages to build the **FIAT model**." - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "from hydromt_fiat.fiat import FiatModel\n", - "from hydromt.log import setuplog\n", - "import pandas as pd\n", - "import yaml\n", - "import json\n", - "import shutil" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# **Step 2**: Configure and initialize the FIAT model" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In this notebook, the **FIAT model** has already been initialized and solely the exposure data will be updated by adding the aggregation zones. The required data is stored in the \"example\"/ \"data\" / \"example_aggregation_zone\" - directory. \n", + "In this notebook, the **FIAT model** has already been initialized and solely the exposure data will be updated by the add-on of the the aggregation zones. The required data is stored in the \n", + "`\"examples\"/ \"data\" / \"aggregation_zones / \"aggregation_zones\"` - directory. \n", "\n", - " Note: To configure and initialize your **own** FIAT model refer to global_OSM_JRC.ipynb. If you do so, `do not` forget to update the folder dependencies and variables throughout this notebook according to your data. " + "*Note: To configure and initialize your **own** FIAT model refer to global_OSM_JRC.ipynb. If you do so, **don't forget** to update the folder dependencies and variables throughout this notebook pointing to your data.* " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "# **Step 3**: Define aggregation parameters in the yaml file " + "# **Step 2**: Define aggregation parameters in the configuration file " ] }, { @@ -541,16 +545,18 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Two test cases are created in this jupyter notebook. First, the **spatial joint** of a **single** aggregation zone to the exposure data. Second, the **spatial joint** of **multiple** aggregation zones.\n", + "Two test cases are created in this jupyter notebook. For each test case we need a seperate configuration file ([configuration.yaml](data/aggregation_zones/configuration.yaml)/ [configuration_2.yaml](data/aggregation_zones/configuration_2.yaml)) with the required model input information:\n", + "\n", + "1. Spatial joint of a **single aggregation zone** to the exposure data\n", + "2. Spatial joint of **multiple aggregation zones** to the exposure data\n", "\n", - "The test_case configuration is saved in a yaml file, in which the following parameters must be specified by the user:\n", - "- **new_root** (Directory path in which the new model output should be stored) \n", - "- **aggregation_area_fn** (File path to the aggregation file. This must be a **vector** file) \n", - "- **attribute_names** (name of the column that specifies the aggregation zone in the aggregation vector file (case-sensitive)) \n", - "- **label_names** (new aggregation label name, specified by the user)\n", + "The configuration is saved in a *yaml* file, in which the following parameters must be specified by the user: \n", "\n", - " [Example attribute_names] In this case below, the column `\"ZONE_BASE\"`categorizes the aggregation zones in the vector file. This column name is used for `attribute_names` . \n", + "- `aggregation_area_fn`: File path to the aggregation file (vector file). \n", + "- `attribute_names`: Name of the column that specifies the aggregation zone in the aggregation vector file (case-sensitive).\n", + "- `label_names`: New aggregation label name, specified by the user.\n", "\n", + "Below an example of the input for the `attribute_names`. The column `\"ZONE_BASE\"`categorizes the aggregation zones in the vector file.\n", "\n", "![Aggregation_zones.PNG](attachment:Aggregation_zones.PNG)" ] @@ -559,73 +565,71 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## **Step 3.1:** Load the information of the yaml file" + "## **Step 3:** Load the configuration file" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "

The yaml file is located in the \"example\"/ \"data\" / - folder. The information in the file are converted into a python dictionary.

\n", - "

Note: Instead of loading a yaml file it is possible to create a python dictionary directly, built upon the structure seen below.

" + "This step is not neccessarry to run the model. It is only for visualizing the model input. \n", + "The configuration files are located in the `\"example\"/ \"data\" /` - folder. The information in the file are converted into a python dictionary. \n", + "\n", + "*Note: Instead of loading a yaml file it is possible to create a python dictionary directly, built upon the structure seen below.*" ] }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 24, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "{\n", - " \"cases\": {\n", - " \"test1_single_aggregation\": {\n", - " \"new_root\": \"./data/Aggregation_zones/output/aggregation_zones_test1\",\n", - " \"configuration\": {\n", - " \"setup_aggregation_areas\": {\n", - " \"aggregation_area_fn\": \"./data/Aggregation_zones/aggregation_zones/base_zones.gpkg\",\n", - " \"attribute_names\": \"ZONE_BASE\",\n", - " \"label_names\": \"Base_zones\"\n", - " }\n", - " }\n", - " },\n", - " \"test2_multiple_aggregation\": {\n", - " \"new_root\": \"./data/Aggregation_zones/output/aggregation_zones_test2\",\n", - " \"configuration\": {\n", - " \"setup_aggregation_areas\": {\n", - " \"aggregation_area_fn\": [\n", - " \"./data/Aggregation_zones/aggregation_zones/base_zones.gpkg\",\n", - " \"./data/Aggregation_zones/aggregation_zones/land_use.gpkg\",\n", - " \"./data/Aggregation_zones/aggregation_zones/accomodation_type.gpkg\"\n", - " ],\n", - " \"attribute_names\": [\n", - " \"ZONE_BASE\",\n", - " \"LAND_USE\",\n", - " \"ACCOM\"\n", - " ],\n", - " \"label_names\": [\n", - " \"Base_zones\",\n", - " \"Land_use\",\n", - " \"Accommodation_type\"\n", - " ]\n", - " }\n", - " }\n", - " }\n", + "\"Test Case 1\" {\n", + " \"setup_aggregation_areas\": {\n", + " \"aggregation_area_fn\": \"data/aggregation_zones/aggregation_zones/base_zones.gpkg\",\n", + " \"attribute_names\": \"ZONE_BASE\",\n", + " \"label_names\": \"Base_zones\"\n", + " }\n", + "}\n", + "\"Test Case 2\" {\n", + " \"setup_aggregation_areas\": {\n", + " \"aggregation_area_fn\": [\n", + " \"data/aggregation_zones/aggregation_zones/base_zones.gpkg\",\n", + " \"data/aggregation_zones/aggregation_zones/land_use.gpkg\",\n", + " \"data/aggregation_zones/aggregation_zones/accomodation_type.gpkg\"\n", + " ],\n", + " \"attribute_names\": [\n", + " \"ZONE_BASE\",\n", + " \"LAND_USE\",\n", + " \"ACCOM\"\n", + " ],\n", + " \"label_names\": [\n", + " \"Base_zones\",\n", + " \"Land_use\",\n", + " \"Accommodation_type\"\n", + " ]\n", " }\n", "}\n" ] } ], "source": [ - "#Let's read the yaml file with the required information \n", - "#and set up the FIAT model for the two test cases. \n", + "# Let's read the yaml file with the required information \n", "\n", - "with open(Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"config_aggregation.yml\", 'r') as file:\n", + "# Test Case 1\n", + "with open(Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"configuration.yaml\", 'r') as file:\n", " config_aggregation = yaml.safe_load(file)\n", "\n", - "print(json.dumps(config_aggregation, indent=4, sort_keys=False))" + "print(f\"\\\"Test Case 1\\\" {json.dumps(config_aggregation, indent=4, sort_keys=False)}\")\n", + "\n", + "# Test Case 2\n", + "with open(Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"configuration_2.yaml\", 'r') as file:\n", + " config_aggregation_2 = yaml.safe_load(file)\n", + "\n", + "print(f\"\\\"Test Case 2\\\" {json.dumps(config_aggregation_2, indent=4, sort_keys=False)}\")" ] }, { @@ -639,34 +643,38 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Set up the root path to the FIAT model and the logger settings to re-build your model:\n", - "- `root`: Directory path from where the neccessary data for the FIAT model is stored.

\n", - "- `logger`: The logger variable defines the frequencies of log-entries during the initialisation of the model.

" + "Set up the root path to the FIAT model, the path where the output should be stored and the logger settings to re-build your model:\n", + "\n", + "- `root`: Directory path from where the neccessary data for the FIAT model is stored. \n", + "- `new_root`: Directory path where the FIAT model output is stored. \n", + "- `logger`: The logger variable defines the frequencies of log-entries during the initialisation of the model." ] }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 25, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "2023-10-20 09:59:17,072 - hydromt_fiat - log - INFO - HydroMT version: 0.8.0\n" + "2023-10-26 11:57:26,621 - hydromt_fiat - log - INFO - HydroMT version: 0.8.0\n" ] } ], "source": [ - "# Set up Fiat Model\n", + "# Set up the root for the Fiat Model\n", "root = Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"fiat_model\"\n", "\n", - "#If case exist\n", - "if Path(config_aggregation[\"cases\"][\"test1_single_aggregation\"][\"new_root\"]).exists():\n", - " shutil.rmtree(config_aggregation[\"cases\"][\"test1_single_aggregation\"][\"new_root\"])\n", + "# Set up the file path for the FIAT model output\n", + "new_root = Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"aggregation_zones_test1\"\n", "\n", "# Set up the logger\n", - "logger = setuplog(\"hydromt_fiat\", log_level=10)" + "logger = setuplog(\"hydromt_fiat\", log_level=10)\n", + "\n", + "# Read the model configuration \n", + "opt = configread(Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"configuration.yaml\")" ] }, { @@ -686,48 +694,48 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 26, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "2023-10-20 09:59:18,050 - hydromt_fiat - log - DEBUG - Appending log messages to file c:\\Repositories\\hydromt_fiat\\examples\\data\\aggregation_zones\\fiat_model\\hydromt.log.\n", - "2023-10-20 09:59:18,051 - hydromt_fiat - model_api - INFO - Initializing fiat model from hydromt_fiat (v0.2.1.dev0).\n", - "2023-10-20 09:59:18,052 - hydromt_fiat - fiat - INFO - Reading model data from c:\\Repositories\\hydromt_fiat\\examples\\data\\aggregation_zones\\fiat_model\n", - "2023-10-20 09:59:18,053 - hydromt_fiat - model_api - DEBUG - User defined config read from c:\\Repositories\\hydromt_fiat\\examples\\data\\aggregation_zones\\fiat_model\\settings.toml\n", - "2023-10-20 09:59:18,054 - hydromt_fiat - fiat - INFO - Reading model table files.\n", - "2023-10-20 09:59:18,055 - hydromt_fiat - fiat - DEBUG - Reading vulnerability table c:\\Repositories\\hydromt_fiat\\examples\\data\\aggregation_zones\\fiat_model\\vulnerability\\vulnerability_curves.csv\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2023-10-20 09:59:18,085 - hydromt_fiat - fiat - DEBUG - Reading exposure table c:\\Repositories\\hydromt_fiat\\examples\\data\\aggregation_zones\\fiat_model\\exposure\\exposure.csv\n", - "2023-10-20 09:59:18,092 - hydromt_fiat - fiat - INFO - Reading exposure geometries.\n", - "2023-10-20 09:59:18,093 - hydromt_fiat - exposure_vector - INFO - Setting geometry name to buildings...\n", - "2023-10-20 09:59:18,181 - hydromt_fiat - exposure_vector - INFO - Setting exposure geometries...\n", - "2023-10-20 09:59:18,181 - hydromt_fiat - model_api - INFO - setup_aggregation_areas.aggregation_area_fn: ./data/Aggregation_zones/aggregation_zones/base_zones.gpkg\n", - "2023-10-20 09:59:18,182 - hydromt_fiat - model_api - INFO - setup_aggregation_areas.attribute_names: ZONE_BASE\n", - "2023-10-20 09:59:18,182 - hydromt_fiat - model_api - INFO - setup_aggregation_areas.label_names: Base_zones\n", - "2023-10-20 09:59:18,285 - hydromt_fiat - log - DEBUG - Writing log messages to new file c:\\Repositories\\hydromt_fiat\\examples\\data\\Aggregation_zones\\output\\aggregation_zones_test1\\hydromt.log.\n", - "2023-10-20 09:59:18,286 - hydromt_fiat - fiat - INFO - Updating all data objects...\n", - "2023-10-20 09:59:18,287 - hydromt_fiat - fiat - INFO - Writing model data to c:\\Repositories\\hydromt_fiat\\examples\\data\\Aggregation_zones\\output\\aggregation_zones_test1\n", - "2023-10-20 09:59:18,288 - hydromt_fiat - model_api - INFO - Writing model config to c:\\Repositories\\hydromt_fiat\\examples\\data\\Aggregation_zones\\output\\aggregation_zones_test1\\settings.toml\n", - "2023-10-20 09:59:18,289 - hydromt_fiat - model_api - DEBUG - Writing file exposure/buildings.gpkg\n", - "2023-10-20 09:59:18,396 - hydromt_fiat - fiat - INFO - Writing model exposure table file to exposure/exposure.csv.\n", - "2023-10-20 09:59:18,411 - hydromt_fiat - fiat - INFO - Writing model vulnerability_curves table file to vulnerability/vulnerability_curves.csv.\n" + "2023-10-26 11:57:29,509 - hydromt_fiat - log - DEBUG - Appending log messages to file c:\\Users\\rautenba\\hydromt_fiat\\examples\\data\\aggregation_zones\\fiat_model\\hydromt.log.\n", + "2023-10-26 11:57:29,510 - hydromt_fiat - model_api - INFO - Initializing fiat model from hydromt_fiat (v0.2.1.dev0).\n", + "2023-10-26 11:57:29,513 - hydromt_fiat - fiat - INFO - Reading model data from c:\\Users\\rautenba\\hydromt_fiat\\examples\\data\\aggregation_zones\\fiat_model\n", + "2023-10-26 11:57:29,514 - hydromt_fiat - model_api - DEBUG - User defined config read from c:\\Users\\rautenba\\hydromt_fiat\\examples\\data\\aggregation_zones\\fiat_model\\settings.toml\n", + "2023-10-26 11:57:29,514 - hydromt_fiat - fiat - INFO - Reading model table files.\n", + "2023-10-26 11:57:29,514 - hydromt_fiat - fiat - DEBUG - Reading vulnerability table c:\\Users\\rautenba\\hydromt_fiat\\examples\\data\\aggregation_zones\\fiat_model\\vulnerability\\vulnerability_curves.csv\n", + "2023-10-26 11:57:29,553 - hydromt_fiat - fiat - DEBUG - Reading exposure table c:\\Users\\rautenba\\hydromt_fiat\\examples\\data\\aggregation_zones\\fiat_model\\exposure\\exposure.csv\n", + "2023-10-26 11:57:29,563 - hydromt_fiat - fiat - INFO - Reading exposure geometries.\n", + "2023-10-26 11:57:29,564 - hydromt_fiat - exposure_vector - INFO - Setting geometry name to buildings...\n", + "2023-10-26 11:57:29,575 - hydromt_fiat - exposure_vector - INFO - Setting exposure geometries...\n", + "2023-10-26 11:57:29,575 - hydromt_fiat - model_api - INFO - setup_aggregation_areas.aggregation_area_fn: data/aggregation_zones/aggregation_zones/base_zones.gpkg\n", + "2023-10-26 11:57:29,575 - hydromt_fiat - model_api - INFO - setup_aggregation_areas.attribute_names: ZONE_BASE\n", + "2023-10-26 11:57:29,575 - hydromt_fiat - model_api - INFO - setup_aggregation_areas.label_names: Base_zones\n", + "2023-10-26 11:57:29,690 - hydromt_fiat - log - DEBUG - Writing log messages to new file c:\\Users\\rautenba\\hydromt_fiat\\examples\\data\\aggregation_zones\\aggregation_zones_test1\\hydromt.log.\n", + "2023-10-26 11:57:29,692 - hydromt_fiat - fiat - INFO - Updating all data objects...\n", + "2023-10-26 11:57:29,693 - hydromt_fiat - fiat - INFO - Writing model data to c:\\Users\\rautenba\\hydromt_fiat\\examples\\data\\aggregation_zones\\aggregation_zones_test1\n", + "2023-10-26 11:57:29,694 - hydromt_fiat - model_api - INFO - Writing model config to c:\\Users\\rautenba\\hydromt_fiat\\examples\\data\\aggregation_zones\\aggregation_zones_test1\\settings.toml\n", + "2023-10-26 11:57:29,696 - hydromt_fiat - model_api - DEBUG - Writing file exposure/buildings.gpkg\n", + "2023-10-26 11:57:29,824 - hydromt_fiat - fiat - INFO - Writing model exposure table file to exposure/exposure.csv.\n", + "2023-10-26 11:57:29,842 - hydromt_fiat - fiat - INFO - Writing model vulnerability_curves table file to vulnerability/vulnerability_curves.csv.\n" ] } ], "source": [ - "#Start running the new model with the new exposure output \n", + "# Read the existing FIAT model \n", "fm = FiatModel(root=root, mode=\"r\", logger=logger)\n", "fm.read()\n", - "fm.build(write=False, opt=config_aggregation[\"cases\"][\"test1_single_aggregation\"][\"configuration\"])\n", - "fm.set_root(config_aggregation[\"cases\"][\"test1_single_aggregation\"][\"new_root\"])\n", + "\n", + "# If case exist\n", + "if new_root.exists():\n", + " shutil.rmtree(new_root)\n", + "\n", + "# Build the new model\n", + "fm.build(write=False, opt=opt)\n", + "fm.set_root(new_root)\n", "fm.write()" ] }, @@ -744,34 +752,79 @@ "source": [ "To run the test case 2, select it the configuration dictionary when re-running the model. Hence, the model will select the parameters of the second test case instead of the first and create spatial joints to **multiple** aggregation zones. \n", "\n", - "

To run the second model, the logger must be set-up another time for the model to run through.

" + "To run the second model, the `model variables` must be updated." ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023-10-26 11:27:09,123 - hydromt_fiat - log - INFO - HydroMT version: 0.8.0\n" + ] + } + ], "source": [ - "#If case exist\n", - "if Path(config_aggregation[\"cases\"][\"test2_multiple_aggregation\"][\"new_root\"]).exists():\n", - " shutil.rmtree(config_aggregation[\"cases\"][\"test2_multiple_aggregation\"][\"new_root\"])\n", - " \n", + "# Set up the root for the Fiat Model\n", + "root = Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"fiat_model\"\n", + "\n", + "# Set up the file path for the FIAT model output\n", + "new_root = Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"aggregation_zones_test2\"\n", + "\n", "# Set up the logger\n", - "logger = setuplog(\"hydromt_fiat\", log_level=10)" + "logger = setuplog(\"hydromt_fiat\", log_level=10)\n", + "\n", + "# Read the model configuration \n", + "opt = configread(Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"configuration_2.yaml\")" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 10, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023-10-26 11:28:34,298 - hydromt_fiat - model_api - INFO - Initializing fiat model from hydromt_fiat (v0.2.1.dev0).\n", + "2023-10-26 11:28:34,298 - hydromt_fiat - fiat - INFO - Reading model data from c:\\Users\\rautenba\\hydromt_fiat\\examples\\data\\aggregation_zones\\fiat_model\n", + "2023-10-26 11:28:34,303 - hydromt_fiat - model_api - DEBUG - User defined config read from c:\\Users\\rautenba\\hydromt_fiat\\examples\\data\\aggregation_zones\\fiat_model\\settings.toml\n", + "2023-10-26 11:28:34,303 - hydromt_fiat - fiat - INFO - Reading model table files.\n", + "2023-10-26 11:28:34,304 - hydromt_fiat - fiat - DEBUG - Reading vulnerability table c:\\Users\\rautenba\\hydromt_fiat\\examples\\data\\aggregation_zones\\fiat_model\\vulnerability\\vulnerability_curves.csv\n", + "2023-10-26 11:28:34,340 - hydromt_fiat - fiat - DEBUG - Reading exposure table c:\\Users\\rautenba\\hydromt_fiat\\examples\\data\\aggregation_zones\\fiat_model\\exposure\\exposure.csv\n", + "2023-10-26 11:28:34,349 - hydromt_fiat - fiat - INFO - Reading exposure geometries.\n", + "2023-10-26 11:28:34,351 - hydromt_fiat - exposure_vector - INFO - Setting geometry name to buildings...\n", + "2023-10-26 11:28:34,370 - hydromt_fiat - exposure_vector - INFO - Setting exposure geometries...\n", + "2023-10-26 11:28:34,375 - hydromt_fiat - model_api - INFO - setup_aggregation_areas.aggregation_area_fn: ['data/aggregation_zones/aggregation_zones/base_zones.gpkg', 'data/aggregation_zones/aggregation_zones/land_use.gpkg', 'data/aggregation_zones/aggregation_zones/accomodation_type.gpkg']\n", + "2023-10-26 11:28:34,376 - hydromt_fiat - model_api - INFO - setup_aggregation_areas.attribute_names: ['ZONE_BASE', 'LAND_USE', 'ACCOM']\n", + "2023-10-26 11:28:34,377 - hydromt_fiat - model_api - INFO - setup_aggregation_areas.label_names: ['Base_zones', 'Land_use', 'Accommodation_type']\n", + "2023-10-26 11:28:34,864 - hydromt_fiat - log - DEBUG - Writing log messages to new file c:\\Users\\rautenba\\hydromt_fiat\\examples\\data\\aggregation_zones\\aggregation_zones_test2\\hydromt.log.\n", + "2023-10-26 11:28:34,864 - hydromt_fiat - fiat - INFO - Updating all data objects...\n", + "2023-10-26 11:28:34,864 - hydromt_fiat - fiat - INFO - Writing model data to c:\\Users\\rautenba\\hydromt_fiat\\examples\\data\\aggregation_zones\\aggregation_zones_test2\n", + "2023-10-26 11:28:34,864 - hydromt_fiat - model_api - INFO - Writing model config to c:\\Users\\rautenba\\hydromt_fiat\\examples\\data\\aggregation_zones\\aggregation_zones_test2\\settings.toml\n", + "2023-10-26 11:28:34,869 - hydromt_fiat - model_api - DEBUG - Writing file exposure/buildings.gpkg\n", + "2023-10-26 11:28:34,994 - hydromt_fiat - fiat - INFO - Writing model exposure table file to exposure/exposure.csv.\n", + "2023-10-26 11:28:35,006 - hydromt_fiat - fiat - INFO - Writing model vulnerability_curves table file to vulnerability/vulnerability_curves.csv.\n" + ] + } + ], "source": [ - "#Start running the new model with the new exposure output \n", + "# Read the existing FIAT model \n", "fm = FiatModel(root=root, mode=\"r\", logger=logger)\n", "fm.read()\n", - "fm.build(write=False, opt=config_aggregation[\"cases\"][\"test2_multiple_aggregation\"][\"configuration\"])\n", - "fm.set_root(config_aggregation[\"cases\"][\"test2_multiple_aggregation\"][\"new_root\"])\n", + "\n", + "#If case exist\n", + "if new_root.exists():\n", + " shutil.rmtree(new_root)\n", + "\n", + "# Build the new model\n", + "fm.build(write=False, opt=opt)\n", + "fm.set_root(new_root)\n", "fm.write()" ] }, @@ -799,104 +852,1253 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#Load *.csv into dataframe\n", - "df_single_aggregation = pd.read_csv(Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"output\" / \"aggregation_zones_test1\" / \"exposure\" / \"exposure.csv\")\n", - "\n", - "#Load original exposure geopackage into GeoDataFrame\n", - "new_exposure=gpd.read_file(Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"output\" / \"aggregation_zones_test1\" / \"exposure\" / \"buildings.gpkg\")\n", - "\n", - "#Merge dataframe with GeoDataFrame\n", - "merged_gdf = new_exposure.merge(df_single_aggregation, left_on='Object ID', right_on='Object ID', how='inner')\n", - "\n", - "#Display base_zones aggregation zone\n", - "base_zones_map = merged_gdf.explore(column = 'Aggregation Label: Base_zones')\n", - "base_zones_map\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# **Result**: Test Case 2" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Load the newly created *exposure.csv* file from the / \"output\" / \"aggregation_zones_test2\" / - directory and the original exposure geopackage from the \"exposure\" / \"buildings.gpkg\" . Before the results can be displayed, we must merge the **exposure.csv** with the **buildings.gpkg** via common *\"Object ID\"*. " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#Load *.csv into dataframe\n", - "df_multiple_aggregation = pd.read_csv(Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"output\" / \"aggregation_zones_test2\" / \"exposure\" / \"exposure.csv\")\n", - "\n", - "#Load original exposure geopackage into GeoDataFrame\n", - "new_exposure=gpd.read_file(Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"output\" / \"aggregation_zones_test2\" / \"exposure\" / \"buildings.gpkg\")\n", - "\n", - "#Merge dataframe with GeoDataFrame\n", - "merged_gdf_multiple = new_exposure.merge(df_multiple_aggregation, left_on='Object ID', right_on='Object ID', how='inner')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### **Base Zones**" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#Display base_zones aggregation zone\n", - "base_zones_map = merged_gdf.explore(column = 'Aggregation Label: Base_zones')\n", - "base_zones_map" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### **Land use**" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#Display land_use aggregation zone\n", - "land_use_map = merged_gdf_multiple.explore(column = 'Aggregation Label: Land_use')\n", - "land_use_map" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### **Accomodation type**" - ] - }, - { - "cell_type": "code", - "execution_count": null, + "execution_count": 12, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
Make this Notebook Trusted to load map: File -> Trust Notebook
" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#Load *.csv into dataframe\n", + "df_single_aggregation = pd.read_csv(Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"aggregation_zones_test1\" / \"exposure\" / \"exposure.csv\")\n", + "\n", + "#Load original exposure geopackage into GeoDataFrame\n", + "new_exposure=gpd.read_file(Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"aggregation_zones_test1\" / \"exposure\" / \"buildings.gpkg\")\n", + "\n", + "#Merge dataframe with GeoDataFrame\n", + "merged_gdf = new_exposure.merge(df_single_aggregation, left_on='Object ID', right_on='Object ID', how='inner')\n", + "\n", + "#Display base_zones aggregation zone\n", + "base_zones_map = merged_gdf.explore(column = 'Aggregation Label: Base_zones')\n", + "base_zones_map\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# **Result**: Test Case 2" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Load the newly created *exposure.csv* file from the / \"output\" / \"aggregation_zones_test2\" / - directory and the original exposure geopackage from the \"exposure\" / \"buildings.gpkg\" . Before the results can be displayed, we must merge the **exposure.csv** with the **buildings.gpkg** via common *\"Object ID\"*. " + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "# Load *.csv into dataframe\n", + "df_multiple_aggregation = pd.read_csv(Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"aggregation_zones_test2\" / \"exposure\" / \"exposure.csv\")\n", + "\n", + "# Load original exposure geopackage into GeoDataFrame\n", + "new_exposure=gpd.read_file(Path(os.path.abspath(\"\")) / \"data\" / \"aggregation_zones\" / \"aggregation_zones_test2\" / \"exposure\" / \"buildings.gpkg\")\n", + "\n", + "# Merge dataframe with GeoDataFrame\n", + "merged_gdf_multiple = new_exposure.merge(df_multiple_aggregation, left_on='Object ID', right_on='Object ID', how='inner')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### **Base Zones**" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
Make this Notebook Trusted to load map: File -> Trust Notebook
" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Display base_zones aggregation zone\n", + "base_zones_map = merged_gdf.explore(column = 'Aggregation Label: Base_zones')\n", + "base_zones_map" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### **Land use**" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
Make this Notebook Trusted to load map: File -> Trust Notebook
" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Display land_use aggregation zone\n", + "land_use_map = merged_gdf_multiple.explore(column = 'Aggregation Label: Land_use')\n", + "land_use_map" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### **Accomodation type**" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
Make this Notebook Trusted to load map: File -> Trust Notebook
" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "#Display accomodation_type aggregation zone\n", + "# Display accomodation_type aggregation zone\n", "Accom_type_map = merged_gdf_multiple.explore(column = 'Aggregation Label: Accommodation_type')\n", "Accom_type_map" ] diff --git a/examples/data/aggregation_zones/config_aggregation.yml b/examples/data/aggregation_zones/config_aggregation.yml deleted file mode 100644 index ae077966..00000000 --- a/examples/data/aggregation_zones/config_aggregation.yml +++ /dev/null @@ -1,25 +0,0 @@ -cases: - test1_single_aggregation: - new_root: "./data/Aggregation_zones/output/aggregation_zones_test1" - configuration: - setup_aggregation_areas: - aggregation_area_fn: "./data/Aggregation_zones/aggregation_zones/base_zones.gpkg" - attribute_names: ZONE_BASE - label_names: Base_zones - - test2_multiple_aggregation: - new_root: "./data/Aggregation_zones/output/aggregation_zones_test2" - configuration: - setup_aggregation_areas: - aggregation_area_fn: - - "./data/Aggregation_zones/aggregation_zones/base_zones.gpkg" - - "./data/Aggregation_zones/aggregation_zones/land_use.gpkg" - - "./data/Aggregation_zones/aggregation_zones/accomodation_type.gpkg" - attribute_names: - - ZONE_BASE - - LAND_USE - - ACCOM - label_names: - - Base_zones - - Land_use - - Accommodation_type \ No newline at end of file diff --git a/examples/data/aggregation_zones/configuration.yaml b/examples/data/aggregation_zones/configuration.yaml new file mode 100644 index 00000000..7ddb658f --- /dev/null +++ b/examples/data/aggregation_zones/configuration.yaml @@ -0,0 +1,8 @@ +setup_aggregation_areas: + aggregation_area_fn: "data/aggregation_zones/aggregation_zones/base_zones.gpkg" + attribute_names: ZONE_BASE + label_names: Base_zones + + + + \ No newline at end of file diff --git a/examples/data/aggregation_zones/configuration_2.yaml b/examples/data/aggregation_zones/configuration_2.yaml new file mode 100644 index 00000000..4ec81f24 --- /dev/null +++ b/examples/data/aggregation_zones/configuration_2.yaml @@ -0,0 +1,13 @@ +setup_aggregation_areas: + aggregation_area_fn: + - "data/aggregation_zones/aggregation_zones/base_zones.gpkg" + - "data/aggregation_zones/aggregation_zones/land_use.gpkg" + - "data/aggregation_zones/aggregation_zones/accomodation_type.gpkg" + attribute_names: + - ZONE_BASE + - LAND_USE + - ACCOM + label_names: + - Base_zones + - Land_use + - Accommodation_type \ No newline at end of file diff --git a/hydromt_fiat/api/data_types.py b/hydromt_fiat/api/data_types.py index 0bc6cbc1..148897ea 100644 --- a/hydromt_fiat/api/data_types.py +++ b/hydromt_fiat/api/data_types.py @@ -1,5 +1,5 @@ from enum import Enum -from typing_extensions import Optional, TypedDict, Union +from typing_extensions import Optional, TypedDict, Union, List from pydantic import BaseModel @@ -53,36 +53,26 @@ class ModelIni(BaseModel): crs: str -class ExposureVectorIni(BaseModel): +class VulnerabilityIni(BaseModel): + vulnerability_fn: str + vulnerability_identifiers_and_linking_fn: str + unit: Units + functions_mean: Union[str, list] + functions_max: Union[str, list, None] + step_size: Union[float, None] + + +class ExposureBuildingsIni(BaseModel): asset_locations: str occupancy_type: str max_potential_damage: str ground_floor_height: str unit: Units extraction_method: ExtractionMethod - - -class HazardIni(BaseModel): - hazard_map_fn: str - hazard_type: str - return_period: Optional[Union[int, None]] = None - crs: Optional[str] = None - no_data: Optional[int] = -9999 - var: Optional[Union[str, None]] = None - chunks: Optional[Union[int, str]] = "auto" - no_data: Optional[int] = -9999 - var: Optional[Union[str, None]] = None - chunks: Optional[Union[int, str]] = "auto" - - -class VulnerabilityIni(BaseModel): - vulnerability_fn: str - link_table: str - units: Units + damage_types : Union[List[str], None] class ConfigIni(BaseModel): setup_config: ModelIni - setup_hazard: HazardIni setup_vulnerability: VulnerabilityIni - setup_exposure_buildings: ExposureVectorIni + setup_exposure_buildings: ExposureBuildingsIni diff --git a/hydromt_fiat/api/exposure_vm.py b/hydromt_fiat/api/exposure_vm.py index eff8315d..f48d6620 100644 --- a/hydromt_fiat/api/exposure_vm.py +++ b/hydromt_fiat/api/exposure_vm.py @@ -12,7 +12,7 @@ DataCatalogEntry, DataType, Driver, - ExposureVectorIni, + ExposureBuildingsIni, ExtractionMethod, Units, ) @@ -22,17 +22,19 @@ class ExposureViewModel: def __init__( self, database: IDatabase, data_catalog: DataCatalog, logger: logging.Logger ): - self.exposure_model = ExposureVectorIni( + self.exposure_model = ExposureBuildingsIni( asset_locations="", occupancy_type="", max_potential_damage=-999, ground_floor_height=-999, unit=Units.m.value, extraction_method=ExtractionMethod.centroid.value, + damage_types=["structure", "content"] ) self.database: IDatabase = database self.data_catalog: DataCatalog = data_catalog self.logger: logging.Logger = logger + self.exposure: ExposureVector = None def create_interest_area(self, **kwargs: str): fpath = kwargs.get("fpath") @@ -57,37 +59,36 @@ def set_asset_locations_source( ): if input_source == "NSI": # NSI is already defined in the data catalog - # Add NSI to the configuration file self.exposure_model.asset_locations = input_source self.exposure_model.occupancy_type = input_source self.exposure_model.max_potential_damage = input_source - self.exposure_model.ground_floor_height = 1 # TODO: make flexible + self.exposure_model.ground_floor_height = input_source self.exposure_model.unit = Units.ft.value # TODO: make flexible # Download NSI from the database region = self.data_catalog.get_geodataframe("area_of_interest") - exposure = ExposureVector( + self.exposure = ExposureVector( data_catalog=self.data_catalog, logger=self.logger, region=region, crs=crs, ) - exposure.setup_from_single_source( + self.exposure.setup_buildings_from_single_source( input_source, self.exposure_model.ground_floor_height, "centroid", # TODO: MAKE FLEXIBLE ) primary_object_types = ( - exposure.exposure_db["Primary Object Type"].unique().tolist() + self.exposure.exposure_db["Primary Object Type"].unique().tolist() ) secondary_object_types = ( - exposure.exposure_db["Secondary Object Type"].unique().tolist() + self.exposure.exposure_db["Secondary Object Type"].unique().tolist() ) - exposure.set_exposure_geoms_from_xy() + gdf = self.exposure.get_full_gdf(self.exposure.exposure_db) return ( - exposure.exposure_geoms[0], + gdf, primary_object_types, secondary_object_types, ) @@ -110,13 +111,6 @@ def set_asset_locations_source( print(catalog_entry) # write to data catalog - def create_extraction_map(self, *args): - # TODO: implement callback - # if no exceptions, then self.exposure_model.extraction_method = args[0] - # else if - # make backend call to api with arguments to set extraction method per object: - # create first with default method. Then get uploaded or drawn area and merge with default methid - # save file to database - # change self.exposure_model.extraction_method to file - ... - # change self.exposure_model.extraction_method to file + def setup_extraction_method(self, extraction_method): + if self.exposure: + self.exposure.setup_extraction_method(extraction_method) diff --git a/hydromt_fiat/api/hazard_vm.py b/hydromt_fiat/api/hazard_vm.py deleted file mode 100644 index fb7fe11b..00000000 --- a/hydromt_fiat/api/hazard_vm.py +++ /dev/null @@ -1,6 +0,0 @@ -from hydromt_fiat.api.data_types import HazardIni - - -class HazardViewModel: - def __init__(self): - self.hazard_model = HazardIni(hazard_map_fn="", hazard_type="") diff --git a/hydromt_fiat/api/hydromt_fiat_vm.py b/hydromt_fiat/api/hydromt_fiat_vm.py index affdcf3b..2752064f 100644 --- a/hydromt_fiat/api/hydromt_fiat_vm.py +++ b/hydromt_fiat/api/hydromt_fiat_vm.py @@ -7,24 +7,13 @@ from hydromt_fiat.api.data_types import ConfigIni from hydromt_fiat.api.dbs_controller import LocalDatabase from hydromt_fiat.api.exposure_vm import ExposureViewModel -from hydromt_fiat.api.hazard_vm import HazardViewModel from hydromt_fiat.api.model_vm import ModelViewModel from hydromt_fiat.api.vulnerability_vm import VulnerabilityViewModel from hydromt_fiat.fiat import FiatModel from hydromt.log import setuplog -class Singleton(object): - _instance = None - - def __new__(cls, *args: Any, **kwargs: Any): - if not isinstance(cls._instance, cls): - cls._instance = object.__new__(cls) - return cls._instance - - -class HydroMtViewModel(Singleton): - is_initialized: bool = False +class HydroMtViewModel: data_catalog: DataCatalog database: LocalDatabase @@ -32,33 +21,28 @@ def __init__( self, database_path: str, catalog_path: Union[List, str], - hydromt_fiat_path: str = None, + hydromt_fiat_path: str, ): - if not self.__class__.is_initialized: - database_path = Path(database_path) - - HydroMtViewModel.database = LocalDatabase.create_database(database_path) - HydroMtViewModel.data_catalog = DataCatalog(catalog_path) + database_path = Path(database_path) - if hydromt_fiat_path is not None: - logger = setuplog("hydromt_fiat", log_level=10) - self.fiat_model = FiatModel( - data_libs=catalog_path, - root=hydromt_fiat_path, - mode="w+", - logger=logger, - ) + HydroMtViewModel.database = LocalDatabase.create_database(database_path) + HydroMtViewModel.data_catalog = DataCatalog(catalog_path) - self.model_vm = ModelViewModel() - self.exposure_vm = ExposureViewModel( - HydroMtViewModel.database, HydroMtViewModel.data_catalog, logger - ) - self.vulnerability_vm = VulnerabilityViewModel( - HydroMtViewModel.database, HydroMtViewModel.data_catalog, logger - ) - self.hazard_vm = HazardViewModel() + logger = setuplog("hydromt_fiat", log_level=10) + self.fiat_model = FiatModel( + data_libs=catalog_path, + root=hydromt_fiat_path, + mode="w+", + logger=logger, + ) - self.__class__.is_initialized = True + self.model_vm = ModelViewModel() + self.exposure_vm = ExposureViewModel( + HydroMtViewModel.database, HydroMtViewModel.data_catalog, logger + ) + self.vulnerability_vm = VulnerabilityViewModel( + HydroMtViewModel.database, HydroMtViewModel.data_catalog, logger + ) def clear_database(self): # TODO: delete database after hydromt_fiat has run @@ -71,7 +55,6 @@ def save_data_catalog(self): def build_config_ini(self): config_ini = ConfigIni( setup_config=self.model_vm.config_model, - setup_hazard=self.hazard_vm.hazard_model, setup_vulnerability=self.vulnerability_vm.vulnerability_model, setup_exposure_buildings=self.exposure_vm.exposure_model, ) @@ -81,7 +64,17 @@ def build_config_ini(self): with open(database_path / "config.ini", "wb") as f: tomli_w.dump(config_ini.dict(exclude_none=True), f) + def read(self): + self.fiat_model.read() + def run_hydromt_fiat(self): + config_ini = ConfigIni( + setup_config=self.model_vm.config_model, + setup_vulnerability=self.vulnerability_vm.vulnerability_model, + setup_exposure_buildings=self.exposure_vm.exposure_model, + ) region = self.data_catalog.get_geodataframe("area_of_interest") - self.fiat_model.build(region={"geom": region}, opt=ConfigIni.dict()) + self.fiat_model.build(region={"geom": region}, opt=config_ini.dict()) self.fiat_model.write() + + \ No newline at end of file diff --git a/hydromt_fiat/api/vulnerability_vm.py b/hydromt_fiat/api/vulnerability_vm.py index c46c6d27..6ef5efe5 100644 --- a/hydromt_fiat/api/vulnerability_vm.py +++ b/hydromt_fiat/api/vulnerability_vm.py @@ -12,15 +12,29 @@ def __init__( self, database: IDatabase, data_catalog: DataCatalog, logger: logging.Logger ): self.vulnerability_model = VulnerabilityIni( - vulnerability_fn="", link_table="", units=Units.m.value + vulnerability_fn="", + vulnerability_identifiers_and_linking_fn="", + unit=Units.ft.value, + functions_mean="default", ) self.database: IDatabase = database self.data_catalog: DataCatalog = data_catalog self.logger: logging.Logger = logger - self.linking_standard_colnames = ["Name", "Link"] + self.linking_standard_colnames = [ + "FIAT Damage Function Name", + "Exposure Link", + ] # add "Damage Type" ? self.linking_colnames = list() self.linking_list = list() + def get_default_curves_linking_file(self): + return self.data_catalog.get_dataframe("default_hazus_iwr_linking") + + def add_vulnerability_curves_to_model(self, vulnerability_fn, link_table): + self.vulnerability_model.vulnerability_fn = vulnerability_fn + self.vulnerability_model.vulnerability_identifiers_and_linking_fn = link_table + print("Damage curves added") + def get_hazus_curves(self): self.logger.info("Getting Hazus curves") df_vulnerability = self.data_catalog.get_dataframe("hazus_vulnerability_curves") @@ -45,7 +59,10 @@ def save_linking_table(self): df = pd.DataFrame( columns=self.linking_standard_colnames, data=self.linking_list ) - self.vulnerability_model.link_table = str( + self.vulnerability_model.vulnerability_identifiers_and_linking_fn = str( self.database.drive / "linking_table.csv" ) - df.to_csv(self.vulnerability_model.link_table, index=False) + df.to_csv( + self.vulnerability_model.vulnerability_identifiers_and_linking_fn, + index=False, + ) diff --git a/hydromt_fiat/data/attribute_linking/NSI_attributes_to_FIAT.json b/hydromt_fiat/data/attribute_linking/NSI_attributes_to_FIAT.json index 0d238b7e..62f976b7 100644 --- a/hydromt_fiat/data/attribute_linking/NSI_attributes_to_FIAT.json +++ b/hydromt_fiat/data/attribute_linking/NSI_attributes_to_FIAT.json @@ -5,8 +5,8 @@ "Secondary Object Type": "occtype", "Max Potential Damage: Structure": "val_struct", "Max Potential Damage: Content": "val_cont", + "Ground Floor Height": "found_ht", "Ground Elevation": "ground_elv", - "X Coordinate": "x", - "Y Coordinate": "y", + "geometry": "geometry", "Aggregation Label: Census Block": "cbfips" } \ No newline at end of file diff --git a/hydromt_fiat/fiat.py b/hydromt_fiat/fiat.py index 3be8bbc9..daf4d9f2 100644 --- a/hydromt_fiat/fiat.py +++ b/hydromt_fiat/fiat.py @@ -318,7 +318,7 @@ def setup_exposure_buildings( """ self.exposure = ExposureVector(self.data_catalog, self.logger, self.region) - if asset_locations == occupancy_type == max_potential_damage: + if asset_locations == occupancy_type == max_potential_damage == ground_floor_height: # The source for the asset locations, occupancy type and maximum potential # damage is the same, use one source to create the exposure data. self.exposure.setup_buildings_from_single_source( diff --git a/hydromt_fiat/workflows/aggregation_areas.py b/hydromt_fiat/workflows/aggregation_areas.py index 40ee6f86..142da570 100644 --- a/hydromt_fiat/workflows/aggregation_areas.py +++ b/hydromt_fiat/workflows/aggregation_areas.py @@ -43,6 +43,7 @@ def join_exposure_aggregation_multiple_areas( assert attribute_name in aggregation_gdf.columns, f"Attribute {attribute_name} not found in {file_path}" + # If you overwrite the exposure_gdf with the joined data, you can append all # aggregation areas to the same exposure_gdf @@ -52,19 +53,9 @@ def join_exposure_aggregation_multiple_areas( op="intersects", how="left", ) + + assert exposure_gdf["Object ID"].is_unique, "Error! Polygons overlap! Please clean your data from overlaping features." - # aggregate the data if duplicates exist - aggregated = ( - exposure_gdf.groupby("Object ID")[attribute_name].agg(list).reset_index() - ) - exposure_gdf.drop_duplicates(subset="Object ID", keep="first", inplace=True) - exposure_gdf.drop(columns=attribute_name, inplace=True) - exposure_gdf = exposure_gdf.merge(aggregated, on="Object ID") - - # Create a string from the list of values in the duplicated aggregation area - # column - exposure_gdf[attribute_name] = exposure_gdf[attribute_name].apply(process_value) - # Rename the 'aggregation_attribute' column to 'new_column_name'. Put in # Documentation that the order the user put the label name must be the order of the gdf exposure_gdf.rename(columns={attribute_name: f"Aggregation Label: {label_name}"}, inplace=True) diff --git a/hydromt_fiat/workflows/exposure_vector.py b/hydromt_fiat/workflows/exposure_vector.py index db590260..d4d08429 100644 --- a/hydromt_fiat/workflows/exposure_vector.py +++ b/hydromt_fiat/workflows/exposure_vector.py @@ -183,16 +183,22 @@ def setup_buildings_from_single_source( if len(self.exposure_db.index) != len(set(self.exposure_db["Object ID"])): self.exposure_db["Object ID"] = range(1, len(self.exposure_db.index) + 1) - self.setup_ground_floor_height(ground_floor_height) + # Set the ground floor height if not yet set + if "Ground Floor Height" not in self.exposure_db.columns: + self.setup_ground_floor_height(ground_floor_height) # Set the extraction method self.setup_extraction_method(extraction_method) - # Set the geoms from the X and Y coordinates - self.set_exposure_geoms_from_xy() + # Set the exposure_geoms + self.set_exposure_geoms(gpd.GeoDataFrame(self.exposure_db[["Object ID", "geometry"]], crs=self.crs)) # Set the name to the geom_names self.set_geom_names("buildings") + + # Remove the geometry column from the exposure_db + if "geometry" in self.exposure_db: + del self.exposure_db["geometry"] def setup_roads( self, diff --git a/tests/test_SVI_exposure.py b/tests/test_SVI_exposure.py index cd6edcb5..c499f56a 100644 --- a/tests/test_SVI_exposure.py +++ b/tests/test_SVI_exposure.py @@ -55,7 +55,7 @@ "asset_locations": "NSI", "occupancy_type": "NSI", "max_potential_damage": "NSI", - "ground_floor_height": 1, + "ground_floor_height": "NSI", "unit": "ft", }, "setup_social_vulnerability_index": { diff --git a/tests/test_integration.py b/tests/test_integration.py index c6e0cec0..569f290a 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -55,7 +55,7 @@ "asset_locations": "NSI", "occupancy_type": "NSI", "max_potential_damage": "NSI", - "ground_floor_height": 1, + "ground_floor_height": "NSI", "unit": "ft", }, "setup_hazard": {